* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --ratio-size: calc(100vw / 1920);
    font-size: calc(0.417vw + 8px);
    letter-spacing: .05em;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style-type: none;
}

img {
    /* width: 100%; */
    max-width: 100%;
}

.type-area {
    width: 100%;
    padding: 0 calc(var(--ratio-size) * 240);
}

.footer-area {
    width: 100%;
    padding: 0 calc(var(--ratio-size) * 205);
    padding-bottom: calc(var(--ratio-size) * 20);
}

.header-container {
    position: relative;
    position: fixed;
    top: 0;
    z-index: 6;
    display: flex;
    align-items: stretch;
    width: 100%;
    /* height: calc(var(--ratio-size) * 80); */
    padding-top: calc(var(--ratio-size) * 12);
    background-color: #fff;
    box-shadow: 0 1px 2px #c1c1c1;
}

.header-container .logo {
    /* width: calc(var(--ratio-size) * 140); */
    width: calc(140rem / 16);
    padding-bottom: calc(var(--ratio-size) * 12);
}

.header-container .logo img {
    display: block;
}

.header-container>ul {
    display: flex;
    align-items: center;
    margin-left: calc(var(--ratio-size) * 345);
}

.header-container ul .first-floor {
    height: 100%;
}

.header-container ul .first-floor>a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 calc(var(--ratio-size) * 25);
    padding-bottom: calc(var(--ratio-size) * 12);
    overflow: hidden;
    transition: all .5s;
    font-size: calc(18rem / 16);
}

.header-container ul .first-floor>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #3373b5;
    transition: all .5s;
    opacity: 0;
}

.header-container ul .first-floor>a:hover {
    font-weight: bold;
    color: #3373b5;
}

.header-container ul .first-floor>a:hover::after {
    transform: translate(-50%, calc(var(--ratio-size) * -10));
    opacity: 1;
}

.header-container ul .second-floor {
    position: absolute;
    left: 0;
    bottom: 0;
    display: none;
    width: 100%;
    height: auto;
    transform: translateY(100%);
    padding-top: calc(var(--ratio-size) * 20);
    padding-bottom: calc(var(--ratio-size) * 120);
    background-color: #f3f3f3;
    color: #333333;
}

.header-container ul .second-floor>div {
    /* display: inline-block; */
    display: flex;
    justify-content: center;
}

.header-container ul .second-floor .second-nav {
    margin-right: calc(var(--ratio-size) * 40);
}

.header-container ul .second-floor .third-floor {
    margin-right: calc(var(--ratio-size) * 40);
}

.header-container ul .second-floor a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: calc(var(--ratio-size) * 280);
    padding: calc(var(--ratio-size) * 18) calc(var(--ratio-size) * 15);
    padding-right: calc(var(--ratio-size) * 20);
    transition: color .5s, padding .5s;
    cursor: pointer;
}

.header-container ul .second-floor a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    margin-left: 20px;
    background: url('../images/nav_right_arrow.png') no-repeat center/cover;
}

.header-container ul .second-floor li:not(:first-child) {
    border-top: 1px solid #cfcfcf;
}

.header-container ul .second-floor li:last-child {
    border-bottom: 1px solid #cfcfcf;
}

.header-container ul .second-floor a.active {
    padding-left: calc(var(--ratio-size) * 30);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    color: #fff;
}

.header-container ul .second-floor a.active::after {
    background: url('../images/nav_right_arrow_white.png') no-repeat center/cover;
}

.header-container ul .third-floor ul {
    display: none;
}

.header-container ul .third-floor ul.active {
    display: block;
}

.header-container ul .fourth-floor ul {
    display: none;
}

.header-container ul .fourth-floor ul.active {
    display: block;
}

.header-container ul .third-floor ul.first-active {
    /* display: block;
    overflow: hidden;
    opacity: 0; */
}

.header-container ul .fourth-floor ul.first-active {
    /* display: block;
    overflow: hidden;
    opacity: 0; */
}

.header-container ul .first-floor.normal-first {
    position: relative;
}

.header-container ul .first-floor .normal-second {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #f3f3f3;
    text-align: center;
}

.header-container ul .first-floor .normal-second a {
    /* display: inline-flex; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: calc(var(--ratio-size) * 18) calc(var(--ratio-size) * 15);
    padding-right: calc(var(--ratio-size) * 20);
    transition: color .5s, padding .5s;
    border-bottom: 1px solid #cfcfcf;
}

.header-container ul .first-floor .normal-second a:hover {
    padding-left: calc(var(--ratio-size) * 30);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    color: #fff;
}

.header-container .function {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-container .function .search {
    cursor: pointer;
}

.header-container .mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    width: 25px;
    height: 30px;
    transition: all .5s;
}

.header-container .mobile-menu span {
    display: inline-block;
    width: 100%;
    height: 3px;
    background-color: #20488f;
}

.mobile-left {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    z-index: 9;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    transition: all .5s;
    overflow: auto;
}

.mobile-right {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    z-index: 9;
    width: 30%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .5);
    transition: all .5s;
}

.mobile-right .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
}

.mobile-left li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #c1c1c1;
    font-size: 14px;
}

.mobile-left li.active>a {
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    color: #fff;
}

.mobile-left li a {
    flex: 1;
    display: inline-block;
    padding: 10px;
    padding-left: 15px;
}

.mobile-left li .btn {
    display: flex;
    align-items: center;
    width: 36px;
    padding: 0 8px;
}

.mobile-left li .btn img {
    transition: all .5s;
}

.mobile-left li .btn.active img {
    transform: rotate(45deg);
}

.mobile-left .mobile-second-floor {
    display: none;
    width: 100%;
    border-top: 1px solid #c1c1c1;
}

.mobile-left .mobile-second-floor li:last-child {
    border: none;
}

.mobile-left .mobile-second-floor a {
    padding-left: 30px;
}

.mobile-left .mobile-first-floor .mobile-third-floor {
    display: none;
    width: 100%;
    border-top: 1px solid #c1c1c1;
}

.mobile-left .mobile-first-floor .mobile-third-floor>li:last-child {
    border: none;
}

.mobile-left .mobile-first-floor .mobile-third-floor>li {
    position: relative;
}

.mobile-left .mobile-first-floor .mobile-fourth-floor {
    display: none;
    width: 100%;
    border-top: 1px solid #c1c1c1;
}

.mobile-left .mobile-first-floor .mobile-third-floor a {
    padding-left: 50px;
}

.mobile-left .mobile-first-floor .mobile-fourth-floor a {
    padding-left: 80px;
}

.scroll-prompt {
    position: absolute;
    color: #fff;
    z-index: 3;
    animation: scrollPrompt 1s alternate infinite;
}

.scroll-prompt .pic {
    width: calc(var(--ratio-size) * 20);
    margin: 0 auto;
    margin-top: calc(var(--ratio-size) * 10);
}

.footer-container {
    position: relative;
    background-color: #f5f5f5;
    font-size: calc(16rem / 16);
    color: #666666;
}

.footer-container .to-top {
    position: absolute;
    top: 0;
    right: 60px;
    z-index: 3;
    transform: translateY(-50%);
    width: calc(58rem / 16);
    height: calc(58rem / 16);
    cursor: pointer;
}

.footer-container .to-top img {
    transition: all .5s;
}

.footer-container .to-top:hover {
    filter: drop-shadow(1px 1px 3px #c1c1c1);
}

.footer-container .to-top:hover img {
    transform: scale(1.2);
}

.footer-container .top {
    padding-bottom: calc(var(--ratio-size) * 20);
    border-bottom: 1px solid #dedede;
}

.footer-container .logo {
    display: inline-block;
    width: calc(var(--ratio-size) * 200);
    margin-top: calc(var(--ratio-size) * 80);
}

.footer-container .footer-main ul li:not(.title) {
    line-height: 2;
}

.footer-container .footer-main ul li:not(.title) a {
    position: relative;
}

.footer-container .footer-main ul li:not(.title) a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #285bc0;
    transition: all .5s;
}

.footer-container .footer-main ul li:not(.title) a:hover:after {
    width: 100%;
}

.footer-container .footer-main {
    display: flex;
    margin-top: calc(var(--ratio-size) * 55);
}

.footer-container .footer-main .need-small {
    font-size: calc(15rem / 16);
}

.footer-container .footer-main .footer-nav {
    display: flex;
}

.footer-container .footer-main .footer-nav ul {
    margin-right: calc(var(--ratio-size) * 135);
    /* margin-right: calc(var(--ratio-size) * 80); */
}

.footer-container .footer-main .title {
    margin-bottom: calc(var(--ratio-size) * 20);
    font-size: calc(18rem / 16);
    font-weight: bold;
}

.footer-container .contact-message {
    flex: 1;
    padding-left: calc(var(--ratio-size) * 80);
    margin-right: calc(var(--ratio-size) * 80);
    border-left: 1px solid #dedede;
}

.footer-container .contact-message ul {
    font-size: calc(16rem / 16);
}

.footer-container .share-content {
    margin-left: auto;
}

.footer-container .share-content .pic {
    width: calc(var(--ratio-size) * 140);
}

.footer-container .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: calc(var(--ratio-size) * 100);
    font-size: calc(14rem / 16);
}

.footer-container .footer-bottom .left {
    display: flex;
    align-items: flex-end;
}

.footer-container .footer-bottom .left a {
    display: flex;
    align-items: center;
}

.footer-container .footer-bottom .left img {
    width: 15px;
    margin-right: 3px;
}

.footer-container .footer-bottom span {
    margin: 0 5px;
}

.common-xb-title {
    font-size: calc(var(--ratio-size) * 48);
}

.common-b-title {
    font-size: calc(var(--ratio-size) * 42);
}

.sub-xt-title {
    font-size: calc(var(--ratio-size) * 30);
}

.common-s-title {
    font-size: calc(24rem / 16);
}

.common-blue-btn {
    display: inline-block;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    transition: all .5s;
}

.common-blue-btn a {
    display: flex;
    align-items: center;
    padding: calc(var(--ratio-size) * 15) calc(var(--ratio-size) * 20);
    color: #fff;
}

