.grid-box {
    font-size: 0;
    letter-spacing: -4px;
    font-size: 12px;
}

.grid-box .column {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    letter-spacing: 0;
}

.grid-box .column {
    width: 100%;
}

.grid-box.two>.column {
    width: 50%;
}
#mobile3 .m-nav ul li a {
    line-height: 1.8;
}
#mobile3 .m-nav ul li li a {
    line-height: 2;
}
.grid-box.three>.column {
    width: 33.33333%;
}

.grid-box.four>.column {
    width: 25%;
}

.grid-box.five>.column {
    width: 20%;
}

.grid-box.six>.column {
    width: 16.6666667%;
}

.grid-box.seven>.column {
    width: 14.285714%;
}

.grid-box.eight>.column {
    width: 12.55%;
}

.grid-box.nine>.column {
    width: 11.11111111%;
}

.grid-box.ten>.column {
    width: 10%;
}

@media screen and (max-width: 1000px) {
    .grid-box.two>.column {
        width: 50%;
    }

    .grid-box.three>.column {
        width: 33.33333%;
    }

    .grid-box.four>.column {
        width: 33.33333%;
    }

    .grid-box.five>.column {
        width: 33.33333%;
    }
}

@media screen and (max-width: 700px) {
    .grid-box.two>.column {
        width: 50%;
    }

    .grid-box.three>.column {
        width: 50%;
    }

    .grid-box.four>.column {
        width: 50%;
    }

    .grid-box.five>.column {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .grid-box.two>.column {
        width: 100%;
    }

    .grid-box.three>.column {
        width: 100%;
    }

    .grid-box.four>.column {
        width: 100%;
    }

    .grid-box.five>.column {
        width: 100%;
    }
}

#pups_shadow2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.6;
    z-index: 21;
    display: none;
}

#pups_from2 {
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-height: 80%;
    width: 500px;
    max-width: 90%;
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 22;
    background: white;
    padding: 30px;
    overflow: auto;
}

#pups_from2 h4 {
    font-size: 18px;
    color: #222;
    text-transform: capitalize;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    padding: 15px 20px;
    background: #f5f5f5;
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#pups_from2 form {
    margin-top: 40px;
}

#pups_from2 i.close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #eee;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

#pups_from2 i.close::after,
#pups_from2 i.close::before {
    content: "";
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    width: 70%;
    height: 2px;
    margin-top: -1px;
    background: black;
    position: absolute;
    top: 50%;
    left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#pups_from2 i.close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#pups_from2 i.close:hover {
    background: var(--color);
}

#pups_from2 i.close:hover::before,
#pups_from2 i.close:hover::after {
    background: white;
}

#pups_from2 ul li {
    margin-bottom: 10px;
    position: relative;
}

#pups_from2 ul li label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

#pups_from2 ul li label em {
    color: red;
    margin-right: 2px;
}

#pups_from2 ul li input,
#pups_from2 ul li textarea {
    width: 100%;
    line-height: 24px;
    padding: 6px 15px;
    border: 1px solid #eee;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    font-size: 16px;
}

#pups_from2 ul li input:focus,
#pups_from2 ul li textarea:focus {
    border-color: var(--color);
}

#pups_from2 ul li textarea {
    height: 80px;
}

#pups_from2 ul li input[type="submit"] {
    width: auto;
    padding: 6px 40px;
    display: inline-block;
    background: var(--color);
    color: white;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

#pups_from2 ul li input[type="submit"]:hover {
    opacity: 0.7;
}

#pups_from2 ul li:last-child {
    margin-bottom: 0;
}

.right_nav_list {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 10;
}
.linengshouye h1 {
    display: inline;
}
.right_nav_list ul li {
    margin-top: 2px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    padding: 0;
    position: relative;
    color: #fff;
    background: var(--color);
    border: 1px solid #fff;
}

.right_nav_list ul li .iImg {
    width: 24px;
    height: 32px;
}

.right_nav_list ul li .text {
    padding: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 24px;
}

.right_nav_list ul li .cont {
    position: absolute;
    left: -150px;
    top: 0;
    width: 150px;
    min-height: 100%;
    padding: 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -o-transition: opacity 0.3s, -o-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.3s;
    overflow: hidden;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}

.right_nav_list ul li .cont #ewm {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    padding: 8px;
    border: 1px solid #ccc;
}

.right_nav_list ul li:hover .cont {
    transform: rotate3d(0, 0, 0, -90deg);
    -webkit-transform: rotate3d(0, 0, 0, -90deg);
    -moz-transform: rotate3d(0, 0, 0, -90deg);
    -ms-transform: rotate3d(0, 0, 0, -90deg);
    -o-transform: rotate3d(0, 0, 0, -90deg);
    opacity: 1;
}

.right_nav_list ul li:hover .text {
    opacity: 0.6;
}

@media (max-width: 500px) {
    .right_nav_list {
        right: 5px;
        bottom: 150px;
    }

    .right_nav_list ul li {
        width: 38px;
        height: 38px;
        margin-top: 5px;
    }

    .right_nav_list ul li .more_cont {
        font-size: 16px;
    }

    .right_nav_list ul li .iImg {
        width: 16px;
        height: 24px;
    }
}

iframe {
    display: block;
    width: 100%;
}

#Pop_UpsBtn {
    z-index: 20;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    position: fixed;
    border-radius: 100%;
    background: var(--color);
    color: white;
    right: 2%;
    bottom: 40%;
    font-size: 24px;
    -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    cursor: hand;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    display: none;
}

#Pop_UpsBtn:hover {
    background: #889aff;
}

b,
strong {
    font-weight: bold;
}

html,
body {
    position: relative;
    max-width: 1920px;
    margin: auto;
}

#ewm img,
#ewm canvas {
    display: block;
    width: 100%;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
}

table {
    margin-bottom: 20px;
    word-break: break-word;
    width: 100%;
    height: auto;
    display: block;
    overflow: auto;
}


table tbody {
    display: table;
    width: 100% !important;
}

table tbody td,
table tbody th {
    padding: 5px 10px;
    border: 1px solid #cccccc;
    width: auto !important;
    height: auto !important;
    background: #f7f7f7;
    color: #666;
}

table tbody tr {
    width: auto !important;
    height: auto !important;
}

table tbody tr:nth-child(even) {
    background: #eee;
}

html.mobile {
    overflow: hidden;
}

html.mobile .body-overflow-box {
    position: relative;
    left: 280px;
}

#mobile {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    display: none;
    z-index: 20;
    height: 100%;
}

#mobile:before {
    content: "";
    width: 200%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.13);
    z-index: -1;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

#mobile .mobile-logo {
    position: absolute;
    left: 100%;
    width: 100vw;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #111;
    -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

#mobile .mobile-logo img {
    max-height: 30px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
    -o-object-fit: contain;
    object-fit: contain;
    width: 220px;
}

#mobile #menu-on {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    position: absolute;
    left: 100%;
    top: 0;
    cursor: pointer;
    cursor: hand;
    z-index: 1;
}

#mobile #menu-on i {
    width: 23px;
    height: 2px;
    background: #222;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

#mobile #menu-on i.line1 {
    top: 12px;
}

#mobile #menu-on i.line2 {
    top: 19px;
}

#mobile #menu-on i.line3 {
    top: 26px;
}

#mobile .menu-content {
    width: 100%;
    height: 100%;
    display: block;
    background: #222;
    padding: 40px 10% 60px;
    overflow-y: auto;
    color: white;
}

#mobile .menu-content::-webkit-scrollbar {
    width: 3px;
    border-radius: 1.5px;
}

#mobile .menu-content::-webkit-scrollbar-button {
    display: none;
}

#mobile .menu-content::-webkit-scrollbar-track {
    background-color: #222;
}

#mobile .menu-content::-webkit-scrollbar-thumb {
    background-color: #eee;
}

#mobile .menu-content .h3 {
    font-size: 20px;
    color: inherit;
    text-transform: capitalize;
    margin-bottom: 10px;
}

#mobile .menu-content .h3 i {
    font-size: 16px;
    position: relative;
    top: -1px;
}

#mobile .menu-content .menu-logo {
    display: block;
}

#mobile .menu-content .menu-logo img {
    margin: 0 auto;
}

#mobile .menu-content .menu-list {
    margin: 40px 0;
}

#mobile .menu-content .menu-list ul li {
    font-size: 15px;
    color: inherit;
    text-transform: uppercase;
    line-height: 20px;
}

#mobile .menu-content .menu-list ul li a {
    padding: 8px 0;
    display: block;
}

#mobile .menu-content .menu-list ul li a:hover {
    color: #ff9800;
    text-decoration: underline;
}

#mobile .menu-content .menu-list ul li li a {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    line-height: 18px;
}

#mobile .menu-content .menu-list ul li li a:after {
    content: "";
    width: 6px;
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

#mobile .menu-content .menu-list ul li li li a {
    padding-left: 25px;
}

#mobile .menu-content .menu-list ul li li li a:after {
    width: 12px;
}

#mobile .menu-content .mob-search form {
    position: relative;
}

#mobile .menu-content .mob-search form input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    color: black;
}

#mobile .menu-content .mob-search form input[type="submit"] {
    width: 45px;
    height: 45px;
    background: url("../images/icon-search-white.png") no-repeat center center #222;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
    border: 1px solid #fff;
}

#mobile .menu-content .mob-yuy {
    margin: 40px 0;
}

#mobile .menu-content .mob-yuy ul li {
    margin-bottom: 10px;
    color: inherit;
    font-size: 14px;
}

#mobile .menu-content .mob-yuy ul li img {
    max-width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

#mobile .menu-content .mob-share ul li {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: #333;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 14px;
    margin-right: 3px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

#mobile .menu-content .mob-share ul li:hover {
    background: #ff9800;
}

#mobile .menu-content #menu-off {
    margin-top: 40px;
    cursor: pointer;
    cursor: hand;
}

#mobile.active {
    left: 0;
}

#mobile.active:before {
    right: 0;
}

#mobile.active #menu-on i.line1 {
    -webkit-transform: translateX(-50%) rotateZ(45deg);
    -moz-transform: translateX(-50%) rotateZ(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    -o-transform: translateX(-50%) rotateZ(45deg);
    transform: translateX(-50%) rotateZ(45deg);
    top: 12px;
    margin-left: 3px;
}

#mobile.active #menu-on i.line2 {
    opacity: 0;
}

#mobile.active #menu-on i.line3 {
    -webkit-transform: translateX(-50%) rotateZ(-45deg);
    -moz-transform: translateX(-50%) rotateZ(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotateZ(-45deg);
    transform: translateX(-50%) rotateZ(-45deg);
    top: 28px;
    margin-left: 3px;
}

#mobile.white .mobile-logo {
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
}

#mobile.white .menu-content {
    background: white;
    color: black;
}

#mobile.white .menu-content .menu-list ul li li a:after {
    background: black;
}

#mobile.white .menu-content .mob-search form input {
    border: 1px solid black;
}

#mobile.white .menu-content .mob-search form input[type="submit"] {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}

