@charset "UTF-8";
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

img,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.di_no {
    display: none;
}

.site-icon {
    --color: inherit;
    align-items: center;
    color: var(--color);
    display: inline-flex;
    fill: currentColor;
    font-size: inherit;
    height: 1em;
    justify-content: center;
    line-height: 1em;
    position: relative;
    width: 1em;
}

.site-icon svg {
    height: 1em;
    width: 1em;
}

.static-row {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    justify-content: space-between;
}

.static-col {
    box-sizing: border-box;
}

.col-6 {
    flex: 0 0 24%;
    max-width: 24%;
}

.col-12 {
    flex: 0 0 50%;
    max-width: 50%;
}

.static-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

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

.carousel-item {
    display: none;
    height: 100%;
    inset: 0;
    width: 100%;
}

.carousel-item.is-active {
    display: block;
}

.carousel-arrow {
    display: none;
}

.carousel-indicators {
    bottom: 24px;
    display: flex;
    gap: 10px;
    left: 50%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 2;
}

.carousel-button {
    background: rgba(255, 255, 255, .65);
    border: 0;
    display: block;
    height: 3px;
    padding: 0;
    width: 32px;
}

.carousel-indicator.is-active .carousel-button {
    background: #FFF;
}

.form-radio-group {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.form-radio {
    align-items: center;
    color: #606266;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    gap: 6px;
    line-height: 1;
    position: relative;
}

.form-radio-input {
    align-items: center;
    display: inline-flex;
    height: 14px;
    justify-content: center;
    position: relative;
    width: 14px;
}

.form-radio-native {
    height: 14px;
    left: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 14px;
}

.form-radio-mark {
    border: 1px solid #dcdfe6;
    border-radius: 50%;
    display: block;
    height: 14px;
    position: relative;
    width: 14px;
}

.form-radio-mark:after {
    background: #fff;
    border-radius: 50%;
    content: "";
    display: none;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
}

.form-radio-native:checked+.form-radio-mark,
.form-radio.is-checked .form-radio-mark {
    background: #296ea2;
    border-color: #296ea2;
}

.form-radio-native:checked+.form-radio-mark:after,
.form-radio.is-checked .form-radio-mark:after {
    display: block;
}

.form-input-wrapper,
.form-textarea {
    height: 100%;
    width: 100%;
}

.form-input-control,
.form-textarea-control {
    background: #fff;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    color: #333;
    display: block;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.form-input-control {
    height: 40px;
}

.form-textarea-control {
    min-height: 100px;
    padding: 8px 12px;
    resize: vertical;
}

.form-input-control:focus,
.form-textarea-control:focus {
    border-color: #296ea2;
}

.upload-field {
    display: inline-block;
    position: relative;
}

.upload-btn {
    border: 0;
}

.upload-input {
    cursor: pointer;
    inset: 0;
    opacity: 0;
    position: absolute;
    width: 100%;
}

.upload-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

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

.pager-list {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pager-list li {
    align-items: center;
    color: #606266;
    cursor: pointer;
    display: flex;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.native-video {
    background: #000;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 767px) {
    .static-row {
        display: flex;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .static-col {
        width: 49%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .form-radio-group {
        gap: 12px;
    }
    .col-6 {
        flex: 0 0 50%;
        max-width: 49%;
    }
}

.site-page {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-size: 100%;
}

body {
    margin: 0;
    font-family: Source Han Sans CN, Source Han Sans TW, Source Han Sans KR, Source Han Sans, Noto Sans CJK SC, Noto Sans CJK TC, Noto Sans CJK HK, Noto Sans CJK, Source Han Sans SC, Source Han Sans TC, Source Han Sans HK, Microsoft YaHei, sans-serif;
}

.site-header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid hsla(0, 0%, 82%, .314);
    box-sizing: border-box;
    position: fixed;
    top: 0;
    z-index: 999;
}

.site-header .logo {
    position: relative;
}

.site-header .logo img {
    width: 150px;
    margin-top: 20px;
}

.site-header .logo .mb-logo {
    display: none;
}

.site-header .tab-bottms {
    width: 100%;
}

.site-header .demo-tabs {
    height: 100%;
    display: flex;
    position: relative;
    color: #fff;
}

.site-header .demo-tabs .tabs-name {
    font-size: 20px;
    width: 130px;
    line-height: 100px;
    text-align: center;
    font-size: 16px;
}

.site-header .demo-tabs .tab-bottm {
    width: 130px;
    height: 0;
    border-bottom: 4px solid #296ea2;
    position: absolute;
    bottom: -1px;
}

.site-header .header-icon {
    display: none;
}

.site-header .tabs-drawer {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .259);
    left: 0;
    top: 0;
}

.site-header .tabs-drawer .drawer {
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fff;
    box-sizing: border-box;
    padding-top: 50px;
}

.site-header .tabs-drawer .drawer-logo {
    width: 60%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(0, 0, 0, .259);
}

.site-header .tabs-drawer .drawer-logo img {
    width: 100%;
}

.site-header .header-three-area {
    width: 1400px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    position: fixed;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.site-header.fixed {
    background-color: #FFF;
}

.site-header.fixed .s-logo {
    display: none;
}

.site-header.fixed .f-logo {
    display: block;
}

.site-header.fixed .demo-tabs .tabs-name {
    color: #000;
}

.site-header.fixed .site-icon {
    color: #000;
}

@media (max-width: 767px) {
    .site-header {
        height: 50px;
    }
    .site-header .logo {
        position: relative;
    }
    .site-header .logo img {
        width: 50px;
        margin-top: 15px;
    }
    .site-header .tab-bottms {
        width: 100%;
    }
    .site-header .demo-tabs {
        display: none;
    }
    .site-header .tabs-drawer {
        display: block;
    }
    .site-header .tabs-drawer .tabs-name {
        font-size: 20px;
        width: 100%;
        line-height: 50px;
        text-align: center;
        font-size: 15px;
    }
    .site-header .header-icon {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        top: 15px;
        transform: none;
    }
    .site-header .header-three-area {
        box-sizing: border-box;
        padding: 0 20px;
    }
}

.home-hero {
    width: 100%;
    height: auto;
    position: relative;
}

.home-hero .drawer-logo {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.home-hero .drawer-logo .drawer-text {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    left: 20%;
    top: 30%;
    color: #005284;
}

.home-hero .drawer-logo .drawer-text .text-name {
    font-size: 63px;
    line-height: 140px;
}

.home-hero .drawer-logo .drawer-text .text-name span {
    font-weight: 700;
}

.home-hero .drawer-logo .drawer-text .text {
    font-size: 25px;
    line-height: 40px;
}

.home-hero .drawer-logo .drawer-text .text .wo {
    font-weight: 600;
}

.home-hero .drawer-logo img {
    z-index: 0;
    width: 100%;
    /* position: absolute;
    left: 50%;
    transform: translateX(-50%); */
}

.home-hero .block_h5 {
    display: none;
}

@media (max-width: 767px) {
    .home-hero .drawer-logo .drawer-text {
        left: 10%;
        top: 30%;
        width: 80%;
    }
    .home-hero .drawer-logo .drawer-text .text-name {
        font-size: 28px;
        line-height: 50px;
        margin-bottom: 10px;
        text-shadow: 2px 2px 5px #fdfdfd;
    }
    .home-hero .drawer-logo .drawer-text .text {
        font-size: 12px;
        line-height: 16px;
    }
    .home-hero .drawer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .home-hero .drawer-logo img {
        z-index: 0;
        max-width: none;
        width: 1000px;
    }
    .home-hero .block_h5 {
        display: none;
    }
}

.home-business-list {
    width: 1400px;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 100px;
}

.home-business-list .list-in {
    margin-bottom: 20px;
    position: relative;
    animation: example1-4bb9af90 1s ease-out 0s backwards;
}

@keyframes example1-4bb9af90 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

.home-business-list .list-name {
    width: 100%;
    text-align: center;
    font-size: 40px;
    color: #005186;
    margin-top: 60px;
    line-height: 110px;
    margin-bottom: 20px;
}

.home-business-list .list-item {
    width: 100%;
    height: 334px;
    position: relative;
}

.home-business-list .list-item .item-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.home-business-list .list-item .item-bg {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    background-color: rgba(6, 65, 143, .5);
    box-sizing: border-box;
    transition: height .5s ease-in-out;
    overflow: hidden;
    z-index: 99;
}

.home-business-list .list-item .item-bg .item-value {
    position: absolute;
    left: 40px;
    top: 0;
    transition: top .5s ease-in-out;
}

.home-business-list .list-item .item-bg .item-value .item-name {
    line-height: 80px;
    font-size: 25px;
    position: relative;
    color: #fff;
}

.home-business-list .list-item .item-bg .item-value .item-br {
    width: 20px;
    height: 2px;
    position: relative;
    background-color: #fff;
}

.home-business-list .list-item .item-bg .item-value .item-text {
    font-size: 25px;
    color: #fff;
    line-height: 30px;
    position: relative;
    margin-top: 30px;
}

.home-business-list .list-item:hover .item-bg {
    height: 100%;
}

.home-business-list .list-item:hover .item-bg .item-value {
    top: 130px;
}

@media (max-width: 767px) {
    .home-business-list {
        width: 100%;
        margin-bottom: 20px;
    }
    .home-business-list .list-in {
        margin-bottom: 20px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        transition: left .5s ease-in-out;
        overflow: hidden;
    }
    .home-business-list .list-name {
        width: 100%;
        text-align: center;
        font-size: 20px;
        color: #005186;
        margin-top: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .home-business-list .list-item {
        width: 100%;
        height: 200px;
        position: relative;
        margin-bottom: 20px;
    }
    .home-business-list .list-item .item-img {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
    }
    .home-business-list .list-item .item-bg {
        position: absolute;
        width: 100%;
        height: 50px;
        bottom: 0;
        left: 0;
        background-color: rgba(1, 69, 114, .671);
        box-sizing: border-box;
        transition: height .5s ease-in-out;
        overflow: hidden;
        z-index: 99;
    }
    .home-business-list .list-item .item-bg .item-value {
        position: absolute;
        left: 0;
        top: 0;
        transition: top .5s ease-in-out;
        height: 50px;
    }
    .home-business-list .list-item .item-bg .item-value .item-name {
        line-height: 50px;
        font-size: 15px;
        position: relative;
        color: #fff;
        text-align: center;
    }
    .home-business-list .list-item .item-bg .item-value .item-br {
        width: 20px;
        height: 2px;
        position: relative;
        background-color: #fff;
    }
    .home-business-list .list-item .item-bg .item-value .item-text {
        font-size: 25px;
        color: #fff;
        line-height: 30px;
        position: relative;
        margin-top: 30px;
    }
    .home-business-list .list-item:hover .item-bg {
        height: 100%;
    }
    .home-business-list .list-item:hover .item-bg .item-value {
        top: 130px;
    }
}

.home-news-panel {
    width: 100%;
    box-sizing: border-box;
    background-color: #e4e4e4;
    display: flex;
    justify-content: center;
}

.home-news-panel .list-info {
    width: 1400px;
    height: 570px;
    position: relative;
    box-sizing: border-box;
    padding-top: 50px;
    transition: left 1s ease-in-out;
    overflow: hidden;
}

.home-news-panel .list-info .list-img {
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.home-news-panel .list-info .list-img img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.home-news-panel .list-info .right-bd {
    width: 100%;
    height: 480px;
    overflow-x: auto;
}

.home-news-panel .list-info .right-bd::-webkit-scrollbar {
    display: none;
}

.home-news-panel .list-info .right {
    display: flex;
    box-sizing: border-box;
    margin-left: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #7c7c7c;
    height: auto;
}

.home-news-panel .list-info .right .right-date {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 30px;
    color: #7c7c7c;
    position: relative;
    box-sizing: border-box;
    padding-top: 10px;
}

.home-news-panel .list-info .right .right-date .tiem {
    font-size: 52px;
    line-height: 60px;
    width: 100%;
    text-align: center;
    font-family: MontserratMedium;
}

.home-news-panel .list-info .right .right-date .date {
    font-size: 15px;
    width: 100%;
    text-align: center;
}

.home-news-panel .list-info .right .right-date:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 50px;
    right: 0;
    top: 20px;
    background-color: #7c7c7c;
}

.home-news-panel .list-info .right .right-text {
    color: #7c7c7c;
    width: 500px;
    position: relative;
}

.home-news-panel .list-info .right .right-text .name {
    font-size: 18px;
    margin-bottom: 10px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: MontserratMedium;
}

.home-news-panel .list-info .right .right-text .text {
    font-size: 16px;
    font-family: MontserratMedium;
}

.home-news-panel .list-info .right .right-text .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.home-news-panel .list-info .right-h {
    padding-bottom: 30px;
}

.home-news-panel .list-info .right-h .right-date {
    background-color: #286ea2;
    color: #fff;
    border-radius: 10px;
}

.home-news-panel .list-info .right-h .right-text .name {
    font-size: 20px;
    color: #286ea2;
    -webkit-line-clamp: 2;
    font-family: MontserratMedium;
}

.home-news-panel .list-info .right-h .right-text .text {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: MontserratMedium;
}

.home-news-panel .list-info .right-h .right-text .icon {
    position: absolute;
    right: 0;
    top: 50px;
}

@media (max-width: 767px) {
    .home-news-panel {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        background-color: #f3f3f3;
        display: none;
    }
    .home-news-panel .list-info {
        width: 100%;
        height: auto;
        position: relative;
        transform: translateX(0);
        padding-top: 0;
    }
    .home-news-panel .list-info .list-img {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
    }
    .home-news-panel .list-info .list-img img {
        width: 100%;
        height: auto;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .home-news-panel .list-info .right-bd {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 20px 10px;
    }
    .home-news-panel .list-info .right {
        margin-left: 0;
        margin-bottom: 10px;
        height: auto;
    }
    .home-news-panel .list-info .right .right-date {
        width: 60px;
        height: 60px;
    }
    .home-news-panel .list-info .right .right-date .tiem {
        font-size: 30px;
        line-height: 30px;
        width: 100%;
        text-align: center;
        font-family: MontserratMedium;
    }
    .home-news-panel .list-info .right .right-date .date {
        font-size: 12px;
        width: 100%;
        text-align: center;
        font-family: MontserratMedium;
    }
    .home-news-panel .list-info .right .right-date:after {
        content: "";
        position: absolute;
        width: 2px;
        height: 20px;
        right: 0;
        top: 20px;
        background-color: #7c7c7c;
    }
    .home-news-panel .list-info .right .right-text {
        color: #7c7c7c;
    }
    .home-news-panel .list-info .right .right-text .name {
        font-size: 12px;
    }
    .home-news-panel .list-info .right .right-text .text {
        font-size: 12px;
        margin-bottom: 10px;
        font-family: MontserratMedium;
    }
    .home-news-panel .list-info .right .right-text .icon {
        top: 30px;
    }
    .home-news-panel .list-info .right-h .right-date {
        color: #fff;
    }
    .home-news-panel .list-info .right-h .right-date:after {
        content: "";
        background-color: hsla(0, 0%, 49%, 0);
    }
    .home-news-panel .list-info .right-h .right-text .name {
        font-size: 14px;
        color: #286ea2;
        -webkit-line-clamp: 2;
    }
    .home-news-panel .list-info .right-h .right-text .text {
        font-size: 12px;
        font-family: MontserratMedium;
    }
}

.home-partners {
    width: 1400px;
    height: 250px;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 100px 0;
    overflow: hidden;
}

.home-partners .list-in {
    position: absolute;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.home-partners .list-in:hover {
    animation-play-state: paused;
}

.home-partners .top {
    top: 130px;
}

.home-partners .list-item {
    width: 100%;
    height: 108px;
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
}

.home-partners .list-item .item-img {
    width: 100%;
}

@media (max-width: 767px) {
    .home-partners {
        width: 100%;
        box-sizing: border-box;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 30px 0;
        overflow-x: auto;
        height: 100px;
    }
    .home-partners .top {
        top: 0;
    }
    .home-partners .list-in {
        margin-bottom: 20px;
        position: relative;
        transform: none;
        transition: none;
        display: flex;
    }
    .home-partners .list-item {
        width: 100%;
        height: 40px;
        flex-shrink: 0;
        margin-right: 20px;
        box-sizing: border-box;
        padding-top: 0;
    }
    .home-partners .list-item .item-img {
        width: 100%;
    }
}

@font-face {
    font-family: SourceHanSansCNBold;
    src: url(../fonts/SourceHanSansCN-Bold.4278d4c3.otf);
}

.site-footer {
    width: 100%;
    height: 300px;
    background-color: #f3f3f3;
    position: relative;
    display: flex;
    justify-content: center;
}

.site-footer .footerPage {
    width: 1400px;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 50px 0;
}

.site-footer .footerPage .leftdlist {
    display: flex;
}

.site-footer .footerPage .leftdlist .is_hover {
    color: #7c7c7c;
    margin-bottom: 20px;
    margin-right: 20px;
    width: 150px;
}

.site-footer .footerPage .leftdlist .is_hover .logo_0 {
    background: url(../images/logo_0_1.6cc98c38.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover .logo_1 {
    background: url(../images/logo_1_1.b719d3e0.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover .logo_2 {
    background: url(../images/logo_2_1.71f23b5a.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover .logo_3 {
    background: url(../images/logo_3_1.5ee1e369.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover:hover {
    color: #286ea2;
}

.site-footer .footerPage .leftdlist .is_hover:hover .logo_0 {
    background: url(../images/logo_0_0.4b27e618.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover:hover .logo_1 {
    background: url(../images/logo_1_0.8ae72656.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover:hover .logo_2 {
    background: url(../images/logo_2_0.563f87fb.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .is_hover:hover .logo_3 {
    background: url(../images/logo_3_0.9dcd8837.png) no-repeat;
    background-size: 120px;
    height: 80px;
}

.site-footer .footerPage .leftdlist .media {
    display: block;
}

.site-footer .footerPage .leftdlist .left-text {
    margin-right: 60px;
}

.site-footer .footerPage .leftdlist .left-text .flex-text {
    display: flex;
    flex-wrap: wrap;
    width: 700px;
}

.site-footer .footerPage .leftdlist .left-text .left-name {
    font-weight: 900;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: SourceHanSansCN;
    display: block;
}

.site-footer .footerPage .leftdlist .left-text .name_color {
    color: #323232;
}

.site-footer .footerPage .leftdlist .left-text .left-name-border {
    position: relative;
}

.site-footer .footerPage .leftdlist .left-text .left-name-border:after {
    content: "";
    width: calc(100% - 170px);
    border-bottom: 1px dashed #7c7c7c;
    position: absolute;
    top: 10px;
    left: 80px;
}

.site-footer .footerPage .leftdlist .left-text .list_value_new {
    font-family: SourceHanSansCNBold;
    position: relative;
}

.site-footer .footerPage .leftdlist .left-text .list_value_new:after {
    content: "";
    display: block;
    width: 1px;
    height: 42px;
    background-color: #000;
    position: absolute;
    right: 0;
    top: 0;
}

.site-footer .footerPage .leftdlist .left-text .list_value_news {
    font-family: SourceHanSansCNBold;
    position: relative;
}

.site-footer .footerPage .leftdlist .left-text .list_value_news:after {
    content: "";
    display: block;
    width: 0;
    height: 42px;
}

.site-footer .footerPage .leftdlist .left-text .left-names {
    font-weight: 900;
    font-size: 14px;
    font-family: SourceHanSansCN;
    margin-bottom: 8px;
    color: #7c7c7c;
    display: block;
}

.site-footer .footerPage .leftdlist .left-text .list_text {
    font-size: 12px;
    line-height: 16px;
}

.site-footer .footerPage .leftdlist .left-text-none {
    margin: 0;
}

.site-footer .footerPage .right .right-value {
    display: flex;
    width: 200px;
    margin-bottom: 20px;
}

.site-footer .footerPage .right .right-value .img {
    width: 80px;
    height: 80px;
    position: relative;
    top: -20px;
    left: -20px;
    margin-bottom: -20px;
}

.site-footer .footerPage .right .right-value .img img {
    width: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
}

.site-footer .footerPage .right .right-value .img .ma {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 3px;
    border-radius: 5px;
    transition: opacity .5s ease-in-out;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    display: none;
}

.site-footer .footerPage .right .right-value .img:hover img {
    width: 100%;
    display: none;
}

.site-footer .footerPage .right .right-value .img:hover .ma {
    display: block;
}

.site-footer .footerPage .right .text {
    font-size: 14px;
    line-height: 30px;
    font-family: SourceHanSansCN;
    font-weight: 800;
}

.site-footer .footerPage .right .message {
    font-size: 12px;
    margin-top: 50px;
    color: #676767;
}

@media (max-width: 767px) {
    .site-footer {
        width: 100%;
        height: auto;
        background-color: #f3f3f3;
        position: relative;
        display: block;
        justify-content: center;
    }
    .site-footer .footerPage {
        width: 100%;
        display: block;
        justify-content: space-between;
        box-sizing: border-box;
        padding: 20px 0;
    }
    .site-footer .footerPage .leftdlist {
        display: block;
        justify-content: space-around;
        text-align: center;
    }
    .site-footer .footerPage .leftdlist .is_hover {
        color: #7c7c7c;
        margin-bottom: 20px;
        width: 40%;
        margin-right: 0;
    }
    .site-footer .footerPage .leftdlist .is_hover:hover {
        color: #286ea2;
    }
    .site-footer .footerPage .leftdlist .is_hover .list_value_new {
        font-size: 12px;
        background-position: 50%;
    }
    .site-footer .footerPage .leftdlist .is_hover .list_value_new:after,
    .site-footer .footerPage .leftdlist .is_hover .list_value_news:after {
        content: "";
        width: 0;
    }
    .site-footer .footerPage .leftdlist .media {
        display: none;
    }
    .site-footer .footerPage .leftdlist .left-text {
        margin-right: 0;
    }
    .site-footer .footerPage .leftdlist .left-text .h_flex {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .site-footer .footerPage .leftdlist .left-text .h_flex .left-names {
        width: 30%;
    }
    .site-footer .footerPage .leftdlist .left-text .flex-text {
        display: flex;
        width: 100%;
        justify-content: space-around;
    }
    .site-footer .footerPage .leftdlist .left-text .left-name {
        font-weight: 900;
        font-size: 16px;
        margin-bottom: 20px;
        font-family: SourceHanSansCN;
    }
    .site-footer .footerPage .leftdlist .left-text .left-name-border:after {
        content: "";
        width: calc(100% - 170px);
        border-bottom: 1px dashed #7c7c7c;
        position: absolute;
        top: 30px;
        left: 80px;
    }
    .site-footer .footerPage .right .right-value {
        display: none!important;
        display: flex;
        width: 100%;
        justify-content: space-around;
        margin-bottom: 10px;
    }
    .site-footer .footerPage .right .right-value .img {
        width: 40px;
        position: relative;
    }
    .site-footer .footerPage .right .right-value .img img {
        width: 100%;
    }
    .site-footer .footerPage .right .right-value .img .ma {
        position: absolute;
        width: 100px;
        height: 100px;
        background-color: #fff;
        left: -100px;
        top: -50px;
        display: none;
        box-sizing: border-box;
        padding: 10px;
    }
    .site-footer .footerPage .right .right-value .img:hover .ma {
        display: block;
    }
    .site-footer .footerPage .right .text {
        font-size: 14px;
        line-height: 30px;
        text-align: center;
        font-family: SourceHanSansCN;
        font-weight: 800;
    }
    .site-footer .footerPage .right .message {
        font-size: 12px;
        margin-top: 20px;
        color: #676767;
        text-align: center;
    }
}

.about-content .situation {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 90px 0;
    padding-bottom: 0;
}

.about-content .situation .situation—value {
    flex: 6;
}

.about-content .situation .situation—value .situation—text {
    height: 400px;
    position: relative;
    animation: example1-68786048 1s ease-out 0s backwards;
}

.about-content .situation .situation—value .situation—text .text {
    font-size: 39px;
    line-height: 55px;
    margin-bottom: 30px;
}

.about-content .situation .situation—value .situation—text .texts {
    display: none;
}

.about-content .situation .situation—value .situation—text .message {
    font-size: 22px;
    line-height: 29px;
}

.about-content .situation .situation—value .situation—text .messages {
    display: none;
}

.about-content .situation .situation—value .situation—text .span {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 28px;
}

@keyframes example1-68786048 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

.about-content .situation .situation—value:first-child {
    flex: 4;
    margin-right: 20px;
}

.about-content .img-page {
    width: 1400px;
    margin: 0 auto;
    margin-bottom: 146px;
    position: relative;
    animation: example1-68786048 1s ease-out 0s backwards;
}

.about-content .img-page .img {
    width: 100%;
    height: 250px;
}

.about-content .img-page .imgMax {
    height: 525px;
}

@media (max-width: 767px) {
    .about-content .situation {
        width: 100%;
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
        padding-top: 30px;
    }
    .about-content .situation .situation—value {
        width: 100%;
    }
    .about-content .situation .situation—value .situation—text {
        height: auto;
        margin-bottom: 20px;
    }
    .about-content .situation .situation—value .situation—text .text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
        text-align: center;
        display: none;
    }
    .about-content .situation .situation—value .situation—text .message {
        font-size: 12px;
        text-align: center;
        display: none;
    }
    .about-content .situation .situation—value .situation—text .texts {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 10px;
        text-align: center;
        display: block;
    }
    .about-content .situation .situation—value .situation—text .messages {
        font-size: 12px;
        text-align: center;
        display: block;
    }
    .about-content .situation .situation—value .situation—text .span {
        font-size: 14px;
        display: inline-block;
        margin-bottom: 30px;
        box-sizing: border-box;
        padding: 0 20px;
    }
    .about-content .situation .situation—value:first-child {
        width: 100%;
        margin-right: 0;
    }
    .about-content .img-page {
        width: 100%;
        margin-bottom: 0;
    }
    .about-content .img-page .img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

.about-banner {
    width: 100%;
    overflow: hidden;
}

.about-banner .vaski-img {
    width: 100%;
}

.about-banner .vaski-bg {
    width: 100%;
    border-bottom: 2px solid #f3f3f3;
}

.about-banner .vaski-bg .vaski-tap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
}

.about-banner .vaski-bg .vaski-tap .vaski-left {
    font-size: 15px;
    display: flex;
    align-items: center;
}

.about-banner .vaski-bg .vaski-tap .vaski-left .text {
    color: #7c7c7c;
}

.about-banner .vaski-bg .vaski-tap .vaski-left .icon {
    margin: 0 10px;
}

.about-banner .vaski-bg .vaski-tap .demo-tabs {
    height: 100%;
    display: flex;
    position: relative;
    color: #7c7c7c;
}

.about-banner .vaski-bg .vaski-tap .demo-tabs .tabs-name-bar {
    font-size: 20px;
    width: 130px;
    line-height: 80px;
    text-align: center;
    font-size: 15px;
}

.about-banner .vaski-bg .vaski-tap .demo-tabs .tab-bottm {
    width: 130px;
    height: 0;
    border-bottom: 4px solid #296ea2;
    position: absolute;
    bottom: -3px;
}

@media (max-width: 767px) {
    .about-banner .vaski-img {
        width: 250%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .about-banner .vaski-bg {
        width: 100%;
        border-bottom: 3px solid hsla(0, 0%, 82%, .314);
    }
    .about-banner .vaski-bg .vaski-tap {
        width: 100%;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }
    .about-banner .vaski-bg .vaski-tap .vaski-left {
        font-size: 16px;
        display: flex;
        margin-left: 20px;
        height: 40px;
    }
    .about-banner .vaski-bg .vaski-tap .vaski-left .text {
        color: #666;
    }
    .about-banner .vaski-bg .vaski-tap .vaski-left .icon {
        margin: 0 10px;
    }
    .about-banner .vaski-bg .vaski-tap .demo-tabs {
        height: 100%;
        display: flex;
        position: relative;
        color: #7c7c7c;
        justify-content: space-between;
    }
    .about-banner .vaski-bg .vaski-tap .demo-tabs .tabs-name-bar {
        font-size: 20px;
        width: 60px;
        line-height: 50px;
        text-align: center;
        font-size: 12px;
    }
    .about-banner .vaski-bg .vaski-tap .demo-tabs .tab-bottm {
        width: 60px;
        height: 0;
        border-bottom: 4px solid #296ea2;
        position: absolute;
        bottom: -3px;
    }
}

.page-vaski .vaski {
    width: 100%;
    overflow: hidden;
}

@keyframes example2-7904df46 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes example1-7904df46 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 60%;
        opacity: 1;
    }
}

@font-face {
    font-family: SourceHanSansCN;
    src: url(../fonts/SourceHanSansCN-Normal.2dd90385.otf);
}

@keyframes example1-49649ec0 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 50%;
        opacity: 1;
    }
}

@keyframes example1-1ecbde06 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

@font-face {
    font-family: MontserratMedium;
    src: url(../fonts/Montserrat-Medium.255dd485.otf);
}

@keyframes example1-7679a096 {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

@keyframes example1-dab4249a {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

.vaski {
    width: 100%;
    overflow: hidden;
}

.vaski .vaski-img {
    width: 100%;
}

.vaski .vaski-bg {
    width: 100%;
    border-bottom: 2px solid #f3f3f3;
}

.vaski .vaski-bg .vaski-tap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
}

.vaski .vaski-bg .vaski-tap .vaski-left {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.vaski .vaski-bg .vaski-tap .vaski-left .text {
    color: #666;
}

.vaski .vaski-bg .vaski-tap .vaski-left .icon {
    margin: 0 10px;
}

.vaski .vaski-bg .vaski-tap .demo-tabs {
    height: 100%;
    display: flex;
    position: relative;
    color: #000;
}

.vaski .vaski-bg .vaski-tap .demo-tabs .tabs-name-bars {
    font-size: 20px;
    width: 130px;
    line-height: 80px;
    text-align: center;
    font-size: 16px;
    position: relative;
    color: #000;
}

.vaski .vaski-bg .vaski-tap .demo-tabs .tabs-name-bars.on:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 4px solid #409eff;
    position: absolute;
    bottom: -3px;
}

@media (max-width: 767px) {
    .vaski .vaski-img {
        width: 250%;
        max-width: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .vaski .vaski-bg {
        width: 100%;
        border-bottom: 2px solid #f3f3f3;
    }
    .vaski .vaski-bg .vaski-tap {
        width: 100%;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }
    .vaski .vaski-bg .vaski-tap .vaski-left {
        font-size: 16px;
        display: flex;
        margin-left: 20px;
        height: 40px;
    }
    .vaski .vaski-bg .vaski-tap .vaski-left .text {
        color: #666;
    }
    .vaski .vaski-bg .vaski-tap .vaski-left .icon {
        margin: 0 10px;
    }
    .vaski .vaski-bg .vaski-tap .demo-tabs {
        height: 100%;
        display: flex;
        position: relative;
        color: #000;
        justify-content: space-between;
    }
    .vaski .vaski-bg .vaski-tap .demo-tabs .tabs-name-bars {
        font-size: 20px;
        width: 60px;
        line-height: 50px;
        text-align: center;
        font-size: 12px;
    }
    .vaski .vaski-bg .vaski-tap .demo-tabs .tab-bottm {
        width: 60px;
        height: 0;
        border-bottom: 4px solid #409eff;
        position: absolute;
        bottom: -3px;
    }
}

.business-content {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.business-content .static-carousel .carousel-indicators {
    left: 100%;
    transform: translateX(-110%);
    display: flex;
}

.business-content .static-carousel .carousel-indicators .carousel-button {
    background-color: #fff;
    opacity: 1;
    border-radius: 0;
    height: 4px;
    width: 60px;
}

.business-content .static-carousel .carousel-indicators .is-active .carousel-button {
    background-color: #409eff;
}

.business-content .culture—value {
    width: 1450px;
    box-sizing: border-box;
    margin: 0 auto;
    position: relative;
    display: flex;
    margin-top: 60px;
    margin-bottom: 60px;
    /* padding-left: 60px; */
    background: url(../images/service-bg-icon.85acb9b5.png) no-repeat;
    background-position: 0 450px;
    background-size: 600px;
    /* background-color: #f3f3f3; */
}

.business-content .culture—value .culture—text {
    flex: 1;
    box-sizing: border-box;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 60px;
    background-color: #f3f3f3;
}

.business-content .culture—value .culture—text .btn {
    width: 120px;
    height: 40px;
    background-color: #296ea2;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    margin-top: 80px;
}

.business-content .culture—value .culture—text .text {
    font-size: 33px;
    line-height: 50px;
    margin-bottom: 50px;
    color: #2a6e9f;
    position: relative;
}

.business-content .culture—value .culture—text .text:after {
    content: "";
    width: 30px;
    border-bottom: 2px solid #2a6e9f;
    position: absolute;
    left: 0;
    bottom: -20px;
}

.business-content .culture—value .culture—text .message {
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: #7c7c7c;
    margin-bottom: 20px;
}

.business-content .culture—value .right-page {
    z-index: 99;
    box-sizing: border-box;
    width: 850px;
    position: relative;
    top: unset;
    left: unset;
}

.business-content .culture—value .right-page .right-img {
    width: 850px;
    height: 580px;
}

@media (max-width: 767px) {
    .business-content {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        padding-bottom: 10px;
    }
    .business-content .culture—value {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
        display: block;
        background-image: none;
    }
    .business-content .culture—value .culture—text {
        width: 100%;
        text-align: left;
        padding: 20px;
    }
    .business-content .culture—value .culture—text .btn {
        margin: 0 auto;
    }
    .business-content .culture—value .culture—text .text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 2%;
        color: #2a6e9f;
        text-align: center;
    }
    .business-content .culture—value .culture—text .text:after {
        border-bottom: none;
    }
    .business-content .culture—value .culture—text .message {
        font-size: 12px;
        font-weight: 500;
        text-indent: 2em;
        line-height: 30px;
        color: #2a6e9f;
    }
    .business-content .culture—value .right-page {
        z-index: 99;
        box-sizing: border-box;
        color: #fff;
        padding: 0;
        width: 100%;
        height: auto;
        top: 0;
        margin-top: 0;
    }
    .business-content .culture—value .right-page .right-img {
        width: 100%;
        height: auto;
    }
}

.page-business .vaski {
    width: 100%;
    overflow: hidden;
}

.news-list-content {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    animation: example1-41d7811f 1s ease-out 0s backwards;
}

@keyframes example1-41d7811f {
    0% {
        left: 50px;
        opacity: 0;
    }
    to {
        left: 0;
        opacity: 1;
    }
}

.news-list-content .pagination {
    margin: 0 auto;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.news-list-content .pagination .btn {
    width: 15px;
    height: 30px;
}

.news-list-content .pagination .btna {
    background: url(../images/inline-347d1b72f55c.png) no-repeat;
    margin-right: 15px;
    background-position: 0 10px;
}

.news-list-content .pagination .btnb {
    background: url(../images/inline-a74c16ec2db1.png) no-repeat;
    margin-right: 0;
    margin-left: 15px;
    background-position: 0 10px;
}

.news-list-content .pagination .pager-list li {
    border-radius: 50%;
    background-color: hsla(0, 0%, 95%, 0);
}

.news-list-content .pagination .pager-list .is-active {
    background-color: #296ea2;
}

.news-list-content .pagination .btn-next,
.news-list-content .pagination .btn-next:disabled,
.news-list-content .pagination .btn-prev,
.news-list-content .pagination .btn-prev:disabled {
    background-color: #fff;
}

.news-list-content .news-item {
    width: 32%;
    height: 562px;
    background-color: #f3f3f3;
    flex-shrink: 0;
    margin-bottom: 50px;
    margin-right: 2%;
    transition: background-color .5s ease-in-out;
}

.news-list-content .news-item:nth-of-type(3n) {
    margin-right: 0;
}

.news-list-content .news-item .img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-list-content .news-item .img img {
    width: 100%;
}

.news-list-content .news-item .value {
    box-sizing: border-box;
    padding: 30px;
}

.news-list-content .news-item .value .name {
    font-size: 24px;
    color: #7c7c7c;
    margin-bottom: 24px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-content .news-item .value .text {
    font-size: 15px;
    color: #7c7c7c;
    margin-bottom: 30px;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-list-content .news-item:hover {
    background-color: #296ea2;
}

.news-list-content .news-item:hover .img {
    width: 100%;
    height: 200px;
}

.news-list-content .news-item:hover .value {
    box-sizing: border-box;
    padding: 30px;
}

.news-list-content .news-item:hover .value .name,
.news-list-content .news-item:hover .value .text {
    color: #fff;
}

@media (max-width:1440px) {
    .news-list-content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .news-list-content {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        box-sizing: border-box;
        padding: 0 20px;
        padding-top: 30px;
        padding-bottom: 80px;
        position: relative;
    }
    .news-list-content .pagination {
        left: 50%;
        transform: translateX(-50%);
    }
    .news-list-content .pagination .pager-list li {
        border-radius: 50%;
        background-color: hsla(0, 0%, 95%, 0);
    }
    .news-list-content .pagination .pager-list .is-active {
        background-color: #296ea2;
    }
    .news-list-content .pagination .btn-next,
    .news-list-content .pagination .btn-next:disabled,
    .news-list-content .pagination .btn-prev,
    .news-list-content .pagination .btn-prev:disabled {
        background-color: #fff;
    }
    .news-list-content .news-item {
        width: 170px;
        height: 200px;
        background-color: #f3f3f3;
        flex-shrink: 0;
        margin-bottom: 20px;
        margin-right: 5px;
    }
    .news-list-content .news-item .img {
        width: 100%;
        height: 60px;
    }
    .news-list-content .news-item .value {
        box-sizing: border-box;
        padding: 10px;
    }
    .news-list-content .news-item .value .name {
        font-size: 14px;
        -webkit-line-clamp: 1;
    }
    .news-list-content .news-item .value .name,
    .news-list-content .news-item .value .text {
        color: #7c7c7c;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .news-list-content .news-item .value .text {
        font-size: 12px;
        -webkit-line-clamp: 3;
    }
    .news-list-content .news-item:hover {
        background-color: #296ea2;
    }
    .news-list-content .news-item:hover .img {
        width: 100%;
        height: 200px;
    }
    .news-list-content .news-item:hover .value {
        box-sizing: border-box;
        padding: 30px;
    }
    .news-list-content .news-item:hover .value .name,
    .news-list-content .news-item:hover .value .text {
        color: #fff;
    }
}

.subpage-banner {
    width: 100%;
    overflow: hidden;
}

.subpage-banner .vaski-img {
    width: 100%;
}

.subpage-banner .vaski-bg {
    width: 100%;
    border-bottom: 2px solid #f3f3f3;
}

.subpage-banner .vaski-bg .vaski-tap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    height: 80px;
}

.subpage-banner .vaski-bg .vaski-tap .vaski-left {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.subpage-banner .vaski-bg .vaski-tap .vaski-left .text {
    color: #666;
}

.subpage-banner .vaski-bg .vaski-tap .vaski-left .icon {
    margin: 0 10px;
}

@media (max-width: 767px) {
    .subpage-banner .vaski-img {
        width: 250%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .subpage-banner .vaski-bg {
        width: 100%;
        border-bottom: 2px solid #f3f3f3;
    }
    .subpage-banner .vaski-bg .vaski-tap {
        width: 100%;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
        height: auto;
    }
    .subpage-banner .vaski-bg .vaski-tap .vaski-left {
        font-size: 16px;
        display: flex;
        margin-left: 20px;
    }
    .subpage-banner .vaski-bg .vaski-tap .vaski-left .text {
        color: #666;
    }
    .subpage-banner .vaski-bg .vaski-tap .vaski-left .icon {
        margin: 0 10px;
    }
}

.page-news-list .vaski {
    width: 100%;
    overflow: hidden;
}

.news-detail-content {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-content: flex-start;
}

.news-detail-content .left {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 50px;
    color: #7c7c7c;
    position: relative;
    box-sizing: border-box;
    padding-top: 10px;
    background-color: #f3f3f3;
    border-radius: 20px;
}

.news-detail-content .left .time {
    font-size: 40px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.news-detail-content .left .date {
    font-size: 18px;
    width: 100%;
    text-align: center;
}

.news-detail-content .right {
    position: relative;
}

.news-detail-content .right .news-name {
    width: 780px;
    font-size: 20px;
    color: #286ea2;
    margin-bottom: 50px;
}

.news-detail-content .right .news-text {
    width: 780px;
    font-size: 15px;
    color: #7d7d7d;
    margin-bottom: 30px;
}

.news-detail-content .right .news-text-name {
    width: 780px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(0, 0, 0, .878);
    margin-bottom: 30px;
}

.news-detail-content .right .news-img {
    width: 780px;
}

.news-detail-content .right .news-img img {
    width: 100%;
    box-shadow: 30px 30px 0 #e9f0f6;
}

.news-detail-content .right .news-img .message {
    font-size: 15px;
    color: #7d7d7d;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.news-detail-content .right .news-user {
    width: 780px;
    background-color: #e9f0f6;
    box-sizing: border-box;
    padding: 0 60px;
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 50px;
}

.news-detail-content .right .news-user .user-title {
    position: absolute;
    color: #004c8b;
    left: 60px;
    font-size: 20px;
    top: -15px;
    font-weight: 600;
}

.news-detail-content .right .news-user .text {
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 10px;
}

.news-detail-content .right .no-btn {
    width: 100px;
    height: 30px;
    color: #fff;
    background-color: #286ea2;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 767px) {
    .news-detail-content {
        width: 100%;
        margin: 0 auto;
        display: flex;
        box-sizing: border-box;
        justify-content: flex-start;
        padding: 50px 20px;
    }
    .news-detail-content .left {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        color: #7c7c7c;
        position: relative;
        box-sizing: border-box;
        padding-top: 10px;
        background-color: #f3f3f3;
        border-radius: 5px;
        position: absolute;
    }
    .news-detail-content .left .time {
        font-size: 20px;
        line-height: 20px;
        width: 100%;
        text-align: center;
        font-weight: 600;
    }
    .news-detail-content .left .date {
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    .news-detail-content .right {
        position: relative;
        width: 100%;
    }
    .news-detail-content .right .news-name {
        width: 100%;
        font-size: 20px;
        color: #286ea2;
        margin-bottom: 50px;
        box-sizing: border-box;
        padding-left: 56px;
    }
    .news-detail-content .right .news-text {
        width: 100%;
        font-size: 15px;
        color: #7d7d7d;
        margin-bottom: 30px;
    }
    .news-detail-content .right .news-img {
        width: 100%;
    }
    .news-detail-content .right .news-img img {
        width: 100%;
        box-shadow: 10px 10px 0 #e9f0f6;
    }
    .news-detail-content .right .news-img .message {
        font-size: 15px;
        color: #7d7d7d;
        margin-top: 40px;
        margin-bottom: 30px;
        text-align: center;
    }
    .news-detail-content .right .news-user {
        width: 100%;
        background-color: #e9f0f6;
        box-sizing: border-box;
        padding: 0 10px;
        padding-top: 10px;
        padding-bottom: 10px;
        position: relative;
        margin-bottom: 30px;
    }
    .news-detail-content .right .news-user .user-title {
        position: absolute;
        color: #004c8b;
        left: 60px;
        font-size: 20px;
        top: -15px;
        font-weight: 600;
    }
    .news-detail-content .right .news-user .text {
        font-size: 16px;
        color: #7d7d7d;
        margin-bottom: 10px;
    }
    .news-detail-content .right .no-btn {
        width: 100px;
        height: 30px;
        color: #fff;
        background-color: #286ea2;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
}

.page-news-detail .vaski {
    width: 100%;
    overflow: hidden;
}

.contact-content .bottom-img {
    width: 1400px;
    margin: 0 auto;
    position: relative;
}

.contact-content .bottom-img img {
    width: 100%;
    margin: 50px 0;
}

.contact-content .bottom-img .bottom-right {
    position: absolute;
    width: 55%;
    height: 300px;
    right: 0;
    top: 70px;
}

.contact-content .bottom-img .bottom-right .name {
    font-size: 24px;
    color: #fff;
    border-bottom: 2px solid #fff;
    line-height: 80px;
    margin-bottom: 40px;
}

.contact-content .bottom-img .bottom-right .text {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}

.contact-content .bottom-img .bottom-right .btn {
    margin-top: 50px;
    width: 150px;
    height: 40px;
    font-size: 16px;
    background: #fff;
    color: #286ea2;
}

.contact-content .liaison-map {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    position: relative;
    margin-top: 50px;
}

.contact-content .liaison-map .name {
    font-size: 25px;
    line-height: 50px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid hsla(0, 0%, 46%, .588);
    color: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-content .liaison-map .left {
    width: 580px;
    box-sizing: border-box;
    padding-right: 60px;
    position: relative;
}

.contact-content .liaison-map .left .img-info {
    letter-spacing: 1px;
}

.contact-content .liaison-map .left .left-icon {
    display: flex;
    width: 100%;
    margin: 30px 0;
}

.contact-content .liaison-map .left .left-icon .hovericon {
    position: relative;
}

.contact-content .liaison-map .left .left-icon .hovericon .ma {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #fff;
    left: -200px;
    top: -200px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 5px;
    transition: opacity .5s ease-in-out;
    display: none;
}

.contact-content .liaison-map .left .left-icon .hovericon:hover .ma {
    display: block;
}

.contact-content .liaison-map .left .left-icon .img {
    width: 60px;
    margin-right: 20px;
}

.contact-content .liaison-map .left .left-icon .img img {
    width: 100%;
}

.contact-content .liaison-map .left .message {
    font-size: 16px;
    color: #000;
    margin-bottom: 50px;
}

.contact-content .liaison-map .left .input-name {
    font-size: 16px;
    color: #7c7c7c;
    line-height: 40px;
    margin-top: 20px;
}

.contact-content .liaison-map .left .input {
    width: calc(100% - 50px);
    position: relative;
}

.contact-content .liaison-map .left .input .value {
    height: 40px;
}

.contact-content .liaison-map .left .input .textarea {
    height: 100px;
}

.contact-content .liaison-map .left .input:after {
    content: "*";
    position: absolute;
    font-size: 20px;
    color: red;
    top: 50%;
    transform: translateY(-40%);
    right: -30px;
}

.contact-content .liaison-map .left .btn {
    width: 200px;
    height: 50px;
    font-size: 20px;
    background: #7c7c7c;
    color: #fff;
    line-height: 50px;
    text-align: center;
}

.contact-content .liaison-map .right {
    flex: 2;
    position: relative;
}

.contact-content .liaison-map .right .container {
    position: relative;
    width: 850px;
    height: 620px;
    margin-top: 30px;
}

.contact-content .liaison-map .map-text-ccc {
    width: 350px;
    height: 120px;
    background: hsla(0, 0%, 100%, .769);
    position: absolute;
    top: 120px;
    right: -400px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    z-index: 99;
}

.contact-content .liaison-map .map-text-ccc .text {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-content .liaison-map .map-text-ccc .img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .contact-content .bottom-img {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        position: relative;
        margin-top: 20px;
        display: flex;
        flex-flow: column;
        overflow: hidden;
    }
    .contact-content .bottom-img img {
        max-width: none;
        width: 300%;
        margin: 0 0;
        order: 1;
    }
    .contact-content .bottom-img .bottom-right {
        width: 100%;
        height: 200px;
        background-color: #286ea2;
        box-sizing: border-box;
        padding: 20px;
        order: 2;
        position: relative;
        top: auto;
    }
    .contact-content .bottom-img .bottom-right .name {
        font-size: 20px;
        color: #fff;
        border-bottom: 1px solid #fff;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .contact-content .bottom-img .bottom-right .text {
        font-size: 12px;
        color: #fff;
        line-height: 20px;
    }
    .contact-content .bottom-img .bottom-right .btn {
        margin-top: 20px;
        width: 100px;
        height: 30px;
        font-size: 14px;
        background: #fff;
        color: #286ea2;
    }
    .contact-content .liaison-map {
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
        box-sizing: border-box;
        padding: 0 20px;
    }
    .contact-content .liaison-map .name {
        font-size: 20px;
        line-height: 50px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid hsla(0, 0%, 46%, .588);
        color: #181818;
        display: none;
    }
    .contact-content .liaison-map .left {
        width: 100%;
        box-sizing: border-box;
        padding-right: 0;
    }
    .contact-content .liaison-map .left .left-icon {
        display: flex;
        width: 100%;
        margin: 30px 0;
        justify-content: space-around;
    }
    .contact-content .liaison-map .left .left-icon .img {
        width: 50px;
        margin-right: 20px;
    }
    .contact-content .liaison-map .left .left-icon .img img {
        width: 100%;
    }
    .contact-content .liaison-map .left .message {
        font-size: 20px;
        color: #7c7c7c;
        margin-bottom: 20px;
        text-align: center;
    }
    .contact-content .liaison-map .left .input-name {
        font-size: 12px;
        color: #7c7c7c;
        line-height: 40px;
        margin-top: 20px;
    }
    .contact-content .liaison-map .left .input {
        width: 100%;
        position: relative;
    }
    .contact-content .liaison-map .left .input .value {
        height: 30px;
    }
    .contact-content .liaison-map .left .input .textarea {
        height: 100px;
    }
    .contact-content .liaison-map .left .input:after {
        content: "";
        display: none;
    }
    .contact-content .liaison-map .left .btn {
        width: 100%;
        height: 50px;
        font-size: 20px;
        background: #7c7c7c;
        color: #fff;
        line-height: 50px;
        margin-top: 30px;
        text-align: center;
    }
    .contact-content .liaison-map .right {
        flex: 2;
        position: relative;
    }
    .contact-content .liaison-map .right .container {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 30px;
    }
    .contact-content .liaison-map .map-text-ccc {
        width: 100%;
        height: 80px;
        background: hsla(0, 0%, 100%, .769);
        position: relative;
        top: 0;
        right: 0;
        border-radius: 10px;
        box-sizing: border-box;
        padding: 0;
        z-index: 99;
        margin-top: 30px;
    }
    .contact-content .liaison-map .map-text-ccc .text {
        font-size: 16px;
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    .contact-content .liaison-map .map-text-ccc .img {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }
}

.contact-banner {
    width: 100%;
    overflow: hidden;
}

.contact-banner .vaski-img {
    width: 100%;
}

.contact-banner .vaski-bg {
    width: 100%;
    border-bottom: 2px solid #f3f3f3;
}

.contact-banner .vaski-bg .vaski-tap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f3f3;
    height: 80px;
}

.contact-banner .vaski-bg .vaski-tap .vaski-left {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-banner .vaski-bg .vaski-tap .vaski-left .text {
    color: #666;
}

.contact-banner .vaski-bg .vaski-tap .vaski-left .icon {
    margin: 0 10px;
}

@media (max-width: 767px) {
    .contact-banner .vaski-img {
        width: 250%;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-banner .vaski-bg {
        width: 100%;
        border-bottom: 2px solid #f3f3f3;
    }
    .contact-banner .vaski-bg .vaski-tap {
        width: 100%;
        margin: 0 auto;
        display: block;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f3f3f3;
    }
    .contact-banner .vaski-bg .vaski-tap .vaski-left {
        font-size: 16px;
        display: flex;
        margin-left: 20px;
        height: 80px;
    }
    .contact-banner .vaski-bg .vaski-tap .vaski-left .text {
        color: #666;
    }
    .contact-banner .vaski-bg .vaski-tap .vaski-left .icon {
        margin: 0 10px;
    }
}

.page-contact .vaski {
    width: 100%;
    overflow: hidden;
}

.about-layout .img {
    margin: 0;
    display: block;
    z-index: 1;
}

.about-layout .click,
.about-layout .img {
    width: 100%;
    position: relative;
}

.about-layout .click .start-play-none {
    bottom: 20px;
}

.about-layout .click .start-play-none,
.about-layout .click .start-play {
    cursor: pointer;
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
}

.about-layout .click .start-play {
    width: 63px;
    height: 63px;
    opacity: .7;
    border-radius: 50%;
    bottom: 0;
}

.about-layout .click .start-play:after {
    content: "";
}

.about-layout .click .player-video {
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about-layout .click .native-video {
    background: #000;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-layout .click .btn_list {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding-top: 60px;
}

.about-layout .click .btn_list .btn {
    width: 50%;
    height: 200px;
}

.about-layout .click .btn_list .btn:nth-child(3),
.about-layout .click .btn_list .btn:nth-child(4) {
    height: 190px;
}

.demo-tabs .tabs-name,
.header-icon,
#footer .left-name,
#footer .left-names,
.news-list .news-item,
#news-list .right {
    cursor: pointer;
}

a.tabs-name,
a.left-name,
a.left-names,
a.news-item,
a.right {
    color: inherit;
    text-decoration: none;
}

.carousel-item:not(.is-active) {
    display: none;
}

.carousel-container {
    overflow: hidden;
}

.static-mobile-mask {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    background: rgba(0, 0, 0, 0.42);
}

.static-mobile-mask.is-open {
    display: block;
}

.static-mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100%;
    padding: 72px 28px 28px;
    background: #fff;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.18);
}

.mobile-menu-logo {
    display: block;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.static-mobile-menu a {
    display: block;
    padding: 15px 0;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #eef0f3;
}

.static-mobile-close {
    position: absolute;
    top: 22px;
    right: 24px;
    border: 0;
    background: transparent;
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

img {
    max-width: 100%;
}

#container {
    min-height: 360px;
}


/* ==================== Situation Main Content ==================== */

.situation {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    padding: 90px 0;
    padding-bottom: 0;
}

.situation .situation-value {
    flex: 6;
}

.situation .situation-value .situation-text {
    position: relative;
    animation: example1 1s ease-out 0s backwards;
    -webkit-animation: example1 1s ease-out 0s backwards;
}

.situation .situation-value .situation-text .text {
    font-size: 39px;
    line-height: 55px;
    margin-bottom: 30px;
}

.situation .situation-value .situation-text .text div {
    font-weight: bold;
    color: #1a1a1a;
}

.situation .situation-value .situation-text .message {
    font-size: 22px;
    line-height: 29px;
    color: #296ea2;
    letter-spacing: 2px;
}

.situation .situation-value .situation-text .texts,
.situation .situation-value .situation-text .messages {
    display: none;
}

.situation .situation-value .situation-text .span {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 28px;
    line-height: 1.8;
    color: #444;
}


/* ==================== Company Image ==================== */

.img-page {
    width: 1400px;
    margin: 0 auto;
    margin-bottom: 146px;
    position: relative;
    animation: example1 1s ease-out 0s backwards;
}

.img-page .img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.img-page .imgMax {
    height: 525px;
}

.culture {
    width: 100%;
}

.culture-value {
    width: 1400px;
    margin: 0 auto;
    padding: 90px 0 150px;
    position: relative;
    box-sizing: border-box;
}

.culture-text .title {
    font-size: 39px;
    line-height: 58px;
    margin-bottom: 30px;
    color: #2a6e9f;
}

.culture-text .message {
    font-size: 21px;
    line-height: 34px;
    font-weight: 300;
    color: #2a6e9f;
}

.strong {
    font-weight: 700;
}

.right-page {
    position: absolute;
    width: 458px;
    height: 680px;
    left: 60%;
    top: 90px;
    padding: 50px 60px;
    box-sizing: border-box;
    color: #fff;
    background: url("https://tikkon.oss-cn-hangzhou.aliyuncs.com/web/images/bgc.png") center / 100% 100% no-repeat;
    z-index: 2;
}

.right-page .name {
    font-size: 17px;
    margin-bottom: 10px;
    text-indent: 20px;
    line-height: 25px;
    font-weight: 600;
}

.right-page .desc {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 22px;
}

.culture .img-page {
    width: 100%;
    margin-bottom: 0;
}

.culture .img-page .img {
    height: 422px;
}

.structure {
    width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 90px;
    padding-bottom: 90px;
    animation: example1-49649ec0 1s ease-out 0s backwards;
}

.member-section {
    background-color: #f3f3f3;
    margin-bottom: 20px;
    animation: example1-49649ec0 1s ease-out 0s backwards;
}

.member-section.white {
    background-color: #fff;
}

.member-section-bg {
    background: #f3f3f3 url("../images/member-bg.f15aef5b.png") no-repeat;
    background-position: 0 200px;
}

.member-inner {
    width: 1400px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    box-sizing: border-box;
}

.member-title {
    flex: 3;
    color: #276999;
}

.member-title .cn {
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
}

.member-title .en {
    font-size: 17px;
    line-height: 29px;
}

.member-list {
    flex: 10;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 40px;
}

.member-row {
    display: contents;
}

.member-card {
    width: 100%;
    height: 216px;
    overflow: hidden;
}

.member-card img {

    height: 100%;

    display: block;
}

/* 手机端每行4列 */
@media (max-width: 768px) {
    .member-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    .member-card {
        height: auto;
        aspect-ratio: 160 / 216;
        margin: 0;
    }
    .member-inner {
        width: 100%;
        padding: 30px 15px;
        flex-direction: column;
    }
    .member-title {
        margin-bottom: 20px;
    }
    .member-title .cn {
        font-size: 18px;
    }
    .member-title .en {
        font-size: 12px;
    }
}

.experience-list {
    padding-top: 60px;
    background: url("../images/member-bg.f15aef5b.png") no-repeat;
    background-position: 0 200px;
    animation: example1-49649ec0 1s ease-out 0s backwards;
}

.experience-item {
    width: 1400px;
    margin: 0 auto;
    display: flex;
}

.experience-date {
    flex: 2;
    padding: 40px 0px 0 0;
    font-size: 25px;
    line-height: 32px;
    color: #286ea2;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.experience-date .year {
    position: relative;
    padding-right: 50px;
    border-right: 2px solid #286ea2;
    margin-right: -2px;
    text-align: center;
}

.experience-content {
    flex: 4;
    padding: 40px 0 40px 50px;
    color: #7c7c7c;
    border-left: 2px solid rgba(196, 196, 196, 0.733);
    box-sizing: border-box;
}

.experience-text {
    width: 95%;
    padding-bottom: 30px;
    font-size: 15px;
    line-height: 28px;
    border-bottom: 1px dashed #7c7c7c;
}

@keyframes example1 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes example1-49649ec0 {
    0% {
        transform: translateX(-100%);
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
        -webkit-transform: translateX(0%);
        -moz-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
    }
}

@media (max-width: 1440px) {
    .situation,
    .img-page,
    .subpage-banner .vaski-bg .vaski-tap,
    .culture-value,
    .member-inner,
    .experience-item,
    .structure {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1024px) {
    .subpage-banner .vaski-bg .vaski-tap {
        padding-left: 0;
        padding-right: 0;
    }
    .situation {
        flex-direction: column;
        padding: 50px 20px;
    }
    .situation .situation-value .situation-text {
        height: auto;
        margin-bottom: 20px;
    }
    .situation .situation-value .situation-text .text {
        font-size: 28px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .situation .situation-value .situation-text .message {
        font-size: 16px;
        line-height: 24px;
    }
    .situation .situation-value .situation-text .span {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .img-page {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 60px;
    }
    .img-page .imgMax {
        height: auto;
    }
    .structure {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .situation {
        padding: 30px 15px;
    }
    .situation .situation-value .situation-text .text {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
    }
    .situation .situation-value .situation-text .texts {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 10px;
        text-align: center;
        display: block;
        font-weight: bold;
        color: #1a1a1a;
    }
    .situation .situation-value .situation-text .messages {
        font-size: 12px;
        text-align: center;
        display: block;
        color: #296ea2;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .situation .situation-value .situation-text .text,
    .situation .situation-value .situation-text .message,
    .culture .img-page {
        display: none;
    }
    .situation .situation-value .situation-text .span {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .img-page {
        margin-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .img-page .img {
        height: auto;
        margin-bottom: 20px;
    }
    .culture-value {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .right-page {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: 550px;
        padding-left: 30px;
        padding-top: 20px;
        margin-top: 20px;
    }
    .member-inner {
        display: block;
        padding: 20px 0;
    }
    .member-row {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .member-card {
        margin-right: 0;
		 grid-template-columns: repeat(4, 1fr);
                gap: 10px;
    }
    .member-title {
        text-align: center;
    }
    .member-title .cn {
        font-size: 20px;
    }
    .member-title .en,
    .experience-text {
        font-size: 12px;
    }
    .experience-content {
        padding: 15px 0 15px 10px;
        flex: 6;
    }
    .experience-date {
        font-size: 16px;
        padding-top: 10px;
        line-height: 1.6;
    }
    .experience-date .year {
        padding-right: 10px;
    }
    .culture-text .title {
        font-size: 28px;
        line-height: 48px;
    }
    .culture-text .message {
        font-size: 18px;
    }
    .right-page .name {
        text-indent: 0;
        font-size: 15px;
    }
    .right-page .desc {
        font-size: 13px;
    }
}

.cooperation {
    width: 100%;
    position: relative;
}

.cooperation-inner {
    width: 1400px;
    margin: 0 auto;
    position: relative;
}

.cooperation-title {
    position: absolute;
    left: 0;
    top: 110px;
    z-index: 2;
    color: #2a6e9f;
}

.cooperation-title .title-cn {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
}

.cooperation-title .title-en {
    font-size: 20px;
    font-weight: 300;
}

.cooperation-img {
    width: 1400px;
    display: block;
    padding: 50px 0;
    box-sizing: border-box;
}

.cooperation-img-mobile {
    display: none;
}

@media (max-width: 767px) {
    .cooperation-inner {
        width: 100%;
    }
    .cooperation-title {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .cooperation-title .title-cn {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 8px;
    }
    .cooperation-title .title-en {
        font-size: 10px;
    }
    .cooperation-img-pc {
        display: none;
    }
    .cooperation-img-mobile {
        display: block;
        width: 100%;
        padding: 80px 50px 50px;
        box-sizing: border-box;
    }
	
	

}



.ons {
                border-bottom: 4px solid #296ea2 !important;
            }
			
.pager-list a{color: #7c7c7c;}
.pager-list a:hover {color: #296ea2;}
.no-btn div{color: #fff;}