.w {
    max-width: 1000px;
    margin: 0px auto;
    position: relative;
}

body {
    padding-top: 124px!important;
}

.header-region {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 4px solid #222;
    padding-top: 20px;
    z-index: 11;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.header {
    width: 100%;
    padding: 10px 0;
}

/* body.header-fixed .header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 11;
}

body.header-fixed .header-top {
    padding-bottom: 89px;
} */

.search-box {
    margin-right: 5px;
}

.search-box input.form-submit, .search-icon {
    width: 18px;
    height: 24px;
    display: block;
    cursor: pointer;
    background: #fff url(../images/search.svg) no-repeat center center;
    background-size: 12px;
    border: none;
    text-indent: -1000px;
    padding: 0;
    overflow: hidden;
}

.search-box .container-inline {
    position: relative;
}

.search-box .form-actions {
    position: absolute;
    top: 1px;
    right: 5px;
}

.search-box input[type="search"] {
    box-sizing: border-box;
}

.form-search, .custom-search-box {
    border: 1px solid rgba(34, 34, 34, 0.1);
    padding: 5px 10px;
    height: 26px;
    font-size: 12px;
    color: #222;
    box-sizing: border-box;
}

.form-search.error, .custom-search-box.error {
    border-color: rgba(255, 0, 0, 0.6);
}

.search-box .form-search {
    opacity: 0;
    width: 0;
    transition: all 0.5s;
}

.search-box.show .form-search {
    width: 160px;
    opacity: 1;
}

/* .form-search {
    border: 1px solid rgba(34, 34, 34, 0.1);
} */

.header-top-nav {
    margin-right: 20px;
}

.header-top-nav, .lang-box {
    height: 26px;
    display: flex;
    align-items: center;
}

.header-top-nav li {
    display: inline-block;
    margin-left: 15px;
}

.header-top-nav li a, .lang-box li a {
    display: block;
    color: #000;
    opacity: 0.3;
    text-align: center;
    font-size: 12px;
    line-height: 26px;
    transition: color 0.5s;
    -webkit-transition: color 0.5s;
    -moz-transition: color 0.5s;
    -ms-transition: color 0.5s;
    -o-transition: color 0.5s;
}

.header-top-nav li a {
    opacity: 1;
    padding-left: 18px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.header-top-nav li a.shop {
    background-image: url(../images/shop.svg);
}

.header-top-nav li a.platform {
    background-image: url(../images/platform.svg);
}

.header-top-nav li a.user {
    background-image: url(../images/user.svg);
}

.lang-box li.is-active {
    display: none;
}

.logo {
    height: 80px;
    width: 270px;
    margin-bottom: 10px;
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    /* transition: background-image 0.5s;
    -webkit-transition: all 0.5s; */
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
    float: left;
}

.logo:hover {
    background-image: url(../images/logo-h.svg);
}

.logo img {
    height: 100%;
    float: left;
}

.nav-top {
    position: relative;
    top: -5px;
}

.nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 80px;
}

.nav .menu--main>ul>li {
    display: inline-block;
    font-weight: 600;
    margin-left: 40px;
    position: relative;
}

.nav .menu--main>ul>li:first-of-type {
    margin-left: 0;
}

.nav li a {
    color: #000000;
    position: relative;
}

.nav li a:hover {
    color: #74d;
}

ul.menu a.is-active {
    color: #74d;
}

.nav .menu--main>ul>li>a {
    padding: 10px 0;
    display: block;
    line-height: 100%;
    transition: all 0.5s;
}

.nav li.active a, .nav li a.is-active {
    color: #74d;
}

.nav .menu--main>ul>li.menu-item--expanded {
    padding-right: 18px;
}

.nav .menu--main>ul>li.menu-item--expanded::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #222;
    border-radius: 2px;
    transition: all 0.5s;
    transform-origin: center center;
}

.nav .menu--main>ul>li.menu-item--expanded:hover::after, .nav .menu--main>ul>li.menu-item--expanded.dropdown::after {
    transform: rotate(180deg);
}

.nav .menu--main>ul>li.menu-item--expanded.menu-item--active-trail>a {
    color: #74d;
}

.nav .menu--main>ul>li>ul {
    display: none;
    position: absolute;
    max-width: 220px;
    background-color: #fff;
    padding: 5px 0;
    top: 40px;
    left: 0;
    margin: 0;
    box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    z-index: 5;
}

.nav .menu--main>ul>li:last-of-type>ul {
    left: inherit;
    right: 0;
}

.nav .menu--main>ul>li:hover>ul, .nav .menu--main>ul>li.dropdown>ul {
    display: block;
    animation: slideDown 0.5s both;
}

@keyframes slideDown {
    from {
        top: 20px;
        opacity: 0;
    }
    to {
        top: 95%;
        opacity: 1;
    }
}

.nav .menu--main>ul>li>ul:hover {
    display: block;
}

.nav .menu--main>ul>li>ul>li {
    white-space: nowrap;
    margin: 0;
    padding: 0 15px;
}

.nav .menu--main>ul>li>ul>li a {
    display: block;
    width: 100%;
    font-size: 87.5%;
    color: #777;
    line-height: 40px;
    white-space: nowrap;
    border-bottom: 1px solid rgba(151, 151, 151, .1);
}

.nav .menu--main>ul>li>ul>li a:hover {
    color: #74d;
}

.nav .menu--main>ul>li>ul>li:last-of-type a {
    border-bottom: none;
}

.nav .menu--main>ul>li>ul>li.menu-item--active-trail a, .nav .menu--main>ul>li>ul>li a.is-active, .nav .menu--main>ul>li>ul>li.active a {
    color: #74d;
}

.banner-container {
    overflow: hidden;
    position: relative;
}

.banner-bg {
    position: relative;
    padding: 17px 0;
    /* background-color: #fff; */
    z-index: 5;
    transition: all 0.75s;
    transition-delay: 0.5s;
}

.banner-bg.hide {
    opacity: 0;
}

.banner-bg ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.banner-bg ul li {
    flex: 0 0 10%;
    max-width: 10%;
    padding: 8px;
    transition: all 0.75s;
    position: relative;
    cursor: pointer;
}

.banner-bg ul li:nth-of-type(24), .banner-bg ul li:nth-of-type(25), .banner-bg ul li:nth-of-type(26), .banner-bg ul li:nth-of-type(27) {
    opacity: 0;
}

.slide-wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-wrapper::before {
    content: '';
    display: block;
    width: 15%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(-15%);
    transition: all 1s 1s;
    display: none;
}

/* .banner-wrapper.show .slide-wrapper::before {
    transform: translateX(0);
    opacity: 1;
} */

@media screen and (min-width: 1280px) {
    .w {
        padding: 0 15%;
        width: 100%;
        max-width: inherit;
    }
}

@media screen and (max-width: 1279px) {
    .slide-wrapper::before {
        width: calc((100% - 1000px)/2);
    }
}

.slide-wrapper .w {
    height: 100%;
}

.fzbox {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    /* -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px; */
}

.fzbox span {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.75s;
    transform-origin: center center;
}

.fzbox span:nth-child(1) {
    background-color: #222;
    background-repeat: no-repeat;
    border-radius: 30px 0 0 0;
    -webkit-transform: rotateY(-90deg) translateZ(45px);
    transform: rotateY(-90deg) translateZ(45px);
}

.fzbox span:nth-child(2) {
    background: url(../images/lines.svg) no-repeat 0 0;
    background-size: cover;
    -webkit-transform: translateZ(45px);
    transform: translateZ(45px);
}

.fz .fzbox span:nth-child(1) {
    -webkit-transform: translateZ(45px);
    transform: translateZ(45px);
}

.fz .fzbox span:nth-child(2) {
    -webkit-transform: rotateY(90deg) translateZ(45px);
    transform: rotateY(90deg) translateZ(45px);
    opacity: 0;
}

.refz .fzbox span:nth-child(1) {
    -webkit-transform: rotateY(-90deg) translateZ(45px);
    transform: rotateY(-90deg) translateZ(45px);
    opacity: 0;
}

.refz .fzbox span:nth-child(2) {
    -webkit-transform: translateZ(45px);
    transform: translateZ(45px);
    /* opacity: 0; */
}

.banner-container .w {
    position: relative;
    z-index: 4;
    /* background-color: #fff; */
}

.banner-bg h1 {
    width: 40%;
    height: 20%;
    /* background-color: #fff; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    text-align: center;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* transition: all 0.75s; */
}

.banner-bg h1 img {
    max-width: 100%;
    max-height: 100%;
}

.banner-bg h1 span {
    display: block;
    width: 100%;
    text-align: center;
}

.banner-bg h1 span.cn {
    font-size: 306.25%;
}

.banner-bg h1 span.en {
    font-size: 87.5%;
    letter-spacing: 7px;
    text-transform: uppercase;
}

.banner-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 3s;
    /* transition-delay: 1.15s; */
    opacity: 0;
}

.banner-wrapper.show {
    opacity: 1;
    background-color: #fff;
    /* animation: showScale 0.75s ease-in-out both; */
}