.common-blue-btn a p {
    flex: 1;
    font-size: calc(14rem / 16);
}

.common-blue-btn a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--ratio-size) * 26);
    height: calc(var(--ratio-size) * 26);
    margin-left: calc(var(--ratio-size) * 30);
    border: 2px solid rgba(255, 255, 255, .5);
    transform: rotate(45deg);
}

.common-blue-btn:hover {
    box-shadow: 1px 3px 3px #a8a8a8;
    transform: translateY(-10%);
}

.common-blue-btn:hover a .icon {
    animation: rotateFull 5s linear infinite;
}

.common-blue-btn a .icon img {
    width: calc(var(--ratio-size) * 12);
    transform: rotate(-45deg);
}

.common-blue-btn:hover a .icon img {
    animation: rotateFullReverse 5s linear infinite;
}

.common-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--ratio-size) * 650);
    margin-top: calc(var(--ratio-size) * 80);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.common-banner .title {
    font-size: calc(var(--ratio-size) * 48);
    font-weight: bold;
}

.common-banner .text {
    margin: 0 10%;
    margin-top: calc(var(--ratio-size) * 30);
    line-height: 1.6;
}

.common-breadcrumb {
    padding-top: calc(var(--ratio-size) * 25);
    padding-bottom: calc(var(--ratio-size) * 25);
    background-color: #f5f5f5;
}

.common-breadcrumb a {
    position: relative;
    display: inline-block;
}

.common-breadcrumb a:last-child {
    color: #20488f;
}

.common-breadcrumb a:not(:first-child) {
    padding-left: 5px;
}

.common-breadcrumb a:not(:last-child) {
    padding-right: 5px;
    border-right: 1px solid #b8b8b8;
}

.common-breadcrumb a:not(:last-child)::after {
    content: '>';
    margin-left: 5px;
}

.common-form {
    position: relative;
    padding: calc(var(--ratio-size) * 120) calc(var(--ratio-size) * 460);
    background-image: linear-gradient(to bottom, #f8f8f8, #fff);
}

.common-form .common-xb-title {
    text-align: center;
}

.common-form .text {
    margin-top: calc(var(--ratio-size) * 35);
    text-align: center;
    line-height: 1.7;
}

.common-form form {
    margin-top: calc(var(--ratio-size) * 70);
}

.common-form .form-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.common-form form .input-item {
    position: relative;
    width: calc((100% - var(--ratio-size) * 30) / 2);
    margin-bottom: calc(var(--ratio-size) * 30);
    font-size: calc(18rem / 16);
}

.common-form form .input-item .title {
    position: relative;
}

.common-form form .input-item .title::after {
    content: '*';
    display: inline-block;
    margin-left: 3px;
    transform: translateY(-3px);
    color: #ff0000;
}

.common-form form .input-item .error {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    color: #ff0000;
    font-size: 12px;
}

.common-form .input-item .input-main {
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(var(--ratio-size) * 60);
    margin-top: calc(var(--ratio-size) * 8);
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}

.common-form .input-item .input-main input {
    flex: 1;
    height: 100%;
    padding-left: calc(var(--ratio-size) * 20);
    font-size: calc(18rem / 16);
    border: none;
    outline: none;
    background-color: transparent;
}

.common-form .input-item .get-code-btn {
    padding: calc(var(--ratio-size) * 10) calc(var(--ratio-size) * 20);
    margin-right: calc(var(--ratio-size) * 10);
    background-color: #c1c1c1;
    font-size: calc(16rem / 16);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.common-form .input-item .get-code-btn.not-clicke {
    background-image: linear-gradient(to right, #3690c2, #285bc0);
}

.common-form .common-blue-btn a p {
    font-size: calc(16rem / 16);
}

.common-form .input-item.full-line {
    width: 100%;
}

.common-form .input-item textarea {
    width: 100%;
    padding: calc(var(--ratio-size) * 20);
    margin-top: calc(var(--ratio-size) * 8);
    outline: none;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    resize: none;
    background-color: transparent;
    font-family: '';
    font-size: calc(18rem / 16);
}

.common-form .common-blue-btn {
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.common-form .common-blue-btn a .icon {
    margin-left: calc(var(--ratio-size) * 100);
}

.common-form .common-blue-btn a {
    font-size: calc(18rem / 16);
}

.common-nav {
    z-index: 4;
    background-color: #fff;
    display: flex;
    margin-top: calc(var(--ratio-size) * 10);
}

.common-nav-item {
    position: relative;
    flex: 1;
    padding: calc(var(--ratio-size) * 20) 0;
    border: 1px solid #eeeeee;
    border-right: none;
    text-align: center;
    cursor: pointer;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    transition: all .5s;
}

.common-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffff;
    transition: all .5s;
}

.common-nav-item:last-child {
    border-right: 1px solid #eeeeee;
}

.common-nav-item .pic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--ratio-size) * 75);
    height: calc(var(--ratio-size) * 50);
    margin: 0 auto;
}

.common-nav-item .pic img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    transition: all .5s;
}

.common-nav-item .pic .default-hidden {
    position: absolute;
    opacity: 0;
}

.common-nav-item:hover {
    color: #fff;
}

.common-nav-item:hover::before {
    opacity: 0;
}

.common-nav-item:hover .default-hidden {
    opacity: 1;
}

.common-nav-item:hover .default-show {
    opacity: 0;
}

.common-nav-item p {
    position: relative;
    z-index: 2;
    margin-top: calc(var(--ratio-size) * 13);
}

.common-nav-item.active {
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    color: #fff;
}

.common-nav-item.active::before {
    opacity: 0;
}

.common-nav-item.active .default-hidden {
    opacity: 1;
}

.common-nav-item.active .default-show {
    opacity: 0;
}

.common-nav-item.active p {
    color: #fff;
}

.cube-ctn .scroll-prompt {
    bottom: calc(var(--ratio-size) * 40);
    right: calc(var(--ratio-size) * 50);
    cursor: pointer;
}

.cube-ctn .banner-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 4;
    transform: translateX(-50%);
    text-align: center;
}

.cube-ctn .banner-pagination .bullet-style {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-radius: 300px;
    background-color: #fff;
    cursor: pointer;
}

.cube-ctn .banner-pagination .bullet-style.swiper-pagination-bullet-active {
    background-color: #20439a;
}

.cube-ctn .banner-switch-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}

.cube-ctn .banner-button-prev.banner-switch-btn {
    left: 50px;
}

.cube-ctn .banner-button-next.banner-switch-btn {
    right: 50px;
    transform: rotate(180deg);
}

.cube-ctn .mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
}

.cube-ctn .mobile-bg img{
    object-fit: cover;
    object-position: center;
}

.index-page {
    position: relative;
}

.index-page .bg_decorate {
    position: absolute;
    left: 0;
    top: 0;
}

.index-page .bg_decorate img {
    width: 50%;
}

.index-page .introduce-content {
    padding-top: calc(var(--ratio-size) * 150);
    padding-bottom: calc(var(--ratio-size) * 135);
}

.index-page .introduce-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index-page .introduce-item:not(:last-child) {
    margin-bottom: calc(var(--ratio-size) * 80);
}

.index-page .introduce-item .pic {
    width: calc(var(--ratio-size) * 720);
    height: calc(var(--ratio-size) * 450);
}

.index-page .introduce-item:nth-child(odd) .pic {
    margin-left: auto;
}

.index-page .introduce-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .introduce-item:hover .pic img {
    transform: scale(1.1);
}

.index-page .introduce-item .text-main {
    position: absolute;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: calc(var(--ratio-size) * 800);
    height: calc(var(--ratio-size) * 370);
    padding: calc(var(--ratio-size) * 90);
    background-color: #f5f5f5;
}

.index-page .introduce-item:nth-child(even) .text-main {
    left: auto;
    right: 0;
    padding-left: calc(var(--ratio-size) * 110);
}

.index-page .introduce-item .text-main .title {
    color: #20439a;
}

.index-page .introduce-item .text-main .text {
    margin-top: calc(var(--ratio-size) * 24);
    margin-bottom: calc(var(--ratio-size) * 40);
    font-size: calc(20rem / 16);
}

.index-page .news-content {
    padding-top: calc(var(--ratio-size) * 135);
    padding-bottom: calc(var(--ratio-size) * 160);
    /* background-image: linear-gradient(to bottom right, #fbfeff, #eef9ff); */
    background: url('../images/index_news_bg.jpg') no-repeat center/cover;
}

.index-page .news-content .top {
    display: flex;
    justify-content: space-between;
}

.index-page .news-main {
    display: flex;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 45);
}

.index-page .news-main .news-item {
    width: 32%;
    /* background-color: #fff; */
}

.index-page .news-main .news-item:not(.news-list) a:not(.wfEditorMode) {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.index-page .news-main .news-item .text-main {
    flex: 1;
}

.index-page .news-main .news-item a {
    display: inline-block;
    width: 100%;
}

.index-page .news-main .news-item .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 300);
    overflow: hidden;
}

.index-page .news-main .news-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.index-page .news-main .news-item .text-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(var(--ratio-size) * 300);
    padding: 0 calc(var(--ratio-size) * 30);
    padding-top: calc(var(--ratio-size) * 35);
    padding-bottom: calc(var(--ratio-size) * 40);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
}

.index-page .news-main .news-item .text-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all .5s;
}

.index-page .news-main .news-item a:hover {
    color: #fff;
}

.index-page .news-main .news-item a:hover .time {
    color: #fff;
}

.index-page .news-main .news-item a:hover .label {
    color: #fff;
}

.index-page .news-main .news-item a:hover .label::before {
    background-color: #fff;
}

.index-page .news-main .news-item:hover .text-main::after {
    opacity: 0;
}

.index-page .news-main .news-item .text-main>p,
.index-page .news-main .news-item .text-main>div {
    position: relative;
    z-index: 3;
}

.index-page .news-main .news-item .text-main .title {
    font-size: calc(22rem / 16);
    transition: all .5s;
}

.index-page .news-main .news-item .text-main .time {
    margin-top: calc(var(--ratio-size) * 15);
    font-size: calc(14rem / 16);
    color: #666666;
    transition: all .5s;
}

