*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-weight: normal;
}
a{
    text-decoration: none;
}
html{
    font-size: 1vw;
}
@media screen and (min-width: 1024px){
    body,html{
        max-width: 677px !important;
        margin: auto;
    }
    html{
        font-size: 5px!important;
    }
}
.app_download_box{
    width: 100%;
    height: 13.3333rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  0 5.3333rem;
    background: rgba(247, 247, 247, 1);
    position: fixed;
    left: 0;
    top: 0;
}
.app_download_box>div{
    display: flex;
    align-items: center;
}
.app_download_box>div>img:nth-child(1){
    width: 10.1333rem;
    height: 10.1333rem;
    margin-right: 2.1333rem;
}
.app_download_box>div>img:nth-child(2){
    width: 39.2rem;
    height: 3.6rem;
}
.app_download_box>a>img{
    width: 17.0667rem;
    height: 6.1333rem;
}
.media_banner{
    background: #fff;
    /* margin-top: 13.3333rem; */
}
.media_banner_bg{
    width: 100%;
    height: 45.2rem;
    background: url(../images/media_banner.png)no-repeat;
    margin-bottom: -5.3333rem;
    background-size: cover;
}
.media_banner_head{
    width: 100%;
    padding: 0 5.3333rem 4rem;
    border-radius: 2.6667rem 2.6667rem 0px 0px;
    border-bottom:1.0667rem solid #F9FAF9;;
}
.media_banner_head>img{
    display: block;
    width: 18.6667rem;
    height: 18.6667rem;
    border-radius: 100%;
    border: .5333rem solid #FFFFFF;
    margin-top: -9.3333rem;
    object-fit: cover;
}
.media_banner_content>div{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}
.media_banner_content>div h1{
    font-size: 5.6rem;
    color: rgba(45, 43, 43, 1);
    font-weight: bold;
}
.media_banner_content>div img{
    width: 16.5333rem;
    height: 6.4rem;
}
.media_banner_content>h2{
    font-size: 3.4667rem;
    color: #818182;
    line-height: 4.5333rem;
    margin-top: 2.6667rem;
}
.media_banner_content>p{
    font-size: 2.9333rem;
    color: #A9A9A9;
    line-height: 4.5333rem;
    margin-top: 1.3333rem;
}
.media_news_list{
    width: 100%;
    padding: 0 4rem;
}
.media_news_box{
    width: 100%;
    padding: 4rem 0;
    border-bottom: 0.5Px solid #F3F3F3;
}
.media_news_content{
    display: flex;
    justify-content: space-between;
}
.media_news_content>img{
    width: 29.8667rem;
    height: 19.7333rem;
    border-radius: .5333rem;
    object-fit: cover;
}
.media_news_content>h1{
    font-size: 4.2667rem;
    color: #131516;
    line-height: 7.3333rem;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    flex: 1;
    margin-right: 4rem;
}
.media_timer{
    margin-top: 4rem;
    font-size: 3.2rem;
    color: #9EA4A9;
    line-height: 4rem;
}
.media_timer>span{
    display: inline-block;
    margin-right: 1.6rem;
}
.loading_box{
    height: 10.6667rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #313134;
}
.loading_box>span{
    margin-left: 10px;
}
.loading_icon{
    animation: round 0.5s ease infinite;
}
@keyframes round {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}