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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.right_nav_list {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 10;
}

.right_nav_list ul li {
    margin-top: 2px;
    width: 56px;
    height: 56px;
    cursor: pointer;
    padding: 0;
    position: relative;
    color: #fff;
    background: var(--color);
    border: 1px solid #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
    font-weight: bold;
}

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

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

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

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

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

table tbody td,
table tbody th {
    padding: 5px 10px;
    border: 1px solid #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;
}

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

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

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

    body .zdy-tt.font-20,
    body .zdy-tt.font-21 {
        font-size: 19px !important;
    }
}

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

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

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

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

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

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

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

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

    body .zdy-tt.font-44,
    body .zdy-tt.font-45,
    body .zdy-tt.font-46,
    body .zdy-tt.font-47 {
        font-size: 36px !important;
    }

    body .zdy-tt.font-48,
    body .zdy-tt.font-49,
    body .zdy-tt.font-50,
    body .zdy-tt.font-51,
    body .zdy-tt.font-52,
    body .zdy-tt.font-53,
    body .zdy-tt.font-54 {
        font-size: 38px !important;
    }

    body .zdy-tt.font-55,
    body .zdy-tt.font-56,
    body .zdy-tt.font-57,
    body .zdy-tt.font-58,
    body .zdy-tt.font-59 {
        font-size: 42px !important;
    }
}

@media (max-width: 1250px) {

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

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

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

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

    body .zdy-tt.font-44,
    body .zdy-tt.font-45,
    body .zdy-tt.font-46,
    body .zdy-tt.font-47 {
        font-size: 30px !important;
    }

    body .zdy-tt.font-48,
    body .zdy-tt.font-49,
    body .zdy-tt.font-50,
    body .zdy-tt.font-51,
    body .zdy-tt.font-52,
    body .zdy-tt.font-53,
    body .zdy-tt.font-54 {
        font-size: 34px !important;
    }

    body .zdy-tt.font-55,
    body .zdy-tt.font-56,
    body .zdy-tt.font-57,
    body .zdy-tt.font-58,
    body .zdy-tt.font-59 {
        font-size: 36px !important;
    }
}

@media (max-width: 1000px) {

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

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

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

    body .zdy-tt.font-40,
    body .zdy-tt.font-41,
    body .zdy-tt.font-42,
    body .zdy-tt.font-43,
    body .zdy-tt.font-44,
    body .zdy-tt.font-45,
    body .zdy-tt.font-46,
    body .zdy-tt.font-47 {
        font-size: 26px !important;
    }

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

@media (max-width: 700px) {

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

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

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

    body .zdy-tt.font-40,
    body .zdy-tt.font-41,
    body .zdy-tt.font-42,
    body .zdy-tt.font-43,
    body .zdy-tt.font-44,
    body .zdy-tt.font-45,
    body .zdy-tt.font-46,
    body .zdy-tt.font-47 {
        font-size: 22px !important;
    }

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

@media (max-width: 500px) {

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

    body .zdy-tt.font-40,
    body .zdy-tt.font-41,
    body .zdy-tt.font-42,
    body .zdy-tt.font-43,
    body .zdy-tt.font-44,
    body .zdy-tt.font-45,
    body .zdy-tt.font-46,
    body .zdy-tt.font-47 {
        font-size: 21px !important;
    }

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

/*----- genneral end-----*/
@font-face {
    font-family: "KronaOne";
    src: url(../fonts/KronaOne-Regular.ttf) format("truetype"), url(../fonts/KronaOne-Regular.eot) format("eot"), url(../fonts/KronaOne-Regular.woff) format("woff"), url(../fonts/KronaOne-Regular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "rany";
    src: url(../fonts/RanyBold.ttf) format("truetype"), url(../fonts/RanyBold.eot) format("eot"), url(../fonts/RanyBold.woff) format("woff"), url(../fonts/RanyBold.woff2) format("woff2");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "rany";
    src: url(../fonts/RanyLight.ttf) format("truetype"), url(../fonts/RanyLight.eot) format("eot"), url(../fonts/RanyLight.woff) format("woff"), url(../fonts/RanyLight.woff2) format("woff2");
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "rany";
    src: url(../fonts/RanyMedium.ttf) format("truetype"), url(../fonts/RanyMedium.eot) format("eot"), url(../fonts/RanyMedium.woff) format("woff"), url(../fonts/RanyMedium.woff2) format("woff2");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "rany";
    src: url(../fonts/RanyRegular.ttf) format("truetype"), url(../fonts/RanyRegular.eot) format("eot"), url(../fonts/RanyRegular.woff) format("woff"), url(../fonts/RanyRegular.woff2) format("woff2");
    font-weight: 400;
    font-display: swap;
}

:root {
    --base-color: #009544;
    --color: #009544;
    --primary: #009544;
    --white: #fff;
    --black: #000;
}

body {
    font-family: "rany";
    font-weight: 400;
    font-size: 18px;
    margin: 0 auto;
}

.container {
    width: 1490px;
}

.fa-KronaOne-Regular {
    font-family: "KronaOne";
    font-weight: 400;
}

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

.color-ff {
    color: #fff;
}

.color-23 {
    color: #232323;
}

.color-11 {
    color: #111111;
}

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

.t_l {
    transition: all 0.5s;
}

.lh-1 {
    line-height: 1;
}

.lh-11 {
    line-height: 1.1;
}

.lh-12 {
    line-height: 1.2;
}

.lh-13 {
    line-height: 1.3;
}

.lh-14 {
    line-height: 1.4;
}

.lh-16 {
    line-height: 1.6;
}

.lh-17 {
    line-height: 1.7;
}

.lh-18 {
    line-height: 1.8;
}

.lh-19 {
    line-height: 1.9;
}

.lh-2 {
    line-height: 2;
}

#header {
    z-index: 200;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s;
}

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

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

#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 40px;
    font-size: 16px;
    font-family: "KronaOne";
    text-transform: uppercase;
    height: 100%;
    color: #fff;
    -webkit-perspective: 500px;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: center;
}

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

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

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

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

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

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

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

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu>li ul.sub-menu {
    top: 0;
    left: 100%;
    transform: rotate3d(1, 0, 0, -90deg);
    opacity: 0;
    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: flex;
    align-items: center;
}

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

#header .nav .ui.menu .right .h-language span img {
    filter: brightness(0) invert(1);
    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;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #60b242;
    display: none \9;
}

#header .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: flex;
    justify-content: space-between;
    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 {
    filter: none;
}

#header .nav .ui.menu .right .h-search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px 0 54px;
    cursor: pointer;
}

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

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

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

#header.active .nav,
#header.inner_active .nav {
    height: 90px;
}


#banner {
    padding-bottom: 70px;
    overflow: hidden;
}

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

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

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

#banner .banner-content .swiper-slide .txt-content h3 {
    max-width: 894px;
    line-height: 1.2;
}

#banner .banner-content .swiper-slide .txt-content .text2 {
    max-width: 875px;
}

#banner .banner-content .swiper-slide .imgbox {
    position: absolute;
    bottom: 0;
    right: 20%;
    transform: translateY(30%);
}

.btn-go {
    color: #fff;
    background-color: var(--color);
    height: 58px;
    width: auto;
    min-width: 215px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: all 0.5s;
    font-size: 18px;
}

.btn-go.auto {
    min-width: unset;
    height: auto;
    padding: 10px 24px;
}

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

.btn-more {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color);
    font-size: 34px;
    transition: all 0.5s;
}

.btn-more i {
    transition: all 0.5s;
}

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

.btn-more:hover i {
    transform: rotate(45deg);
}

#index-body .init-1 .mk-desc {
    max-width: 505px;
}

#index-body .init-1 .bottom ul li {
    width: 13.3%;
    height: 582px;
    transition: all 0.5s;
}

#index-body .init-1 .bottom ul li .box {
    height: 100%;
}

#index-body .init-1 .bottom ul li .box .imgbox {
    height: 100%;
    position: relative;
}

#index-body .init-1 .bottom ul li .box .imgbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(220, 220, 220, 0) 50%, rgba(0, 149, 68, 0.8) 100%);
    opacity: 0;
    border-radius: 18px;
}

#index-body .init-1 .bottom ul li .box .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

#index-body .init-1 .bottom ul li .box .txtbox1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    z-index: 0;
}