.index-page .news-main .news-item .text-main .label {
    position: relative;
    display: flex;
    align-items: center;
    font-size: calc(14rem / 16);
    color: #666666;
    transition: all .5s;
}

.index-page .news-main .news-item .text-main .label::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-right: 8px;
    border-radius: 50%;
    background-color: #336eb3;
}

.index-page .news-main .news-item:not(.news-list):hover .pic img {
    transform: scale(1.1);
}

.index-page .news-main .other-news-item {
    position: relative;
    /* background-image: linear-gradient(to right, #3690c2, #285bc0); */
    background-image: linear-gradient(to right, rgba(54, 144, 194, 0), rgb(40, 91, 192, 0));
    transition: all .5s;
}

.index-page .news-main .other-news-item:hover {
    background-image: linear-gradient(to right, rgba(54, 144, 194, 1), rgb(40, 91, 192, 1));
}

.index-page .news-main .other-news-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.index-page .news-main .other-news-item a.wfEditorMode {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    transform: translateY(100%);
    color: #99ccff;
}

.index-page .news-main .other-news-item a:not(.wfEditorMode) {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: calc(var(--ratio-size) * 15) calc(var(--ratio-size) * 20);
    transition: all .5s;
}

.index-page .news-main .other-news-item a:not(.wfEditorMode)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: #fff; */
    background-color: rgba(255, 255, 255, .7);
    transition: all .5s;
}

.index-page .news-main .other-news-item:nth-child(1) a:not(.wfEditorMode) {
    padding-top: calc(var(--ratio-size) * 30);
}

.index-page .news-main .other-news-item .title {
    position: relative;
    z-index: 3;
    font-size: calc(22rem / 16);
}

.index-page .news-main .other-news-item .time {
    position: relative;
    z-index: 3;
    margin-top: calc(var(--ratio-size) * 10);
    font-size: calc(14rem / 16);
    color: #666666;
    transition: all .5s;
}

.index-page .news-main .other-news-item a:hover {
    color: #fff;
}

.index-page .news-main .other-news-item a:hover::after {
    opacity: 0;
}

.index-page .news-main .other-news-item a:hover .time {
    color: #fff;
}

.news-page {
    width: 100%;
    padding-bottom: calc(var(--ratio-size) * 120);
    opacity: 0;
}

.news-page .news-nav {
    text-align: center;
    background-color: #f3f3f3;
    font-size: calc(18rem / 16);
}

.news-page .news-nav a {
    position: relative;
    display: inline-block;
    padding: calc(var(--ratio-size) * 35) calc(var(--ratio-size) * 40);
}

.news-page .news-nav a.active {
    font-weight: bold;
}

.news-page .news-nav a.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #20439a;
}

.news-page .news-main {
    margin-top: calc(var(--ratio-size) * 60);
}

.news-page .news-main .search-content {
    display: flex;
}

.news-page .news-main .search-input {
    margin-left: auto;
}

.news-page .news-main .search-input input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.news-page .news-main .search-input form {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: calc(var(--ratio-size) * 420);
    padding-left: calc(var(--ratio-size) * 16);
    border: 1px solid #dcdcdc;
}

.news-page .news-main .search-input input {
    flex: 1;
    border: none;
    outline: none;
    font-size: calc(18rem / 16);
}

.news-page .news-main .search-input .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px;
    width: 40px;
    height: 100%;
    cursor: pointer;
    transition: all .5s;
}

.news-page .news-main .search-input .icon:hover {
    background-color: #285bc0;
}

.news-page .news-main .search-input .icon:hover .cls-1 {
    fill: #ffff
}

.news-page .news-main .news-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* justify-content: space-between; */
    margin-top: calc(var(--ratio-size) * 40);
}

.news-page .news-main .news-list .news-top {
    position: relative;
    width: calc((100% - var(--ratio-size) * 60) / 2);
    min-height: calc(var(--ratio-size) * 370);
    margin-bottom: calc(var(--ratio-size) * 30);
    margin-right: calc(var(--ratio-size) * 30);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.news-page .news-main .news-list .news-top .pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.news-page .news-main .news-list .news-top .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.news-page .news-main .news-list .news-top:hover .pic img {
    transform: scale(1.1);
}

.news-page .news-main .news-list .news-top .news-top-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: calc(var(--ratio-size) * 40);
    color: #fff;
}

.news-page .news-main .news-list .news-top .news-top-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 8), rgba(0, 0, 0, 0));
}

.news-page .news-main .news-top-main .time {
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: calc(var(--ratio-size) * 17) calc(var(--ratio-size) * 8);
    border: 1px solid rgba(255, 255, 255, .5);
    text-align: center;
}

.news-page .news-main .news-top-main .time .day {
    font-size: calc(20rem / 16);
}

.news-page .news-main .news-top-main .time .year {
    font-size: calc(14rem / 16);
}

.news-page .news-main .news-top-main .bottom {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: calc(20rem / 16);
}

.news-page .news-main .news-top-main .bottom .text {
    width: calc(var(--ratio-size) * 330);
}

.news-page .news-main .news-top-main .bottom .more-btn {
    display: flex;
    align-items: center;
    font-size: calc(16rem / 16);
}

.news-page .news-main .news-top-main .bottom .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--ratio-size) * 26);
    height: calc(var(--ratio-size) * 26);
    margin-left: calc(var(--ratio-size) * 20);
    border: 2px solid rgba(255, 255, 255, .5);
    transform: rotate(45deg);
}

.news-page .news-main .news-top-main .bottom .arrow-icon img {
    width: calc(var(--ratio-size) * 12);
    transform: rotate(-45deg);
}

.news-page .news-main .news-list {
    padding-right: calc(var(--ratio-size) * 210);
}

.news-page .news-main .news-list .news-item {
    width: calc((100% - var(--ratio-size) * 120) / 4);
    margin-bottom: calc(var(--ratio-size) * 30);
    margin-right: calc(var(--ratio-size) * 30);
}

.news-page .news-main .news-list .news-item a {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.news-page .news-main .news-list .news-item a .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 210);
    overflow: hidden;
}

.news-page .news-main .news-list .news-item a .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.news-page .news-main .news-list .news-item a:hover .pic img {
    transform: scale(1.1);
}

.news-page .news-main .news-list .news-item .text-main {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--ratio-size) * 22);
    background-color: #f5f5f5;
    transition: all .5s;
}

.news-page .news-main .news-list .news-item .text-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    opacity: 0;
    transition: all .5s;
}

.news-page .news-main .news-list .news-item .text-main .title {
    position: relative;
    z-index: 3;
    font-size: calc(16rem / 16);
    line-height: 1.5;
}

.news-page .news-main .news-list .news-item .text-main .time {
    position: relative;
    z-index: 3;
    margin-top: calc(var(--ratio-size) * 25);
    font-size: calc(14rem / 16);
    color: #666666;
    transition: all .5s;
}

.news-page .news-main .news-list .news-item:hover .text-main {
    color: #fff;
}

.news-page .news-main .news-list .news-item:hover .text-main::after {
    opacity: 1;
}

.news-page .news-main .news-list .news-item:hover .text-main .time {
    color: #fff;
}

.news-page .news-main .news-list a.wfEditorMode {
    position: absolute;
    width: auto;
    height: auto;
    transform: translateY(100%);
    z-index: 4;
}

.news-page .pager-main {
    margin-top: calc(var(--ratio-size) * 60);
}

.news-page .pager-main ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .pager-main ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--ratio-size) * 50);
    height: calc(var(--ratio-size) * 50);
    border: 1px solid #25479c;
    border-radius: 50%;
    transition: all .5s;
}

.news-page .pager-main ul .selected a,
.news-page .pager-main ul a:hover {
    background-color: #25479c;
    color: #fff;
}

.news-page .pager-main ul li {
    margin: calc(var(--ratio-size) * 10);
}

.news-page .pager-main ul li.previous a,
.news-page .pager-main ul li.next a {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0 calc(var(--ratio-size) * 30);
    border-radius: 100px;
    border: 1px solid #e5e5e5;
    white-space: nowrap;
    color: #25479c;
}

.news-page .pager-main ul li.previous,
.news-page .pager-main ul li.next {
    position: relative;
}

.news-page .pager-main ul li.previous a {
    padding-left: calc(var(--ratio-size) * 60);
}

.news-page .pager-main ul li.next a {
    padding-right: calc(var(--ratio-size) * 60);
}

.news-page .pager-main ul li.previous a::after {
    content: '';
    position: absolute;
    top: calc(50% - var(--ratio-size) * 4);
    left: 20%;
    width: 12px;
    height: 7px;
    background-image: url('../images/arrow_left_blue.png');
    background-repeat: no-repeat;
    background-position: 15% center;
}

.news-page .pager-main ul li.next a::after {
    content: '';
    position: absolute;
    top: calc(50% - var(--ratio-size) * 4);
    right: 20%;
    transform: rotateY(180deg);
    width: 12px;
    height: 7px;
    background-image: url('../images/arrow_left_blue.png');
    background-repeat: no-repeat;
    background-position: 10% center;
}

.news-page .pager-main ul li.previous img,
.news-page .pager-main ul li.next img {
    width: calc(var(--ratio-size) * 12);
}

.news-page .pager-main ul li.previous img {
    margin-right: calc(var(--ratio-size) * 10);
}

.news-page .pager-main ul li.next .pic {
    margin-left: calc(var(--ratio-size) * 10);
}

.news-page .pager-main ul li.next img.default-show {
    transform: rotate(180deg);
}

.news-page .pager-main ul li.previous img.default-hidden {
    transform: rotate(180deg);
}

.news-page .pager-main ul li.previous a:hover,
.news-page .pager-main ul li.next a:hover {
    color: #fff;
}

.news-page .pager-main ul li .pic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-page .pager-main ul li .default-hidden {
    display: none;
}

.news-page .pager-main ul li a:hover:after {
    background-image: url('../images/arrow_left_blue_white.png');
    z-index: 4;
}

.news-page .pager-main ul li:hover .default-show {
    display: none;
}

.news-page .pager-main ul li.first,
.news-page .pager-main ul li.last {
    display: none;
}