.search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}

.search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}

.search-box form input {
    background: none;
    outline: none;
    border: none;
}

.search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 26px;
    color: #000;
    padding: 10px 0;
}

.search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}

@keyframes ks2 {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -o-transform: scale(1.8);
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 1700px) {

    body .zdy-tt.font-40 {
        font-size: 36px !important;
    }
}

@media (max-width: 1450px) {
    body .zdy-tt.font-22 {
        font-size: 20px !important;
    }

    body .zdy-tt.font-26 {
        font-size: 24px !important;
    }

    body .zdy-zw.font-18 {
        font-size: 17px !important;
    }

    body .zdy-tt.font-48 {
        font-size: 40px !important;
    }

    body .zdy-tt.font-40 {
        font-size: 32px !important;
    }
}

@media (max-width: 1250px) {
    body .zdy-tt.font-20 {
        font-size: 18px !important;
    }

    body .zdy-tt.font-24,
    body .zdy-tt.font-25 {
        font-size: 22px !important;
    }

    body .zdy-tt.font-26 {
        font-size: 23px !important;
    }

    body .zdy-zw.font-18 {
        font-size: 16px;
    }

    body .zdy-tt.font-30 {
        font-size: 24px !important;
    }

    body .zdy-tt.font-40 {
        font-size: 28px !important;
    }

    body .zdy-tt.font-48 {
        font-size: 36px !important;
    }
}

@media (max-width: 1000px) {
    .phone_hide{
        display: none;
    }
    body .zdy-tt.font-26 {
        font-size: 21px !important;
    }

    body .zdy-tt.font-30 {
        font-size: 22px !important;
    }

    body .zdytt.font-36 {
        font-size: 22px !important;
    }

    body .zdy-tt.font-40 {
        font-size: 26px !important;
    }

    body .zdy-tt.font-48 {
        font-size: 32px !important;
    }
}

@media (max-width: 700px) {
    body .zdytt.font-36 {
        font-size: 20px !important;
    }

    body .zdy-tt.font-22,
    body .zdy-tt.font-24,
    body .zdy-tt.font-25 {
        font-size: 18px !important;
    }

    body .zdy-tt.font-26,
    body .zdy-tt.font-27,
    body .zdy-tt.font-28,
    body .zdy-tt.font-29 {
        font-size: 19px !important;
    }

    body .zdy-tt.font-30,
    body .zdy-tt.font-31,
    body .zdy-tt.font-32,
    body .zdy-tt.font-33,
    body .zdy-tt.font-34,
    body .zdy-tt.font-35 {
        font-size: 20px !important;
    }

    body .zdy-tt.font-36,
    body .zdy-tt.font-37,
    body .zdy-tt.font-38,
    body .zdy-tt.font-39 {
        font-size: 21px !important;
    }

    body .zdy-tt.font-40 {
        font-size: 22px !important;
        line-height: 1.4;
    }

    body .zdy-tt.font-48,
    body .zdy-tt.font-49,
    body .zdy-tt.font-50,
    body .zdy-tt.font-51,
    body .zdy-tt.font-52,
    body .zdy-tt.font-53,
    body .zdy-tt.font-54,
    body .zdy-tt.font-55,
    body .zdy-tt.font-56,
    body .zdy-tt.font-57,
    body .zdy-tt.font-58,
    body .zdy-tt.font-59,
    body .zdy-tt.font-60,
    body .zdy-tt.font-61,
    body .zdy-tt.font-62,
    body .zdy-tt.font-63,
    body .zdy-tt.font-64 {
        font-size: 28px !important;
    }

    body .zdy-zw.font-18 {
        font-size: 15px !important;
    }
}

@media (max-width: 500px) {
    body .zdy-tt.font-48 {
        font-size: 24px !important;
    }
}

/*----- genneral end-----*/
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Light.eot");
    src: url("../fonts/Montserrat-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff"), url("../fonts/Montserrat-Light.ttf") format("truetype");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.eot");
    src: url("../fonts/Montserrat-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff"), url("../fonts/Montserrat-Regular.ttf") format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.eot");
    src: url("../fonts/Montserrat-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff"), url("../fonts/Montserrat-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.eot");
    src: url("../fonts/Montserrat-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff"), url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.eot");
    src: url("../fonts/Montserrat-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff"), url("../fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Lexend Deca";
    src: url("../fonts/LexendDeca-Light.eot");
    src: url("../fonts/LexendDeca-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/LexendDeca-Light.woff2") format("woff2"), url("../fonts/LexendDeca-Light.woff") format("woff"), url("../fonts/LexendDeca-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lexend Deca";
    src: url("../fonts/LexendDeca-Regular.eot");
    src: url("../fonts/LexendDeca-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/LexendDeca-Regular.woff2") format("woff2"), url("../fonts/LexendDeca-Regular.woff") format("woff"), url("../fonts/LexendDeca-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lexend Deca";
    src: url("../fonts/LexendDeca-Medium.eot");
    src: url("../fonts/LexendDeca-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/LexendDeca-Medium.woff2") format("woff2"), url("../fonts/LexendDeca-Medium.woff") format("woff"), url("../fonts/LexendDeca-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend Deca';
    src: url('../fonts/LexendDeca-SemiBold.eot');
    src: url('../fonts/LexendDeca-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LexendDeca-SemiBold.woff2') format('woff2'),
        url('../fonts/LexendDeca-SemiBold.woff') format('woff'),
        url('../fonts/LexendDeca-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Lexend Deca";
    font-weight: 300;
    font-size: 16px;
    --color: #41b145;
    margin: 0 auto;
}

.container {
    width: 1650px;
}

.f-color {
    color: var(--color);
}

.color-ff {
    color: #fff;
}

.color-66 {
    color: #666666;
    line-height: 1.8;
}

.color-33 {
    color: #333333;
}

.color-14 {
    color: #141414;
    line-height: 1.6;
}

.img-bg {
    background-repeat: no-repeat;
    background-size: cover;
}

.t_l {
    transition: all 0.5s;
}

.fam-Montserrat-Light {
    font-family: "Montserrat";
    font-weight: 300;
}

.fam-Montserrat-Regular {
    font-family: "Montserrat";
    font-weight: normal;
}

.fam-Montserrat-Medium {
    font-family: "Montserrat";
    font-weight: 500;
}

.fam-Montserrat-SemiBold {
    font-family: "Montserrat";
    font-weight: 600;
}

.fam-Montserrat-Bold {
    font-family: "Montserrat";
    font-weight: 700;
}

.fam-LexendDeca-Light {
    font-family: "Lexend Deca";
    font-weight: 300;
}

.fam-LexendDeca-Regular {
    font-family: "Lexend Deca";
    font-weight: normal;
}

.fam-LexendDeca-Medium {
    font-family: "Lexend Deca";
    font-weight: 500;
}

.fam-LexendDeca-SemiBold {
    font-family: "Lexend Deca";
    font-weight: 600;
}

#header {
    z-index: 200;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

#header .header-top {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    height: 90px;
    transition: all 0.5s;
}

#header .header-top .right {
    display: flex;
    align-items: center;
}

#header .header-top .right .h-search {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#header .header-top .right .h-search img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

#header .header-top .right .h-search:hover img {
    filter: none;
}

#header .header-top .right .h-language {
    position: relative;
    cursor: pointer;
    margin: 0 60px 0 50px;
}

#header .header-top .right .h-language span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#header .header-top .right .h-language span img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

#header .header-top .right .h-language ul.sub-menu {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    z-index: 109;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 110%;
    right: 0;
    width: 130px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #60b242;
    display: none \9;
}

#header .header-top .right .h-language ul.sub-menu li {
    display: block;
    line-height: 40px;
    text-transform: capitalize;
    text-align: center;
}

#header .header-top .right .h-language ul.sub-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#header .header-top .right .h-language ul.sub-menu li a img {
    vertical-align: middle;
    width: auto;
    height: 15px;
    margin-right: 6px;
}

#header .header-top .right .h-language ul.sub-menu li:hover {
    background: #000;
    color: #fff;
}

#header .header-top .right .h-language:hover ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0);
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    display: block \9;
}

#header .header-top .right .h-language:hover img {
    filter: none;
}

#header .header-top .right .h-inquire {
    width: auto;
    min-width: 176px;
    height: 46px;
    padding: 0 12px;
    background-color: var(--color);
    border-radius: 0px 23px 0px 23px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
    border: 1px solid transparent;
}

#header .header-top .right .h-inquire:hover {
    background: #fff;
    color: var(--color);
    border-color: var(--color);
}

#header .nav {
    position: relative;
    height: 80px;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .nav .ui.menu {
    border-radius: 10px;
    width: 100%;
}

#header .nav .ui.menu .menu-box {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 100%;
}

#header .nav .ui.menu .menu-box .menu-menu-container {
    height: 100%;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu {
    display: flex;
    justify-content: space-between;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin-right: 30px;
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 500;
    height: 100%;
    color: #fff;
    -webkit-perspective: 500px;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li::before {
    content: "-";
    opacity: 0;
    padding-right: 5px;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover {
    color: var(--color);
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover::before {
    opacity: 1;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li.active {
    color: var(--color);
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li.active::before {
    opacity: 1;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li>a {
    display: block;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu {
    -webkit-perspective: 500px;
    perspective: 500px;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    font-size: 15px;
    background: #fff;
    top: 100%;
    left: -10px;
    min-width: 180px;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.3s;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--color);
    display: none \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li {
    position: relative;
    display: block;
    float: none;
    padding: 0 15px;
    line-height: 40px;
    color: black;
    font-size: 15px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-transform: capitalize;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li a {
    display: block;
    white-space: nowrap;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu li:hover {
    background: var(--color);
    color: white;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li ul.sub-menu {
    top: 0;
    left: 100%;
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li:hover ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0);
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    -ms-transform: rotate3d(0, 0, 0, 0);
    -o-transform: rotate3d(0, 0, 0, 0);
    display: block \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li:hover ul.sub-menu {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0);
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    -ms-transform: rotate3d(0, 0, 0, 0);
    -o-transform: rotate3d(0, 0, 0, 0);
    display: block \9;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu li:last-child {
    margin-right: 0;
}


#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li ul.sub-menu>li ul.sub-menu{
    top: 0;
    left: 100%;
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
}
#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li ul.sub-menu>li:hover ul.sub-menu {
    opacity: 1;
    transform: rotate3d(0, 0, 0, 0);
}


#header.active,
#header.inner_active {
    background-color: #000;
}

#header.active .header-top {
    height: 65px;
}

#header.active .nav {
    height: 55px;
}

#banner {
    position: relative;
}

#banner .banner-content {
    height: 100vh;
    position: relative;
}

#banner .banner-content .swiper-slide {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#banner .banner-content .swiper-slide .txt-content {
    height: 100%;
    margin-top: 50px;
}

#banner .banner-content .swiper-slide .txt-content h3 {
    max-width: 740px;
    line-height: 1.3;
    color: var(--color);
}

#banner .banner-content .swiper-slide .txt-content .text2 {
    max-width: 660px;
    color: rgba(0, 0, 0, 0.7);
    opacity: 0.7;
}

