﻿/**
 * @Description: 网站页面主要
 * @Author: MaXueWei    
 * @Date: 2023-12-11 13:52:49
 * @LastEditors: MaXueWei
 * @LastEditTime: 2023-12-11 13:52:49
 */
/* ==================== 重置样式 Start ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
}

a {
    text-decoration: none;
    outline: none;
}

html {
    font-size: 60px;
}

body::-webkit-scrollbar {
    width: 4px;
    background: #ececec;
    border-radius: 100px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #0d5bc1;
    cursor: pointer;
}

img {
    vertical-align: middle;
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

.ntjc-pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.8333rem;
}

.Pagination {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 15px;
}
.Pagination a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #CCCCCC;
}
.Pagination .current {
    color: white;
}
.Pagination .current {
    background: #195da1;
    border-color: #195da1;
}
.Pagination a {
    color: #666666;
    font-size: 12px;
    margin: 2px;
}

input,
button {
    outline: 0 none;
    border: none;
    background-color: transparent;
}

button {
    cursor: pointer;
}

/* 图片统一动画 */
.mxw-image {
    overflow: hidden;
}

.mxw-image img {
    transition: transform 0.8s;
    width: 100%;
}

.mxw-image:hover img {
    transform: scale(1.05);
}

main,
header,
footer,
.mxw-box,
section {
    font-size: 16px;
}

main {
    position: relative;
    z-index: 10;
}

section {
    position: relative;
    z-index: 9;
}

.swiper-button-prev,
.swiper-button-next {
    background-image: none;
}

@media screen and (max-width: 1800px) {
    html {
        font-size: 53px;
    }
}

@media screen and (max-width: 1680px) {
    html {
        font-size: 45px;
    }
}

@media screen and (max-width: 1440px) {
    html {
        font-size: 44px;
    }
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 43px;
    }
}

@media screen and (max-width: 1366px) {
    html {
        font-size: 42px;
    }
}

@media screen and (max-width: 1280px) {
    html {
        font-size: 39px;
    }
}

@media screen and (max-width: 1152px) {
    html {
        font-size: 35px;
    }
}

@media screen and (max-width: 749px) {
    html {
        font-size: 60px;
    }
}

/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
    width: 1600px;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1820px) {
    .mxw-box {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media screen and (max-width: 749px) {
    .mxw-box {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (max-width: 749px) {
    .m-hide {
        display: none !important;
    }
}

@media screen and (min-width: 750px) {
    .pc-hide {
        display: none !important;
    }
}

/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 750px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .u-row-2 > .u-col {
        width: 48%;
    }

    .u-row-2 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }

    .u-row-2 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }

    .u-row-3 > .u-col {
        width: 32%;
    }

    .u-row-3 > .u-col:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }

    .u-row-3 > .u-col:nth-child(3) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-4 > .u-col {
        width: 23.5%;
        margin-right: 2%;
    }

    .u-row-4 > .u-col:nth-child(4n) {
        margin-right: 0%;
    }

    .u-row-4 > .u-col:nth-child(4) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-5 > .u-col {
        width: 18.4%;
        margin-right: 2%;
    }

    .u-row-5 > .u-col:nth-child(5n) {
        margin-right: 0%;
    }

    .u-row-5 > .u-col:nth-child(5) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-6 > .u-col {
        width: 15.5%;
        margin-right: 1.4%;
    }

    .u-row-6 > .u-col:nth-child(6n) {
        margin-right: 0%;
    }

    .u-row-6 > .u-col:nth-child(6) ~ .u-col {
        margin-top: 1.4%;
    }
}

