.center70 {
    width: 70%;
    margin: 0 auto
}

img {
    display: block;
    width: auto;
    max-width: 100%
}

body {
    color: #333;
    font-family: Microsoft YaHei, PingFang SC, Arial,  sans-serif
}

@media screen and (max-width:1200px) {
    .center70 {
        width: 90%
    }
}

@media screen and (max-width:768px) {
    .center70 {
        width: 96%
    }
}

section.banner-container {
    color: #fff;
    height: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

section.banner-container .banner-wrapper h2.banner-title {
    margin-bottom: 60px
}

section.banner-container .banner-wrapper h2.banner-title p:first-child {
    font-size: 7.6rem;
    font-weight: 400
}

section.banner-container .banner-wrapper h2.banner-title p:last-child {
    font-size: 9.0rem;
    font-weight: 700
}

section.banner-container .banner-wrapper .banner-note {
    font-size: 4.0rem;
    margin-bottom: 100px
}

h2.title {
    font-size: 6.0rem;
    font-weight: 700;
    margin-bottom: 50px
}
h2.title span.en{
    font-size: 0.7em; 
    margin-left: 5px;
    color:#ff001f;
}
h2.title span {
    font-weight: 400;
    font-size: 4.2rem
}

section.word-container {
    padding: 60px 0;
    background-color: #f4f4f4
}

section.word-container .word-wrapper ul.word-list li.word-item {
    margin: 0 18px 36px;
    width: calc(50% - 18px);
    background-color: #fff;
    padding: 15px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

section.word-container .word-wrapper ul.word-list li.word-item:nth-child(2n) {
    margin-right: 0
}

section.word-container .word-wrapper ul.word-list li.word-item:nth-child(odd) {
    margin-left: 0
}

section.word-container .word-wrapper ul.word-list li.word-item .logo {
    height: 58px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #d4d4d4
}

section.word-container .word-wrapper ul.word-list li.word-item .logo img {
    max-height: 100%
}

section.word-container .word-wrapper ul.word-list li.word-item .text .note {
    font-size: 2.6rem;
    line-height: 1.5;
    text-align: justify
}

section.word-container .word-wrapper ul.word-list li.word-item .text .fullname,
section.word-container .word-wrapper ul.word-list li.word-item .text .position {
    font-size: 1.8rem;
    color: grey;
    text-align: right;
    letter-spacing: 6px
}

section.partner-container {
    padding: 60px 0
}

section.partner-container .partner-wrapper ul.partner-list {
    display: flex;
    flex-wrap: wrap
}

section.partner-container .partner-wrapper ul.partner-list li.partner-item {
    display: flex;
    align-items: center;
    margin: 0 30px 60px;
    width: calc(20% - 60px);
    background-color: #fff;
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    box-shadow: 0 0 8px rgba(0, 0, 0, .3);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
}

section.partner-container .partner-wrapper ul.partner-list li.partner-item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

section.partner-container .partner-wrapper ul.partner-list li.partner-item img {
    margin: 0 auto
}

section.href-member {
    background-color: #ff001f;
    padding: 60px 0;
    text-align: center
}

section.href-member .member-btn {
    padding: 10px 150px;
    font-size: 2.8rem;
    color: #fff;
    font-weight: 400;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    border-radius: 30px;
    display: inline-block;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

section.href-member .member-btn:hover {
    background-color: #fff;
    border: 2px solid rgba(0, 0, 0, 0);
    color: #ff001f
}

section.popup-container {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999
}

section.popup-container .popup-mask {
    position: fixed;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%
}

section.popup-container .popup-content {
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 16px
}

section.popup-container .popup-content .popup-close {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    right: -40px;
    top: -40px
}

section.popup-container .popup-content .popup-close:after,
section.popup-container .popup-content .popup-close:before {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px
}

section.popup-container .popup-content .popup-close:after {
    -webkit-transform: translateY(-2px) rotate(45deg);
    -ms-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg)
}

section.popup-container .popup-content .popup-close:before {
    -webkit-transform: translateY(1px) rotate(-45deg);
    -ms-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg)
}

section.popup-container .popup-content .popup-title {
    font-size: 3.6rem;
    font-weight: 700;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    background-color: #ff001f;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    letter-spacing: 20px
}

section.popup-container .popup-content .popup-info {
    padding: 70px 0;
    width: 60%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 2.7rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    box-sizing:border-box;
    justify-content: center;
}
section.popup-container .popup-content .popup-info dl{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
/* 
section.popup-container .popup-content .popup-info dl dd p span {
    font-weight: 700;
    padding-left: 5px;
    vertical-align: top;
    font-size: 3.0rem
} */

section.popup-container .popup-content .popup-info dl:first-child {
    margin-bottom: 30px
}

@media screen and (max-width:1910px) {
    section.banner-container {
        height: 700px
    }

    section.banner-container .banner-wrapper h2.banner-title {
        margin-bottom: 60px
    }

    section.banner-container .banner-wrapper h2.banner-title p:first-child {
        font-size: 6.0rem
    }

    section.banner-container .banner-wrapper h2.banner-title p:last-child {
        font-size: 7.0rem
    }

    section.banner-container .banner-wrapper .banner-note {
        font-size: 2.4rem;
        margin-bottom: 40px
    }

    h2.title {
        font-size: 4.0rem;
        font-weight: 700;
        margin-bottom: 30px
    }

    h2.title span {
        font-weight: 400;
        font-size: 2.8rem
    }

    section.word-container {
        padding: 60px 0;
        background-color: #f4f4f4
    }

    section.word-container .word-wrapper ul.word-list li.word-item {
        margin: 0 9px 18px;
        width: calc(50% - 9px);
        background-color: #fff;
        padding: 15px 30px
    }

    section.word-container .word-wrapper ul.word-list li.word-item .logo {
        height: 48px;
        padding-bottom: 15px;
        margin-bottom: 15px
    }

    section.word-container .word-wrapper ul.word-list li.word-item .logo img {
        max-height: 100%
    }

    section.word-container .word-wrapper ul.word-list li.word-item .text .note {
        font-size: 2.2rem
    }

    section.word-container .word-wrapper ul.word-list li.word-item .text .fullname,
    section.word-container .word-wrapper ul.word-list li.word-item .text .position {
        font-size: 1.6rem
    }

    section.partner-container {
        padding: 60px 0
    }

    section.partner-container .partner-wrapper ul.partner-list li.partner-item {
        margin: 0 20px 40px;
        width: calc(20% - 40px);
        padding: 13px
    }


    section.popup-container .popup-content .popup-title {
        font-size: 3.6rem;
        font-weight: 700;
        padding: 20px 0;
        text-align: center;
        color: #fff;
        background-color: #ff001f;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        letter-spacing: 20px
    }

    section.popup-container .popup-content .popup-info {
        padding: 60px 30px;
        font-size: 2.4rem
    }
}

@media screen and (max-width:768px) {
    section.banner-container {
        height: 400px
    }

    section.banner-container .banner-wrapper h2.banner-title {
        margin-bottom: 30px
    }

    section.banner-container .banner-wrapper h2.banner-title p:first-child {
        font-size: 3.0rem
    }

    section.banner-container .banner-wrapper h2.banner-title p:last-child {
        font-size: 4.0rem
    }

    section.banner-container .banner-wrapper .banner-note {
        font-size: 1.6rem;
        margin-bottom: 40px
    }

    h2.title {
        font-size: 3.0rem;
        margin-bottom: 30px
    }

    h2.title span {
        font-size: 2.2rem
    }

    section.word-container {
        padding: 30px 0
    }

    section.word-container .word-wrapper ul.word-list li.word-item {
        margin: 0 5px 10px;
        width: calc(50% - 5px);
        background-color: #fff;
        padding: 5px 10px
    }

    section.word-container .word-wrapper ul.word-list li.word-item .logo {
        height: 36px;
        padding-bottom: 15px;
        margin-bottom: 15px
    }

    section.word-container .word-wrapper ul.word-list li.word-item .logo img {
        max-height: 100%
    }

    section.word-container .word-wrapper ul.word-list li.word-item .text .note {
        font-size: 1.4rem
    }

    section.word-container .word-wrapper ul.word-list li.word-item .text .fullname,
    section.word-container .word-wrapper ul.word-list li.word-item .text .position {
        font-size: 1.2rem
    }

    section.partner-container {
        padding: 60px 0
    }

    section.partner-container .partner-wrapper ul.partner-list li.partner-item {
        margin: 0 20px 40px;
        width: calc(50% - 40px);
        padding: 13px
    }

    section.href-member {
        padding: 30px 0
    }

    section.href-member .member-btn {
        padding: 5px 50px;
        font-size: 2.0rem
    }

    section.popup-container .popup-content {
        width: 90%;
        max-width: 450px;
    }

    section.popup-container .popup-content .popup-title {
        font-size: 3.0rem;
        font-weight: 700;
        padding: 20px 0;
        text-align: center;
        color: #fff;
        background-color: #ff001f;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        letter-spacing: 20px
    }

    section.popup-container .popup-content .popup-info {
        padding: 30px 50px;
        font-size: 2.0rem;
        /*width: 100%;*/
        width:330px;
    }

    section.popup-container .popup-content .popup-close {
        right: 0
    }
}

.center70 {
    width: 70%;
    margin: 0 auto
}

img {
    display: block;
    width: auto;
    max-width: 100%
}

body {
    color: #333;
    font-family: Microsoft YaHei, PingFang SC, Arial,  sans-serif
}

@media screen and (max-width:1200px) {
    .center70 {
        width: 90%
    }
}

@media screen and (max-width:768px) {
    .center70 {
        width: 96%
    }
}

.center70 {
    width: 70%;
    margin: 0 auto
}

img {
    display: block;
    width: auto;
    max-width: 100%
}

body {
    color: #333;
    font-family: Microsoft YaHei, PingFang SC, Arial,  sans-serif
}

@media screen and (max-width:1200px) {
    .center70 {
        width: 90%
    }
}

@media screen and (max-width:768px) {
    .center70 {
        width: 96%
    }
}

body,
html {
    height: 100%
}

header.header-container {
    z-index: 9;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    transition: .6s;
    -webkit-transition: .6s;
    -moz-transition: .6s;
    -ms-transition: .6s;
    -o-transition: .6s;
}

header.header-container .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

header.header-container .header-wrapper .left-logo {
    width: 137px;
    height: 34px;
    text-indent: -1000px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain
}

header.header-container .header-wrapper .left-logo.left-logo-white {
    display: none
}

header.header-container .header-wrapper .right-nav {
    width: calc(90% - 137px)
}

header.header-container .header-wrapper .right-nav nav.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around
}

header.header-container .header-wrapper .right-nav nav.header-nav a {
    display: block;
    font-size: 2.5rem;
    line-height: 34px;
    height: 34px;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

header.header-container .header-wrapper .right-nav nav.header-nav a.active,
header.header-container .header-wrapper .right-nav nav.header-nav a:hover {
    color: #ff001f;
    border-bottom: 2px solid #ff001f
}

header.header-container.bg-white {
    background-color: rgba(255, 255, 255, .9);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1)
}

header.header-container.bg-white .header-wrapper .left-logo {
    display: none
}

header.header-container.bg-white .header-wrapper .left-logo.left-logo-white {
    display: block
}

header.header-container.bg-white .header-wrapper .right-nav nav.header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

header.header-container.bg-white .header-wrapper .right-nav nav.header-nav a {
    color: inherit
}

header.header-container.bg-white .header-wrapper .right-nav nav.header-nav a.active,
header.header-container.bg-white .header-wrapper .right-nav nav.header-nav a:hover {
    color: #ff001f;
    border-bottom: 2px solid #ff001f
}

.mobile-header-container {
    z-index: 999;
    padding: 20px 10%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    top: 0;
    display: none
}

.mobile-header-container .header-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.mobile-header-container .header-wrapper .left-logo {
    width: 137px;
    height: 34px;
    text-indent: -1000px;
    position: relative;
    z-index: 99;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain
}

.mobile-header-container .header-wrapper .left-logo.left-logo-white {
    display: none
}

.mobile-header-container .header-wrapper .nav-btn {
    position: relative;
    z-index: 99;
    width: 36px;
    /* height: 14px; */
    cursor: pointer
}

.mobile-header-container .header-wrapper .nav-btn span {
    display: block;
    width: 36px;
    margin-bottom: 3px;
    height: 4px;
    background-color: #fff;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}
.mobile-header-container .header-wrapper .nav-btn span:last-child{
    margin-bottom: 0;
}

.mobile-header-container .header-wrapper .nav-btn.active span:nth-child(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    -ms-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg)
}
.mobile-header-container .header-wrapper .nav-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-header-container .header-wrapper .nav-btn.active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    -ms-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg)
}
.mobile-header-container.bg-white {
    background-color: #fff
}