#banner .thumb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background-color: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

#banner .thumb-content .swiper {
    width: 66.6%;
    height: 100%;
    padding-right: 2px;
}

#banner .thumb-content li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

#banner .thumb-content li::after {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    background-color: #fff;
    opacity: 0.3;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#banner .thumb-content li span {
    color: transparent;
    -webkit-text-stroke: 1px var(--color);
    padding-right: 22px;
}

#banner .thumb-content li p {
    max-width: 380px;
    color: #ffffff;
    opacity: 0.8;
    line-height: 2;
}

#banner .thumb-content .swiper-tool {
    width: 33.3%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner .thumb-content .swiper-tool .tag {
    font-size: 213px;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 1px var(--color);
    margin-right: 48px;
    transform: translateY(-26%);
}

.btn-go {
    width: auto;
    min-width: 196px;
    background-color: var(--color);
    color: #fff;
    font-size: 16px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0px 25px 0px 25px;
    position: relative;
    z-index: 0;
    transition: all 0.5s;
}

.btn-go span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    font-size: 24px;
    color: var(--color);
    margin-top: -5px;
}

.btn-go em {
    width: calc(100% - 50px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-go::before {
    content: "";
    display: block;
    width: 50px;
    height: 100%;
    background-color: #fff;
    border-radius: 0px 0px 0px 25px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s;
    z-index: -1;
}

.btn-go:hover {
    color: var(--color);
}

.btn-go:hover::before {
    width: 100%;
    border-radius: 0px 25px 0px 25px;
}

.btn-go.black::before {
    background-color: #000318;
}

.btn-go.fcolor {
    background-color: #fff;
    color: var(--color);
}

.btn-go.fcolor span {
    color: #fff;
}

.btn-go.fcolor::before {
    background-color: var(--color);
}

.btn-go.fcolor:hover {
    color: #fff;
}

.zdy-switch {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zdy-switch>div {
    position: static;
    width: 50px;
    height: 50px;
    background-color: rgba(237, 237, 237, 0.1);
    border-radius: 50%;
    margin-top: 0;
    margin-left: 12px;
    margin-right: 12px;
    transition: all 0.5s;
}

.zdy-switch>div::after {
    font-size: 16px;
    color: #b2b2b2;
    transition: all 0.5s;
}

.zdy-switch>div:hover {
    background-color: var(--color);
}

.zdy-switch>div:hover::after {
    color: #fff;
}

.zdy-switch.grey>div {
    background-color: #ededed;
}

.zdy-switch.grey>div:hover {
    background-color: var(--color);
}

.zdy-point {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zdy-point .swiper-pagination-bullet {
    width: auto;
    height: auto;
    opacity: 1;
    border: 1px solid transparent;
    background-color: transparent;
}

.zdy-point .swiper-pagination-bullet::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background-color: #dbdad7;
    border-radius: 50%;
    flex-shrink: 0;
    margin: 2px;
}

.zdy-point .swiper-pagination-bullet-active {
    border-color: var(--color);
}

.zdy-point .swiper-pagination-bullet-active::after {
    background-color: var(--color);
}

.tt-ico.white {
    filter: brightness(0) invert(1);
}

.mk-desc {
    color: #666666;
    line-height: 1.8;
    font-size: 16px;
}

.mk-desc.white {
    color: #fff;
}

.mk-tt {
    line-height: 1.2;
    color: #141414;
}

.mk-tt.white {
    color: #fff;
}
.pt-250 {
    padding-top: 250px;
}
#index-body .init-1{
    background-size: cover;
}
#index-body .init-1 .left {
    width: 30%;
}

#index-body .init-1 .left .cate-navlist {
    max-width: 90%;
}

#index-body .init-1 .left .cate-navlist li {
    padding: 5px 0;
}

#index-body .init-1 .left .cate-navlist li p {
    color: #b3b3b3;
}

#index-body .init-1 .left .cate-navlist li p em {
    display: inline-block;
    opacity: 0;
    width: 0;
    transition: all 0.5s;
}

#index-body .init-1 .left .cate-navlist li .content {
    display: none;
    margin-bottom: 20px;
}

#index-body .init-1 .left .cate-navlist li.active p {
    color: var(--color);
}

#index-body .init-1 .left .cate-navlist li.active p em {
    opacity: 1;
    width: 14px;
}

#index-body .init-1 .left .cate-navlist li .content {
    border-bottom: solid 1px #e5e5e5;
}

#index-body .init-1 .right {
    width: 70%;
}

#index-body .init-1 .right .cate-imglist {
    /* z-index: -1; */
    overflow: visible;
}

#index-body .init-1 .right .cate-imglist li .imgBox {
    position: relative;
}

#index-body .init-1 .right .cate-imglist li .imgBox .post {
    bottom: 0;
    left: 0;
    transform: translateX(-19%);
}

#index-body .init-1 .right .cate-imglist li .imgBox .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 114px;
    height: 114px;
    background-color: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

#index-body .init-1 .right .cate-imglist li .imgBox .play::before {
    content: "";
    width: 40%;
    height: 40%;
    position: absolute;
    left: 30%;
    top: 30%;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    z-index: -1;
    pointer-events: none;
}

#index-body .init-1 .right .cate-imglist li .imgBox .play::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: -1;
    pointer-events: none;
}

#index-body .init-2 .about-con {
    background-color: #f4f5f9;
}

#index-body .init-2 .about-con .left {
    width: 43%;
}

#index-body .init-2 .about-con .left .des{
    overflow:hidden;
    text-overflow:ellipsis; 
    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
}

#index-body .init-2 .about-con .left h1 {
    line-height: 1.7;
}

#index-body .init-2 .about-con .right {
    width: 50%;
    padding-left: 4%;
}

#index-body .init-2 .about-con .right .datashow h4 {
    line-height: 1;
}

#index-body .init-2 .about-con .right .datashow ul {
    border-left: 2px solid #e6e6e6;
    padding-left: 60px;
    padding-top: 50px;
    position: relative;
    max-width: 39%;
}

#index-body .init-2 .about-con .right .datashow ul::before {
    content: "";
    display: block;
    width: 3px;
    height: 70px;
    background-color: var(--color);
    position: absolute;
    top: 0;
    left: -2px;
    animation: about-line1 8s linear infinite;
}

#index-body .init-2 .about-con .right .datashow ul::after {
    content: "";
    display: block;
    width: 3px;
    height: 70px;
    background-color: var(--color);
    position: absolute;
    top: 50%;
    left: -2px;
    animation: about-line2 8s linear infinite;
}

#index-body .init-2 .about-con .right .datashow ul li {
    padding: 50px 0;
}

#index-body .init-2 .about-con .right .datashow ul.list1 li {
    transform: translateY(-18%);
}

#index-body .init-2 .about-con .right .datashow ul.list2::before {
    top: 0;
    animation-delay: 2s;
}

#index-body .init-2 .about-con .right .datashow ul.list2::after {
    top: 50%;
    animation-delay: 2s;
}

#index-body .init-2 .about-img {
    position: relative;
}

#index-body .init-2 .about-img::after {
    content: "";
    display: block;
    width: 100%;
    background-color: #f4f5f9;
    height: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#index-body .init-2 .about-img .clip_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    height: 650px;
    /*top: 0;*/
    overflow: hidden;
    /*margin-top: -80px;*/
    border-radius: 20px;
}
#index-body .init-2 .about-img .clip_wrap .container{
    width: 100%;
    padding: 0;
}

#index-body .init-2 .about-img .img {
    width: 100%;
    height: 100%;
    /*position: sticky;*/
    overflow: hidden;
}

#index-body .init-2 .about-img img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    display: block;
    object-fit: cover;
}
#index-body .init-2 .about-img .img .play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 110px;
    border-radius: 50%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color);
    cursor: pointer;
}
#index-body .init-2 .about-img .img .play img{
    width: 24px;
    height: auto;
    object-fit: contain;
}
#index-body .init-2 .about-img .img .play::before {
    content: "";
    width: 40%;
    height: 40%;
    position: absolute;
    left: 30%;
    top: 30%;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: transparent;
    border: 1px solid rgb(255, 255, 255);
    z-index: -1;
    pointer-events: none;
}
#index-body .init-2 .about-img .img .play::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: -1;
    pointer-events: none;
}
#index-body .init-3  {
    background: #f4f5f9;
}

#index-body .init-3 .mk-desc {
    max-width: 92%;
}

#index-body .init-3 .ome-list {
    margin-top: 40px;
}

#index-body .init-3 .ome-list ul {
    margin: 0 -1%;
}

#index-body .init-3 .ome-list li {
    width: 25%;
    padding: 0 1%;
    transition: all 0.5s;
    height: 31vw;
}

#index-body .init-3 .ome-list li .box {
    position: relative;
    height: 100%;
    width: 100%;
}

#index-body .init-3 .ome-list li .box .imgBox {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

#index-body .init-3 .ome-list li .box .imgBox img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

#index-body .init-3 .ome-list li .box .txtbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 33%);
    border-radius: 10px;
    padding: 40px;
}

#index-body .init-3 .ome-list li .box .txtbox .txt-con {
    width: 100%;
}

#index-body .init-3 .ome-list li.active {
    width: 50%;
}

#index-body .init-4 .factory-list {
    position: relative;
}

#index-body .init-4 .factory-list ul {
    height: calc(100vh - 121px);
    position: -webkit-sticky;
    position: sticky;
    top: 121px;
}

#index-body .init-4 .factory-list ul li {
    width: 100%;
    height: calc(100vh - 121px);
    position: absolute;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#index-body .init-4 .factory-list ul li .box {
    position: relative;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    align-items: center;
    height: calc(100vh - 121px);
}

#index-body .init-4 .factory-list ul li .box .imgBox {
    height: 100%;
    width: 100%;
}

#index-body .init-4 .factory-list ul li .box .imgBox img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#index-body .init-4 .factory-list ul li .box .txtbox {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 470px;
    background-color: #fff;
    border-radius: 20px;
}

#index-body .init-4 .factory-list ul li .box .txtbox .tt {
    height: 140px;
    padding: 0 30px;
}

#index-body .init-4 .factory-list ul li .box .txtbox .tt h2 {
    color: #141414;
}

#index-body .init-4 .factory-list ul li .box .txtbox .tt i {
    flex-shrink: 0;
}

#index-body .init-4 .factory-list ul li .box .txtbox .con {
    background-color: #000423;
    padding: 40px;
    height: auto;
    border-radius: 0px 0px 20px 20px;
}

#index-body .init-4 .factory-list ul li .box .txtbox .con .desc {
    color: #ffffff;
    opacity: 0.6;
    line-height: 1.8;
}

#index-body .init-4 .factory-list ul li .box .txtbox .con .btnbox>span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color);
    border-radius: 50%;
    margin-left: 30px;
}


