.event-sec{
    min-height: 100px;
    background-color: rgba(23, 28, 149, .9);
    border-radius: 1em;
    padding: .3em;
    margin-bottom: 1.1em;
    font-size: 20px;
    color: rgba(22, 19, 62, 1);
    font-weight: 500;
}
.evt-tip{
    color: rgba(245, 156, 80, 1);
    font-size: 1.2em;
    font-weight: 700;
    padding: .5em 1em;
}
.evt-content{
    background-color: #fff;
    border-radius: .8em;
    padding: .6em 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.evt-left{
    width: 80%;
    display: flex;
    flex-direction: column;
}
.evt-time{
    font-size: 1em;
    line-height: 1.4;
    color: rgba(113, 125, 143, 1);
}
.evt-time p span:nth-child(1){
    font-size: 1em;
    font-weight: 700;
}
.evt-tt{
    display: flex;

}
.evt-tt p:nth-child(1){
    width: 1.2em;
    height: 1.2em;
    min-width: 1.2em;
    margin-right: .8em;
}
.evt-tt p img{
    width: 100%;
    height: auto;
}
.evt-date{
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-size: 1em;
}
.evt-date p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.evt-name{
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: .5em;
}
.evt-other{
    margin: .5em 0;
    font-size: 1em;
}
.evt-btn{
    width: 15%;
    display: flex;
    justify-content: flex-end;
}
.evt-btn a{
    display: block;
    width: auto;
}
.evt-btn a button{
    font-size: 14px;
    background: rgba(245, 156, 80, 1);
    padding: 12px 24px;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    transition: all .3s;
    font-weight: 700;
    cursor: pointer;
}
.evt-btn a:hover button{
    opacity: .85;
}
@media (max-width: 1200px){
    .event-sec{
        font-size: 18px;
    }
}
@media (max-width: 980px){
    .event-sec{
        font-size: 16px;
    }
}
@media(max-width:799px){
    .side-event{
        width: 94%;
        margin: 0 auto;
    }
    .event-sec{
        font-size: .36rem;
    }
    .evt-left {
        width: 100%;
    }
    .evt-content {
        flex-direction: column;
    }
    .evt-tt p:nth-child(1){
        width: 1em;
        height: 1em;
        min-width: 1em;
        margin-right: .5em;
    }
    .evt-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1em;
    }
}