.banner-wrapper .swiper-slide {
    height: 100%;
    background-size: cover;
    background-image: linear-gradient(227deg, #D5D5D5 12%, #E4E4E4 82%);
    background-position: center center;
}

.banner-wrapper .swiper-slide img {
    display: none;
}

.slide-left-right {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slide-left-right .w {
    height: 100%;
}

.slide-left {
    width: 255px;
    height: 100%;
    padding-bottom: 10%;
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0 80px 0 0;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    padding-top: 10%;
    color: #fff;
    padding-right: 35px;
    position: relative;
    /* transform: translateX(0); */
    /* transition: all 1s 0.75s; */
    /* -webkit-transition: all 1s 0.75s; */
}

.slide-left::before {
    content: '';
    display: block;
    width: 500px;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
}

.banner-container .slide-left {
    opacity: 0;
}

.banner-wrapper.show .slide-left {
    animation: slideFromLeft 1s ease 0.5s both;
}

@keyframes slideFromLeft {
    0% {
        left: 0;
    }
    50% {
        opacity: 0;
        left: -25%;
        /* transform: translate(-25%,0);
        -webkit-transform: translate(-25%,0) */
    }
    100% {
        opacity: 1;
        /* transform: translate(0,0);
        -webkit-transform: translate(0,0); */
        left: 0;
    }
}

.slide-left .date {
    font-size: 75%;
    opacity: 0.8;
    margin-bottom: 20px;
}

.slide-left .date .datetime {
    opacity: 1;
}

.slide-left h2 {
    font-size: 125%;
    letter-spacing: 0;
    line-height: 150%;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-left h3 a, .slide-left h2 a {
    color: #fff;
}

.slide-left h3 {
    line-height: 150%;
    margin-bottom: 20px;
}

html[lang='en'] .slide-left h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-left p {
    font-size: 87.5%;
    line-height: 180%;
    margin-bottom: 25px;
    opacity: 0.8;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.view-more {
    font-size: 87.5%;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    color: #222;
}

.hot-news .slide-left a.view-more {
    color: #fff;
    position: absolute;
    bottom: 70px;
    left: 35px;
}

a.view-more span {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 2px solid #222;
}

a.view-more:hover {
    color: #74d;
}

a.view-more:hover span {
    border-bottom: 2px solid #74d;
}

.slide-left a.view-more span {
    color: #fff;
    border-bottom: 2px solid #fff;
}

.banner-pagination {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
}

/* 
stroke-dasharray 我们可以设置成圆的周长也就是 2πr 
stroke-dashoffset 我们可以设置成进度条空白部分的周长 2πr*（1- percent）  */

.spinner {
    stroke-dasharray: 119.38;
    stroke-dashoffset: 119.38;
    opacity: 0;
    /* transition: stroke-dashoffset 1200ms cubic-bezier(.99,.01,.62,.94); */
}

.swiper-pagination-bullet-active .spinner {
    opacity: 1;
    animation: progressAnimation 5s linear forwards;
}

@keyframes progressAnimation {
    100% {
        stroke-dashoffset: 0;
    }
}

.banner-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: 1;
    margin: 0 12px 0 0;
}

.banner-pagination .swiper-pagination {
    display: flex;
    align-items: center;
}

.banner-pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 32px;
    background: none;
}

.banner-pagination .swiper-pagination-bullet svg {
    display: none;
}

.banner-pagination .swiper-pagination-bullet-active svg {
    display: block;
    width: 100%;
    height: 100%;
}

.section-front {
    padding-top: 50px;
    position: relative;
    margin-bottom: 100px;
}

.section-front:last-of-type {
    margin-bottom: 0;
}

.section-front h2.title {
    font-size: 300%;
    margin-bottom: 20px;
}

.section-front h2.title span {
    display: block;
}

.section-front h2.title span.en {
    height: 54px;
    overflow: hidden;
    margin-bottom: 5px;
}

.footer-top h3 {
    font-size: 150%;
    margin-bottom: 30px;
}

.footer-top .section {
    margin-bottom: 70px;
}

.friends-list ul {
    justify-content: space-between;
}

.friends-list li a {
    color: #222;
    transition: all 0.25s;
    font-size: 100%;
}

.friends-list li a:hover {
    color: #74d;
}

.friends-list li a::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #222;
    border-radius: 0 11px 0 0;
    margin-right: 10px;
    box-sizing: border-box;
    position: relative;
    top: 2px;
    transition: all 0.5s;
}

.friends-list li a:hover::before {
    background-color: #74d;
    border: 2px solid #74d;
}

.section-front h2.title span.en img {
    height: 100%;
}

.section-front-content {
    width: 74%;
    position: relative;
}

.section-front {
    margin-top: 80px;
}

.section-front.front1 {
    margin-top: 0;
}

.section-front.front2 {
    background: url(../images/front-research.jpg) no-repeat top left;
    background-size: auto 295px;
    padding-top: 72px;
}

.section-front.front3 {
    padding-top: 120px;
    background: url(../images/front-innovation.jpg) no-repeat top left;
    background-size: auto 289px;
}

.section-front.front4 {
    padding-top: 0;
    background: url(../images/apply.jpg) no-repeat top left;
    background-size: auto 291px;
}

.section-front.front5 {
    background: url(../images/front-join.jpg) no-repeat top left;
    background-size: auto 294px;
    padding-top: 102px;
}

.front2 .section-front-content {
    width: 100%;
    padding-right: 48%;
    height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: url(../images/front2.png) no-repeat right bottom; */
    background-size: auto 100%;
}

.front3 .section-front-content {
    width: 50%;
}

.front4 .section-front-content {
    width: 100%;
    padding-right: 52%;
    padding-top: 123px;
    height: 517px;
    /* background: url(../images/yuyue.png) no-repeat right top; */
    background-size: auto 100%;
}

.front5 .section-front-content {
    width: 100%;
    padding-right: 52%;
    height: 367px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: url(../images/joinus.png) no-repeat right bottom; */
    background-size: auto 100%;
}

h3.line-title {
    position: relative;
    padding: 0 20px;
    width: auto;
    display: inline-block;
    margin-bottom: 12px;
    clear: both;
}

h3.line-title::before {
    content: '';
    display: block;
    width: 100%;
    height: 12px;
    background-color: #222;
    opacity: 0.2;
    position: absolute;
    bottom: 0;
    left: 0;
}

h3.line-title span {
    position: relative;
    font-size: 87.5%;
    line-height: 200%;
    z-index: 2;
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: 8px;
    padding-left: 8px;
}

.section-front-content p {
    clear: both;
    line-height: 180%;
    margin-bottom: 1em;
}

a.btn, a.learn-more {
    display: block;
    height: 40px;
    background-color: #222;
    color: #fff;
    border-radius: 0 16px 0 0;
    text-align: center;
    font-size: 87.5%;
    line-height: 40px;
    letter-spacing: 3px;
    font-weight: 600;
    transition: all 0.25s;
}

a.btn.line-btn {
    border: 1px solid #222;
    line-height: 38px;
    color: #222;
    background-color: transparent;
}

a.btn:hover, a.learn-more:hover {
    background-color: #74d;
}

a.btn.line-btn:hover {
    border: 1px solid #74d;
    color: #7744dd;
}

a.learn-more {
    margin: 32px 0;
    width: 168px;
}

.section-front a.learn-more {
    margin-top: 20px;
}

.join-icon, .about-icon {
    position: absolute;
    top: 140px;
    right: 0;
}

.join-icon {
    top: 205px;
    z-index: -1;
    width: 543px;
}

.about-icon img {
    animation: rotate_float 10s ease-in-out infinite;
}

@keyframes rotate_float {
    50% {
        transform: translate3d(0, -30px, 0);
    }
}

.about-container .swiper-slide {
    overflow: hidden;
}

.about-container .swiper-slide img {
    width: 100%;
    border-radius: 0 80px 0 0;
    float: left;
}

.about-container .name {
    height: 80px;
    opacity: 0.78;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 25px;
}

.about-container .name span {
    color: #fff;
    font-size: 125%;
    line-height: 80px;
}

.about-container .name span::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border-radius: 0 11px 0 0;
    margin-right: 10px;
}

.news-banner {
    width: 100%;
    clear: both;
    margin-bottom: 50px;
}

.pagination, .about-container .swiper-pagination {
    position: static;
    padding: 15px 0;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 6px;
    background: none;
    opacity: 1;
    position: relative;
    transition: all 0.5s;
    border: 2px solid transparent;
}

.pagination .swiper-pagination-bullet::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    background-color: #000;
    border-radius: 100%;
}

.pagination .swiper-pagination-bullet-active {
    border: 2px solid #222;
}

.hot-news {
    /* margin-top: 50px; */
    margin-bottom: 50px;
}

.hot-news .swiper-slide {
    /* height: 420px; */
    overflow: hidden;
    border-radius: 0 60px 0 0;
    position: relative;
}

.hot-news .swiper-slide img {
    width: 100%;
    float: left;
}

.hot-news .pagination {
    position: absolute;
    justify-content: start;
    padding-left: 35px;
}

.hot-news .slide-left {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: 30px 35px 0;
    display: block;
    width: 387px;
}

.hot-news .pagination .swiper-pagination-bullet {
    margin: 0 8px 0 0;
}

.hot-news .pagination .swiper-pagination-bullet-active {
    border: 2px solid #fff;
}

.hot-news .pagination .swiper-pagination-bullet::before {
    background-color: #fff;
}

.inno-list {
    overflow: hidden;
}

.inno-list li {
    height: 333px;
    width: 33.33%;
    float: left;
    /* backface-visibility: hidden; */
    position: relative;
    border-right: 1px solid rgba(34, 34, 34, .2);
    border-bottom: 1px solid rgba(34, 34, 34, .2);
    padding: 0 45px 0 28px;
}

.inno-list li:nth-of-type(3n) {
    border-right: none;
}

.inno-list li:nth-last-of-type(1), .inno-list li:nth-last-of-type(2), .inno-list li:nth-last-of-type(3) {
    border-bottom: none;
}

.inno-list li a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.inno-list li a span {
    display: block;
}

.inno-icon {
    position: relative;
    width: 188px;
    height: 218px;
}

.inno-icon i {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s;
    display: block;
}

.inno-icon i img {
    width: 100%;
}

.inno-icon i.front {
    opacity: 1;
}

.inno-icon i.back {
    opacity: 0;
}

.inno-list li:hover .inno-icon i.front {
    opacity: 0;
}

.inno-list li:hover .inno-icon i.back {
    opacity: 1;
}