#index-body .init-4 .factory-list ul li .box .txtbox .con .btnbox>span i{
    width: 40px;height: 40px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;border-radius: 50%;
    font-size: 20px;
    
}
#index-body .init-4 .factory-list ul li .box .txtbox .con .btnbox>span i:before{
animation: wy 2s linear infinite;
}
@keyframes wy {
    0% {
        transform: translateY(0)
    }
    25% {
        transform: translateY(3px)
    }
    75% {
        transform: translateY(-3px)
    }
    100% {
        transform: translateY(0)
    }
}

#index-body .init-4 .factory-list-mobile {
    display: none;
    padding-top: 50px;
}

#index-body .init-4 .factory-list-mobile ul li .box {
    border-radius: 20px;
    overflow: hidden;
}

#index-body .init-4 .factory-list-mobile ul li .box .img-box {}

#index-body .init-4 .factory-list-mobile ul li .box .txtbox {
    background-color: #000423;
    padding: 20px 20px 60px;
    text-align: center;
}

#index-body .init-4 .factory-list-mobile ul li .box .txtbox .tt {
    flex-direction: column;
}

#index-body .init-4 .factory-list-mobile ul li .box .txtbox .tt h2 {
    margin-top: 10px;
}

#index-body .init-4 .factory-list-mobile ul li .box .txtbox .con {
    color: rgba(255, 255, 255, 0.5);
}
#index-body .init-4 .factory-list-mobile ul li .box .txtbox .con .desc {
    height: 42px;
}
.zdy-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}


#index-body .init-5 .top .mktt-box {
    max-width: 60%;
}

#index-body .init-5 .bottom .service-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
}

#index-body .init-5 .bottom .service-list ul li .box .txt-box {
    padding: 55px 32px;
}

#index-body .init-5 .bottom .service-list ul li .box .txt-box i {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 0px 10px 0px 10px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s;
}

#index-body .init-5 .bottom .service-list ul li .box .txt-box .tt {
    color: #141414;
    transition: all 0.5s;
}

#index-body .init-5 .bottom .service-list ul li .box .txt-box .desc {
    color: #999999;
    transition: all 0.5s;
    height: 50px;
    overflow-y: auto;
    line-height: 1.6;
}

#index-body .init-5 .bottom .service-list ul li .box:hover {
    background-color: var(--color);
}

#index-body .init-5 .bottom .service-list ul li .box:hover .txt-box i {
    opacity: 1;
}

#index-body .init-5 .bottom .service-list ul li .box:hover .txt-box .tt {
    color: #ffffff;
}

#index-body .init-5 .bottom .service-list ul li .box:hover .txt-box .desc {
    color: #ffffff;
}

#index-body .init-6 {
    position: relative;
}

#index-body .init-6 .mktt-box .mk-desc{
    color: var(--color);
}
#index-body .init-6 .mktt-box .mk-tt{
    color: var(--color);
}

#index-body .init-6 .bgl {
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#index-body .init-6 .bgl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#index-body .init-6::after {
    content: "";
    display: block;
    background-color: var(--color);
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}


#index-body .init-6 .left{
    width: 50%;
}

#index-body .init-6 .right {
    height: 48vw;
    margin: 0 -25px;
    overflow: hidden;
    max-width: 50%;
}

#index-body .init-6 .right ul.list {
    padding: 0 25px;
    width: 50%;
}

#index-body .init-6 .right ul.list li {
    padding: 14px 0;
}

#index-body .init-6 .right ul.list li .imgbox {
    border-radius: 10px;
    border: solid 1px rgba(255, 255, 255, 0.15);
}

#index-body .init-6 .right ul.list li .imgbox img {
    transition: all 0.5s;
}

#index-body .init-6 .right ul.list li:hover .imgbox img {
    filter: none;
}

#index-body .init-6 .right .mob {
    display: none;
}

#index-body .init-6 .right .mob ul li .imgbox {
    border: solid 1px rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

#index-body .init-7 .news-list {
    padding: 0 11%;
}

#index-body .init-7 .news-list .zdy-switch>div {
    position: absolute;
    margin-top: -25px;
}

#index-body .init-7 .news-list ul li .box .time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 16px;
    border: solid 1px #e5e5e5;
}

#index-body .init-9{
    z-index: 2;
    padding-bottom: 280px;
}
#index-body .init-9 .shadow{
    z-index: -2;
    width: 100%;
    height: 720px;
    background-size: cover;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
}
#index-body .init-9 .mk-desc{
    max-width: 1080px;
    margin: auto;
}
#index-body .init-9 .content .swiper{
    padding: 10px;
}
#index-body .init-9 .content ul li .box .img{
    display: block;
}
#index-body .init-9 .content ul li .box .img img{
    width: 100%;
}
#index-body .init-9 .content ul li .box .imgC{
    box-shadow:0 0 10px rgba(42, 31, 8, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
#index-body .init-9 .content ul li .box .imgC .btn{
    width: 50px;
    height: 50px;
    background: var(--color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all .5s;
}
#index-body .init-9 .content ul li .box .imgC .btn i{
    width: 14px;
    height: 14px;
}
#index-body .init-9 .content ul li .box .text{
    display: block;
    font-weight: bold;
}
#index-body .init-9 .content ul li .box:hover .imgC .btn{
    opacity: 1;
}
#index-body .init-9 .content ul li .box:hover .text{
    color: var(--color);
}

.btn-more {
    width: 50px;
    height: 50px;
    background-color: var(--color);
    border: 1px solid transparent;
    transition: all 0.5s;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-more i {
    font-size: 24px;
    color: #fff;
    transition: all 0.5s;
}

.btn-more:hover {
    border-color: var(--color);
    background-color: #fff;
}

.btn-more:hover i {
    color: var(--color);
}

@keyframes about-line1 {
    0% {
        top: 0;
    }

    50% {
        top: calc(50% - 70px);
    }

    100% {
        top: 0;
    }
}

@keyframes about-line2 {
    0% {
        top: 50%;
    }

    50% {
        top: calc(100% - 70px);
    }

    100% {
        top: 50%;
    }
}

#footer{
    background: #000318;
}
#footer .footer-userinfo p {
    color: rgba(255, 255, 255, 0.7);
}

#footer .footer-userinfo form {
    width: 100%;
}

#footer .footer-userinfo form ul {
    border-radius: 0px 30px 0px 30px;
    overflow: hidden;
}

#footer .footer-userinfo form li {
    position: relative;
    width: 24%;
    height: 80px;
}

#footer .footer-userinfo form li::before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background-color: #e4e8e5;
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

#footer .footer-userinfo form li.textarea {
    width: 40%;
}

#footer .footer-userinfo form li.send {
    width: 12%;
    background-color: var(--color);
    border-radius: 0px 30px 0px 0px;
    transition: all 0.5s;
    border: 1px solid transparent;
}

#footer .footer-userinfo form li.send img {
    filter: brightness(0) invert(1);
    transition: all 0.5s;
}

#footer .footer-userinfo form li.send::before {
    display: none;
}

#footer .footer-userinfo form li.send:hover {
    background-color: #fff;
    border-color: var(--color);
}

#footer .footer-userinfo form li.send:hover input[type="submit"] {
    color: var(--color);
}

#footer .footer-userinfo form li.send:hover img {
    filter: none;
}

#footer .footer-userinfo form input {
    width: 100%;
    height: 100%;
    background: #fff;
    border: none;
    color: #000;
    font-size: 16px;
    padding: 0 36px;
}

#footer .footer-userinfo form input[type="submit"] {
    width: auto;
    padding: 0;
    background-color: transparent;
    color: #fff;
    margin-right: 10px;
}

#footer .footer-center .footer-t .footer-t-gird {
    width: 100%;
}

#footer .footer-center .footer-t .footer-t-gird .t-list {
    color: #fff;
    display: flex;
    flex-direction: column;
}

#footer .footer-center .footer-t .footer-t-gird .t-list p {
    font-size: 26px;
    margin-bottom: 30px;
    font-family: "Montserrat";
    font-weight: 600;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span:last-child {
    margin-bottom: 0;
}
.linengfoot {
    width: 400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
    transform: translate(10px,5px);
}
#footer .footer-center .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    width: fit-content;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .t-list1{
    width: 440px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list2{
    width: 140px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list3{
    width: 280px;
}
#footer .footer-center .footer-t .footer-t-gird .t-list4{
    width: 350px;
}

#footer .footer-center .footer-t .footer-t-gird .logo {
    max-width: 318px;
}

#footer .footer-center .footer-t .footer-t-gird .logo span {
    color: #fff;
}

#footer .footer-center .footer-t .footer-t-gird .contact span {
    position: relative;
    padding-left: 30px;
    line-height: 1.7;
}

#footer .footer-center .footer-t .footer-t-gird .contact span img {
    position: absolute;
    left: 0;
    top: 5px;
}

#footer .footer-center .footer-t .footer-t-gird .link span {
    position: relative;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .link span::before {
    content: "-";
    color: var(--color);
    padding-right: 5px;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    left: 0;
}

#footer .footer-center .footer-t .footer-t-gird .link span a {
    display: inline-block;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .link span:hover {
    color: var(--color);
}

#footer .footer-center .footer-t .footer-t-gird .link span:hover::before {
    opacity: 1;
}

#footer .footer-center .footer-t .footer-t-gird .link span:hover a {
    transform: translateX(10px);
}

#footer .footer-center .footer-b {
    border-top: 1px solid #292525;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
}

#footer .footer-center .footer-b .left{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

#footer .footer-center .footer-b span {
    margin: 0 10px;
    font-size: 16px;
}

#footer .footer-center .footer-b img {
    width: 220px;
    height: auto;
    padding-top: 5px;
}

#footer .footer-center .footer-b svg {
    display: inline-block;
    vertical-align: top;
    width: auto;
    max-height: 26px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    fill: rgba(255, 255, 255, 0.7);
    margin-top: 1px;
}

#footer .footer-center .footer-b .share li {
    padding: 0 10px;
}

#footer .footer-center .footer-b .share li a {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

#footer .footer-center .footer-b .share li a i {
    color: var(--color);
    transition: 0.5s;
}

#footer .footer-center .footer-b .share li a:hover {
    background-color: var(--color);
}

#footer .footer-center .footer-b .share li a:hover i {
    color: #fff;
}

#footer .footer-center .footer-b .share .ewm a {
    position: relative;
}

#footer .footer-center .footer-b .share .ewm #ewm {
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 5px;
    z-index: 3;
    transition: 0.3s all;
}

#footer .footer-center .footer-b .share .ewm:hover #ewm {
    width: 120px;
    height: 120px;
    transition: 0.3s all;
}

@media (max-width: 1700px) {

    #index-body .init-2 .about-con{
        padding-bottom: 80px;
    }
    #index-body .init-1 .right .cate-imglist li .imgBox .post{
        transform: translateX(-23%);
        zoom: 0.9;
    }
}