.news-detail-page {
    padding-bottom: calc(var(--ratio-size) * 160);
}

.news-detail-page .breadcrumb {
    padding-top: calc(var(--ratio-size) * 40);
    padding-bottom: calc(var(--ratio-size) * 40);
    font-size: calc(14rem / 16);
}

.news-detail-page .breadcrumb a:not(:last-child)::after {
    content: '>';
    margin: 0 5px;
}

.news-detail-page .detail-main {
    position: relative;
    margin-top: calc(var(--ratio-size) * 25);
}

.news-detail-page .detail-main .text-main {
    width: calc(var(--ratio-size) * 920);
}

.news-detail-page .detail-main .text-main .top {
    padding-bottom: calc(var(--ratio-size) * 30);
    text-align: center;
    border-bottom: 1px solid #cecece;
}

.news-detail-page .detail-main .text-main .top .title {
    font-size: calc(var(--ratio-size) * 28);
}

.news-detail-page .detail-main .text-main .top .time {
    margin-top: calc(var(--ratio-size) * 20);
    color: #666666;
}

.news-detail-page .detail-main .text-main .content {
    margin-top: calc(var(--ratio-size) * 40);
    font-size: calc(18rem / 16);
    color: #333333;
    line-height: 1.5;
    text-align: justify;
}

.news-detail-page .detail-main .text-main .content img {
    max-width: 100%;
    width: revert-layer;
}

.news-detail-page .detail-main .text-main .content strong {
    font-weight: bold;
}

/* .news-detail-page .detail-main .text-main .content h1 {
    margin-top: calc(var(--ratio-size) * 55);
    margin-bottom: calc(var(--ratio-size) * 25);
    font-size: calc(20rem / 16);
}

.news-detail-page .detail-main .text-main .content p {
    margin-bottom: calc(var(--ratio-size) * 25);
} */
.news-detail-page .detail-main .text-main .content h1,
.news-detail-page .detail-main .text-main .content h2,
.news-detail-page .detail-main .text-main .content h3,
.news-detail-page .detail-main .text-main .content h4,
.news-detail-page .detail-main .text-main .content h5,
.news-detail-page .detail-main .text-main .content ul,
.news-detail-page .detail-main .text-main .content li,
.news-detail-page .detail-main .text-main .content ol,
.news-detail-page .detail-main .text-main .content strong {
    font-size: revert-layer;
    font-weight: revert-layer;
    list-style-type: revert-layer;
}

.news-detail-page .detail-main .text-main .content ul,
.news-detail-page .detail-main .text-main .content ol {
    margin-left: calc(var(--ratio-size) * 50);
}

.news-detail-page .detail-main .text-main .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 65);
    background-color: #f5f5f5;
}

.news-detail-page .detail-main .text-main .bottom a {
    display: inline-flex;
    width: 50%;
    align-items: center;
    padding: calc(var(--ratio-size) * 50) calc(var(--ratio-size) * 30);
    transition: all .5s;
}

.news-detail-page .detail-main .text-main .bottom a:hover {
    background-color: #3690c2;
    color: #fff;
}

.news-detail-page .detail-main .text-main .bottom img {
    width: calc(var(--ratio-size) * 27);
}

.news-detail-page .detail-main .text-main .bottom .text-main {
    flex: 1;
    padding: 0 calc(var(--ratio-size) * 20);
}

.news-detail-page .detail-main .text-main .bottom .pic .default-hidden {
    display: none;
}

.news-detail-page .detail-main .text-main .bottom a:hover .default-hidden {
    display: block;
}

.news-detail-page .detail-main .text-main .bottom a:hover .default-show {
    display: none;
}

.news-detail-page .detail-main .text-main .bottom .title {
    margin-bottom: calc(var(--ratio-size) * 20);
    font-size: calc(18rem / 16);
    font-weight: bold;
}

.news-detail-page .detail-main .text-main .bottom .text {
    line-height: 1.7;
}

.news-detail-page .detail-main .text-main .bottom .next {
    text-align: right;
    border-left: 1px solid #dcdcdc;
}

.news-detail-page .detail-main .text-main .bottom .next img {
    transform: rotateY(180deg);
}

.news-detail-page .detail-main .contact {
    position: absolute;
    top: 0;
    right: calc(var(--ratio-size) * 240);
    width: calc(var(--ratio-size) * 440);
    height: 100%;
}

.news-detail-page .detail-main .contact-main {
    position: sticky;
    top: calc(var(--ratio-size) * 200);
    left: 0;
}

.news-detail-page .detail-main .contact .title {
    width: 100%;
    padding: calc(var(--ratio-size) * 25);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    font-size: calc(var(--ratio-size) * 28);
    text-align: center;
    color: #fff;
}

.news-detail-page .detail-main .contact .text {
    width: 100%;
    min-height: calc(var(--ratio-size) * 220);
    padding: calc(var(--ratio-size) * 40) calc(var(--ratio-size) * 30);
    background: url('../images/news_detail_contact.png') no-repeat center/cover;
    font-size: calc(var(--ratio-size) * 20);
}

.news-detail-page .detail-main .contact .text ul {
    margin-top: calc(var(--ratio-size) * 20);
}

.news-detail-page .detail-main .contact .text ul li {
    display: flex;
    align-items: center;
}

.news-detail-page .detail-main .contact .text ul .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--ratio-size) * 50);
    height: calc(var(--ratio-size) * 50);
    border-radius: 50%;
    background-color: #fff;
}

.news-detail-page .detail-main .contact .text ul img {
    max-width: 55%;
    max-height: 55%;
}

.news-detail-page .detail-main .contact .text a {
    margin-left: calc(var(--ratio-size) * 15);
    color: #20439a;
    text-decoration-line: underline;
}

.about-page .about-nav-outside {
    height: calc(var(--ratio-size) * 94);
}

.about-page .about-nav {
    z-index: 4;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: calc(var(--ratio-size) * 94);
    text-align: center;
    background-color: #f3f3f3;
    font-size: calc(18rem / 16);
}

.about-page .about-nav a {
    position: relative;
    display: inline-block;
    /* width: 100%; */
    height: 100%;
    padding: 0 calc(var(--ratio-size) * 40);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    line-height: calc(var(--ratio-size) * 94);
    cursor: pointer;
}

.about-page .about-nav a p {
    position: relative;
    z-index: 3;
}

.about-page .about-nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #f3f3f3;
    transition: all .5s;
}

.about-page .about-nav a:hover::after {
    opacity: 0;
}

.about-page .about-nav a.active {
    font-weight: bold;
}

.about-page .about-nav a.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 2px;
    background-color: #20439a;
}

.about-page .about-nav a:hover {
    background-color: #20439a;
    color: #fff;
}

.about-page .culture-main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-page .culture-main .left {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(var(--ratio-size) * 960);
    height: calc(var(--ratio-size) * 840);
}

.about-page .culture-main .left .culture-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--ratio-size) * 40) calc(var(--ratio-size) * 60);
    color: #fff;
    overflow: hidden;
    opacity: 0;
}

.about-page .culture-main .left .culture-item:nth-child(1) {
    background-color: #ffa53a;
}

.about-page .culture-main .left .culture-item:nth-child(2) {
    background-color: #ffc058;
}

.about-page .culture-main .left .culture-item:nth-child(3) {
    background-color: #e99d31;
}

.about-page .culture-main .left .culture-item .title {
    font-size: calc(var(--ratio-size) * 38);
    font-weight: bold;
}

.about-page .culture-main .left .culture-item .text {
    font-size: calc(var(--ratio-size) * 34);
}

.about-page .culture-main .left .culture-item .title-en {
    position: absolute;
    right: calc(var(--ratio-size) * -9);
    top: calc(var(--ratio-size) * -15);
    font-size: calc(var(--ratio-size) * 108);
    font-weight: bold;
    line-height: 1;
    opacity: .3;
}

.about-page .culture-main .left .culture-item:nth-child(3) .title-en {
    right: calc(var(--ratio-size) * -5);
}

.about-page .culture-main .bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
}

.about-page .culture-main .wfEditorMode {
    position: relative;
    z-index: 3;
}

.about-page .profile-main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: calc(var(--ratio-size) * 120);
    padding-bottom: calc(var(--ratio-size) * 120);
}

.about-page .profile-main strong {
    font-weight: bold;
}

.about-page .profile-main em {
    font-style: italic;
}

.about-page .profile-main .bg {
    position: absolute;
    left: calc(var(--ratio-size) * 200);
    top: calc(var(--ratio-size) * 280);
    width: calc(var(--ratio-size) * 218);
}

.about-page .profile-main .title {
    width: calc(var(--ratio-size) * 400);
    padding-right: calc(var(--ratio-size) * 100);
}

.about-page .profile-main .text-content {
    flex: 1;
    line-height: 1.5;
}

.about-page .profile-main .text-content p:not(:last-child) {
    margin-bottom: calc(var(--ratio-size) * 30);
}

.about-page .profile-main .text-content .map-container {
    margin-top: calc(var(--ratio-size) * 45);
}

.about-page .profile-main .text-content ul {
    padding-left: 20px;
    margin-bottom: calc(var(--ratio-size) * 30);
}

.about-page .profile-main .text-content ul,
.about-page .profile-main .text-content ul li {
    position: relative;
}

.about-page .profile-main .text-content ul li::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
}

.about-page .profile-main .advantage {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: calc(var(--ratio-size) * 70);
}

.about-page .profile-main .advantage-item {
    text-align: center;
}

.about-page .profile-main .advantage .title {
    width: 100%;
    padding-right: 0;
    margin-top: calc(var(--ratio-size) * 30);
    text-align: center;
    font-size: calc(24rem / 16);
    font-weight: bold;
}

.about-page .profile-main .advantage .text {
    margin-top: calc(var(--ratio-size) * 10);
    font-size: calc(18rem / 16);
    line-height: 1.5;
}

.about-page .profile-main .advantage .icon {
    display: flex;
    height: calc(var(--ratio-size) * 60);
    max-width: calc(var(--ratio-size) * 72);
    margin: 0 auto;
}

.about-page .profile-main .advantage .icon img {
    margin: auto;
}