@media screen and (max-width: 749px) {
    .u-row-2,
    .u-row-3,
    .u-row-4,
    .u-row-5,
    .u-row-6 {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .u-row-2 .u-col {
        width: 100%;
    }

    .u-row-2 .u-col:nth-child(1) ~ .u-col {
        margin-top: 2%;
    }

    .u-row-3 > .u-col,
    .u-row-4 > .u-col,
    .u-row-5 > .u-col,
    .u-row-6 > .u-col {
        width: 48%;
    }

    .u-row-3 > .u-col:nth-child(2n),
    .u-row-4 > .u-col:nth-child(2n),
    .u-row-5 > .u-col:nth-child(2n),
    .u-row-6 > .u-col:nth-child(2n) {
        margin-left: 4%;
    }

    .u-row-3 > .u-col:nth-child(2) ~ .u-col,
    .u-row-4 > .u-col:nth-child(2) ~ .u-col,
    .u-row-5 > .u-col:nth-child(2) ~ .u-col,
    .u-row-6 > .u-col:nth-child(2) ~ .u-col {
        margin-top: 4%;
    }
}

/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.u-line-2 {
    -webkit-line-clamp: 2;
}

.u-line-3 {
    -webkit-line-clamp: 3;
}

.u-line-4 {
    -webkit-line-clamp: 4;
}

.u-line-5 {
    -webkit-line-clamp: 5;
}

.u-line-6 {
    -webkit-line-clamp: 6;
}

.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-list > li img {
    width: 100% !important;
    height: auto !important;
    transform: translate(0, 0) !important;
}

/* ==================== 图片放大插件 End ==================== */
/* ==================== ElementUI Start ==================== */
.el-table-filter__bottom {
    font-size: 12px;
}

/* ==================== ElementUI End ==================== */
/* ==================== 滤镜白色 Start ==================== */
.filter-white {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/* ==================== 滤镜白色 End ==================== */
/* ==================== 输入框占位字颜色 Start ==================== */
.common-input-text::-webkit-input-placeholder {
    color: #999;
}

.common-input-text::-moz-placeholder {
    color: #999;
}

.common-input-text:-moz-placeholder {
    color: #999;
}

.common-input-text:-ms-input-placeholder {
    color: #999;
}

/* ==================== 输入框占位字颜色 End ==================== */
/* ==================== 箭头 Start ==================== */
.arrow-style {
    display: inline-block;
    border-top: 1px solid;
    border-right: 1px solid;
    color: inherit;
    transform: rotate(45deg) translateY(-0.5em);
    width: 1em;
    height: 1em;
    margin-left: 1em;
}

/* ==================== 箭头 End ==================== */
/* ==================== 通用背景样式 Start ==================== */
.full-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* ==================== 通用背景样式 End ==================== */
/* ==================== 在1920下图片保持最小1920p Start ==================== */
.mxw-full-img {
    width: 100%;
    overflow: hidden;
}

@media screen and (min-width: 1903px) {
    .mxw-full-img {
        min-width: 1920px;
    }
}

/* ==================== 在1920下图片保持最小1920p End ==================== */
/* ==================== 通用分页器 Start ==================== */
.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 0.23rem;
    height: 0.23rem;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    opacity: 1;
    background-color: #D4D4D4;
    border-radius: 100%;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0d5bc1;
}

@media screen and (max-width: 749px) {
    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* ==================== 通用分页器 End ==================== */
/* ==================== 通用前进后退 Start ==================== */
.swiper-button-prev,
.swiper-button-next {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    transition: all 0.4s;
    flex-shrink: 0;
    margin: 0;
    background-color: #0d5bc1;
    color: #fff;
    transform: translateY(-50%);
    top: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 0.2rem;
    font-weight: bold;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    color: #fff;
}

@media screen and (max-width: 749px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
}

/* ==================== 通用前进后退 End ==================== */
/* ==================== 头部导航样式 Start ==================== */
@media screen and (min-width: 750px) {
    header {
        width: 100%;
        z-index: 999;
        transition: all 0.4s;
    }

    header.fiexd {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    header.fiexd .pc-nav {
        /*background-color: rgba(255, 255, 255, 0.1);*/
        background: none;
    }

    header.fiexd .logo {
        /*-webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);*/
    }

    header.fiexd .navbar2 > li:hover > a {
        color: #fff;
    }

    header.fiexd .navbar2 > li > a,
    header.fiexd .tel .text {
        color: #fff;
    }

    header.fiexd .tel .icon,
    header.fiexd .tel .qr > img {
        filter: inherit;
    }

    header.bg .pc-nav {
        background-color: #fff;
        box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
    }

    header.bg .logo {
        -webkit-filter: inherit;
        filter: inherit;
    }

    header.bg .navbar2 > li:hover > a {
        color: #333;
    }

    header.bg .navbar2 > li > a,
    header.bg .tel .text {
        color: #333;
    }

    header.bg .tel .icon,
    header.bg .tel .qr > img {
        filter: brightness(0);
    }

    header .welcome {
        background-color: #0d5bc1;
    }

    header .welcome > .mxw-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 30px;
    }

    header .welcome .text1,
    header .welcome .text2 {
        color: #fff;
        font-size: 14px;
        line-height: 1.2;
    }

    header .welcome .text2 a {
        color: inherit;
    }

    header .welcome .text2 a:hover {
        text-decoration: underline;
    }

    header .pc-nav {
        background-color: #fff;
        transition: all 0.4s;
    }

    header .pc-nav > .mxw-box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    header .nav-top > .mxw-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        height: 80px;


    }

    header.fiexd .nav-top > .mxw-box {
        margin-top: 00.5rem;
        max-width: 84%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    header .logo {
        display: block;
        /*width: 4.67rem;*/
        flex-shrink: 0;
    }

    header .navbar2 {
        display: flex;
        align-items: center;
        position: relative;
    }

    header .navbar2 > li {
        height: 100%;
        position: relative;
        transition: all 0.4s;
        text-align: center;
    }

    header .navbar2 > li.active > a,
    header .navbar2 > li:hover > a {
        color: #0d5bc1;
    }

    header .navbar2 > li:hover .sub-navbar2-box {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    header .navbar2 > li:last-child {
        margin-right: 0;
    }

    header .navbar2 > li:last-child > a {
        padding-right: 0;
    }

    header .navbar2 > li:last-child > a:after {
        display: none;
    }

    header .navbar2 > li > a {
        display: block;
        width: 100%;
        height: 100%;
        font-size: 0.3333rem;
        color: #333;
        text-decoration: none;
        position: relative;
        transition: color 0.4s, padding 0.4s;
        padding-top: 0.6667rem;
        padding-bottom: 0.6667rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        z-index: 3;
        font-weight: bold;
    }

    header .navbar2 > li > a:hover {
        color: #0d5bc1;
    }

    header .sub-navbar2-box {
        display: none;
        position: absolute;
        min-width: 3.17rem;
        top: 100%;
        left: 50%;
        text-align: center;
        transform: translateX(-50%);
        /* padding-top: 0.33rem; */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s, visibility 0.4s;
        z-index: 70;
    }

    header .navbar2 > li:last-child .sub-navbar2-box {
        right: -1rem;
        left: auto;
        transform: none;
    }


    /* header .sub-navbar2-box:before,
    header .sub-navbar2-box:after {
      content: "";
      display: block;
      width: 0.27rem;
      height: 0.27rem;
      position: absolute;
      left: 50%;
      top: 0.28rem;
      background-color: #fff;
      transform: rotate(45deg) translateX(-50%);
      z-index: 3;
    } */
    header .sub-navbar2-box:before {
        z-index: 1;
        box-shadow: 0 0 0.12rem 0.03rem rgba(0, 0, 0, 0.2);
    }

    header .sub-navbar2 {
        background-color: #fff;
        box-shadow: 0 0 0.12rem 0.03rem rgba(0, 0, 0, 0.2);
        border-radius: 0.07rem;
        padding: 0.17rem 0;
        white-space: nowrap;
        position: relative;
        z-index: 2;
    }

    header .sub-navbar2 > li:hover {
        background-color: #f3f3f3;
    }

    header .sub-navbar2 > li:hover a {
        color: #0d5bc1;
    }

    header .sub-navbar2 > li a {
        display: block;
        padding: 0.17rem 0.25rem;
        font-size: 0.25rem;
        color: #9fa3a6;
        font-family: "OPPOSANS-R";
        transition: color 0.4s;
    }

    header .sub-navbar3 {
        width: 700px;
        padding: 15px 15px;
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        -webkit-transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
        transition: all 300ms cubic-bezier(0.7, 0, 0.185, 1) 0s;
        -webkit-transform-origin: 50% 0%;
        -ms-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        -webkit-transform: perspective(1200px) rotateX(-90deg);
        transform: perspective(1200px) rotateX(-90deg);
        -webkit-backface-visibility: hidden;
        -webkit-transform-style: preserve-3d;
        justify-content: flex-start;
    }

    header .navbar2 > li:hover .sub-navbar3 {
        transform: perspective(1200px) rotateX(0deg);
        -webkit-transform: perspective(1200px) rotateX(0deg);
        -moz-transform: perspective(1200px) rotateX(0deg);
        -ms-transform: perspective(1200px) rotateX(0deg);
        -o-transform: perspective(1200px) rotateX(0deg);
    }

    header .sub-navbar3 > li:nth-child(4n):after {
        display: none;
    }

    header .sub-navbar3 > li {
        color: #fff;
        width: 25%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .sub-navbar3 > li > a {
        color: rgba(255, 255, 255, 1);
        display: block;
        text-align: center;
        font-size: 14px;
        padding: 8px 15px;
    }

    header .sub-navbar3 > li > a:hover {
        color: #fff;
    }

    header .sub-navbar3 > li:after {
        content: "";
        display: block;
        width: 1px;
        height: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media screen and (max-width: 749px) {
    header {
        position: relative;
        z-index: 1111;
    }

    header .head {
        z-index: 100;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 49.8px;
        background-color: #fff;
        transition: background-color 0.4s;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16.2px;
        box-shadow: 0 6px 16.2px 0 rgba(25, 25, 25, 0.06);
    }

    header .search {
        width: 30px;
        margin-right: 15px;
    }

    header .search img {
        max-width: 80%;
    }

    header .search-form {
        position: fixed;
        top: -1.37vw;
        left: 0;
        background: #fff;
        width: 100%;
        padding: 10.2px 19.8px;
        box-shadow: 0 4.8px 10.2px -4.8px rgba(0, 0, 0, 0.1);
        border-top: 1.2px solid #eee;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
    }

    header .search-form.active {
        opacity: 1;
        visibility: visible;
    }

    header .search-form form {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
    }

    header .search-form form input {
        min-width: 0;
        flex-grow: 1;
        border: 1.2px solid #eee;
        padding: 7.8px 10.2px;
        font-size: 12px;
    }

    header .search-form form button {
        flex-shrink: 0;
        width: 30px;
        background: #0d5bc1;
        padding: 7.2px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .search-form form button img {
        filter: brightness(0) invert(1);
    }

    header .logo {
        display: block;
        width: 140px;
        overflow: hidden;
        flex-shrink: 0;
    }

    header .logo img {
        width: 100%;
    }

    header .tool {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    header .tool .menu-btn {
        cursor: pointer;
    }

    header .tool .menu-btn > i {
        width: 19.8px;
        height: 1.8px;
        background-color: #333;
        display: block;
        margin-bottom: 6px;
    }

    header .tool .menu-btn > i:last-child {
        margin-bottom: 0;
    }

    header .tool .more-link {
        margin-right: 19.8px;
        cursor: pointer;
        min-width: 90px;
        display: block;
        padding: 10.2px 15px;
        border-radius: 100.2px;
        background-color: #f4f4f4;
        color: #999;
        line-height: 1;
        text-align: center;
        font-size: 12px;
        font-family: "SourceHanSansCN-Normal";
        transition: all 0.4s;
    }

    header .popup-nav {
        position: fixed;
        background-color: rgba(25, 25, 25, 0);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 101;
        transition: background-color 0.4s, opacity 0.4s, visibility 0.4s;
        visibility: hidden;
        pointer-events: none;
    }

    header .popup-nav.active {
        background-color: #191919;
        visibility: visible;
        pointer-events: inherit;
    }

    header .popup-nav.active .popup-box {
        transform: translateX(0);
    }

    header .popup-nav .popup-box {
        background-color: #fff;
        padding: 13.8px 19.8px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-flow: column;
        align-items: stretch;
        justify-content: flex-start;
        transform: translateX(100%);
        transition: transform 0.4s;
    }

    header .popup-nav .close {
        flex-shrink: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 15px;
    }

    header .popup-nav .close .icon {
        width: 19.8px;
        height: 19.8px;
        position: relative;
        transform: rotate(45deg);
    }

    header .popup-nav .close .icon:before,
    header .popup-nav .close .icon:after {
        content: "";
        display: block;
        background-color: #333;
        position: absolute;
    }

    header .popup-nav .close .icon:before {
        width: 100%;
        height: 1.2px;
        top: 50%;
        left: 0;
    }

    header .popup-nav .close .icon:after {
        width: 1.2px;
        height: 100%;
        left: 50%;
        top: 0;
    }

    header .popup-nav .login {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 36px;
        padding-right: 19.8px;
        position: relative;
        cursor: pointer;
    }

    header .popup-nav .login:before {
        content: "";
        display: block;
        width: 100%;
        height: 1.2px;
        background-color: #eee;
        position: absolute;
        bottom: -19.8px;
        left: 0;
    }

    header .popup-nav .login:after {
        content: "";
        display: block;
        width: 6px;
        height: 6px;
        border-top: 1.2px solid;
        border-right: 1.2px solid;
        position: absolute;
        top: 16.2px;
        transform: translateY(-50%) rotate(45deg);
        right: 4.2px;
        border-color: rgba(25, 25, 25, 0.6);
    }

    header .popup-nav .login .avatar {
        background-color: #d1d1d1;
        width: 31.8px;
        height: 31.8px;
        border-radius: 10.2px;
        overflow: hidden;
    }

    header .popup-nav .login .name {
        font-size: 12px;
        color: #333;
        line-height: 1.2;
        margin-left: 10.2px;
    }

    header .popup-nav .nav-box {
        flex-grow: 1;
        overflow: auto;
        padding-right: 10.2px;
    }

    header .popup-nav .nav-list.other-list {
        padding-top: 15px;
        margin-top: 15px;
        border-top: 1.2px solid #eee;
    }

    header .popup-nav .nav-list.other-list .nav-item > .title {
        opacity: 0.8;
        font-size: 13.8px;
    }

    header .popup-nav .nav-list.other-list .subnav-list > li > .title {
        font-size: 12px;
    }

    header .popup-nav .nav-list .nav-item > .title {
        position: relative;
        display: block;
        padding: 10.2px 0;
        padding-right: 15px;
        font-size: 15px;
        color: #191919;
        line-height: 1.2;
    }

    header .popup-nav .nav-list .nav-item > .title .icon {
        display: block;
        position: absolute;
        top: 50%;
        right: 0;
        opacity: 0.8;
        width: 7.8px;
        height: 7.8px;
        border-top: 1.2px solid;
        border-right: 1.2px solid;
        border-color: #191919;
        transform: rotate(45deg);
        margin-top: -4.2px;
        margin-right: 4.2px;
    }

    header .popup-nav .nav-list .nav-item > .title .icon.more-icon {
        width: 12px;
        height: 12px;
        transform: translateY(-50%);
        border: 0;
        margin-top: 0;
        margin-right: 1.8px;
    }

    header .popup-nav .nav-list .nav-item > .title .icon.more-icon:before,
    header .popup-nav .nav-list .nav-item > .title .icon.more-icon:after {
        content: "";
        display: block;
        background-color: #333;
        position: absolute;
    }

    header .popup-nav .nav-list .nav-item > .title .icon.more-icon:before {
        width: 100%;
        height: 1.2px;
        top: 50%;
        left: 0;
    }

    header .popup-nav .nav-list .nav-item > .title .icon.more-icon:after {
        width: 1.2px;
        height: 100%;
        left: 50%;
        top: 0;
    }

    header .popup-nav .subnav-list {
        display: none;
        padding-left: 10.2px;
    }

    header .popup-nav .subnav-list > li {
        border-bottom: 1.2px dashed #eee;
    }

    header .popup-nav .subnav-list > li > a {
        display: block;
        font-size: 13.2px;
        color: #898989;
        padding: 7.8px 0;
    }
}

/* ==================== 头部导航样式 End ==================== */
/* ==================== 首页 - 轮播图 Start ==================== */
.index-banner {
    overflow: hidden;
    position: relative;
    max-width: 100% !important;
}

.index-banner .bg-image {
    overflow: hidden;
    max-width: 100%;
}

.index-banner .swiper-pagination {
    width: 100%;
    bottom: 0.5rem;
    font-size: 0.2667rem;
    color: #fff;
    line-height: 1.2;
    display: flex;
    align-items: flex-end;
}

.index-banner .swiper-pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 2px;
    border: 0;
    border-radius: 0;
    margin-left: 0.1667rem;
    margin-right: 0.1667rem;
    background-color: #fff;
    transition: all 0.4s;
}

.index-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #0d5bc1;
    opacity: 1;
}

.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
    width: auto;
    height: auto;
    background-color: inherit;
}

.index-banner .swiper-button-prev:after,
.index-banner .swiper-button-next:after {
    font-size: 48px;
    font-weight: 200;
}

.index-banner .swiper-button-prev {
    left: 0.5rem;
}

.index-banner .swiper-button-next {
    right: 0.5rem;
}

@media screen and (max-width: 749px) {
    .index-banner .swiper-pagination {
        bottom: 10px;
        font-size: 12px;
    }

    .index-banner .swiper-pagination .swiper-pagination-bullet {
        width: 30px;
        height: 2px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .index-banner .swiper-button-prev:after,
    .index-banner .swiper-button-next:after {
        font-size: 20px;
    }

    .index-banner .swiper-button-prev {
        left: 10px;
    }

    .index-banner .swiper-button-next {
        right: 10px;
    }
}

/* ==================== 首页 - 轮播图 End ==================== */
/* ==================== 首页 - 通用标题 Start ==================== */
.index-title {
    display: block;
    text-align: center;
    margin-bottom: 0.8333rem;
}

.index-title.white .text1,
.index-title.white .text2 {
    color: #fff;
}

.index-title .text1 {
    font-size: 0.3333rem;
    color: #0d5bc1;
    margin-bottom: 0.3333rem;
    line-height: 1.1;
}

.index-title .text2 {
    font-size: 0.6rem;
    color: #333;
    line-height: 1.2;
    font-weight: bold;
}

@media screen and (max-width: 749px) {
    .index-title {
        margin-bottom: 30px;
    }

    .index-title .text1 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .index-title .text2 {
        font-size: 22px;
    }
}

/* ==================== 首页 - 通用标题 End ==================== */
/* ==================== 首页 - 板块一 Start ==================== */
.index-section1 {
    padding-top: 1.1667rem;
    padding-bottom: 1.1667rem;
}

.index-section1 .index-section1-swiper .swiper-wrapper {
    flex-direction: row;
}

.index-section1 .index-section1-swiper .swiper-slide {
    margin-top: 0.1667rem !important;
    width: 12%;
}

.index-section1 .item {
    display: block;
    position: relative;
    overflow: hidden;
}

.index-section1 .item > .text {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.index-section1 .text {
    width: 100%;
    font-size: 0.3rem;
    color: #fff;
    padding: 0.1667rem;
    text-align: center;
    transition: all 0.4s;
}

.index-section1 .info {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 91, 193, 0.82);
    color: #fff;
    transform: translateY(100%);
    transition: all 0.4s;
    height: 100%;
}

.index-section1 .info .more-btn {
    width: 1.75rem;
    height: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2667rem;
    color: #0d5bc1;
    line-height: 1.2;
    border-radius: 1.6667rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
}

.index-section1 .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    margin-top: 0.9167rem;
}

.index-section1 .swiper-pagination .swiper-pagination-bullet {
    width: 0.2rem;
    height: 0.2rem;
    margin-left: 0.1667rem;
    margin-right: 0.1667rem;
    opacity: 1;
    background-color: #d7d7d7;
    border-radius: 100%;
}

.index-section1 .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0d5bc1;
}

@media screen and (min-width: 750px) {
    .index-section1 .item:hover .info {
        transform: translateY(0);
    }

    .index-section1 .item:hover > .text {
        opacity: 0;
        visibility: hidden;
    }
}

@media screen and (max-width: 749px) {
    .index-section1 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section1 .index-section1-swiper .swiper-slide {
        margin-top: 10px !important;
    }

    .index-section1 .text {
        font-size: 12px;
        padding: 10px;
    }

    .index-section1 .info .more-btn {
        width: 105px;
        height: 36px;
        font-size: 16px;
    }

    .index-section1 .swiper-pagination {
        margin-top: 20px;
    }

    .index-section1 .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin-left: 4px;
        margin-right: 4px;
    }
}

/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 首页 - 板块二 Start ==================== */
.index-section2 {
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding-top: 1.6667rem;
    padding-bottom: 1.8333rem;
}

.index-section2 .head {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    /*margin-right: -9%;*/
}

.index-section2 .index-section2-swiper-text {
    min-width: 0;
    flex-grow: 1;
    border-bottom: 1px solid #DFDFDF;
}

.index-section2 .index-section2-swiper-text .swiper-scrollbar {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: transparent;
    height: 2px;
    width: 100%;
}

.index-section2 .index-section2-swiper-text .swiper-scrollbar .swiper-scrollbar-drag {
    cursor: pointer;
    height: 2px;
    background-color: #0d5bc1;
}

.index-section2 .index-section2-swiper-text .swiper-slide {
    width: auto;
}

.index-section2 .index-section2-swiper-text .swiper-slide.active .tab-item {
    color: #0d5bc1;
}

.index-section2 .tab-item {
    display: block;
    font-size: 25px;
    line-height: 1.2;
    padding: 0.3333rem 0;
    padding-left: 0.6667rem;
    position: relative;
    color: #333;
}

.index-section2 .tab-item:before {
    content: "";
    display: block;
    width: 0.1333rem;
    height: 0.1333rem;
    border-radius: 100%;
    overflow: hidden;
    border: 0.0833rem solid #CCDCF2;
    position: absolute;
    left: 0.1667rem;
    top: 50%;
    background-color: #0d5bc1;
    transform: translateY(-50%);
}

.index-section2 .swiper {
    position: relative;
    margin-top: 00.4rem;
}

.index-section2 .swiper .swiper-button-prev,
.index-section2 .swiper .swiper-button-next {
    width: 0.7667rem;
    height: 0.7667rem;
    opacity: 1;
}

.index-section2 .swiper .swiper-button-prev.swiper-button-disabled,
.index-section2 .swiper .swiper-button-next.swiper-button-disabled {
    background-color: rgba(13, 91, 193, 0.1);
}

.index-section2 .swiper .swiper-button-prev.swiper-button-disabled:after,
.index-section2 .swiper .swiper-button-next.swiper-button-disabled:after {
    color: #0d5bc1;
}

.index-section2 .swiper .swiper-button-prev {
    left: -1.3333rem;
}

.index-section2 .swiper .swiper-button-next {
    right: -1.3333rem;
}

.index-section2 .item {
    display: flex;
    display: -webkit-flex;
    background-color: #fff;
    flex-direction: column;
}

.index-section2 .item:hover .title {
    color: #fff;
}

.index-section2 .item:hover .desc {
    color: #fff;
}

.index-section2 .item .image {
    padding: 0.6667rem;
}

.index-section2 .item .info {
    padding: 0.3333rem;
    text-align: center;
    flex-grow: 1;
    min-width: 0;
}

.index-section2 .item:hover .info {
    color: #fff;
    background: #0d5bc1;
}

.index-section2 .item .title {
    font-size: 0.3rem;
    color: #333;
    line-height: 1.1;
    font-weight: bold;
    transition: all 0.4s;
}

.index-section2 .item .desc {
    font-size: 0.2667rem;
    color: #6d6d6d;
    line-height: 1.6;
    text-align: center;
    margin-top: 0.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    transition: all 0.4s;
}

.index-section2 .item .icon {
    margin-top: 0.3333rem;
    width: 0.5rem;
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

.index-section2 .item:hover .icon {
    filter: grayscale(100%) brightness(1000%);
}

@media screen and (min-width: 750px) {
    .index-section2 {
        background-attachment: fixed;
    }

    .index-section2 .index-title {
        margin-right: 0;
        margin-bottom: 0;
        text-align: center;
        flex-shrink: 0;
        width: 100%;
    }
}

@media screen and (max-width: 749px) {
    .index-section2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section2 .head {
        margin-bottom: 20px;
        margin-right: 0;
        display: block;
    }

    .index-section2 .index-section2-swiper-text .swiper-wrapper {
        flex-wrap: wrap;
    }

    .index-section2 .index-section2-swiper-text .swiper-scrollbar {
        height: 2px;
    }

    .index-section2 .index-section2-swiper-text .swiper-scrollbar .swiper-scrollbar-drag {
        height: 2px;
    }

    .index-section2 .index-section2-swiper-text .swiper-slide {
        width: 50%;
    }

    .index-section2 .tab-item {
        font-size: 14px;
        padding: 10px 0;
        padding-left: 30px;
    }

    .index-section2 .tab-item:before {
        width: 6px;
        height: 6px;
        border: 4px solid #CCDCF2;
        left: 5px;
    }

    .index-section2 .swiper {
        position: relative;
    }

    .index-section2 .swiper .swiper-button-prev,
    .index-section2 .swiper .swiper-button-next {
        width: 46px;
        height: 46px;
        display: none;
    }

    .index-section2 .swiper .swiper-button-prev {
        left: 10px;
    }

    .index-section2 .swiper .swiper-button-next {
        right: 10px;
    }

    .index-section2 .item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .index-section2 .item:last-child {
        margin-bottom: 0;
    }

    .index-section2 .item .image {
        padding: 0;
        /*width: 133px;*/
        flex-shrink: 0;
    }

    .index-section2 .item .info {
        padding: 0px;
    }

    .index-section2 .item .title {
        font-size: 14px;
        line-height: 1.4;
    }

    .index-section2 .item .desc {
        font-size: 12px;
        margin-top: 10px;
        max-width: 100%;
    }

    .index-section2 .item .icon {
        margin-top: 20px;
        width: 30px;
        display: none;
    }
}

/* ==================== 首页 - 板块二 End ==================== */
/* ==================== 首页 - 板块三 Start ==================== */
.index-section3 {
    background-size: cover;
    padding-top: 1.3333rem;
    padding-bottom: 2rem;
    position: relative;
}

.index-section3 .index-title {
    position: relative;
    z-index: 10;
}

.index-section3 .swiper {
    position: relative;
}

.index-section3:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.index-section3 .item {
    position: relative;
    padding: 0.8333rem 0.8333rem;
    color: #fff;
    height: 10rem;
}

.index-section3 .item:before,
.index-section3 .item:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000;
    transition: all 0.4s;
    opacity: 0.3;
}

.index-section3 .item::before {
    opacity: 0;
    visibility: hidden;
    background-image: linear-gradient(0deg, #34b7e9 0%, #0d5cc1 100%), linear-gradient(#1d7ed1, #1d7ed1);
}

.index-section3 .item .icon,
.index-section3 .item .info {
    position: relative;
    z-index: 2;
}

.index-section3 .item .icon {
    width: 1.2667rem;
    height: 1.2667rem;
    border-radius: 100%;
    border: 0.0333rem solid #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    margin-left: auto;
    margin-right: auto;
}

.index-section3 .item .icon img {

    width: 50%;

}

.index-section3 .item .info {
    text-align: center;
    transform: translateY(1.5rem);
    transition: all 0.4s;
}

.index-section3 .item .text1 {
    font-size: 0.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.1667rem;
}

.index-section3 .item .text2 {
    font-size: 0.1667rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}

.index-section3 .item .text2:after {
    content: "";
    width: 1.25rem;
    height: 0.0333rem;
    margin-top: 0.5rem;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.index-section3 .item .desc {
    font-size: 0.2333rem;
    line-height: 2.2;
    text-align: center;
    height: 8.8em;
}

.index-section3 .more-btn {
    width: 3rem;
    height: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.2667rem;
    color: #fff;
    border: 0.0167rem solid #fff;
    border-radius: 1.6667rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: relative;
}

.index-section3 .more-btn:hover {
    background-color: #fff;
    color: #0d5bc1;
}

.index-section3 .swiper-button-prev,
.index-section3 .swiper-button-next {
    width: 0.7667rem;
    height: 0.7667rem;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.index-section3 .swiper-button-prev.swiper-button-disabled,
.index-section3 .swiper-button-next.swiper-button-disabled {
    background-color: rgba(255, 255, 255, 0.3);
}

.index-section3 .swiper-button-prev.swiper-button-disabled:after,
.index-section3 .swiper-button-next.swiper-button-disabled:after {
    color: #fff;
}

.index-section3 .swiper-button-prev:after,
.index-section3 .swiper-button-next:after {
    font-size: 0.2333rem;
}

.index-section3 .swiper-button-prev {
    left: -1.25rem;
}

.index-section3 .swiper-button-next {
    right: -1.25rem;
}

@media screen and (min-width: 750px) {
    .index-section3 {
        /*background-attachment: fixed;*/
    }

    .index-section3 .mxw-box {
        position: relative;
        z-index: 2;
    }

    .index-section3 .item:hover:after {
        opacity: 0;
        visibility: hidden;
    }

    .index-section3 .item:hover:before {
        opacity: 0.8;
        visibility: visible;
    }

    .index-section3 .item:hover .info {
        transform: translateY(0);
    }

    .index-section3 .item:hover .icon {
        background: #fff;
    }

    .index-section3 .item:hover .icon img {

        filter: invert(49%) sepia(42%) saturate(6712%) hue-rotate(184deg) brightness(92%) contrast(82%);
        -webkit-filter: invert(49%) sepia(42%) saturate(6712%) hue-rotate(184deg) brightness(92%) contrast(82%);
        border-radius: 50%;


    }

    .index-section3 .item:hover .more-btn {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 749px) {
    .index-section3 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section3 .item {
        padding: 30px 20px;
        height: auto;
    }

    .index-section3 .item .icon {
        width: 50px;
        height: 50px;
        border: 2px solid #fff;
        margin-bottom: 20px;
    }

    .index-section3 .item .info {
        transform: translateY(0);
    }

    .index-section3 .item .text1 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .index-section3 .item .text2 {
        font-size: 10px;
        line-height: 1.4;
    }

    .index-section3 .item .text2:after {
        width: 40px;
        height: 2px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .index-section3 .item .desc {
        font-size: 12px;
        height: auto;
    }

    .index-section3 .more-btn {
        width: 50%;
        height: 30px;
        font-size: 12px;
        border-radius: 100px;
        margin-top: 30px;
        visibility: visible;
        opacity: 1;
    }

    .index-section3 .swiper-button-prev,
    .index-section3 .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .index-section3 .swiper-button-prev.swiper-button-disabled,
    .index-section3 .swiper-button-next.swiper-button-disabled {
        background-color: rgba(255, 255, 255, 0.3);
    }

    .index-section3 .swiper-button-prev.swiper-button-disabled:after,
    .index-section3 .swiper-button-next.swiper-button-disabled:after {
        color: #fff;
    }

    .index-section3 .swiper-button-prev:after,
    .index-section3 .swiper-button-next:after {
        font-size: 12px;
    }

    .index-section3 .swiper-button-prev {
        left: 10px;
    }

    .index-section3 .swiper-button-next {
        right: 10px;
    }
}

/* ==================== 首页 - 板块三 End ==================== */
/* ==================== 首页 - 板块四 Start ==================== */
.index-section4 {
    overflow: hidden;
    padding-top: 1.6667rem;
    padding-bottom: 1.8333rem;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.index-section4 .tabs {
    border-top: 1px solid #E5E5E5;
    margin-bottom: 0.8333rem;
}

.index-section4 .tabs .mxw-box {
    width: 100%;
    max-width: 90%;
    position: relative;
}

.index-section4 .tabs .swiper-button-prev {
    left: -0.8333rem;
}

.index-section4 .tabs .swiper-button-next {
    right: -0.8333rem;
}

.index-section4 .tabs .swiper-button-prev,
.index-section4 .tabs .swiper-button-next {
    width: 0.7667rem;
    height: 0.7667rem;
    border: solid 0.0167rem #0d5bc1;
    background-color: transparent;
    margin: 0;
    top: auto;
    bottom: 0;
    transform: translateY(0);
}

.index-section4 .tabs .swiper-button-prev.swiper-button-disabled,
.index-section4 .tabs .swiper-button-next.swiper-button-disabled {
    display: none;
}

.index-section4 .tabs .swiper-button-prev:hover,
.index-section4 .tabs .swiper-button-next:hover {
    background-color: #0d5bc1;
    border-color: #0d5bc1;
}

.index-section4 .tabs .swiper-button-prev:hover:after,
.index-section4 .tabs .swiper-button-next:hover:after {
    color: #fff;
}

.index-section4 .tabs .swiper-button-prev:after,
.index-section4 .tabs .swiper-button-next:after {
    color: #0d5bc1;
    font-size: 0.2333rem;
}

.index-section4 .tabs .swiper-slide {
    width: auto;
}

.index-section4 .tabs .swiper-slide.active .tab-item:after,
.index-section4 .tabs .swiper-slide-thumb-active .tab-item:after {
    opacity: 1;
    visibility: visible;
}

.index-section4 .tabs .swiper-slide.active .tab-item .icon,
.index-section4 .tabs .swiper-slide-thumb-active .tab-item .icon {
    -webkit-filter: inherit;
    filter: inherit;
}

.index-section4 .tabs .swiper-slide.active .tab-item .text1,
.index-section4 .tabs .swiper-slide-thumb-active .tab-item .text1 {
    font-weight: bold;
}

.index-section4 .tabs .swiper-slide.active .tab-item .text1,
.index-section4 .tabs .swiper-slide.active .tab-item .text2,
.index-section4 .tabs .swiper-slide-thumb-active .tab-item .text1,
.index-section4 .tabs .swiper-slide-thumb-active .tab-item .text2 {
    color: #0d5bc1;
}

.index-section4 .tab-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.index-section4 .tab-item:after {
    content: "";
    width: 100%;
    height: 0.05rem;
    position: absolute;
    top: -0.0167rem;
    left: 0;
    background-color: #0d5bc1;
    transition: all 0.4s;
    opacity: 0;
    visibility: hidden;
}

.index-section4 .tab-item .icon {
    width: 0.6667rem;
    flex-shrink: 0;
    margin-right: 0.3333rem;
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.index-section4 .tab-item .info {
    min-width: 0;
    flex-grow: 1;
}

.index-section4 .tab-item .text1 {
    font-size: 0.3333rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 0.0667rem;
}

.index-section4 .tab-item .text2 {
    font-size: 0.2333rem;
    color: #999;
    line-height: 1.2;
}

.index-section4 .min-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 0.3333rem;
    color: #fff;
    text-align: center;
    z-index: 20;
    transition: all 0s;
}

.index-section4 .min-item:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.index-section4 .min-item .min-text1,
.index-section4 .min-item .min-text2 {
    width: 100%;
    position: relative;
    z-index: 4;
}

.index-section4 .min-item .min-text1 {
    font-size: 0.3333rem;
    margin-bottom: 0.0833rem;
}

.index-section4 .min-item .min-text2 {
    font-size: 0.2333rem;
    margin-bottom: 0.3333rem;
}

.index-section4 .swiper-img {
    position: relative;
}

.index-section4 .swiper-img .btn-group {
    position: absolute;
    bottom: -0.6667rem;
    right: -0.3333rem;
    display: flex;
    z-index: 4;
    display: none;
}

.index-section4 .swiper-img .swiper-button-prev,
.index-section4 .swiper-img .swiper-button-next {
    position: static;
    transform: translate(0);
    width: 1.5rem;
    height: 1.5rem;
    transform: skewX(-10deg);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-section4 .swiper-img .swiper-button-prev:after,
.index-section4 .swiper-img .swiper-button-next:after {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: url(//cdn.myxypt.com/e7a844a7/23/12/b3dd81fadb9168966317586f66487fe501205122.png) no-repeat center;
    transform: skewX(10deg);
    background-size: 100%;
}

.index-section4 .swiper-img .swiper-button-prev {
    margin-right: -0.1667rem;
    margin-top: 0.5rem;
    background-color: #0d5bc1;
}

.index-section4 .swiper-img .swiper-button-prev:after {
    transform: skewX(10deg) rotateY(-180deg);
}

.index-section4 .swiper-img .swiper-button-next {
    background-color: #DA251C;
    box-shadow: 0.0667rem 0.25rem 0.0333rem 0rem rgba(0, 0, 0, 0.1);
}

.index-section4 .index-section4-img {
    width: 11.8333rem;
    height: 9.6667rem;
    position: relative;
}

.index-section4 .item {
    position: relative;
    overflow: hidden;
    /* cursor: pointer; */
}

.index-section4 .item .info {
    margin-top: 0.6667rem;
    display: none;
    width: 11.8333rem;
}

.index-section4 .item .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.3333rem;
}

.index-section4 .item .text1 {
    font-size: 0.4rem;
    color: #333;
    line-height: 1;
    font-weight: bold;
    margin-right: 0.1667rem;
}

.index-section4 .item .text2 {
    font-size: 0.3rem;
    color: #747474;
    opacity: 0.5;
}

.index-section4 .item .desc {
    font-size: 0.2667rem;
    color: #747474;
    line-height: 1.8;
    text-align: justify;
}

.index-section4 .item .desc a {
    color: #0d5bc1;
}

@media screen and (min-width: 750px) {
    .index-section4 .index-section4-swiper2 {
        height: 10.8333rem;
        padding-left: 2.5rem;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper {
        align-items: flex-end;
        transition-duration: 1000ms !important;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide {
        width: 4.3333rem;
        margin-left: 0.1667rem;
        margin-right: 0.1667rem;
        transition: all 0.4s;
        height: auto;
        transform-origin: left top;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active {
        width: 12.5rem;
        margin-left: 1.6667rem;
        margin-right: 1.6667rem;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active .min-item {
        opacity: 0;
        visibility: hidden;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active .item {
        padding-top: 0.5rem;
        padding-right: 0.6667rem;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active .item .info {
        display: block;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active .btn-group {
        display: flex;
    }

    .index-section4 .index-section4-swiper2 > .swiper-wrapper > .swiper-slide.swiper-slide-active .index-section4-img {
        height: 7.6667rem;
        box-shadow: 0 0 0.3333rem -0.1333rem #000000;
    }
}

@media screen and (max-width: 749px) {
    .index-section4 {
        padding-top: 40px;
        padding-bottom: 40px;
        max-width: 100%;
    }

    .index-section4 .tabs {
        border-top: 1px solid #E5E5E5;
        margin-bottom: 30px;
        padding-top: 10px;
    }

    .index-section4 .tabs .mxw-box {
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .index-section4 .tabs .swiper-wrapper {
        flex-wrap: wrap;
    }

    .index-section4 .tabs .swiper-button-prev {
        left: -50px;
    }

    .index-section4 .tabs .swiper-button-next {
        right: -50px;
    }

    .index-section4 .tabs .swiper-button-prev,
    .index-section4 .tabs .swiper-button-next {
        display: none;
    }

    .index-section4 .tabs .swiper-slide {
        width: auto;
        width: 50%;
    }

    .index-section4 .tabs .active .tab-item:after,
    .index-section4 .tabs .swiper-slide-thumb-active .tab-item:after {
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .index-section4 .tabs .active .tab-item .icon,
    .index-section4 .tabs .swiper-slide-thumb-active .tab-item .icon {
        -webkit-filter: inherit;
        filter: inherit;
    }

    .index-section4 .tabs .active .tab-item .text1,
    .index-section4 .tabs .swiper-slide-thumb-active .tab-item .text1 {
        font-weight: bold;
    }

    .index-section4 .tabs .active .tab-item .text1,
    .index-section4 .tabs .swiper-slide-thumb-active .tab-item .text1,
    .index-section4 .tabs .active .tab-item .text2,
    .index-section4 .tabs .swiper-slide-thumb-active .tab-item .text2 {
        color: #0d5bc1;
    }

    .index-section4 .tab-item {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .index-section4 .tab-item:after {
        width: 100%;
        height: 3px;
    }

    .index-section4 .tab-item .icon {
        width: 20px;
        margin-right: 10px;
    }

    .index-section4 .tab-item .text1 {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .index-section4 .tab-item .text2 {
        font-size: 12px;
    }

    .index-section4 .min-item {
        display: none;
    }

    .index-section4 .min-item .min-text1 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .index-section4 .min-item .min-text2 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .index-section4 .swiper-img .btn-group {
        bottom: -10px;
        right: -10px;
        display: flex;
    }

    .index-section4 .swiper-img .swiper-button-prev,
    .index-section4 .swiper-img .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .index-section4 .swiper-img .swiper-button-prev:after,
    .index-section4 .swiper-img .swiper-button-next:after {
        width: 50%;
        height: 50%;
    }

    .index-section4 .swiper-img .swiper-button-prev {
        margin-right: -10px;
        margin-top: 30px;
    }

    .index-section4 .swiper-img .swiper-button-next {
        box-shadow: 4px 5px 2px 0px rgba(0, 0, 0, 0.1);
    }

    .index-section4 .index-section4-img {
        width: 100%;
        height: auto;
        position: relative;
    }

    .index-section4 .item {
        padding-left: 20px;
        padding-right: 20px;
    }

    .index-section4 .item .info {
        margin-top: 20px;
        display: block;
        width: 100%;
    }

    .index-section4 .item .title {
        margin-bottom: 20px;
    }

    .index-section4 .item .text1 {
        font-size: 16px;
        margin-right: 10px;
    }

    .index-section4 .item .text2 {
        font-size: 12px;
    }

    .index-section4 .item .desc {
        font-size: 12px;
    }
}

/* ==================== 首页 - 板块四 End ==================== */
/* ==================== 首页 - 板块五 Start ==================== */
.index-section5 {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 1.83rem;
    position: relative;
}

.index-section5:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.index-section5 .mxw-box {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.index-section5 .index-title {
    text-align: left;
}

.index-section5 .index-title .text2 {
    font-size: 0.83rem;
}

.index-section5 .index-title .text3 {
    color: #fff;
    font-size: 0.37rem;
    line-height: 1.6;
    margin-top: 0.42rem;
}

.index-section5 .itembox {
    width: 12rem;
}

.index-section5 .item {
    margin-bottom: 0.13rem;
    background-color: rgba(0, 0, 0, 0.3);
}

.index-section5 .item.active .head {
    background-image: none;
}

.index-section5 .item.active .arrow {
    opacity: 0.5;
}

.index-section5 .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.67rem;
    padding-left: 1.33rem;
    background-image: linear-gradient(90deg, #0d5bc1 0%, #34b8e9 100%);
    cursor: pointer;
}

.index-section5 .head .icon {
    width: 0.67rem;
    height: 0.67rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.33rem;
    flex-shrink: 0;
}

.index-section5 .head .icon img {
    width: 80%;
}

.index-section5 .head .text {
    font-size: 0.4rem;
    color: #fff;
    line-height: 1.2;
    min-width: 0;
    flex-grow: 1;
}

.index-section5 .head .arrow {
    width: 0.5rem;
    flex-shrink: 0;
}

.index-section5 .body {
    padding: 0.33rem 1rem;
    padding-bottom: 1.67rem;
    display: none;
}

.index-section5 .body .text1 {
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.4;
    font-weight: bold;
}

.index-section5 .body .desc {
    margin-top: 0.67rem;
    font-size: 0.3rem;
    color: #fff;
}

.index-section5 .body .desc p {
    position: relative;
    margin-bottom: 0.5rem;
}

.index-section5 .body .desc p:last-child {
    margin-bottom: 0;
}

.index-section5 .body .desc p:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.1rem solid transparent;
    border-bottom: 0.1rem solid transparent;
    border-left: 0.13rem solid #fff;
    margin-right: 0.33rem;
}

@media screen and (min-width: 750px) {
    .index-section5 {
        background-attachment: fixed;
    }
}

@media screen and (max-width: 749px) {
    .index-section5 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section5 .mxw-box {
        display: block;
    }

    .index-section5 .index-title .text2 {
        font-size: 20px;
    }

    .index-section5 .index-title .text3 {
        font-size: 22px;
        margin-top: 25px;
    }

    .index-section5 .itembox {
        width: 100%;
    }

    .index-section5 .item {
        margin-bottom: 8px;
    }

    .index-section5 .head {
        padding: 10px;
        padding-left: 20px;
    }

    .index-section5 .head .icon {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .index-section5 .head .text {
        font-size: 14px;
    }

    .index-section5 .head .arrow {
        width: 20px;
    }

    .index-section5 .body {
        padding: 10px 20px;
        padding-bottom: 20px;
        display: none;
    }

    .index-section5 .body .text1 {
        font-size: 20px;
    }

    .index-section5 .body .desc {
        margin-top: 20px;
        font-size: 12px;
    }

    .index-section5 .body .desc p {
        margin-bottom: 10px;
    }

    .index-section5 .body .desc p:before {
        border-top: 2px solid transparent;
        border-bottom: 2px solid transparent;
        border-left: 4px solid #fff;
        margin-right: 10px;
    }
}

/* ==================== 首页 - 板块五 End ==================== */
/* ==================== 首页 - 板块六 Start ==================== */
.index-section6 {
    overflow: hidden;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: url(//cdn.myxypt.com/e7a844a7/24/04/837ceac6b2702c97f63a669982ced505e4b9e045.png) center no-repeat;
}

.index-section6 .body {
    display: flex;
    justify-content: space-between;
}

.index-section6 .left-body {
    min-width: 0;
    flex-grow: 1;
    position: relative;
    margin-right: 1.83rem;
    padding: 0.3rem 0;
}

.index-section6 .left-body:after {
    content: "";
    display: block;
    width: 1.43rem;
    height: 1.43rem;
    background: url(//cdn.myxypt.com/e7a844a7/23/12/a9f301f505438c1b9f90da8d685f34ffca3ea9a7.png) no-repeat center;
    background-size: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.index-section6 .left-body .desc {
    line-height: 1.8;
    font-size: 0.3rem;
    color: #333;
    text-align: justify;
}

.index-section6 .left-body .more-btn {
    margin-top: 1.33rem;
    display: block;
    width: 3rem;
    height: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.27rem;
    color: #fff;
    border-radius: 1.67rem;
    background-color: #0d5bc1;
    transition: all 0.4s;
}

.index-section6 .left-body .more-btn:hover {
    transform: translateX(0.17rem);
}

.index-section6 .image {
    width: 12.67rem;
    flex-shrink: 0;
}

.index-section6 .image iframe {
    width: 100% !important;
    height: 100% !important;
}

.index-section6 .index-title {
    position: relative;
    margin-bottom: 0.58rem;
    text-align: left;
}

.index-section6 .index-title:after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.05rem;
    margin-top: 0.5rem;
    background-color: #0d5bc1;
}

.index-section6 .index-title .text1 {
    font-size: 0.33rem;
    color: #0d5bc1;
}

.index-section6 .index-title .text2 {
    font-size: 0.67rem;
    color: #333;
}

.index-section6 .itembox {
    margin-top: 1.85rem;
    border-top: 1px solid #0d5bc1;
    display: flex;
    justify-content: space-between;
}

.index-section6 .item {
    position: relative;
    border-left: 1px solid #bbbbbb;
    padding: 0.5rem;
    padding-bottom: 0;
}

.index-section6 .item:before,
.index-section6 .item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -0.1rem;
}

.index-section6 .item:before {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 100%;
    background-color: #0d5bc1;
    top: -0.1rem;
}

.index-section6 .item:after {
    left: -0.03rem;
    width: 0.05rem;
    height: 1.17rem;
    background-color: #0d5bc1;
}

.index-section6 .item .text1 {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

.index-section6 .item .text2 {
    margin-top: 0.17rem;
    font-size: 0.27rem;
    line-height: 1.8;
    color: #666;
}

@media screen and (max-width: 749px) {
    .index-section6 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section6 .body {
        display: block;
    }

    .index-section6 .left-body {
        margin-right: 0;
        width: 100%;
    }

    .index-section6 .left-body:after {
        width: 40px;
        height: 40px;
    }

    .index-section6 .left-body .desc {
        font-size: 14px;
    }

    .index-section6 .left-body .more-btn {
        margin-top: 20px;
        width: 120px;
        height: 34px;
        font-size: 12px;
    }

    .index-section6 .left-body .more-btn:hover {
        transform: translateX(10px);
    }

    .index-section6 .image {
        width: 100%;
        margin-top: 20px;
    }

    .index-section6 .index-title {
        margin-bottom: 30px;
    }

    .index-section6 .index-title:after {
        width: 40px;
        height: 2px;
        margin-top: 20px;
    }

    .index-section6 .index-title .text1 {
        font-size: 14px;
    }

    .index-section6 .index-title .text2 {
        font-size: 22px;
    }

    .index-section6 .itembox {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .index-section6 .item {
        width: 50%;
        padding: 10px;
        margin-bottom: 10px;
    }

    .index-section6 .item:before,
    .index-section6 .item:after {
        left: -3px;
    }

    .index-section6 .item:before {
        width: 6px;
        height: 6px;
        top: -3px;
    }

    .index-section6 .item:after {
        left: -1px;
        width: 2px;
        height: 50px;
    }

    .index-section6 .item .text1 {
        font-size: 20px;
    }

    .index-section6 .item .text2 {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.6;
    }

    .index-section6 .image iframe {
        height: 220px !important;
    }
}

/* ==================== 首页 - 板块六 End ==================== */
/* ==================== 首页 - 板块七 Start ==================== */
.index-section7 {
    position: relative;
}

.index-section7 img {
    width: 100%;
}

@media screen and (min-width: 750px) {
    .index-section7 .index-title {
        top: 1.67rem;
        left: 2.67rem;
        position: absolute;
        text-align: left;
    }
}

/* ==================== 首页 - 板块七 End ==================== */
/* ==================== 首页 - 板块八 Start ==================== */
.index-section8 {
    padding-top: 1.17rem;
    /*padding-bottom: 2rem;*/
}

.index-section8 .swiper {
    position: relative;
}

.index-section8 .swiper-button-prev,
.index-section8 .swiper-button-next {
    width: 0.77rem;
    height: 0.77rem;
    border-radius: 100%;
    opacity: 1;
}

.index-section8 .swiper-button-prev.swiper-button-disabled,
.index-section8 .swiper-button-next.swiper-button-disabled {
    opacity: 1;
    background-color: #E6EEF9;
}

.index-section8 .swiper-button-prev.swiper-button-disabled:after,
.index-section8 .swiper-button-next.swiper-button-disabled:after {
    color: #0d5bc1;
}

.index-section8 .swiper-button-prev.swiper-button-disabled:after,
.index-section8 .swiper-button-next.swiper-button-disabled:after {
    font-size: 0.23rem;
}

.index-section8 .swiper-button-prev {
    left: -1.33rem;
}

.index-section8 .swiper-button-next {
    right: -1.33rem;
}

.index-section8 .swiper-slide {
    width: 16%;
}

.index-section8 .image {
    background-color: #ffffff;
    border: solid 0.07rem #efefef;
}

@media screen and (max-width: 749px) {

    .index-section7{
        margin-top: 20px;
    }

    .index-section8 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section8 .swiper-button-prev,
    .index-section8 .swiper-button-next {
        width: 26px;
        height: 26px;
    }

    .index-section8 .swiper-button-prev.swiper-button-disabled:after,
    .index-section8 .swiper-button-next.swiper-button-disabled:after {
        font-size: 12px;
    }

    .index-section8 .swiper-button-prev {
        left: -10px;
    }

    .index-section8 .swiper-button-next {
        right: -10px;
    }

    .index-section8 .image {
        border: solid 2px #efefef;
    }
}

/* ==================== 首页 - 板块八 End ==================== */
/* ==================== 首页 - 板块九 Start ==================== */
.index-section9 {
    padding-top: 1.17rem;
    padding-bottom: 1.33rem;
}

.index-section9 .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.42rem;
    border-bottom: 0.05rem solid #DBDBDB;
    width: 100%;
    margin-bottom: 1rem;
}

.index-section9 .head .tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.index-section9 .head .tab-item {
    padding: 0.25rem 0.17rem;
    min-width: 2.83rem;
    margin-right: 0.33rem;
    border-radius: 1.67rem;
    transition: all 0.4s;
    font-size: 0.3rem;
    line-height: 1.2;
    color: #666;
    font-weight: bold;
    text-align: center;
}

.index-section9 .head .tab-item.active {
    background-color: #0d5bc1;
    color: #fff;
    box-shadow: 0rem 0.23rem 0.23rem 0rem rgba(47, 49, 139, 0.2);
}

.index-section9 .more-btn {
    font-size: 0.27rem;
    color: #999;
    line-height: 1.8;
    transition: all 0.4s;
}

.index-section9 .more-btn:hover {
    color: #0d5bc1;
}

.index-section9 .body {
    display: flex;
    justify-content: space-between;
}

.index-section9 .left-body {
    display: block;
    width: 46%;
    transition: all 0.4s;
}

.index-section9 .left-body:hover {
    background-color: #0d5bc1;
}

.index-section9 .left-body:hover .date,
.index-section9 .left-body:hover .title,
.index-section9 .left-body:hover .desc {
    color: #fff;
}

.index-section9 .left-body:hover .info::before {
    background-color: #fff;
}

.index-section9 .left-body .image {
    width: 100%;
}

.index-section9 .left-body .info {
    position: relative;
    padding-top: 0.42rem;
    padding-left: 1.67rem;
    padding-bottom: 0.5rem;
    padding-right: 0.33rem;
}

.index-section9 .left-body .info::before {
    content: "";
    display: block;
    width: 0.13rem;
    height: 100%;
    position: absolute;
    top: -0.95rem;
    left: 0.93rem;
    background-color: #0d5bc1;
    z-index: 9;
    transition: all 0.4s;
}

.index-section9 .left-body .info .date {
    font-size: 0.27rem;
    color: #999;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    transition: all 0.4s;
}

.index-section9 .title {
    font-size: 0.33rem;
    color: #333;
    line-height: 1.2;
    transition: all 0.4s;
}

.index-section9 .desc {
    margin-top: 0.33rem;
    font-size: 0.25rem;
    color: #888;
    line-height: 1.8;
    text-align: justify;
    transition: all 0.4s;
}

.index-section9 .itembox {
    width: 47%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
}

.index-section9 .item {
    width: 100%;
    min-width: 0;
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #dcdcdc;
    transition: all 0.4s;
    padding-top: 0.33rem;
    padding-bottom: 0.33rem;
    max-height: 25%;
}

.index-section9 .item:hover {
    background-color: #0d5bc1;
}

.index-section9 .item:hover .date,
.index-section9 .item:hover .day,
.index-section9 .item:hover .year,
.index-section9 .item:hover .desc,
.index-section9 .item:hover .title {
    color: #fff;
}

.index-section9 .item .date {
    padding: 0 0.67rem;
    flex-shrink: 0;
    text-align: center;
}

.index-section9 .item .day {
    font-size: 1.17rem;
    line-height: 1;
    margin-bottom: 0.08rem;
    color: #333;
    font-weight: bold;
    transition: all 0.4s;
}

.index-section9 .item .year {
    font-size: 0.27rem;
    color: #999;
    transition: all 0.4s;
}

.index-section9 .item .info {
    min-width: 0;
    flex-grow: 1;
    padding-right: 0.67rem;
    transition: all 0.4s;
}

.index-section9 .item .title {
    transition: all 0.4s;
}

.index-section9 .item .desc {
    margin-top: 0.25rem;
    transition: all 0.4s;
}

@media screen and (max-width: 749px) {
    .index-section9 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .index-section9 .head {
        padding-bottom: 20px;
        border-bottom: 2px solid #DBDBDB;
        width: 100%;
        margin-bottom: 40px;
    }

    .index-section9 .head .tabs {
        flex-wrap: wrap;
        width: 100%;
    }

    .index-section9 .head .tab-item {
        width: 32%;
        padding: 8px 10px;
        min-width: inherit;
        margin-right: 0;
        font-size: 12px;
    }

    .index-section9 .head .tab-item:nth-child(3n-1) {
        margin-left: 2%;
        margin-right: 2%;
    }

    .index-section9 .head .tab-item:nth-child(3) ~ .tab-item {
        margin-top: 2%;
    }

    .index-section9 .head .tab-item.active {
        box-shadow: 0px 14px 14px 0px rgba(47, 49, 139, 0.2);
    }

    .index-section9 .more-btn {
        font-size: 14px;
        text-align: center;
        margin-top: 20px;
        display: block;
    }

    .index-section9 .body {
        display: block;
    }

    .index-section9 .left-body {
        width: 100%;
    }

    .index-section9 .left-body .info {
        padding-top: 20px;
        padding-left: 40px;
        padding-bottom: 20px;
        padding-right: 20px;
    }

    .index-section9 .left-body .info::before {
        width: 0px;
        top: -60%;
        left: 12px;
    }

    .index-section9 .left-body .info .date {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .index-section9 .title {
        font-size: 16px;
    }

    .index-section9 .desc {
        margin-top: 14px;
        font-size: 12px;
    }

    .index-section9 .itembox {
        width: 100%;
    }

    .index-section9 .item {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .index-section9 .item .date {
        padding: 0 20px;
    }

    .index-section9 .item .day {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .index-section9 .item .year {
        font-size: 12px;
    }

    .index-section9 .item .info {
        padding-right: 20px;
    }

    .index-section9 .item .desc {
        margin-top: 10px;
    }
}

/* ==================== 首页 - 板块九 End ==================== */
/* ==================== 友情链接样式 Start ==================== */
footer .foot-link {
    position: relative;
    z-index: 13;
    background-color: #2F318B;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

footer .foot-link img,
footer .foot-link span,
footer .foot-link a {
    position: relative;
    z-index: 3;
}

footer .foot-link span {
    color: #fff;
    font-size: 0.25rem;
    cursor: pointer;
    margin-right: 0.33rem;
    padding-left: 0.17rem;
    border-left: 0.08rem solid #fff;
}

footer .foot-link img {
    width: 0.5rem;
}

footer .foot-link a {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-size: 0.23rem;
}

footer .foot-link a:last-child:after {
    display: none;
}

footer .foot-link a:after {
    content: ",";
}

footer .foot-link a:hover {
    text-decoration: underline;
    color: #0d5bc1;
}

footer .foot-online-link {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    font-size: 0.2rem;
    padding: 0.17rem 0.33rem;
    display: none;
}

footer .foot-online-link a {
    color: #333;
    line-height: 1.8;
    font-size: 0.23rem;
}

footer .foot-online-link a:last-child:after {
    display: none;
}

footer .foot-online-link a:after {
    content: ",";
}

footer .foot-online-link a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 749px) {
    footer .foot-link {
        display: none;
        margin-top: 19.8px;
        font-size: 12px;
    }

    footer .foot-link a {
        font-size: 12px;
    }

    footer .foot-online-link {
        padding: 10.2px 15px;
    }

    footer .foot-online-link a {
        font-size: 12px;
    }
}

/* ==================== 友情链接样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
footer {
    background-size: cover;
}

footer .foot-top {
    display: flex;
    justify-content: space-between;
    padding-top: 1.0833rem;
    padding-bottom: 1.0833rem;
    border-bottom: 0.0167rem solid #4E4E4E;
    margin-bottom: 1.1667rem;
}

footer .foot-top .left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer .foot-top .logo {
    width: 4rem;
    flex-shrink: 0;
    margin-right: 1.2333rem;
    display: block;
}

footer .foot-top .text {
    font-size: 0.45rem;
    color: #fff;
    line-height: 1.2;
}

footer .foot-top form {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 9.1667rem;
    height: 1.0667rem;
    flex-shrink: 0;
}

footer .foot-top input {
    min-width: 0;
    flex-grow: 1;
    height: auto;
    background-color: #fff;
    padding: 0 0.3333rem;
    font-size: 0.2667rem;
}

footer .foot-top button {
    flex-shrink: 0;
    width: 1.3rem;
    height: 100%;
    background-color: #0d5bc1;
}

footer .foot-top button img {
    width: 0.5rem;
}

footer .head {
    display: block;
    font-size: 0.3rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

footer .foot-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 1.1667rem;
}

footer .foot-navbar {
    display: flex;
    align-items: stretch;
}

footer .foot-navbar .nav-item {
    min-width: 3.3333rem;
    padding-right: 0.33rem;
}

footer .foot-navbar ul {
    width: 100%;
}

footer .foot-navbar ul > li:last-child {
    margin-right: 0;
}

footer .foot-navbar ul > li > a {
    font-size: 0.25rem;
    display: block;
    line-height: 1.5;
    margin-bottom: 0.17rem;
    transition: all 0.4s;
    color: rgba(255, 255, 255, 0.6);
}

footer .foot-navbar ul > li > a:hover {
    color: #fff;
}

footer .foot-contact .desc {
    font-size: 0.2667rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

footer .foot-qr {
    width: 2.1667rem;
    margin-right: 0.4167rem;
}

footer .foot-qr .qr-item {
    margin-bottom: 0.5rem;
}

footer .foot-qr .qr-item:last-child {
    margin-bottom: 0;
}

footer .foot-qr .text {
    font-size: 0.2333rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 0.1667rem;
}

footer .foot-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.25rem;
    text-align: center;
}

footer .foot-copyright a {
    color: inherit;
}

footer .foot-copyright a:hover {
    color: #0d5bc1;
}

footer .foot-link {
    background: none;
    padding-top: 0;
}

footer .foot-link .mxw-box {
    max-width: 100%;
}

@media screen and (min-width: 750px) {
    footer .foot-navbar .nav-item ul.row-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 5.6667rem;
    }

    footer .foot-navbar .nav-item ul.row-2 > li {
        width: 48%;
    }
}

@media screen and (max-width: 749px) {
    footer {
        padding-bottom: 50px;
    }

    footer .foot-top {
        padding-top: 40px;
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 40px;
        display: block;
    }

    footer .foot-top .left {
        display: block;
        margin-bottom: 30px;
    }

    footer .foot-top .logo {
        display: block;
        width: 180px;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 20px;
    }

    footer .foot-top .text {
        font-size: 16px;
        text-align: center;
    }

    footer .foot-top form {
        width: 100%;
        height: 40px;
    }

    footer .foot-top input {
        padding: 0 10px;
        font-size: 14px;
    }

    footer .foot-top button {
        width: 45px;
    }

    footer .foot-top button img {
        width: 50%;
    }

    footer .head {
        font-size: 16px;
        margin-bottom: 20px;
    }

    footer .foot-bottom {
        padding-bottom: 30px;
        display: block;
    }

    footer .foot-navbar {
        width: 100%;
        display: block;
    }

    footer .foot-navbar .nav-item {
        padding-right: 0;
        margin-bottom: 30px;
    }

    footer .foot-navbar .head {
        font-size: 16px;
        margin-bottom: 20px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }

    footer .foot-navbar ul {
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
    }

    footer .foot-navbar ul > li {
        width: 48%;
    }

    footer .foot-navbar ul > li:nth-child(2n-1) {
        margin-right: 4%;
    }

    footer .foot-navbar ul > li:nth-child(2) ~ li {
        margin-top: 4%;
    }

    footer .foot-navbar ul > li > a {
        font-size: 13px;
        margin-bottom: 0;
    }

    footer .foot-contact .desc {
        font-size: 14px;
        line-height: 2;
    }

    footer .foot-qr {
        width: 100%;
        margin-right: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: center; /* 水平居中 */
        align-items: center;
    }

    footer .foot-qr .qr-item {
        width: 48%;
        margin-bottom: 0;
        text-align: center;
    }

    footer .foot-qr .qr-item:last-child {
        margin-bottom: 0;
    }

    footer .foot-qr .text {
        font-size: 14px;
        margin-top: 10px;
    }

    footer .foot-copyright {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
        line-height: 1.8;
    }
}

/* ==================== 底部样式 End ==================== */
.page-position {
    z-index: 10 !important;
}

@media screen and (min-width: 750px) {
    .xypg-product-list {
        margin-left: 0;
        margin-right: 0;
    }

    .xypg-left-con2 .xypg-left-nav {
        display: flex;
        flex-wrap: wrap;
        padding-top: 40px;
    }

    .xypg-left-con2 .xypg-left-nav > li {
        width: 16.25%;
        margin-right: 0.5%;
        max-width: inherit;
        padding-top: 10px;
        border-bottom: 0;
        padding-bottom: 0;
        position: relative;
    }

    .xypg-left-con2 .xypg-left-nav > li:nth-child(6n) {
        margin-right: 0;
    }

    .xypg-left-con2 .xypg-left-nav > li:nth-child(6) ~ li {
        margin-top: 0.5%;
    }

    .xypg-left-con2 .xypg-left-nav > li > a {
        padding: 10px 10px;
        font-size: 16px;
        height: 100%;
        white-space: inherit !important;
        overflow: hidden !important;
        word-break: break-all !important;
        text-overflow: ellipsis !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .xypg-left-con2 .xypg-left-nav > li:hover .xypg-left-subnav {
        opacity: 1;
        visibility: visible;
    }

    .xypg-left-nav .xypg-left-subnav {
        display: block;
        /*position: absolute;*/
        top: 100%;
        left: 0;
        transform: translateY(0px);
        z-index: 20;
        background-color: #fff;
        border-radius: 5px;
        width: 100%;
        /*
        box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.3);*/
        transition: all .4s;

    }

    .xypg-left-nav .xypg-left-subnav li a {
        padding: 10px 8px;
        font-size: 14px;
        transition: all .4s;
    }

    .xypg-left-nav .xypg-left-subnav li a:hover {
        color: #0d5bc1;
    }

    .xypg-left-nav .xypg-left-subnav > li.clicked > a {
        color: #fff;
        background-color: #0d5bc1;
        border-radius: 5px;
    }
}

.xypg-right-content iframe {
    max-width: 100% !important;
}

@media screen and (max-width: 749px) {


    .swiper-height{
        height: auto;
    }
    .page-position {
        margin-top: 20px;
        padding: 10px 0;
    }

    .page-banner .nybt h3 {
        font-size: 16px;
    }

    .page-banner .nybt {
        top: 50%;
        transform: translateY(-50%);
    }

    .xypg-product-list li h3 a {
        font-size: 14px;
        font-weight: normal;
    }

    .xypg-right-content iframe {
        width: 100% !important;
        height: 220px !important;
    }
}