@charset "utf-8";
    /*初始化*/
    
    * {
        padding: 0;
        margin: 0;
        outline: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    html {
        font-size: calc(100vw/19.2);
    }
    
    html,
    body {
        width: 100%;
        height: auto;
        min-height: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    body {
        font-family: 'Source Han Sans CN', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'Source Han Serif CN', 'SimSun', 'SimHei', 'Arial';
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        background: #fff;
    }
    
    img {
        border: 0;
        vertical-align: top;
    }
    
    li {
        list-style: none;
    }
    
    div,
    ul,
    ol,
    li,
    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
    }
    
    a,
    a:hover,
    a:focus {
        text-decoration: none;
        color: #525252;
    }
    
    input,
    button {
        -webkit-appearance: none;
        border-radius: 0;
    }
    
    textarea {
        resize: none;
        overflow: auto;
    }
    
    input,
    button,
    textarea,
    select {
        border: 0;
        font-family: inherit;
        font-size: inherit;
        color: inherit;
        background: transparent;
    }
    /*字体*/
    /* placeholder修改 */
    
    input::-webkit-input-placeholder,
    textarea::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #999 !important;
    }
    
    input:-moz-placeholder,
    textarea:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #999 !important;
        opacity: 1;
    }
    
    input::-moz-placeholder,
    textarea::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #999 !important;
        opacity: 1;
    }
    
    input::-ms-input-placeholder,
    textarea::-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #999 !important;
    }
    
    select {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        white-space: nowrap;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    select::-ms-expand {
        display: none;
    }
    /*公共样式*/
    
    .c-clear {
        zoom: 1;
    }
    
    .c-clear:after {
        content: '';
        display: block;
        clear: both;
    }
    
    .c-fl {
        float: left;
    }
    
    .c-fr {
        float: right;
    }
    
    .c-container {
        position: relative;
        margin: 0 auto;
        width: 72.917666%;
    }
    
    body.c-open {
        position: fixed;
        left: 0;
        width: 100%;
    }
    
    .c-common-btn1 {
        position: relative;
        display: inline-block;
        border: 2px solid #fff;
    }
    
    .c-common-btn1::before {
        content: "";
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        top: -2px;
        left: -2px;
        width: 0;
        height: -webkit-calc(100% + 4px);
        height: calc(100% + 4px);
        background: #fff;
        transition: .5s;
    }
    
    .c-common-btn1 div {
        position: relative;
        z-index: 2;
        font-size: 14px;
        line-height: 56px;
        padding: 0 72px 0 40px;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524103703_376827181.png)no-repeat right 40px center / 22px;
        color: #fff;
        transition: all .5s;
    }
    
    .c-common-btn1:hover div {
        color: #555;
        background-image: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524103744_1662047164.png);
    }
    
    .c-common-btn1:hover::before {
        width: -webkit-calc(100% + 4px);
        width: calc(100% + 4px);
    }
    
    .c-common-btn1.c-dt {
        border-color: #1c208b;
        background-color: #1c208b;
    }
    
    .c-common-btn1.c-dt::before {
        background: #e80113;
    }
    
    .c-common-btn1.c-dt:hover div {
        color: #fff;
        background-image: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524103703_376827181.png);
    }
    /* 动画 */
    
    @-webkit-keyframes jump {
        0% {
            opacity: 1;
            top: -10px;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            top: 11px;
        }
    }
    
    @keyframes jump {
        0% {
            opacity: 1;
            top: -10px;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            top: 11px;
        }
    }
    
    @-webkit-keyframes jump2 {
        0% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(-20px)
        }
        100% {
            transform: translateY(0)
        }
    }
    
    @keyframes jump2 {
        0% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(-20px)
        }
        100% {
            transform: translateY(0)
        }
    }
    
    @-webkit-keyframes enlarge {
        0% {
            opacity: 1;
            transform: scale(0);
        }
        100% {
            opacity: 0;
            transform: scale(2.5);
        }
    }
    
    @keyframes enlarge {
        0% {
            opacity: 1;
            transform: scale(0);
        }
        100% {
            opacity: 0;
            transform: scale(2.5);
        }
    }
    
    @keyframes goTop {
        0% {
            opacity: 0;
            -webkit-transform: translateY(80px);
            transform: translateY(80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    @-webkit-keyframes goTop {
        0% {
            opacity: 0;
            -webkit-transform: translateY(80px);
            transform: translateY(80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    
    .goTop {
        -webkit-animation-name: goTop;
        animation-name: goTop;
    }
    
    @keyframes goRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    @-webkit-keyframes goRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-80px);
            transform: translateX(-80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    .goRight {
        -webkit-animation-name: goRight;
        animation-name: goRight;
    }
    
    @keyframes goLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(80px);
            transform: translateX(80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    @-webkit-keyframes goLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-80px);
            transform: translateX(80px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    .goLeft {
        -webkit-animation-name: goLeft;
        animation-name: goLeft;
    }
    /* 占位标签，设置导航样式 */
    
    #c-placeholder {
        height: 90px;
    }
    /*顶部*/
    
    #c-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 900;
        width: 100%;
        line-height: 90px;
        text-align: center;
        color: #fff;
        transition: all 0.5s;
background-color: rgba(0, 0, 0, 0.5);
    }
    
    #c-header::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        transition: .5s;
    }
    
    #c-header.c-style2::before {
        border-bottom: 1px solid #ececec;
    }
    
    #c-header a {
        color: #fff;
        transition: all 0.5s;
    }
    
    #c-header.c-head-move {
        top: -100px;
    }
    
    #c-header.c-style2 {
        color: #333;
        background: #fff;
        border: 0;
    }
    
    #c-header.c-style2 a {
        color: #777;
    }
    
    #c-header>.c-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 0 50px;
        width: 100%;
    }
    
    #c-header .c-right-box {
        display: flex;
        align-items: center;
    }
    /*顶部logo*/
    
    #c-header .c-logo {
        display: flex;
        align-items: center;
    }
    
    #c-header .c-logo .c-img-box {
        display: flex;
        align-items: center;
    }
    
    #c-header .c-logo img {
        height: 55px;
    }
    
    #c-header .c-logo img:nth-child(2),
    #c-header.c-style2 .c-logo img:nth-child(1) {
        display: none;
    }
    
    #c-header.c-style2 .c-logo img:nth-child(2) {
        display: inline-block;
    }
    /*顶部pc导航*/
    
    #c-header .c-nav {
        display: flex;
        align-items: center;
    }
    
    #c-header .c-nav>li {
        position: relative;
        margin-right: 50px;
    }
    
    #c-header .c-nav li a {
        position: relative;
        display: block;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        font-size: 16px;
    }
    
    #c-header .c-nav>li>a:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: #1c208b;
        transition: .5s;
    }
    
    #c-header .c-nav li a i {
        margin-left: 8px;
        font-size: 20px;
    }
    
    #c-header .c-nav ul {
        position: absolute;
        top: 99%;
        left: 50%;
        display: none;
        width: 150px;
        line-height: 40px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    
    #c-header .c-nav ul li {
        border-bottom: 1px solid #eee;
    }
    
    #c-header .c-nav ul li:last-child {
        border: 0;
    }
    
    #c-header .c-nav ul a {
        color: #777777;
    }
    
    #c-header.c-style2 .c-nav li.on>a,
    #c-header .c-nav li:hover>a {
        color: #1c208b;
    }
    
    #c-header.c-style2 .c-nav li.on>a::before,
    #c-header .c-nav>li:hover>a::before {
        left: 0;
        width: 100%;
    }
    /*顶部移动端导航*/
    
    #c-header .c-nav2 {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        font-size: 14px;
        line-height: 50px;
        background: #fff;
        overflow-y: auto;
        transition: all 0.5s;
    }
    
    .c-open #c-header .c-nav2 {
        height: calc(100vh - 60px);
        height: -webkit-calc(100vh - 60px);
    }
    
    #c-header .c-nav2 a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 20px;
        border-bottom: 1px solid #f1f1f1;
        color: #333;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    #c-header .c-nav2>li:first-child {
        border-top: 1px solid #f1f1f1;
    }
    
    #c-header .c-nav2 li:hover>a,
    #c-header .c-nav2 li.active>a {
        color: #1c208b
    }
    
    #c-header .c-nav2 li a i {
        font-size: 20px;
    }
    
    #c-header .c-nav2 li ul {
        display: none;
    }
    
    #c-header .c-nav2 li ul a {
        padding-left: 15px;
    }
    
    #c-header .c-nav2 li li li a {
        padding-left: 30px;
    }
    /*导航开关*/
    
    #c-header .c-menu {
        padding: 34px 30px;
        width: 90px;
        height: 90px;
        cursor: pointer;
        transition: .5s;
    }
    
    #c-header .c-menu:hover {
        background: #1c208b;
    }
    
    #c-header .c-menu i {
        position: relative;
        display: block;
        height: 3px;
        background: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    #c-header.c-style2 .c-menu i {
        background: #555555;
    }
    
    #c-header .c-menu:hover i {
        background: #fff;
    }
    
    #c-header .c-menu i:nth-child(2) {
        margin: 6px 0;
    }
    /* 顶部功能区 */
    
    #c-header .c-gn {
        display: flex;
        align-items: center;
    }
    
    #c-header .c-gn .c-phone {
        display: flex;
        align-items: center;
        padding: 0 50px;
        border-left: 1px solid rgba(255, 255, 255, .2);
        border-right: 1px solid rgba(255, 255, 255, .2);
    }
    
    #c-header.c-style2 .c-gn .c-phone {
        border-left: 1px solid #ececec;
        border-right: 1px solid #ececec;
    }
    
    #c-header .c-gn .c-phone .c-ico {
        margin-right: 10px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240523/20240523174313_1209000841.png)no-repeat center / 16px auto;
    }
    
    #c-header.c-style2 .c-gn .c-phone .c-ico {
        background: #1c208b url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104032_1846080993.png)no-repeat center / 16px auto;
    }
    
    #c-header .c-gn .c-phone span {
        font-weight: bold;
        font-size: 20px;
        font-family: "Arial";
    }
    /* 弹窗导航 */
    
    #c-fixed-nav {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 910;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all .5s;
    }
    
    #c-fixed-nav.on {
        height: 100%;
    }
    
    #c-fixed-nav .c-main-wrap {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240522/20240522143311_1725179208.jpg)no-repeat center bottom / cover;
        transition: all .5s;
    }
    
    #c-fixed-nav .c-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 50px;
        border-bottom: 1px solid #1b22d2;
    }
    
    #c-fixed-nav .c-top .c-logo2 img {
        height: 55px;
    }
    
    #c-fixed-nav .c-menu {
        padding: 34px 30px;
        width: 90px;
        height: 90px;
        cursor: pointer;
        transition: .5s;
        background: #e80113;
    }
    
    #c-fixed-nav .c-menu i {
        position: relative;
        display: block;
        height: 3px;
        background: #fff;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    
    #c-fixed-nav .c-menu i:nth-child(1) {
        margin-top: 9px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    
    #c-fixed-nav .c-menu i:nth-child(2) {
        margin-top: -3px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    #c-fixed-nav .c-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        height: -webkit-calc(100vh - 91px);
        height: calc(100vh - 91px);
        color: #fff;
    }
    
    #c-fixed-nav .c-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    #c-fixed-nav .c-left {
        width: 57%;
    }
    
    #c-fixed-nav .c-right {
        width: 30%;
    }
    
    #c-fixed-nav .c-left .c-title {
        position: relative;
        padding-bottom: 35px;
        font-size: 44px;
        line-height: 54px;
        border-bottom: 1px solid #1b22d2;
    }
    
    #c-fixed-nav .c-left .c-title::before {
        content: "";
        position: absolute;
        bottom: -1px;
        width: 210px;
        height: 1px;
        background: #fff;
    }
    
    #c-fixed-nav .c-left .c-title span {
        font-weight: normal;
    }
    
    #c-fixed-nav .c-left .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 50px 0 20px;
        border-bottom: 1px solid #1b22d2;
    }
    
    #c-fixed-nav .c-left .c-list li {
        margin-bottom: 30px;
        padding-right: 20px;
        width: 40%;
        line-height: 26px;
        opacity: .9;
    }
    
    #c-fixed-nav .c-left .c-list li:nth-child(even) {
        width: 60%;
    }
    
    #c-fixed-nav .c-left .c-list .c-title2 {
        font-weight: bold;
    }
    
    #c-fixed-nav .c-left .c-list .c-text.c-dt {
        font-family: "Arial";
        font-size: 20px;
        line-height: 30px;
    }
    
    #c-fixed-nav form .c-text2 {
        padding: 45px 0 25px;
        font-size: 22px;
        line-height: 32px;
    }
    
    #c-fixed-nav form .c-box {
        display: flex;
        align-items: flex-start;
        margin: 0 -5px;
    }
    
    #c-fixed-nav form .c-box .c-wrap {
        padding: 0 5px 10px;
        width: 50%;
    }
    
    #c-fixed-nav input::-webkit-input-placeholder,
    #c-fixed-nav textarea::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #a4b1cc !important;
    }
    
    #c-fixed-nav input:-moz-placeholder,
    #c-fixed-nav textarea:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #a4b1cc !important;
        opacity: 1;
    }
    
    #c-fixed-nav input::-moz-placeholder,
    #c-fixed-nav textarea::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #a4b1cc !important;
        opacity: 1;
    }
    
    #c-fixed-nav input::-ms-input-placeholder,
    #c-fixed-nav textarea::-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #a4b1cc !important;
    }
    
    #c-fixed-nav form .c-box .c-wrap input {
        padding: 0 20px;
        width: 100%;
        height: 60px;
        line-height: 58px;
        border: 1px solid #1b22d2;
    }
    
    #c-fixed-nav form .c-box2 {
        display: flex;
        align-items: flex-start;
    }
    
    #c-fixed-nav form .c-box2 input {
        padding: 0 20px;
        width: -webkit-calc(100% - 150px);
        width: calc(100% - 150px);
        height: 60px;
        line-height: 58px;
        border: 1px solid #1b22d2;
    }
    
    #c-fixed-nav form .c-box2 button {
        width: 150px;
        font-weight: bold;
        line-height: 60px;
        color: #333;
        background: #fff;
        cursor: pointer;
    }
    
    #c-fixed-nav .c-right .c-title {
        position: relative;
        padding-top: 0px;
        padding-bottom: 35px;
        font-size: 44px;
        line-height: 54px;
        border-bottom: 1px solid #1b22d2;
    }
    
    #c-fixed-nav .c-right .c-title::before {
        content: "";
        position: absolute;
        bottom: -1px;
        width: 100px;
        height: 1px;
        background: #fff;
    }
    
    #c-fixed-nav .c-right .c-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 0 -10px -40px;
        padding-top: 45px;
    }
    
    #c-fixed-nav .c-right .c-nav li {
        margin-bottom: 30px;
        padding: 0 10px;
        width: 50%;
        font-size: 22px;
        line-height: 32px;
    }
    
    #c-fixed-nav .c-right .c-nav a {
        opacity: .9;
        color: #fff;
        transition: .5s;
        font-size: 16px;
    }
    
    #c-fixed-nav .c-right .c-nav a:hover {
        opacity: 1;
    }
    /*首页轮播图*/
    
    .c-banner1 {
        background: #fff;
    }
    
    .c-banner1 .c-sb {
        position: absolute;
        bottom: 50px;
        left: 50%;
        z-index: 10;
        text-align: center;
        color: #fff;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        cursor: pointer;
    }
    
    .c-banner1 .c-sb .c-wrap {
        position: relative;
        margin: 0 auto;
        width: 30px;
        height: 38px;
        border: 2px solid #fff;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .c-banner1 .c-sb .c-wrap .c-line {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 2px;
        height: 10px;
        background: #fff;
        animation: jump 1.5s linear infinite;
        -webkit-animation: jump 1.5s linear infinite;
    }
    
    .c-banner1 .c-sb .c-text {
        padding-top: 5px;
        font-size: 12px;
        line-height: 22px;
    }
    
    .c-banner1 .swiper-slide {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    
    .c-banner1 video {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        background: #000;
    }
    
    .c-banner1 .c-mb {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .c-banner1 .c-mask {
        position: absolute;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .3) url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104120_1068792043.png)repeat;
    }
    
    .c-banner1 .c-text-box {
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 4;
        width: 100%;
        color: #fff;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
    }
    
    .c-banner1 .c-text-box .c-num {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 35px;
    }
    
    .c-banner1 .c-text-box .c-num img {
        width: 188px;
    }
    
    .c-banner1 .c-text-box .c-num p {
        margin-left: 10px;
        font-size: 24px;
        line-height: 1;
    }
    
    .c-banner1 .c-text-box .c-title {
        font-size: 48px;
        line-height: 58px;
    }
    
    .c-banner1 .c-text-box .c-text {
        margin-bottom: 75px;
        font-size: 20px;
        line-height: 30px;
    }
    /* 回到顶部 */
    
    #c-go-top {
        opacity: .4;
        display: none;
        position: fixed;
        z-index: 5;
        bottom: 30px;
        right: 30px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: url() no-repeat center;
        transition: all .5s linear;
        background-size: 30px;
        border-radius: 50%;
    }
    
    #c-go-top:hover {
        opacity: 1;
    }
    /* 当前定位 */
    
    #c-site {
        padding: 15px 0;
        background: #fff;
    }
    
    #c-site p {
        display: flex;
        align-items: flex-start;
        font-size: 14px;
        line-height: 24px;
        color: #999;
    }
    
    #c-site a {
        color: #999;
        transition: .5s;
    }
    
    #c-site a:hover {
        color: #1c208b;
    }
    
    #c-site a:first-child {
        display: inline-block;
        width: 15px;
        height: 24px;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104322_1346860948.png)no-repeat center / 100% auto;
    }
    
    #c-site a:first-child:hover {
        background-image: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104349_1937319657.png);
    }
    
    #c-site span {
        display: inline-block;
        padding: 0 10px;
    }
    /* 顶部banner */
    
    #c-top-banner {
        position: relative;
        height: 700px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        overflow: hidden;
    }
    
    #c-top-banner .c-wrap {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
    }
    
    #c-top-banner .c-box {
        position: relative;
        padding: 55px 0 70px;
        overflow: hidden;
    }
    
    #c-top-banner .c-box .c-num {
        position: absolute;
        bottom: -20px;
        right: 0;
        font-family: "Arial";
        font-size: 124px;
        line-height: 1;
        color: #f3f3f3;
    }
    
    #c-top-banner .c-box2 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    #c-top-banner .c-box2 .c-title {
        font-size: 48px;
        line-height: 58px;
    }
    
    #c-top-banner .c-box2 .c-text {
        padding: 10px 0 25px;
        font-size: 26px;
        line-height: 36px;
        color: #777;
    }
    
    #c-top-banner .c-box2 .c-line {
        width: 10px;
        height: 6px;
        background: #1c208b;
    }
    
    #c-top-banner .c-box2 .c-lt {
        width: -webkit-calc(100% - 60px);
        width: calc(100% - 60px);
    }
    
    #c-top-banner .c-box2 .c-gt {
        width: 36px;
        height: 36px;
        border: 1px solid #999;
        border-radius: 50%;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104444_1791231770.png)no-repeat center / 10px auto;
    }
    /* #c-top-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
} */
    /* 顶部菜单 */
    
    #c-top-menu {
        background: #f7f7f7;
        border-bottom: 1px solid #fafafa;
    }
    
    #c-top-menu .c-list {
        position: relative;
        display: flex;
        align-items: flex-start;
        overflow-x: auto;
        margin-bottom: -1px;
    }
    
    #c-top-menu .c-list li {
        flex: none;
        margin-right: .4rem;
        line-height: 80px;
        width: 190px;
    }
    
    #c-top-menu .c-list li a {
        position: relative;
        display: block;
        color: #666;
        transition: .5s;
    }
    
    #c-top-menu .c-list li a::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        border-bottom: 2px solid #1c208b;
        transition: .5s;
    }
    
    #c-top-menu .c-list li.active a,
    #c-top-menu .c-list li:hover a {
        color: #1c208b;
    }
    
    #c-top-menu .c-list li.active a::before,
    #c-top-menu .c-list li:hover a::before {
        width: 100%;
    }
    
    #c-top-menu.c-click-move .c-list li {
        width: 25%;
        margin: 0;
    }
    /* 分享 */
    
    div.bsLogoLink,
    #bsBox .bsTop,
    #bsBox #bsMorePanel {
        width: 100% !important;
    }
    
    .bFind-wrapper-top {
        height: 26px !important;
    }
    
    #bsBox #bsMorePanel {
        height: 373px !important;
    }
    
    .bsPlatDiv {
        height: 312px !important;
    }
    
    .bFind {
        width: 204px !important;
    }
    
    #bsBox {
        height: 408px !important;
        width: 276px !important;
        margin-left: -138px !important;
    }
    
    .bsTop {
        width: 208px !important;
    }
    
    .bsFrameDiv div {
        width: 208px !important;
        height: 208px !important;
    }
    
    .bsFrameDiv img {
        width: 166px !important;
        height: 166px !important;
    }
    /* 公共标题 */
    
    .c-common-title {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .c-common-title .c-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    .c-common-title .c-text {
        max-width: 810px;
        margin: 0 auto;
        padding-top: 20px;
        font-size: 20px;
        line-height: 30px;
        color: #777;
    }
    /* 关于我们  */
    
    #c-about {
        padding: 90px 0;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104530_1432548650.jpg)no-repeat center / cover;
    }
    
    #c-about .c-box-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    #c-about .c-box-wrap .c-text-box1 {
        position: relative;
        width: 42.1%;
    }
    
    #c-about .c-box-wrap .c-text-box1::before {
        content: "";
        position: absolute;
        top: 0;
        left: -68px;
        width: 40px;
        height: 32px;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104601_1708527253.png)no-repeat center / 40px auto;
    }
    
    #c-about .c-box-wrap .c-text-box1 .c-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    #c-about .c-box-wrap .c-text-box2 {
        width: 46.4%;
    }
    
    #c-about .c-box-wrap .c-text-box2 .c-title {
        font-size: 35px;
        line-height: 32px;
    }
    
    #c-about .c-box-wrap .c-text-box2 .c-text {
        padding: 25px 0 45px;
        line-height: 26px;
        color: #777;
    }
    /* 数据 */
    
    #c-data {
        padding: 50px 0;
        background: #fff;
    }
    
    #c-data .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }
    
    #c-data .c-list li {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        text-align: center;
    }
    
    #c-data .c-list .c-num-move {
        font-family: "Arial";
        font-size: 60px;
        line-height: 1;
    }
    
    #c-data .c-list .c-text {
        margin-left: 10px;
        line-height: 26px;
        color: #777;
    }
    
    #c-data.c-dt {
        background: #eff1f5;
        text-align: center;
    }
    
    #c-data.c-dt .c-list li {
        justify-content: center;
    }
    
    #c-data.c-dt .c-list .c-text {
        flex: 100%;
    }
    /* 弹窗表单 */
    
    #c-pop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 910;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .1);
    }
    
    #c-pop form {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 90%;
        max-width: 690px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #fff;
    }
    
    #c-pop form .c-close {
        position: absolute;
        top: -50px;
        right: -50px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(0, 0, 0, .5) url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104638_1838526552.png)no-repeat center /16px auto;
        cursor: pointer;
    }
    
    #c-pop form .c-title-box {
        padding: 25px 40px;
        text-align: center;
        color: #fff;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104708_73099544.jpg)no-repeat center / cover;
    }
    
    #c-pop form .c-title-box .c-title {
        margin-bottom: 5px;
        font-size: 32px;
        line-height: 42px;
    }
    
    #c-pop form .c-title-box .c-text {
        font-weight: bold;
        line-height: 26px;
    }
    
    #c-pop form .c-box {
        padding: 40px;
    }
    
    #c-pop form .c-list {
        margin: 0 -5px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    #c-pop form .c-list li {
        width: 50%;
        padding: 0 5px 20px;
    }
    
    #c-pop form .c-list li:nth-child(3),
    #c-pop form .c-list li:nth-child(4) {
        width: 100%;
    }
    
    #c-pop form .c-list li:nth-child(5) {
        width: 70%;
    }
    
    #c-pop form .c-list li:nth-child(6) {
        width: 30%;
    }
    
    #c-pop form .c-list li:nth-child(5),
    #c-pop form .c-list li:nth-child(6) {
        padding-bottom: 0;
    }
    
    #c-pop form .c-list .c-text2 {
        margin-bottom: 10px;
        font-weight: bold;
        line-height: 1;
    }
    
    #c-pop form .c-list input {
        padding: 0 20px;
        width: 100%;
        height: 60px;
        line-height: 60px;
        background: #f4f4f4;
    }
    
    #c-pop form .c-list select {
        padding: 0 40px 0 20px;
        width: 100%;
        height: 60px;
        line-height: 60px;
        background: #f4f4f4 url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104816_424054075.png)no-repeat right 20px center / 14px auto;
    }
    
    #c-pop form .c-list textarea {
        padding: 15px 20px;
        width: 100%;
        height: 120px;
        line-height: 26px;
        background: #f4f4f4;
    }
    
    #c-pop form button {
        width: 100%;
        font-weight: bold;
        font-size: 16px;
        line-height: 70px;
        color: #fff;
        background: #1c208b;
        cursor: pointer;
    }
    
    #c-pop form a {
        display: block;
        border: 2px solid #1c208b;
        font-weight: bold;
        font-size: 16px;
        line-height: 66px;
        text-align: center;
        color: #1c208b;
    }
    /* 右侧浮窗 */
    
    #c-right-fixed {
        display: none;
        position: fixed;
        top: 50%;
        right: 5px;
        z-index: 905;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    #c-right-fixed a {
        position: relative;
        right: 0;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        width: 70px;
        height: 70px;
        text-align: center;
        color: #777;
        background: #fff;
    }
    
    #c-right-fixed a:last-child {
        margin-bottom: 0;
    }
    
    #c-right-fixed a:nth-child(3) {
        z-index: 2;
    }
    
    #c-right-fixed .c-wrap {
        border: 1px solid #eff1f5;
        padding: 11px 0;
        width: 70px;
        height: 70px;
        flex: 0 0 70px;
        transition: all .5s;
    }
    
    #c-right-fixed .c-wrap img {
        height: 28px;
    }
    
    #c-right-fixed .c-wrap img:nth-child(2),
    #c-right-fixed a:hover .c-wrap img:nth-child(1) {
        display: none;
    }
    
    #c-right-fixed a:hover .c-wrap img:nth-child(2) {
        display: inline-block;
    }
    
    #c-right-fixed .c-title {
        padding-top: 5px;
        font-size: 12px;
        line-height: 1;
    }
    
    #c-right-fixed a:last-child .c-title {
        font-family: "Arial";
        font-weight: bold;
    }
    
    #c-right-fixed .c-text {
        flex: 0 0 auto;
        width: 170px;
        font-weight: bold;
        font-size: 20px;
        line-height: 40px;
        border-left: 1px solid #e80113;
        color: #fff;
        transition: all .5s;
    }
    
    #c-right-fixed .c-img {
        position: absolute;
        right: -300px;
        top: -1px;
        z-index: -1;
        padding: 5px;
        width: 148px;
        border: 1px solid #eff1f5;
        background: #fff;
        transition: .5s;
        box-shadow: 0 0 50px rgba(0, 0, 0, .1);
    }
    
    #c-right-fixed .c-img::before {
        content: "";
        position: absolute;
        top: 34px;
        right: -8px;
        border-left: 8px solid #fff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    
    #c-right-fixed .c-img img {
        width: 100%;
    }
    
    #c-right-fixed .c-img .c-text2 {
        padding: 5px;
        font-size: 14px;
        line-height: 24px;
        text-align: center;
        color: #777;
    }
    
    #c-right-fixed a .c-box {
        position: absolute;
        top: 0;
        left: 0;
        padding: 11px 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        background: #fff;
        transition: all .5s;
        overflow: hidden;
    }
    
    #c-right-fixed a:hover .c-wrap {
        color: #fff;
        border-color: #1c208b;
        background: #1c208b;
    }
    
    #c-right-fixed a:last-child .c-wrap {
        color: #fff;
        border-color: #1c208b;
        background: #1c208b;
    }
    
    #c-right-fixed a:first-child:hover .c-box {
        width: 250px;
        height: 70px;
        -webkit-transform: translateX(-180px);
        transform: translateX(-180px);
        overflow: none;
        background: #1c208b;
    }
    
    #c-right-fixed a:hover .c-img {
        right: 84px;
    }
    /* 联系我们 */
    
    #c-contact {
        padding: 90px 0;
    }
    
    #c-contact .c-top {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 50px;
        padding-bottom: 50px;
        border-bottom: 1px solid #dedede;
    }
    
    #c-contact .c-top .c-title {
        font-size: 40px;
        line-height: 50px;
    }
    
    #c-contact .c-top .c-wrap {
        display: flex;
        align-items: center;
    }
    
    #c-contact .c-top .c-wrap .c-lt {
        text-align: right;
    }
    
    #c-contact .c-top .c-wrap .c-text {
        line-height: 26px;
        color: #555;
    }
    
    #c-contact .c-top .c-wrap .c-phone {
        margin-bottom: 25px;
        font-family: "Arial";
        font-weight: bold;
        font-size: 36px;
        line-height: 46px;
    }
    
    #c-contact .c-top .c-wrap .c-line {
        display: inline-block;
        vertical-align: top;
        width: 10px;
        height: 6px;
        background: #1c208b;
    }
    
    #c-contact .c-top .c-wrap .c-gt {
        margin-left: 30px;
        width: 132px;
        height: 132px;
        border: 1px solid #dedede;
    }
    
    #c-contact .c-top .c-wrap .c-gt img {
        width: 100%;
        height: 100%;
    }
    
    #c-contact .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    
    #c-contact .c-list li {
        display: flex;
        align-items: center;
    }
    
    #c-contact .c-list li:nth-child(2) {
        justify-content: center;
        padding: 0 20px;
        width: 48%;
        border-left: 1px solid #dedede;
        border-right: 1px solid #dedede;
    }
    
    #c-contact .c-list .c-ico {
        margin-right: 20px;
        width: 80px;
        height: 80px;
        border: 1px solid #333;
        border-radius: 50%;
        flex: 0 0 80px;
    }
    
    #c-contact .c-list .c-ico img {
        width: 100%;
        height: 100%;
    }
    
    #c-contact .c-list .c-title {
        font-size: 18px;
        line-height: 28px;
    }
    
    #c-contact .c-list .c-text {
        font-size: 14px;
        line-height: 24px;
        color: #777;
    }
    /* 联系我们表单 */
    
    #c-contact2 {
        padding: 90px 0;
        background: #eff1f5;
    }
    
    #c-contact2 .c-list {
        margin: 0 -5px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    
    #c-contact2 .c-list li {
        margin-bottom: 10px;
        position: relative;
        width: 50%;
        padding: 0 5px;
    }
    
    #c-contact2 .c-list li:nth-child(5),
    #c-contact2 .c-list li:nth-child(6) {
        width: 100%;
    }
    
    #c-contact2 .c-list input {
        padding: 0 20px;
        width: 100%;
        height: 80px;
        line-height: 80px;
        background: #fff;
    }
    
    #c-contact2 .c-list li:nth-child(1) input,
    #c-contact2 .c-list li:nth-child(2) input {
        padding-right: 50px;
    }
    
    #c-contact2 .c-list i {
        position: absolute;
        top: 50%;
        right: 20px;
        height: 10px;
        font-size: 20px;
        font-style: normal;
        line-height: 1;
        color: #1c208b;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    #c-contact2 .c-list textarea {
        width: 100%;
        height: 200px;
        padding: 25px 20px;
        line-height: 26px;
        background: #fff;
        overflow-y: auto;
    }
    
    #c-contact2 .c-list .c-text {
        padding: 10px 0 20px;
        line-height: 26px;
        color: #555;
    }
    
    #c-contact2 .c-list button {
        width: 100%;
        line-height: 80px;
        font-size: 22px;
        color: #fff;
        background: #1c208b;
        cursor: pointer;
    }
    
    #c-contact2 .c-list li:last-child button {
        color: #555;
        background: #dadde3;
    }
    /* 公共盒子 */
    
    .c-common-box {
        padding: 90px 0;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .c-common-box .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: 0 -10px;
    }
    
    .c-common-box .c-list li {
        padding: 0 10px;
        width: 50%;
    }
    
    .c-common-box .c-list .c-wrap {
        padding: 40px;
        border-radius: 5px;
        text-align: center;
        background: #fff;
    }
    
    .c-common-box .c-list .c-wrap .c-title {
        font-size: 32px;
        line-height: 42px;
    }
    
    .c-common-box .c-list .c-wrap .c-line {
        margin: 15px auto;
        width: 10px;
        height: 5px;
        background: #1c208b;
    }
    
    .c-common-box .c-list .c-wrap .c-text {
        line-height: 26px;
        color: #555;
    }
    /* 专注 */
    
    #c-absorbed {
        padding: 90px 0;
        background: #fff;
    }
    
    #c-absorbed .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        margin: 0 -10px -20px;
    }
    
    #c-absorbed .c-list li {
        margin-bottom: 20px;
        padding: 0 10px;
        text-align: center;
    }
    
    #c-absorbed .c-list .c-ico {
        margin: 0 auto 20px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: #eff1f5;
    }
    
    #c-absorbed .c-list .c-ico img {
        width: 100%;
        height: 100%;
    }
    
    #c-absorbed .c-list .c-title {
        font-size: 24px;
        line-height: 34px;
    }
    
    #c-absorbed .c-list .c-text {
        line-height: 26px;
        color: #555;
        max-width: 260px;
    }
    /* 专注 */
    
    #c-process {
        padding: 90px 0;
        background: #eff1f5;
    }
    
    #c-process .c-list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: -20px;
    }
    
    #c-process .c-list li {
        width: -webkit-calc(25% - 60px);
        width: calc(25% - 60px);
        margin-bottom: 20px;
        text-align: center;
    }
    
    #c-process .c-list li:last-child {
        display: none;
    }
    
    #c-process .c-list li:nth-child(even) {
        width: 80px;
    }
    
    #c-process .c-list .c-bg {
        margin-top: 60px;
        height: 40px;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104850_674538767.png)no-repeat center / 100% auto;
    }
    
    #c-process .c-list .c-ico {
        margin: 0 auto 20px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: #fff;
    }
    
    #c-process .c-list .c-ico img {
        width: 100%;
        height: 100%;
    }
    
    #c-process .c-list .c-title {
        font-size: 24px;
        line-height: 34px;
    }
    
    #c-process .c-list .c-text {
        line-height: 26px;
        color: #555;
    }
    /* 数据 */
    
    #c-data2 {
        padding: 90px 0;
        color: #fff;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    #c-data2 .c-list {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }
    
    #c-data2 .c-list li {
        margin: 0 60px 20px;
        width: 200px;
        height: 200px;
        border: 8px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        overflow: hidden;
    }
    
    #c-data2 .c-list .c-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        text-align: center;
        background: rgba(0, 60, 158, .6);
    }
    
    #c-data2 .c-list .c-wrap .c-num {
        font-family: "Arial";
        font-size: 58px;
        line-height: 1;
    }
    
    #c-data2 .c-list .c-wrap .c-num i {
        font-style: normal;
        font-size: 24px;
    }
    
    #c-data2 .c-list .c-wrap .c-title {
        padding-top: 5px;
        font-size: 22px;
        line-height: 32px;
    }
    
    #c-data2 .c-text-box {
        margin: 0 auto;
        max-width: 1100px;
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }
    /* 提交成功弹窗 */
    
    #c-pop2 {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 910;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .1);
    }
    
    #c-pop2 .c-box {
        position: absolute;
        top: 50%;
        left: 50%;
        padding: 80px 40px;
        width: 90%;
        max-width: 440px;
        background: #fff;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    
    #c-pop2 .c-box .c-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        height: 50px;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524104932_462066367.png)no-repeat center / 24px auto;
        cursor: pointer;
    }
    
    #c-pop2 .c-box .c-ico {
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 94px;
        height: 94px;
        border-radius: 50%;
        background: #eff1f5 url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524105004_476509349.png)no-repeat center / 36px auto;
    }
    
    #c-pop2 .c-box .c-text {
        padding: 25px 0 35px;
        font-size: 20px;
        line-height: 30px;
        text-align: center;
        color: #888;
    }
    
    #c-pop2 .c-box .c-btn {
        margin: 0 auto;
        width: 200px;
        font-weight: bold;
        font-size: 22px;
        line-height: 70px;
        text-align: center;
        border-radius: 35px;
        color: #fff;
        background: #003c9e;
        cursor: pointer;
    }
    
    #hi-img-pop {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        text-align: center;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    #hi-img-pop * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    #hi-img-pop .hi-close {
        position: fixed;
        top: 85%;
        left: 50%;
        margin-left: -25px;
        width: 40px;
        height: 40px;
        color: #fff;
        background: #fff;
        border-radius: 50%;
        transition: .3s;
        cursor: pointer;
    }
    
    #hi-img-pop .hi-close:after,
    #hi-img-pop .hi-close:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 5;
        width: 20px;
        height: 2px;
        margin: -1px 0 0 -10px;
        background: #333;
        transition: .3s;
    }
    
    #hi-img-pop .hi-close:hover {
        background: #005CE6;
    }
    
    #hi-img-pop .hi-close:hover:after,
    #hi-img-pop .hi-close:hover:before {
        background: #fff;
    }
    
    #hi-img-pop .hi-close:after {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    #hi-img-pop .hi-close:before {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    
    #hi-img-pop img {
        position: fixed;
        left: 50%;
        top: 50%;
        max-width: 90%;
        max-height: 65%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    /* 头部 */
    
    #c-header .c-gn .c-phone {
        position: relative;
    }
    
    #c-header .c-gn .c-phone .z-img {
        position: absolute;
        width: 100%;
        left: 0;
        top: .9rem;
        background-color: #fff;
        text-align: center;
        padding: .3rem;
        display: none;
    }
    
    #c-header .c-gn .c-phone .z-img img {
        max-width: 100%;
    }
    
    #c-header .c-gn .c-phone:hover .z-img {
        display: block;
    }
    /* 二维码弹窗 */
    
    .erweialt {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 910;
        overflow: hidden;
        display: none;
    }
    
    .erweialt .bag {
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: 0.5;
    }
    
    .erweialt .cont {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        border-radius: 10px;
        width: 92%;
        max-width: 400px;
        padding: 50px 20px;
        text-align: center;
    }
    
    @media (max-width: 767px) {
        .erweialt .cont {
            padding: 36px 20px;
        }
    }
    
    .erweialt .cont .close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 100%;
        left: 100%;
        width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.5);
        cursor: pointer;
        border-radius: 50%;
    }
    
    @media (max-width: 767px) {
        .erweialt .cont .close {
            left: initial;
            bottom: initial;
            right: -16px;
            top: -16px;
            width: 42px;
            height: 42px;
        }
    }
    
    .erweialt .cont .close img {
        width: 40%;
    }
    
    .erweialt .cont .img {
        margin: 0 auto 26px;
        width: 120px;
    }
    
    @media (max-width: 767px) {
        .erweialt .cont .img {
            width: 100px;
            margin-bottom: 20px;
        }
    }
    
    .erweialt .cont .img img {
        width: 100%!important;
        height: auto!important;
    }
    
    .erweialt .cont .tit {
        color: #1c208b;
        font-size: 26px;
    }
    
    @media (max-width: 767px) {
        .erweialt .cont .tit {
            font-size: 22px;
        }
    }
    /*产品*/
    
    .cpdhgbhs {
        width: 100%;
        padding: 80px 0px 80px 0px;
        background: #f2f3f3;
    }
    
    .protab a {
        display: inline-block;
        height: 88px;
        background: #fff;
        vertical-align: top;
        width: 6.6%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 18px;
        color: #333333;
        line-height: 88px;
        position: relative;
        font-weight: lighter;
    }
    
    .protab a:after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        background: #1c208b;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        left: 0;
        right: 0;
        transition: all .3s ease;
        margin: 0 auto;
        bottom: 16px;
        transform: rotateY(90deg);
        opacity: 0;
    }
    
    .protab a:hover:after {
        transform: rotateY(0);
        opacity: 1;
    }
    
    .protab a:hover {
        color: #fff;
        background: #1c208b;
    }
    
    .protab {
        margin: 50px 0;
        text-align: center;
    }
    
    .proshow {
        padding: 0 2%;
    }
    
    .proshow td {
        display: inline-block;
        padding: 0 !important;
        width: 23.6%;
        border: 6px solid #fff;
        position: relative;
    }
    
    .proshow td:after {
        content: '';
        display: block;
        position: absolute;
        top: 100%;
        width: 100%;
        left: 0;
        height: 5px;
        background: #fff;
    }
    
    .proshow tr {
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
    
    .proshow tr+tr {
        margin-top: 1%;
        margin-top: calc(1% + 5px);
    }
    
    .proshow td a,
    .proshow td span {
        display: block;
        position: relative;
        overflow: hidden;
    }
    
    .proshow td>span {
        width: 100% !important;
    }
    
    .proshow td br {
        display: none;
    }
    
    .proshow td span a {
        line-height: 68px;
        font-size: 16px;
        color: #333333;
        font-weight: lighter;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        background: #fff;
    }
    
    .proshow td a img {
        transition: all .6s ease;
        width: 100%;
        height: auto;
    }
    
    .proshow td:hover a img {
        transform: scale(1.1);
    }
    
    .proshow td>a:after {
        content: '';
        display: block;
        position: absolute;
        background: rgba(0, 0, 0, 0.4);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: all .3s ease;
        opacity: 0;
    }
    
    .proshow td>a:before {
        content: '';
        display: block;
        position: absolute;
        z-index: 3;
        width: 52px;
        height: 52px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524105034_957189672.png) no-repeat center;
        transition: all .3s ease;
        transform: scale(0);
    }
    
    .proshow td:hover>a:after {
        opacity: 1;
    }
    
    .proshow td:hover>a:before {
        transform: scale(1);
    }
    
    .proshow td:hover span a {
        color: #fff;
        background: #1c208b;
    }
    
    .jcd-title {
        position: relative;
    }
    
    .jcd-title.center {
        text-align: center;
    }
    
    .jcd-title.right {
        text-align: right;
    }
    
    .jcd-title .entitle-1 {
        color: #ccc;
    }
    
    .jcd-title .title-1 {
        color: #1c208b;
        height: 30px;
        font-family: 'Microsoft YaHei';
    }
    
    .jcd-title .title-1 h3 {
        font-weight: 900;
        color: #1c208b;
        line-height: 0px;
    }
    
    .jcd-title .title-3 h3 {
        font-weight: 900;
    }
    
    .jcd-title .title-2 {
        color: #111;
    }
    
    .jcd-title .text-2 {
        color: #333;
        margin-top: 2%;
        text-align: justify;
    }
    
    .font32 {
        font-size: 40px;
    }
    
    .font42 {
        font-size: 20px;
    }
    /*应用*/
    
    .index-application {
        overflow: hidden;
        padding: 5% 0;
    }
    
    .index-application-top {
        position: relative;
    }
    
    .brinyte-content {
        width: 90%;
        margin: auto;
    }
    
    .brinyte-title {
        overflow: hidden;
    }
    
    .brinyte-title .type-1 {
        color: #053a95;
    }
    
    .brinyte-title .title-1 {
        color: #222222;
        margin-top: 2rem;
    }
    
    .right-ctrl {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30%;
        text-align: right;
    }
    
    .right-ctrl .swiper-button-prev,
    .right-ctrl .swiper-button-next {
        margin-right: 0;
        margin-left: 1rem;
    }
    
    .index-application-bottom {
        position: relative;
        overflow: hidden;
        margin: 3% auto 0;
    }
    
    .index-application-main {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 11;
    }
    
    .index-application-swiper {
        overflow: hidden;
        width: 100%;
        height: 100%;
        background: #1c208b;
    }
    
    .index-application-swiper .application-bg {
        opacity: 0;
        width: 100%;
        height: 100%;
    }
    
    .index-application-swiper .swiper-slide {
        width: 17%;
        position: relative;
        transition: all .4s ease;
    }
    
    .index-application-swiper:hover .swiper-slide {
        width: 17%;
    }
    
    .index-application-swiper:hover .swiper-slide:hover {
        width: 30%;
    }
    
    .index-application-swiper .swiper-slide:last-child .index-application-item .img {
        -webkit-clip-path: none!important;
    }
    
    .index-application-swiper .swiper-slide .img::after {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(35, 38, 45, .8) 100%);
    }
    
    .index-application-item {
        position: absolute;
        top: 0;
        width: 100%;
        left: 0%;
        height: 100%;
        z-index: 11;
        transition: all .4s ease;
    }
    
    .index-application-item a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 50;
        -webkit-clip-path: ellipse(100% 100% at 0% 50%);
    }
    
    .index-application-item .bgimg {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        transition: all .4s ease;
    }
    
    .index-application-item .img {
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: #1c208b;
        transform: translateX(0%);
    }
    
    .index-application-item .img::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 96611;
        background: url('//memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524105245_1058608375.png');
        background-size: 100% 100%;
        opacity: 0;
    }
    
    .index-application-item .img::after {
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 11;
    }
    
    .index-application-item .pic,
    .index-application-item .pic img {
        width: 100%;
        height: 100%;
    }
    
    .index-application-item .title-1 {
        position: absolute;
        left: 0;
        bottom: 10%;
        width: 100%;
        text-align: center;
        color: #fff;
        z-index: 11;
        transition: all .4s ease;
        opacity: .7;
        font-size: 21px;
    }
    
    .index-application-item .more-2 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 11;
        margin: 0;
        opacity: 0;
        transition: all .4s ease;
    }
    
    .index-application-swiper .swiper-slide:hover .more-1 {
        opacity: 1;
    }
    
    .index-application-item.iai1 .bgimg {
        left: 0;
        width: 100%;
    }
    
    .index-application-item.iai2 .bgimg {
        left: 0;
        width: 100%;
    }
    
    .index-application-item.iai3 .bgimg {
        left: 0;
        width: 100%;
    }
    
    .index-application-item.iai4 .bgimg {
        left: 0;
        width: 100%;
    }
    
    .index-application-item.iai1 .title-1 {
        left: 0%;
    }
    
    .index-application-item.iai2 .title-1 {
        left: 0%;
    }
    
    .index-application-item.iai3 .title-1 {
        left: 0%;
    }
    
    .more-2 {
        margin-top: 2%;
    }
    
    .more-2 a,
    .more-2 strong {
        display: inline-block;
        width: 12.1vw;
        line-height: 3.5vw;
        border-radius: 3vw;
        background: #1c208b;
        border: 2px solid #1c208b;
        font-size: 0;
        text-align: center;
        font-weight: normal;
    }
    
    .more-2 i,
    .more-2 span {
        display: inline-block;
        vertical-align: middle;
    }
    
    .more-2 i {
        width: 14px;
        height: 14px;
        background: url('//memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524105318_1605538994.png') center no-repeat;
        background-size: 100%;
        margin-left: 0.8vw;
    }
    
    .more-2 span {
        color: #fff;
    }
    
    .more-2 a:hover {
        background: none;
        border: 2px solid #1c208b;
    }
    
    .more-2 a:hover span {
        color: #fff;
    }
    /*荣誉证书*/
    
    .honor_bg {
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240523/20240523103302_839814198.jpg) center no-repeat;
        overflow: hidden;
        margin-top: 100px;
    }
    
    .hzhb {
        width: 100%;
        margin: 0 auto;
        background: #fff;
        padding: 80px 0;
    }
    
    .usecon .swiper-slide-prev {
        transform: perspective(100px) rotateY(5deg) scale(.8) !important;
    }
    
    .usecon .swiper-slide-next {
        transform: perspective(100px) rotateY(-5deg) scale(.8) !important;
    }
    
    */ .usehor {
        z-index: 1;
        overflow: hidden;
        margin-top: 4.5vw;
    }
    
    .usehorcon * {
        box-sizing: border-box;
    }
    
    .usehorcon .swiper-slide {
        border: 1.8vw solid transparent;
    }
    
    .usehorcon {
        position: relative;
        overflow: hidden;
        width: 92%;
        margin: 48px auto 0;
    }
    
    .usehorcon .swiper-slide a {
        display: block;
    }
    
    .usehorcon .swiper-slide a img {
        width: 100%;
        height: auto;
        opacity: .5;
    }
    
    .usehorcon .swiper-slide.swiper-slide-active {
        opacity: 1;
        border: 0vw solid transparent;
        -moz-box-shadow: 0.2vw 0.2vw 0.2vw rgba(13, 33, 70, .3);
        -webkit-box-shadow: 0.2vw 0.2vw 0.2vw rgba(13, 33, 70, .3);
        box-shadow: 0.2vw 0.3vw 0.2vw rgba(13, 33, 70, .3);
    }
    
    .usehorcon .swiper-slide a p {
        position: absolute;
        width: 100%;
        top: 110%;
        text-align: center;
        font-size: 24px;
        color: #323636;
        opacity: 0;
        transition: all .3s ease;
        display: none;
    }
    /*.usehorcon .swiper-slide a p:before{ display:block; content:''; width:1px; height:50px; background:#dadede; margin:0 auto 20px auto;}*/
    
    .usehorcon .swiper-slide.swiper-slide-active a img {
        opacity: 1;
    }
    
    .usehorcon .swiper-slide.swiper-slide-active p {
        top: 95%;
        opacity: 1;
    }
    
    .usehor .usehorjt {
        position: relative;
        text-align: center;
    }
    
    .usehorjt>div+div {
        margin-left: 450px;
    }
    
    .usehorjt>div {
        position: relative;
        display: inline-block;
        vertical-align: top;
        background: #dadede;
        width: 64px;
        height: 56px;
        top: inherit;
        left: inherit;
        right: inherit;
    }
    /*为什么选择*/
    
     ::-webkit-scrollbar {
        height: 4px;
        width: 0px;
        background: #dbdedf;
    }
    
     ::-webkit-scrollbar-button {
        height: 0;
        width: 5px;
        background: #dbdedf;
    }
    
     ::-webkit-scrollbar-thumb {
        background-color: #999;
        box-shadow: inset 1px 1px 0 #999, inset 0 -1px 0 #999;
    }
    
    .uw-footer-content,
    .uw-index-banner-swiper .swiper-slide .text .title-2::after,
    .uw-index-banner-swiper .swiper-slide .text .title-2::before,
    .uw-index-techtnical-item .line-2::before,
    .uw-index-techtnical-item .title-1 i::before,
    .uw-index-techtnical-item .title-1 i {
        background: #fff;
    }
    
    .uw-title .uw-line-x {
        background: rgba(255, 255, 255, .5);
    }
    
    .viewmore a:hover,
    .uw-index-news-item .pic .viewmore span {
        background: #e80113;
    }
    
    .viewmore {
        width: 140px;
        height: 40px;
        line-height: 40px;
    }
    
    .viewmore a {
        line-height: 40px;
        padding: 12px 42px;
    }
    
    .uw-index-techtnical-item .line-2 {
        background: #cbcbcb;
    }
    
    .menu-toggle span.hamburger,
    .menu-toggle span.hamburger:after,
    .menu-toggle span.hamburger:before,
    .menu-toggle span.cross:before,
    .menu-toggle span.cross:after,
    .no-touch .menu-toggle span.hamburger,
    .no-touch .menu-toggle span.hamburger:after,
    .no-touch .menu-toggle span.hamburger:before,
    .uw-title .uw-line-x::before,
    .viewmore a,
    .uw-news-title .viewmore span,
    .uw-index-techtnical-item a.cur,
    .uw-index-about-bottom li:hover,
    .uw-index-division-item a:hover {
        background: #1c208b;
    }
    
    .uw-header .uw-left h5,
    .uw-header .uw-right,
    .uw-header .uw-right a,
    .uw-index-news-item .date-1 {
        color: #a3a3a3;
    }
    
    .viewmore a,
    .uw-index-banner-swiper .swiper-slide .text,
    .uw-title.baise,
    .uw-index-product-nav a,
    .uw-index-product-item .text,
    .uw-index-techtnical-item a.cur .title-1,
    .uw-index-about-bottom li:hover,
    .uw-index-division-item a:hover .title-1,
    .uw-index-division-item a:hover .num-1,
    .uw-index-division-item a:hover .viewmore span,
    .uw-path-content a,
    .uw-division-swiper .text,
    .uw-history-list-swiper,
    .uw-point span,
    .uw-honor-item .title-1,
    .uw-culture-item .text,
    .uw-page-nav a,
    .uw-investor-stock,
    .uw-report-item a,
    .uw-page-return a,
    .uw-news-exhibition-item .text,
    .uw-news-industry-swiper a,
    .uw-news-detail-title,
    .uw-aftersale-item a,
    .uw-talent-swiper .swiper-slide,
    .uw-joinuw-list,
    .uw-product-right-swiper .text.baise {
        color: #fff;
    }
    
    .uw-header .uw-right a:hover,
    .uw-footer-content-top-left-tel .service-number,
    .uw-index-product-nav a.cur,
    .uw-news-information-item a:hover .title-2,
    .uw-news-media-item a:hover .title-2,
    .uw-repair-left .tel-2 strong,
    .uw-download-item a:hover .title-1 {
        color: #1c208b;
    }
    
    .uw-footer-content-top-left-tel .service-social i {
        border: 1px solid #ccc;
    }
    
    .uw-footer-content-top-left-tel .service-social a:hover i,
    .uw-index-product-nav a.cur {
        border: 1px solid #1c208b;
    }
    
    .uw-footer-content-bottom {
        border-top: 1px solid #ccc;
    }
    
    .uw-index-product-nav a,
    .uw-index-division-item .viewmore {
        border: 1px solid #fff;
    }
    
    .uw-width-content {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        margin: auto;
        height: calc(100% - 100px);
    }
    
    .uw-width-content .uw-content {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0px;
        height: 100%;
        z-index: 11;
    }
    
    .uw-width-content .img {
        position: relative;
        width: 100%;
        height: 90%;
        overflow: hidden;
    }
    
    .uw-footer-content-top-left-tel .service-add,
    .uw-footer-content-bottom,
    .uw-footer-content-bottom a,
    .uw-path-content a,
    .uw-investor-stock .stock-3,
    .uw-aftersale-item .more-2,
    .uw-contact-add-swiper .text {
        font-size: 12px;
    }
    
    .uw-footer-content-top-right-nav ul li a {
        font-size: 13px;
    }
    
    .uw-footer-content-top-left-tel .service-hotline,
    .viewmore a,
    .uw-title .uw-text-cn,
    .uw-index-news-item .date-1,
    .uw-aboutus-content-right,
    .uw-division-swiper .text-2,
    .uw-division4-swiper .text-1,
    .uw-technical-text .text-3,
    .uw-culture-swiper .text-2,
    .uw-report-item .data-1,
    .uw-news-information-item .data-1,
    .uw-news-media-item .text-3,
    .uw-news-exhibition-item .text-3,
    .uw-news-exhibition-item .data-1,
    .uw-news-detail-title .text-3 span,
    .uw-aftersale-item .text-3,
    .uw-joinuw-left .text-2 span,
    .uw-talent-swiper .text-2,
    .uw-product-right-swiper .text-2 {
        font-size: 14px;
    }
    
    .uw-index-product-nav a,
    .uw-technical-text .title-2,
    .uw-team-item .text-2,
    .uw-news-information-item .title-2,
    .uw-repair-left .text-1,
    .uw-repair-left span,
    .uw-repair-left .email-3 strong,
    .uw-joinuw-left .text-2 strong,
    .uw-talent-swiper .title-1,
    .uw-contact-map-addtext .text-2,
    .uw-newsflash-item .title-2,
    .uw-product-text .text-2 {
        font-size: 16px;
    }
    
    .uw-footer-content-top-right-nav ul h4 {
        font-size: 17px;
    }
    
    .uw-prodcuts-nav-swiper a,
    .uw-division4-nav a,
    .uw-division4-swiper .title-2,
    .uw-business-bottom-swiper .guoqi span,
    .uw-honor-item .title-1,
    .uw-honor-nav a,
    .uw-culture-swiper .title-1,
    .uw-page-nav a,
    .uw-investor-stock .stock-2,
    .uw-news-media-item .title-2,
    .uw-news-video-swiper .title-2,
    .uw-aftersale-item .title-1,
    .uw-download-item .title-1,
    .uw-uwlife-swiper .title-2,
    .uw-joinuw-list-item .title-1 strong {
        font-size: 18px;
    }
    
    .uw-header .uw-left h5,
    .uw-header .uw-right,
    .uw-index-techtnical-item .title-1,
    .uw-index-about-bottom h5,
    .uw-index-news-item .title-1,
    .uw-report-item .title-2 {
        font-size: 18px;
        line-height: 28px;
    }
    
    .uw-division-nav a {
        font-size: 20px;
    }
    
    .uw-index-about-bottom span,
    .uw-index-division-item .title-1,
    .uw-aboutus-content-left,
    .uw-technical-nav-swiper strong,
    .uw-technical-text .title-1,
    .uw-history-nav-swiper .swiper-slide .data-2,
    .uw-culture-item .title-1,
    .uw-team-item a .name-1,
    .uw-investor-stock .stock-1 span,
    .uw-news-exhibition-item .title-2,
    .uw-news-industry-swiper .title-2,
    .uw-product-text .title-1 {
        font-size: 24px;
    }
    
    .uw-footer-content-top-left-tel .service-number,
    .uw-title .uw-text2,
    .uw-investor-stock .stock-4 li strong,
    .uw-news-xuanzhe a,
    .uw-repair-left strong,
    .uw-product-right-swiper .title-1 {
        font-size: 30px;
    }
    
    .uw-title .uw-title-cn,
    .uw-index-banner-swiper .swiper-slide .text .title-1,
    .uw-title .uw-text,
    .uw-division-swiper .title-1,
    .uw-news-detail-title .title-1,
    .uw-joinwindows-content .title-2 {
        font-size: 36px;
        line-height: 40px;
    }
    
    .uw-index-about-bottom strong,
    .uw-title .uw-title-1 {
        font-size: 48px;
    }
    
    .uw-news-title .title-1 {
        font-size: 60px;
        line-height: 70px;
    }
    
    .uw-title .uw-title-en,
    .uw-investor-line-content strong {
        font-size: 48px;
        line-height: 70px;
    }
    
    .uw-index-banner-swiper .swiper-slide .text .title-2 {
        font-size: 76px;
        line-height: 80px;
    }
    
    .uw-investor-stock .stock-1 strong {
        font-size: 80px;
    }
    
    .uw-index-division-item .num-1 {
        font-size: 180px;
    }
    
    .uw-history-list-swiper .data-1 {
        font-size: 230px;
    }
    
    .uw-title .uw-line-x {
        width: 100%;
        height: 3px;
        position: relative;
        margin: 10px 0 16px 0;
    }
    
    .uw-index-techtnical {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524105349_354798337.jpg) center bottom no-repeat;
    }
    
    .uw-index-techtnical .uw-width-content .img {
        height: 80%;
    }
    
    .uw-index-techtnical-content {
        width: 90%;
        margin: 5% auto auto auto;
    }
    
    .uw-index-techtnical-list {
        overflow: hidden;
        position: absolute;
        left: 5%;
        bottom: 0%;
        z-index: 20;
        width: 90%;
    }
    
    .uw-index-techtnical-item {
        float: left;
        width: 25%;
        margin: 0;
        border-left: 1px solid #ccc;
    }
    
    .uw-index-techtnical-item:first-child {
        border: none;
    }
    
    .uw-index-techtnical-item a {
        background-color: #fff;
        display: block;
        overflow: hidden;
        padding: 5%;
    }
    
    .uw-index-techtnical-item .pic {
        position: relative;
        background-color: #000;
        height: 200px;
    }
    
    .uw-index-techtnical-item .text {
        position: relative;
    }
    
    .uw-index-techtnical-item .title-1 {
        position: relative;
        margin: 20px 0;
        font-weight: bold;
        font-family: PingFang SC, Microsoft Yahei, Helvetica Neue, Arial;
    }
    
    .uw-index-techtnical-item .title-1 i {
        display: block;
        width: 14px;
        height: 2px;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -1px;
        display: none;
    }
    
    .uw-index-techtnical-item .title-1 i::before {
        content: '';
        width: 2px;
        height: 14px;
        position: absolute;
        left: 50%;
        margin-left: -1px;
        top: -6px;
        z-index: 11
    }
    
    .uw-index-techtnical-item .line-2 {
        position: relative;
        height: 2px;
        width: 100%;
    }
    
    .uw-index-techtnical-item .line-2::before {
        content: '';
        width: 0;
        height: 2px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 11;
        transition: all .4s ease;
    }
    
    .uw-index-techtnical-item a.cur .line-2::before {
        width: 30%;
    }
    
    .uw-index-techtnical-img-swiper {
        position: relative;
    }
    
    .uw-title {
        margin: auto;
        display: inline-block;
    }
    
    .uw-title .uw-title-cn {
        font-weight: bold;
        font-family: PingFang SC, Microsoft Yahei, Helvetica Neue, Arial;
    }
    
    .uw-title .uw-title-en {
        font-weight: 800;
        text-transform: uppercase;
        font-family: 'Montserrat-Bold';
        letter-spacing: -2px;
    }
    
    .uw-title .uw-titlecn {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 48px;
    }
    
    .uw-title .uw-titleen {
        font-weight: 800;
        text-transform: uppercase;
        font-size: 30px;
    }
    
    .uw-title .uw-line-x::before {
        content: '';
        width: 30%;
        height: 3px;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }
    
    .uw-title .uw-text {
        padding-top: 18px;
        padding-bottom: 20px;
    }
    
    .uw-title .uw-text-cn {
        padding: 30px 0;
        line-height: 24px;
    }
    
    .uw-title .uw-text2 {
        padding-top: 30px;
        font-weight: bold;
    }
    
    .uw-title .uw-title-1 {
        padding: 20px 0;
        font-weight: bold;
    }
    /*news*/
    
    .news_t {
        overflow: hidden;
    }
    
    .news_t dd:after {
        display: none;
    }
    
    .news_t p {
        font-size: 40px;
        color: #1c208b;
    }
    
    .news_t dd {
        font-size: 22px;
        color: #282f36;
        line-height: 2.5vw;
        font-weight: 100;
    }
    
    .news_box {
        margin: 0px auto;
        padding: 100px 0;
        overflow: hidden;
    }
    
    .news_bt {
        margin: auto;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }
    
    .nb_tab a {
        width: 60px;
        height: 60px;
        display: inline-block;
        vertical-align: top;
        color: #adadad;
        margin-top: 0px;
        text-align: center;
        background: #f7f7f7;
        border-radius: 100%;
    }
    
    .nb_tab a+a {
        margin-left: 7px;
    }
    
    .nb_tab a.cur {
        color: #1c208b;
        background-size: 400% 370%;
        background: #e7e8e9;
    }
    
    .nb_tab a i,
    .nb_tab a b {
        display: inline-block;
        vertical-align: top;
        line-height: 60px;
    }
    
    .nb_tab a b {
        font-size: 24px;
        font-weight: 100;
        letter-spacing: 0px;
        font-family: Arial;
    }
    
    @-webkit-keyframes Gradient {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    @-moz-keyframes Gradient {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    @keyframes Gradient {
        0% {
            background-position: 0% 50%
        }
        50% {
            background-position: 100% 50%
        }
        100% {
            background-position: 0% 50%
        }
    }
    
    .nbc_list+.nbc_list {
        display: none;
    }
    
    .nbcl_le {
        width: 68%;
        float: left;
    }
    
    .nbcl_le .news_div_item {
        width: 49%;
        display: inline-block;
        vertical-align: top;
        background: #fff;
        padding: 28px 30px;
    }
    
    .nbcl_le .news_div_item+.news_div_item {
        margin-left: 10px;
    }
    
    .nbcl_le .news_div_item_pic img {
        width: 288px;
    }
    
    .news_div_item_title a {
        font-size: 18px;
    }
    
    .nbcl_le .news_div_item_content {
        margin-top: 10px;
    }
    
    .nbcl_le .news_div_item_body {
        margin-top: 15px;
        line-height: 25px;
        color: #68686a;
        font-size: 15px;
        font-weight: 100;
    }
    
    .nbcl_le .news_div_item_date,
    .new_more {
        display: inline-block;
        vertical-align: top;
        font-size: 0;
        margin-top: 25px;
    }
    
    .nbcl_le .news_div_item_date>div {
        display: inline-block;
        vertical-align: top;
        color: #68686a;
    }
    
    .new_more {
        width: 24px;
        height: 24px;
        border-radius: 24px;
        border: 1px solid #9a9899;
        background: url() no-repeat right center;
        float: right;
        margin-top: 5px;
    }
    
    .nbcr_ri {
        width: 32%;
        float: right;
    }
    
    .nbcr_ri .news_div_item_pic {
        display: none;
    }
    
    .nbcr_ri .news_div_item {
        font-size: 0;
        border-top: 1px solid #e6e6e6;
        padding: 40px 0;
        position: relative;
        transition: 300ms;
        border-left: 1px #e6e6e6 solid;
        border-right: 1px #e6e6e6 solid;
    }
    
    .nbcr_ri .news_div_item:hover {
        box-shadow: 0 0 21px #d2d2d2;
        z-index: 1;
        transition: 300ms;
    }
    
    .nbcr_ri .news_div_item_date,
    .nbcr_ri .news_div_item_content {
        display: inline-block;
        vertical-align: top;
    }
    
    .nbcr_ri .news_div_item_date {
        width: 115px;
        text-align: center;
        font-size: 0;
    }
    
    .nbcr_ri .news_div_item_content {
        width: 432px;
        padding-left: 20px;
        border-left: 1px solid #f3f3f3;
        font-weight: 100;
        text-align: left;
    }
    
    .nbcr_ri .news_div_item_date>div {
        font-family: Arial;
    }
    
    .nbcr_ri .news_div_item_year,
    .nbcr_ri .news_div_item_month {
        display: inline-block;
        vertical-align: top;
        color: #565656;
        font-size: 14px;
    }
    
    .nbcr_ri .news_div_item_day {
        font-size: 47px;
        font-weight: bold;
        line-height: 55px;
    }
    
    .nbcr_ri .news_div_item_body {
        margin-top: 10px;
        line-height: 25px;
        color: #68686a;
        padding-right: 20px;
        font-size: 15px;
    }
    
    .nbcr_ri .news_div_item:nth-child(3) {
        border-bottom: 1px #e6e6e6 solid;
    }
    
    .new_t {
        float: left;
    }
    
    .new_ta {
        font-size: 40px;
        color: #333;
        line-height: 46px;
        display: block;
        width: 400px;
        margin: auto;
    }
    
    .new_ta span {
        font-weight: bold;
    }
    
    .new_tb {
        font-size: 20px;
        color: #666;
        line-height: 40px;
    }
    
    .gy .uw-title-cn {
        color: #1a1a1a;
    }
    
    .gy .uw-title-en {
        color: #999;
    }
    
    .gy .uw-line-x {
        background: rgba(220, 220, 220, .5);
    }
    
    .news_bg_lr .uw-title-cn {
        color: #1a1a1a;
    }
    
    .news_bg_lr .uw-title-en {
        color: #999;
    }
    
    .news_bg_lr .uw-line-x {
        background: rgba(220, 220, 220, .5);
    }
    /*æ–°é—»*/
    
    .news_bg {
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524110901_1270047018.jpg) center no-repeat;
        padding: 100px 0 94px 0;
    }
    
    .news_bg_lr {
        width: 90%;
        margin: 0 auto 50px;
        overflow: hidden;
    }
    
    .news_tab {
        height: 60px;
        overflow: hidden;
        text-align: center;
        float: right;
        margin-top: 40px;
    }
    
    .news_tab li {
        margin-left: 20px;
        width: 130px;
        float: left;
        height: 40px;
        line-height: 40px;
        text-align: center;
        position: relative;
        font-size: 18px;
        color: #414755;
        font-weight: lighter;
        transition: all .3s ease;
        cursor: pointer;
        border-radius: 20px;
    }
    
    .news_tab li:nth-child(1) {
        margin-left: 0px;
    }
    
    .news_tab li a {
        line-height: 40px;
        font-size: 18px;
        display: block;
    }
    
    .news_tab li.on {
        background: #1c208b;
        line-height: 60px;
        border-radius: 20px;
    }
    
    .news_tab li.on a {
        color: #fff;
    }
    
    .news_tab li.on a:hover {
        color: #fff;
    }
    
    .news_bg_c_bg {
        position: relative;
        height: 530px;
        margin-top: 22px;
        width: 90%;
        margin: auto;
    }
    
    .w1400 {
        width: 86%;
        margin: auto;
    }
    
    .newsshow ul {
        position: relative;
        height: 530px;
        font-weight: lighter;
    }
    
    .news_font_l {
        width: 31%;
        float: left;
    }
    
    .news_font_l .img {
        width: 100%;
        height: 307px;
        overflow: hidden;
    }
    
    .news_font_l .img img {
        width: 100%;
        height: 307px;
        transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        border-radius: 1vw 1vw 0 0;
    }
    
    .news_font_l .img img:hover {
        -webkit-transform: scale(1.12, 1.12);
        transform: scale(1.12, 1.12);
        -moz-transform: scale(1.12, 1.12);
    }
    
    .news_font_l .nfont {
        background: #fff;
        height: 220px;
        border-radius: 1vw 1vw 0 0;
    }
    
    .news_font_l .nfontes {
        padding: 30px;
    }
    
    .news_font_l .nfontes .h1 {
        font-size: 1.2vw;
        color: #4f5458;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .news_font_l .nfontes .h1 a {
        font-size: 1.2vw;
        color: #4f5458;
    }
    
    .news_font_l .nfontes .h1 a:hover {
        font-size: 18px;
        color: #1c208b;
    }
    
    .news_font_l .nfontes .h2 {
        color: #8f8f8f;
        line-height: 30px;
        font-size: 14px;
        padding-top: 10px;
    }
    
    .news_font_l .nfontes .h3 {
        margin-top: 30px;
    }
    
    .news_font_l .nfontes .h3 span {
        float: right;
        color: #646a70;
        font-size: 14px;
    }
    
    .news_font_c {
        width: 31%;
        float: left;
        height: 527px;
        background: #1c208b;
        margin-left: 3.5%;
        color: #fff;
        border-radius: 1vw;
    }
    
    .news_font_cs {
        padding: 70px 7.5%;
    }
    
    .news_font_cs .h1 {
        font-size: 18px;
    }
    
    .news_font_cs .h1_l {
        width: 14.8vw;
        float: left;
        color: #fff;
    }
    
    .news_font_cs .h1_c {
        width: 33px;
        float: left;
        color: #fff;
    }
    
    .news_font_cs .h1_r {
        float: right;
        font-size: 14px;
        color: #fff;
        line-height: 22px;
    }
    
    .news_font_cs .h2 {
        font-size: 1.2vw;
        font-weight: bold;
        margin-top: 30px;
        width: 380px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .news_font_cs .h2 a {
        font-size: 1.2vw;
        color: #fff;
        font-weight: normal;
        font-family: hs_m;
    }
    
    .news_font_cs .h2 a:hover {
        font-size: 1.2vw;
        color: #fff;
    }
    
    .news_font_cs .h3 {
        font-size: 14px;
        line-height: 30px;
        margin-top: 57px;
        color: #fff;
    }
    
    .news_font_cs .h4 {
        margin-top: 14.6%;
        font-size: 18px;
    }
    
    .news_font_cs .h4 a {
        font-size: 18px;
        color: #fff;
    }
    
    .news_font_cs .h4 a:hover {
        font-size: 18px;
        color: #e50112;
    }
    
    .news_font_cs .h4 span {
        padding-left: 15px;
    }
    
    .news_font_cs .h4 img {
        padding-top: 20px;
    }
    
    .news_font_r {
        width: 31%;
        float: right;
    }
    
    .news_font_r .n_right {
        width: 100%;
        height: 132.5px;
        margin-top: 60px;
    }
    
    .news_font_r .n_right:nth-child(1) {
        margin-top: 0px;
    }
    
    .news_font_r .n_right_l {
        width: 43%;
        float: left;
        overflow: hidden;
    }
    
    .news_font_r .n_right_l img {
        width: 100%;
        transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        border-radius: 1vw;
    }
    
    .news_font_r .n_right_l img:hover {
        -webkit-transform: scale(1.12, 1.12);
        transform: scale(1.12, 1.12);
        -moz-transform: scale(1.12, 1.12);
    }
    
    .news_font_r .n_right_r {
        width: 53%;
        float: right;
    }
    
    .news_font_r .n_right_r .h1 {
        font-size: 18px;
        color: #4f5458;
        width: 200px;
        height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        padding-top: 10px;
    }
    
    .news_font_r .n_right_r .h1 a {
        font-size: 18px;
        color: #4f5458;
    }
    
    .news_font_r .n_right_r .h1 a:hover {
        font-size: 18px;
        color: #1c208b;
    }
    
    .news_font_r .n_right_r .h2 {
        font-size: 14px;
        color: #8b8b8b;
        line-height: 25px;
        margin-top: 10px;
    }
    
    .news_font_r .n_right_r .h3 {
        margin-top: 20px;
    }
    
    .pro_tit b {
        font-size: 36px;
        font-weight: normal;
    }
    
    .pro_tit p {
        font-size: 18px;
        color: #999;
        line-height: 30px;
        font-weight: 100;
        margin-top: 10px;
    }
    
    .jec_c {
        display: flex;
        justify-content: space-between;
    }
    
    .jec_c li {
        width: 100%;
        display: flex;
        align-items: center;
        box-shadow: 1px 1px 38px rgba(0, 0, 0, 0.1);
        height: 126px;
        justify-content: center;
        border-radius: 0px;
        background: #fff;
        padding: 0% 5%;
    }
    
    .jec_c li span {
        font-size: 37px;
        color: #1c208b;
        position: relative;
    }
    
    .jec_c li span:after {
        position: absolute;
        content: "";
        width: 28px;
        height: 28px;
        border-radius: 100%;
        background: rgba(11, 52, 133, 0.3);
        top: -6px;
        right: 1px;
    }
    
    .jec_c>li>div {
        margin-left: 22px;
    }
    
    .jec_c>li>div>b {
        font-size: 24px;
        display: block;
        color: #222;
        font-weight: normal;
    }
    
    .jec_c>li>div>p {
        font-size: 15px;
        line-height: 22px;
        font-weight: normal;
        margin-top: 3px;
        color: #999;
    }
    
    .jec_bc {
        position: relative;
        margin-top: 0px;
    }
    
    @media (max-width:1550px) {
        .nbcl_le.fl a span {
            bottom: 30%;
        }
    }
    /*news*/
    
    .rx_bc {
        background: url(https://memberpic.114my.com.cn/yjbzcl/uploadfile/image/20240524/20240524103248_1051565890.jpg) center;
        text-align: center;
        padding: 150px 0;
        background-repeat: no-repeat;
        background-attachment: fixed;
        position: relative;
    }
    
    .rx_bc img {
        position: relative;
        z-index: 99;
    }
    
    .rx_bc:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .rx_bc>i {
        color: #fff;
        font-size: 42px;
        letter-spacing: 2px;
        font-weight: bold;
        z-index: 99;
        position: relative;
        display: block;
    }
    
    .rx_bc>em {
        color: #fff;
        font-size: 18px;
        margin: 24px 0 24px;
        font-weight: 100;
        z-index: 99;
        position: relative;
        display: block;
    }
    
    .rx_bc>p {
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99;
        position: relative;
        margin-top: 10px;
    }
    
    .rx_bc>p span {
        color: #fff;
        font-size: 30px;
        z-index: 99;
        position: relative;
    }
    
    .rx_bc>p i {
        color: #fff;
        margin-left: 9px;
        font-size: 16px;
        z-index: 99;
    }
    
    .rx_bc>p em {
        color: #fff;
        font-size: 32px;
        z-index: 99;
        font-family: "DIN-BOLD";
    }
    /* footer */
    
    .footer {
        position: relative;
        clear: both;
        overflow: hidden;
        color: #999999;
        border-top: 1px solid #e6e6e6;
    }
    
    .footer a:hover {
        color: #1c208b;
    }
    
    .footer-content {
        width: 90%;
        margin: auto;
        position: relative;
    }
    
    .footer-content-top {
        padding: 4% 0;
        overflow: hidden;
        border-bottom: 1px solid #ededed;
        position: relative;
    }
    
    .footer-top-left {
        float: left;
        width: 29%;
        text-align: left;
    }
    
    .footer-logo a {
        width: 100%;
        height: auto;
        display: block;
        padding-top: 15px;
    }
    
    .footer-contact {
        position: relative;
        margin-top: 7.7%;
    }
    
    .footer-contact .item-1 {
        display: block;
        padding: 5px 0;
    }
    
    .footer-contact .item-1 span {
        /*display: inline-block;*/
        vertical-align: middle;
        color: #555;
        /*font-family: 'MonLight';*/
        font-size: 16px;
    }
    
    .footer-contact .item-1 span:first-child {
        color: #000;
        padding-right: 16px;
        font-size: 16px;
    }
    
    .footer-top-right {
        width: 69%;
        text-align: right;
        float: right;
    }
    
    .footer-social {
        position: relative;
    }
    
    .footer-social li {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: middle;
        margin-left: 1%;
        position: relative;
    }
    
    .footer-social li a {
        position: relative;
        display: block;
        width: 52px;
        height: 52px;
        border: 2px solid rgba(80, 80, 80, 0.1);
        border-radius: 100%;
    }
    
    .footer-social li a:hover {
        background: #1c208b;
        border: 2px solid #1c208b;
    }
    
    .footer-social li a:hover img {
        filter: invert(1) brightness(5);
    }
    
    .footer-social li:last-child a {
        background: #1c208b;
        border: 2px solid #1c208b;
    }
    
    .footer-nav {
        margin-top: 3.2%;
        overflow: hidden;
    }
    
    .footer-nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        text-align: left;
        margin-left: 10%;
    }
    
    .footer-nav ul:first-child {
        margin: 0;
    }
    
    .footer-nav ul span {
        color: #000;
        display: block;
        padding-bottom: 16px;
        font-size: 18px;
        font-weight: 900;
    }
    
    .footer-nav ul li {
        list-style: none;
        margin: 0;
        padding-bottom: 7px;
    }
    
    .footer-nav ul a {
        color: #666;
        font-size: 15px;
    }
    
    .footer-nav ul a:hover {
        color: #1c208b;
        font-size: 15px;
    }
    
    .footer-content-bottom {
        clear: both;
        overflow: hidden;
        position: relative;
        padding: 1% 0;
    }
    
    .footer-copy,
    .footer-content-bottom a {
        color: #666666;
        font-size: 15px;
        text-align: left;
    }
    
    .footer-content-bottom a:hover {
        color: #1c208b;
    }
    
    .footer-link {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .footer-social li:hover .ewmshow-1 {
        display: block;
    }
    
    .ewmshow-1 {
        background: #ededed;
        padding: 5px;
        width: 100px;
        height: 100px;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 50%;
        border-radius: 4px;
        margin-left: -45px;
        display: none;
    }
    
    .ft-bottom {
        padding: 0 0 14px 0;
        line-height: 40px;
    }
    
    .ft-bottom .copyright {
        float: left;
        font-size: 14px;
        color: #666;
    }
    
    .ft-bottom .copyright p {
        color: #666;
    }
    
    .ft-bottom .copyright span {
        display: inline-block;
        color: #666;
    }
    
    .ft-bottom .copyright a {
        color: #666;
        font-weight: normal;
        font-size: 15它的;
    }
    
    .ft-bottom .copyright a:hover {
        color: #1c208b;
        /*text-decoration: underline;*/
    }
    
    .ft-bottom .flinks {
        float: right;
    }
    
    .ft-bottom .flinks dl {
        position: relative;
        height: 40px;
    }
    
    .ft-bottom .flinks dt {
        height: 43px;
        line-height: 43px;
        text-align: right;
        /*background: #1c208b;background: -moz-linear-gradient(45deg, #1c208b 0%, #11b1bf 100%);background: -webkit-linear-gradient(45deg, #1c208b 0%, #11b1bf 100%);background: linear-gradient(45deg, #1c208b 0%, #11b1bf 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1c208b', endColorstr='#11b1bf', GradientType=1 );*/
        color: #666;
    }
    
    .ft-bottom .flinks dt a {
        display: block;
        color: #666;
        font-size: 15px;
    }
    
    .ft-bottom .flinks dd {
        display: none;
        position: absolute;
        right: 0;
        bottom: 100%;
        overflow: hidden;
        background: #1c208b;
        background: -moz-linear-gradient(45deg, #1c208b 0%, #1c208b 100%);
        background: -webkit-linear-gradient(45deg, #1c208b 0%, #1c208b 100%);
        background: linear-gradient(45deg, #1c208b 0%, #1c208b 100%);
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#1c208b', endColorstr='#11b1bf', GradientType=1);
        padding-left: 15px;
    }
    
    .ft-bottom .flinks dd a {
        display: block;
        float: left;
        padding: 10px 0;
        font-size: 14px;
        color: #fff;
        text-align: center;
    }
    
    .ft-bottom .flinks dd a:hover {
        text-decoration: underline;
    }
    
    .ft-bottom .flinks dl:hover dt a:after {
        transform: rotate(90deg);
    }
    
    .ft-bottom .flinks dl:hover dd {
        display: block;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    em,
    i {
        font-weight: 400;
        font-style: normal;
    }
    
    .img {
        position: relative;
        overflow: hidden;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .pic {
        position: relative;
        overflow: hidden;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .img img,
    .pic img {
        max-width: 100%;
        max-height: 100%;
        margin: auto;
        padding: 0;
        border: 0;
        width: 100%;
        height: auto;
        border: none;
    }
    
    .img-center {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        width: auto!important;
        height: auto!important;
        z-index: 1;
        max-width: 100%;
        max-height: 100%;
    }
    
    .img-block {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .img-inline {
        display: inline-block;
        max-width: 100%;
    }
    
    .img-alt {
        opacity: 0;
    }
    
    * {
        scrollbar-color: #e5e5e5 #f7f7f9;
        scrollbar-width: thin
    }
    
    ::-webkit-scrollbar {
        width: 2px
    }
    
    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset006pxrgba(0, 0, 0, .3);
        background: #eaeaea;
        border-radius: 10px
    }
    
    ::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: rgba(0, 0, 0, .1);
        -webkit-box-shadow: inset006pxrgba(0, 0, 0, 1);
        background: #2f3133
    }
    
    ::-webkit-scrollbar-thumb:window-inactive {
        background: #2f3133
    }
    
    .layui-btn {
        height: 100%;
        border-radius: 0;
        background: #00c2b2
    }