#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;
    display: none;
}

.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;
}
.seoPublic .Auxil-related .list ul li .box .content a.more{
    margin: 30px 0;
        border-radius: 30px;
}

@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 #666;
    width: auto !important;
    height: auto !important;
}

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;
}

@-webkit-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;
    }
}

@-moz-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;
    }
}

@-o-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;
    }
}

@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: 700px) {
    .font-25 {
        font-size: 18px;
    }

    .font-26 {
        font-size: 18px;
    }

    .font-27 {
        font-size: 18px;
    }

    .font-28 {
        font-size: 18px;
    }

    .font-29 {
        font-size: 18px;
    }

    .font-30 {
        font-size: 18px;
    }

    .font-31 {
        font-size: 20px;
    }

    .font-32 {
        font-size: 20px;
    }

    .font-33 {
        font-size: 20px;
    }

    .font-40 {
        font-size: 22px;
    }

    .font-41 {
        font-size: 22px;
    }

    .font-42 {
        font-size: 22px;
    }

    .font-43 {
        font-size: 22px;
    }

    .font-44 {
        font-size: 22px;
    }

    .font-45 {
        font-size: 22px;
    }

    .font-46 {
        font-size: 22px;
    }

    .font-47 {
        font-size: 22px;
    }

    .font-48 {
        font-size: 22px;
    }

    .font-49 {
        font-size: 22px;
    }

    .font-50 {
        font-size: 22px;
    }

    .font-51 {
        font-size: 22px;
    }

    .font-52 {
        font-size: 24px;
    }

    .font-53 {
        font-size: 24px;
    }

    .font-54 {
        font-size: 24px;
    }

    .font-55 {
        font-size: 24px;
    }

    .font-56 {
        font-size: 24px;
    }
}

/*----- genneral end-----*/
@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-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: "Roboto";
    src: url("../fonts/Roboto-Regular.eot");
    src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

body {
    font-family: "Montserrat";
    font-weight: 400;
    --color: #880000;
    margin: 0 auto;
    font-size: 18px;
}

.container {
    width: 1770px;
}

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

.color-ff {
    color: #fff;
}

.color-33 {
    color: #333333;
}

.color-66 {
    color: #666666;
}

.fw-bold {
    font-weight: 600;
}

.fa-roboto-regular {
    font-family: "Roboto";
}

.fa-roboto-black {
    font-family: "Roboto";
    font-weight: 700;
}

.fa-roboto-bold {
    font-family: "Roboto";
    font-weight: 700;
}

.btn-go {
    min-width: 142px;
    height: 38px;
    border-radius: 20px;
    background-color: var(--color);
    color: #fff;
    font-size: 16px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

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

.mk-bigtt {
    line-height: 1.1;
}

#header {
    z-index: 200;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 15px -5px 28px 4px rgba(201, 201, 201, 0.3);
    box-shadow: 15px -5px 28px 4px rgba(201, 201, 201, 0.3);
}

#header .nav {
    position: relative;
    height: 100px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#header .nav .logo img{
    height: 36px;
    object-fit: cover;
}
#header .nav .ui.menu {
    border-radius: 10px;
    width: 70%;
}

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

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

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu::after {
    content: "\20";
    display: block;
    height: 0;
    line-height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin: 0 45px;
    font-size: 18px;
    height: 100%;
    color: #333;
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#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.active {
    color: var(--color);
    font-weight: bold;
}

#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;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    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;
    -ms-transform-origin: 0 0 0;
    -o-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;
    -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;
    -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.3s;
    -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 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: 12px;
    -webkit-transition: 0.5s;
    -moz-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%;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    display: none \9;
}

#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 .right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#header .nav .ui.menu .right .h-language {
    position: relative;
    cursor: pointer;
}

#header .nav .ui.menu .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 .nav .ui.menu .right .h-language span img {
    -webkit-filter: grayscale(1) brightness(5);
    filter: grayscale(1) brightness(5);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#header .nav .ui.menu .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: 1;
    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;
    -o-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;
    -o-transition: opacity 0.3s, -o-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, -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 .nav .ui.menu .right .h-language ul.sub-menu li {
    display: block;
    line-height: 40px;
    text-transform: capitalize;
    text-align: center;
}

#header .nav .ui.menu .right .h-language ul.sub-menu li a {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
}

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

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

#header .nav .ui.menu .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 .nav .ui.menu .right .h-language:hover img {
    -webkit-filter: none;
    filter: none;
}

#header .nav .ui.menu .right .h-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 40px;
    cursor: pointer;
}

#header .nav .ui.menu .right .h-search img {
    -webkit-filter: grayscale(1) brightness(5);
    filter: grayscale(1) brightness(5);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#header .nav .ui.menu .right .h-search:hover img {
    -webkit-filter: none;
    filter: none;
}

#header .nav .ui.menu .right .h-inquire {
    width: auto;
    min-width: 143px;
    height: 38px;
    padding: 0 12px;
    background-color: var(--color);
    border-radius: 50px;
    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: 16px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid transparent;
}

#header .nav .ui.menu .right .h-inquire:hover {
    background: #fff;
    color: var(--color);
    border-color: var(--color);
}
#banner{
    margin-top: 100px;
}
#banner .banner-content {
    height: 700px;
    position: relative;
}

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

#banner .banner-content .swiper-slide .txt-content {
    height: 100%;
}

#banner .banner-content .swiper-slide .txt-content h3 {
    max-width: 1050px;
    line-height: 1.2;
    font-size: 46px;
}

#banner .banner-content .swiper-tool-box {
    width: 100%;
    position: absolute;
    bottom: 70px;
    left: 0;
    z-index: 1;
}

#banner .banner-content .swiper-tool-box .swiper-tool {
    position: relative;
    width: 100%;
    height: auto;
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination {
    width: auto;
    position: static;
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination .swiper-pagination-bullet {
    margin-right: 12px;
    margin-left: 12px;
    background-color: #fff;
    width: 11px;
    height: 11px;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color);
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color);
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border: solid 3px #ffffff;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-13px, -13px);
    -moz-transform: translate(-13px, -13px);
    -ms-transform: translate(-13px, -13px);
    -o-transform: translate(-13px, -13px);
    transform: translate(-13px, -13px);
}

#banner .banner-content .swiper-button {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#banner .banner-content .swiper-button::after {
    font-size: 0;
}

#banner .banner-content .swiper-button i {
    font-size: 20px;
    color: var(--color);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#banner .banner-content .swiper-button:hover {
    background-color: var(--color);
}

#banner .banner-content .swiper-button:hover i {
    color: #fff;
}

#banner .banner-content .swiper-button.swiper-button-next {
    right: 5%;
}
#banner .banner-content .swiper-button.swiper-button-prev {
    left: 5%;
}
#index-body .init-1 {
    background-color: #fbfbfb;
}

#index-body .init-1 .left {
    /*width: 24%;*/
}

#index-body .init-1 .swiper-button {
    width: 51px;
    height: 51px;
    border: solid 1px #666666;
    border-radius: 50%;
    top: 36%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .init-1 .swiper-button.swiper-button-prev{
    right: 101%;
    left: auto;
}

#index-body .init-1 .swiper-button.swiper-button-next{
    left: 101%;
}

#index-body .init-1 .swiper-button::after {
    font-size: 0;
}

#index-body .init-1 .swiper-button i {
    font-size: 20px;
    color: #666666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .init-1 .swiper-button:hover {
    background-color: var(--color);
    border-color: transparent;
}

#index-body .init-1 .swiper-button:hover i {
    color: #fff;
}


#index-body .init-1 .swiper-pagination {
    width: auto;
    position: static;
    margin-top: 2%;
}

#index-body .init-1 .swiper-pagination .swiper-pagination-bullet {
    margin-right: 12px;
    margin-left: 12px;
    background-color: #dddddd;
    width: 11px;
    height: 11px;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

#index-body .init-1 .swiper-pagination .swiper-pagination-bullet:hover {
    background-color: var(--color);
}

#index-body .init-1 .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color);
}



#index-body .init-1 .right {
    width: 100%;
    /*padding-left: 105px;*/
    margin-top: 4%;
    position: relative;
}

#index-body .init-1 .right .pro-list {
    /*margin-right: -90px;*/
}

#index-body .init-1 .right .pro-list ul li .txt-box {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .init-1 .right .pro-list ul li .txt-box:hover {
    color: var(--color);
}

#index-body .init-2 .top {
    width: 795px;
    margin: 0 auto;
    z-index: 2;
}

#index-body .init-2 .top ul li .box {
    background-color: #fff;
    border-radius: 19px;
    border: solid 1px #666666;
    height: 38px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

#index-body .init-2 .top ul li .box:hover {
    background-color: var(--color);
    color: #fff;
    border-color: transparent;
}

#index-body .init-2 .top ul li.swiper-slide-thumb-active .box {
    background-color: var(--color);
    color: #fff;
    border-color: transparent;
}

#index-body .init-2 .bottom {
    margin-top: -19px;
    border: solid 1px #cccccc;
    border-radius: 10px;
}

#index-body .init-2 .bottom ul li .box .left {
    width: 62%;
}

#index-body .init-2 .bottom ul li .box .left .ico-box {
    width: 108px;
    height: 108px;
    background-color: #f5f3f4;
    border-radius: 50%;
}

#index-body .init-2 .bottom ul li .box .left .txt-box {
    width: 77%;
}

#index-body .init-2 .bottom ul li .box .left .txt-box .desc {
    max-height: 190px;
    overflow-y: auto;
}

#index-body .init-2 .bottom ul li .box .right {
    width: 38%;
}

#index-body .init-2 .bottom .swiper-button {
    width: 51px;
    height: 51px;
    border: solid 1px #666666;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff;
    z-index: 3;
    opacity: 1;
}

#index-body .init-2 .bottom .swiper-button.swiper-button-prev {
    left: -25px;
}

#index-body .init-2 .bottom .swiper-button.swiper-button-next {
    right: -25px;
}

#index-body .init-2 .bottom .swiper-button.swiper-button-disabled {
    border-color: rgba(102, 102, 102, 0.2);
}

#index-body .init-2 .bottom .swiper-button.swiper-button-disabled i {
    color: rgba(102, 102, 102, 0.2);
}

#index-body .init-2 .bottom .swiper-button::after {
    font-size: 0;
}

#index-body .init-2 .bottom .swiper-button i {
    font-size: 20px;
    color: #666666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .init-2 .bottom .swiper-button:hover {
    background-color: var(--color);
    border-color: transparent;
}

#index-body .init-2 .bottom .swiper-button:hover i {
    color: #fff;
}


#index-body .init-2-new .application .bottom ul .slick-slide>div {
  height: auto;
}

#index-body .swiper-button {
    width: 51px;
    height: 51px;
    border: solid 1px #666666;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff;
    z-index: 3;
    opacity: 1;
    top: 45%;
}

#index-body .swiper-button.swiper-button-prev {
    left: auto;
    right: 101%;
}

#index-body .swiper-button.swiper-button-next {
    right: auto;left: 101%;
}

#index-body .swiper-button.swiper-button-disabled {
    border-color: rgba(102, 102, 102, 0.2);
}

#index-body .swiper-button.swiper-button-disabled i {
    color: rgba(102, 102, 102, 0.2);
}