@media (max-width: 1450px) {
    #banner .thumb-content .swiper-tool .tag {
        margin-right: 5px;
        font-size: 156px;
    }

    #index-body .init-2 .about-con .right .datashow ul {
        padding-left: 30px;
    }
    

    #index-body .init-2 .about-con {
        padding-bottom: 60px;
    }
    #index-body .init-2 .about-img .clip_wrap{
        height: 560px;
    }
    #index-body .init-1 .right .cate-imglist li .imgBox .post {
        transform: translateX(-26%);
        zoom: 0.8;
    }


}

@media (max-width: 1250px) {
    body {
        font-size: 14px;
    }

    #banner .banner-content {
        height: 40vw;
    }

    #banner .banner-content .swiper-slide .txt-content {
        margin-top: -20px;
    }

    #banner .thumb-content {
        height: 98px;
    }

    #banner .thumb-content .swiper-tool .tag {
        font-size: 100px;
    }

    .zdy-switch {
        zoom: 0.85;
    }

    .zdy-switch>div {
        margin-left: 5px;
        margin-right: 5px;
    }

    #index-body .init-2 .about-con .left {
        width: 49%;
    }

    #index-body .init-2 .about-con .right .datashow ul {
        max-width: 50%;
    }

    #index-body .init-2 .about-con .right {
        width: 50%;
        padding-left: 1%;
    }

    #index-body .init-3 .ome-list li .box .txtbox {
        padding: 20px;
    }

    .btn-more {
        zoom: 0.9;
    }

    #index-body .init-4 .factory-list ul {
        top: 60px;
    }

    #index-body .init-5 .bottom .service-list ul li .box .txt-box {
        padding: 55px 10px 20px;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.link {
        display: none;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.logo {
        max-width: 46%;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
        max-width: 46%;
    }

    #footer .footer-center .footer-b .fb-con {
        justify-content: center;
    }

    #footer .footer-center .footer-b .fb-con>div {
        padding: 5px 0;
    }



    #index-body .init-2 .about-con {
        padding-bottom: 40px;
    }
    #index-body .init-2 .about-img .clip_wrap {
        height: 460px;
    }
    #index-body .init-1 .right .cate-imglist li .imgBox .play{
        zoom: 0.85;
    }
    #index-body .init-1 .right .cate-imglist li .imgBox .post {
        transform: translateX(-21%);
        zoom: 0.6;
    }
}

@media (max-width: 1000px) {
    #banner .banner-content {
        height: 400px;
    }

    #banner .thumb-content {
        height: 78px;
    }

    #banner .thumb-content .swiper-tool .tag {
        font-size: 60px;
        transform: none;
    }

    #index-body .init-1 .left {
        width: 100%;
    }

    #index-body .init-1 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 40px;
    }

    .btn-go {
        zoom: 0.85;
    }

    #index-body .init-1 .left .cate-navlist {
        max-width: 100%;
    }

    #index-body .init-2 .about-con .left {
        width: 100%;
    }

    #index-body .init-2 .about-con .right {
        width: 100%;
        padding-left: 0;
    }

    #index-body .init-2 .about-img {
        height: auto;
    }

    #index-body .init-2 .about-img .clip_wrap {
        height: auto;
        margin-top: 0;
    }

    #index-body .init-2 .about-img img {
        transform: translateZ(0px) scale(1) !important;
    }

    #index-body .init-3 .ome-list li {
        width: 33.3% !important;
    }

    #index-body .init-4 .factory-list.pc {
        display: none;
    }

    #index-body .init-4 .factory-list-mobile {
        display: block;
    }

    #index-body .init-5 .top .mktt-box {
        max-width: 100%;
        margin-bottom: 3%;
    }

    #index-body .init-6{
        margin-top: 40px;
    }
    #index-body .init-6 .bgl {
        display: none;
    }

    #index-body .init-6::after {
        display: none;
    }

    #index-body .init-6 .left {
        width: 100%;
        padding-top: 0;
    }

    #index-body .init-6 .left .tt-ico.white {
        filter: none;
    }

    #index-body .init-6 .left .mk-desc.white {
        color: #141414;
    }

    #index-body .init-6 .left .mk-tt.white {
        color: #141414;
    }

    #index-body .init-6 .left .btn-go {
        background-color: #000;
        color: #fff;
    }

    #index-body .init-6 .right .pc {
        display: none;
    }

    #index-body .init-6 .right {
        max-width: 100%;
        margin: 5% 0;
        height: auto;
        background-color: #000318;
        padding: 40px 20px;
    }

    #index-body .init-6 .right .mob {
        display: block;
    }

    #footer .footer-userinfo form ul {
        border-radius: 0;
    }

    #footer .footer-userinfo form li {
        width: 100%;
        height: 60px;
        margin: 5px 0;
    }

    #footer .footer-userinfo form li.textarea {
        width: 100%;
    }

    #footer .footer-userinfo form li.send {
        width: 160px;
        border-radius: 0;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list p {
        font-size: 22px;
    }

    #index-body .init-1 .right .cate-imglist li .imgBox .post {
        transform: translateX(-16%);
    }

}

@media (max-width: 700px) {
    #banner .thumb-content {
        display: none;
    }
    #banner .banner-content .swiper-slide .txt-content {
        margin-top: 0;
    }

    #index-body .init-3 .ome-list li {
        width: 100% !important;
        margin: 10px 0;
    }

    #index-body .init-7 .news-list .zdy-switch>div {
        display: none;
    }

    #index-body .init-7 .news-list {
        padding: 0;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.logo {
        max-width: 100%;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list.contact {
        max-width: 100%;
        margin-top: 30px;
    }
    #footer .footer-center .footer-t .footer-t-gird .t-list p{
        margin-bottom: 20px;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list1{
        width: 100%;
    }
    #footer .footer-center .footer-t .footer-t-gird .t-list.contact{
        width: 100%;
    }

    #index-body .init-1 .right .cate-imglist li .imgBox .post {
        transform: translateX(-18%);
        max-width: 40%;
        object-fit: cover;
    }

}

@media (max-width: 500px) {
    #index-body .init-2 .about-con .right .datashow {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #index-body .init-2 .about-con .right .datashow ul {
        max-width: 100%;
        width: 100%;
        padding-top: 40px;
        padding-left: 0;
        border-left: 0;
    }

    #index-body .init-2 .about-con .right .datashow ul::before,
    #index-body .init-2 .about-con .right .datashow ul::after {
        display: none;
    }
    #index-body .init-2 .about-con .right .datashow ul.list1 li{
        transform: translateY(0);
    }

    #index-body .init-2 .about-con .right .datashow ul li {
        padding: 40px 0 0;
        
    }
    #index-body .init-2 .about-con .right .datashow ul li:nth-child(1) {
        padding: 0;
    }

    #index-body .init-2 .about-con .right .datashow h4 {
        justify-content: center;
    }

}

/*=========== inner page===========*/
.inner-page .mk-desc {
    line-height: 1.8;
}
.bo-ra-20 {
    border-radius: 20px;
}

.inner-banner {
    margin-top: 170px;
    overflow: hidden;
}

.inner-banner .con {
    padding-left: 90px;
}

.inner-banner img.ban {
    position: absolute;
    left: 0;
    top: 10px;
}

.inner-banner .mbx {
    color: #666565;
}

.inner-banner .mbx span {
    color: var(--color);
}

.inner-banner .con .line {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #b1b2b2;
    position: absolute;
    left: 0;
    bottom: 0;
}

@media (max-width: 1250px) {
    .inner-banner {
        margin-top: 60px;
    }
}

/*=========== about page start===========*/
.about-page .about-1 .about-img img {
    border-radius: 20px;
}

.about-page .about-1 .about-txt {
    background-color: #f4f5f9;
    border-radius: 10px;
    width: 85%;
    margin: -5% auto 0;
    position: relative;
    z-index: 1;
}

.about-page .about-1 .about-txt .desc {
    color: #666666;
    line-height: 1.7;
}

.about-page .about-2 {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.about-page .about-2 .swiper{
    padding: 60px 0;
    margin: 0 150px;
}
.about-page .about-2 .mk-tt{ 
    color: #fff;
}
.about-page .about-2 .swiper .h6{
    line-height: 2;
    color: #fff;
}

.about-page .about-2 .swiper .text{
    line-height: 2;
    padding-right: 20px;
    color: #fff;
}  
.about-page .about-2 .swiper .text .text2{
    padding-right: 4px;
    overflow-y: auto;
    max-height: 160px;
}
.about-page .about-2 .swiper .swiper-wrapper{
    align-items: flex-end;
}
.about-page .about-2 .swiper .swiper-slide .box{
    position: relative;
}
.about-page .about-2 .swiper .swiper-slide .box .line{
    display: block;
    height: 1px;
    background: #dcdcdc;
    position: relative;
    width: 100%;
    margin: 20px 0 10px;
}
.about-page .about-2 .swiper .swiper-slide .box .line:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    -webkit-transition: 6.5s linear;
    -moz-transition: 6.5s linear;
    transition: 6.5s linear;
}
.about-page .about-2 .swiper .swiper-slide .box .line i{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #787878;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.about-page .about-2 .swiper .swiper-slide .box .line i:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--color);
    border-radius: inherit;
    opacity: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}
.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line:before {
    width: 100%
}

.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line i {
    left: 3px;
    background-color: var(--color)
}

.about-page .about-2 .swiper .swiper-slide.swiper-slide-active .box .line i:after {
    opacity: .5
}


.about-page .about-2 .zdy-switch>div{
    position: absolute;
    margin-top: -25px;
    background-color: #fff;
}
.about-page .about-2 .zdy-switch>div:hover{
    background-color: var(--color);
}
.about-page .about-3 .brands-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}

.about-page .about-3 .brands-list ul li .box .txtbox .desc {
    height: 158px;
    overflow-y: auto;
    line-height: 1.7;
    transition: all 0.5s;
}

.about-page .about-3 .brands-list ul li .box:hover {
    background-color: var(--color);
}

.about-page .about-3 .brands-list ul li .box:hover .tt {
    color: #fff;
}

.about-page .about-3 .brands-list ul li .box:hover .desc {
    color: #fff;
}

.about-page .about-3 .brands-list ul li .box:hover .desc::-webkit-scrollbar-thumb {
    background-color: #000;
}

.about-page .about-4 {
    background-color: #f4f5f9;
}

.about-page .about-4 .list {
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 0 20% 2.5%;
}

.about-page .about-4 .list ul li {
    padding-top: 130px;
    transition: all 0.5s;
}

.about-page .about-4 .list ul li .box {
    transform-origin: bottom;
    transition: all 0.5s;
}

.about-page .about-4 .list ul li.swiper-slide {
    opacity: 0;
}

.about-page .about-4 .list ul li.swiper-slide-prev .box {
    transform: scale(1.2) translateX(-20px);
}

.about-page .about-4 .list ul li.swiper-slide-next {
    z-index: 9;
}

.about-page .about-4 .list ul li.swiper-slide-next .box {
    transform: scale(1.2) translateX(20px);
}

.about-page .about-4 .list ul li.swiper-slide-active {
    z-index: 10;
}

.about-page .about-4 .list ul li.swiper-slide-active .box {
    transform: scale(1.4);
}