.about-page .team-main {
    padding-top: calc(var(--ratio-size) * 110);
    padding-bottom: calc(var(--ratio-size) * 150);
    background-image: linear-gradient(to bottom, #f2f6fb, #ffffff);
}

.about-page .team-main .common-xb-title {
    text-align: center;
}

.about-page .team-list {
    display: flex;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 50);
}

.about-page .team-list .team-item {
    width: calc((100% - var(--ratio-size) * 120) / 4);
    background-color: #f3f3f3;
    text-align: center;
}

.about-page .team-list .team-item .text {
    padding: 0 calc(var(--ratio-size) * 20);
    padding-top: calc(var(--ratio-size) * 20);
    padding-bottom: calc(var(--ratio-size) * 25);
}

.about-page .team-list .team-item .name {
    font-size: calc(24rem / 16);
}

.about-page .team-list .team-item .position {
    margin-top: calc(5rem / 16);
    font-size: calc(18rem / 16);
    color: #666666;
}

.about-page .team-list .team-item .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 440);
    overflow: hidden;
}

.about-page .team-list .team-item .pic img {
    transition: all .5s;
    width: 100%;
    height: 100%;
}

.about-page .team-list .team-item:hover .pic img {
    transform: scale(1.1);
}

.about-page .course-main {
    width: 100%;
    padding-top: calc(var(--ratio-size) * 100);
    padding-bottom: calc(var(--ratio-size) * 100);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
}

.about-page .course-main .common-xb-title {
    text-align: center;
}

.about-page .course-main .year-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: calc(var(--ratio-size) * 70);
}

.about-page .course-main .year-swiper span {
    position: absolute;
    left: 50%;
    font-size: calc(var(--ratio-size) * 72);
    transform: translateX(-50%);
    font-weight: bold;
}

.about-page .course-main .year-swiper span.hidden {
    position: relative;
    opacity: 0;
}

.about-page .course-main .year-swiper span.show {
    transition: all .5s;
}

.about-page .course-main .year-swiper .swiper-slide:hover {
    cursor: pointer;
}

.about-page .course-main .year-swiper .swiper-slide-prev span.show {
    left: 0;
    transform: translateX(50%);
}

.about-page .course-main .year-swiper .swiper-slide-next span.show {
    left: auto;
    right: 0;
    transform: translateX(-50%);
}

.about-page .course-main .main-content {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: calc(var(--ratio-size) * 70);
    mask: linear-gradient(to bottom, transparent, black 10% 90%, transparent);
    -webkit-mask: linear-gradient(to bottom, transparent, black 10% 90%, transparent);
}

.about-page .course-main .main-content>div {
    display: none;
    height: 400px;
    max-width: 70%;
    padding-top: 30px;
    padding-right: 20px;
    overflow: auto;
    margin: 0 auto;
    opacity: 0;
}

/*整个滚动条样式*/
.about-page .course-main .main-content>div::-webkit-scrollbar {
    width: 2px;
    height: 0px;
    background-color: #414141;
}

/*设置滚动条上的滚动滑块样式*/
.about-page .course-main .main-content>div::-webkit-scrollbar-thumb {
    height: 5px;
    background: #fff;
}

/*鼠标位于内容上时，滚动条样式*/
/* .about-page .course-main .main-content>div.active::-webkit-scrollbar {
    width: 2px;
    height: 0px;
    background: rgba(238, 238, 238, 1);
    border-radius: 1px;
} */
.about-page .course-main .main-content>div.active {
    display: inline-block;
    position: relative;
    opacity: 1;
}

.about-page .course-main .main-content .content-item {
    display: flex;
}

.about-page .course-main .main-content .content-item .month {
    font-weight: bold;
    font-size: calc(22rem / 16);
    border-right: 1px solid #fff;
}

.about-page .course-main .main-content .content-item .month p {
    position: relative;
    padding-right: 20px;
}

.about-page .course-main .main-content .content-item .month p::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 4px;
    height: 1px;
    background-color: #fff;
}

.about-page .course-main .main-content .content-item .text {
    flex: 1;
    padding-bottom: 40px;
    margin-top: 5px;
    margin-left: 20px;
}

.about-page .course-main .main-content .content-item .text p:not(:first-child) {
    margin-top: calc(var(--ratio-size) * 15);
}

.about-page .course-main .timeline {
    position: relative;
    display: flex;
    width: 70%;
    padding: 0 15px;
    padding-top: 15px;
    margin: 0 auto;
    margin-top: calc(var(--ratio-size) * 100);
    font-size: calc(18rem / 16);
}

.about-page .course-main .timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 10% 90%, rgba(255, 255, 255, 0));
}

.about-page .course-main .timeline p {
    flex: 1;
    text-align: center;
    cursor: pointer;
}

.about-page .course-main .timeline .dot {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(100px, -50%);
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    transition: all .5s;
}

.about-page .course-main .b-year {
    margin-top: calc(var(--ratio-size) * 50);
    font-size: calc(var(--ratio-size) * 72);
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.about-page .course-main .course-list {
    display: flex;
    margin-top: calc(var(--ratio-size) * 80);
}

.about-page .course-main .course-list .year {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.about-page .course-main .course-list .year::before {
    content: '';
    flex: 1;
    margin-right: 10px;
    border: 1px solid #fff;
}

.about-page .course-main .course-list .year:last-child::after {
    content: '';
    width: 30%;
    margin-right: 10px;
    border: 1px solid #fff;
}

.about-page .course-main .course-list .year .dot {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
}

.about-page .course-main .course-list .year .dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.about-page .course-main .course-list .year .year-btn {
    margin-left: 10px;
    cursor: pointer;
}

.about-page .course-main .course-list .year.active {
    flex: unset;
}

.about-page .course-main .course-list .year.active::before {
    display: none;
}

.about-page .course-main .course-list .year.active .dot {
    display: none;
}

.about-page .course-main .course-list .year.active .year-btn {
    position: relative;
    padding: calc(var(--ratio-size) * 12) calc(var(--ratio-size) * 40);
    margin-left: 0;
    border: 1px solid #fff;
    border-radius: 100px;
}

.about-page .course-main .course-list .year.active .year-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
}

.about-page .course-main .year-content {
    position: relative;
    opacity: 0;
    width: auto;
    max-width: 45vw;
    /* overflow: auto; */
    overflow-x: hidden;
    padding-bottom: calc(var(--ratio-size) * 30);
    margin: 0 calc(var(--ratio-size) * 5);
    transition: all .5s;
}

.about-page .course-main .year-content .swiper-slide {
    width: auto;
    /* height: calc(var(--ratio-size) * 400); */
}

.about-page .course-main .year-content .year-top {
    display: flex;
    align-items: flex-end;
    /* height: calc(var(--ratio-size) * 215); */
    border-bottom: 2px solid #fff;
}

.about-page .course-main .year-content .year-bottom {
    display: flex;
    /* height: calc(var(--ratio-size) * 180); */
    padding-left: calc(var(--ratio-size) * 100);
}

.about-page .course-main .year-content .year-item {
    /* display: flex; */
    width: calc(var(--ratio-size) * 400);
    height: auto;
    overflow: hidden;
    padding-right: calc(var(--ratio-size) * 30);
    cursor: pointer;
}

.about-page .course-main .year-content .year-item .swiper-slide {
    display: flex;
    height: auto;
    /* min-height: calc(var(--ratio-size) * 200); */
}

.about-page .course-main .year-content .year-bottom .year-item .swiper-slide {
    align-items: flex-end;
}

.about-page .course-main .year-content .year-item .year-text {
    margin-right: calc(var(--ratio-size) * 25);
    font-weight: bold;
}

.about-page .course-main .year-content .year-item .main-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    border-left: 1px solid #fff;
}

.about-page .course-main .year-content .year-bottom .year-item .main-text {
    justify-content: flex-end;
}

.about-page .course-main .year-content .year-top .main-text {
    padding-bottom: calc(var(--ratio-size) * 50);
}

.about-page .course-main .year-content .year-bottom .main-text {
    padding-top: calc(var(--ratio-size) * 50);
}

.about-page .course-main .year-content .year-bottom .year-item .text::before {
    top: auto;
    bottom: 0;
}

.about-page .course-main .year-content .year-item .text {
    position: relative;
    padding-left: calc(var(--ratio-size) * 20);
}

.about-page .course-main .year-content .year-item .text:not(:first-child) {
    margin-top: calc(var(--ratio-size) * 35);
}

.about-page .course-main .year-content .year-item .text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
}

.about-page .course-main .logo {
    width: 200px;
    margin: 0 auto;
    margin-top: calc(var(--ratio-size) * 60);
}

.about-page .partner-main {
    padding-top: calc(var(--ratio-size) * 110);
    padding-bottom: calc(var(--ratio-size) * 140);
}

.about-page .partner-main .common-xb-title {
    text-align: center;
}

.about-page .partner-main .sub-xt-title {
    margin-top: 20px;
    text-align: center;
}

.about-page .partner-main .partner-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--ratio-size) * 50);
}

.about-page .partner-main .partner-list .pic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - var(--ratio-size) * 35) / 5);
    /* height: calc(var(--ratio-size) * 120); */
    margin-right: calc(var(--ratio-size) * 7);
    margin-bottom: calc(var(--ratio-size) * 7);
    border: 1px solid #c1c1c1;
}

.about-page .partner-main .partner-list .pic img {
    display: block;
    height: auto;
    width: 100%;
    /* max-width: 80%; */
    /* max-height: 80%; */
}

.about-page .partner-main .partner-list .pic:nth-child(6n + 5) {
    margin-right: 0;
}