#index-body .swiper-button::after {
    font-size: 0;
}

#index-body .swiper-button i {
    font-size: 20px;
    color: #666666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .swiper-button:hover {
    background-color: var(--color);
    border-color: transparent;
}

#index-body .swiper-button:hover i {
    color: #fff;
}




#index-body .init-3 {
    background-image: url(../images/h-aboutbg.png);
    background-repeat: no-repeat;
    background-position: bottom right;background-size: cover;
}

#index-body .init-3 .container{
    flex-direction: column-reverse;
}

#index-body .init-3 .left {
    /*width: 49%;*/
}

#index-body .init-3 .left .play {
    display: none;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background-color: rgba(136, 0, 0, 0.555);
    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%);
}

#index-body .init-3 .left .play::before {
    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: inherit;
    z-index: -1;
}

#index-body .init-3 .left .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: inherit;
    z-index: -1;
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

#index-body .init-3 .right {
    /*width: 51%;*/
}
#index-body .init-3 .right .iso-list .slick-list{
    overflow: visible;
}
#index-body .init-3 .right .iso-list .slick-track {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
}
#index-body .init-3 .right .iso-list li .box img{
    transition: all 0.5s;
}
#index-body .init-3 .right .iso-list li .box:hover img{
    transform: translateY(-5px);
}

#index-body .init-3 .solution-list{
    margin-left: -15px;margin-right: -15px;
}
#index-body .init-3 .solution-list li{
    width: 25%;
    padding: 0 15px;
}
#index-body .init-3 .solution-list li .box{
    background-color: #fff;
    padding: 70px 30px;
    height: 356px;transition: all 0.5s;
}
#index-body .init-3 .solution-list li .box>img{
    transition: all 0.5s;
}
#index-body .init-3 .solution-list li .box .tt,#index-body .init-3 .solution-list li .box h1{
    transition: all 0.5s;
}
#index-body .init-3 .solution-list li .box:hover{
    background-color: var(--color);
    
}
#index-body .init-3 .solution-list li .box:hover>img{
    filter: brightness(0) invert(1);
}
#index-body .init-3 .solution-list li .box:hover .tt,#index-body .init-3 .solution-list li .box:hover h1{
    color: #fff;
}


#index-body .init-4 .txtbg {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 388px;
    background: -webkit-linear-gradient(rgba(41, 41, 41, 0.03) 60%, rgba(41, 41, 41, 0));
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    z-index: -1;
    line-height: 0.72;
}

#index-body .init-4 .left {
    width: 48%;
}

#index-body .init-4 .left .h-form form ul {
    margin: 0 -18px;
}

#index-body .init-4 .left .h-form form li {
    width: 50%;
    padding: 0 18px;
    margin: 18px 0;
}

#index-body .init-4 .left .h-form form li.wid-100 {
    width: 100%;
}

#index-body .init-4 .left .h-form form input {
    width: 100%;
    height: 55px;
    border-radius: 4px;
    border: solid 1px #dcdcdc;
    padding: 10px 10px 10px 25px;
}

#index-body .init-4 .left .h-form form textarea {
    width: 100%;
    border-radius: 4px;
    border: solid 1px #dcdcdc;
    padding: 10px 10px 10px 25px;
    height: 135px;
}

#index-body .init-4 .left .h-form form .send {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 160px;
    height: 38px;
    background-color: var(--color);
    color: #fff;
    border-radius: 38px;
    padding: 0 20px;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
}

#index-body .init-4 .left .h-form form .send:hover {
    background-color: #fff;
    border-color: var(--color);
    color: var(--color);
}

#index-body .init-4 .right {
    width: 45%;
    position: relative;
}

#index-body .init-4 .right .intro {
    background-image: url(../images/h-touch02.png);
    background-repeat: no-repeat;
    -o-background-size: cover;
    background-size: cover;
    padding: 70px 54px;
    border-radius: 10px;
    width: 63%;
    margin-top: 50px;
}

#index-body .init-4 .right .intro .details {
    position: relative;
    padding-left: 72px;
}

#index-body .init-4 .right .intro .details img {
    position: absolute;
    left: 0;
    top: 0;
}

#index-body .init-4 .right .bg {
    position: absolute;
    bottom: 10px;
    right: 0;
    z-index: -1;
}

#index-body .init-5 {
    background-image: url(../images/h-newsbg.png);
    -o-background-size: cover;
    background-size: cover;
}

#index-body .init-5 ul li .box {
    scale: 0.88;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 16px;
}

#index-body .init-5 ul li .box .img-box {
    border-radius: 20px;
}

#index-body .init-5 ul li .box .img-box img {
    border-radius: 20px;
}

#index-body .init-5 ul li .box .img-box .pos {
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
}

#index-body .init-5 ul li .box .img-box .pos .btn-go2 {
    width: 50px;
    height: 50px;
    background-color: var(--color);
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#index-body .init-5 ul li .box .img-box .pos .btn-go2 i {
    color: #fff;
    font-size: 20px;
}

#index-body .init-5 ul li .box .img-box:hover .pos .btn-go2 {
    opacity: 1;
}

#index-body .init-5 ul li .box .txt-box {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 0 30px;
    opacity: 0;
}

#index-body .init-5 ul li .box .txt-box:hover {
    color: var(--color);
}

#index-body .init-5 ul li.swiper-slide-active .box {
    margin-top: 0;
    scale: 1;
}

#index-body .init-5 ul li.swiper-slide-active .box .txt-box {
    color: var(--color);
    opacity: 1;
}

#index-body .init-5 ul li.swiper-slide-active .box .txt-box:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

#footer {
    background-image: url(../images/h-footerbg.png);
    background-repeat: no-repeat;
    -o-background-size: cover;
    background-size: cover;
    background-position: top right;
}

#footer .footer-userinfo h3 {
    max-width: 950px;
    line-height: 1.3;
}
#footer .footer-userinfo .play{
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background-color: rgba(136, 0, 0, 0.555);
    position: relative;
    margin-left: 352px;
    flex-shrink: 0;
}

#footer .footer-userinfo .play::before {
    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: inherit;

}

#footer .footer-userinfo .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: inherit;

    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

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

#footer .footer-center .footer-t .footer-t-gird .t-list {
    color: #fff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .logo {
    margin-top: -5px;
}
#footer .footer-center .footer-t .footer-t-gird .logo img{
    height: 36px;
    object-fit: cover;
}

#footer .footer-center .footer-t .footer-t-gird .quick {
    margin: 0 -45px;
}

#footer .footer-center .footer-t .footer-t-gird .quick span {
    padding: 0 45px;
}

#footer .footer-center .footer-t .footer-t-gird .contact {
    max-width: 250px;
    margin-right: 60px;
}

#footer .footer-center .footer-t .footer-t-gird .contact span {
    line-height: 1.7;
}

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

#footer .footer-center .footer-b {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#footer .footer-center .footer-b .share li {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    margin-right: 8px;
}

#footer .footer-center .footer-b .share li I {
    color: #fff;
    font-size: 14px;
}

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

#footer .footer-center .footer-b p {
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

@media screen and (max-width: 1800px) {
    .container {
        width: 1600px;
    }
    #header .nav .ui.menu{
        width:75%;
    }
    #header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin: 0 40px;
    }





    #index-body .init-4 .txtbg {
        font-size: 355px;
    }
}

@media (max-width: 1700px) {
    #banner .banner-content{
        height:37vw;
    }
    #header .nav .ui.menu {
        width: 76%;
    }

    #header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
        margin: 0 30px;
    }


    #index-body .init-4 .txtbg {
        font-size: 303px;
    }

    #index-body .init-5 ul li .box {
        margin-top: 13px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick {
        margin: 0 -30px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick span {
        padding: 0 30px;
    }

}

@media (max-width: 1450px) {
    body {
        font-size: 16px;
    }

    #header .nav .ui.menu {
        width: 72%;
    }

    #header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
        margin: 0 18px;
        font-size: 16px;
    }

    #header .nav .ui.menu .right .h-search {
        margin: 0 30px;
    }



    #index-body .init-4 .right .intro {
        padding: 40px 35px;
    }

    #index-body .init-4 .right .bg {
        max-height: 100%;
    }

    #index-body .init-4 .txtbg {
        font-size: 256px;
    }

    #footer .footer-center .footer-t .footer-t-gird .contact {
        margin-right: 0;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick {
        margin: 0 -20px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick span {
        padding: 0 20px;
    }
}

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

    #index-body .init-2 .bottom ul li .box .left .txt-box {
        width: 68%;
    }

    #index-body .init-3 .left>img {
        min-height: 490px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    #index-body .init-3 .right h1 {
        max-height: 125px;
        overflow-y: auto;
    }

    #index-body .init-4 .right .intro {
        padding: 30px;
        width: 78%;
    }

    #index-body .init-4 .txtbg {
        font-size: 210px;
    }

    #index-body .init-5 ul li .box {
        margin-top: 5px;
    }

    #index-body .init-5 ul li .box .txt-box {
        padding: 0;
    }

    #footer .footer-center .footer-t .footer-t-gird .contact {
        max-width: 206px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick {
        margin: 0 -10px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick span {
        padding: 0 10px;
    }
    #innerMobileBanner{
        margin-top: 60px;
    }
}

@media (max-width: 1000px) {
    #banner .banner-content .swiper-tool-box{
        display: none;
    }
    #index-body .swiper-button{
        display: none;
    }
    /*#banner .banner-content {
        height: 400px;
    }*/
#banner .banner-content .swiper-button{
    display: none;
}
    #index-body .init-1 .left {
        width: 100%;
    }

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

    #index-body .init-1 .right .pro-list {
        margin-right: 0;
    }

    #index-body .init-2 .top {
        width: 100%;
    }

    #index-body .init-2 .bottom ul li {
        padding: 40px;
    }

    #index-body .init-2 .bottom ul li .box .left {
        width: 100%;
        padding-right: 0;
    }

    #index-body .init-2 .bottom ul li .box .left .txt-box {
        width: -webkit-calc(100% - 130px);
        width: -moz-calc(100% - 130px);
        width: calc(100% - 130px);
    }

    #index-body .init-2 .bottom ul li .box .right {
        width: 100%;
        margin-top: 5%;
    }

    #index-body .init-3 {
        width: 700px;
        margin: 0 auto;
        padding: 15px 15px 30px;
        -o-background-size: cover;
        background-size: cover;
    }

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

    #index-body .init-3 .left>img {
        min-height: 300px;
        width: 100%;
    }

    #index-body .init-3 .right {
        width: 100%;
        margin-top: 5%;
        padding: 0;
    }

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

    #index-body .init-4 .right {
        width: 100%;
        margin-top: 5%;
    }

    #index-body .init-4 .right .bg {
        display: none;
    }

    #index-body .init-4 .right .intro {
        width: 100%;
        margin-top: 0;
    }

    #index-body .init-4 .left .h-form form ul {
        margin: 0 -8px;
    }

    #index-body .init-4 .left .h-form form li {
        padding: 0 8px;
        margin: 8px 0;
    }

    #index-body .init-4 .txtbg {
        font-size: 150px;
    }

    #index-body .init-5 ul li .box {
        scale: 1;
        margin-top: 0;
    }

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

    #footer .footer-center .footer-b {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #footer .footer-center .footer-b p {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #footer .footer-center .footer-b p span {
        padding: 5px 0;
    }
        #footer .footer-userinfo .play{
        margin-left: 30px;
    }
}