.about-page .about-4 .list .zdy-switch>div {
    position: absolute;
    background-color: #ededed;
}

.about-page .about-4 .list .zdy-switch>div:hover {
    background-color: var(--color);
}

.about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
    left: 13%;
}

.about-page .about-4 .list .zdy-switch>div.swiper-button-next {
    right: 13%;
}

@media (max-width: 1450px) {
    .about-page .about-4 .list {
        padding: 0 10% 2.5%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: 2%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: 2%;
    }
}

@media (max-width: 1250px) {
    .about-page .about-2 .swiper .swiper-slide::after{
        height: 150px;
    }
    .about-page .about-3 .brands-list ul li .box {
        padding: 20px 15px;
    }

    .about-page .about-4 .list {
        padding: 0 0 2.5%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-prev {
        left: -9%;
    }

    .about-page .about-4 .list .zdy-switch>div.swiper-button-next {
        right: -9%;
    }

    .about-page .about-4 .list ul li.swiper-slide-prev .box {
        transform: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-next .box {
        transform: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: scale(1.2);
    }

    .about-page .about-4 .list ul li {
        padding-top: 70px;
    }
}

@media (max-width: 1000px) {
    .about-page .about-1 .about-txt {
        width: 100%;
        margin-top: 5%;
    }
    .about-page .about-2 .swiper {
        padding: 30px 0;margin: 0 66px;
    }
    .about-page .about-2 .swiper .swiper-slide .box {
        padding: 0 10px;
    }
}

@media (max-width: 700px) {
    .about-page .about-1 .about-img img {
        height: 360px;
        object-fit: cover;
    }
    .about-page .about-2 .swiper {
        padding: 20px 0;
    }

    .about-page .about-4 .list {
        background-image: none !important;
    }

    .about-page .about-4 .list .zdy-switch {
        display: none;
    }

    .about-page .about-4 .list ul li.swiper-slide-active .box {
        transform: none;
    }

    .about-page .about-4 .list ul li {
        padding-top: 0;
    }
}

@media (max-width: 500px) {
    .about-page .about-2 .swiper .text{
        padding-right: 0;
    }
    .about-page .about-2 .swiper .swiper-slide .box{
        padding: 0 4px;
    }
}

/*=========== about page end===========*/


/*=========== factory-page start===========*/
.factory-page .factory-1 .con {
    position: relative;
}

.factory-page .factory-1 .con .anniu {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 20px;
}

.factory-page .factory-1 .con .anniu .mktt-box {
    margin-top: -80px;
}

.factory-page .factory-1 .con .anniu .mk-desc {
    max-width: 1430px;
    color: rgba(255, 255, 255, 0.7);
}

.factory-page .factory-2 {
    background-color: #f4f5f9;
}

.factory-page .factory-2 .left {
    width: 50%;
    padding-right: 5%;
}

.factory-page .factory-2 .left .datashow ul li {
    width: 50%;
    padding: 10px 0;
}

.factory-page .factory-2 .left .datashow ul li h4 {
    transition: all 0.5s;
}

.factory-page .factory-2 .left .datashow ul li:hover h4 {
    color: var(--color);
}

.factory-page .factory-2 .right {
    width: 50%;
    padding-left: 5%;
}

.factory-page .factory-2 .right .img-box {
    border-radius: 20px;
}

.factory-page .factory-3 .left {
    width: 50%;
    padding-right: 3%;
}

.factory-page .factory-3 .right {
    width: 50%;
    padding-left: 5%;
}

.factory-page .factory-3 .right .btn-go02 {
    border: 1px solid transparent;
}

.factory-page .factory-3 .right .btn-go02:hover {
    border-color: var(--color);
}

.factory-page .factory-4 .brands-list ul li .box {
    background-color: #f4f5f9;
    border-radius: 5px;
    padding: 30px;
    transition: all 0.5s;
}

.factory-page .factory-4 .brands-list ul li .box .txtbox .desc {
    height: 158px;
    overflow-y: auto;
    line-height: 1.7;
    transition: all 0.5s;
}

.factory-page .factory-4 .brands-list ul li .box:hover {
    background-color: var(--color);
}

.factory-page .factory-4 .brands-list ul li .box:hover .tt {
    color: #fff;
}

.factory-page .factory-4 .brands-list ul li .box:hover .desc {
    color: #fff;
}

.factory-page .factory-4 .brands-list ul li .box:hover .desc::-webkit-scrollbar-thumb {
    background-color: #000;
}

.zdy-dots02 ul li {
    width: 93px;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    border: 0;
}

.zdy-dots02 ul li.slick-active {
    background-color: var(--color);
}

@media (max-width: 1250px) {
    .factory-page .factory-4 .brands-list ul li .box {
        padding: 20px 15px;
    }

    .factory-page .factory-1 .con .anniu .mktt-box {
        margin-top: 0;
    }

    .factory-page .factory-1 .con>img {
        min-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 1000px) {
    .factory-page .factory-2 .left {
        width: 100%;
        padding-right: 0;
    }

    .factory-page .factory-2 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 5%;
    }

    .factory-page .factory-3 .left {
        width: 100%;
        padding-right: 0;
    }

    .factory-page .factory-3 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 5%;
    }
}

@media (max-width: 500px) {
    .factory-page .factory-2 .left .datashow ul li {
        width: 100%;
    }
}

/*=========== factory-page end===========*/

/*=========== .product-link-page end===========*/
.m-page {
    text-align: center;
    float: none;
    margin-top: 30px;
}

.m-page a,
.m-page span {
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 36px;
    border-radius: 5px;
    color: #000;
    font-weight: 500;
    -moz-box-shadow: 0 2px 10px 0 #d8dde6;
    -o-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin: 5px;
}

.m-page span,
.m-page a:hover {
    background: var(--color) none repeat scroll 0 0;
    color: #fff;
}

@media screen and (max-width: 700px) {
    .m-page {
        margin-top: 20px;
    }
}

/*=========== news-page start===========*/
.news-page .news-1 .box {
    padding: 3% 5%;
    background-color: var(--color);
    color: white;
}

.news-page .news-1 .box form {
    height: 3.75em;
    border: 1px solid white;
}

.news-page .news-1 .box form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1.8em;
}

.news-page .news-1 .box form input::-webkit-input-placeholder {
    color: white;
}

.news-page .news-1 .box form input:-moz-placeholder {
    color: white;
}

.news-page .news-1 .box form input::-moz-placeholder {
    color: white;
}

.news-page .news-1 .box form input:-ms-input-placeholder {
    color: white;
}

.news-page .news-1 .box form input::placeholder {
    color: white;
}

.news-page .news-1 .box form button {
    width: 5.625em;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: none;
    background-color: transparent;
}

.news-page .news-1 .box form button i {
    font-size: 2em;
}

.news-page .news-2 ul {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
}

.news-page .news-2 ul li {
    padding: 6% 10%;
    border: 1px solid #ccc;
    background-color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}

.news-page .news-2 ul li:hover {
    -webkit-transform: translate(10px, -10px);
    -moz-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    z-index: 1;
}
.news-page .news-2 ul li .h6{
    text-overflow: -o-ellipsis-lastline;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 1;
 -webkit-box-orient: vertical;
}


@media screen and (max-width: 1000px) {
      .news-page .news-1 .box i img {
        max-height: 40px;
    }
        .news-page .news-2 ul li {
        padding: 5%;
    }
}
/*=========== news-page end===========*/

.newdet-page h1 {
  line-height: 1.4;
}

.newdet-page .text {
  color: #666;
  line-height: 2;
}
.newdet-page .text h2 {
  font-size: 20px;
  line-height: 1.6;
  color: #83b444;
  font-weight: 600;
}
.newdet-page .text h3 {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  font-weight: 600;
}
.newdet-page .text ol li,.newdet-page .text ul li {
    padding: 0 0 0 10px;
    list-style: square;
    list-style-position: inside;
}
.newdet-page .text strong {
  color: black;
}

/*.newdet-page .text p {
  margin-top: 1.5em;
}*/

.newdet-page .text p:first-child {
  margin-top: 0;
}

.newdet-page .m-link a {
  height: 2em;
  padding: 0 2.5em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-radius: 5px;
}

.newdet-page .m-link a:hover {
  background-color: black;
}