.inno-name {
    font-weight: 600;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    max-height: 220px;
    padding-top: 20px;
    color: #222;
    text-align: left;
    opacity: 0.6;
    transition: all 0.5s;
    writing-mode: tb-rl;
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
}

.inno-list li:hover .inno-name {
    opacity: 1;
}

.inno-name i.cn {
    font-size: 112.5%;
    display: inline-block;
    width: 100%;
    line-height: 120%;
    width: 24px;
}

.inno-name i.en {
    display: inline-block;
}

.footer-top {
    position: relative;
    z-index: 4;
    background-color: #fff;
}

.footer-top .w {
    border-top: 1px solid rgba(34, 34, 34, 0.1);
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-top .section {
    position: relative;
}

.content-footer {
    overflow: hidden;
    padding-right: 80px;
}

.content-footer dl {
    margin-right: 28px;
    line-height: 150%;
    float: left;
}

.content-footer dt {
    font-size: 75%;
    transform-origin: 0 0;
}

.joinily-page {
    padding-bottom: 200px;
}

.qrcode {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.qrcode img {
    width: 100%;
    height: auto;
    float: left;
}

.qrcode span {
    display: none;
    transition: all 0.5s;
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 0;
    right: 0;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.30);
    background-color: #fff;
}

.qrcode:hover span {
    display: block;
    animation: scale4 0.25s both;
}

@keyframes scale4 {
    from {
        opacity: 0;
        bottom: 0;
    }
    to {
        bottom: 90px;
        opacity: 1;
    }
}

.footer {
    height: 40px;
    background-color: #F4F4F4;
    color: #999;
}

.footer p {
    text-align: center;
    font-size: 75%;
    line-height: 40px;
}

.main-content {
    padding-bottom: 100px;
    position: relative;
    z-index: 4;
    background-color: #fff;
}

.fixed-tabnav .main-content {
    padding-top: 90px;
}

/* .news-wrapper {
    padding-top: 50px;
}

.news-wrapper h3, h2.news-group {
    font-size: 375%;
    padding: 50px 0 40px;
    color: #d3d3d3;
    font-family: DINPro-Bold;
} */

.items {
    overflow: hidden;
}

.news-items {
    list-style: none;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    border-radius: 0 60px 0 0;
}

.news-items li {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-items li {
    flex: 0 0 50%;
    max-width: 50%;
}

.news-items li:nth-of-type(5n-3), .news-items li:nth-of-type(5n-2) {
    flex: 0 0 25%;
    max-width: 25%;
}

.news-items li:nth-of-type(5n-1), .news-items li:nth-of-type(5n) {
    flex: 0 0 50%;
    max-width: 50%;
}

.news-items li .news-summary {
    width: 50%;
    bottom: 0;
    left: 0;
    height: 50%;
    background-color: #74d;
    position: absolute;
    color: #fff;
    padding: 15px 25px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-items li .news-summary::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-width: 8px;
    border-style: solid;
    border-left-color: #74d;
    border-bottom-color: #74d;
    border-top-color: transparent;
    border-right-color: transparent;
    position: absolute;
    top: -16px;
    left: 0;
}

.news-items li:nth-of-type(5n-3) .news-summary, .news-items li:nth-of-type(5n-2) .news-summary, .news-items li:nth-of-type(5n-1) .news-summary, .news-items li:nth-of-type(5n) .news-summary {
    width: 100%;
    position: relative;
}

.news-items li:nth-of-type(5n-3) .news-summary {
    background-color: #222;
    flex: 1;
}

.news-items li:nth-of-type(5n-1) .news-summary::before, .news-items li:nth-of-type(5n-3) .news-summary::before {
    border-left-color: #222;
    border-bottom-color: #222;
}

.news-items li:nth-of-type(5n-2) .news-summary {
    background-color: #74d;
    order: 1;
    flex: 1;
}

.news-items li:nth-of-type(5n-1) .news-img, .news-items li:nth-of-type(5n) .news-img {
    /* flex: 2; */
}

.news-items li:nth-of-type(5n-1) .news-summary {
    background-color: #222;
    flex: 1;
}

.news-items li:nth-of-type(5n) .news-summary {
    background-color: #74d;
    order: 1;
    flex: 1;
}

.pager {
    margin-top: 50px;
}

.pager a {
    color: #333;
}

.pager li.is-active a, .pager a:hover {
    color: #74d;
}

a.outlink {
    display: block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}

.news-summary a.outlink {
    position: absolute;
    bottom: 20px;
    left: 25px;
    background-image: url(../images/outlink.svg);
}

.news-img {
    overflow: hidden;
    width: 100%;
}

.news-img img {
    width: 100%;
    float: left;
    transition: all 0.5s;
}

.news-items li:hover img {
    transform: scale(1.05);
}

.col3 {
    margin: 0 -8px;
    display: flex;
    flex-wrap: wrap;
}

.col3 li {
    flex: 0 0 33.3%;
    max-width: 33.33%;
    padding: 0 8px;
    margin-bottom: 40px;
}

.equipment-list li {
    position: relative;
    overflow: hidden;
}

.buttons-cover {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    opacity: 0;
    transition: all 0.5s;
}

.buttons-cover a.btn {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.buttons-cover a.btn:last-of-type {
    margin-bottom: 0;
}

.img-cover {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 0 60px 0 0;
    overflow: hidden;
}

.equipment-list li .img-cover {
    position: relative;
    cursor: pointer;
}

.equipment-list li .img-cover::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.equipment-list li .img-cover:hover .buttons-cover {
    opacity: 1;
}

.platform-list li {
    margin-bottom: 40px;
    position: relative;
    display: flex;
    height: 290px;
}

.platform-list .img-cover {
    width: 40.8%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.platform-list .img-cover a {
    display: block;
    width: 100%;
    height: 100%;
}

.item-content {
    width: 59.2%;
    height: 100%;
    background-color: #F7F7F7;
    border-radius: 0 40px 0 0;
    padding: 50px 50px 50px 60px;
}

.img-cover img {
    width: 100%;
    float: left;
}

.item-title {
    overflow: hidden;
    line-height: 150%;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.item-content .item-title {
    position: relative;
    padding-bottom: 10px;
    height: auto;
    margin-bottom: 5px;
    display: block;
    font-size: 125%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.item-content .item-title a:hover {
    color: #74d;
}

.item-des {
    font-size: 87.5%;
    color: #999999;
    letter-spacing: 0;
    text-align: justify;
    line-height: 180%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 30px;
    -webkit-line-clamp: 4;
}

.news-date {
    font-size: 75%;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}

.news-title {
    font-size: 112.5%;
    line-height: 150%;
    color: #fff;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

.news-title a {
    color: #fff;
}

.news-summary p {
    font-size: 87.5%;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}

@media screen and (min-width: 768px) {
    .news-items li:nth-of-type(5n-2) .news-summary::before, .news-items li:nth-of-type(5n) .news-summary::before {
        border-left-color: #74d;
        border-bottom-color: transparent;
        border-top-color: #74d;
        border-right-color: transparent;
        top: inherit;
        bottom: -16px;
    }
    .news-items li:nth-of-type(5n-2) .news-img, .news-items li:nth-of-type(5n) .news-img {
        order: 2;
    }
    .news-items li:nth-of-type(5n-1) .news-summary p, .news-items li:nth-of-type(5n) .news-summary p {
        -webkit-line-clamp: 4;
    }
}

.page-top {
    position: relative;
    z-index: 3;
    height: 420px;
}

.page-top-inner {
    width: 100%;
    height: 420px;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
}

.page-top-inner img {
    display: none;
}

.page-top-inner h1 {
    font-size: 300%;
    text-align: center;
    color: #fff;
    width: 100%;
    /* position: fixed; */
    padding: 0 15%;
}

.tab-nav {
    position: relative;
    z-index: 5;
    width: 100%;
    background-color: #fff;
}

nav.tabs, .tab-nav .block-menu {
    height: 90px;
    display: flex;
    align-items: center;
}

#app.fixed-tabnav .tab-nav {
    position: fixed;
    left: 0;
    top: 124px;
}

nav.tabs ul, .tab-nav ul {
    width: 100%;
    margin: 0;
}

nav.tabs li, .tab-nav li {
    display: inline-block;
    margin-right: 60px;
    padding: 10px 0;
    font-weight: 600;
    position: relative;
}

nav.tabs li:last-of-type, .tab-nav li:last-of-type {
    margin-right: 0;
}

nav.tabs li a, .tab-nav li a {
    /* font-size: 14px; */
    line-height: 150%;
    padding-bottom: 5px;
}

nav.tabs li a:hover, nav.tabs li.is-active a, .tab-nav li a:hover, .tab-nav li.active a, .tab-nav li.menu-item--active-trail a {
    color: #7744DD
}

nav.tabs a:hover {
    background-color: transparent;
}

nav.tabs li.is-active a::after, .tab-nav li.menu-item--active-trail a::after, .tab-nav li a.is-active::after, .tab-nav li.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #7744DD;
    position: absolute;
    left: 0;
    bottom: -1px;
}

nav.tabs {
    margin-top: 20px;
}

.path-user nav.tabs {
    margin-top: 0;
}

.section-page {
    padding: 50px 0 130px;
    position: relative;
}

.section-layer {
    width: 100%;
    height: 545px;
    margin-top: -500px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFFFFF 100%);
    position: relative;
    z-index: 4;
}

.section-layer a.learn-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 268px;
}

.section-to-login a.learn-more {
    width: 268px;
}

.section-page img {
    max-width: 100%;
    margin: 0px auto;
}

/* .section-page:last-of-type {
    padding-bottom: 0;
} */

.art-block h2.title, .section-page h2.title {
    margin-bottom: 15px;
    font-size: 200%;
}

.art-block h2.title {
    margin-bottom: 25px;
    padding-top: 20px;
}

a.link2 {
    font-size: 87.5%;
    line-height: 150%;
    padding-bottom: 5px;
    display: inline-block;
    border-bottom: 2px solid #222;
}

.section-page p {
    line-height: 180%;
    width: 50%;
    margin-bottom: 40px;
    text-align: justify;
}

.img-center {
    text-align: center;
}

.about-items {
    width: 100%;
    max-width: 505px;
    position: absolute;
    right: 0;
    top: 50px;
}

/* 505 x 336 */

.about-item {
    width: 42.4%;
    padding: 9% 0 0 6%;
    position: absolute;
}

.about-item span {
    display: block;
}

.about-item span.cn {
    font-size: 87.5%;
    width: 67%;
    margin-bottom: 5px;
    font-weight: 600;
}

.about-item span.en {
    font-size: 75%;
    transform-origin: 0 0;
}

.about-item:nth-of-type(1) {
    left: 9%;
    top: 0;
}

.about-item:nth-of-type(2) {
    left: 0;
    top: 41%;
}

.about-item:nth-of-type(3) {
    left: 51.6%;
    top: 15.47%;
}

.about-item:nth-of-type(4) {
    left: 46.3%;
    top: 54.5%;
}

.page-banner-wrapper {
    height: 360px;
}

.page-banner {
    height: 360px;
    background-position: center center;
    background-color: #D6D6D6;
    transition: all 0.5s;
    position: fixed;
    z-index: 4;
    width: 100%;
}

.news-banner {
    padding: 0;
}

.news-banner .swiper-slide {
    /* height: 398px; */
    background-color: #E9EAEB;
    text-align: center;
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.news-banner .swiper-slide img {
    width: 100%;
    float: left;
}

.news-banner .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-banner .w {
    height: 100%;
}

.page-banner h2 {
    font-size: 250%;
}

.page-banner h2 span {
    display: block;
}

.page-banner h2 span.en {
    line-height: 120%;
    display: flex;
    align-items: center;
    max-width: 424px;
    text-align: left;
}

.page-banner h2 span.en img {
    display: inline-block;
    margin-right: 20px;
}

.page-banner h2 span.lab:before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 0 24px 0 0;
    background-color: #222;
    margin-right: 20px;
}

.platform-main {
    background-color: #fff;
    /* border-radius: 0 100px 0 0; */
    padding-top: 80px;
}

.section-page.partner1 {
    position: relative;
}

.section-page.partner1 .section-about-content {
    position: absolute;
    padding-top: 20px;
}

.admittance {
    width: 100%;
    position: relative;
    padding-left: 47%;
    margin-top: 30px;
}

.admittance ul {
    position: relative;
    top: -13px;
}

.admittance::before {
    content: '';
    display: block;
    width: 47%;
    height: 2px;
    background-color: #222;
    position: absolute;
    left: 0;
    top: 0;
}

.admittance li {
    font-size: 87.5%;
    color: #222;
    line-height: 150%;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-left: 38px;
    padding-top: 4px;
}

span.order {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #222;
    text-align: center;
    line-height: 28px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.admittance li span.order {
    margin-right: 10px;
}

.admittance ul::before {
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    background-color: #222;
    position: absolute;
    top: 95%;
    left: 13px;
    transform-origin: 0 0;
    transform: rotate(-30deg);
}

.admittance ul::after {
    content: '';
    bottom: -13px;
    height: 2px;
    background-color: #222;
    position: absolute;
    left: 28px;
    right: 0;
}

.declare {
    padding-top: 40px;
    padding-bottom: 100px;
}

.declare ul {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.declare ul::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #222;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.declare ul li {
    display: block;
    flex: 1;
    position: relative;
    padding: 118px 0;
    color: #222;
}

html[lang="en"] .declare ul li {
    padding: 278px 0;
}

.declare ul li span.order {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -14px;
}

.declare ul li:last-of-type {
    flex: 2;
}

.declare ul li::before {
    content: '';
    display: block;
    width: 0;
    height: 50%;
    position: absolute;
    left: 13px;
    top: -13px;
    border-left: 2px dashed #222;
}

.declare ul li:nth-of-type(2n-1)::before {
    top: 50%;
}

.declare ul li dl {
    position: absolute;
    padding-left: 30px;
    width: 200%;
    left: 0;
}

.declare ul li:last-of-type dl {
    width: 100%;
}

.declare ul li:nth-of-type(2n-1) dl {
    top: 98%;
}

html[lang="en"] .declare ul li:nth-of-type(2n-1) dl {
    top: 58%;
}

.declare ul li:nth-of-type(2n) dl {
    top: -18px;
}

.declare ul li dt {
    font-weight: 600;
}

.declare ul li dd {
    font-size: 87.5%;
    text-align: justify;
}

.establish-table {
    width: 100%;
    table-layout: fixed;
    border: 1px solid #222;
}

.establish-table thead th {
    background-color: #222;
    color: #fff;
    height: 50px;
    vertical-align: middle;
    border-right: 1px solid #fff;
}

.establish-table thead th:last-of-type {
    border-right: 1px solid #222;
}

.establish-table tbody th {
    width: 5em;
}

.establish-table th {
    font-size: 87.5%;
    font-weight: 600;
    vertical-align: top;
    padding: 10px;
    border: 1px solid #222;
}

.establish-table td {
    font-size: 87.5%;
    padding: 10px;
    vertical-align: top;
    border: 1px solid #222;
}

.establish-table tr:nth-of-type(2n-1) {
    background-color: #F7F7F7;
}

.joinily-list {
    overflow: hidden;
}

.joinily-list>ol {
    margin: 0 -20px;
    display: flex;
}

.joinily-list>ol.col4>li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 20px;
}

.joinily-list>ol.col3>li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 20px;
}

.joinily-list span.num {
    display: block;
    width: 100%;
    padding-top: 5px;
    border-top: 2px solid #222;
    margin-bottom: 20px;
}

.joinily-list h3 {
    font-size: 112.5%;
    font-weight: 600;
    margin-bottom: 10px;
}

.joinily-list ul {
    list-style: disc;
    margin-left: 1em;
}

.joinily-list ul li {
    font-size: 100%;
    line-height: 150%;
    padding: 0;
    margin: 0;
    text-align: justify;
    max-width: inherit;
}

.detail-banner h1 {
    font-size: 50px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    color: #fff;
}

.detail-banner h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.detail-banner p {
    text-align: justify;
    margin-top: 35px;
    text-align: center;
    color: #fff;
}

.detail-main {
    overflow: hidden;
    padding-top: 60px;
    position: relative;
    z-index: 5;
    background-color: #FFFFFF;
}

.detail-main p.text-align-center {
    text-indent: 0;
}

.detail-main strong, .detail-main b {
    color: #74d;
}

.artist-content {
    position: relative;
    width: 66.8%;
    float: left;
}

.news-main-top {
    width: 66.8%;
}

.news-main {
    width: 100%;
    overflow: hidden;
}

.news-main h3 {
    font-size: 112.5%;
    margin-bottom: 2em;
}

.artist-content h3 {
    text-align: center;
    margin-bottom: 1em;
}

.news-main p {
    text-indent: 2em;
    margin-bottom: 40px;
}

.news-main p img {
    margin-left: -2em;
}

.detail-main p.text-align-center img {
    margin-left: 0;
}

.date .datetime {
    opacity: 0.3;
}

.detail-main article {
    width: 80%;
    clear: both;
    margin-bottom: 100px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.detail-main .news-main article {
width: 100%;
margin-bottom: 5px;
float:none!important;
border: none;
padding: 0 0 0 2em;
}


.detail-main article.views-chengguo {
    width: 100%;
    border-top: none;
    position: relative;
}

.detail-main article.views-chengguo::before {
    content: '';
    display: block;
    width: 60%;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 0;
    left: 0;
}

.views-container .swiper-slide h3, .views-container .swiper-slide p {
    width: 60%;
}

.views-container .swiper-slide h3 {
    font-size: 150%;
    margin-bottom: 10px;
}

.detail-main article:first-of-type {
    padding-top: 0;
    border-top: none;
}

.detail-main article>p:last-of-type {
    margin-bottom: 0;
}

.jianjie {
    width: 73%;
}

.views-chengguo a, .jianjie a {
    color: #74d;
}

.jianjie h3 {
    font-size: 112.5%;
    margin-bottom: 1em;
    margin-top: 1em;
}

.detail-main article:nth-of-type(2n-1) {
    float: left;
}

.detail-main article:nth-of-type(2n) {
    float: right;
}

.detail-main h2 {
    font-size: 225%;
    line-height: 150%;
    margin-bottom: 40px;
}

.detail-main p {
    /* font-size: 14px; */
    line-height: 200%;
    margin-bottom: 1em;
    width: 100%;
    clear: both;
}

.detail-main h4 {
    font-weight: bold;
    margin-bottom: 10px;
    clear: both;
}

.equipment-main a.btn {
    width: 100%;
    max-width: 240px;
}

.detail-main ol, .detail-main ul {
    line-height: 180%;
    margin-bottom: 2em;
    margin-left: 1.3em;
    list-style: disc;
    width: 100%;
    clear: both;
}

.detail-main ol {
    list-style: decimal;
}

.detail-main ol, .equipment-main ul, .equipment-main p {
    margin-bottom: 1em;
}

.detail-main img {
    max-width: 100%;
    border-radius: 0 55px 0 0;
}

.equipment-pic img {
    max-width: 400px;
}

.detail-main p img {
    margin-bottom: 0;
}

.detail-main h1 {
    font-size: 225%;
    line-height: 150%;
    margin: 0 0 10px;
}

.detail-main .date {
    font-size: 87.5%;
    margin-bottom: 40px;
}

.element-invisible {
    display: none;
}

.nav-btn {
    display: none;
}

.search-form {
    font-size: 87.5%;
    padding-top: 40px;
    margin-bottom: 40px;
}

.search-form~h2 {
    font-size: 225%;
    margin-bottom: 20px;
}

.search-help-link {
    display: none;
}

.search-form__submit {
    padding: 0 25px;
    background-color: #222;
    color: #fff;
    font-size: 87.5%;
    border-radius: 4px;
    border: none;
    height: 38px;
}

.node_search-results li {
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid rgba(151, 151, 151, .1);
}

h3.search-result__title {
    font-size: 125%;
    line-height: 150%;
    margin-bottom: 15px;
}

.search-result__snippet {
    font-size: 87.5%;
    line-height: 150%;
}

.yuanjing {
    font-size: 175%;
    line-height: 150%;
    color: #7744dd;
    padding-top: 40px;
    margin: 0 0 20px;
}

.yuanjing.summary::after, .yuanjing::before {
    content: '';
    display: block;
    width: 28px;
    height: 22px;
    background: url(../images/upper-yinhao.svg) no-repeat center center;
    background-size: 100%;
    opacity: 0.3;
}

.yuanjing::after {
    /* content: '”'; */
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    color: #000;
    opacity: 0.3;
    background: url(../images/down-yinhao.svg) no-repeat right bottom;
    background-size: 100%;
    position: relative;
    top: -9px;
}

.yuanjing.summary {
    width: 86%;
    font-size: 187.5%;
    margin: 100px auto;
    overflow: hidden;
}

.yuanjing.summary p {
    text-align: center;
    padding: 0 28px;
}

.yuanjing.summary::before {
    margin-bottom: 10px;
}

.yuanjing.summary::after {
    clear: both;
    float: right;
    margin-top: 10px;
    background: url(../images/down-yinhao.svg) no-repeat right bottom;
    background-size: 100%;
    opacity: 0.3;
}

.research-slide {
    transition: all 0.5s;
    margin-top: 30px;
}

.research-slide:hover {
    transform: translate3d(0, -30px, 0);
}

/* .research-container .swiper-slide:nth-of-type(3n-2) .research-slide {
    margin-top: 60px;
}

.research-container .swiper-slide:nth-of-type(3n-1) .research-slide {
    margin-top: 0px;
}

.research-container .swiper-slide:nth-of-type(3n) .research-slide {
    margin-top: 30px;
} */

/* .research-container .swiper-wrapper {
    height: 279px;
} */

.swiper-buttons {
    position: static;
    text-align: center;
    overflow: hidden;
    padding-top: 40px;
}

.swiper-button {
    position: static;
    display: inline-block;
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    margin: 0 25px;
}

.swiper-button-prev {
    background-image: url(../images/prev.svg);
}

.swiper-button-next {
    background-image: url(../images/next.svg);
}

.about-container .swiper-button-prev {
    background-image: url(../images/prev-white.svg);
    width: 44px;
    background-size: 100%;
    top: 40%;
}

.about-container .swiper-button-next {
    background-image: url(../images/next-white.svg);
    width: 44px;
    background-size: 100%;
    top: 40%;
}

.research-slide .img {
    display: block;
    width: 100%;
    overflow: hidden;
}

/* .research-slide .img img {
    transition: all 0.5s;
} */

/* .research-slide:hover .img img {
    transform: scale(1.05);
} */

.research-slide .name {
    padding: 10px 0;
    color: #222;
    border-bottom: 1px solid #222;
    display: block;
    width: 100%;
}

.research-slide:hover .name a {
    color: #7744dd;
}

.research-slide:hover .name {
    border-bottom: 1px solid #74d;
}

h2.title {
    font-size: 112.5%;
    margin-bottom: 20px;
}

.tuijian-list {
    padding-top: 15px;
    height: 420px;
}

.tuijian-list-content p {
    width: 100%;
    line-height: 150%;
    /* margin-bottom: 20px; */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.tuijian-list-content {
    flex: 0 0 36%;
    max-width: 36%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tuijian-list-content h3.line-title {
    width: 90px;
    padding: 0;
    margin-bottom: 8px;
}

.tuijian-list-content a.learn-more {
    margin-bottom: 0;
    margin-top: 0;
}

.tuijian-list-img {
    flex: 0 0 61%;
    max-width: 61%;
    height: 100%;
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.tuijian-list-img img {
    text-align: right;
    display: none;
}

.tuijian-list-content h3.title {
    font-size: 150%;
    line-height: 150%;
    /* margin-bottom: 20px; */
}

.tuijian-list-content h3.title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #222;
    overflow: hidden;
    margin-top: 5px;
}

.art-block {
    height: 320px;
    background: #EDE9E9 url(../images/bgArt.jpg) no-repeat center center;
    background-size: auto 100%;
    position: relative;
    z-index: 5;
    padding: 20px 40px;
}

.art-block .link2 {
    font-weight: 600;
}

.section-about-content {
    width: 42%;
}

.section-about-content p {
    width: 100%;
    margin-bottom: 1em;
}

.section-about-page .img-center {
    padding-top: 50px;
}

.join-wrapper {
    padding-top: 50px;
}

.news-main-right {
    width: 25.2%;
    float: right;
}

.related-news {
    margin-bottom: 40px;
}

.related-news h2 {
    font-size: 150%;
    color: #222;
    margin-bottom: 40px;
}

.related-news h2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 0 12px 0 0;
    margin-right: 5px;
    position: relative;
    background-color: #74d;
    top: 4px;
}

.related-news ul {
    list-style: none;
    overflow: hidden;
}

.related-news li {
    margin-bottom: 40px;
}

.related-news-list {
    display: flex;
    align-items: center;
}

.related-news li .news-img {
    width: 140px;
    height: 140px;
    margin-right: 30px;
    border-radius: 0 30px 0 0;
    overflow: hidden;
    display: none;
}

.related-news .news-img img {
    transition: all 0.5s;
    border-radius: 0;
}

.related-news ul {
    margin: 0;
}

.related-news li:hover .news-img img {
    transform: scale(1.05);
}

.related-news li .news-info {
    flex: 1;
    position: relative;
}

.news-info h3 {
    font-size: 112.5%;
    line-height: 150%;
    margin-bottom: 10px;
    font-weight: normal;
}

.news-info h3 a {
    color: #222;
    transition: all 0.5s;
}

.related-news-list:hover .news-info h3 a {
    color: #74d;
}

.news-info .news-date {
    color: #222;
    font-size: 87.5%;
    opacity: 0.5;
    margin-bottom: 0;
}

.related-news-list:hover .news-info .news-date {
    color: #74d;
}

.news-info a.outlink {
    position: absolute;
    bottom: 5px;
    right: 0;
    background-image: url(../images/outlink-black.svg);
}

.news-info a.outlink:hover {
    background-image: url(../images/outlink-purple.svg);
}

.related-news-list:hover .news-info a.outlink {
    background-image: url(../images/outlink-purple.svg);
}

.on-under {
    position: absolute;
    right: 0;
}

.on-under img {
    width: 100%;
}

.on-under .on, .on-under .under {
    position: absolute;
    opacity: 0;
    transition: all 0.75s;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

.on-under .on {
    right: 0;
}

.on-under .under {
    left: 0;
}

.on-under.p1 {
    width: 460px;
    height: 391px;
    top: 0;
}

.on-under.p1 .on {
    width: 351px;
    height: 315px;
    top: -80px;
    background-image: url(../images/p1-on.png);
}

.on-under.p1 .under {
    width: 396px;
    height: 214px;
    bottom: -80px;
    background-image: url(../images/p1-under.png);
}

@keyframes p1 {
    100% {
        background-image: url(../images/p1-under-h.png);
    }
}

@keyframes p2 {
    100% {
        background-image: url(../images/p2-under-h.png);
    }
}

@keyframes p3 {
    100% {
        background-image: url(../images/p3-under-h.png);
    }
}

.section-front.active .on-under.p1 .on {
    top: 0;
    opacity: 1;
}

.section-front.active .on-under.p1 .under {
    bottom: 0;
    opacity: 1;
    animation: p1 ease-in 0.25s both 0.75s;
}

.on-under.p2 {
    width: 552px;
    height: 471px;
    top: 0;
}

.on-under.p2 .on {
    width: 331px;
    height: 369px;
    bottom: 0;
    right: -80px;
    background-image: url(../images/p2-on.png);
}

.on-under.p2 .under {
    width: 331px;
    height: 283px;
    top: 0;
    left: -80px;
    background-image: url(../images/p2-under.png);
}

.section-front.active .on-under.p2 .on {
    right: 0;
    opacity: 1;
}

.section-front.active .on-under.p2 .under {
    left: 0;
    opacity: 1;
    animation: p2 ease-in 0.25s both 0.75s;
}

.on-under.p3 {
    width: 519px;
    height: 331px;
    top: 0;
}

.on-under.p3 .on {
    width: 369px;
    height: 331px;
    bottom: -80px;
    background-image: url(../images/p3-on.png);
}

.on-under.p3 .under {
    width: 399px;
    height: 214px;
    top: 20px;
    left: -100px;
    background-image: url(../images/p3-under.png);
}

.section-front.active .on-under.p3 .on {
    bottom: 0;
    opacity: 1;
}

.section-front.active .on-under.p3 .under {
    left: 0;
    opacity: 1;
    animation: p3 ease-in 0.25s both 0.75s;
}

.section-to-login, .studio-wrapper {
    position: relative;
    z-index: 5;
    background-color: #fff;
    overflow: hidden;
    margin-top: -50px;
    padding-bottom: 50px;
}

.page-user {
    /* width: 69%; */
}

.page-user .form-item {
    margin-bottom: 20px;
}

.page-user .form-item label {
    display: block;
    width: 100%;
    color: #222;
    line-height: 200%;
    margin-bottom: 10px;
}

.page-user .form-item label.option {
    display: inline;
    color: #222;
}

.page-user .form-item label.option a {
    color: #7744dd;
}

.page-user .form-item .form-text, .page-user .form-item .form-email {
    border: 1px solid #222;
    padding: 10px 20px;
    color: #222;
    width: 100%;
}

.page-user .form-item .form-textarea {
    border: 1px solid #222;
    padding: 10px 20px;
    color: #222;
}

.page-user .form-item .form-text::placeholder {
    color: #222;
    opacity: 0.3;
}

.page-user .form-item .description {
    font-size: 75%;
    line-height: 150%;
    color: #999;
    padding-top: 10px;
}

.page-user .form-submit {
    width: 350px;
    height: 60px;
    background-color: #222;
    border: none;
    border-radius: 0 16px 0 0;
    text-align: center;
    font-size: 112.5%;
    color: #fff;
    transition: all 0.5s;
    margin-top: 0px;
}

.page-user .form-submit:hover {
    background-color: #7744dd;
}

#edit-field-accept--wrapper legend {
    display: none;
}

.normal-content {
    width: 69%;
    padding: 70px 0 0;
}

.normal-content h2 {
    font-size: 150%;
    margin-bottom: 24px;
}

.normal-content h3 {
    margin-top: 2em;
    margin-bottom: 10px;
}

.normal-content p {
    font-size: 87.5%;
    margin-bottom: 1em;
}

.normal-content p.big {
    font-size: 100%;
    font-weight: bold;
    text-decoration: underline;
    font-style: italic;
    margin-bottom: 2em;
}

.no-val {
    padding: 100px 0 0;
    text-align: center;
    font-size: 150%;
    color: #999;
}

.search-results strong {
    color: #7744dd;
}

.chinese-address select {
    width: 30%;
    padding: 10px 20px;
    appearance: none;
    -webkit-appearance: none;
    background: url(../images/select.svg) no-repeat 95% center;
}

.user-pass-reset {
    padding-top: 70px;
    font-size: 87.5%;
    color: #222;
}

.user-pass-reset em {
    color: #7744dd;
}

.page-user .field--label-inline {
    font-size: 87.5%;
    margin-bottom: 10px;
}

.form-checkbox {
    position: relative;
    top: 2px;
}

.form-item--error-message {
    font-size: 75%;
}

.form-item--error-message strong {
    font-weight: normal;
}

/* 
.user-login-form {
    padding-left: 50%;
    background: url(../images/login.jpg) no-repeat left center;
    background-size: 42%;
    width: 90%;
    box-sizing: border-box;
}

.page-user .user-login-form .form-item label {
    display: none;
}

.page-user .user-login-form .form-item label.option {
    display: inline;
    font-size: 12px;
}

.page-user .user-login-form .description {
    display: none;
} */

table.responsive-enabled th {
    background-color: #222;
    color: #fff;
    padding: 10px;
}

table.responsive-enabled td {
    padding: 10px;
    color: #222;
    border-bottom: 1px solid #ddd;
}

#edit-field-join-type {
    display: flex;
    align-items: center;
}

#edit-field-join-type>div {
    margin-right: 20px;
}

.user-form h3, #edit-field-join-type-wrapper .fieldset-legend {
    font-size: 112.5%;
    line-height: 150%;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 20px;
    display: block;
    font-weight: bold;
}

.user-form h3::before, #edit-field-join-type-wrapper .fieldset-legend::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #222;
    position: absolute;
    left: 0;
    bottom: 0;
}