@media (max-width: 700px) {
    #index-body .init-1 .swiper-button{
        display: none;
    }
    #index-body .init-2 .bottom ul li {
        padding: 30px 20px;
    }

    #index-body .init-2 .bottom .swiper-button {
        display: none;
    }

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

    #index-body .init-4 .txtbg {
        font-size: 13rem;
    }

    #footer .footer-center .footer-t .footer-t-gird .contact {
        max-width: 100%;
        margin-top: 5%;
    }
    #footer .footer-userinfo .play{
        margin-left: 30px;
    }
    #footer .footer-center .footer-t .footer-t-gird .logo{
        zoom: 0.78;
    }
}

@media (max-width: 500px) {
    #index-body .init-2 .bottom ul li .box .left {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #index-body .init-2 .bottom ul li .box .left .txt-box {
        width: 100%;
        margin-top: 5%;
    }

    #index-body .init-4 .left .h-form form li {
        width: 100%;
    }

    #index-body .init-4 .right .intro .details {
        padding-left: 0;
        text-align: center;
    }

    #index-body .init-4 .right .intro .details img {
        position: static;
        margin-bottom: 10px;
    }
        #footer .footer-userinfo .play{
        margin-left: 10px;
    }
}

/*---inner page---*/

.grid-box {
    font-size: 0;
}

.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
}

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

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

.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%;
    }

}

.inner-banner {
    height: 400px;
    background-size: cover;
    background-position: center center;
    position: relative;
    text-align: center;
    padding-top: 200px;
    color: white;
    z-index: 1;
}

.inner-banner:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.inner-banner h3 {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
}

.inner-banner .mbx {
    font-size: 16px;
}

.inner-banner .mbx a,
.inner-banner .mbx span {
    display: inline-block;
    vertical-align: top;
    text-transform: capitalize;
    margin: 0 5px;
    line-height: 30px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.inner-banner .mbx a:first-child:before {
    content: "\f015";
    font-family: "FontAwesome";
    color: var(--color);
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
    font-size: 20px;
}

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

.about-page .about-1 span {
    font-size: 16px;
    line-height: 30px;
    color: #b2b2b2;
    margin-bottom: 2rem;
    display: inline-block;
}

.about-page .about-1 h2 {

    line-height: 1.4;
    color: #333333;

}

.about-page .about-1 .about-1-img {
    position: relative;

}

.about-page .about-1 .about-1-img>img {
    min-height: 300px;
    object-fit: cover;
}

.about-page .about-1 .about-1-img .play {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6;
}

.about-page .about-1 .about-1-img .play::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}

.about-page .about-1 .about-1-img .play::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}

.about-page .about-2 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.about-page .about-2 .container .left {
    padding-right: 3.3rem;
    width: 50%;
}

.about-page .about-2 .container .left h2 {

    line-height: 1.6;
    color: #333333;

}

.about-page .about-2 .container .left p {

    line-height: 32px;
    color: #717171;

    margin-bottom: 3.5rem;
}

.about-page .about-2 .container .left p:last-child {
    margin-bottom: 0;
}

.about-page .about-2 .container .right {
    width: 50%;
    padding-left: 2rem;
    padding-bottom: 2rem;
}

.about-page .about-3 {
    padding: 10.5rem 0 14.5rem;
}

.about-page .about-3 h2 {
    font-size: 4.8rem;
    line-height: 1.4;
    color: #333333;

    margin-bottom: 4.5rem;
    text-align: center;
}

.about-page .about-3 p {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #717171;

    margin: 0 auto;
    max-width: 955px;
}

.about-page .about-4 {
    background: url(../images/about-4-bg.jpg) no-repeat center center;
    background-size: cover;
}

.about-page .about-4 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.about-page .about-4 .container .text p {
    line-height: 1;
    color: var(--color);
    text-transform: uppercase;

    margin-bottom: 3rem;
}

.about-page .about-4 .container .text h2 {
    font-weight: 700;

    line-height: 1.6;
    color: #ffffff;
    text-transform: uppercase;

}