.newdet-page .form input,
.newdet-page .form textarea {
  display: block;
  width: 100%;
  border: 1px solid #bebebe;
  padding: .9em 1.3em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.newdet-page .form input::-webkit-input-placeholder,
.newdet-page .form textarea::-webkit-input-placeholder {
  color: black;
}

.newdet-page .form input:-moz-placeholder,
.newdet-page .form textarea:-moz-placeholder {
  color: black;
}

.newdet-page .form input::-moz-placeholder,
.newdet-page .form textarea::-moz-placeholder {
  color: black;
}

.newdet-page .form input:-ms-input-placeholder,
.newdet-page .form textarea:-ms-input-placeholder {
  color: black;
}

.newdet-page .form input::placeholder,
.newdet-page .form textarea::placeholder {
  color: black;
}

.newdet-page .form input:focus,
.newdet-page .form textarea:focus {
  border-color: var(--color);
}

.newdet-page .form textarea {
  height: 230px;
}

.newdet-page .form input[type="submit"] {
  padding: .45em 2em;
  width: auto;
  height: auto;
  border: none;
  margin-left: auto;
  background-color: var(--color);
  color: #fff;
  transition: all 0.5s;
}
.newdet-page .form input[type="submit"]:hover{
    background-color: #000;
}

.inner-page .sidebarLeft {
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
}

.inner-page .sidebarLeft .slide span.h6 {
  padding: 2% 4%;
  border: 1px solid #b1b1b1;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inner-page .sidebarLeft .slide span.h6.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.inner-page .sidebarLeft .slide ul {
  padding: 6% 4%;
  border: 1px solid #b1b1b1;
  color: #9e9e9e;
  margin: -1px 0;
}

.inner-page .sidebarLeft .slide ul li {
  margin-bottom: 1.2em;
}

.inner-page .sidebarLeft .slide ul li i {
  width: 1.42857143em;
  height: 1.42857143em;
  border-radius: 3px;
  border: 1px solid #9e9e9e;
  margin-right: .5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inner-page .sidebarLeft .slide ul li i:before {
  font-size: 1.4em;
  opacity: 0;
}

.inner-page .sidebarLeft .slide ul li.active i:before {
  opacity: 1;
}

.inner-page .sidebarLeft .info {
  background-color: #010731;
  padding: 15% 10%;
  border-radius: 10px;
}
.inner-page .sidebarLeft .info .text{
    color: #fff;
}
.inner-page .sidebarLeft .info .share a i{
    color: #fff;
}
.inner-page .sidebarLeft .nav {
  border: 1px solid #bebebe;
  border-radius: 10px;
}

.inner-page .sidebarLeft .nav span.h6 {
  background-color: var(--color);
  color: white;
  padding: 10px 20px;
  line-height: 1.2;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.inner-page .sidebarLeft .nav>ul>li{

}
.inner-page .sidebarLeft .nav ul li {
  border-top: 1px solid #bebebe;
  position: relative;
  font-size: 20px;
  font-weight: bold;
}

.inner-page .sidebarLeft .nav ul li:first-child {
  border-top: none;
}

.inner-page .sidebarLeft .nav ul li a {
  padding: .8em 20px;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sidebarLeft .nav ul li a:hover {
  background-color: var(--color);
  color: white;
}
.inner-page .sidebarLeft .nav ul li i {
    position: absolute;
    top: 21px;
    right: 14px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.inner-page .sidebarLeft .nav ul li ul{
    padding-left: 10px;
}
.inner-page .sidebarLeft .nav ul li li{
    font-size: 18px;
    font-weight: 300;
    color: #666;
}
.inner-page .sidebarLeft .nav ul li li li{
    font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .newdet-page h1 {
    width: 100%;
    font-size: 22px;
    line-height: 1.4;
  }
    .inner-page .sidebarLeft {
    display: none;
  }
}


.contact-page .contact-1 .left {
  /*position: -webkit-sticky;
  position: sticky;
  top: 80px;*/
}

.contact-page .contact-1 .left .text {
  color: rgba(0, 0, 0, 0.8);
}

.contact-page .contact-1 .left .text span {
  color: black;
}

.contact-page .contact-1 .left .text i {
  width: 2.625em;
  height: 2.625em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}

.contact-page .contact-1 .left .text .imgC{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625em;
  height: 2.625em;
  border-radius: 100%;
  background-color: var(--color);
}

.contact-page .contact-1 .left .text i:before {
  font-size: 1.2em;
}

.contact-page .contact-1 .right p,
.contact-page .contact-1 .right span {
  display: block;
  margin-bottom: .2em;
  opacity: .8;
}

.contact-page .contact-1 .right p i,
.contact-page .contact-1 .right span i {
  color: var(--color);
}

.contact-page .contact-1 .right input,
.contact-page .contact-1 .right textarea,
.contact-page .contact-1 .right select {
  width: 100%;
  padding: .9em;
  border: none;
  background-color: #f0f1f2;
  font-size: inherit;
  line-height: 1.4;
}
.contact-page .contact-1 .right input[type="submit"]{
    width: 196px;
    background-color: var(--color);
}
.contact-page .contact-1 .right input[type="submit"]:hover{
    background-color: #000;color: #fff;
}
.contact-page .contact-1 .right textarea {
  height: 110px;
}

.contact-page .contact-1 .right select {
  padding: 1em;
}

.contact-page .contact-1 .right button {
  width: auto;
  border: none;
}

.contact-page iframe {
  border: none;
  display: block;
}
@media screen and (max-width: 1250px) {

  .contact-page iframe {
    height: 400px;
  }
}
@media screen and (max-width: 1000px){
    .contact-page .contact-1 .left {
    position: static;
  }
}


.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1.33333333em 2.3em;
}

.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  cursor: hand;
  font-size: 1.2em;
  line-height: 1;
}

.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}

.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}

.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-page .faq-2 .form form {
  height: 4.375em;
  border-radius: 2.1875em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 3em;
  padding: .8em 2em .8em 3em;
  border: 1px solid #dcdcdc;
  background-color: transparent;
}

.faq-page .faq-2 .form form .logo2 {
  max-width: 60px;
}

.faq-page .faq-2 .form form .logo2 a {
  height: 100%;
}

.faq-page .faq-2 .form form .logo2 a img {
  height: inherit;
}

.faq-page .faq-2 .form form .logo2,
.faq-page .faq-2 .form form button {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq-page .faq-2 .form form button {
  width: 4.375em;
  height: 4.375em;
  border: none;
  color: var(--color);
  background-color: transparent;
}

.faq-page .faq-2 .form form button i {
  font-size: 2em;
}

.faq-page .faq-2 .form form ul {
  width: 100%;
  padding: 0 .5%;
}

.faq-page .faq-2 .form form ul li {
  width: 100%;
}

.faq-page .faq-2 .form form ul li input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .4em 1.2em;
  border-left: 1px solid #d2d2d2;
}

.faq-page .faq-2 .form form ul li:first-child input {
  border-left: none;
}

.faq-page .faq-2 .text a {
  color: var(--color);
  text-decoration: underline;
}
@media screen and (max-width: 700px) {

  .faq-page .faq-2 .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

  .faq-page .faq-2 .form form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq-page .faq-2 .form form ul li {
    width: 100%;
    margin: .5em 0;
  }

  .faq-page .faq-2 .form form ul li:first-child input {
    border-left: 1px solid #d2d2d2;
  }

  .faq-page .faq-2 .form form button {
    height: 3em;
    width: 3em;
  }

  .faq-page .faq-2 .form form {
    padding: 1em;
    border-radius: .5em;
  }
}
@media screen and (max-width: 500px) {
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}


.gallery-page .wrap {
  margin: -18px;
}
.gallery-page .wrap li {
  padding: 18px;
}

.gallery-page .wrap li .img-box{
    border-radius: 10px;overflow: hidden;
}

.gallery-page.partner .wrap li{
    width: 20%;
}
@media screen and (max-width: 1450px) {
    .gallery-page.partner .wrap li{
        width: 25%;
    }
}
@media screen and (max-width: 1000px) {
    .gallery-page.partner .wrap li{
        width: 33.3%;
    }
}
@media screen and (max-width: 700px) {
    .gallery-page.partner .wrap li{
        width: 50%;
    }
}
@media screen and (max-width: 500px) {
    .gallery-page.partner .wrap li{
        width: 100%;
    }
}
#mobile3 .m-search form input[type=submit]{
    background: url(../images/icon-search-white.png) center center no-repeat;
}

#mobile3{
    z-index: 22;
}
#wap-bottom .left, #wap-bottom .right{
    align-items: center;
}
#wap-bottom .left a, #wap-bottom .right a{
    line-height: 1;
}


.product-page .category-desc {
  background-color: #f9f9f9;
}

.product-page .category-desc .Auxil-catdes{
    padding-right: 6px;
    overflow-y: auto;
    max-height: 260px;
}

.product-page .productNav ul {
  position: relative;
}

.product-page .productNav ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f2f2f2;
}

.product-page .productNav ul li {
  width: auto;
  position: relative;
}

.product-page .productNav ul li+li {
  margin-left: 45px;
}

.product-page .productNav ul li a {
  padding: 15px 0;
}

.product-page .productNav ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.product-page .productNav ul li.active a::after {
  width: 100%;
}

.productList ul {
  margin: -20px;
}
.productList ul>p{
    margin: 30px;
}
.productList ul li {
  padding: 20px;
}

.productList ul li .img img {
  transition: .5s ease;
}

.productList ul li .img img.on {
  opacity: 0;
  left: 0;
  top: 0;
}


.productList ul li .img .more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 47px;
  line-height: 47px;
  transition: .3s;
  background: var(--color);
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px);
  z-index: 15;
}

.productList ul li .img .more:hover {
  color: white;
  background: #000;
}

.productList ul li .img:hover .more {
  opacity: 1;
  transform: translateY(0);
}

.product-page .slideBar .top {
  position: relative;
  margin-bottom: 60px;
}
.product-page .slideBar .top li {
  margin: 10px 0;
  padding: 0 15px;
}
.product-page .slideBar .top li a.add {
  display: flex;
  align-items: center;
  font-size: 18px;
  height: 56px;
  transition: .5s;
  background: #f3f3f3;
  padding: 3px 25px;
  position: relative;
}

.product-page .slideBar .top li a.add:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-left: 8px solid transparent;
  border-top: 8px solid var(--color);
  border-right: 8px solid transparent;
  opacity: 0;
  transition: .5s;
}

.product-page .slideBar .top li.active a.add,
.product-page .slideBar .top li:hover a.add {
  background: var(--color);  
}

.product-page .slideBar .top li.active a.add:after,
.product-page .slideBar .top li:hover a.add:after {
  opacity: 1;
}

.product-page .slideBar .top li a.active.add {
  background: var(--color);
  
}

.product-page .slideBar .top li a.active.add:after {
  opacity: 1;
}

.product-page .slideBar .top li ul.children {
  display: none;
}

.product-page .slideBar .top li.active ul.children {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-page .slideBar .top li ul.children li {
  width: auto;
  padding: 0 20px;
  margin: 2px 0;
}

.product-page .slideBar .top li ul.children li a {
  font-size: 20px;
  transition: .5s;
  position: relative;
  color: #767676;
}

.product-page .slideBar .top li ul.children li a.active,
.product-page .slideBar .top li ul.children li a:hover {
  color: var(--color);
}

.product-page .slideBar .azz {
  display: none;
}

.product-page .slideBar .bottom {
  display: flex;
  margin-top: 44px;
}

.product-page .slideBar .bottom li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: var(--color);
  opacity: 0;
  transition: .5s;
}

.product-page .slideBar .bottom li.active,
.product-page .slideBar .bottom li:hover {
  color: var(--color);
}

.product-page .slideBar .bottom li.active:after,
.product-page .slideBar .bottom li:hover:after {
  opacity: 1;
  width: 100%;
}

.product-page .slideBar .bottom {
  flex-wrap: wrap;
}
@media screen and (max-width: 1450px){

}
@media screen and (max-width: 1250px){
  .product-page .slideBar .top{
    margin: 0 -5px 60px;
  }
  .product-page .slideBar .top li{
    width: 25%;
    padding: 0 5px;
  }
}
@media screen and (max-width: 1000px) {
  .product-page .slideBar {
    display: none;
  }
  .product-page .productNav {
    display: none;
  }

  .productList ul {
    margin: -15px;
  }

  .productList ul li {
    padding: 15px;
  }
}


.prodet-page {
  padding: 100px 0 0;
}