.detail-main p.size12 {
    font-size: 75%;
}

.detail-main p.size13 {
    font-size: 81.25%;
}

.detail-main p.size14 {
    font-size: 87.5%;
}

.detail-main p.size15 {
    font-size: 93.75%;
}

.top {
    width: 48px;
    height: 48px;
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(../images/icon-top.svg);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 100%;
    transition: all 0.5s;
    position: fixed;
    bottom: 70px;
    right: calc(15% - 63px);
    z-index: 12;
    display: none;
    cursor: pointer;
}

.top:hover {
    background-color: #74d;
}

.top.show {
    display: block;
    animation: fadeIn 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

html[lang='en'] a.learn-more {
    letter-spacing: 0;
}

html[lang='en'] h3.line-title span {
    letter-spacing: 0;
    padding: 0;
}

html[lang='en'] .section-front h2.title {
    font-size: 240%;
}

html[lang='en'] .friends-list ul.flex {
    flex-wrap: wrap;
}

html[lang='en'] .friends-list ul.flex li {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 10px;
}

html[lang='en'] .content-footer dl {
    margin-bottom: 10px;
}

html[lang='en'] .nav .menu--main>ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 0;
}

html[lang='en'] .nav .menu--main>ul::after {
    display: none;
}

html[lang='en'] .nav .menu--main>ul>li {
    margin-left: 15px;
}

