/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
    width: 90%;
    max-width: 1350px;
    padding: 0 15px;
	margin:0 auto;
}
.header {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    color: #FFFFFF;
    background-color: #FFFFFF;
    transition: all .3s;
    z-index: 10;
}
.header.fixed{
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.header.no-show{
    transform: translateY(-100%);
}
.logo {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 80px;
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 40px;
    height: 50px;
    transition: all .3s;
}
.navBox {
    margin: 0 auto;
    text-align: right;
}
.navList {
    position: relative;
    list-style: none;
    margin: 0;
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    margin-left: 55px;
    transition: all .3s;
}
.navList .line{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--redColor);
    transition: all .3s;
}
.navList > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    padding-right: .3rem;
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 80px;
    font-size: 16px;
    color: #333333;
    text-align: center;
    transition: all .3s;
}
.navList > li > a:hover,
.navList > li.cur > a,
.navList > li.active > a{
    color: var(--redColor);
    font-weight: bold;
}
.navMob{
    display: none;
}
.navRig {
    position: relative;
    float: right;
    line-height: 80px;
    text-align: right;
    font-size: 0;
    color: #D8D8D8;
    transition: all .3s;
    margin-left: .4rem;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    position: relative;
}
.navRig li + li{
    margin-left: .2rem;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #D8D8D8;
    line-height: 26px;
}
.navRig li a + span{
    padding: 0 8px;
}
.navLang{
    display: flex;
    border-radius: 2px;
    line-height: 26px;
    overflow: hidden;
}
.navLang a.active,
.navLang a:hover{
    color: var(--redColor);
}
.navRig li.navBtn {
    cursor: pointer;
    display: none;
}
.navRig li.navBtn::before{
    display: none;
}
.navBtn span {
    width: 22px;
    height: 30px;
    position: relative;
}
.navBtn span b {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--redColor);
    position: absolute;
    left: 0;
    top: calc((100% - 4px) / 2);
    transition: all .3s;
}
.navBtn span b:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
}
.navBtn span b:nth-child(3) {
    transform: translateY(-6px) rotate(0deg);
}
.navBtn.active b:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.navBtn.active b:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.navBtn.active b:nth-child(2) {
    opacity: 0;
}

.mainBg{
    position: relative;
    min-height: 50vh;
    font-size: 14px;
    color: #333333;
    line-height: 2;
    z-index: 1;
    overflow: hidden;
}
.grayBg{
    background-color: #F7F7F7;
}
.whiteBg{
    background-color: #FFFFFF;
}
.main{
    font-size: 14px;
    color: #666666;
    line-height: 2;
    padding: .3rem;
    min-height: 40vh;
    background-color: #FFFFFF;
}

.footBg{
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 1.8;
    background-color: #171717;
    background: url(../images/footBg.png) center center no-repeat;
    background-size: cover;
    z-index: 2;
}
.footBg a{
    color: #FFFFFF;
}
.footBg a:hover{
    text-decoration: underline;
}
.ftTop{
    padding: 50px 0 40px;
    line-height: 1.8;
    display: flex;
    justify-content: space-between;
}
.ftLef{
    width: 45%;
    color: rgba(255, 255, 255, 0.5);
    padding-right: 40px;
}
.ftLogo{
    height: 50px;
    margin-bottom: .3rem;
}
.ftLogo img{
    max-width: 100%;
    max-height: 100%;
}
.frRig{
    display: flex;
    align-items: flex-start;
    width: 55%;
}
.ftNav{
    list-style: none;
    flex: auto;
    max-width: 300px;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    padding-right: 100px;
    margin-left: auto;
}
.ftNav li{
    padding: 0 10px;
}
.ftTit {
    display: block;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 2;
    margin-bottom: 15px;
    transition: all .3s;
}
.ftCon{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -5px;
}
.ftCon p{
    width: 50%;
    padding: 0 5px;
    margin: 6px 0;
}
.ftCon p a{
    color: rgba(255, 255, 255, 0.5);
}
.ftCon p a:hover{
    color: #FFFFFF;
}
.wxList {
    list-style: none;
    width: 120px;
    padding: 10px;
    color: rgba(255, 255, 255, 0.5);
    background: #1B1B1B;
    border-radius: 3px;
    border: 1px solid #262626;
}
.wxList li{
    display: inline-block;
    vertical-align: top;
    max-width: 100px;
    text-align: center;
}
.wxList img {
    width: 100%;
    height: auto;
    margin: 0 0 6px;
}
.wxList i{
    display: block;
    width: 100%;
    height: 1px;
    background: #1B1B1B;
    border-radius: 3px;
    border: 1px solid #262626;
    margin: 9px auto;
}
.wxList p {
    font-size: 12px;
    line-height: 1.2;
}