#index-body .init-1 .bottom ul li .box .txtbox1:after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
    border-radius: 18px;
}

#index-body .init-1 .bottom ul li .box .txtbox1 .tt {
    white-space: nowrap;
    transform: rotate(90deg);
}

#index-body .init-1 .bottom ul li .box .txtbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    opacity: 0;
    transition: all 0.5s;
}

#index-body .init-1 .bottom ul li .box .txtbox .ttbox {
    padding: 30px;
}

#index-body .init-1 .bottom ul li.active {
    width: 54%;
}

#index-body .init-1 .bottom ul li.active .box .imgbox::after {
    opacity: 1;
}

#index-body .init-1 .bottom ul li.active .box .txtbox1 {
    opacity: 0;
}

#index-body .init-1 .bottom ul li.active .box .txtbox {
    opacity: 1;
}

#index-body .gxs-2 .main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#index-body .gxs-2 .main .left {
    width: 50%;
    position: relative;
}

#index-body .gxs-2 .main .left .play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}


#index-body .gxs-2 .main .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: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  z-index: -1;
}

#index-body .gxs-2 .main .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: transparent;
  border: 1px solid rgba(255, 255, 255, 0.658);
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  z-index: -1;
}


#index-body .gxs-2 .main .right {
    width: 46%;
}

#index-body .gxs-2 .main .right .h3 {
    line-height: 1;
}

#index-body .gxs-2 .main .right .h3 em {
    color: var(--base-color);
}

#index-body .gxs-2 .main .right .text {
    line-height: 1.7;
    max-height: 264px;
    overflow-y: auto;
}

#index-body .gxs-2 .main .right .data li p {
    color: #777777;
}

#index-body .gxs-3 {
    position: relative;
}

#index-body .gxs-3:before {
    content: "";
    position: absolute;
    left: 0;
    width: 780px;
    height: 780px;
    background: url(../images/yepian-zuo.png) left top no-repeat;
    top: 36%;
}

#index-body .gxs-3 .mk-desc {
    max-width: 672px;
}

#index-body .gxs-3 .top {
    margin-bottom: 110px;
}

#index-body .gxs-3 .main {
    position: relative;
    z-index: 3;
}

#index-body .gxs-3 .main:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 182px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    display: block;
}

#index-body .gxs-3 .main ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

#index-body .gxs-3 .main ul li {
    border-right: 1px solid #05582c;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    z-index: 0;
    height: 362px;
}

#index-body .gxs-3 .main ul li .item {
    height: 100%;
}

#index-body .gxs-3 .main ul li .textbox {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 40px 20px;
    padding-top: 70px;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #000;
    z-index: 22;
    overflow: hidden;
}

#index-body .gxs-3 .main ul li .textbox .h4 {
    position: relative;
    max-width: 100%;
    text-align: center;
    z-index: 0;
}

#index-body .gxs-3 .main ul li .textbox .h4 span.num {
    position: absolute;
    top: 0;
    left: 60%;
    transform: translateY(-70%);
    color: #f2f2f2;
    font-size: 120px;
    line-height: 0.9;
    transition: all 0.5s;
    z-index: -1;
}

#index-body .gxs-3 .main ul li .textbox p {
    color: #717171;
    transition: all 0.5s;
    line-height: 1.3;
    margin-top: 25px;
    margin-bottom: 40px;
    height: 94px;
    overflow-y: auto;
}

#index-body .gxs-3 .main ul li .textbox a.more3 {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: block;
    transition: all 0.5s;
    border-radius: 100%;
    overflow: hidden;
    background: #000;
    margin: 0 auto;
    flex-shrink: 0;
}

#index-body .gxs-3 .main ul li .textbox a.more3 span.move {
    position: absolute;
    left: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.5s;
    width: 200%;
    height: 100%;
    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;
}

#index-body .gxs-3 .main ul li .textbox a.more3 span.move em {
    width: 50%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#index-body .gxs-3 .main ul li .textbox a.more3 span.move em i {
    font-size: 36px;
    color: #fff;
}

#index-body .gxs-3 .main ul li .textbox a.more3:hover span.move {
    transition: all 0.5s;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

#index-body .gxs-3 .main ul li .textbox:before {
    content: "";
    width: 224px;
    height: 224px;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(70%);
    -moz-transform: translateX(-50%) translateY(70%);
    -ms-transform: translateX(-50%) translateY(70%);
    transform: translateX(-50%) translateY(70%);
    background-color: #05582c;
    opacity: 0.1;
}

#index-body .gxs-3 .main ul li:nth-child(1) {
    border-radius: 185px 0 0 185px;
}

#index-body .gxs-3 .main ul li:nth-child(1) .textbox {
    padding-left: 50px;
}

#index-body .gxs-3 .main ul li:nth-child(4) {
    border-radius: 0 185px 185px 0;
    border-right: none;
}

#index-body .gxs-3 .main ul li:nth-child(4) .textbox {
    padding-right: 50px;
}

#index-body .gxs-3 .main ul li>img {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s;
    transform: scale(1) translateY(5%);
    width: 100%;
    height: 132%;
    object-fit: cover;
    z-index: -1;
    border-radius: 185px 185px 0 0;
}

#index-body .gxs-3 .main ul li:hover {
    border-radius: 0 !important;
    overflow: visible;
}

#index-body .gxs-3 .main ul li:hover>img {
    opacity: 1;
}

#index-body .gxs-3 .main ul li:hover .textbox {
    border-radius: 185px 185px 0 0;
    width: 94%;
    height: 125%;
    background: var(--base-color);
    color: #fff;
    padding: 30px !important;
    padding-top: 150px !important;
}

#index-body .gxs-3 .main ul li:hover .textbox .h4 span.num {
    left: 50%;
    top: 0;
    font-size: 90px;
    line-height: 0.9;
    transform: translate(-50%, -120%);
    color: #fff;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

#index-body .gxs-3 .main ul li:hover .textbox p {
    color: #fff;
    line-height: 1.3;
}

#index-body .gxs-3 .main ul li:hover .textbox a .more3 {
    background: #fff;
}

#index-body .gxs-3 .main ul li:hover .textbox a .more3 em i {
    color: #000 !important;
}

#index-body .gxs-4 .main .slick-slider:not(.slick-vertical) .slick-track .slick-slide>div {
    height: auto;
}

#index-body .gxs-4 .main ul {
    margin: 0 -13px;
}

#index-body .gxs-4 .main ul li {
    padding: 25px 13px;
}

#index-body .gxs-4 .main ul li .item .img-box {
    /*background-color: #f5f5f5;*/
    border-radius: 10px;
    border:2px solid transparent;
    transition: all 0.5s;
}
#index-body .gxs-4 .main ul li .item .img-box:hover{
    border-color:var(--color);
}
#index-body .gxs-4 .main ul li .item .h5{
    margin-top: 5px;
    text-align: center;
    min-height: 48px;
}

#index-body .gxs-5 .content .main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#index-body .gxs-5 .content .main .left {
    width: 49%;
    max-width: 700px;
}

#index-body .gxs-5 .content .main .left .h3 {
    line-height: 1.2;
}

#index-body .gxs-5 .content .main .left .text {
    line-height: 1.3;
    color: #000011;
}

#index-body .gxs-5 .content .main .left .iso-img ul {
    margin: 0 -16px;
}

#index-body .gxs-5 .content .main .left .iso-img li {
    padding: 0 16px;
}

#index-body .gxs-5 .content .main .right {
    width: 50%;
    padding-left: 5%;
    overflow: hidden;
}

#index-body .gxs-5 .content .main .right ul li .imgbox {
    border: 2px solid transparent;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

#index-body .gxs-5 .content .main .right ul li .imgbox img {
    width: 100%;
    object-fit: cover;
}

#index-body .gxs-5 .content .main .right ul li:hover .imgbox {
    border-color: var(--base-color);
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

#index-body .gxs-6 .main ul {
    margin: 0 -25px;
}

#index-body .gxs-6 .main ul li {
    padding: 0 25px;
}

#index-body .gxs-6 .main ul li .item .h4 {
    color: #000;
    margin: 15px 0;
}

#index-body .gxs-6 .main ul li .item .h4 a {
    transition: all 0.5s;
}

#index-body .gxs-6 .main ul li .item .h4 a:hover {
    transition: all 0.5s;
    color: var(--base-color);
}