html[lang='en'] .inno-name i.cn {
    display: none;
}

html[lang='en'] a.view-more {
    letter-spacing: 0;
}

html[lang='en'] .nav .menu--main>ul>li>ul {
    max-width: inherit;
}

html[lang='en'] .nav .menu--main>ul>li>a {
    font-size: 87.5%;
}

html[lang='en'] .about-item {
    width: 52.4%;
    padding: 6% 0 0 6%;
    text-align: left;
}

html[lang='en'] .about-item span.cn, html[lang='en'] .joinily-list ul li, html[lang='en'] .declare ul li dd, html[lang='en'] .joinily-list h3, html[lang='en'] .tuijian-list-content p {
    text-align: left;
}

html[lang='en'] .tuijian-list-content p {
    font-size: 87.5%;
}

html[lang='en'] .about-items {
    top: 120px;
}

html[lang='en'] .nice-login-create a, html[lang='en'] .page-user .nice-login-main .form-submit {
    letter-spacing: 0;
}

html[lang='en'] .user-form h3 {
    display: none;
}

html[lang='en'] .tuijian-list-content h3.title {
    font-size: 125%;
}

html[lang="en"] .inno-name {
    font-size: 112.5%;
}

.about-container a.play {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../images/play.svg) no-repeat center center;
}
.video-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.80);
    text-align: center;
}