.ftBot{
    font-size: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid #242424;
    text-align: center;
}
.ftBot a{
    color: rgba(255, 255, 255, 0.2);
    transition: all .3s;
}
.ftBot a:hover{
    color: rgba(255, 255, 255, 0.5);
}
.copyright{
    font-size: 14px;
    line-height: 2;
}
.copyright p span{
    text-decoration: underline;
    margin-left: 10px;
}

/* 页码 */
.page{
    margin: 70px 0;
    text-align: center;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    min-width: 28px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 18px;
    color: #999999;
}
.page a:hover,
.page a.active{
    color: var(--redColor);
}
.page a.prev,
.page a.next{
    width: 36px;
    height: 36px;
    margin: 0 .1rem;
}
.page a.prev{
    background: url(../images/pagePrev@2x.png) center center no-repeat;
    background-size: contain;
}
.page a.next{
    background: url(../images/pageNext@2x.png) center center no-repeat;
    background-size: contain;
}

.title{
    margin: .2rem 0;
}
.title .titEn{
    font-size: 84px;
    color: var(--redColor);
    line-height: 1.2;
    font-family: Helvetica, Arial, sans-serif;
    font-family: 'PangMenZhengDao';
}
.title .titcn{
    font-size: 28px;
    color: #333333;
    line-height: 1.6;
    font-weight: normal;
}
.title .titcn span{
    color: var(--redColor);
}

.prevImg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 58px;
    border-radius: 0 29px 29px 0;
    cursor: pointer;
    z-index: 1;
    transition: all .5s;
}
.nextImg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 58px;
    border-radius: 29px 0 0 29px;
    cursor: pointer;
    z-index: 1;
}
.prevImg:not(.swiper-button-disabled):hover,
.nextImg:not(.swiper-button-disabled):hover{
    background-color: rgba(0, 0, 0, 0.5);
}
.prevImg.swiper-button-disabled,
.nextImg.swiper-button-disabled{
    cursor: no-drop;
}

