html{
    font-size: 5.208vw;
}
@media screen and (min-width: 1920px) {
    html {
        font-size: 100px;
    }
}

.event-container-box{
    width: 77.08%;
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
}

.event-loading{
    width: 100%;
    min-height: 300px;
    /*position: absolute;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index:10;
    background: rgba(255,255,255,0.8);
}
.event-loading-box{
    width: 30px;
    height: 30px;
    border-top: 3px solid #76b72b;
    border-right: 3px solid #76b72b;
    border-left: 3px solid #76b72b;
    border-bottom: 3px solid transparent;
    border-radius: 50%;
    animation: loading-animation 0.8s infinite linear;
}
.event-loading-text{
    color: #333333;
    text-decoration: none;
    font-size: 0.3rem;
    margin-top: 1em;
}
@keyframes loading-animation {
    0% {
        transform: rotate(0deg); /*动画起始的时候旋转了0度*/
    }
    100% {
        transform: rotate(360deg); /*动画结束的时候旋转了360度*/
    }
}

.event-no-data{
    width: 100%;
    color: #cccccc;
    font-size: 20px;
    line-height: 300px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;

}
.event-no-data span{
    margin: 0 5%;
}
.event-no-data::before, .event-no-data::after{
    width: 15%;
    height: 1px;
    background: #cccccc;
    content: "";
}

.event-list{
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3.5%;
    position: relative;
}

.event-item{
    display: block;
    width: 31%;
    margin-right: 3.5%;
    margin-bottom: 3.5%;
    text-decoration: none;
    cursor: pointer;
    background: #FFFFFF;
    box-shadow: 0.03rem 0.03rem 0.12rem 0.01rem rgba(102, 102, 102, 0.16078431904315948);
}
.event-item:nth-child(3n){
    margin-right: 0;
}
.event-item:last-child{
    margin-right: auto;
}

.event-item > img {
    width: 100%;
    display: block;
}

.expo-content {
    width: 100%;
    box-sizing: border-box;
    padding: 0.2rem 0.15rem;
    /*display: flex;*/
    /*justify-content: space-between;*/
}

.expo-content > img {
    width: 23%;
    flex-shrink: 0;
    display: block;
    float: right;
    height: 100%;
}

.expo-text {
    font-size: 0.16rem;
    line-height: 1.4;
    color: #666666;
    margin-right: 27%;
}

.expo-text p:first-child {
    font-size: 0.2rem;
    font-weight: bold;
    color: #76b72b;
}

.event-page .page_ctrl{
    margin-bottom: 3.5%;
}

.expo-layer-operation{
    width: 100%;
    height: 1rem;
    box-sizing: border-box;
    padding: 0.16rem 0.25rem;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .3) 100%);
    animation: .3s;
}
.expo-layer-operation a{
    width: 0.4rem;
    height: 0.4rem;
    display: flex;
    margin-right: 0.3rem;
}
.expo-layer-operation img{
    width: 0.4rem;
    height: 0.4rem;
    cursor: pointer;
}
.expo-layer-box .expo-img{
    width: 100%;
    display: block;
}
@media screen and (max-width: 1100px) {
    .event-container-box{
        width: 90%;
    }
}

@media screen and (max-width: 880px) {

    html {
        font-size: 10vw;
    }
    .event-container-box{
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .event-item{
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }
    .event-item:nth-child(3n){
        margin-right: 4%;
    }
    .event-item:nth-child(2n){
        margin-right: 0;
    }
}
@media screen and (max-width: 600px) {
    .event-item{
        width: 100%;
        margin-right: 0;
        margin-bottom: 4%;
    }
    .event-item:nth-child(3n){
        margin-right: 0;
    }
    .event-item:nth-child(2n){
        margin-right: 0;
    }
    .expo-content{
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .expo-text {
        font-size: 16px;
        height: auto;
        margin-right: 0;
    }
}<!--0.00026106834411621-->