* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --contentw: 70%;
}


body {
    font-size: 14px;
    font-family: pingfang, Century Gothic, microsoft yahei, Avenir, Helvetica, Arial, sans-serif;
    width: 100vw;
    overflow-x: hidden
}

img {
    width: auto;
    max-width: 100%;
    border: none;
    vertical-align: middle
}

a {
    color: #333;
    text-decoration: none
}

blockquote,
body,
button,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

ul,
ol {
    list-style: none;
    text-decoration: none
}


.button_more {
    position: relative;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    background: #fff;
    display: inline-block;
    padding: 3px 45px 3px 15px;
    line-height: 27px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #268BFF !important;
    cursor: pointer;
}

.button_more::before {
    position: absolute;
    right: 13px;
    bottom: 2px;
    content: url('../images/index/arrow-blue.png');
}


.button_more:hover {
    border: 1px solid #FFFFFF;
    background-color: #268BFF;
    color: #fff !important;
}

.button_more:hover::after {
    position: absolute;
    right: 13px;
    bottom: 2px;
    content: url('../images/index/arrow-white.png');
}

.button_white {
    position: relative;
    border-radius: 5px;
    border: 1px solid #FFFFFF;
    display: inline-block;
    padding: 3px 45px 3px 15px;
    line-height: 27px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff !important;
    cursor: pointer;
}

.button_white:hover {
    border: 1px solid #268BFF;
    background-color: #fFF;
    color: #268BFF !important;
}

.button_white:hover::after {
    position: absolute;
    right: 13px;
    bottom: 8%;
    content: url('../images/index/arrow-blue.png');
}

.button_white::after {
    position: absolute;
    right: 13px;
    bottom: 8%;
    content: url('../images/index/arrow-white.png');
}

.button_blue {
    position: relative;
    border-radius: 5px;
    border: 1px solid #268BFF;
    display: inline-block;
    padding: 3px 45px 3px 15px;
    line-height: 27px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #268BFF !important;
    cursor: pointer;
}

.button_blue::after {
    position: absolute;
    right: 13px;
    bottom: 2px;
    content: url('../images/index/arrow-blue.png');
}

.button_blue:hover {
    border: 1px solid #225bcf;
    color: #225bcf !important;
}


.button_blue:hover {
    border: 1px solid #fff;
    background-color: #268BFF;
    color: #fff !important;
}

.button_blue:hover::after {
    position: absolute;
    right: 13px;
    bottom: 2px;
    content: url('../images/index/arrow-white.png');
}

.button_grey {
    position: relative;
    border-radius: 5px;
    border: 1px solid #E2E2E2;
    display: inline-block;
    padding: 10px 25px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #999 !important;
    cursor: pointer;
}

.button_grey:hover {
    border: 1px solid #268BFF;
    color: #268BFF !important;
}

.button_blue_bg {
    display: inline-block;
    font-size: 16px;
    padding: 12px 60px;
    border: 0;
    border-radius: 30px;
    color: #fff;
    background-color: #268BFF;
    cursor: pointer;
}

.button_blue_bg:hover {
    background-color: #0366d6;
}

.button_blue_bg-small:hover {
    background-color: #0366d6;
}

.button_blue_bg-small {
    width: 130px;
    height: 32px;
    background: #3491FF;
    border-radius: 13px 13px 13px 13px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    font-style: normal;
    text-transform: none;
    border: 0;
    cursor: pointer;
}



input:-webkit-autofill {
    /*自动填入文本颜色*/
    /* -webkit-text-fill-color: #ffffff !important; */
    /*自动填入光标颜色*/
    caret-color: white;
    /*背景透明；原理：动画由透明变有背景色；参数：背景色属性、动画时间、动画速度曲线、延迟时间*/
    transition: background-color 0s linear 3600s;
}

.tykj-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    align-items: center;
}

.tykj-middle {
    position: relative;
    width: 100%;
    /* height: 100%; */
    /* background-color: #19edc9; */
    align-items: center;
    margin-top: 84px;
    min-height: 500px;
}