.about-page .contact-main {
    padding: 0 calc(var(--ratio-size) * 460);
    padding-top: calc(var(--ratio-size) * 120);
    padding-bottom: calc(var(--ratio-size) * 120);
    background-image: linear-gradient(to bottom, #f5f5f5, #ffffff);
}

.about-page .contact-main .common-xb-title {
    text-align: center;
}

.about-page .contact-main .by-map {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: calc(var(--ratio-size) * 280);
    margin-top: calc(var(--ratio-size) * 50);
    background-color: #fff;
}

.about-page .contact-main .by-map .text-main {
    width: 50%;
    padding: calc(var(--ratio-size) * 35);
    padding-right: calc(var(--ratio-size) * 40);
    border-top: 2px solid #358ac2;
}

.about-page .contact-main .by-map .text-main .common-s-title {
    color: #20488f;
    font-weight: bold;
}

.about-page .contact-main .by-map .text-main .message {
    margin-top: calc(var(--ratio-size) * 18);
    border-top: 1px solid #e5e5e5;
}

.about-page .contact-main .by-map .text-main .item {
    display: flex;
    margin-top: calc(var(--ratio-size) * 15);
}

.about-page .contact-main .by-map .text-main .item .icon {
    display: flex;
    width: calc(var(--ratio-size) * 20);
    height: calc(var(--ratio-size) * 20);
}

.about-page .contact-main .by-map .text-main .item .icon img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.about-page .contact-main .by-map .text-main .item p {
    flex: 1;
    margin-left: calc(var(--ratio-size) * 10);
}

.about-page .contact-main .by-map .map {
    width: 50%;
}

.about-page .year-content .year-scrollbar {
    position: absolute;
    /* bottom: calc(var(--ratio-size) * -30); */
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: gray;
}

.about-page .year-content .year-scrollbar .swiper-scrollbar-drag {
    background: #fff;
}

.about-page .distribution-main {
    margin-top: calc(var(--ratio-size) * 90);
}

.about-page .distribution-main .common-s-title {
    font-weight: bold;
    color: #20488f;
}

.about-page .distribution-main .city-list {
    display: flex;
    flex-wrap: wrap;
    padding-top: calc(var(--ratio-size) * 40);
    margin-top: calc(var(--ratio-size) * 20);
    border-top: 1px solid #dadada;
}

.about-page .distribution-main .city-item {
    width: 50%;
    padding-left: calc(var(--ratio-size) * 20);
    padding-right: calc(var(--ratio-size) * 20);
    margin-bottom: calc(var(--ratio-size) * 35);
    border-left: 2px solid #2f74c1;
}

.about-page .distribution-main .city-list .title {
    font-size: calc(18rem / 16);
}

.about-page .distribution-main .city-list .text {
    display: flex;
    margin-top: calc(var(--ratio-size) * 10);
    font-size: calc(14rem / 16);
}

.about-page .distribution-main .city-list .text p {
    margin-left: calc(var(--ratio-size) * 10);
}

.solution-page .solution-main {
    padding-top: calc(var(--ratio-size) * 100);
    padding-bottom: calc(var(--ratio-size) * 120);
    background-color: #fff;
}

.solution-page .solution-main .common-xb-title {
    text-align: center;
}

.solution-page .solution-nav {
    display: flex;
    margin-top: calc(var(--ratio-size) * 50);
    border-bottom: 1px solid #e3e3e3;
}

.solution-page .solution-nav .nav-item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: calc(var(--ratio-size) * 20);
    cursor: pointer;
}

.solution-page .solution-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    opacity: 0;
    width: 100%;
    height: 2px;
    background-color: #3282c1;
}

.solution-page .solution-nav .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(var(--ratio-size) * 48);
    max-height: calc(var(--ratio-size) * 45);
    margin-right: calc(var(--ratio-size) * 14);
}

.solution-page .solution-nav .icon img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
}

.solution-page .solution-nav .icon .default-show {
    transition: all .5s;
}

.solution-page .solution-nav .icon .default-hidden {
    position: absolute;
    opacity: 0;
    transition: all .5s;
}

.solution-page .solution-nav .nav-item:hover .default-show {
    opacity: 0;
}

.solution-page .solution-nav .nav-item:hover .default-hidden {
    opacity: 1;
}

.solution-page .solution-nav .nav-item.active::after {
    opacity: 1;
}

.solution-page .solution-nav .nav-item.active {
    color: #20488f;
}

.solution-page .solution-nav .nav-item.active .default-show {
    opacity: 0;
}

.solution-page .solution-nav .nav-item.active .default-hidden {
    opacity: 1;
}

.solution-page .solution-main .product-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--ratio-size) * 60);
}

.solution-page .solution-main .product-item {
    position: relative;
    width: calc((100% - var(--ratio-size) * 60) / 3);
    margin-bottom: calc(var(--ratio-size) * 30);
    border: 1px solid #e3e3e3;
    transition: all .5s;
}

.solution-page .solution-main .product-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    opacity: 0;
    transition: all .5s;
}

.solution-page .solution-main .product-item:nth-child(3n + 2) {
    margin-left: calc(var(--ratio-size) * 30);
    margin-right: calc(var(--ratio-size) * 30);
}

.solution-page .solution-main .product-item a:not(.wfEditorMode) {
    position: relative;
    z-index: 3;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: calc(var(--ratio-size) * 35) calc(var(--ratio-size) * 30);
}

.solution-page .solution-main .product-item .pic {
    display: flex;
    width: calc(var(--ratio-size) * 205);
    height: calc(var(--ratio-size) * 135);
    margin: 0 auto;
}

.solution-page .solution-main .product-item .pic img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    transition: all .5s;
}

.solution-page .solution-main .product-item:hover .pic img {
    transform: scale(1.1);
}

.solution-page .solution-main .product-item:hover::after {
    opacity: 1;
}

.solution-page .solution-main .product-item .text-main {
    margin-top: calc(var(--ratio-size) * 45);
    color: #333;
    transition: all .5s;
}

.solution-page .solution-main .product-item:hover .text-main {
    color: #fff;
}

.solution-page .solution-main .product-item .product-title {
    font-weight: bold;
    color: #20488f;
    transition: all .5s;
}

.solution-page .solution-main .product-item:hover .product-title {
    color: #fff;
}

.solution-page .solution-main .product-item .type {
    padding-left: calc(var(--ratio-size) * 8);
    margin-top: calc(var(--ratio-size) * 15);
    border-left: 2px solid #20488f;
    transition: all .5s;
}

.solution-page .solution-main .product-item:hover .type {
    border-left-color: #fff;
    color: #fff;
}

.solution-page .solution-main .product-item ul {
    margin-top: calc(var(--ratio-size) * 25);
    line-height: 1.7;
}

.solution-page .solution-main .product-item li {
    position: relative;
    display: flex;
    /* align-items: center; */
}

.solution-page .solution-main .product-item li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    margin-top: calc(var(--ratio-size) * 11.8);
    border-radius: 50%;
    background-color: #333333;
    transition: all .5s;
}

.solution-page .solution-main .product-item:hover li::before {
    background-color: #ffff;
}

.solution-page .solution-main .product-item li p {
    flex: 1;
}

.technology-page .nav-outside {
    height: calc(var(--ratio-size) * 126);
}

.technology-page .technology-main {
    padding-bottom: calc(var(--ratio-size) * 110);
}

.technology-page .technology-main .top {
    /* margin-top: calc(var(--ratio-size) * 120); */
    padding-top: calc(var(--ratio-size) * 120);
    ;
    text-align: center;
}

.technology-page .technology-main .description-content {
    margin-top: calc(var(--ratio-size) * 120);
    color: #666666;
    line-height: 1.5;
}

.technology-page .technology-main .description-content p:not(:last-child) {
    margin-bottom: calc(var(--ratio-size) * 20);
}

.technology-page .technology-main .text {
    margin-top: calc(var(--ratio-size) * 30);
}

.technology-page .technology-main .top .common-xb-title strong {
    color: #20488f;
}

.technology-page .technology-main .top:first-child {
    /* margin-top: calc(var(--ratio-size) * 80); */
    padding-top: calc(var(--ratio-size) * 80);
}

.technology-page .technology-main .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 60);
}

.technology-page .technology-main .product-list .sub-title {
    width: 100%;
    margin-bottom: calc(var(--ratio-size) * 30);
    font-weight: bold;
}

.technology-page .technology-main .product-list .sub-title:not(:first-child) {
    margin-top: calc(var(--ratio-size) * 20);
}

.technology-page .technology-main .product-list .product-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - var(--ratio-size) * 40) / 2);
    margin-bottom: calc(var(--ratio-size) * 40);
    border-top: 2px solid #3383c2;
}

.technology-page .technology-main .product-item .product-title {
    padding-top: calc(var(--ratio-size) * 20);
    margin-bottom: calc(var(--ratio-size) * 20);
    color: #20488f;
}

.technology-page .technology-main .product-item ul {
    flex: 1;
    background-color: #f7f7f7;
}

.technology-page .technology-main .product-item ul li {
    position: relative;
    padding: 0 calc(var(--ratio-size) * 30);
}

.technology-page .technology-main .product-item ul li a.wfEditorMode {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(100%);
    z-index: 4;
}

.technology-page .technology-main .product-item a:not(.wfEditorMode) {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--ratio-size) * 20) 0;
    padding-right: calc(var(--ratio-size) * 30);
    transition: all .5s;
}

.technology-page .technology-main .product-item a:not(.wfEditorMode)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    opacity: 0;
    transition: all .5s;
}

.technology-page .common-s-title {
    text-align: center;
}

.technology-page .technology-main .product-item a:hover {
    color: #fff;
    padding-left: calc(var(--ratio-size) * 20);
}

.technology-page .technology-main .product-item a:hover::after {
    opacity: 1;
}

.technology-page .technology-main .product-item a p {
    flex: 1;
    position: relative;
    z-index: 3;
}

.technology-page .technology-main .product-item a img {
    position: relative;
    z-index: 3;
    width: 12px;
    height: auto;
    transform: rotate(180deg);
}

.technology-page .technology-main .product-item a .default-hidden {
    transform: rotate(360deg);
    display: none;
}

.technology-page .technology-main .product-item a:hover .default-hidden {
    display: block;
}

.technology-page .technology-main .product-item a:hover .default-show {
    display: none;
}

.technology-page .technology-main .product-item li:not(:last-child) a {
    border-bottom: 1px solid #dcdcdc;
}

.technology-page .technology-main .product-item li:first-child a {
    border-bottom: 1px solid #dcdcdc;
}

.product-detail-page .nav-outside {
    height: calc(var(--ratio-size) * 126);
}

