/* 区块导航按钮 */
.section-nav{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.875rem 0;
}
.section-nav-btn{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.section-nav-btn-icon{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.section-nav-btn-icon-img{
    width: 1.875rem;
    height: 1.875rem;
    object-fit: contain;
}
.section-nav-btn-icon-img:last-of-type{
    display: none;
}
.section-nav-btn:hover .section-nav-btn-icon-img:last-of-type{
    display: block;
}
.section-nav-btn:hover .section-nav-btn-icon-img:first-of-type{
    display: none;
}

/* 合作伙伴 */
.partners-container{
    width: 100%;
    padding-bottom: 1.25rem;
}
.partners-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.25rem;
}
.partner{
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.partner-poster{
    width: 100%;
    height: 6.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.partner-poster-img{
    /*width: unset;*/
    max-width: 100%;
    height: 6.875rem;
    object-fit: contain;
}

/* 页面导航 */
.page-nav-container{
    width: 100%;
    padding: 0.625rem 0;
    background: rgba(117,119,123,0.20);
}
.page-nav-container-content{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.page-nav-item{
    text-decoration: none;
    font-size: 1rem;
    text-align: left;
    color: #e9511d;
}
.page-nav-item-split-icon{
    padding: 0 0.625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.page-nav-item-split-icon-img{
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}
.page-nav-item-current{
    color: #1e235a;
}

/* 视频播放弹窗 */
.video-play-dialog{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.video-play-dialog-content{
    width: calc(43.75rem - 2.5rem);
    background: #ffffff;
    padding: 1.25rem 1.25rem;
    border-radius: 1.25rem;
}
.video-play-dialog-header{
    width: 100%;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.video-play-dialog-header-btn{
    width: 2.5rem;
    height: 2.5rem;
    background: #e9511d;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.video-play-dialog-header-btn-icon{
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.video-play-dialog-header-btn-icon-img{
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}
.video-play-dialog-body{
    width: 100%;
    padding-top: 1.25rem;
}
.video-play-dialog-video{
    width: 100%;
    height: max-content;
    object-fit: contain;
    background: #000000;
}