.prodet-page .prodet-1 .box .left .big-small {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.prodet-page .prodet-1 .box .left .big {
  width: 85%;
}
.prodet-page .prodet-1 .box .left .big ul li img{
  border: 1px solid #e6e6e6;
  width: 100%;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #fff;
  background-color: var(--color);
  font-family: FontAwesome;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-prev {
  left: 20px;
}

.prodet-page .prodet-1 .box .left .big .slick-arrow.slick-next {
  right: 40px;
}

.prodet-page .prodet-1 .box .left .small {
  width: 15%;
}

.prodet-page .prodet-1 .box .left .small ul {
  margin: -5px;
}

.prodet-page .prodet-1 .box .left .small ul li {
  padding: 5px;
}

.prodet-page .prodet-1 .box .left .small ul li img{
  border: 1px solid #e6e6e6;
}

.prodet-page .prodet-1 .box .right .content {
  /*max-width: 410px;*/
}

.prodet-page .prodet-1 .box .right .content .text {
  line-height: 2;
  max-height: 403px;
  padding-right: 20px;
  margin-top: 43px;
  overflow: auto;
}

.prodet-page .prodet-1 .box .right .content a.msg1 {
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  text-align: center;
}

.prodet-page .prodet-1 .box .right .content a.msg1:hover {
  color: white;
  background-color: #000000;
}

.prodet-page .prodet-1 .box .right .content .social-links h4,
.prodet-page .prodet-1 .box .right .content .social-links ul {
  display: inline-block;
  vertical-align: middle;
}

.prodet-page .prodet-2 form input,
.prodet-page .prodet-2 form textarea {
  width: 100%;
  padding: 20px;
  font-size: 14px;
  border: 1px solid #e5e5e5;
  margin-bottom: 20px;
  font-style: italic;
}

.prodet-page .prodet-2 form textarea {
  height: 240px;
}

.prodet-page .prodet-2 form button {
  margin-top: 30px;
  font-size: 14px;
  font-weight: 400;
  color: #FFFFFF;
  background-color: var(--color);
  border: none;
  padding: 15px 45px;
  text-transform: uppercase;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.prodet-page .prodet-2 form button:hover {
  background-color: #000000;
}

.prodet-page .prodet-2 .options ul {
  position: relative;
}

.prodet-page .prodet-2 .options ul::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #f2f2f2;
}

.prodet-page .prodet-2 .options ul li {
  width: auto;
  position: relative;
}

.prodet-page .prodet-2 .options ul li+li {
  margin-left: 130px;
}

.prodet-page .prodet-2 .options ul li a {
  padding: 15px 40px;
}

.prodet-page .prodet-2 .options ul li a::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  display: block;
  height: 3px;
  width: 0;
  background-color: var(--color);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.prodet-page .prodet-2 .options ul li.active a::after {
  width: 100%;
}

.prodet-page .prodet-2 .ret ul li .content {
  padding-left: 126px;
  padding-right: 126px;
}

.prodet-page .prodet-2 .ret ul li .content.form {
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.prodet-page .prodet-3 {
  padding-top: 100px;
}

.prodet-page .prodet-3 .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: var(--color);
}

.prodet-page .prodet-3 .slick-arrow.slick-prev {
  left: -50px;
}

.prodet-page .prodet-3 .slick-arrow.slick-next {
  right: -50px;
}

.prodet-page .prodet-1 .box .left .big {
  position: relative;
}

.prodet-page .prodet-1 .box .left .big .play {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 2px solid #000;
  color: #000;
}

.prodet-page .prodet-1 .box .left .big .play i {
  font-size: 24px;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .prodet-page .prodet-1 .box .right .content h1 {
    margin: 0;
    line-height: 1.4;
  }

  .prodet-page .prodet-1 .box .right .content a.msg1 {
    margin-top: 30px;
  }

  .prodet-page .prodet-2 .options ul li+li {
    margin-left: 60px;
  }
}

@media screen and (max-width: 1000px) {
  .prodet-page {
    padding: 60px 0 0;
  }

  .prodet-page .prodet-1 .box .left {
    width: 100%;
  }

  .prodet-page .prodet-1 .box .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }

  .prodet-page .prodet-3 {
    padding-top: 60px;
  }

  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 0;
    padding-right: 0;
  }

  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-top: 30px;
    padding-bottom: 30px;padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 700px){
  .prodet-page .prodet-2 .options ul li a {
    padding: 6px 20px;
  }
  .prodet-page .prodet-2 .options ul li+li {
      margin-left: 15px;
  }
  .prodet-page .prodet-2 form button{
    margin-top: 10px;
  }
  .prodet-page .prodet-2 form input, .prodet-page .prodet-2 form textarea{
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-1 .box .left .big-small {
    display: block;
  }

  .prodet-page .prodet-1 .box .left .big {
    width: 100%;
    padding: 0;
  }

  .prodet-page .prodet-1 .box .left .small {
    width: 100%;
    margin-top: 10px;
  }

  .prodet-page .prodet-2 form input,
  .prodet-page .prodet-2 form textarea {
    padding: 10px;
  }

  .prodet-page .prodet-2 .options ul li {
    width: 100%;
  }

  .prodet-page .prodet-2 .options ul li+li {
    margin: 0;
  }

  .prodet-page .prodet-2 .ret ul li .content {
    padding-left: 0;
    padding-right: 0;
  }

  .prodet-page .prodet-2 .ret ul li .content.form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .prodet-page .prodet-2 form textarea {
    height: 100px;
  }
}



.customer-page {
  padding-top: 100px;
}

.customer-page .customer-1 .list ul {
  margin: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.customer-page .customer-1 .list ul li {
  padding: 20px;
}

.customer-page .customer-1 .list .mml-text {
  height: 100%;
  padding: 40px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.customer-page .customer-1 .list i {
  display: block;
  height: 70px;
}

.customer-page .customer-1 .list p {
  line-height: 2;
}

.customer-page .customer-2 {
  padding: 100px 0;
}

.customer-page .customer-2 .box {
  margin: -15px;
}

.customer-page .customer-2 .box .left {
  padding: 15px;
}

.customer-page .customer-2 .box .right {
  padding: 15px;
}

.customer-page .customer-2 .tabs {
  border-bottom: 1px solid #f2f2f2;
}

.customer-page .customer-2 .tabs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.customer-page .customer-2 .tabs ul li {
  padding: 15px 0;
  position: relative;
  width: auto;
}

.customer-page .customer-2 .tabs ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 85px;
  height: 3px;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}

.customer-page .customer-2 .tabs ul li.active::after {
  opacity: 1;
}

.customer-page .customer-2 .tabs ul li a {
  font-style: italic;
}

.customer-page .customer-2 .content .text {
  color: #a0a0a0;
}

.customer-page .customer-3 {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.customer-page .customer-3 hr {
  margin: 50px 0;
  border: none;
  border-bottom: 1px solid #dbdbdb;
}

.customer-page .customer-3 .list .slick-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  border: none;
  font-size: 20px;
  color: #FFFFFF;
  background-color: var(--color);
}

.customer-page .customer-3 .list .slick-arrow.slick-prev {
  left: -40px;
}

.customer-page .customer-3 .list .slick-arrow.slick-next {
  right: -40px;
}

.customer-page .customer-3 .list ul {
  margin: -40px;
}

.customer-page .customer-3 .list ul li {
  padding: 40px;
}

.customer-page .customer-3 .list ul li h4{
    font-family: "Montserrat";
    font-weight: 700;
}

.customer-page .customer-3 .list img {
  display: inline-block;
}

.customer-page .customer-4 {
  padding: 100px 0;
}

.customer-page .customer-4 .list ul {
  margin: -15px;
}

.customer-page .customer-4 .list ul li {
  padding: 15px;
}

.customer-page .tit1.line::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background-color: currentcolor;
}
.customer-page .tit1.txt-center.line::after {
  margin: auto;
}

@media screen and (max-width: 1250px) {
  .customer-page .customer-3 .list ul {
    margin: -15px;
    padding: 0 20px;
  }

  .customer-page .customer-3 .list ul li {
    padding: 15px;
  }

  .customer-page .customer-3 .list .slick-arrow.slick-prev {
    left: 0;
  }

  .customer-page .customer-3 .list .slick-arrow.slick-next {
    right: 0;
  }
}

@media screen and (max-width: 1000px) {
  .customer-page .customer-1 .list ul {
    display: block;
    margin: -10px;
  }

  .customer-page .customer-1 .list ul li {
    padding: 10px;
  }

  .customer-page .customer-1 .list .mml-text {
    padding: 30px 15px;
  }

  .customer-page .customer-2 .box .left {
    width: 100%;
  }

  .customer-page .customer-2 .box .right {
    width: 100%;
    text-align: center;
  }

  .customer-page {
    padding-top: 60px;
  }

  .customer-page .customer-2 {
    padding: 60px 0;
  }

  .customer-page .customer-3 {
    padding: 60px 0;
  }

  .customer-page .customer-4 {
    padding: 60px 0;
  }
}

@media screen and (max-width: 700px) {
  .customer-page .customer-2 .tabs ul {
    display: block;
  }

  .customer-page .customer-2 .tabs ul li {
    margin-right: 30px;
  }
}


.select-page .content-box {
    padding: 42px 32px;
    background: #f1f1f1;
    border-radius:8px;
}
.select-page .content-box .search1{
  margin-top: 0px;
}
.select-page .content-box .search1 form{
  position: relative;
}
.select-page .content-box .search1 input{
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
}
.select-page .content-box .search1 input[type="submit"]{
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  background: url(../images/search.png) no-repeat center;
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.resources-page {
  padding: 60px 0 100px;
}
.resources-page .list {
  margin-top: 46px;
}
.resources-page .list .the_head{
  text-align: center;
  height: 88px;
  line-height: 88px;
  background: var(--color);
  color: #fff;
  border-top-left-radius:8px;
  border-top-right-radius:8px;
}
.resources-page .list .the_head .column{
  float: left;
  display: block;
}
.resources-page .list .the_head .column span{
  font-size: 18px;
}
.resources-page .list ul li {
 text-align: center;
 width: 100%;
}
.resources-page .list ul li a.img-box {
  display: block;
}
.resources-page .list ul li span.h6 {
  font-size: 16px;
  margin-right: 1em;
}
.resources-page .list ul li a.download {
  font-size: 16px;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 207px;
  height: 61px;
  line-height: 61px;
  background: var(--color);
  color: #fff;
  border-radius: 10px;
  display: inline-block;
}
.resources-page .list ul li a.download .iconfont{
  font-size: 24px!important;
  margin-left: 17px;
}
.resources-page .list .dw-list li:first-child{
  margin-top: -2px;
}
.resources-page .list .dw-list li:after{
  content:'';
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
}
.resources-page .list .dw-list li .column{
  border: 1px solid #cccccc;
  border-top: none;
  border-left: none;
}
.resources-page .list .dw-list li .column dl dd{
  width: 100%;
  padding: 19px 25px 19px 46px;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.resources-page .list .dw-list li .column:first-child{
  border-left: 1px solid #cccccc;
}
.resources-page .list .dw-list li .column img{
  max-height: 90%;
  vertical-align: middle;
}
.resources-page .list .dw-list li .tit{
  font-size: 18px;
  color: #000000;
  font-weight: bold;
}
/*.resources-page .list ul li:hover{
  background: var(--color);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
  transition: 0.3s ease;
  position: relative;
  z-index: 5;
}*/
/*.resources-page .list .dw-list li:hover .tit{
  color: #fff;
}*/
/*.resources-page .list ul li:hover .column{
  border-color:var(--color);
}*/
.resources-page .list ul li:hover a.download{
  background: #fff;
  color: var(--color);
}
@media screen and (max-width: 1000px) {
  .resources-page .list .dw-list li {
    display: flex;
  }
  .resources-page .list .dw-list li .column {
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .resources-page .list .the_head .column{
    width: 33.3333%;
  }
  .resources-page .list{
    overflow-x: auto;
  }
  .resources-page .list .the_head,
  .resources-page .list .dw-list{
    min-width: 700px;
  }
}
@media screen and (max-width: 500px) {
  .resources-page .list .dw-list li .column dl dd{
    display: block;
    padding: 9px 15px;
  }
  .resources-page .list .dw-list li .column dl dd .btn{
    margin-top: 10px;
  }
}