.product-detail-page .product-detail-main {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.product-detail-page .product-detail-main .bg-pic {
    position: absolute;
    left: 0;
    width: auto;
}

.product-detail-page .product-detail-main .bg-pic.pic-1 {
    top: calc(var(--ratio-size) * 120);
    width: calc(var(--ratio-size) * 338);
}

.product-detail-page .product-detail-main .bg-pic.pic-2 {
    top: 0;
    bottom: 0;
    margin: auto;
    width: calc(var(--ratio-size) * 528);
    display: none;
}

.product-detail-page .product-detail-main .bg-pic.pic-3 {
    /*top: calc(var(--ratio-size) * 1400);*/
    bottom: 0;
    width: calc(var(--ratio-size) * 505);
}

.product-detail-page .product-detail-main.higher .bg-pic.pic-2 {
    display: block;
}

.product-detail-page .product-detail-main .content-main {
    width: calc(var(--ratio-size) * 1035);
    padding-top: calc(var(--ratio-size) * 100);
    padding-bottom: calc(var(--ratio-size) * 140);
    margin-left: auto;
    line-height: 1.5;
}

.product-detail-page .product-detail-main .content-main .content {
    line-height: 2;
}

.product-detail-page .product-detail-main .content img {
    display: block;
    max-width: 100%;
    height: auto;
    width: revert-layer;
    margin: 0 auto;
    /* margin-bottom: calc(var(--ratio-size) * 40); */
}

/* .product-detail-page .product-detail-main .content p {
    margin-bottom: calc(var(--ratio-size) * 40);
} */

.product-detail-page .product-detail-main .content-main .content ul {
    margin-left: 20px;
}

.product-detail-page .product-detail-main .content ul ul {
    margin-left: calc(var(--ratio-size) * 10);
}

.product-detail-page .product-detail-main .content h1 {
    margin-bottom: calc(var(--ratio-size) * 40);
    text-align: center;
    font-size: calc(20rem / 16);
    font-weight: bold;
}

.product-detail-page .product-detail-main .advantage {
    padding-top: calc(var(--ratio-size) * 80);
    border-top: 1px solid #cccccc;
}

.product-detail-page .product-detail-main .advantage .advantage-title {
    font-size: calc(var(--ratio-size) * 32);
}

.product-detail-page .product-detail-main .advantage ol {
    list-style: decimal;
    padding-left: 1.5em;
}

.product-detail-page .product-detail-main .advantage ul,
.product-detail-page .product-detail-main .advantage ol {
    margin-top: calc(var(--ratio-size) * 25);
    margin-left: 20px;
}

.product-detail-page .product-detail-main .advantage ul li,
.product-detail-page .product-detail-main .advantage ol li {
    position: relative;
    display: flex;
    margin-bottom: calc(var(--ratio-size) * 10);
}

.product-detail-page .product-detail-main .advantage ul li {
    padding-left: calc(var(--ratio-size) * 15);
}

.product-detail-page .product-detail-main .advantage ol li {
    display: list-item;
}

.product-detail-page .product-detail-main .advantage ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(var(--ratio-size) * 13);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3282c1;
}

.product-detail-main .content-main strong {
    font-weight: bold;
}

.product-detail-main .content-main ul li {
    position: relative;
    padding-left: calc(var(--ratio-size) * 15);
    line-height: 2;
    /* margin-bottom: calc(var(--ratio-size) * 10); */
}

.product-detail-main .content-main .advantage ul li {
    display: flex;
}

.product-detail-main .content-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(var(--ratio-size) * 13);
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3282c1;
}

.product-detail-page .data-main {
    position: relative;
    z-index: 3;
    padding-top: calc(var(--ratio-size) * 100);
    padding-bottom: calc(var(--ratio-size) * 120);
}

.bg-gray {
    background-color: #f5f5f5;
}

.product-detail-page .data-main .common-xb-title {
    text-align: center;
}

.product-detail-page .data-main .data-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: calc(var(--ratio-size) * 50);
}

.product-detail-page .data-main .data-item {
    position: relative;
    width: calc((100% - var(--ratio-size) * 40) / 2);
    min-height: calc(var(--ratio-size) * 145);
    margin-bottom: calc(var(--ratio-size) * 40);
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    cursor: pointer;
}

.product-detail-page .data-main .data-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all .5s;
}

.product-detail-page .bg-white.data-main .data-item::after {
    background-color: #f5f5f5;
}

.product-detail-page .data-main .data-item:hover::after {
    opacity: 0;
}

.product-detail-page .data-main .data-item a:not(.wfEditorMode) {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-top: calc(var(--ratio-size) * 28);
    padding-bottom: calc(var(--ratio-size) * 25);
    padding-left: calc(var(--ratio-size) * 40);
    padding-right: calc(var(--ratio-size) * 40);
    transition: all .5s;
}

.product-detail-page .data-main .data-item:hover a {
    color: #fff;
}

.product-detail-page .data-main .data-item .text-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-detail-page .data-main .data-item .title {
    font-size: calc(18rem / 16);
}

.product-detail-page .data-main .data-item .download {
    display: flex;
    align-items: center;
    margin-top: calc(var(--ratio-size) * 20);
    font-size: calc(16rem / 16);
}

.product-detail-page .data-main .data-item .download p {
    border-bottom: 1px solid #666666;
}

.product-detail-page .data-main .data-item .download .pic {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(18rem / 16);
    margin-left: calc(var(--ratio-size) * 15);
}

.product-detail-page .data-main .data-item a .pdf-pic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--ratio-size) * 90);
    height: calc(var(--ratio-size) * 90);
    border-radius: 50%;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
}

.product-detail-page .data-main .data-item a .pdf-pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    border-radius: 50%;
    transition: all .5s;
}

.product-detail-page .data-main .data-item:hover a .pdf-pic::after {
    opacity: 1;
}

.product-detail-page .data-main .data-item a .pdf-pic img {
    position: relative;
    z-index: 3;
    width: auto;
    max-width: 60%;
    max-height: 60%;
}

.product-detail-page .data-main .data-item .default-hidden {
    display: none;
}

.product-detail-page .data-main .data-item:hover .default-hidden {
    display: block;
}

.product-detail-page .data-main .data-item:hover .default-show {
    display: none;
}

.product-detail-page .client-main {
    padding-top: calc(var(--ratio-size) * 120);
    padding-bottom: calc(var(--ratio-size) * 120);
}

.bg-white {
    background-color: #fff;
}

.product-detail-page .client-main .common-xb-title {
    text-align: center;
}

.product-detail-page .client-main .client-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--ratio-size) * 50);
}

.product-detail-page .client-main .client-item {
    width: calc((100% - var(--ratio-size) * 40) / 2);
    min-height: calc(var(--ratio-size) * 145);
    background-color: #fff;
}

.product-detail-page .client-main .client-item a:not(.wfEditorMode) {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding-top: calc(var(--ratio-size) * 28);
    padding-bottom: calc(var(--ratio-size) * 25);
    padding-left: calc(var(--ratio-size) * 40);
    padding-right: calc(var(--ratio-size) * 40);
    border-left: 2px solid #20488f;
    background-color: #f5f5f5;
}

.product-detail-page .client-main .client-item a .time {
    font-size: calc(16rem / 16);
    color: #666666;
}

.product-detail-page .technology-video {
    padding-top: calc(var(--ratio-size) * 120);
    padding-bottom: calc(var(--ratio-size) * 80);
    background-color: #f5f5f5;
}

.product-detail-page .technology-video .common-xb-title {
    text-align: center;
}

.product-detail-page .technology-video .video-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: calc(var(--ratio-size) * 50);
}

.product-detail-page .technology-video .video-swiper .pic {
    position: relative;
    width: 100%;
    height: calc(var(--ratio-size) * 240);
}

.product-detail-page .technology-video .video-swiper .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-page .technology-video .video-swiper .pic .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--ratio-size) * 70);
    height: calc(var(--ratio-size) * 70);
    transition: all .5s;
}

.product-detail-page .technology-video .video-swiper .pic:hover {
    cursor: pointer;
}

.product-detail-page .technology-video .video-swiper .pic:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.2);
}

.product-detail-page .technology-video .video-swiper .text {
    padding: calc(var(--ratio-size) * 25) calc(var(--ratio-size) * 35);
    text-align: center;
}

.product-detail-page .technology-video .video-swiper .swiper-video-pagination {
    margin-top: calc(var(--ratio-size) * 40);
    text-align: center;
}

.product-detail-page .technology-video .video-swiper .swiper-video-pagination .video-bullet-active {
    background-color: #20488f;
    opacity: 1;
}

.product-detail-page .news-main {
    padding-top: calc(var(--ratio-size) * 120);
    padding-bottom: calc(var(--ratio-size) * 120);
}

.product-detail-page .news-main .common-xb-title {
    text-align: center;
}

.product-detail-page .news-main .news-list {
    display: flex;
    margin-top: calc(var(--ratio-size) * 50);
}

.product-detail-page .news-main .news-list .news-item {
    display: flex;
    flex-direction: column;
    width: calc((100% - var(--ratio-size) * 80) / 3);
}

.product-detail-page .news-main .news-list .news-item:not(:last-child) {
    margin-right: calc(var(--ratio-size) * 80);
}

.product-detail-page .news-main .news-list .news-item a:not(.wfEditorMode) {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-detail-page .news-main .news-item .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 280);
    overflow: hidden;
}

.product-detail-page .news-main .news-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.product-detail-page .news-main .news-item .text-main {
    flex: 1;
    padding: calc(var(--ratio-size) * 30);
    background-color: #f5f5f5;
    transition: all .5s;
}

.product-detail-page .news-main .news-item .text-main .common-s-title {
    font-size: calc(20rem / 16);
}

.product-detail-page .news-main .news-item .text-main .time {
    margin-top: calc(var(--ratio-size) * 40);
    font-size: calc(16rem / 16);
    color: #666666;
    transition: all .5s;
}

.product-detail-page .news-main .news-item:hover {
    color: #fff;
}

.product-detail-page .news-main .news-item:hover .pic img {
    transform: scale(1.1);
}