.mobile-header-container.bg-white .header-wrapper .left-logo {
    display: none
}

.mobile-header-container.bg-white .header-wrapper .left-logo.left-logo-white {
    display: block
}

.mobile-header-container.bg-white .header-wrapper .nav-btn span {
    background-color: #ff001f
}

.mobile-popup-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 98;
    background-color: rgba(0, 0, 0, .8);
    padding-top: 10%;
    display: none
}

.mobile-popup-nav nav.header-nav {
    width: 100%
}

.mobile-popup-nav nav.header-nav a {
    width: 100%;
    display: block;
    font-size: 2.5rem;
    line-height: 3;
    color: #fff;
    padding-bottom: 5px;
    text-align: center;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s
}

.mobile-popup-nav nav.header-nav a:hover {
    color: #ff001f
}

.mobile-popup-nav.bg-white {
    background-color: #fff
}

.mobile-popup-nav.bg-white nav.header-nav a {
    color: #4f4f4f
}

@media screen and (max-width:1910px) {
    header.header-container .header-wrapper .right-nav nav.header-nav a {
        font-size: 2.0rem
    }
}

@media screen and (max-width:1200px) {
    header.header-container {
        display: none
    }

    .mobile-header-container {
        display: block
    }
}

@media screen and (max-width:768px) {
    .mobile-popup-nav {
        padding-top: 20%
    }
}