.tykj-footer {
    position: relative;
    width: 100%;
    bottom: 0;
    left: auto;
    display: flex;
    align-items: center;
    background: #494e5a;
    font-family: pingfang, Century Gothic, microsoft yahei, Avenir, Helvetica, Arial, sans-serif;
    font-weight: normal
}

@keyframes in {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes out {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.zoom-out {
    display: none;
    animation: out 2s
}

.zoom-in {
    display: block;
    animation: in 2s
}

.swiper-out {
    display: none
}

.swiper-in {
    display: block
}

@keyframes drop-menu {
    from {
        height: 0
    }

    to {
        height: 100%
    }
}

/* 一个模块 */
.module-content {
    width: var(--contentw);
    /* width: 70%; */
    padding: 0;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;

}

/* 一个模块的标题 */
.module-title {
    position: relative;
    width: 100%;
    font-weight: 400;
    font-size: 2.2rem;
    color: #333333;
    align-items: center;
    text-align: center;
    margin: 30px auto 20px;
}

/* 图片全屏适配 */
.img-full-screen {
    width: 100%;
    height: auto;
    /*保持原有比例 */
    object-fit: contain;
}

/* 图片全屏适配 */
.img-50 {
    width: 50%;
    height: auto;
    /*保持原有比例 */
    object-fit: contain;
}

.desc-center {
    width: 80%;
    margin: 30px auto 20px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

/* header头部begin */

.scroll-fix {
    transition: background .2s !important;
    background: #fff !important;
    backdrop-filter: none !important;
    box-shadow: 3px 5px 10px 0px rgba(37, 45, 51, .1)
}

#tykj-header-hover {
    background: #fff;
    box-shadow: none
}

#tykj-header-hover .header-nav-white .header-nav-logo .white {
    display: none !important
}

#tykj-header-hover .header-nav-white .header-nav-logo .black {
    display: block !important
}