.about-page .about-4 .container .text h2 span {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.about-page .about-4 .container a {
    display: inline-block;
    padding: 18px 64px;
    border: 2px solid #fff;

    line-height: 1;
    color: #fff;
    text-transform: uppercase;

    margin-left: 95px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.about-page .about-4 .container a:hover {
    background: var(--color);
    border: 2px solid var(--color);
}

.about-page .about-5 {
    background: #f0f0f0;
}

.about-page .about-5 .top {
    text-align: center;
}

.about-page .about-5 .top h3 {
    font-size: 30px;
    line-height: 1.6;
    color: var(--color);

    text-transform: uppercase;
    margin-bottom: 3.5rem;
}

.about-page .about-5 .top p {
    font-size: 16px;
    line-height: 30px;
    color: #999999;

    margin: 0 auto;
    max-width: 800px;
}

.about-page .about-5 .factoryBox {
    max-width: 1355px;
    margin: 6rem auto 0;
    position: relative;
}

.about-page .about-5 .factoryBox .swiper-slide a {
    display: block;
    overflow: hidden;
}

.about-page .about-5 .factoryBox .swiper-slide a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.about-page .about-5 .factoryBox .swiper-slide a img {
    width: 100%;
    transition: all 0.5s;
}

.about-page .about-5 .factoryBox .swiper-button-prev,
.about-page .about-5 .factoryBox .swiper-button-next {
    width: 23px;
    height: 37px;
}

.about-page .about-5 .factoryBox .swiper-button-prev {
    background: url(../images/f-left.png) no-repeat center center;
    left: -5%;
}

.about-page .about-5 .factoryBox .swiper-button-next {
    background: url(../images/f-right.png) no-repeat center center;
    right: -5%;
}

@media screen and (max-width: 1650px) {}

@media screen and (max-width: 1450px) {}

@media screen and (max-width: 1250px) {

    .about-page .about-2 .container .left {
        width: 100%;
        padding-right: 0;
    }

    .about-page .about-2 .container .right {
        width: 100%;
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-4 .container a {
        padding: 18px 36px;
    }
}

@media screen and (max-width: 700px) {

    .about-page .about-4 .container a {}

    #index-body .init-3 .top h2 {
        font-size: 36px;
        line-height: 1.6;
    }

    .about-page .about-5 .factoryBox .swiper-button-prev,
    .about-page .about-5 .factoryBox .swiper-button-next {
        display: none;
    }

    .inner-banner h3 {
        font-size: 18px;
        line-height: 32px;
    }

    .inner-banner .mbx {
        font-size: 15px;
        line-height: 30px;
    }

    .inner-banner {
        padding-top: 50px;
        height: auto;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 500px) {
    .about-page .about-4 .container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-page .about-4 .container a {
        margin-left: 0;
        margin-top: 30px;
    }
}

.prodet-page .prodet-1 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}

.prodet-page .prodet-1 .container .left {
    width: 51.5%;

}

.prodet-page .prodet-1 .container .left a {
    display: block;
    overflow: hidden;
    background: #f7f7f7;
    margin-top: 24px;
}

.prodet-page .prodet-1 .container .left a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.prodet-page .prodet-1 .container .left a img {
    width: 100%;
    transition: all 0.5s;
}
.prodet-page .prodet-1 .container .left .title{
    font-size: 26px;
    color: #333333;
    line-height: 1.8;
    text-transform: uppercase;

    opacity: 0;max-width: 84%;
}
.prodet-page .prodet-1 .container .right {
    width: 48.5%;
    padding-left: 5%;
}

.prodet-page .prodet-1 .container .right .title {
    font-size: 26px;
    color: #333333;
    line-height: 1.8;
    text-transform: uppercase;

}

.prodet-page .prodet-1 .container .right .content {
    margin: 15px 0 0;
    font-size: 16px;
    line-height: 30px;
    color: #999999;

}

.prodet-page .prodet-1 .container .right .content div {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}

.prodet-page .prodet-1 .container .right .content p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}

.prodet-page .prodet-1 .container .right p {
    font-size: 1.8rem;
    line-height: 1;
    color: #666666;

}

.prodet-page .prodet-1 .container .right .btn {
    margin: 4rem 0;
}

.prodet-page .prodet-1 .container .right .btn .inquiry {
    display: inline-block;
    padding: 1.8rem 3rem;
    border-radius: 55px;
    background: var(--color);
    text-transform: uppercase;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #ffffff;
 
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.prodet-page .prodet-1 .container .right .btn .inquiry:hover {
    background: #000;
}

.prodet-page .prodet-1 .container .thumb-gallery .swiper-slide a {
    display: block;
    overflow: hidden;
    background: #f7f7f7;
}

.prodet-page .prodet-1 .container .thumb-gallery .swiper-slide a:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.prodet-page .prodet-1 .container .thumb-gallery .swiper-slide a img {
    width: 100%;
    transition: all 0.5s;
}
.prodet-page .prodet-2 .left{
    width: 51.5%;
}   
.prodet-page .prodet-2 .right{
    width: 48.5%;
    padding-left: 5%;
}
.prodet-page .prodet-2 .right table{
    font-size: 12px;line-height:1.5;
}

.prodet-page .prodet-2 .right table td{
    padding: 2px;
}
.prodet-page .prodet-2 .right .content .fancy{
    display: inline-block;
    position: relative;
}
.prodet-page .prodet-2 .right .content .fancy .zoom-btn{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    border: 0;
    transition: all 0.5s;
}
.prodet-page .prodet-2 .right .content .fancy .zoom-btn:hover{
    background-color: var(--color);
    color: #fff;
}

.prodet-page .prodet-2 .title {
    border-bottom: 1px solid #d2d2d2;
}

.prodet-page .prodet-2 .title h4 {
    display: inline-block;
    padding: 20px 25px;
    line-height: 32px;
    text-transform: uppercase;
    color: #fff;

    background: var(--color);
}

.prodet-page .prodet-2 .text {
    margin: 30px 0;
    line-height: 32px;
    color: #333333;

}

.prodet-page .prodet-2 .content {
    color: #333333;
    padding: 15px 0;
    line-height: 32px;
}

.prodet-page .prodet-2 .content p {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}

.prodet-page .prodet-2 .content div {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}

.prodet-page .prodet-2 .content strong {
    color: inherit;
    font-size: inherit;
    font-weight: 700;
    font-family: inherit;
    line-height: inherit;
    font-style: inherit;
}

.prodet-page .prodet-3 h4 {

    line-height: 1.6;
    color: #202020;
    text-transform: uppercase;
  
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #949494;
}

.prodet-page .prodet-3 .hotBox {
    margin-top: 3.5rem;
}

.prodet-page .prodet-3 .hotBox .swiper-slide a {
    display: block;
    overflow: hidden;
}

.prodet-page .prodet-3 .hotBox .swiper-slide a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.prodet-page .prodet-3 .hotBox .swiper-slide a img {
    width: 100%;
    transition: all 0.5s;
}

.prodet-page .prodet-3 .hotBox .swiper-slide h5 {
    font-size: 20px;
    line-height: 32px;
    color: #202020;
    text-transform: uppercase;
  
    text-align: center;
    margin: 2.5rem 0 1rem;
}

.prodet-page .prodet-3 .hotBox .swiper-slide h5:hover {
    color: var(--color);
}

.prodet-page .prodet-3 .hotBox .swiper-slide p {
    font-size: 1.6rem;
    line-height: 1;
    color: #3b3b3b;

    text-align: center;
}
@media screen and (max-width: 1800px){
    .prodet-page .prodet-2 .right table{
        zoom: 0.9;
    }
}
@media screen and (max-width: 1700px){
    .prodet-page .prodet-2 .right table{
        zoom: 0.8;
    }
}
@media screen and (max-width: 1450px){
    .prodet-page .prodet-2 .right table{
        zoom: 0.7;
    }
    .prodet-page .prodet-2 .right table td{
        padding: 0;
    }
}
@media screen and (max-width: 1250px){
    .prodet-page .prodet-2 .right table{
        zoom: 0.58;
    }
}
@media screen and (max-width: 1000px) {
    .prodet-page .prodet-2 .right table{
        zoom: 0.8;
    }
    .prodet-page .prodet-2 .left{
        width: 100%;
    }
    .prodet-page .prodet-2 .right {
        width: 100%;padding-left:0;
        margin-top: 5%;
    }
    .prodet-page .prodet-2 .title h4 {
        padding: 10px 20px;
    }
    .prodet-page .prodet-1 .container .left {
        width: 100%;
    }

    .prodet-page .prodet-1 .container .right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
}

@media screen and (max-width: 700px) {


    .prodet-page .prodet-1 .container .right .title {
        font-size: 22px;
        line-height: 1.8;
    }
}

.inner-page {
    overflow: hidden;
}

.inner-page .sideBox .side-left {
    width: 23%;
    padding-right: 40px;
}

.inner-page .sideBox .side-left h2 {
    display: block;
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 80px;
}

.inner-page .sideBox .side-left .box ul li a {
    display: block;
    padding: 5px 35px 5px 15px;
    background: #f1f1f1;
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    line-height: 30px;transition: all 0.5s;
}
.inner-page .sideBox .side-left .box ul li a:hover{
    background-color: var(--color);
    color: #fff;
}
.inner-page .sideBox .side-left .box ul li.active a{
    background-color: var(--color);
    color: #fff;
}
.inner-page .sideBox .side-left .box ul li a i {
    position: absolute;
    right: 15px;
    top: 8px;
}

.inner-page .sideBox .side-left .box ul li ul {
    display: none;
}

.inner-page .sideBox .side-left .box ul li ul li a {
    background: #F9F9F9;
}

.inner-page .sideBox .side-left .info {
    margin-top: 10px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.inner-page .sideBox .side-left .info h5 {
    color: white;
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 10px;
    text-align: center;
    font-size: 22px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.inner-page .sideBox .side-right {
    width: 77%;
}

.inner-page .sideBox .side-right .zj-bulaika1 {
    display: block;
    /*padding: 5px 35px 5px 15px;*/
    margin-bottom: 30px;
    font-size: 16px;
    position: relative;
    line-height: 30px;
}

.inner-page .sideBox .side-right .zj-bulaika1 h1 {
    display: block;
    margin-bottom: 40px;
}

.inner-page .m-page {
    text-align: right;
}

.inner-page .m-page a,
.inner-page .m-page span {
    display: inline-block;
    vertical-align: bottom;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #444;
    text-align: center;
    font-size: 14px;
    margin: 0 3px;
}

.inner-page .m-page a:first-child,
.inner-page .m-page span:first-child {
    margin-top: 40px;
}

.inner-page .m-page a {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.inner-page .m-page a:hover {
    background: var(--color);
    color: white;
}

.contact-btn {
    padding: 50px 0 25px;
    text-align: center;
    background: var(--color);
}

.contact-btn p {
    display: block;
    font-size: 18px;
    color: white;
}

.contact-btn a.more {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
    line-height: 34px;
    height: 34px;
    padding: 0 15px;
    background: white;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.contact-btn a.more i {
    display: inline-block;
    vertical-align: middle;
    max-width: 16px;
    margin-right: 7px;
}

.contact-btn a.more i img {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.contact-btn a.more:hover {
    -moz-box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.3);
    -o-box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.3);
    box-shadow: 1px 3px 5px rgba(255, 255, 255, 0.3);
}

.product-page {
    padding: 150px 0 60px;
}

.product-page .side-right .top {
    display: block;
    text-align: right;
    margin-bottom: 80px;
}

.product-page .side-right .top .form {
    display: inline-block;
    vertical-align: middle;
    max-width: 40%;
    width: 100%;
    position: relative;
}

.product-page .side-right .top .form:before {
    content: '';
    height: 16px;
    width: 1px;
    background: #747474;
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    -o-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-page .side-right .top .form input {
    width: 100%;
    line-height: 36px;
    height: 36px;
    padding-left: 14px;
    padding-right: 40px;
    font-size: 16px;
    color: black;
    border: none;
    border-bottom: 1px solid #c9c9c9;
    background: none;
}

.product-page .side-right .top .form input::-webkit-input-placeholder {
    color: #747474;
    font-style: italic;
}

.product-page .side-right .top .form input:-moz-placeholder {
    color: #747474;
    font-style: italic;
}

.product-page .side-right .top .form input::-moz-placeholder {
    color: #747474;
    font-style: italic;
}

.product-page .side-right .top .form input:-ms-input-placeholder {
    color: #747474;
    font-style: italic;
}

.product-page .side-right .top .form input:focus {
    border-color: var(--color);
}

.product-page .side-right .top .form input[type="submit"] {
    width: 36px;
    border-bottom: none;
    background: url("../images/icon-search2.png") center center no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
}

.product-page .side-right .top .show {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: 100px;
    margin-right: 20px;
}

.product-page .side-right .top .show span {
    line-height: 36px;
    height: 36px;
    padding: 0 26px;
    border: 1px solid #747a84;
    display: inline-block;
    font-size: 14px;
    color: #444;
    border-radius: 18px;
}

.product-page .side-right .top .show ul {
    position: absolute;
    border: 1px solid #eee;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 10px;
    z-index: 2;
    background: white;
    display: none;
}

.product-page .side-right .top .show ul li {
    padding: 7px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.product-page .side-right .top .show ul li:last-child {
    border-bottom: none;
}

.product-page .side-right .top .show ul li:hover {
    color: var(--color);
}

.product-page .side-right .top .show:hover ul {
    display: block;
}

.product-page .side-right .top .listBox {
    display: inline-block;
    vertical-align: middle;
}

.product-page .side-right .top .listBox span {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    cursor: hand;
}

.product-page .side-right .top .listBox span.list {
    margin-left: 20px;
}

.product-page .side-right .bottom .block ul {
    margin: -30px -10px;
}

.product-page .side-right .bottom .block ul li {
    padding: 30px 10px;
}

.product-page .side-right .bottom .block ul li a.img-box {
    display: block;
}

.product-page .side-right .bottom .block ul li h4 {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #101010;
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    line-height: 30px;
}

.product-page .side-right .bottom .block ul li:hover h4 {
    color: var(--color);
}

.product-page .side-right .bottom .list {
    display: none;
}

.product-page .side-right .bottom .list ul li {
    margin-bottom: 20px;
}

.product-page .side-right .bottom .list ul li:last-child {
    margin-bottom: 0;
}

.product-page .side-right .bottom .list ul li .img {
    width: 30%;
    vertical-align: middle;
}

.product-page .side-right .bottom .list ul li .img a {
    display: block;
}

.product-page .side-right .bottom .list ul li .text {
    width: 70%;
    padding-left: 5%;
    vertical-align: middle;
}

.product-page .side-right .bottom .list ul li .text h4 {
    font-size: 24px;
    line-height: 1.6;
}

.product-page .side-right .bottom .list ul li .text .content {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    line-height: 28px;
}

.product-page .side-right .bottom .list ul li .text a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    background: var(--color);
    color: white;
    border-radius: 3px;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.product-page .side-right .bottom .list ul li .text a.more:hover {
    background: #222;
}

.news-page {
    padding: 50px 0 110px;
}

.news-page .top {
    display: block;
}

.news-page .top ul li {
    display: inline-block;
}

.news-page .top ul li a {
    display: block;
    line-height: 46px;
    height: 46px;
    padding: 0 42px;
    font-size: 18px;
    color: #171717;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.news-page .top ul li a:hover,
.news-page .top ul li a.active {
    background: var(--color);
    color: white;
}

.news-page .bottom {
    padding-top: 60px;
}

.news-page .bottom ul {
    margin: -30px -12px;
}

.news-page .bottom ul li {
    padding: 30px 12px;
    position: relative;
}

.news-page.Factory .bottom ul li .box1{
    position: relative
}
.news-page.Factory .bottom ul li .box1::before{
    content:'';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color);
    top: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 2;
}
.news-page.Factory .bottom ul li .box1::after{
    content:'';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color);
    bottom: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 2;
}
.news-page.Factory .bottom ul li:hover .box1::before{
    width: 100%;
}
.news-page.Factory .bottom ul li:hover .box1::after{
    width: 100%;
}
.news-page.Factory .bottom ul li .box{
    position: relative;
    overflow: hidden;
}
.news-page.Factory .bottom ul li .box::before{
    content:'';
    position: absolute;
    width: 2px;
    height: 0;
    background-color: var(--color);
    bottom: 0;
    left: 0;
    transition: all 0.5s;
    z-index: 2;
}
.news-page.Factory .bottom ul li .box::after{
    content:'';
    position: absolute;
    width: 2px;
    height: 0;
    background-color: var(--color);
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 2;
}
.news-page.Factory .bottom ul li:hover .box::before{
    height: 100%;
}
.news-page.Factory .bottom ul li:hover .box::after{
    height: 100%;
}


.news-page .bottom ul li a.img-box {
    display: block;
}

.news-page .bottom ul li .content {
    display: block;
    padding: 25px 15px;
    background: #f5f5f5;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    z-index: 0;transition: all 0.5s;
}
/*.news-page .bottom ul li .content::after{
    content:'';
    display: block;
    width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: var(--color);
    transition: all 0.5s;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}*/
.news-page .bottom ul li .box:hover .content{
    background: var(--color);
}

.news-page .bottom ul li .content h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 18px;
    color: #101010;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    line-height: 32px;
}

.news-page .bottom ul li .box:hover .content h4 {
    color: #fff;
}

.news-page .bottom ul li .content time {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #3a3a3a;
    line-height: 30px;
}

.newdet-page h3 {
    color: black;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.8;
}

.newdet-page time {
    display: block;
    margin: 15px 0;
    font-size: 16px;
    line-height: 30px;
    color: black;
    opacity: .6;
}

.newdet-page .content {
    display: block;
    padding: 15px 0;
    border-top: 1px #ccc dashed;
    border-bottom: 1px #ccc dashed;
    font-size: 18px;
    color: #666;
    line-height: 30px;
}

.newdet-page .share {
    padding-top: 10px;

}

.newdet-page .share h4 {
    font-size: 16px;
    line-height: 30px;
    color: black;
    display: inline-block;
    vertical-align: middle;
}

.newdet-page .share ul {
    display: inline-block;
    vertical-align: middle;
}

.newdet-page .share ul li {
    width: auto;
    margin-left: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.newdet-page .share ul li:hover {
    color: var(--color);
}

.m-link a {
    display: block;
    font-size: 16px;
    line-height: 30px;
 
}

.m-link a span {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    border-bottom: 2px solid transparent;
}

.m-link a:hover span {
    color: var(--color);
    border-bottom: 2px solid var(--color);
}


.news-about-page h3.tit {
    font-size: 30px;
    color: #303036;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
}

.news-about-page h3.tit small {
    display: block;
    font-size: 16px;
    line-height: normal;
    margin-top: 15px;
    opacity: .55;
}

#msg2 .box {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 280px;
    right: 0;
    background: white;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px 15px;
    -webkit-transform: translateY(110%);
    -moz-transform: translateY(110%);
    -ms-transform: translateY(110%);
    -o-transform: translateY(110%);
    transform: translateY(110%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#msg2 .box h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

#msg2 .box i.close {
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 18px;
    right: 10px;
    cursor: pointer;
    cursor: hand;
}

#msg2 .box i.close:after,
#msg2 .box i.close:before {
    content: '';
    width: 24px;
    height: 1px;
    display: block;
    background: black;
    position: absolute;
    top: 50%;
    left: 10%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

#msg2 .box i.close:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#msg2 .box form ul li {
    padding-bottom: 10px;
    font-size: 12px;
}

#msg2 .box form ul li:last-child {
    padding-bottom: 0;
}

#msg2 .box form ul li input,
#msg2 .box form ul li textarea {
    width: 100%;
    line-height: 24px;
    border: 1px solid #eee;
    padding: 5px 10px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#msg2 .box form ul li input:focus,
#msg2 .box form ul li textarea:focus {
    border-color: var(--color);
}

#msg2 .box form ul li textarea {
    height: 80px;
    resize: vertical;
    -webkit-transition: .5s all, height 0s;
    -moz-transition: .5s all, height 0s;
    -ms-transition: .5s all, height 0s;
    -o-transition: .5s all, height 0s;
    transition: .5s all, height 0s;
}

#msg2 .box form ul li input[type="submit"] {
    background: var(--color);
    color: white;
}

#msg2 .box form ul li input[type="submit"]:hover {
    background: #222;
}