#index-body .gxs-6 .main ul li .item .text p {
    color: #777;
    line-height: 1.8;
}

#index-body .gxs-6 .main ul li .item a.more2 {
    opacity: 0;
    transition: all 0.5s;
}

#index-body .gxs-6 .main ul li:hover .item a.more2 {
    opacity: 1;
}

.more2 {
    color: var(--base-color);
    border-bottom: 1px solid var(--base-color);
    display: inline-flex;
    align-items: center;
    padding-bottom: 3px;
    transition: all 0.5s;
}

.more2 img {
    padding-left: 15px;
    transition: all 0.5s;
}

.more2:hover img {
    transform: translateX(-5px);
}

#footer {
    background-color: var(--color);
}

#footer .footer-main {
    padding-bottom: 20px;
}

#footer .footer-main .ui.container {
    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: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .footer-main .ui.container>div {
    display: inline-block;
}

#footer .footer-main .ui.container>div.links {
    position: relative;
    z-index: 4;
}

#footer .footer-main .ui.container>div .h4 {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #ffffff;
    font-family: "KronaOne";
}

#footer .footer-main .ui.container .logobox #ewm {
    width: 116px;
    height: 116px;
    padding: 3px;
    background: #fff;
    margin-top: 25px;
}

#footer .footer-main .ui.container .links ul li {
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

#footer .footer-main .ui.container .links ul li a {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

#footer .footer-main .ui.container .links ul li a:hover {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    color: var(--base-color);
}

#footer .footer-main .ui.container .info {
    width: 490px;
}

#footer .footer-main .ui.container .info .box {
    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;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .footer-main .ui.container .info .box p {
    width: 50%;
    margin-bottom: 15px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

#footer .footer-main .ui.container .info .box p.wid100 {
    width: 100%;
}

#footer .footer-main .ui.container .formbox {
    width: 400px;
}

#footer .footer-main .ui.container .formbox form {
    width: 100%;
    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;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
}

#footer .footer-main .ui.container .formbox form input[type="text"] {
    width: 49%;
    height: 30px;
    line-height: 30px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
    background: transparent;
}

#footer .footer-main .ui.container .formbox form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

#footer .footer-main .ui.container .formbox form input[name="content"] {
    width: 100%;
}

#footer .footer-main .ui.container .formbox form a.more2 {
    position: relative;
    border-bottom: 1px solid #fff;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    color: #fff;
    font-family: "KronaOne";
}

#footer .footer-main .ui.container .formbox form a.more2 em {
    border: none;
}

#footer .footer-main .ui.container .formbox form a.more2 img {
    filter: brightness(0) invert(1);
    transition: 0.3s all;
}

#footer .footer-main .ui.container .formbox form a.more2 input[type="submit"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
}

#footer .footer-main .ui.container .formbox form a.more2:hover {
    border-color: #000;
    color: #000;
    transition: 0.3s all;
}

#footer .footer-main .ui.container .formbox form a.more2:hover img {
    filter: brightness(0);
}

#footer .footer-main .ui.container ul.share {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-top: 20px;
}

#footer .footer-main .ui.container ul.share li {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    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;
    background: #fff;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    margin-left: 10px;
}

#footer .footer-main .ui.container ul.share li:hover {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    background: #000;
}

#footer .footer-main .ui.container ul.share li i {
    font-size: 14px;
    color: var(--color);
}

#footer .footer-bottom {
    position: relative;
    background: transparent;
}

#footer .footer-bottom .ui.container {
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    max-width: 1460px;
    padding: 5px 0;
    width: 95%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#footer .footer-bottom .ui.container .center {
    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;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#footer .footer-bottom .ui.container .center .right {
    width: auto;
    position: relative;
    top: 5px;
}

#footer .footer-bottom .right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

#footer .footer-bottom p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

#footer .footer-bottom p img {
    height: 16px;
    margin: 8px 10px;
}

#footer .footer-bottom svg {
    max-height: 30px;
    width: auto;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    fill: #fff;
    position: relative;
    left: 10px;
    top: 0px;
}

@media (max-width: 1450px) {
    #header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
        margin: 0 28px;
    }

    #banner .banner-content .swiper-slide .imgbox {
        zoom: 0.8;
    }

    #footer .footer-main .ui.container .info .box p {
        width: 100%;
    }

    #footer .footer-main .ui.container .info {
        width: 340px;
    }

    #footer .footer-main .ui.container .formbox {
        width: 360px;
    }

    #index-body .gxs-3 .main ul li .textbox .h4 span.num {
        font-size: 100px;
    }

    #index-body .gxs-3 .top {
        margin-bottom: 80px;
    }
}

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

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

    .btn-go {
        zoom: 0.9;
    }

    #banner .banner-content .swiper-slide .imgbox {
        zoom: 0.55;
    }

    #footer .footer-main .ui.container .info {
        width: 300px;
    }

    #footer .footer-main .ui.container .formbox {
        width: 296px;
    }

    #footer .footer-main .ui.container .formbox form input[type="text"] {
        font-size: 14px;
    }

    #index-body .init-1 .bottom ul li .box .txtbox .ttbox {
        padding: 15px;
    }

    .btn-more {
        zoom: 0.8;
    }

    #index-body .gxs-2 .main .right .data li {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #index-body .gxs-3 {
        background-size: auto 78% !important;
    }

    #index-body .gxs-3 .mk-desc {
        margin-top: 10px;
    }

    #index-body .gxs-3 .main ul li .textbox {
        padding: 40px 10px;
    }

    #index-body .gxs-3 .main ul li .textbox .h4 span.num {
        font-size: 80px;
    }

    #index-body .gxs-3 .top {
        margin-bottom: 60px;
    }
}

@media (max-width: 1000px) {
    #banner {
        padding-bottom: 40px;
    }

    #banner .banner-content {
        height: 440px;
    }

    #footer .footer-main .ui.container>div.links {
        display: none;
    }

    #footer .f-content .f-about.inner-about {
        display: none;
    }

    #footer .footer-bottom .ui.container {
        justify-content: center;
    }

    #footer .footer-main .ui.container .formbox {
        width: 259px;
    }

    #footer .footer-main .ui.container .logobox #ewm {
        width: 90px;
        height: 90px;
    }

    #footer .footer-main .ui.container .info {
        width: 240px;
    }

    #index-body .init-1 .bottom ul li {
        height: 400px;
    }

    #index-body .init-1 .bottom ul li .box .txtbox1 {
        opacity: 0;
    }

    #index-body .init-1 .bottom ul li .box .txtbox {
        opacity: 1;
    }

    #index-body .init-1 .bottom ul li .box .imgbox::after {
        opacity: 1;
    }

    #index-body .gxs-2 .main .left {
        width: 100%;
    }

    #index-body .gxs-2 .main .right {
        width: 100%;
        margin-top: 5%;
    }

    #index-body .gxs-3 {
        background-size: cover !important;
        padding-bottom: 5%;
    }

    #index-body .gxs-3 .top {
        margin-bottom: 40px;
    }

    #index-body .gxs-3 .main:before {
        display: none;
    }

    #index-body .gxs-3 .main ul {
        margin: 0 -10px;
    }

    #index-body .gxs-3 .main ul li {
        width: 50%;
        border-radius: 10px !important;
        border-right: 0;
        padding: 10px;
    }

    #index-body .gxs-3 .main ul li .item {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
        position: relative;
        overflow: hidden;
    }

    #index-body .gxs-3 .main ul li .textbox {
        position: static;
        padding: 20px !important;
    }

    #index-body .gxs-3 .main ul li .textbox .h4 span.num {
        position: static;
        font-size: 50px;
        color: #121212;
    }

    #index-body .gxs-3 .main ul li:hover .textbox {
        border-radius: 0;
        width: 100%;
        height: 100%;
        padding: 20px !important;
        padding-top: 20px !important;
    }

    #index-body .gxs-3 .main ul li:hover>img {
        opacity: 0;
    }

    #index-body .gxs-3 .main ul li:hover .textbox .h4 span.num {
        font-size: 50px;
    }

    #index-body .gxs-3 .main ul li .textbox a.more3 {
        zoom: 0.8;
    }

    #index-body .gxs-5 {
        background: #232323 !important;
    }

    #index-body .gxs-5 .content,
    #index-body .gxs-5 .content .main .left .text {
        color: #fff;
    }

    #index-body .gxs-5 .content .main .left {
        width: 100%;
    }

    #index-body .gxs-5 .content .main .left .iso-img li {
        zoom: 0.8;
    }

    #index-body .gxs-5 .content .main .right {
        margin-top: 40px;
        width: 100%;
        padding-left: 0;
    }
}

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

    #footer .footer-bottom p {
        font-size: 14px;
    }

    #footer .footer-bottom svg {
        max-height: 22px;
    }

    #footer .footer-bottom .ui.container {
        -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;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    #footer .footer-bottom .ui.container p {
        text-align: center;
    }

    #footer .footer-main .ui.container ul.share {
        margin-top: 0;
    }

    .btn-go {
        zoom: 0.8;
    }

    #footer .footer-main .ui.container .info {
        width: 100%;
        margin-top: 5%;
    }

    #footer .footer-main .ui.container .formbox {
        width: 100%;
        margin-top: 3%;
    }

    .btn-more {
        zoom: 0.7;
    }

    #index-body .init-1 .bottom ul li {
        height: 320px;
    }

    #index-body .init-1 .bottom ul li .box .txtbox .ttbox {
        padding: 5px;
    }

    #index-body .gxs-3 .main ul li .textbox .h4 span.num {
        font-size: 30px;
    }

    #index-body .gxs-3 .main ul li:hover .textbox .h4 span.num {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    #footer .footer-main .ui.container .info .box p {
        width: 100%;
    }

    #footer .footer-main .ui.container .formbox form input[type="text"] {
        width: 100%;
    }

    #index-body .gxs-2 .main .right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #index-body .gxs-2 .main .right ul.data li {
        width: 100%;
        padding: 10px;
    }

    #index-body .gxs-3 .main ul li {
        width: 100%;
    }

    #index-body .gxs-5 .content .main .left .iso-img ul {
        justify-content: space-between;
        margin: 0;
    }

    #index-body .gxs-5 .content .main .left .iso-img li {
        padding: 10px;
    }
}