.inBan{
    position: relative;
    height: 500px;
}
.inImg{
    height: 100%;
}
.inText{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 5%;
    color: #FFFFFF;
}
.inTit{
    font-size: 40px;
    line-height: 1.8;
    margin-bottom: .2rem;
}
.inDes{
    max-width: 820px;
    font-size: 14px;
    line-height: 26px;
    margin: 0 auto;
    -webkit-line-clamp: 5;
}
.mainTop{
    position: relative;
    display: flex;
    justify-content: space-between;
    justify-content: flex-end;
    align-items: center;
    margin: .6rem 0;
    z-index: 5;
}
.breadNav{
    display: none;
    font-size: 0;
    color: #333333;
    line-height: 30px;
    padding-left: 30px;
    background: url(../images/breadNav@2x.png) left 3px no-repeat;
    background-size: 20px auto;
}
.breadNav li{
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}
.breadNav li a{
    color: #333333;
}
.breadNav li a:hover{
    color: var(--redColor);
}
.breadNav li + li + li::before{
    content: "/";
    padding: 0 2px;
}
.type{
    position: relative;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
}
.typeTit{
    /* width: 160px; */
    padding: .1rem;
    /* padding-left: 25px; */
    border-bottom: 2px solid #D0D0D0;
    cursor: pointer;
    min-width: 160px;
}
.typeTit a{ color: #333333;}
.typeTit.active{
    border-bottom-color: var(--redColor);
}
.typeTit img,
.typeList li img,
.sortList li a img{
    width: 24px;
    height: 24px;
    margin-right: 15px;
    object-fit: contain;
    vertical-align: middle;
    margin-top: -2px;
}
.typeList{
    position: absolute;
    /* left: 0; */
    top: auto;
    /* width: 100%; */
    padding: .1rem 0;
    border-radius: 0 0 .1rem .1rem;
    background-color: rgba(251, 251, 251, .9);
    z-index: 1;
    display: none;
    min-width: 100%;
    right: 0;
}
.typeList li{
    line-height: 24px;
    padding: .1rem;
    /* padding-left: 25px; */
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.typeList li a{
    color: #333333;
}
.typeList li:hover,
.typeList li:hover a{
    color: var(--redColor);
    font-weight: bold;
}

.sortList{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.sortList li{
    line-height: 24px;
    margin-left: .15rem;
}
.sortList li a{
    display: block;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    padding: .1rem .26rem;
    border-bottom: 2px solid #D0D0D0;
}
.sortList li.active a{
    color: var(--redColor);
    border-color: var(--redColor);
    font-weight: bold;
}
.sortList li.active .showsIn{
    display: none;
}
.sortList li.active .hides{
    display: inline;
}

.load{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    background-color: #000000;
    background: url(../video/videoImg.png) center center #000000 no-repeat;
    background-size: cover;
}
.load video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.videoText{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-size: 64px;
    color: #FFFFFF;
    line-height: 1.4;
    /* font-family: 'SourceHanSerifCNBold'; */
    text-align: center;
}
.videoText p i{
    font-style: normal;
}
.loadBtn{
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: url(../images/loadBtn.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    bottom: 5%;
    cursor: pointer;
}
.loadBtn span{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.loadBtn::before,
.loadBtn::after,
.loadBtn span::before{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -19px 0 0 -19px;
    opacity: .8;
    cursor: pointer;
    z-index: 5;
}
.loadBtn:hover::before,
.loadBtn:hover::after,
.loadBtn:hover span::before{
    animation: lightAni 2s linear infinite;
}
.loadBtn:hover:after{
    animation-delay: 0.6s;
}
.loadBtn:hover span::before{
    animation-delay: 1.2s;
}
.load + .header{
    background-color: transparent;
}
.load + .header .logo a{
    background: url(../images/logo_white.png) left center no-repeat;
    background-size: auto 100%;
}
.load + .header .logo a img{
    visibility: hidden;
}
.load + .header .navBtn span b{
    background-color: #FFFFFF;
}
.pageBack{
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    overflow: hidden;
}
.pageOut{
    -webkit-animation: t100 0.75s both;
    animation: pageOut 0.75s both;
}
#mydiv,
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
    /* z-index: -1; */
}
@media (min-width:1201px) {
    .load + .header .navList > li > a{
        color: #FFFFFF;
    }
    .load + .header .navList .line{
        background-color: #FFFFFF;
    }
    .load + .header .navRig a,
    .load + .header .navRig i,
    .load + .header .navRig span{
        color: #FFFFFF;
    }
}

@media (max-width:1600px) {
    .inBan{
        height: 420px;
    }
    .inTit{
        font-size: 32px;
    }
    .mainTop{
        margin: .4rem 0;
    }
    .breadNav li{
        font-size: 14px;
    }
    .type{
        font-size: 14px;
    }
    .typeTit,
    .typeList li{
        padding-left: .15rem;
    }
    .typeTit img,
    .typeList li img,
    .sortList li a img{
        width: 20px;
        height: 20px;
        margin-right: .1rem;
    }
    .sortList li a{
        font-size: 14px;
    }
    .page{
        margin: 50px 0;
    }

    .videoText{
        font-size: 4vw;
    }
    .loadBtn{
        width: 30px;
        height: 30px;
        margin-left: -15px;
    }
    .loadBtn::before,
    .loadBtn::after,
    .loadBtn span::before{
        margin: -16px 0 0 -16px;
    }

}
@media (max-width:1400px) {
    .title .titEn{
        font-size: 4.375vw;
    }
    .title .titcn{
        font-size: 24px;
    }
    .inBan{
        height: 360px;
    }
    .inTit{
        font-size: 28px;
    }
}
@media (max-width:1200px){
    .wrap{
        width: 100%;
    }
    .logo{
        height: 60px;
    }
    .navRig {
        position: static;
        float: right;
        line-height: 60px;
        margin: 0;
    }
    .navRig li {
        position: static;
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navBox {
        position: fixed;
        left: 100%;
        top: 60px;
        bottom: 0;
        width: 100%;
        padding: 0 .3rem;
        overflow-y: auto;
        z-index: 2;
        background-color: #FFFFFF;
        box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.1);
        transition: all .5s;
    }
    .navBox.nav-sub-open{
        overflow-y: hidden;
    }
    .nav-open .navBox{
        left: 0;
    }
    .navTop{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        position: sticky;
        top: 0;
        background-color: #FFFFFF;
        z-index: 2;
    }
    .navTop span{
        display: block;
        width: 22px;
        height: 30px;
        background-size: 18px auto;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: .2rem;
        cursor: pointer;
    }
    .navList {
        position: relative;
        display: block;
        margin: 0 auto;
        padding: .2rem 0;
    }
    .navList > li {
        display: block;
        margin: 0;
        border-bottom: 1px dashed #EEEEEE;
    }
    .navList > li:last-child{
        border-bottom: none;
    }
    .navList > li > a {
        color: #333333;
        height: auto;
        line-height: 38px;
        padding: 0 !important;
        padding-right: 20px !important;
    }
    .navList > li > a:hover,
    .navList > li.cur > a,
    .navList > li.active > a{
        background-color: transparent;
    }
    .navMob{
        display: block;
    }
    .navList li.navLang{
        background-color: var(--baseColor);
    }
    .navList li.navLang a{
        width: 50%;
        color: #FFFFFF;
        padding: 0 .1rem !important;
        text-align: center;
    }
    .navClose{
        display: block;
        font-size: 16px;
        line-height: 30px;
        padding: .2rem 0;
        margin-left: .3rem;
        padding-left: 18px;
        background: url(../images/back.png) left center no-repeat;
        background-size: 14px auto;
        z-index: 2;
        cursor: pointer;
    }
    .navList .line{
        display: none;
    }

    /* footer */
    .ftTop{
        display: block;
        padding: .3rem 0 0;
        overflow: hidden;
    }
    .ftLef{
        display: block;
        width: 100%;
        padding: 0;
        margin: .3rem 0;
    }
    .ftLogo{
        margin: .3rem 0 .15rem;
    }
    .ftLogo img{
        max-width: 90%;
    }
    .frRig{
        /* display: block; */
        width: 100%;
        border-top: 1px solid rgba(245, 245, 247, .2);
    }
    .ftNav{
        display: block;
        width: 50%;
        max-width: 50%;
        border: none;
        padding: .3rem 0;
    }
    .ftNav li{
        padding: 0;
    }
    .ftTit{
        position: relative;
        display: block;
        line-height: 40px;
        margin-bottom: 0;
    }
    .ftCon{
        justify-content: flex-start;
        overflow: hidden;
    }
    .ftCon p{
        width: auto;
    }
    .wxList{
        float: none;
        width: 50%;
        max-width: 50%;
        text-align: center;
        padding: .3rem;
        background: none;
        border: none;
        margin-top: 40px;
    }
    .wxList img{
        max-width: 1.6rem;
    }
    .wxList i,
    .wxList p{
        display: none;
    }
    .ftBot{
        display: block;
        border-top: none;
    }
    .copyright{
        text-align: center;
    }
    .title .titEn{
        font-size: 28px;
    }
    .title .titcn{
        font-size: 20px;
    }

    .mainTop{
        display: block;
        margin: .2rem 0 .3rem;
    }
    .breadNav{
        margin: .2rem 0 .1rem;
    }
    .typeTit{
        width: 100%;
    }

    .pageBack{
        top: 60px;
    }

}
@media (max-width:991px) {
    .videoText{
        font-size: .6rem;
        text-align: center;
    }

}
@media (max-width:767px) {
    .inBan{
        height: 3.6rem;
    }
    .inTit{
        font-size: .28rem;
    }
}
@media (max-width:640px) {
    .inTit{
        font-size: .36rem;
    }
    .breadNav{
        line-height: 24px;
        padding-left: 20px;
        background-size: 16px auto;
        display: none;
    }
    /* 页码 */
    .page{
        margin: .3rem 0;
    }
    .inDes{
        -webkit-line-clamp:3;
    }
}
@media (max-width:460px) {
    .logo{
        height: 50px;
        overflow: hidden;
    }
    .logo img{
        height: 34px;
        height: 40px;
    }
    .navRig{
        line-height: 50px;
    }
    .navRig li a + span{
        padding: 0 4px;
    }
    .navBox{
        top: 50px;
    }
    .ftTit{
        font-size: 15px;
    }
    /* 页码 */
    .page{
        font-size: 0;
    }
    .page a,
    .page span{
        min-width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 16px;
        margin: 1px;
    }
    .page a.prev,
    .page a.next{
        width: 32px;
        height: 32px;
    }

    .title .titEn{
        font-size: 24px;
    }
    .title .titcn{
        font-size: 18px;
    }

    .inTit{
        font-size: .4rem;
        margin-bottom: .1rem;
    }
    .inDes{
        font-size: 12px;
        line-height: 1.8;
        display: none;
    }
    .typeTit img,
    .typeList li img,
    .sortList li a img{
        width: 16px;
        height: 16px;
    }
    .sortList li a{
        padding: .1rem 0;
    }

    .pageBack{
        top: 50px;
    }
    .loadBtn{
        width: 24px;
        height: 24px;
        margin-left: -12px;
    }
    .loadBtn::before,
    .loadBtn::after,
    .loadBtn span::before{
        margin: -13px 0 0 -13px;
    }
}