#tykj-header-hover .header-nav-white .header-nav-right .nav-right-ul .nav-right-ul-item .item-a {
    color: #333
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-ul .nav-right-ul-item-active {
    border-bottom: 4px solid #ff9e00
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-ul .nav-right-ul-item-active .item-a {
    color: #ff9e00
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-ul .nav-right-ul-item:hover .item-a {
    color: #ff9e00
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-ul .nav-right-ul-item:hover .item-a::before {
    width: 100%;
    transition: .2s all linear;
    transition-delay: .1s
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-contact .white {
    display: none !important
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-contact .black {
    display: inline !important
}

#tykj-header-hover .header-nav-white .header-nav-right .nav-right-contact .phone {
    color: #000 !important
}

#tykj-header-hover::before {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 84px;
    box-shadow: 3px 5px 10px 0px rgba(37, 45, 51, .1);
    content: "";
    z-index: 20;
    pointer-events: none
}


.tykj-header .header-nav {
    width: 60%;
    max-width: 1800px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto
}

@media screen and (max-width:980px) {
    .tykj-header .header-nav {
        width: 80%;
    }
}


.tykj-header .header-nav .header-nav-logo {
    /* width: 143px; */
    cursor: pointer
}

.tykj-header .header-nav .header-nav-logo img {
    width: 125px;
    height: auto;
    /*保持原有比例 */
    object-fit: contain;
}

.tykj-header .header-nav .header-nav-right {
    display: flex;
    height: 100%;
    align-items: center
}

.tykj-header .header-nav .header-nav-right .nav-right-ul {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item {
    width: 106px;
    height: 80px;
    line-height: 80px;
    align-items: center;
    text-align: center;
    box-sizing: content-box;
    border-bottom: 4px solid rgba(0, 0, 0, 0)
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .item-a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    display: block;
    height: 100%;
    padding: 0 .5vw;
    cursor: pointer;
    border-radius: 15px;
    z-index: 99999
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .item-a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-bottom: 4px solid #003C82;
    width: 0;
    height: 80px
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item-active {
    border-bottom: 4px solid #003C82
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item-active .item-a {
    color: #003C82
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item:hover .item-a {
    color: #003C82
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item:hover .item-a::before {
    width: 100%;
    transition: .2s all linear;
    transition-delay: .1s
}


.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box {
    position: absolute;
    min-width: 106px;
    top: 10px;
    margin: auto;
    padding-top: 0px;
    z-index: -1;
    margin-top: 74px;
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down {
    width: 100%;
    justify-content: center;
    z-index: 999;
    display: none;
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    box-shadow: 3px 5px 10px 0px rgba(37, 45, 51, .1)
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down .drop-down-box {
    display: flex;
    height: 610px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: hidden
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down .flex-box {
    font-size: 14px;
    line-height: 24px;
    color: #6b707a;
    display: block;
    width: 100%;
    padding: 6px 17px;
    text-align: left;
    /* background-color: #19edc9; */
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down .flex-box .line {
    width: 30px;
    height: 10px;
    background-color: #19edc9;
}

/* 展开子级 */
.tykj-header .header-nav .header-nav-right .nav-right-ul .ul-item-dropdown:hover .drop-down-animation {
    display: flex;
    height: 100%;
    animation-name: drop-menu;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

/* 
.tykj-header .header-nav .header-nav-right .nav-right-ul .ul-item-dropdown:hover .drop-down-animation {
    display: flex;
    height: 100%;
    animation-name: drop-menu;
    animation-duration: 300ms;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out
} */

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down .drop-down-box .flex-box:hover {
    background-color: rgba(255, 158, 0, .05);
    border-radius: 2px
}

.tykj-header .header-nav .header-nav-right .nav-right-ul .nav-right-ul-item .box .drop-down .drop-down-box .flex-box:hover .title {
    color: #003C82
}

/* header头部end */

/* footer 底部begin */

.tykj-footer .footer-box {
    width: var(--contentw);
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 58px
}

.tykj-footer .footer-box .left-right {
    display: flex;
    justify-content: space-between
}

.tykj-footer .footer-box .left-right * {
    color: #f0f2f6 !important
}


.tykj-footer .footer-box .left-right .left {
    display: flex
}

.tykj-footer .footer-box .left-right .left .list .name {
    border-bottom: 1px solid #585e6c;
    border-radius: 1px;
    padding-bottom: 19px;
    font-family: pingfang, Century Gothic, microsoft yahei, Avenir, Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #FFFFFF;
}

.tykj-footer .footer-box .left-right .left .list .items {
    display: flex;
    font-size: 14px
}

.tykj-footer .footer-box .left-right .left .list .items .items-box a {
    /* width: 120px; */
    line-height: 34px;
    display: block;
    font-size: 14px;
    color: #B5B5B5 !important;
    /* overflow: hidden; */
    /* 确保超出容器的文本被隐藏 */
    /* white-space: nowrap; */
    /* 确保文本在一行内显示 */
    /* text-overflow: ellipsis; */
    /* 使用省略号表示被截断的文本 */
}

.tykj-footer .footer-box .left-right .left .list .items .items-box a:hover {
    color: #fff !important;
}


.tykj-footer .footer-box .left-right .left .list .items .items-box a::after {
    content: '';
    position: absolute;
    /* content:attr(data-tooltip); 
    margin-bottom: 5px;
    transform: translateX(-50%);
    visibility: hidden;
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, bottom 0.3s;
    */
}

.tykj-footer .footer-box .left-right .left .list .items .items-box a:hover::after {
    visibility: visible;
    opacity: 1;
    /* bottom: 110%; */
}

.tykj-footer .footer-box .left-right .left .list .items .items-box .qr-code {
    width: 120px
}

.tykj-footer .footer-box .left-right .left .list .items .items-box+.items-box {
    margin-left: 19px
}

.tykj-footer .footer-box .left-right .left .list:first-child {
    /* width: 25%; */
    margin-right: 1.8vw
}

.tykj-footer .footer-box .left-right .left .list:nth-child(2) {
    /* width: 45%; */
    margin-right: 1.8vw
}

.tykj-footer .footer-box .left-right .left .list:nth-child(3) {
    /* width: 25%; */
    margin-right: 1.8vw
}

/* 
.tykj-footer .footer-box .left-right .left .list:nth-child(4) .name {
    border-bottom: none;
    padding-bottom: 0px
} */

.tykj-footer .footer-box .left-right .right {
    display: flex;
    width: 51%;
    position: relative;
}

.tykj-footer .footer-box .left-right .right .logo {
    /* width: 150px;
    height: 29px */
    cursor: pointer;
    height: 40px;
    width: auto;
    /*保持原有比例 */
    object-fit: contain;
}

.tykj-footer .footer-box .left-right .right .right-middle-content {

    margin-top: 0px;
}

.tykj-footer .footer-box .left-right .right .right-middle-content .content-area {
    margin: 12px 0 12px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #B5B5B5 !important;
}

.tykj-footer .footer-box .left-right .right .right-middle-content .content-area span {
    font-size: 14px;
    color: #B5B5B5 !important;
}

.tykj-footer .footer-box .left-right .right .right-middle-content .content-area img {
    width: 22px;
    margin-right: 13px
}

.tykj-footer .footer-box .left-right .right .right-content {
    /* margin-top: 0px;
    display: flex; */
    position: absolute;
    width: 100%;
    right: 0%;
    inset: 0;
    pointer-events: none;
}

.tykj-footer .footer-box .left-right .right .right-content .list-content {
    position: relative;
    width: 75%;
    margin-left: 25%;
    height: 100%;
    display: flex;
    justify-content: flex-end;

}

@media screen and (max-width:980px) {
    .tykj-footer .footer-box .left-right {
        display: flex;
        flex-direction: column;
    }

    .tykj-footer .footer-box .left-right .left {
        width: 100%;
        justify-content: space-between;

    }

    .tykj-footer .footer-box .left-right .right {
        display: flex;
        width: 100%;
        position: relative;
        margin-top: 30px;
    }

    .layui-alertpage .content-box {
        width: 70%;
    }
}


.tykj-footer .footer-box .left-right .right .right-content .qrcode-box {
    margin: 0 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-size: 0.75rem;
    /* width: 22px;
    margin-right: 13px */
}




/* 
.tykj-footer .footer-box .left-right .right .right-content .qrcode-box:first-child {
    right: 0;
}

.tykj-footer .footer-box .left-right .right .right-content .qrcode-box:nth-child(2) {
    right: 18%;
}

.tykj-footer .footer-box .left-right .right .right-content .qrcode-box:nth-child(3) {
    right: 50%
} */

/* 
<div class="qrcode-box">
              <img src="images/index/qrcode-gongzonghao.png">
              <span>企业公众号</span>
            </div> */



/* .tykj-footer .footer-box .left-right .right .right-middle-content .content-area:first-child {
    font-size: 22px
}

.tykj-footer .footer-box .left-right .right .right-middle-content .content-area:nth-child(2) {
    font-size: 18px;
    margin-bottom: 0%
} */

.tykj-footer .footer-box .left-right .right .btn {
    font-size: 16px;
    color: #fff;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    padding: 0 21px;
    border-radius: 17px;
    background: #ff9e00;
    margin-top: 44px
}

.tykj-footer .footer-box .left-right .right .btn:hover {
    background: #ff7e00
}


.tykj-footer .footer-box .bottom-top {
    text-align: center;
    /* margin-top: 58px; */
    padding: 18px 0;
    font-size: 14px;
    font-weight: 400;
    border-top: 2px solid rgba(255, 255, 255, .2);
    margin: 58px auto 0;
}

.tykj-footer .footer-box .bottom-top .box {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    /* margin-bottom: 1%; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tykj-footer .footer-box .bottom-top .box .box-title,
.tykj-footer .footer-box .bottom-top .box .box-content {
    white-space: nowrap;
    margin: 5px 20px;
    color: #fff;
}

.tykj-footer .footer-box .bottom-top .box .box-title a,
.tykj-footer .footer-box .bottom-top .box .box-content a {
    color: #8e93a9
}

.tykj-footer .footer-box .bottom-top .box .box-content a:hover {
    color: #fff !important;
}

.tykj-footer .footer-box .bottom-underside {
    text-align: center;
    padding: 18px 0;
    font-size: 0.8vw;
    font-weight: 400;
    color: #8e93a9;
    border-top: 2px solid rgba(255, 255, 255, .2)
}

.tykj-footer .footer-box .bottom-underside span a {
    color: #8e93a9 !important
}

/* 在线客服 begin */

.tykj-sidebar {
    position: absolute;
    width: 66px;
    background: #fff;
    -webkit-box-shadow: 0 2px 10px 0 rgba(171, 171, 171, .24);
    box-shadow: 0 2px 10px 0 rgba(171, 171, 171, .24);
    border-radius: 66px;
    background-color: #fff;
    position: fixed;
    right: 23px;
    top: 50%;
    margin-bottom: -87.5px;
    z-index: 1000;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    padding: 15px 0;
    min-height: 66px;
}


.tykj-sidebar .sidebar-flex {
    cursor: pointer;
    display: flex;
    margin: 0 auto;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
}

.tykj-sidebar .sidebar-flex2 {
    cursor: pointer;
    display: flex;
    margin: 0.5rem auto;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    visibility: hidden;
    display: none;
}


.tykj-sidebar:hover .sidebar-flex2 {
    display: block;
    visibility: visible;
}


.tykj-sidebar .sidebar-flex a {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center
}

.tykj-sidebar .sidebar-flex a:hover {
    color: #333
}

.tykj-sidebar .sidebar-flex a img {
    width: 80%;
}

.tykj-sidebar .sidebar-flex .sidebar-text {
    font-size: 12px;
    margin: 5px 0 0 0;
    color: #333;
    font-family: pingfang, Century Gothic, microsoft yahei, Avenir, Helvetica, Arial, sans-serif;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0
}

.tykj-sidebar .qrcode .advisory-h {
    width: 170px;
    position: absolute;
    right: 75px;
    bottom: 0px;
    background: #fff;
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    border: 1px solid #e1e6f0;
    border-radius: 6px;
    visibility: hidden;
    -webkit-transition: visibility .1s;
    transition: visibility .1s;
    padding: 10px
}

.tykj-sidebar .qrcode .advisory-h .advisory-h-top {
    margin: 0;
    font-size: 12px;
    color: #000;
    padding: 5px 0 7px 0px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600
}

.tykj-sidebar .qrcode .advisory-h .number {
    margin: 0;
    font-size: 18px;
    padding-left: 15px;
    color: #17212c;
    font-weight: 600
}

.tykj-sidebar .qrcode .advisory-h .triangle_icon {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    right: -7px;
    -webkit-transform: translateX(-50%) rotate(135deg);
    transform: translateX(-50%) rotate(135deg);
    top: 117px;
    border-color: #e1e6f0 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #e1e6f0;
    border-style: solid;
    border-width: 1px;
    display: none
}

.tykj-sidebar .qrcode:hover a {
    pointer-events: none
}

.tykj-sidebar .qrcode:hover .advisory-h {
    visibility: visible;
    display: block
}

.tykj-sidebar .qrcode:hover .advisory-h img {
    width: 100%;
}

/* 在线客服 end */
.slideshow-bg {
    position: absolute;
    width: 100%;
    height: 720px;
    background-image: url('../images/animation/JDTQ_0014.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}

.slideshow {
    position: absolute;
    width: 100%;
    height: 720px;
    background-image: url('../images/animation/JDTQ_0014.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: run-gif 10s linear infinite;
    -webkit-animation: run-gif 10s linear infinite;
}

/* 弹框 */
.layui-alertpage {
    position: fixed;
    width: 100%;
    height: 100%;
    padding-top: 100%;
    background-color: rgba(73, 78, 90, .5);
    z-index: 1002;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    box-sizing: border-box;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.05);
}

.layui-alertpage .content-box {
    position: absolute;
    width: 50%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.layui-alertpage .content-box2 {
    position: absolute;
    width: 40%;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

@media screen and (max-width:980px) {
    .layui-alertpage .content-box {
        width: 80%;
    }

    .layui-alertpage .content-box2 {
        width: 60%;
    }

}

.layui-alertpage .btn-close {
    position: absolute;
    right: 0;
    top: 0;
    margin: 30px;
    width: 15px;
    cursor: pointer;
}

.layui-alertpage .title {
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
}

.layui-alertpage .desc {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin: 5px auto 20px;
    color: rgb(97, 96, 96);
}

.layui-alertpage .content {
    width: 80%;
    margin: 0 auto;
}

.layui-alertpage .content .info-box {
    position: relative;
    margin: 20px auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.layui-alertpage .content.info-box div {
    width: 30%;
    line-height: 30px;
    margin: auto 0;
}

.layui-alertpage .content .info-box input {
    width: 70%;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    line-height: 30px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #DEDEDE;
}

.layui-alertpage .content .info-box textarea {
    width: 70%;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    line-height: 30px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #DEDEDE;
}


.layui-alertpage .content .info-box p {
    position: absolute;
    width: 70%;
    font-size: 12px;
    right: 0;
    bottom: -20px;

}

.layui-alertpage .content .info-box .xingzhengquhua {
    width: 70%;
    display: flex;
    justify-content: space-between;
    height: 30px;
}

.layui-alertpage .content .info-box select {
    width: 30%;
    height: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #DEDEDE;
    color: rgb(123, 123, 123);
}

.layui-alertpage .content .info-box button {
    width: 100%;
    height: 50px;
}

.mask {
    display: none;
}

.tykj-header .header-nav .header-nav-right .nav-mobile-box {
    display: none;
}

.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw {
    position: relative;
}

.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw,
.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::after,
.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::before {
    height: 4px;
    width: 2.75rem;
    display: block;
    outline: none;
    background-color: #000;
    overflow: visible;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}



.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::before,
.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::after {
    content: '';
    position: absolute;
}

.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::before {
    top: -1rem;
}

.tykj-header .header-nav .header-nav-right .nav-mobile-box .draw::after {
    top: 1rem;
}

.tykj-header .header-nav .header-nav-right .open .draw {
    background-color: transparent;
}


.tykj-header .header-nav .header-nav-right .open {
    height: 100%;
    /* background-color: #101926; */
}

.tykj-header .header-nav .header-nav-right .open .draw:before {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.tykj-header .header-nav .header-nav-right .open .draw:after {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


@media screen and (min-width: 320px)and (max-width: 980px) {
    .tykj-header {
        background: #edf1f7
    }

    .tykj-header .header-nav .header-nav-logo {
        width: 120px
    }

    .tykj-header .header-nav .header-nav-right .nav-right-ul {
        display: none
    }

    .tykj-header .header-nav .header-nav-right .nav-mobile-box {
        display: flex;
        height: 4.625rem;
        align-items: center;
    }

    .mask {
        position: fixed;
        top: 70px;
        background: rgba(0, 0, 0, .5);
        display: block;
        height: 0px;
        overflow: hidden;
        width: 100%;
        transition: all .3s linear;
        z-index: 1001;
        overflow-y: auto
    }

    .mask #drop-down {
        width: 100%;
        background: #fff;
        padding-bottom: 50px
    }

    .mask #drop-down .nav-right-ul {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-flow: column;
        justify-content: space-between
    }

    .mask #drop-down .nav-right-ul .uino-nav-item {
        display: flex;
        justify-content: space-between;
        line-height: 43px;
        padding-right: 16px;
        font-size: 2.5vw;
        color: #181a39
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box {
        width: 100%
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 70px;
        border-bottom: 1px solid #dcdfe8
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a .triangle,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1 .triangle {
        position: relative;
        height: 0px;
        width: 0px;
        border-top: 5px solid rgba(0, 0, 0, 0);
        border-left: 5px solid #268BFF;
        border-bottom: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a:hover,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1:hover {
        color: #268BFF
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show .triangle {
        position: relative;
        height: 0px;
        width: 0px;
        border-top: 5px solid #268BFF;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu {
        display: block;
        width: 100%;
        transition: all .1s ease;
        padding: 0 5% 5% 5%;
        margin-top: 5%;
        background: #f6f8fb
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li {
        width: 100%;
        line-height: 63px;
        border-bottom: 1px solid #dcdfe8
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li:hover .name {
        color: #268BFF
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title1 {
        border-top: 1px solid #dcdfe8;
        display: flex;
        justify-content: space-between
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title:hover a,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title1:hover a {
        color: #268BFF
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title .solution-triangle,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title1 .solution-triangle {
        position: relative;
        height: 0px;
        width: 0px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        border-top: 5px solid rgba(0, 0, 0, 0);
        border-left: 5px solid #90a4ae;
        border-bottom: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title .solution-triangle::after,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title1 .solution-triangle::after {
        content: "";
        position: absolute;
        left: -6px;
        top: -5px;
        border-top: 5px solid rgba(0, 0, 0, 0);
        border-left: 5px solid #fff;
        border-bottom: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title:first-child,
    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title:first-child {
        border-top: none
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title-show .solution-triangle {
        position: relative;
        height: 0px;
        width: 0px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        border-top: 5px solid #90a4ae;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title-show .solution-triangle::after {
        content: "";
        position: absolute;
        left: -5px;
        top: -6px;
        border-top: 5px solid #fff;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0)
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title-show+.dropdown-menu-content {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        border-top: 1px solid #dcdfe8
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title-show+.dropdown-menu-content a {
        display: flex;
        width: 50%
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-title-show+.dropdown-menu-content a:hover {
        color: #268BFF
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .a1-show+.nav-dropdown-menu .dropdown-menu-li .dropdown-menu-content {
        display: none
    }

    .mask #drop-down .nav-right-ul .uino-nav-item .uino-nav-item-box .nav-dropdown-menu {
        display: none
    }

    .uino-sidebar {
        display: none
    }

    .alertWindow {
        width: 66%;
        height: 160px;
        background: url("/img/index/img/demo1.png") no-repeat
    }

    .alertWindow .alertWindow-center .text {
        font-size: 22px;
        margin-bottom: 15px
    }

    .alertWindow .alertWindow-center .btn {
        font-size: 12px;
        width: 160px;
        height: 24px;
        line-height: 24px
    }

    .uino-footer {
        width: 100%
    }

    .uino-footer .footer-box {
        padding-bottom: 20px
    }

    .uino-footer .footer-box .left-right {
        margin-bottom: 7%
    }

    .uino-footer .footer-box .left-right .left .logo {
        width: 100px;
        height: 19px
    }

    .uino-footer .footer-box .left-right .left .left-middle-content {
        margin-top: 14%
    }

    .uino-footer .footer-box .left-right .left .left-middle-content .content-area:first-child {
        margin: 0 0 1%;
        font-size: 12px
    }

    .uino-footer .footer-box .left-right .left .left-middle-content .content-area:nth-child(2) {
        font-size: 12px
    }

    .uino-footer .footer-box .left-right .left .btn {
        display: none
    }

    .uino-footer .footer-box .left-right .right .list {
        margin: auto
    }

    .uino-footer .footer-box .left-right .right .list:first-child,
    .uino-footer .footer-box .left-right .right .list:nth-child(2),
    .uino-footer .footer-box .left-right .right .list:nth-child(3) {
        display: none
    }

    .uino-footer .footer-box .left-right .right .list:nth-child(4) .name {
        display: none
    }

    .uino-footer .footer-box .left-right .right .list:nth-child(4) .items .items-box a {
        display: none
    }

    .uino-footer .footer-box .left-right .right .list:nth-child(4) .items .items-box .qr-code {
        width: 76px
    }

    .uino-footer .footer-box .left-right .right .list:nth-child(4) .items .items-box .qr-code img {
        display: block
    }

    .uino-footer .footer-box .bottom-top {
        display: none
    }

    .uino-footer .footer-box .bottom-underside {
        font-size: 12px;
        margin-top: 0;
        padding: 2% 0 0
    }
}