/*----- inner page -----*/
.m-page {
    text-align: center;
}

.m-page a,
.m-page span.current {
    border-radius: 50%;
    margin: 5px;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.m-page a {
    background: #e2ecd1;
    transition: all 0.5s;
}

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

.m-page span.current {
    background: var(--color);
    color: #fff;
}

.inner-banner {
    padding-top: 0;
    margin-top: 90px;
}

.inner-banner .mbx {
    border-top: 1px solid #e2e2e2;
    padding: 20px 0;
    font-size: 18px;
    color: #151515;
    line-height: 32px;
    font-weight: 500;
}

.inner-banner .mbx i {
    display: inline-block;
    height: 26px;
    padding-right: 24px;
    border-right: 1px solid rgba(119, 119, 119, .4);
    line-height: 26px;
    margin-right: 24px;
}

.inner-banner .mbx i img {
    display: inline-block;
    vertical-align: middle;
}

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

/* ------------------ product-page ------------------ */
.product-page .pro-sidebar-left {
    width: 28%;
    padding-right: 45px;
}

.product-page .pro-sidebar-left .inner .inner-title {
    font-size: 22px;
    line-height: 2;
    color: #062b00;
    font-weight: 600;
    text-transform: capitalize;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e7e7e7;
}

.product-page .pro-sidebar-left .inner .inner-search form {
    width: 100%;
    position: relative;
}

.product-page .pro-sidebar-left .inner .inner-search form input[type="text"] {
    width: 100%;
    height: 55px;
    border: 1px solid #eee;
    padding: 10px 20px;
    padding-right: 5rem;
    font-size: 14px;
    color: #555;
}

.product-page .pro-sidebar-left .inner .inner-search form input[type="submit"] {
    position: absolute;
    width: 43px;
    height: 43px;
    margin-right: 10px;
    border: none;
    background: url(/template/en/images/search.png) no-repeat center center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li.diyi {
    margin-bottom: 10px;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li ol {
    padding: 3px 0;
    display: none;
}

.product-page .pro-sidebar-left .inner .inner-cat ul li.active>ol {
    display: block;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li ol li {
    list-style-type: disc;
    margin-left: 20px;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li.diyi>.benji a {
    font-size: 18px;
    line-height: 32px;
    padding: 8px 0;
    font-weight: 600;
    transition: all 0.5s;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li ol li a {
    padding: 8px 0;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.5s;
    color: #555555;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li.diyi ol.third>li a {
    color: #8f8f8f;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li a:hover {
    color: var(--color) !important;
}

.product-page .pro-sidebar-left .inner .inner-cat ul li.active>.benji a {
    color: var(--color) !important;
}

.product-page .pro-sidebar-left .inner .inner-cat ul li.active>a {
    color: var(--color) !important;
}

.product-page .pro-sidebar-left .inner .inner-cat ul>li .benji i {
    transition: all 0.5s;
    margin-top: 10px;
    transform: rotate(0);
}

.product-page .pro-sidebar-left .inner .inner-cat ul li>.benji i.rotate {
    transform: rotate(90deg);
}

.product-page .pro-sidebar-left .inner .inner-recent ul li {
    padding: 1.5rem 0;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li:first-child {
    padding-top: 0;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li a {
    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;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li a .r-img {
    margin-right: 2rem;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li a .r-img img {
    height: 80px;
    max-width: 100px;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li a .r-text p {
    line-height: 26px;
    font-weight: 600;
    display: -webkit-box;
    margin-bottom: 0.8rem;
}

.product-page .pro-sidebar-left .inner .inner-recent ul li a .r-text span {
    color: #aaa;
    display: block;
    font-size: 14px;
    line-height: 1;
}

.product-page .pro-sidebar-left .inner .inner-contact {
    position: relative;
}

.product-page .pro-sidebar-left .inner .inner-contact>img {
    width: 100%;
}

.product-page .pro-sidebar-left .inner .inner-contact .c-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.product-page .pro-sidebar-left .inner .inner-contact .c-box .btn-go {
    min-width: unset;
}

.product-page .pro-sidebar-left .inner .inner-contact h5 {
    color: #fff;
    text-transform: uppercase;
    line-height: 2;
}

.product-page .pro-sidebar-left .inner .inner-contact h6 {
    line-height: 1.4;
    color: #fff;
}

.product-page .pro-sidebar-right {
    width: 72%;
}

.product-page .pro-sidebar-right h1 {
    color: var(--color);
}

.product-page .pro-sidebar-right .Auxil-catdes {
    margin-bottom: 20px;
    color: #7f7f7f;
}

.product-page .pro-sidebar-right .product-list ul {
    margin: 0 -16px;
}

.product-page .pro-sidebar-right .product-list ul li {
    width: 33.3%;
    padding: 0 16px;
    margin-bottom: 50px;
}

.product-page .pro-sidebar-right .product-list ul li .box {
    background: #f7f7f7;
    padding: 10px;
}

.product-page .pro-sidebar-right .product-list ul li .box .text {
    margin-top: 20px;
}

.product-page .pro-sidebar-right .product-list ul li .box .text a:hover {
    color: var(--color);
}

@media screen and (max-width: 1450px) {
    .product-page .pro-sidebar-right .product-list ul li {
        margin-bottom: 30px;
    }

    .product-page .pro-sidebar-left .inner .inner-recent ul li a .r-img {
        margin-right: 1rem;
    }
}

@media screen and (max-width: 1250px) {
    .product-page .pro-sidebar-left .inner .inner-recent ul li {
        padding: 1rem 0;
    }

    .product-page .pro-sidebar-right .product-list ul {
        margin: 0 -8px;
    }

    .product-page .pro-sidebar-right .product-list ul li {
        padding: 0 8px;
    }

    .product-page .pro-sidebar-left .inner .inner-contact .c-box {
        padding: 20px;
    }
}


@media screen and (max-width: 1000px) {
    .product-page .pro-sidebar-left {
        display: none;
    }

    .product-page .pro-sidebar-right {
        width: 100% !important;
        padding: 0 !important;
    }
}

@media screen and (max-width: 700px) {
    .product-page .pro-sidebar-right .product-list ul li {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .product-page .pro-sidebar-right .product-list ul li {
        width: 100%;
    }
}

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

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

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

/* ------------------ prodet-page ------------------ */
.prodet-page .prodet-1 .big_img {
    width: 50%;
}

.prodet-page .prodet-1 .big_img ul .slick-track {
    margin-left: 0;
}

.prodet-page .prodet-1 .big_img ul li {
    padding: 3px;
}

.prodet-page .prodet-1 .big_img ul li img {
    margin: auto;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.prodet-page .prodet-1 .content {
    padding-left: 30px;
    color: #e2ecd1;
    line-height: 1.8;
    width: 50%;
}

.prodet-page .prodet-1 .content .cat_name {
    color: #0c5b00;
}

.prodet-page .prodet-1 .content h1 {
    line-height: 1.2;
    color: black;
}

.prodet-page .prodet-1 .content .des {
    font-size: 18px;
    margin: 20px 0;
    max-height: 390px;
    overflow-y: auto;
    color: #7f7f7f;
}

.prodet-page .prodet-1 .content .m-link {
    margin-top: 20px;
    font-size: 16px;
    color: black;
}


.prodet-page .prodet-2 ul.tab li {
    display: inline-block;
    background: var(--color);
    font-size: 18px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    border-radius: 0 40px 0 0;
    padding: 0px 50px;
    height: 50px;
    line-height: 52px;
}

.prodet-page .prodet-2 ul.tab li a {
    display: block;
    color: #fff;
}

.prodet-page .prodet-2 ul.tab li.active {
    background: #e2ecd1;
}

.prodet-page .prodet-2 ul.tab li.active a {
    color: #000;
}

.prodet-page .prodet-2 .content {
    background: #e2ecd1;
    padding: 40px 30px;
    font-size: 16px;
    color: #7f7f7f;
    line-height: 1.8;
}

@media screen and (max-width:1000px) {
    .prodet-page .prodet-1 .big_img {
        width: 100%;
    }

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

    .prodet-page .prodet-2 .content {
        padding: 20px 15px;
    }

    .prodet-page .prodet-2 ul.tab li {
        padding: 0 30px;
    }
}

@media screen and (max-width:700px) {
    .prodet-page .prodet-1 .content h1 {
        font-size: 25px;
    }
}

@media screen and (max-width:500px) {
    .prodet-page .prodet-2 ul.tab li {
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid #5d5d5d;
    }

    .prodet-page .prodet-2 .content {
        margin-top: 10px;
    }
}

.pr {
    position: relative
}

.pa {
    position: absolute
}

/* ------------------ about-page ------------------ */
.about-page .init-1 {
    position: relative;
}

.about-page .init-1 .sub_img_1 {
    width: 345px;
    position: absolute;
    top: 160px;
    left: 0;
}

.about-page .init-1 .sub_img_2 {
    width: 365px;
    position: absolute;
    top: 150px;
    right: 0;
}

.about-page .init-1 .container {

    text-align: center;
}

.about-page .init-1 .container>img {
    display: block;
    width: 80px;
    margin: auto;
}

.about-page .init-1 .container .sub_text {

    position: absolute;
    top: 0;
    left: -80px;
}


.about-page .init-1 .container .des {
    margin: 0 auto 0;
    max-width: 1200px;
}

.about-page .init-1 .container .des_2 {
    margin: 35px auto 0;
    max-width: 1300px;
    font-size: 18px;
    color: #7f7f7f;
    line-height: 1.8;
}

.about-page .init-1 .container .img {
    margin-top: 70px;
    width: 100%;
    position: relative;
}


.about-page .init-1 .container .play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}


.about-page .init-1 .container .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: transparent;
  border: 1px solid rgba(255, 255, 255, 0.26);
  z-index: -1;
}

.about-page .init-1 .container .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: transparent;
  border: 1px solid rgba(255, 255, 255, 0.658);
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  z-index: -1;
}

.about-page .init-1 .container .sub_text_2 {

    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #a2af95;
}


.about-page .init-2 .container .list_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-page .init-2 .container .list_cont .list {
    width: 23%;
    text-align: center;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.about-page .init-2 .container .list_cont .list:hover {
    transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}

.about-page .init-2 .container .list_cont .list .img {
    margin: auto;
    width: 100px;
    height: 100px;
    background-color: #009544;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-page .init-2 .container .list_cont .list .img img {
    width: 60%;
}

.about-page .init-2 .container .list_cont .list .title {
    margin-top: 30px;
    font-weight: 600;
    color: #062b00;
}

.about-page .init-2 .container .list_cont .list .des {

    color: #7f7f7f;
    margin-top: 15px;
}

.about-page .init-3 .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-page .init-3 .container .left {
    width: 100%;
    text-align: center;
}

.about-page .init-3 .container .left .tip_title_cont {
    text-align: center;
}

.about-page .init-3 .container .left .tip_title_cont img {
    margin-left: 0;
}

.about-page .init-3 .container .left .tip_title_cont .tip_title_2 {
    text-transform: uppercase;
    margin-top: 20px;
}

.about-page .init-3 .container .left .tip_title_cont .tip_des {
    width: 100%;
    color: #7f7f7f;
}

.about-page .init-3 .container .right {
    width: 100%;
    margin-top: 50px;
}

.about-page .init-3 .container .right .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
}

.about-page .init-3 .container .right .swiper-pagination {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
    top: 0;
    margin-top: 40px;
}

.about-page .init-3 .container .right .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #d1d7ca;
    opacity: 1;
    margin: 0 8px;
}

.about-page .init-3 .container .right .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #b0bba5;
}

.about-page .init-4 .container .swiper-pagination {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
    top: 0;
    margin-top: 40px;
}

.about-page .init-4 .container .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #d1d7ca;
    opacity: 1;
    margin: 0 8px;
}

.about-page .init-4 .container .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #b0bba5;
}





.about-page .init-1 .container .sub_text_2 {
    display: none;
}

.about-page .init-1 .container .img {
    width: 100%;
    margin-top: 60px;
    margin-left: 0;
}


.about-page .init-1 .container .play_cont::before {
    transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
}

.about-page .init-3 .container .right .swiper-pagination {
    margin-top: 20px;
}

.about-page .init-3 .container .right .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.about-page .init-4 .container .swiper-pagination {
    margin-top: 20px;
}

.about-page .init-4 .container .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

@media (max-width: 1700px) {
    .about-page .init-1 .container .sub_text {
        left: -4vw;
    }

}

@media (max-width: 1450px) {

    .about-page .init-1 .container .sub_text {
        display: none;
    }

    .about-page .init-1 .sub_img_1 {
        width: 15vw;
    }

    .about-page .init-1 .sub_img_2 {
        width: 20vw;
    }
}

@media (max-width: 1000px) {

    .about-page .init-1 .container .play_cont {
        bottom: 20px;
    }

    .about-page .init-2 .container .list_cont .list {
        width: 48%;
        margin-top: 30px;
    }

    .about-page .init-3 .container .left {
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .about-page .init-3 .container .left .tip_title_cont {
        text-align: center;
    }

    .about-page .init-3 .container .left .tip_title_cont img {
        margin: auto;
    }

    .about-page .init-3 .container .right {
        width: 100%;
        margin-top: 30px;
    }

    .about-page .init-1 .container .des_2 {
        font-size: 16px;
    }

}

@media (max-width: 768px) {
    .about-page .init-1 .container .play_cont {
        width: 100px;
        height: 100px;
        left: 65px;
    }
}

/* ------------------ gallery-page ------------------ */

.gallery-page .container .gallery-list .grid-box {
    margin: -15px;
}

.gallery-page .container .gallery-list .grid-box li {
    padding: 15px;
}

.gallery-page .container .gallery-list .grid-box li .box {
    -webkit-box-shadow: 0 0 10px rgb(116 116 116 / 20%);
    box-shadow: 0 0 10px rgb(116 116 116 / 20%);
    padding: 10px;
    border-radius: 5px;
}

.gallery-page .container .gallery-list .grid-box li .box .img-box {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-page .container .gallery-list .grid-box li .box h5 {
    display: block;
    color: #111;
    font-size: 18px;
    padding: 5px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.gallery-page .container .gallery-list .grid-box li:hover .box h5 {
    background-color: var(--color);
    color: #fff;
}

/* ------------------ mana-page ------------------ */

.mana-page .mana-1 .left {
    vertical-align: middle;
    padding-right: 7.5%;
}

.mana-page .mana-1 .left .title::before {
    display: none;
}

.mana-page .mana-1 .left .con {
    font-size: 16px;
    line-height: 30px;
    margin-top: 37px;
}

.mana-page .mana-1 .right {
    vertical-align: middle;
}

.mana-page .mana-2 {
    padding-top: 3.386%;
}

.mana-page .mana-2 .top .left {
    width: 50%;
    /*padding-right: 7%;*/
}

.mana-page .mana-2 .top .left .title::before {
    display: none;
}

.mana-page .mana-2 .top .right {
    width: 50%;
    font-size: 16px;
    line-height: 30px;
    margin-top: 12px;
}

.mana-page .mana-2 .top .right p {
    margin-top: 25px;
}

.mana-page .mana-2 .top .right p:first-child {
    margin-top: 0;
}

.mana-page .mana-2 .bottom {
    background: url(../images/mana2.jpg) no-repeat center top;
    background-size: 100% 100%;
    color: var(--white);
    margin-top: 89px;
    padding: 4.672% 0 5.922% 0;
}

.mana-page .mana-2 .bottom .title {
    color: var(--white);
}

.mana-page .mana-2 .bottom .title::before {
    display: none;
}

.mana-page .mana-2 .bottom .ig {
    background: rgba(255, 255, 255, 0.04);
    max-width: 1122px;
    margin: 26px 0 0 10.593%;
    padding: 41px 105px 58px 70px;
}

.mana-page .mana-2 .bottom .ig ul li {
    position: relative;
    padding-top: 19px;
}

.mana-page .mana-2 .bottom .ig ul li i {
    display: inline-block;
    vertical-align: top;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    background: var(--primary);
}

.mana-page .mana-2 .bottom .ig ul li i img {
    display: inline-block;
    vertical-align: middle;
}

.mana-page .mana-2 .bottom .ig ul li .text {
    display: inline-block;
    width: 82%;
    padding-left: 38px;
}

.mana-page .mana-2 .bottom .ig ul li .text span {
    font-size: 30px;
    line-height: 1.2;

    font-weight: bold;
}

.mana-page .mana-2 .bottom .ig ul li .text p {
    font-size: 16px;
    line-height: 2;
    margin-top: 27px;
}

.mana-page .mana-2 .bottom .ig ul li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 31px;
    background: url(/cnguituonewmaterial/2025/11/14/32432.png) no-repeat;
}

.mana-page .mana-2 .bottom .ig ul.slick-dots {
    position: absolute;
    z-index: 2;
    right: -20%;
    top: 45%;
}

.mana-page .mana-2 .bottom .ig ul.slick-dots li {
    width: 18px;
    height: 18px;
    background: transparent;
    padding: 0;
    margin-bottom: 4px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
}

.mana-page .mana-2 .bottom .ig ul.slick-dots li::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: var(--primary);
}

.mana-page .mana-2 .bottom .ig ul.slick-dots li button {
    display: none;
}

.mana-page .mana-2 .bottom .ig ul.slick-dots li:last-child {
    margin-bottom: 0;
}

.mana-page .mana-2 .bottom .ig ul.slick-dots li.slick-active {
    background: rgba(255, 255, 255, 0.77);
}


.mana-page .mana-3 ul li {
    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: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 100px;
}

.mana-page .mana-3 ul li .img {
    background: url(../images/about-dots.png) no-repeat -20px top;
    width: 51.448%;
    padding-top: 46px;
}

.mana-page .mana-3 ul li .text {
    width: 48.552%;
    padding-left: 41px;
}

.mana-page .mana-3 ul li .text .title::before {
    display: none;
}

.mana-page .mana-3 ul li .text .title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background-color: #c2c0c3;
    margin-top: 9px;
}

.mana-page .mana-3 ul li .text .con {
    font-size: 16px;
    line-height: 2;
    color: rgba(40, 39, 39, 0.87);
    margin-top: 40px;
}

.mana-page .mana-3 ul li .text dl {
    margin-top: 47px;
}

.mana-page .mana-3 ul li .text dl dd {
    font-size: 24px;

    font-weight: 500;
    line-height: 44px;
    padding-left: 65px;
    position: relative;
    margin-bottom: 11px;
}

.mana-page .mana-3 ul li .text dl dd::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 32px;
    height: 26px;
    background: url(../images/mana-check.png) no-repeat;
}

.mana-page .mana-3 ul li .text dl dd:last-child {
    margin-bottom: 0;
}

.mana-page .mana-3 ul li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.mana-page .mana-3 ul li:nth-child(even) .text {
    padding: 0 100px 0 0;
}

.mana-page .mana-3 ul li:nth-child(even) .img {
    padding: 0 0 79px 22px;
    background: url(../images/about-dots1.png) no-repeat 20px 2px;
}

.mana-page .mana-3 ul li:last-child {
    margin-bottom: 0;
}

.mana-page .mana-4 {
    padding: 4.063% 0 5.886%;
}

.mana-page .mana-4 .header {
    background: var(--primary);
    padding: 30px 0 28px;
}

.mana-page .mana-4 .header .title {
    color: var(--white);
}

.mana-page .mana-4 .header .title::before {
    background: var(--white);
    top: 38px;
}

.mana-page .mana-4 .content {
    margin-top: 80px;
}

.mana-page .mana-4 .content ul {
    margin: 0 -36px -60px 0;
}

.mana-page .mana-4 .content ul li {
    padding: 0 36px 60px 0;
}

.mana-page .mana-4 .content ul li .img-box img {
    width: 100%;
}

@media screen and (max-width: 1440px) {
    .mana-page .mana-2 .top .left {
        padding-right: 2%;
    }

    .mana-page .mana-2 .bottom .ig {
        margin: 26px auto 0;
    }

    .mana-page .mana-2 .bottom .ig ul.slick-dots {
        right: -11%;
    }

    .mana-page .mana-3 ul li:nth-child(even) .text {
        padding: 0 50px 0 0;
    }

    .mana-page .mana-3 ul li .text dl dd {
        font-size: 21px;
    }
}

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

    .mana-page .mana-1 .left .title {
        font-size: 40px;
        font-family: KO;
    }

    .mana-page .mana-2 .top .left .title {
        font-size: 40px;
        font-family: KO;
    }

    .mana-page .mana-3 ul li .text .title {
        font-size: 40px;
        line-height: 1.4;
        font-family: KO;
    }

    .mana-page .mana-3 ul li:nth-child(even) .text {
        padding: 0 30px 0 0;
    }

    .mana-page .mana-3 ul li .text dl dd {
        font-size: 20px;
        line-height: 1.8;
        padding-left: 45px;
    }

    .mana-page .mana-3 ul li .text dl dd::before {
        top: 0;
    }
}

@media screen and (max-width: 1100px) {
    .mana-page .mana-1 .left {
        padding-right: 2%;
    }

    .mana-page .mana-1 .left .con {
        margin-top: 10px;
    }
}

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

    .mana-page .mana-1 .right {
        width: 100%;
        padding: 20px 0 0 0;
    }

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

    .mana-page .mana-2 .top .right {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .mana-page .mana-2 .bottom {
        margin-top: 40px;
    }

    .mana-page .mana-2 .bottom .ig {
        padding: 20px 40px 40px 30px;
    }

    .mana-page .mana-2 .bottom .ig ul li .text {
        padding-left: 20px;
    }

    .mana-page .mana-2 .bottom .ig ul.slick-dots {
        right: -5%;
    }

    .mana-page .mana-3 ul li {
        margin-bottom: 30px;
    }

    .mana-page .mana-3 ul li .img {
        width: 100%;
    }

    .mana-page .mana-3 ul li .text {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .mana-page .mana-3 ul li .text .con,
    .mana-page .mana-3 ul li .text dl {
        margin-top: 20px;
    }

    .mana-page .mana-3 ul li:nth-child(even) .text {
        padding: 20px 0 0 0;
    }

    .mana-page .mana-3 ul li:nth-child(even) .img {
        padding: 0 0 79px 0;
    }

    .mana-page .mana-4 .content {
        margin-top: 40px;
    }

    .mana-page .mana-4 .content ul {
        margin: 0 -15px -25px 0;
    }

    .mana-page .mana-4 .content ul li {
        padding: 0 15px 25px 0;
    }
    .mana-page .mana-2 .bottom .ig ul li .text span {
        font-size: 24px;
    }
}

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

    .mana-page .mana-1 .left .title,
    .mana-page .mana-2 .top .left .title {
        font-size: 36px;
        line-height: 1.5;
        font-family: KO;
    }

    .mana-page .mana-2 .top .right {
        padding: 10px 0 0 0;
        margin-top: 0;
    }

    .mana-page .mana-2 .bottom {
        margin-top: 20px;
    }

    .mana-page .mana-2 .bottom .ig ul li .text {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .mana-page .mana-2 .bottom .ig ul li .text p {
        margin-top: 10px;
    }

    .mana-page .mana-3 ul li .text .title {
        font-size: 36px;
        font-family: KO;
    }

    .mana-page .mana-3 ul li:nth-child(even) .img {
        padding: 0;
    }
}

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

    .mana-page .mana-1 .left .title,
    .mana-page .mana-2 .top .left .title {
        font-size: 32px;
        font-family: KO;
    }

    .mana-page .mana-1 .left .con {
        font-size: 14px;
        line-height: 2;
    }

    .mana-page .mana-2 .top .right {
        font-size: 14px;
        line-height: 2;
    }

    .mana-page .mana-2 .bottom .ig {
        padding: 20px 20px 30px 20px;
    }

    .mana-page .mana-2 .bottom .ig ul li .text p {
        font-size: 14px;
        line-height: 2;
    }

    .mana-page .mana-3 ul li .text .con {
        font-size: 14px;
        line-height: 2;
    }
    .mana-page .mana-2 .bottom .ig ul li .text span {
        font-size: 22px;
    }
}

/* ------------------ news-page ------------------ */
.news-page .tips_title {
    font-weight: bold;
    padding-left: 60px;
    text-transform: uppercase;

    padding-right: 25px;
    display: inline-block;
    position: relative;
    line-height: 1;
    z-index: 2;
}

.news-page .tips_title::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: 0;
    left: 0;
    background-color: var(--color);
    z-index: -1;
}

.news-page .content ul li {
    position: relative;
}

.news-page .content ul li .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f2f4f6;
}

.news-page .content ul li .box {
    position: relative;
    z-index: 1;
    border: 1px solid #eceef1;
    /*height: 290px;*/
    padding: 30px 50px;
    background-color: #fff;
}

.news-page .content ul li .box .title {
    display: block;
    font-size: 24px;
    line-height: 1.8;
    font-family: KO;
    min-height: 3.8em;
}

.news-page .content ul li .box .title::before {
    display: none;
}

.news-page .content ul li .box .title:hover {
    color: var(--primary);
}

.news-page .content ul li .box .des {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-top: 20px;
    line-height: 2;
}

.news-page .content ul li .box .des:hover {
    color: var(--primary);
}

.news-page .content ul li .box .info_c {
    margin-top: 30px;
}

.news-page .content ul li .box .info_c .cat_name {
    width: auto;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    background-color: var(--primary);
    border-radius: 15px;
    padding: 4px 22px;
}

.news-page .content ul li .box .info_c .time {
    color: rgba(33, 33, 33, 0.7);
    margin-left: 30px;
    width: auto;
    font-size: 16px;
    line-height: 30px;
    vertical-align: middle;
}

.news-page .content ul li:hover {
    z-index: 2;
}

.news-page .content ul li:hover .box {
    -webkit-transform: translate(10px, -10px);
    -moz-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    -o-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
}

@media screen and (max-width: 1000px) {
    .news-page {
        text-align: center;
    }

    .news-page .tips_title {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 24px;
        line-height: 44px;
    }

    .news-page .content .grid-box li {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 500px) {
    .news-page .content ul li .box {
        padding: 20px 16px;
        height: unset;
    }

    .news-page .content ul li .box .info_c .time {
        width: 100%;
        margin: 16px 0 0;
    }

    .news-page .content ul li .box .title {
        font-size: 20px;
        line-height: 1.8;
    }
}
/* ------------------ newdet-page ------------------ */
.newdet-page .init-1 .container .title {
    font-size: 30px;
}

.newdet-page .init-1 .container .title::before {
    display: none;
}

.newdet-page .init-1 .container .time {
    color: #9e9e9e;
    margin-top: 30px;
    line-height: 30px;
}

.newdet-page .init-1 .container .content {
    margin-top: 20px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    color: #767676;
    padding: 30px 0;
    line-height: 2;
}

.newdet-page .init-1 .container .bottom_cont {
    margin-top: 40px;
}

.newdet-page .init-1 .container .bottom_cont .left {
    width: calc(100% - 160px);
    padding-right: 20px;
}

.newdet-page .init-1 .container .bottom_cont .right {
    width: 160px;
}

.newdet-page .init-1 .container .bottom_cont .right .share_name {
    color: #767676;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a {
    display: inline-block;
    margin-top: 10px;
    width: 28px;
    height: 28px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    background-color: var(--primary);
    font-size: 16px;
    border-radius: 50%;
    margin-right: 12px;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a i {
    position: relative;
    z-index: 2;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a::before {
    background-color: #245e3e;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list2 {
    background-color: #00aced;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list3 {
    background-color: #cb2027;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a.list4 {
    background-color: #cc2366;
}

.newdet-page .init-1 .container .bottom_cont .right .list_cont a:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1000px) {
    .newdet-page .init-1 .container .bottom_cont {
        margin-top: 20px;
    }

    .newdet-page .init-1 .container .bottom_cont .left {
        width: 100%;
        padding: 0;
    }

    .newdet-page .init-1 .container .bottom_cont .right {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    .newdet-page .init-1 .container .bottom_cont {
        margin-top: 0;
    }

    .newdet-page .init-1 .container .time {
        margin-top: 16px;
    }
}


.pro_public .init-related {
    background-color: #f7f7f7;
}

.pro_public .init-related .container .tips {
    text-align: center;
    font-weight: bold;
}

.pro_public .init-related .container .content {
    margin-top: 40px;
}

.pro_public .init-related .container .content .list .slick-list {
    margin: 0 -25px;
}

.pro_public .init-related .container .content .list li {
    padding: 0 25px;
}

.pro_public .init-related .container .content .list li .box .img {
    background-color: #fff;
    display: block;
    padding: 40px;
}

.pro_public .init-related .container .content .list li .box .text {
    display: block;
    margin-top: 20px;
    line-height: 36px;
}

.pro_public .init-related .container .content .list li .box .text:hover {
    color: var(--color);
}
@media screen and (max-width: 700px){
    .pro_public .init-related .container .content .list .slick-list {
        margin: 0 -10px;
    }
    .pro_public .init-related .container .content .list li{
        padding: 0 10px;
    }
}

/* ------------------ contact-page ------------------ */
.contact-page .init-1 {
    padding-top: 0px;
    background: #f5f5f5;
}

.contact-page .init-1 h1 {
    border-bottom: 1px solid #6e6b70;
    padding: 50px 0 20px;
    text-transform: capitalize;
}

.contact-page .init-1 ul li {
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.contact-page .init-1 ul li:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

.contact-page .init-1 ul li:hover i {
    color: var(--primary);
    border: 2px solid var(--primary);
}

.contact-page .init-1 ul li:hover .img {
    border: 2px solid var(--primary);
}

.contact-page .init-1 ul li:hover .img img {
    -webkit-filter: grayscale(0) brightness(1);
    filter: grayscale(0) brightness(1);
}

.contact-page .init-1 ul li i,
.contact-page .init-1 ul li .img {
    width: 100px;
    height: 100px;
    border: 2px solid #6e6b70;
    border-radius: 100%;
    line-height: 100px;
    text-align: center;
    font-size: 44px;
    color: #6e6b70;
    margin: 0 auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.contact-page .init-1 ul li .img {
    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;
}

.contact-page .init-1 ul li .img img {
    max-width: 50%;
    -webkit-filter: grayscale(1) brightness(0.6);
    filter: grayscale(1) brightness(0.6);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

.contact-page .init-1 ul li h3 {
    font-size: 24px;
    line-height: 44px;
    color: #051524;
    padding: 20px 0 10px;
    text-transform: capitalize;

    font-weight: bold;
}

.contact-page .init-1 ul li p {
    font-size: 16px;
    color: #414951;
    line-height: 2;
    word-break: break-word;
}

.contact-page .init-2 .init-2-box .left {
    width: 50%;
    padding-left: 3%;
}

.contact-page .init-2 .init-2-box .left h1 {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
}


.contact-page .init-2 .init-2-box .left .content p {
    margin-top: 20px;
    font-size: 16px;
    color: #8995a2;
    line-height: 2;
}

.contact-page .init-2 .init-2-box .left .content ul {
    margin-top: 10px;
}

.contact-page .init-2 .init-2-box .left .content ul li {
    padding: 20px 15px;
    border-bottom: 1px solid #e0e8f0;
    display: flex;
    align-items:center;
}

.contact-page .init-2 .init-2-box .left .content ul li span {
    display: inline-block;
    width: 60px;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-page .init-2 .init-2-box .left .content ul li p {
    font-size: 20px;
    color: #242424;
    font-weight: bold;
    margin-top: 0;
}

.contact-page .init-2 .init-2-box .right {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding-right: 3%;
}

@media screen and (max-width: 1000px) {
    .contact-page .init-2 .init-2-box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .contact-page .init-2 .init-2-box .left .content {
        padding-left: 10px;
    }

    .contact-page .init-2 .init-2-box .left {
        width: 100% !important;
    }

    .contact-page .init-2 .init-2-box .right {
        width: 100% !important;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -moz-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .contact-page .init-2 .init-2-box .right {
        padding-right: 0;
    }

    .contact-page .init-2 .init-2-box .left {
        padding-right: 0;
        margin-top: 20px;
    }
}

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

}

@media screen and (max-width: 500px) {
    .contact-page .init-2 .init-2-box .left .content ul li p {
        font-size: 18px;
    }

    .contact-page .init-2 .init-2-box .right {
        padding-right: 0;
        margin-top: 30px;
    }

    .contact-page .init-2 .init-2-box .left .content ul li {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .contact-page .init-2 .init-2-box .left .content p {
        margin-top: 0;
        line-height: 1.4;
    }
}

.contact-page .init-2 .main-form form {
    padding-left: 25px;
    height: 670px;
    width: 100%;
    padding: 60px;
    background-color: #fff;
    -webkit-box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, .1);
    box-shadow: 13px 15px 60px 0 rgba(9, 36, 60, .1)
}

.contact-page .init-2 .main-form form h4 {
    font-size: 36px;
    font-weight: normal;
    margin: 0 0 30px;
    color: #051524;
    text-transform: uppercase;
    line-height: 1.2;
     font-family: "KronaOne";
}

.contact-page .init-2 .main-form form span {
    font-weight: 400;
    font-style: normal;
    color: #6b6b6b;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 7px;
    display: block
}

.contact-page .init-2 .main-form form input {
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #848b91;
    font-size: 16px;
    line-height: 30px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    outline: none;
    background-color: #ececec;
    border-radius: 0;
    border: none;
    margin-bottom: 20px
}

.contact-page .init-2 .main-form form textarea {
    width: 100%;
    font-weight: 400;
    font-style: normal;
    color: #848b91;
    font-size: 16px;
    line-height: 24px;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    outline: none;
    background-color: #ececec;
    border-radius: 0;
    border: none;
    margin-bottom: 20px;
    height: 100px
}

.contact-page .init-2 .main-form form .contact-submit {
    margin-top: 30px;
    text-align: center;
    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;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.contact-page .init-2 .main-form form .contact-submit input[type=submit] {
    display: inline-block;
    max-width: 200px;
    font-weight: 500;
    font-style: normal;
    line-height: 36px;
    font-size: 20px;
    color: #fff !important;
    background-color: var(--primary);
    text-align: center;
    margin-right: 0 !important;
    padding: 9px 30px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.contact-page .init-2 .main-form form .contact-submit #ewm {
    padding: 4px;
    border: 1px solid #ccc;
    width: 130px
}

.contact-page .init-2 .main-form form .contact-submit input[type=submit]:hover {
    background-color: #000;

}

@media screen and (max-width: 1250px) {
    .contact-page .init-2 .main-form form h4 {
        font-size: 30px;
    }
    .contact-page .init-2 .main-form form{
        padding: 40px;
    }
    .contact-page .init-2 .init-2-box .left h1{
        padding: 40px 0;
    }
}
@media screen and (max-width: 1000px) {
    .contact-page .init-2 .main-form form {
        width: 100%;
        padding: 25px;
        height: auto;
    }

    .contact-page .init-2 .main-form form .contact-submit {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around
    }    .contact-page .init-2 .main-form form h4 {
        font-size: 26px;
    }
}
@media screen and (max-width: 700px) {
    .contact-page .init-2 .main-form form h4 {
        font-size: 22px;
    }
    .contact-page .init-1 ul li h3 {
        font-size: 20px;
    }
    .contact-page .init-1 ul li{
        margin: 10px 0;
    }
    .contact-page .init-1 ul li i{
        zoom:0.85;
    }
    .contact-page .init-2 .init-2-box .left .content ul li p{
        font-size: 18px;
    }
    .contact-page .init-2 .init-2-box .left h1 {
        padding: 20px 0;
    }
}
@media screen and (max-width: 500px) {
    .contact-page .init-2 .main-form form h4 {
        font-size: 20px;
    }
}


/*------faq-page ------*/
.faq-page {
    padding: 5.209% 0;
}

.faq-page .list {
    margin-top: 40px;
}

.faq-page .list ul li {
    margin-bottom: 20px;
    border-radius: 15px;
    background: #fff;
}

.faq-page .list ul li .tit {
    padding: 30px 40px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    font-size: 24px;
    line-height: 44px;
    font-weight: 500;
}

.faq-page .list ul li .tit i {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 30px;
}

.faq-page .list ul li .con {
    display: none;
    background: #fff;
    padding: 20px 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #595959;
    border-top: 1px solid #f1f1f1;
}

.faq-page .list ul li:last-child {
    margin-bottom: 0;
}

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

@media screen and (max-width: 1000px) {
    .faq-page .list {
        margin-top: 20px;
    }

    .faq-page .list ul li .tit {
        padding: 20px;
        font-size: 18px;
    }

    .faq-page .list ul li .tit i {
        right: 20px;
        top: 20px;
        font-size: 20px;
    }

    .faq-page .list ul li .con {
        padding: 10px 20px;
        font-size: 16px;
    }
}

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

    .faq-page .list ul li .tit {
        padding: 10px 20px;
        font-size: 16px;
        line-height: 30px;
    }

    .faq-page .list ul li .tit i {
        right: 20px;
        top: 10px;
        font-size: 16px;
    }

    .faq-page .list ul li .con {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 2;
    }
}

.seoPublic .Auxil-about .box .right{
    padding-top: 0;
}
.seoPublic .Auxil-about .box .right .text{
    max-height: 372px;
}


.about-page .about-6 ul{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about-page .about-6 ul li{
  width: 33%;
  position: relative;
}
.about-page .about-6 ul li img{
  min-height: 500px;
  object-fit: cover;
}
.about-page .about-6 ul li .text{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 80px ;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-page .about-6 ul li .text .box{
  flex: 1;
  display: flex;
    flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.about-page .about-6 ul li .text .box .cont{
  /*height: 0px;
  overflow-y: hidden;*/
  /*transition: .5s;*/
  display: none;
}

@media screen and (max-width: 1700px) {
    .about-page .about-6 ul li .text {
    padding: 80px
  }
}
@media screen and (max-width: 1450px) {
    .about-page .about-6 ul li .text {
    padding: 80px 60px
  }
}
@media screen and (max-width: 1250px) {
    .about-page .about-6 ul li .text {
    padding: 80px 40px
  }
}
@media screen and (max-width: 1000px) {
  .about-page .about-6 ul li .text {
    padding: 80px 20px
  }
  .about-page .about-6 ul li {
    width: 50%
  }

}
@media screen and (max-width: 500px){
    .about-page .about-6 ul li .text {
        padding: 30px 20px;
    }
    .about-page .about-6 ul li {
        width: 100%;
    }
    .about-page .about-6 ul li img{
        min-height: 320px;
    }
    .about-page .about-6 ul li .text .box .cont{
        display: block!important;
    }
}

.mobile-menu-wrap01 .menu-footer{
    margin-top: 28px;
}