.product-detail-page .news-main .news-item:hover .text-main {
    background-color: #25479c;
}

.product-detail-page .news-main .news-item:hover .text-main .time {
    color: #fff;
}

.search-container .searchbox1 {
    margin-top: calc(var(--ratio-size) * 200);
    text-align: center;
    height: 50px;
}

.search-container .searchbox1 form {
    display: inline-block;
    height: 100%;
    border-radius: 300px;
    overflow: hidden;
    border: 1px solid #c1c1c1;
}

.search-container .searchbox1 form input {
    border: none;
    outline: none;
}

.search-container .searchbox1 form .searchBtn {
    height: 100%;
    padding: 0 20px;
    padding-right: 25px;
    cursor: pointer;
    transition: all .5s;
    font-size: calc(18rem / 16);
}

.search-container .searchbox1 form .searchBtn:hover {
    background-color: #20439a;
    color: #fff;
}

.search-container .searchbox1 .searchText {
    width: 300px;
    height: 100%;
    padding-left: 30px;
    font-size: calc(16rem / 16);
}

.search-container .news-list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-right: calc(var(--ratio-size) * 210);
    /* justify-content: space-between; */
    margin-top: calc(var(--ratio-size) * 40);
}

.search-container .news-list {
    padding-right: calc(var(--ratio-size) * 210);
}

.search-container .news-list .news-item {
    width: calc((100% - var(--ratio-size) * 120) / 4);
    margin-bottom: calc(var(--ratio-size) * 30);
    margin-right: calc(var(--ratio-size) * 30);
}

.search-container .news-list .news-item a {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.search-container .news-list .news-item a .pic {
    width: 100%;
    height: calc(var(--ratio-size) * 210);
    overflow: hidden;
}

.search-container .news-list .news-item a .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}

.search-container .news-list .news-item a:hover .pic img {
    transform: scale(1.1);
}

.search-container .news-list .news-item .text-main {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--ratio-size) * 22);
    background-color: #f5f5f5;
    transition: all .5s;
}

.search-container .news-list .news-item .text-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    opacity: 0;
    transition: all .5s;
}

.search-container .news-list .news-item .text-main .title {
    position: relative;
    z-index: 3;
    font-size: calc(16rem / 16);
}

.search-container .news-list .news-item .text-main .time {
    position: relative;
    z-index: 3;
    margin-top: calc(var(--ratio-size) * 25);
    font-size: calc(14rem / 16);
    color: #666666;
    transition: all .5s;
}

.search-container .news-list .news-item:hover .text-main {
    color: #fff;
}

.search-container .news-list .news-item:hover .text-main::after {
    opacity: 1;
}

.search-container .news-list .news-item:hover .text-main .time {
    color: #fff;
}

.search-container .news-list a.wfEditorMode {
    position: absolute;
    width: auto;
    height: auto;
    transform: translateY(100%);
    z-index: 4;
}

.search-container .search-error,
.search-container .search-result-empty {
    height: calc(var(--ratio-size) * 300);
    margin-top: calc(var(--ratio-size) * 100);
    font-size: calc(20rem / 16);
    text-align: center;
}

@keyframes rotateFull {
    to {
        transform: rotate(410deg);
    }
}

@keyframes rotateFullReverse {
    to {
        transform: rotate(-410deg);
    }
}

@keyframes scrollPrompt {
    to {
        transform: translateY(20%);
    }
}

@keyframes scrollPromptMobile {
    to {
        transform: translate(50%, 20%);
    }
}

.load-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
}

.load-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.load-effect div {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-animation: load 2.08s linear infinite;
}

.load-effect div span {
    position: absolute;
    left: 50%;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    /* background: rgb(217, 223, 217); */
    background-image: linear-gradient(to right, #3690c2, #285bc0);
    /* margin-top: -10px;
    margin-left: -10px; */
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: rotate(0deg);
    }

    10% {
        -webkit-transform: rotate(45deg);
    }

    50% {
        opacity: 1;
        -webkit-transform: rotate(160deg);
    }

    62% {
        opacity: 0;
    }

    65% {
        opacity: 0;
        -webkit-transform: rotate(200deg);
    }

    90% {
        -webkit-transform: rotate(340deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.load-effect div:nth-child(1) {
    -webkit-animation-delay: 0.2s;
}

.load-effect div:nth-child(2) {
    -webkit-animation-delay: 0.4s;
}

.load-effect div:nth-child(3) {
    -webkit-animation-delay: 0.6s;
}

.load-effect div:nth-child(4) {
    -webkit-animation-delay: 0.8s;
}

.product-detail-page .download-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, .5);
}

.product-detail-page .download-dialog .download-form {
    width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 40px;
}

.product-detail-page .download-dialog .common-form {
    /* padding: 50px; */
    padding: 20px 30px;
}

.product-detail-page .download-dialog .close-btn {
    width: 40px;
    margin: 0 auto;
    margin-bottom: 50px;
    cursor: pointer;
}

.product-detail-page .download-dialog .common-xb-title {
    font-size: calc(30rem / 16);
}

.product-detail-page .download-dialog .text {
    margin-top: calc(var(--ratio-size) * 20);
}

.product-detail-page .download-dialog form {
    margin-top: calc(var(--ratio-size) * 30);
}

.product-detail-page .download-dialog .input-item {
    margin-bottom: calc(var(--ratio-size) * 20);
    font-size: calc(16rem / 16);
}

.product-detail-page .download-dialog .input-main {
    height: calc(var(--ratio-size) * 50);
}

.product-detail-page .download-dialog textarea {
    height: calc(var(--ratio-size) * 200);
}

.product-detail-page .download-dialog .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
}

.about-page .join-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(var(--ratio-size) * 550);
    font-size: calc(var(--ratio-size) * 20);
    color: #fff;
}

.about-page .join-main .title {
    font-size: calc(var(--ratio-size) * 48);
}

.about-page .join-main .email {
    display: flex;
    align-items: center;
    margin-top: calc(var(--ratio-size) * 40);
}

.about-page .join-main .email a {
    position: relative;
}

.about-page .join-main .email a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #fff;
}

.common-blue-btn.white-btn a {
    background: #fff;
    color: #20439a;
}

.common-blue-btn.white-btn a .icon {
    border-color: #8fa1cc;
}

.about-page .join-main .tips {
    margin-top: calc(var(--ratio-size) * 40);
}

.about-page .join-main .common-blue-btn {
    margin-top: calc(var(--ratio-size) * 40);
}

.about-page .join-main .arrow-area {
    position: relative;
    width: calc(var(--ratio-size) * 13);
    height: calc(var(--ratio-size) * 13);
    margin-top: calc(var(--ratio-size) * 14);
}

.about-page .join-main .white-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border: calc(var(--ratio-size) * 8) solid transparent;
    border-top-color: #fff;
    animation: arrowAn 1.8s infinite;
}

.about-page .join-main .white-arrow:nth-child(2) {
    animation-delay: .3s;
}

.about-page .join-main .white-arrow:nth-child(3) {
    animation-delay: .6s;
}

.about-page .join-main .email-icon {
    width: calc(var(--ratio-size) * 30);
    height: auto;
    /* height: calc(var(--ratio-size) * 24); */
    margin-right: calc(var(--ratio-size) * 10);
}

@keyframes arrowAn {
    to {
        transform: translateY(calc(var(--ratio-size) * 30));
        opacity: 0;
    }
}

.privacy-container {
    padding-top: calc(var(--ratio-size) * 60);
    margin-top: calc(var(--ratio-size) * 80);
}

.privacy-container .title {
    text-align: center;
    font-size: calc(var(--ratio-size) * 35);
}

.privacy-container .privacy-main {
    margin-bottom: calc(var(--ratio-size) * 50);
    margin-top: calc(var(--ratio-size) * 40);
    line-height: 1.5;
}

.privacy-container .privacy-main p {
    margin-bottom: calc(var(--ratio-size) * 20);
    text-indent: 2em;
}

.privacy-container .privacy-main h3 {
    margin-bottom: calc(var(--ratio-size) * 10);
    font-size: larger;
    font-weight: bold;
}

.privacy-container .privacy-main ul {
    margin-bottom: calc(var(--ratio-size) * 20);
}

.privacy-container .privacy-main ul li {
    line-height: 1.5;
}

.privacy-container .privacy-main h2 {
    position: relative;
    padding-left: 10px;
    margin-top: calc(var(--ratio-size) * 50);
    margin-bottom: calc(var(--ratio-size) * 10);
    font-size: large;
    font-weight: bold;
    color: #275bdc;
}

.privacy-container .privacy-main h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 3px solid #275bdc;
}

.privacy-container .logo {
    width: 100px;
    margin: 0 auto;
    margin-top: calc(var(--ratio-size) * 30);
    margin-bottom: calc(var(--ratio-size) * 100);
}

.law-container {
    padding-top: calc(var(--ratio-size) * 60);
    margin-top: calc(var(--ratio-size) * 80);
}

.law-container .title {
    text-align: center;
    font-size: calc(var(--ratio-size) * 35);
}

.law-container .law-main {
    margin-bottom: calc(var(--ratio-size) * 50);
    margin-top: calc(var(--ratio-size) * 40);
    line-height: 1.5;
}

.law-container .law-main p {
    margin-bottom: calc(var(--ratio-size) * 20);
    text-indent: 2em;
}

.law-container .law-main h2 {
    position: relative;
    padding-left: 10px;
    margin-top: calc(var(--ratio-size) * 30);
    margin-bottom: calc(var(--ratio-size) * 10);
    font-size: large;
    font-weight: bold;
    color: #275bdc;
}

.law-container .law-main h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-left: 3px solid #275bdc;
}

.law-container .law-main ul {
    margin-bottom: calc(var(--ratio-size) * 20);
}

.law-container .law-main ul li {
    line-height: 1.5;
}

.law-container .logo {
    width: 250px;
    margin: 0 auto;
    margin-top: calc(var(--ratio-size) * 30);
    margin-bottom: calc(var(--ratio-size) * 100);
}

em {
    font-style: italic;
}

em strong {
    font-style: italic;
}

.mobile-show {
    display: none;
}