.video-wrapper a.close {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 40px;
    text-align: center;
    line-height: 40px;
}

.video-wrapper video {
    height: 80%;
    width: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
    .w {
        width: 100%;
        max-width: inherit;
        padding: 0 6%;
    }
    .slide-wrapper::before {
        width: 15px;
        height: 100%;
    }
    .slide-left-right::before {
        display: none;
    }
    .slide-left-right .w {
        padding: 0;
    }
    .slide-left {
        /* padding-left: 15px; */
        padding-left: 0;
        padding-right: 40px;
    }
    .footer-top .w {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 1000px) {
    body {
        padding-top: 84px!important;
        font-size: 14px;
    }
    .logo {
        height: 50px;
        width: 170px;
        margin: 0;
        padding-bottom: 0;
    }
    .header {
        padding: 15px 0;
    }
    .header-region {
        padding-top: 0;
    }
    .header-top {
        height: 0;
        overflow: hidden;
        border: none;
        position: relative;
        z-index: 12;
        padding: 0!important;
    }
    .nav-btn {
        display: block;
        position: fixed;
        right: 5%;
        top: 26px;
        z-index: 13;
        width: 32px;
        height: 32px;
    }
    .nav-btn span {
        width: 18px;
        height: 2px;
        background-color: #222;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -1px 0 0 -9px;
        display: block;
        border-radius: 2px;
        transition: all 0.5s;
    }
    .nav-btn span::before, .nav-btn span::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        background-color: #222;
        border-radius: 2px;
        transition: all 0.5s;
    }
    .nav-btn span::before {
        top: -6px;
    }
    .nav-btn span::after {
        bottom: -6px;
    }
    body.show-nav {
        overflow: hidden;
    }
    .show-nav .nav-btn span {
        background-color: transparent;
    }
    .show-nav .nav-btn span::before {
        top: 0;
        transform: rotate(45deg);
    }
    .show-nav .nav-btn span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
    .nav {
        height: 100%;
        display: block;
        position: fixed;
        width: 100%;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        transform: translate3d(100%, 0, 0);
        background-color: rgba(255, 255, 255, 0.98);
        z-index: 9;
        padding-top: 0px;
        transition: all 0.5s;
        overflow: hidden;
        overflow-y: auto;
    }
    .show-nav .nav {
        transform: translate3d(0, 0, 0);
    }
    #block-qingmei-main-menu ul.menu {
        margin-left: 0;
    }
    #block-qingmei-main-menu li {
        width: 100%;
        margin-left: 0;
    }
    .nav .menu--main>ul>li.menu-item--expanded::after {
        display: none;
    }
    .header-top-nav li {
        flex: 1;
        width: auto;
    }
    #block-qingmei-main-menu li a {
        font-size: 20px;
        margin-bottom: 5px;
        display: block;
        padding: 0 6%;
    }
    #block-qingmei-main-menu>ul>li {
        margin-bottom: 15px;
    }
    #block-qingmei-main-menu>ul>li>ul {
        display: block;
        box-shadow: none;
        max-width: inherit;
        position: static;
        padding: 0;
        background-color: transparent;
    }
    #block-qingmei-main-menu>ul>li>ul a {
        font-size: 16px;
        margin-bottom: 0;
    }
    .nav-top {
        top: 0;
        padding: 30px 0 40px 6%;
        float: left;
        width: auto;
    }
    .page-top, .page-top-inner {
        height: 268px;
    }
    .slide-left {
        width: 215px;
        border-radius: 0 56px 0 0;
    }
    .banner-bg {
        padding: 10px 0;
    }
    .banner-bg>ul {
        margin: 0 -5px;
    }
    .banner-bg>ul li {
        padding: 5px;
    }
    .section-front {
        margin-top: 40px;
    }
    .slide-left h2 {
        font-size: 16px;
    }
    .on-under {
        transform: scale(0.8);
        transform-origin: right center;
    }
    .slide-left .date {
        margin-bottom: 10px;
    }
    .slide-left p {
        -webkit-line-clamp: 2
    }
    .banner-pagination {
        bottom: 60px;
    }
    .section-front {
        padding-top: 40px;
    }
    .section-front h2.title {
        font-size: 24px;
    }
    .banner-container .slide-left {
        padding-left: 0;
        padding-right: 15px;
    }
    .inno-list li {
        width: 50%;
        height: 270px;
        border: none;
    }
    .inno-name span.cn {
        font-size: 24px;
    }
    .content-footer .w {
        padding: 20px 15px;
    }
    .content-footer-right dl {
        margin-right: 0;
    }
    .page-banner-wrapper, .page-banner {
        height: 200px;
    }
    .page-banner h2 {
        font-size: 36px;
    }
    .page-banner h2 span.en {
        font-size: 16px;
    }
    .page-banner h2 span.lab:before {
        width: 26px;
        height: 26px;
        border-radius: 0 20px 0 0;
    }
    .page-banner h2 span.en img {
        margin-right: 10px;
        height: 36px;
    }
    .page-banner .swiper-slide {
        height: auto;
    }
    .page-banner .swiper-slide img {
        width: 100%;
        height: auto;
    }
    .item-title {
        font-size: 14px;
    }
    .news-title {
        -webkit-line-clamp: 2;
    }
    .news-summary p {
        -webkit-line-clamp: 2;
    }
    .news-summary a.outlink {
        bottom: 10px;
        left: 15px;
    }
    .section-about-content {
        width: 100%;
    }
    .section-page.partner1 .section-about-content {
        position: static;
    }
    .admittance {
        padding-left: 0;
    }
    .section-page img {
        max-width: 100%!important;
    }
    .section-layer {
        height: 325px;
        margin-top: -220px;
    }
    .page-top h1 {
        font-size: 28px;
    }
    .page-top .w {
        height: 240px;
    }
    /* .research-bar {
        transform: scale(0.6);
    } */
    .tab-nav li {
        margin-right: 15px;
    }
    .section-page h2.title span.en {
        font-size: 48px;
    }
    .section-page p {
        width: 100%;
    }
    .about-items {
        position: relative;
        top: 0;
        margin: 0px auto;
    }
    html[lang='en'] .about-items {
        top: 0;
    }
    html[lang='en'] .about-item {
        width: 47.4%;
        padding: 4% 0 0 4%;
        text-align: left;
    }
    .section-page.about1 {
        padding-bottom: 20px;
    }
    .section-page {
        padding-bottom: 20px;
    }
    /* .creation-bar {
        transform: scale(0.75) translateX(-50%);
        transform-origin: center center;
    }
    .joinily-bar {
        transform: translate3d(-50%, -50%, 0) scale(0.75);
    } */
    .admittance {
        position: relative;
        top: 0;
    }
    .admittance::before {
        display: none;
    }
    .admittance ul {
        width: 100%;
        position: static;
    }
    .admittance ul::before, .admittance ul::after {
        display: none;
    }
    .banner-bg h1 span.cn {
        font-size: 30px;
    }
    .banner-bg h1 span.en {
        font-size: 12px;
    }
    .detail-main {
        margin: 0px auto;
    }
    .detail-main h1 {
        font-size: 24px;
    }
    .item-des {
        margin-bottom: 20px;
    }
    .nice-login-left {
        width: 56%;
    }
    .nice-login-right {
        width: 44%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .nice-login__login__actions {
        padding-top: 20px;
    }
    .nice-login-wrapper h2.title {
        margin-bottom: 15px;
    }
    #app.fixed-tabnav .tab-nav {
        top: 84px;
    }
    .nav .menu--main>ul>li.menu-item--active-trail>a::after {
        left: 0;
        transform: translate3d(0, 0, 0);
    }
    .news-banner .swiper-slide {
        height: 288px;
    }
    .news-banner .swiper-slide img {
        display: none;
    }
    .hot-news .slide-left {
        width: 257px;
    }
    .hot-news .slide-left a.view-more {
        bottom: 50px;
    }
    .news-items li .news-summary {
        padding: 15px 15px 45px;
    }
    .section-front.front2 {
        background-size: auto 175px;
        padding-top: 0px;
    }
    .section-front.front3 {
        padding-top: 60px;
        background-size: auto 179px;
    }
    .section-front.front4 {
        background-size: auto 140px;
    }
    .section-front.front5 {
        background-size: auto 184px;
        padding-top: 40px;
    }
    .section-front.active .on-under.p3 .under {
        left: 40px;
        top: 10px;
    }
    .yuanjing.summary {
        margin: 0 auto 50px;
    }
    .item-content {
        padding: 30px 40px;
    }
    .platform-list li {
        height: 240px;
    }
    .detail-banner h1 {
        font-size: 28px;
    }
    .banner-bg h1 {
        width: calc(40% - 60px);
    }
}