#msg2.active .box {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

#msg2:hover span,
#msg2.active2 span {
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 1600px) {
    .news-page .top ul li a {
        line-height: 38px;
        height: 38px;
        padding: 0 30px;
        font-size: 16px;
    }

    .news-page .bottom {
        padding-top: 40px;
    }

    .news-page {
        padding: 50px 0;
    }

    .news-page .bottom ul li {
        padding: 5px;
    }

    .news-page .bottom ul {
        margin: -5px;
    }

    .news-page .bottom ul li .content {
        padding: 10px;
    }

    .product-page .side-right .top,
    .inner-page .sideBox .side-left h2 {
        margin-bottom: 30px;
    }

    .inner-page .sideBox .side-left h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .inner-page .sideBox .side-left .box ul li a {
        font-size: 14px;
    }

    .product-page {
        padding: 60px 0;
    }

    .product-page .side-right .bottom .block ul li {
        padding: 10px;
    }

    .product-page .side-right .bottom .block ul {
        margin: -10px;
    }

    .product-page .side-right .bottom .list ul li .text h4 {
        font-size: 22px;
        line-height: 1.8;
    }

    .product-page .side-right .bottom .list ul li .text a.more {
        line-height: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 20px;
        display: none !important;
    }
}

@media screen and (max-width: 1250px) {
    .inner-page .sideBox .side-left {
        width: 30%;
    }

    .inner-page .sideBox .side-right {
        width: 70%;
    }

    .product-page .side-right .bottom .list ul li .text .content {
        margin: 10px 0;
        font-size: 13px;
        line-height: 1.6;
        display: none !important;
    }

    .product-page .side-right .top .show {
        margin: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .news-page .bottom ul li .content h4 {
        font-size: 16px;
        line-height: 30px;
    }

    .news-page .top ul li a {
        line-height: 30px;
        height: 32px;
        padding: 0 15px;
    }

    .inner-page .sideBox .side-left {
        display: none;
    }

    .inner-page .sideBox .side-right {
        width: 100%;
    }

    .inner-page .sideBox .side-right .zj-bulaika1 {
        display: none !important;
    }
}

@media screen and (max-width: 700px) {
    .product-page .side-right .bottom .list ul li .text {
        width: 100%;
    }

    .product-page .side-right .bottom .list ul li .img {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .product-page .side-right .top .form {
        max-width: 100%;
    }

    .product-page .side-right .top .show,
    .product-page .side-right .top .listBox {
        display: none;
    }
}

.product-page .side-right .bottom .block ul li img {
    width: auto;
    display: block;
    margin: 0 auto;
}

.contact-page {
    padding: 0;
}

.contact-page h2 {
    font-weight: 600;
    line-height: 1;
    color: #333;
    /*text-transform: uppercase;*/

    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.contact-page h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: var(--color);
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.contact-page p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;

}

.contact-page .contact-1 {
    background-color: #eeeeee;
}

.contact-page .contact-1 ul {
    margin-top: 65px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact-page .contact-1 ul li {
    width: 26%;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 35px;
}

.contact-page .contact-1 ul li:hover img {
    transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}

.contact-page .contact-1 ul li 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: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 140px;
    height: 100px;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #d2d2d2;
    margin: 0 auto;
}

.contact-page .contact-1 ul li span img {
    display: inline-block;
    vertical-align: middle;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.contact-page .contact-1 ul li p {
    color: rgba(102, 102, 102, 0.8);
 
    line-height: 30px;
    margin-top: 30px;
}

.contact-page .contact-1 ul .add p {
    font-size: 16px;
    line-height: 1.5;
}

.contact-page .contact-2 .top {
    text-align: center;
}

.contact-page .contact-2 .top p {
    line-height: 32px;
    margin-top: 30px;
}

.contact-page .contact-2 form {
    margin-top: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact-page .contact-2 form input[type="text"] {
    width: 47%;
    border: 1px solid #c9c9c9;
    height: 50px;
    background: none;
    padding: 0 25px;
    margin-bottom: 40px;
    font-size: 16px;

    line-height: 30px;
}

.contact-page .contact-2 form input[type="text"]:focus {
    border: 1px solid var(--color);
}

.contact-page .contact-2 form textarea {
    width: 100%;
    border: 1px solid #c9c9c9;
    height: 265px;
    background: none;
    padding: 25px;
    margin-bottom: 57px;
    font-size: 16px;

}

.contact-page .contact-2 form textarea:focus {
    border: 1px solid var(--color);
}

.contact-page .contact-2 form input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form input::-moz-input-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form input::-moz-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form input::-ms-input-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form textarea::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form textarea:-moz-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form textarea::-moz-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form textarea::-ms-input-placeholder {
    font-size: 18px;
    line-height: 1;
    color: #999999;

    opacity: 1;
}

.contact-page .contact-2 form input[type="submit"] {
    margin: 0 auto;
    width: 40%;
    padding: 15px 0;
    border: none;
    background: var(--color);
    font-size: 24px;
    line-height: 1;
    color: #fff;

    text-transform: uppercase;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}

.contact-page .contact-2 form input[type="submit"]:hover {
    background: #000;
}

@media screen and (max-width: 1230px) {
    .contact-page .contact-1 ul li {
        width: 31%;
        padding: 30px 15px;
    }

    .contact-page .contact-1 ul .add p {
        font-size: 12px;
    }

    .contact-page p {
        font-size: 16px;
    }

    .contact-page .contact-2 .top p {
        line-height: 30px;
    }

    .contact-page .contact-2 form {
        margin-top: 50px;
    }
    .contact-page .contact-2 form input[type="submit"] {
      font-size: 20px;
    }
    .contact-page .contact-2 form input::-webkit-input-placeholder {
    font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
      .contact-page .contact-2 form input[type="text"] {
        margin-bottom: 20px;
    }
    .contact-page .contact-1 ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact-page .contact-2 form {
        margin-top: 30px;
    }
        .contact-page .contact-2 form input[type="submit"] {
      font-size: 16px;
    }
}

@media screen and (max-width: 500px) {
    .contact-page .contact-2 form input[type="text"] {
        width: 100%
    }
}

.about-page .about-6 {
    padding-top: 150px;
}

.about-page .about-6 h2 {
    font-size: 42px;
    color: black;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.8;
}

.about-page .about-6 h2 small {
    display: block;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: none;

    line-height: 1.8;
}

.about-page .about-6 .box {
    padding-top: 40px;
    max-width: 1320px;
    display: block;
    margin: 0 auto;
}

.about-page .about-6 .box ul li {
    padding-bottom: 20px;
}

.about-page .about-6 .box ul li:last-child {
    padding-bottom: 0;
}

.about-page .about-6 .box ul li h4 {
    padding: 20px 70px;
    background-image: url("../images/icon-lt.png");
    background-position: center left 25px;
    background-repeat: no-repeat;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    border: 1px solid #b7b7b7;
    font-size: 16px;
    color: #666;
    text-transform: capitalize;
    position: relative;
    cursor: pointer;
    line-height: 30px;
}
.about-page .about-6 .box ul li:hover  h4{
    background-color: var(--color);
    color: white;
    background-image: url(../images/icon-lt2.png);
}
.about-page .about-6 .box ul li h4:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
    position: absolute;
    right: 25px;
    top: 20px;
 
}

.about-page .about-6 .box ul li .text {
    padding: 25px;
    border: 1px solid #b7b7b7;
    margin-top: 8px;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    display: none;
    -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.about-page .about-6 .box ul li.active h4 {
    background-color: var(--color);
    color: white;
    background-image: url("../images/icon-lt2.png");
}

.about-page .about-6 .box ul li.active h4:after {
    content: "\f106";font-family: "FontAwesome";
}
@media screen and (max-width: 700px ) {
  .about-page .about-6 .box ul li h4{
    padding: 20px 50px 20px 20px;
  }
}

.inquiry {
    position: fixed;
    bottom: 35%;
    right: 4.5rem;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: #133cf5;
    cursor: pointer;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 100;
}

.layer-form {
    display: none;
}

.container-contact100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 1000001;
    left: 0;
    top: 0;
}

.wrap-contact100 {
    width: 560px;
    background: #fff;
    border-radius: 3px;
    position: relative;
    overflow: auto;
    max-height: 90vh;
}

.layer-form .wrap-contact100 {
    width: 357px;
    border-radius: 10px;
}

.btn-hide-contact100 {
    font-size: 20px;
    color: #fff;
    opacity: .6;
    position: absolute;
    right: 10px;
    top: 5px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -moz-transition: all .4s;
    transition: all .4s;
    cursor: pointer;
    z-index: 10;
}

.layer-form .wrap-contact100 .btn-hide-contact100 {
    color: #000;
}

.layer-form .wrap-contact100 form {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 25px 15px;
}

.layer-form .wrap-contact100 form h2 {
    width: 100%;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.layer-form .wrap-contact100 form input {
    height: 36px;
    display: block;
    width: 100%;
    background: 0 0;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    padding: 0 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.layer-form .wrap-contact100 form textarea {
    height: 114px;
    padding-top: 22px;
    padding-bottom: 15px;
    display: block;
    width: 100%;
    background: 0 0;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    padding: 15px 20px;
    border: none;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.layer-form .wrap-contact100 form p {
    font-size: 12px;
    color: #adadad;
    padding: 10px 0;
}

.layer-form .wrap-contact100 form .layer-submit {
    width: 100%;
    position: relative;
    border-radius: 2px;
}

.layer-form .wrap-contact100 form .layer-submit input[type=submit] {
    border: 1px solid #e6e6e6;
    background: #133cf5;
    height: 42px;
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.2;
    padding: 0 20px;
    margin: 0;
    border-radius: 42px;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -ms-transition: .5s ease;
    -o-transition: .5s ease;
    position: relative;
    z-index: 10;
    color: #fff;
}

.layer-form .wrap-contact100 form .layer-submit input[type=submit]:hover {
    background: #000;
}

.layer-form .wrap-contact100 form input {
    height: 36px;
    display: block;
    width: 100%;
    background: 0 0;
    font-size: 14px;
    color: #333;
    line-height: 1.2;
    padding: 0 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    height: auto;
}


.why-page .about2-page .about-1 a.more {
  z-index: 1;
  position: relative;
  float: right;
}

.why-page .about2-page .about-1 .list {
  margin-top: 30px;
  z-index: 1;
}

.why-page .about2-page .about-1 .list ul li h6 {
  font-size: 22px;
}

.why-page .about2-page .about-1 .list ul li p {
  font-weight: 300;
}

.why-page .about2-page .about-1 .list ul li i:after {
  background: #f1f1f1;
}

.why-page .about2-page .about-1 {
  background: #f1f1f1;
  padding: 60px 0;
}
.why-page .why-1 .slide {
    padding: 65px 0;
}
.why-page .why-1 .slide .left {
    width: 46%;
    vertical-align: middle;
    padding-right: 10%;
    position: relative;
}
.why-page .why-1 .slide .left span.tag,
.why-page .about2-page .about-1 span.tag {
    font-size: 17px;
    color: var(--color);
    display: block;
    line-height: 1;
}
.why-page .why-1 .slide .left h3,
.why-page .about2-page .about-1 h3 {
    font-weight: 600;
    line-height: 1.2;
    margin: 10px 0 25px;
}

.why-page .why-1 .slide .left .text {
    font-size: 18px;
    color: #333;
    line-height: 30px;
}
.why-page .why-1 .slide .right {
    width: 54%;
    vertical-align: middle;
    padding-right: 20px;
    padding-top: 20px;
    position: relative;
}
.why-page .why-1 .slide .right:after {
    content: '';
    width: 90%;
    height: 70%;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    background: #820f09;
}

.why-page .why-1 .slide:nth-child(even) .left {
    left: 54%;
    padding-left: 10%;
    padding-right: 0;
}
.why-page .why-1 .slide:nth-child(even) .right {
    left: -46%;
    padding-left: 20px;
}
.why-page .why-1 .slide:nth-child(even) .right:after{
    content: '';
    width: 90%;
    height: 70%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    background: #820f09;
}
.why-page + .why-page .why-1 {
    padding-bottom: 50px;
}
.why-page + .why-page .why-1 .ui.container {
    max-width: none;
}

.why-page .about2-page .about-2 .list ul li .content h6 {
  margin: 10px 0 5px;
  font-size: 22px;
  color: #1e1e1e;
  line-height: 40px;
  font-weight: 500;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.why-page .about2-page .about-2 .list ul li .content h6:hover {
  color: #b41c1d;
}

.why-page .about2-page .about-2 .list ul li .content p {
  display: block;
  font-size: 17px;
  color: #6f6f6f;
  line-height: 25px;
}

.why-page .about2-page .about-3 {
  padding: 90px 0;
  text-align: center;
  /*background: url("../images/about-2-bg.jpg") center top no-repeat;*/
  background-size: 100% auto;
}

.why-page .about2-page .about-3 .list {
  margin-top: 70px;
}

.why-page .about2-page .about-3 .list ul {
  margin: -10px;
}

.why-page .about2-page .about-3 .list ul li {
  padding: 10px;
}

.why-page .about2-page .about-3 .list ul li a.img-box {
  display: block;
  width: 100%;
  box-shadow: 0 0 15px 0 rgb(209 209 209 / 63%);
}

.why-page .about2-page .about-3 .list ul li a.img-box img {
  width: 100%;
}


.why-page .about2-page .about-1 {
  padding: 120px 0 120px;
  /*background: url("../images/about-1-bg.jpg") no-repeat;*/
}

.why-page .about2-page .about-1 .left {
  width: 45%;
  vertical-align: middle;
  padding-right: 3%;
  position: relative;
  z-index: 2;
}

.why-page .about2-page .about-1 .left .img {
  height: 490px;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.why-page .about2-page .about-1 .left .img .play {
  padding: 25px 40px;
  background: white;
  text-align: center;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  line-height: 1;
  cursor: pointer;
  cursor: hand;
}

.why-page .about2-page .about-1 .left .img .play img {
  display: block;
  margin: 0 auto 6px;
}

.why-page .about-page .about-1 .right {
  vertical-align: middle;
  width: 55%;
}

.why-page .about2-page .about-1 .right h3,
.why-page .about2-page .about-1-new h4 {
  font-weight: 500;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-page .about2-page .about-1 .right h6 {
  display: block;
  font-weight: 500;
  font-size: 26px;
  color: #1e1e1e;
  margin: 0px 0 10px;
}

.why-page .about2-page .about-1 .right .content,
.why-page .about2-page .about-1-new .text {
  font-size: 18px;
  color: #b7b7b7;
  line-height: 1.6;
  font-size: 17px;
}

.why-page .about2-page .about-1 .right .content {
  color: #7c7c7c;
  max-height: 350px;
  overflow: auto;
}

.why-page .about2-page .about-1 .right .btn2 {
  margin-top: 10px;
  text-align: center;
}

.why-page .about2-page .about-1 .right .btn2 div {
  width: 40px;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
  color: black;
  background: #eee;
  border-radius: 5px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  margin: 0 5px;
  cursor: pointer;
  cursor: hand;
}

.why-page .about2-page .about-1 .right .btn2 div:hover {
  color: white;
  background: #b41c1d;
}

.why-page .about2-page .about-1-new {
  padding: 80px 0;
  background: url('../images/culture.jpg') center center no-repeat;
  background-size: cover;
}

.why-page .about2-page .about-1-new h2 {
  color: white;
  letter-spacing: 3px;
}

.why-page .about2-page .about-1-new h4 {
  font-size: 24px;
}

.why-page .about2-page .about-1-new .text {
  margin-top: 1%;
}

.why-page .about2-page .about-1-new .left {
  vertical-align: middle;
  padding-right: 5%;
  color: white;
}

.why-page .about2-page .about-1-new .right {
  vertical-align: middle;
}

.why-page .about2-page .about-1 .list {

  position: relative;
}

.why-page .about2-page .about-1 .list:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #999;
  position: absolute;
  left: 0;
  top: 52px;
  z-index: -1;
}

.why-page .about2-page .about-1 .list:after {
  top: 86px;
}

.why-page .about2-page .about-1 .list ul {
  margin: -10px;
}

.why-page .about2-page .about-1 .list ul li {
  font-weight: 500;
  padding: 10px;
}

.why-page .about2-page .about-1 .list ul li i {
  display: block;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.why-page .about2-page .about-1 .list ul li i img {
  height: 50px;
}

.why-page .about2-page .about-1 .list ul li i:after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 3px solid #820f09;
  background: white;
  display: block;
  margin: 18px 0 20px;
  margin-left: 16px;
}

.why-page .about2-page .about-1 .list ul li h6 {
  font-size: 26px;
  color: #1e1e1e;
  line-height: 1;

  font-weight: 600;
}

.why-page .about2-page .about-1 .list ul li p {
  font-size: 18px;
  color: #1e1e1e;

  margin-top: 12px;
}

.why-page .about2-page .about-1 .list ul li:hover i {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.why-page .about2-page .about-1 a.more {
  z-index: 1;
  position: relative;
  line-height: 48px;
  height: 50px;
  padding: 0 30px;
 border: 2px solid #820f09;
    border-radius: 40px;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-shadow: none;
}

.why-page .about2-page .about-1 a.more::before,
.why-page .about2-page .about-1 a.more::after {
  display: none;
}
.why-page .about2-page span.tag{
    font-size: 18px;
    color: #1e1e1e;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.why-page .about2-page h2 {
  font-size: 50px;
  color: #1e1e1e;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

.why-page .about2-page h2 em {
  color: var(--color);
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
}

.why-page .about2-page .about-2 {
  padding: 80px 0 70px;
  background: transparent;
  text-align: center;
}

.why-page .about2-page .about-2 .list {
  margin-top: 50px;
}

.why-page .about2-page .about-2 .list ul {
  margin: -11px;
  padding: 0 0 30px 0;
}

.why-page .about2-page .about-2 .list ul li {
  padding: 11px;
}

.why-page .about2-page .about-2 .list ul li .img {
  display: block;
  position: relative;
}

.why-page .about2-page .about-2 .list ul li .img img {
  width: 100%;
}

.why-page .about2-page .about-2 .list ul li .img .text {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 5%;
  color: white;
}

.why-page .about2-page .about-2 .list ul li .img .text h4 {
  font-size: 36px;
  font-weight: 500;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}

.why-page .about2-page .about-2 .list ul li .img .text p {
  display: block;
  font-size: 17px;
  line-height: 25px;
}

.why-page .about2-page .about-2 .list ul li .content {
  margin-top: 35px;
  padding: 0 5%;
  text-align: left;
}

.about-page .about-2 .list ul li .content i {
  display: block;
}

.inner-page .publicBox {
  overflow: hidden;
  background: url("/en/2025/09/08/h-banne4r.png") right top 10% no-repeat;
}

.inner-page .publicBox .box {
  width: 65%;
  padding: 100px 0;
  padding-right: 10%;
  background: #f1f1f1;
  position: relative;
  text-align: left;
}

.inner-page .publicBox .box a.more {

  margin-top: 5%;
  color: #fff;
}

.inner-page .publicBox .box a.more::before,
.inner-page .publicBox .box a.more::after {
  z-index: -1;
}

.inner-page .publicBox .box:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
  background: inherit;
}

.inner-page .publicBox .box h3 {
  color: #1e1e1e;
  line-height: 1.4;
  font-weight: 500;
}

.inner-page .publicBox .box h3 em {
  color: #b41c1d;
}

.inner-page .publicBox .box .text {
  display: block;
  font-size: 16px;
  color: #1e1e1e;
  line-height: 30px;
  margin-top: 18px;
}
@media screen and (max-width: 1450px) {
  .why-page .about2-page h2 {
    font-size: 40px;
  }

  .why-page .why-1 .slide {
    padding: 50px 0 0;
  }

  .why-page .why-1 .slide .left span.tag {
    font-size: 15px;
  }

  .why-page .why-1 .slide .left h3,
  .why-page .about2-page .about-1 .right h3 {
    font-size: 30px;
  }

  .why-page .why-1 .slide .left .text {
    font-size: 15px;
  }

  .why-page .why-1 .slide .left {
    padding-right: 5%;
  }

  .why-page .why-1 .slide:nth-child(even) .left {
    padding-left: 5%;
  }

  .why-page .about2-page .about-1 {
    background-size: 70% auto;
  }

  .why-page .about2-page .about-1 .right h6 {
    font-size: 18px;
    margin: 10px 0;
  }

  .why-page .about2-page .about-1 .left .img {
    height: 400px;
  }

  .why-page .about2-page .about-1 .left .img .play {
    padding: 12px 20px;
  }

  .why-page .about2-page .about-1 .list ul li h6 {
    font-size: 26px;
  }

  .why-page .about2-page .about-1 .list ul li p {
    font-size: 14px;
    line-height: 2;
  }

  .why-page .about2-page .about-1 {
    padding: 90px 0 60px;
  }
}

@media screen and (max-width: 1250px) {
  .why-page .about2-page .about-1 {
    background: none;
  }

  .why-page .about2-page .about-1 .right {
    padding-left: 4%;
  }

  .why-page .about2-page .about-1 .right .content {
    font-size: 14px;
    line-height: 30px;
  }

  .why-page .about2-page .about-2 .list ul li .img .text h4 {
    font-size: 28px;
  }

  .why-page .about2-page .about-2 .list ul li .img .text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .why-page .about2-page .about-2 .list ul li .content {
    margin-top: 20px;
  }

  .why-page .about2-page .about-2 .list ul li .content h6 {
    font-size: 20px;
  }

  .why-page .about2-page .about-3 .list {
    margin-top: 40px;
  }

  .why-page .about2-page .about-3 {
    padding: 60px 0;
  }

  .why-page .why-1 .slide .left h3,
  .why-page .about2-page .about-1 .right h3 {
    font-size: 26px;
  }
}

@media screen and (max-width: 1000px) {
  .why-page .about2-page span.tag {
    font-size: 14px;
  }

  .why-page .why-1 .slide .left {
    width: 100%;
    padding: 0 !important;
    left: 0 !important;
  }

  .why-page .why-1 .slide .right {
    width: 100%;
    padding: 0 !important;
    left: 0 !important;
    margin-top: 30px;
  }

  .why-page .about2-page .about-1 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
.why-page .about2-page .about-1 {
    padding: 60px 0;
}
  .why-page .about2-page .about-1 .left {
    width: 100%;
  }

  .why-page .about2-page .about-1 .left .img {
    height: 260px;
  }

  .why-page .about2-page .about-1 .list ul li {
    width: 25%;
  }

  .why-page .about2-page .about-2 {
    padding: 50px 0;
  }
}

@media screen and (max-width: 700px) {
  .why-page .about2-page .about-2 {
    display: none;
  }
.why-page .about2-page .about-3 {
        padding: 25px 0;
    }
    .why-page .about2-page .about-1 {
        padding: 30px 0;
    }
  .inner-page .publicBox {
    background: transparent;
    margin-bottom: 5%;
    padding-top: 50px;
  }
  .inner-page .publicBox .box:after{
      display: none;
  }
  .inner-page .publicBox .box {
    width: 100%;
    padding: 30px 15px;
  }

  .inner-page .publicBox .box .text {
    font-size: 14px;
  }

  .why-page .about2-page h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 500px) {
  .why-page .about2-page h2 {
    font-size: 24px;
  }

  .why-page .about2-page span.tag {
    font-size: 14px;
  }

  .why-page .why-1 .slide .left h3,
  .why-page .about2-page .about-1 .right h3 {
    font-size: 22px;
    line-height: 30px;
  }
}



.about-page2 .init-1{
  overflow: hidden;
}
.about-page2 .init-1 .container {
  position: relative;
}
.about-page2 .init-1 .container .sub_img {
  position: absolute;
  width: 460px;
  bottom: 0;
  right: -200px;
  z-index: -1;
}
.about-page2 .init-1 .container .tips {
  font-weight: bold;
  
  text-transform: uppercase;
  color: #b60005;
  text-align: center;
}
.about-page2 .init-1 .container .des {
  margin-top: 26px;
  line-height: 1.8;
  /*max-height: 400px;*/
  overflow-y: auto;
}
.about-page2 .init-1 .container .list_cont {
  margin-top: 82px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-page2 .init-1 .container .list_cont .list {
  width: auto;
  vertical-align: middle;
  display: inline-block;
  margin: 20px 0 0 0;
}
.about-page2 .init-1 .container .list_cont .list .num {
  font-size: 80px;
  color: #b60005;
  font-weight: bold;
  display: inline-block;
  line-height: 0.8;
}
.about-page2 .init-1 .container .list_cont .list .text {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 12px;
  line-height: 1.8;
}
.about-page2 .init-1 .container .list_cont .list2 {
  margin: 20px 20px 0;
}
.about-page2 .init-2 .container {
  position: relative;
}
.about-page2 .init-2 .container .img {
  height: 600px;
  background-size: inherit;
  background-attachment: fixed;
  background-position: right bottom;
}
.about-page2 .init-2 .container .play {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 270px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.about-page2 .init-2 .container .play div {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 22px;
  color: #fff;
  text-align: center;
  line-height: 60px;
}
.about-page2 .init-2 .container .play div i {
  margin-left: 2px;
}
.about-page2 .init-2 .container .play .ling {
  background-color: #fff;
  border-radius: 30px;
}
.about-page2 .init-2 .container .play .ling:nth-child(2) {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
.about-page2 .init-2 .container .play .cont {
  position: relative;
  z-index: 2;
      border-radius: 30px;
}
.about-page2 .init-3 {
  padding: 100px 0;
}
.about-page2 .init-3 .container .list {
  margin-top: 60px;
}
.about-page2 .init-3 .container .list .column {
  vertical-align: middle;
  position: relative;
}
.about-page2 .init-3 .container .list .left img {
  width: 100%;
}
.about-page2 .init-3 .container .list .right {
  padding-left: 60px;
}
.about-page2 .init-3 .container .list .right .tips,
.about-page2 .init-3 .container .list .right .title {
  font-weight: 600;
  color: #b60005;
  
  text-transform: uppercase;
}
.about-page2 .init-3 .container .list .right .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
}
.about-page2 .init-3 .container .list .right .title {
  color: #181818;
  margin-top: 8px;
}
.about-page2 .init-3 .container .list .right .des {
  color: #262626;
  margin-top: 10px;
  line-height: 2;
}
.about-page2 .init-3 .container .list:nth-child(2n) .left {
  left: 50%;
}
.about-page2 .init-3 .container .list:nth-child(2n) .right {
  left: -50%;
  padding-left: 0;
  padding-right: 60px;
}
.about-page2 .init-4 .container {
  text-align: center;
}
.about-page2 .init-4 .container .tips,
.about-page2 .init-4 .container .title {
  font-weight: 600;
  
  color: #b60005;
  text-transform: uppercase;
}
.about-page2 .init-4 .container .line {
  width: 250px;
  height: 1px;
  background-color: #b60005;
  margin: auto;
}
.about-page2 .init-4 .container .title {
  color: #181818;
  margin-top: 10px;
}
.about-page2 .init-4 .container .content {
  margin: 40px -30px 0;
}
.about-page2 .init-4 .container .content .slick1 .slick-track {
  margin-left: 0;
}
.about-page2 .init-4 .container .content .slick1 li {
  padding: 0 30px;
}
.about-page2 .init-4 .container .content .slick1 li a {
  display: block;
  overflow: hidden;
}
.about-page2 .init-4 .container .content .slick1 li a img {
  width: 100%;
}
.about-page2 .init-4 .container .s_page {
  margin-top: 30px;
}
.about-page2 .init-4 .container .s_page li {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #b60005;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}
.about-page2 .init-4 .container .s_page li button {
  display: none;
}
.about-page2 .init-4 .container .s_page li.slick-active {
  background-color: #b60005;
}
.about-page2 .init-5 .container iframe{
  display: block;
  height: 700px;
  width: 100%;
}
.about-page2 .init-6 .container .column {
  vertical-align: middle;
}
.about-page2 .init-6 .container .left img {
  width: 100%;
}
.about-page2 .init-6 .container .right {
  padding-left: 60px;
}
.about-page2 .init-6 .container .right .tips {
  font-weight: 600;
  
  text-transform: uppercase;
}
.about-page2 .init-6 .container .right .tips span {
  color: #b60005;
}
.about-page2 .init-6 .container .right .des {
  margin-top: 10px;
  line-height: 2;
}
@media (max-width: 1500px) {
  .about-page2 .init-1 .container .list_cont .list .num {
    font-size: 60px;
  }
}
@media (max-width: 1000px) {
    
  .about-page2 .init-1 .container .des {
    text-align: center;
  }

  .about-page2 .init-2 .container .img {
    height: 300px;
    background-size: auto 320px;
    background-attachment:unset;
  }

  .about-page2 .init-3 .container .list .column {
    width: 100%;
  }

  .about-page2 .init-3 .container .list .right {
    padding: 0;
    text-align: center;
    margin-top: 20px;
  }

  .about-page2 .init-3 .container .list .right .line {
    margin: 6px auto 0;
  }

  .about-page2 .init-3 .container .list:nth-child(2n) .left {
    left: 0;
  }

  .about-page2 .init-3 .container .list:nth-child(2n) .right {
    left: 0;
    padding: 0;
  }

  .about-page2 .init-4 .container .content {
    margin: 40px -10px 0;
  }

  .about-page2 .init-4 .container .content .slick1 li {
    padding: 0 10px;
  }

  .about-page2 .init-5 .container .img {
    height: 400px;
  }

  .about-page2 .init-6 .container .column {
    width: 100%;
  }

  .about-page2 .init-6 .container .right {
    padding-left: 0;
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 700px) {
      .about-page2 .init-1 .container .list_cont .list {
    margin: 20px 0 0;
    text-align: center;
    width: 100%;
  }

  .about-page2 .init-1 .container .list_cont .list .text {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }

  .about-page2 .init-2 {
    margin-top: 40px;
  }
}
@media (max-width: 500px) {
    
  .about-page2 .init-1 .container .list_cont {
    margin-top: 10px;
  }

  .about-page2 .init-1 .container .list_cont .list .num {
    font-size: 50px;
  }

  .about-page2 .init-1 .container .list_cont .list .text {
    margin-top: 10px;
  }

  .about-page2 .init-3 {
    padding-top: 10px;
  }

  .about-page2 .init-3 .container .list {
    margin-top: 40px;
  }

  .about-page2 .init-4 .container .line {
    margin: 6px auto 0;
  }

  .about-page2 .init-4 .container .content {
    margin-top: 20px;
  }

  .about-page2 .init-4 .container .s_page {
    margin-top: 10px;
  }

  .about-page2 .init-4 .container .s_page li {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }

  .about-page2 .init-5 {
    height: auto;
  }
}
.more_cont {
  overflow: hidden;
  position: relative;
  background-color: #b60005;
  color: #fff;
  cursor: pointer;
}
.more_cont span,
.more_cont i {
  position: relative;
  z-index: 2;
}
.more_cont::before {
  background-color: #b60005;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  z-index: 1;
}
.more_cont:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.sca_ani_2 {
    -webkit-animation: sca_ani_2 2s linear infinite;
    -moz-animation: sca_ani_2 2s linear infinite;
    -o-animation: sca_ani_2 2s linear infinite;
    animation: sca_ani_2 2s linear infinite
}

@-webkit-keyframes sca_ani_2 {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-moz-keyframes sca_ani_2 {
    0% {
        -moz-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -moz-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

@-o-keyframes sca_ani_2 {
    0% {
        -o-transform: scale(1);
        transform: scale(1)
    }

    100% {
        -o-transform: scale(2);
        transform: scale(2);
        opacity: 0
    }
}

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

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

.seoPublic .title{
    font-size: 42px;
    font-weight:600;
    margin-bottom: 1em;
}
.seoPublic>div {
    padding: 140px 0;
}
.seoPublic .Auxil-news .list ul li .content a.link{
    padding: 10px 15px;
    border: 1px solid var(--color);
    border-radius: 40px;
    color: var(--color);
}
.seoPublic .Auxil-news .list ul li .content a.link:hover{
    color: #fff;
    background-color: var(--color);
}
.seoPublic .Auxil-about .box .right .text,.seoPublic .Auxil-news .list ul li .content p{
    font-size: 18px;
}
.seoPublic .Auxil-news .list ul li .content div.h6,.seoPublic .Auxil-about .box .right div.h3{
    font-weight: 600;
}
@media screen and (max-width: 1450px) {
    .seoPublic .title{
        font-size: 32px;
    }
}
@media screen and (max-width: 1250px) {
    .seoPublic .Auxil-about .box .right .text,.seoPublic .Auxil-news .list ul li .content p{
    font-size: 16px;
}
}
@media screen and (max-width: 1000px) {
    .seoPublic .title{
        font-size:28px;
    }

}
@media screen and (max-width: 700px) {
    .seoPublic .title{
        font-size:24px;
    }
}




.contact2-page .contact-1 {
  padding: 6rem 0;
}

.contact2-page .contact-1 .left {
  padding-right: 6%;
  width: 48%;
}

.contact2-page .contact-1 .left h5 {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact2-page .contact-1 .left p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 1.5rem;
}

.contact2-page .contact-1 .left ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #555;
  text-decoration: none;
}

.contact2-page .contact-1 .left ul li .contact-link-icon {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 60px;
  max-height: 60px;
  min-height: 60px;
  min-width: 60px;
  background-color: var(--color);
  color: #fff;
  font-size: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact2-page .contact-1 .left ul li .contact-link-icon i,
.contact2-page .contact-1 .left ul li .contact-link-icon span {
  background: var(--color);
  color: #fff;
  width: 100%;
  text-align: center;
}

.contact2-page .contact-1 .left ul li .contact-link-title {
  margin-bottom: 0px;
  color: #000;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  margin-top: 7px;
}

.contact2-page .contact-1 .left ul li .contact-link-text {
  color: #555;
  font-size: 16px;
  line-height: 2;
}

.contact2-page .contact-1 .right {
  text-align: right;
  padding-left: 3%;
  width: 52%;
}

.contact2-page .contact-1 .right .form-wrap {
  position: relative;
}

.contact2-page .contact-1 .right .form-wrap .form-box {
  padding: 40px;
  background: #f7f7f7;
  z-index: 3;
  margin-bottom: 30px;
  margin-right: 30px;
  text-align: left;
  border-radius: 0px 0px 40px;
}

.contact2-page .contact-1 .right .form-wrap .form-box::before {
  content: '';
  position: absolute;
  top: 90px;
  right: 10px;
  left: 120px;
  bottom: -20px;
  background: var(--color);
  z-index: -1;border-radius: 0px 0px 40px;
}

.contact2-page .contact-1 .right .form-wrap .form-box::after {
  content: '';
  width: 50%;
  position: absolute;
  top: -5%;
  bottom: 55%;
  left: -5%;
  background-image: url(../images/dots.png);
  background-repeat: repeat;
  z-index: -1;
}

.contact2-page .contact-1 .right .form-wrap .form-box h5 {
  color: #000;
  font-size: 24px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact2-page .contact-1 .right .form-wrap .form-box li.wid-100 {
  width: 100%;
}

.contact2-page .contact-1 .right .form-wrap .form-box li input,
.contact2-page .contact-1 .right .form-wrap .form-box li textarea {
  max-width: 100%;
  margin-bottom: 10px;
  padding: 15px 0;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  background-image: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  border-color: ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.contact2-page .contact-1 .right .form-wrap .form-box li input:focus,
.contact2-page .contact-1 .right .form-wrap .form-box li textarea:focus {
  border-bottom-width: 1px;
  border-color: var(--color);
}

.contact2-page .contact-1 .right .form-wrap .form-box li textarea {
  height: 127px;
}

.contact2-page .contact-1 .right .form-wrap .form-box li .button-secondary {
  font-weight: 600;
  display: inline-block;
  height: auto;
  padding: 14px 30px;
  border: 1px solid transparent;
  font-size: 16px;
  border-radius: 80px;
  background-color: var(--color);
  -webkit-transition: border-color 400ms ease, background-color 400ms ease;
  transition: border-color 400ms ease, background-color 400ms ease;
  color: #fff;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
}

.contact2-page .contact-1 .right .form-wrap .form-box li .button-secondary:hover {
  background: #000;
}

.contact2-page .contact-1 .map {
  margin-top: 4.5rem;
}

.contact2-page .contact-2 {
  background: #f5f5f5;
  padding: 6rem 0;
}

.contact2-page .contact-2 .header p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin-bottom: 15px;
}

.contact2-page .contact-2 .header .section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  position: relative;
  margin-bottom: 20px;
}

.contact2-page .contact-2 .header .section-title span {
  color: var(--color);
}

.contact2-page .contact-2 .content ul {
  margin-right: -2rem;
}

.contact2-page .contact-2 .content ul li {
  padding-right: 2rem;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 2;
}

.contact2-page .contact-2 .content ul li .title {
  padding: 30px 30px 30px 80px;
  cursor: pointer;
  position: relative;
  border: none;
  border: 1px solid #fff;
  margin-bottom: 0px;
  background-color: #fff;
}

.contact2-page .contact-2 .content ul li .title::after {
  content: "\f27b";
  font-family: fontAwesome;
  font-weight: normal;
  font-size: 16px;
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--color);
  padding: 9px 14px;
  color: #fff;
}

.contact2-page .contact-2 .content ul li .title h6 {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 0;
  color: #000;
}

.contact2-page .contact-2 .content ul li .accordion-info {
  display: none;
  padding: 20px;
  margin-top: 0px;
  margin-left: 0px;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.contact2-page .contact-2 .content ul li.active .title {
  color: #fff;
  background: var(--color);
  border: 1px solid var(--color);
  -webkit-box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}

.contact2-page .contact-2 .content ul li.active .title h6 {
  color: #fff;
}

.contact2-page .contact-2 .content ul li.active .title::after {
  background: #fff;
  color: var(--color);
}

@media screen and (max-width: 1366px) {
  .contact2-page .contact-1 .right {
    padding-left: 10%;
  }
}

@media screen and (max-width: 1200px) {
  .contact2-page .contact-1 .right {
    padding-left: 4%;
  }

  .contact2-page .contact-2 .content ul li {
    width: 50%;
  }
}

@media screen and (max-width: 1000px) {
  .contact2-page .contact-1 .left {
    width: 100%;
    padding-right: 0;
  }

  .contact2-page .contact-1 .right {
    width: 100%;
    padding: 2rem 0 0 0;
  }
}

@media screen and (max-width: 700px) {
  .contact2-page .contact-2 .content ul li {
    width: 100%;
  }
}
@media screen and (max-width: 500px){
    .contact2-page .contact-1 .right .form-wrap .form-box{
        margin-right:0;padding: 0;
    }
    .contact2-page .contact-1 .right .form-wrap .form-box::before,
    .contact2-page .contact-1 .right .form-wrap .form-box::after{
        display: none;
    }
}



.about-page2 .init-3 {
  padding: 90px 0 185px;
  background: url('/en/2025/09/26/honor-bg.png') no-repeat;
  background-position: center bottom;
}
.about-page2 .init-3 .h-title p {
  margin: 0 auto 10px;
}
.about-page2 .init-3 .h-title p::before {
  display: none;
}
.about-page2 .init-3 .h-title h3 em {
  display: inline-block;
}
.about-page2 .init-3 .honor-slide-ul {
  margin-top: 4vw;
  position: relative;
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow{
  border-radius: 100%;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  background-color: #cbcbcb;
  color: transparent;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 50;
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow:hover{
  background-color: var(--color);
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow.slick-prev{
  left: 30px;
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow.slick-next{
  right: 30px;
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow::before{
  content:"\f104";
  font-family: "FontAwesome";
  font-size: 16px;
  color: white;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
.about-page2 .init-3 .honor-slide-ul .slick-arrow.slick-next::before{
  content:"\f105";
}
.about-page2 .init-3 .honor-slide-ul .slick-list {
  padding-right: 40px;
}
.about-page2 .init-3 .honor-slide-ul .slide-box {
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  margin-top: 105px;
  position: relative;
  margin-right: -40px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -moz-transition: transform 0.3s, -moz-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s;
  display: block;
}
.about-page2 .init-3 .honor-slide-ul .slick-active .slide-box {
  z-index: 2;
}
.about-page2 .init-3 .honor-slide-ul .slick-current + div + div  .slide-box {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  z-index: 5;
}
.about-page2 .init-3 .honor-slide-ul .slick-current + div  .slide-box {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  z-index: 4;
}
.about-page2 .init-3 .honor-slide-ul .slick-current + div + div + div  .slide-box {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  z-index: 4;
}
.about-page2 .init-3 .honor-slide-ul .slick-current + div + div + div + div  .slide-box {
  z-index: 3;
}
@media (max-width: 1450px) {
  .about-page2 .init-3 .honor-slide-ul .slick-current + div + div  .slide-box {
    transform: unset !important;
  }
  .about-page2 .init-3 .honor-slide-ul .slick-current + div  .slide-box {
    transform: unset !important;
  }
  .about-page2 .init-3 .honor-slide-ul .slick-current + div + div + div .slide-box {
    transform: unset !important;
  }
  .about-page2 .init-3 .honor-slide-ul li {
    padding: 0 15px;
  }
  .about-page2 .init-3 .honor-slide-ul .slide-box {
    margin-top: 0;
    margin-right: 0;
  }
  .about-page2 .init-3 .honor-slide-ul .slick-list {
    padding-right: 0;
  }
  .about-page2 .init-3 .honor-slide-ul .slide-box {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  .about-page2 .init-3 {
    padding: 90px 0 50px;
  }
}
@media (max-width: 500px) {
        .about-page2 .init-3 {
        padding: 60px 0 0;
    }
  .about-page2 .init-3 {
    background: none;
  }
}


.all-qhbtn {
    width: 51px;
    height: 51px;
    border: solid 1px #666666;
    border-radius: 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff;
    z-index: 3;
    opacity: 1;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-qhbtn.all-prev {
    left: auto;
    right: 101%;
}

.all-qhbtn.all-next {
    right: auto;left: 101%;
}

.all-qhbtn::after {
    font-size: 0;
}

.all-qhbtn i {
    font-size: 20px;
    color: #666666;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.all-qhbtn:hover {
    background-color: var(--color);
    border-color: transparent;
}

.all-qhbtn:hover i {
    color: #fff;
}
@media (max-width: 700px) {
    .all-qhbtn {
        display: none!important;
    }
}

.langs{
    display: none;
}