footer.footer-container .footer-up {
    padding: 40px 0;
    background-color: #070a2b
}

footer.footer-container .footer-up .foot-up-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact {
    width: 50%
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact h2 {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 400;
    padding-bottom: 20px;
    margin-bottom: 30px;
    position: relative
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #fff
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl {
    color: #b6b7b7;
    font-weight: 400;
    margin-bottom: 50px
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dt {
    font-size: 2.8rem;
    margin-bottom: 20px
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd {
    font-size: 2.0rem
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd.w50 {
    width: 50%
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd.w50 .title {
    padding-right: 10px;
    line-height: 2
}

footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd.w50 .cont p {
    line-height: 2
}

footer.footer-container .footer-up .foot-up-wrap .foot-qrcode {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

footer.footer-container .footer-up .foot-up-wrap .foot-qrcode ul.qrcode-list li.qrcode-item {
    margin: 0 20px
}

footer.footer-container .footer-up .foot-up-wrap .foot-qrcode ul.qrcode-list li.qrcode-item img {
    width: 123px
}

footer.footer-container .footer-up .foot-up-wrap .foot-qrcode ul.qrcode-list li.qrcode-item p {
    line-height: 3;
    font-size: 1.4rem;
    color: #b6b7b7;
    text-align: center
}

footer.footer-container .footer-copyright {
    padding: 15px 0;
    text-align: center;
    background-color: #000219;
    color: grey;
    font-size: 1.4rem
}

footer.footer-container .footer-copyright a {
    color: grey
}

footer.footer-container .footer-copyright a:hover {
    text-decoration: underline
}

@media screen and (max-width:1910px) {
    footer.footer-container .footer-up .foot-up-wrap .foot-contact {
        width: 60%
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact h2 {
        font-size: 2.2rem;
        padding-bottom: 16px;
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact h2:after {
        width: 40px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl {
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dt {
        font-size: 2.4rem;
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd {
        font-size: 1.8rem
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-qrcode {
        width: 40%
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-qrcode ul.qrcode-list li.qrcode-item {
        margin: 0 10px
    }
}

@media screen and (max-width:768px) {
    footer.footer-container .footer-up .foot-up-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact {
        width: 100%
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact h2 {
        font-size: 2.2rem;
        padding-bottom: 16px;
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact h2:after {
        width: 40px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl {
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dt {
        font-size: 2.4rem;
        margin-bottom: 20px
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-contact dl dd {
        font-size: 1.6rem
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-qrcode {
        width: 100%
    }

    footer.footer-container .footer-up .foot-up-wrap .foot-qrcode ul.qrcode-list li.qrcode-item {
        margin: 0 10px
    }
}