@media screen and (max-width: 767px) {
    .banner-bg ul li {
        padding: 4px;
    }
    .fzbox span:nth-child(1) {
        border-radius: 10px 0 0;
    }
    .img-cover {
        border-radius: 0 45px 0 0;
    }
    .banner-bg h1 span.cn {
        font-size: 14px;
    }
    .banner-bg h1 span.en {
        font-size: 12px;
        white-space: nowrap;
        transform: scale(0.5);
        position: relative;
        width: auto;
    }
    .slide-left {
        border-radius: 0 20px 0 0;
        padding: 0 15px!important;
        width: 100%;
        position: absolute;
        height: 50px;
        bottom: 0;
        left: 0;
    }
    .slide-left p, .slide-left .date, .slide-left a.view-more {
        display: none;
    }
    .slide-left h2 {
        font-size: 14px;
        line-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0;
        width: calc(100% - 60px);
    }
    .banner-pagination .swiper-pagination {
        position: static;
    }
    .banner-pagination {
        width: auto;
        left: inherit;
        right: 0;
        bottom: 0;
        height: 27px;
    }
    .banner-pagination .w {
        padding-left: 0;
        padding-right: 10px;
    }
    a.view-more {
        letter-spacing: 0;
    }
    .banner-pagination .swiper-pagination-bullet svg {
        display: none;
    }
    .banner-pagination .swiper-pagination-bullet {
        opacity: 0.3;
        margin-right: 6px;
    }
    .banner-pagination .swiper-pagination-bullet-active {
        width: 6px;
        height: 6px;
        background-color: #fff;
        opacity: 1;
    }
    .section-front {
        padding-top: 30px;
    }
    .section-front-content {
        width: 100%;
    }
    .section-front a.learn-more {
        margin: 15px 0 30px;
    }
    .on-under {
        position: relative;
        transform: scale(1);
    }
    .on-under.p1 {
        width: 231px;
        left: calc(100% - 231px);
        height: 196px;
    }
    .on-under.p1 .on {
        width: 158px;
        height: 175px;
    }
    .on-under.p1 .under {
        width: 198px;
        height: 107px;
    }
    .on-under.p2 {
        width: 274px;
        height: 236px;
        left: calc(100% - 274px);
    }
    .on-under.p2 .on {
        width: 165px;
        height: 185px;
    }
    .on-under.p2 .under {
        width: 164px;
        height: 142px;
    }
    .on-under.p3 {
        width: 258px;
        height: 166px;
        left: calc(100% - 258px);
    }
    .on-under.p3 .on {
        width: 185px;
        height: 166px;
    }
    .on-under.p3 .under {
        width: 198px;
        height: 107px;
    }
    .section-front.front3 {
        padding-top: 40px;
        background-size: auto 85px;
    }
    .section-front.front2, .section-front.front5, .section-front.front4 {
        background-size: auto 85px;
    }
    .front3 .section-front-content {
        width: 100%;
    }
    .front5 .section-front-content, .front4 .section-front-content {
        padding-right: 0;
        height: auto;
    }
    .section-front h2.title span.en {
        height: 20px;
    }
    .section-front h2.title {
        font-size: 20px;
    }
    h3.line-title span {
        font-size: 12px;
    }
    .about-icon {
        position: absolute;
        top: 15px;
        right: 0;
        transform: scale(0.45);
        transform-origin: right top;
    }
    .about-container .name {
        height: 40px;
        padding: 0 15px;
    }
    .about-container .name span {
        font-size: 12px;
        line-height: 40px;
    }
    .about-container .name span::before {
        width: 12px;
        height: 12px;
        border-radius: 0 6px 0 0;
    }
    .inno-name span.cn {
        font-size: 14px;
    }
    .inno-name span.en {
        white-space: nowrap;
        width: auto;
        display: block;
        transform: scale(0.5);
    }
    .inno-name i.cn {
        font-size: 13px;
        width: 14px;
    }
    .inno-name i.en {
        font-size: 12px;
    }
    .inno-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .inno-list li {
        height: auto;
        padding: 20px 0;
        flex: 0 0 50%;
        max-width: 50%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .inno-list li:nth-of-type(1), .inno-list li:nth-of-type(2) {
        height: 190px;
    }
    .inno-list li:nth-of-type(3), .inno-list li:nth-of-type(4) {
        height: 240px;
    }
    .inno-list li:nth-of-type(5), .inno-list li:nth-of-type(6) {
        height: 250px;
    }
    .inno-list li:nth-last-of-type(3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }
    .inno-icon {
        width: 85px;
        height: 100px;
    }
    .inno-list li:nth-of-type(2n-1) {
        padding-right: 10px;
    }
    .inno-list li:nth-of-type(2n) {
        padding-left: 10px;
    }
    .join-icon {
        width: 100%;
        padding-left: 30%;
        position: static;
    }
    .joinily-page {
        padding-bottom: 0;
    }
    .content-footer dl {
        margin: 0 0 20px 0;
        line-height: 120%;
        float: none;
    }
    .qrcode {
        width: 100px;
        height: 100px;
        top: 40px;
    }
    .content-footer dl:last-of-type {
        margin-bottom: 0;
    }
    .main-content {
        padding-bottom: 50px;
        overflow: hidden;
    }
    .fixed-tabnav .main-content {
        padding-top: 40px;
    }
    .research-slide {
        margin-top: 10px;
    }
    h2.news-group {
        font-size: 16px;
    }
    .col3 li {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
    .item-content .item-title {
        font-size: 14px;
        margin: 0;
        padding: 0;
        line-height: 200%;
        width: 100%;
    }
    .item-content .item-title a {
        display: block;
        width: 100%;
        color: #fff;
    }
    .page-top h1 {
        font-size: 16px;
    }
    .page-top .w {
        height: 120px;
    }
    .tab-nav li a {
        font-size: 12px;
    }
    .page-banner-wrapper, .page-banner {
        height: 148px;
    }
    .page-banner h2 {
        font-size: 20px;
    }
    .detail-banner h1 {
        font-size: 18px;
    }
    .detail-main article {
        width: 100%;
        margin-bottom: 40px;
    }
    .jianjie {
        width: 100%;
    }
    .detail-main h2 {
        margin-bottom: 20px;
    }
    .page-banner h2 span.en img {
        height: 24px;
    }
    .page-banner h2 span.lab:before {
        width: 16px;
        height: 16px;
        border-radius: 0 10px 0 0;
        margin-right: 10px;
    }
    .tab-nav li {
        margin-right: 10px;
    }
    .section-page h2.title span.en {
        font-size: 24px;
    }
    .section-page h2.title span.cn {
        font-size: 16px;
    }
    .section-page {
        padding-top: 30px;
    }
    .admittance li {
        font-size: 12px;
    }
    span.order {
        width: 18px;
        height: 18px;
        font-size: 12px;
        line-height: 18px;
    }
    .declare {
        padding: 0;
    }
    .declare ul {
        display: block;
    }
    .declare ul li {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
    }
    .declare ul li dl {
        position: static;
    }
    .declare ul li::before {
        display: none;
    }
    .declare ul li span.order {
        margin: 0;
        top: 0;
    }
    .declare ul::before {
        display: none;
    }
    .declare ul li dl {
        width: 100%;
    }
    .joinily-list>ol {
        display: block;
        margin: 0;
    }
    .joinily-list>ol.col4>li {
        width: 100%;
        max-width: inherit;
        padding: 0;
        margin-bottom: 20px;
    }
    .joinily-list span.num {
        margin-bottom: 0;
    }
    .joinily-list>ol.col3>li {
        width: 100%;
        max-width: inherit;
        padding: 0;
        margin-bottom: 40px;
    }
    .about-item span.cn {
        width: 87%;
        font-size: 12px;
    }
    .about-item span.en {
        width: 150%;
        transform: scale(0.6);
        transform-origin: 0 0;
    }
    .detail-main {
        width: 100%;
        padding-top: 30px;
    }
    .detail-main h1 {
        margin-top: 25px;
    }
    .platform-list .img-cover {
        width: 100%;
        height: 100%;
        position: absolute;
    }
    .platform-list .item-content {
        padding: 5px 15px;
        position: absolute;
        z-index: 3;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 0 30px 0 0;
        bottom: 0;
        left: 0;
        height: auto;
    }
    .item-content .item-des {
        display: none;
    }
    .item-content a.view-more {
        display: none;
    }
    /* .news-banner .swiper-slide {
        height: 140px;
    } */
    .friends-list ul {
        display: block;
        overflow: hidden;
    }
    .friends-list li {
        margin-bottom: 10px;
        width: 50%;
        float: left;
        font-size: 12px;
        text-align: left;
    }
    .content-footer {
        padding: 0;
    }
    .footer-top h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .footer-top .section {
        margin-bottom: 30px;
    }
    .fzbox span:nth-child(1) {
        -webkit-transform: rotateY(-90deg) translateZ(18px);
        transform: rotateY(-90deg) translateZ(18px);
    }
    .fzbox span:nth-child(2) {
        -webkit-transform: translateZ(18px);
        transform: translateZ(18px);
    }
    .fz .fzbox span:nth-child(1) {
        -webkit-transform: translateZ(18px);
        transform: translateZ(18px);
    }
    .fz .fzbox span:nth-child(2) {
        -webkit-transform: rotateY(90deg) translateZ(18px);
        transform: rotateY(90deg) translateZ(18px);
    }
    .refz .fzbox span:nth-child(1) {
        -webkit-transform: rotateY(-90deg) translateZ(18px);
        transform: rotateY(-90deg) translateZ(18px);
    }
    .refz .fzbox span:nth-child(2) {
        -webkit-transform: translateZ(18px);
        transform: translateZ(18px);
    }
    .banner-bg h1 {
        width: calc(40% - 50px);
    }
    .search-box {
        display: none;
    }
    #block-dingbulianjie li:first-of-type {
        margin-left: 0;
    }
    .about-container .swiper-slide img {
        border-radius: 0 30px 0 0;
    }
    .about-container .swiper-button-prev, .about-container .swiper-button-next {
        width: 22px;
        height: 22px;
        display: none;
    }
    .front2 .section-front-content {
        padding: 0;
        height: auto;
    }
    .front4 .section-front-content {
        padding: 40px 0 0px;
        height: auto;
    }
    .news-main-top {
        width: 100%;
    }
    .detail-main h1 {
        font-size: 20px;
    }
    .artist-content {
        width: 100%;
        float: none;
    }
    .news-main-right {
        width: 100%;
        float: none;
    }
    .related-news:last-of-type {
        margin-bottom: 0;
    }
    .related-news li {
        margin-bottom: 20px;
    }
    .related-news li:last-of-type {
        margin-bottom: 0px;
    }
    .news-banner .swiper-slide {
        height: 152px;
    }
    .news-banner {
        margin-bottom: 0;
    }
    .hot-news {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    .hot-news .slide-left {
        width: 100%;
        bottom: 0;
        left: 0;
        top: inherit;
        height: 30px;
    }
    .hot-news .slide-left h2 {
        display: none;
    }
    .hot-news .slide-left h3 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        line-height: 30px;
    }
    .hot-news .swiper-container {
        height: 250px;
    }
    .hot-news .swiper-slide {
        border-radius: 0 30px 0 0;
        height: 200px;
        background-position: right center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .hot-news .swiper-slide img {
        display: none;
    }
    .news-items {
        display: block;
        border-radius: 0;
    }
    .news-items li {
        width: 100%!important;
        max-width: inherit!important;
        margin-bottom: 15px;
        border-radius: 0 30px 0 0;
        overflow: hidden;
    }
    .news-items li .news-summary {
        position: relative;
        width: 100%!important;
    }
    .news-items li:nth-of-type(5n-2) .news-img, .news-items li:nth-of-type(5n) .news-img {
        order: inherit;
    }
    .page-top, .page-top-inner {
        height: 168px;
    }
    .hot-news .pagination {
        width: 100%;
        padding: 0;
        justify-content: center;
        bottom: 0;
    }
    .hot-news .pagination .swiper-pagination-bullet::before {
        background-color: #000;
    }
    .hot-news .pagination .swiper-pagination-bullet-active {
        border: 2px solid #000;
    }
    nav.tabs, .tab-nav .block-menu {
        height: auto;
    }
    .research-slide .name {
        font-size: 13px;
    }
    .yuanjing {
        font-size: 135%;
        padding-top: 10px;
    }
    .yuanjing::after {
        width: 12px;
        height: 12px;
        top: -5px;
    }
    .tab-nav ul {
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
    }
    .tab-nav li a:hover {
        color: #222;
    }
    .swiper-buttons {
        padding-top: 20px;
    }
    .swiper-button {
        width: 30px;
        height: 30px;
    }
    .yuanjing.summary {
        width: 100%;
        font-size: 140%;
    }
    .yuanjing.summary p {
        padding: 0;
        text-align: justify;
    }
    .platform-list li {
        display: block;
        height: 200px;
        margin-bottom: 20px;
        border-radius: 0 30px 0 0;
        overflow: hidden;
    }
    .yuanjing.summary::after, .yuanjing::before {
        width: 22px;
    }
    .nice-login-wrapper.p69, .nice-login-wrapper {
        width: 100%;
        display: block;
        padding: 0 0;
    }
    .nice-login-left {
        display: none;
    }
    .nice-login-main {
        width: 100%;
        padding: 0;
        display: block;
    }
    .wrapper-nice-login {
        padding-top: 30px;
    }
    .page-user .form-submit {
        width: 100%;
        height: 40px;
    }
    .nice-login-login {
        display: block;
        padding-top: 10px;
    }
    .nice-login__register__actions .form-actions, .nice-login__pass__actions .form-actions {
        flex: 1;
        margin-right: 10px;
    }
    .tuijian-list {
        display: block;
    }
    .joinily-list a.learn-more {
        margin: 15px 0;
    }
    .art-block {
        height: 160px;
        padding: 20px 15px;
    }
    .art-block h2.title {
        padding-top: 0;
    }
    .banner-wrapper .swiper-slide {
        background-position: 84% center;
    }
    .research-slide:hover {
        transform: translate3d(0, 0, 0);
    }
    .views-container .swiper-slide h3, .views-container .swiper-slide p {
        width: 100%;
    }
    .detail-main article {
        padding-top: 15px;
    }
    .views-container .swiper-slide h3 {
        font-size: 120%;
    }
    .detail-main img {
        border-radius: 0 25px 0 0;
    }
    .friends-list li a::before {
        border-radius: 0 9px 0 0;
    }
}

@media screen and (max-width: 375px) {
    .news-banner .swiper-slide {
        height: 135px;
    }
}
