#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%;
    transform: translate(-50%, -50%);
    max-height: 80%;
    width: 500px;
    max-width: 90%;
    -o-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);
    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;
    transition: 0.5s;
}

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

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

#pups_from2 i.close:hover {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

#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;
    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-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: white;
    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-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    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: flex;
    align-items: center;
    justify-content: center;
    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: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 500px;
    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;
    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;
    overflow: hidden;
    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-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: white;
    right: 2%;
    bottom: 40%;
    font-size: 24px;
    -o-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;
    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;
    border: 1px solid #f7f7f7;
}

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

table tbody td,
table tbody th {
    padding: 5px 10px;
    border: 1px solid #dde5e7;
    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;
    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;
    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);
    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%;
    transform: translateX(-50%);
    transition: 0.5s;
    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;
    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;
    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 {
    transform: translateX(-50%) rotateZ(45deg);
    top: 12px;
    margin-left: 3px;
}

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

#mobile.active #menu-on i.line3 {
    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);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@keyframes ks2 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 700px) {
    .font-25 {
        font-size: 18px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container {
    width: 1626px;
}

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

.color-ff {
    color: #fff;
}

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

.fa-Unbounded-Bold {
    font-family: "Unbounded";
    font-weight: bold;
}

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

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

#header .nav .logo {
    padding-left: 38px;
}

#header .nav .ui.menu {
    width: 86%;
    height: 100%;
}

#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%;
    display: flex;
    align-items: center;
}

#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 9px;
    padding: 0 30px;
    font-size: 18px;
    font-family: "Unbounded";
    height: 100%;
    color: #000a11;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    transition: 0.5s;
    display: flex;
    align-items: center;
    height: 42px;
    transition: all 0.5s;
    border-radius: 21px;
    
}

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#000000, #000000);
    z-index: -1;
    border-radius: 30px;
    opacity: 0;
    transition: all 0.5s;
}

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

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

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

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

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

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li ul.sub-menu {
    perspective: 500px;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    font-size: 15px;
    background: #fff;
    top: 100%;
    left: 50%;
    min-width: 180px;
    transform:translateX(-50%) rotate3d(1, 0, 0, -90deg);
    transform-origin: 0 0 0;
    opacity: 0;
    transition: 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: 12px;
    transition: 0.5s;
    text-transform: capitalize;text-align: center;
}

#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-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    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:translateX(-50%) 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;
    height: 100%;
}

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

#header .nav .ui.menu .right .h-language span {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header .nav .ui.menu .right .h-language span img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: all 0.5s;
}

#header .nav .ui.menu .right .h-language ul.sub-menu {
    perspective: 500px;
    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;
    transform: rotate3d(1, 0, 0, -90deg);
    transform-origin: 0 0 0;
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
    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 {
    -webkit-filter: none;
    filter: none;
}

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

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

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

#header .nav .ui.menu .right .h-inquire {
    width: auto;
    height: 100%;
    padding: 0 36px;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#f7f9f2, #f7f9f2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-family: "Unbounded";
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    z-index: 0;
}

#header .nav .ui.menu .right .h-inquire::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    background-color: #003ca0;
    transition: all 0.8s;
    z-index: -1;
    opacity: 0;
}

#header .nav .ui.menu .right .h-inquire:hover::after {
    left: 0;
    opacity: 1;
}

.btn-go {
    display: inline-flex;
}

.btn-go span {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#0a5284, #0a5284);
}

.btn-go .rs-txt {
    color: #fff;
    border-radius: 28px;
    padding: 16px 36px;
    display: inline-block;
    transition: all 0.3s ease 0s;
    z-index: 9;
    font-weight: 500;
    transform: translate3d(-56px, 0, 0);
    transform-style: preserve-3d;
}

.btn-go .rs-ico {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    opacity: 0;
}

.btn-go .rs-ico.two {
    opacity: 1;
    transform: translate3d(-56px, 0, 0);
    transform-style: preserve-3d;
}

.btn-go:hover .rs-txt {
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
}

.btn-go:hover .rs-ico {
    opacity: 1;
}

.btn-go:hover .rs-ico.two {
    opacity: 0;
}

#banner {
    margin-top: 100px;
    position: relative;
}

#banner .banner-content {
    height: 43vw;
    position: relative;
    color: #fff;
}

#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 {
    font-family: "Unbounded";
    font-weight: bold;
    width: 100%;
    padding: 10px 0 10px 50px;
    background-repeat: no-repeat;
    background-size: contain;
}

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

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

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

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination {
    font-family: "Unbounded";
    font-weight: bold;
    color: rgba(248, 251, 255, 0.3);
    width: auto;
}

#banner .banner-content .swiper-tool-box .swiper-tool .swiper-pagination .swiper-pagination-current {
    font-size: 30px;
    color: rgba(248, 251, 255, 0.6);
}

#banner .swiper-button {
    right: 9%;
    top: auto;
    margin-top: 0;
    bottom: 9%;
    width: 397px;
    height: 220px;
    border-radius: 10px;
    background-image: url(../images/next-border.png);
    background-size: cover;
    padding: 2px;
    overflow: hidden;
}

#banner .swiper-button::after {
    display: none;
}

#banner .swiper-button span {
    display: flex;
    width: 78px;
    height: calc(100% - 4px);
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#ffffff, #ffffff);
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 8px;
    z-index: 9;
}

#banner .swiper-button span em {
    font-family: "Unbounded";
    font-weight: bold;
    color: rgba(248, 251, 255, 0.58);
    transform: rotate(90deg);
    transform-origin: center center;
    display: block;
}

#banner .swiper-button .swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#banner .swiper-button .swiper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.mktit .sub-text {
    color: var(--color);
    font-weight: bold;
}

.mktit h2 {
    font-family: "Unbounded";
    font-weight: bold;
}

.mktit .desc {
    font-weight: 300;
    color: #666666;
    max-width: 482px;
}

#index-body .init-1 {
    background-color: #f4fafc;
}

#index-body .init-1 .bg {
    background-repeat: no-repeat;
    background-position: bottom -50px left;
}

#index-body .init-1 .categories .left {
    width: 42%;

}

#index-body .init-1 .categories .left .linebg {
    background-repeat: no-repeat;
    background-position: top right;
    padding-bottom: 400px;
    padding-right: 50px;
}

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

#index-body .init-1 .categories .right ul {
    padding-left: 125px;
    gap: 30px;
}

#index-body .init-1 .categories .right ul li .box {
    position: relative;
}

#index-body .init-1 .categories .right ul li .box .imgBox {
    padding: 0 45px;
}

#index-body .init-1 .categories .right ul li .box .imgBox .img-box {
    border-radius: 10px;
}

#index-body .init-1 .categories .right ul li .box .txt-box {
    padding: 40px 60px;
    padding-top: 150px;
    background-image: linear-gradient(90deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#ffffff, #ffffff);
    border-radius: 10px;
    margin-top: -115px;
}

#index-body .init-1 .categories .right ul li .box .txt-box .title {
    font-family: "Unbounded";
    font-weight: bold;
}

#index-body .init-1 .categories .right ul li .box .txt-box .btn-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#index-body .init-1 .categories .right ul li .box .txt-box .btn-box i {
    transition: all 0.5s;
}

#index-body .init-1 .categories .right ul li .box .txt-box a:hover .btn-box i {
    transform: rotate(45deg);
}

#index-body .init-1 .categories .right ul li .box .xh {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    position: absolute;
    top: 50%;
    left: -172px;
    transform: translateY(-50%);
    border-radius: 50%;
    font-family: "Unbounded";
    font-weight: bold;
}

#index-body .init-2 .top .left {
    max-width: 50%;
}

#index-body .init-2 .top .left img {
    border-radius: 20px;
}

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

#index-body .init-2 .top .right .time {
    font-family: "Unbounded";
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: -1px -1px 0 #0a5284, 1px -1px 0 #0a5284, -1px 1px 0 #0a5284, 1px 1px 0 #0a5284;
}

#index-body .init-2 .top .right h1 {
    color: #666666;
    /*font-weight: 500;*/
}

#index-body .init-2 .bottom ul li h4 {
    font-family: "Unbounded";
    font-weight: bold;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    border-bottom: 1px solid #dadada;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

#index-body .init-2 .bottom ul li p {
    font-family: "Gilroy";
    font-weight: bold;
    color: #666666;
}

#index-body .init-3 {
    background-color: #f0fbff;
}

#index-body .init-3 .bg1 {
    background-repeat: no-repeat;
    background-position: top right;
}

#index-body .init-3 .mktit img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

#index-body .init-3 .advantages {
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    padding: 90px 110px;
    z-index: 0;
}

#index-body .init-3 .advantages .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#index-body .init-3 .advantages ul {
    width: 28.5%;
}

#index-body .init-3 .advantages ul li .box {
    width: 100%;
}

#index-body .init-3 .advantages ul li .box .xh {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    font-family: "Unbounded";
    font-weight: bold;
}

#index-body .init-3 .advantages ul li .box .intro {
    background-color: #f3fcff;
    border-radius: 10px;
    width: 100%;
    padding: 28px 10px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#index-body .init-3 .advantages ul li.num1 .box .intro {
    margin-top: 30px;
}

#index-body .init-3 .advantages ul li.num2 .box .intro {
    margin-bottom: 30px;
}

#index-body .init-3 .advantages ul li .box .intro h3 {
    font-family: "Unbounded";
    font-weight: bold;
    max-width: 100%;
}

#index-body .init-3 .advantages ul li .box .intro .desc {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    color: #fff;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#f3fcff, #f3fcff);
    border-radius: 10px;
    transition: all 0.5s;
    opacity: 0;
    padding: 28px 22px;
}

#index-body .init-3 .advantages ul li .box .intro .desc .desctxt {
    height: 100%;
    overflow-y: auto;
}

#index-body .init-3 .advantages ul li .box .intro:hover .desc {
    opacity: 1;
    top: 0;
}

#index-body .init-3 .advantages ul li.num2 .box {
    flex-direction: column-reverse;
}

#index-body .init-3 .advantages ul.one li .box .xh {
    margin-right: 30px;
}

#index-body .init-3 .advantages ul.two li .box .xh {
    margin-left: 30px;
}

#index-body .init-4 .top .swiper-button {
    position: static;
    width: 56px;
    height: 56px;
    border-radius: 30px;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    margin: 10px;
    transition: all 0.5s;
    z-index: 0;
}

#index-body .init-4 .top .swiper-button::after {
    display: none;
}

#index-body .init-4 .top .swiper-button i {
    font-size: 30px;
    color: #fff;
    transition: all 0.5s;
}

#index-body .init-4 .top .swiper-button:hover i {
    transform: rotate(-45deg);
}

#index-body .init-4 .top .swiper-button:hover.swiper-button-prev i {
    transform: rotate(45deg);
}

#index-body .init-4 .bottom ul li .box {
    padding-bottom: 38px;
    position: relative;
}

#index-body .init-4 .bottom ul li .box .img-box {
    border-radius: 10px;
}

#index-body .init-4 .bottom ul li .box .img-box img {
    border-radius: 10px;
}

#index-body .init-4 .bottom ul li .box .txtBox {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-55%);
    width: 60%;
    border-radius: 10px;
    background-color: #f0fbff;
    padding: 20px 30px 20px 30px;
    cursor: pointer;
    transition: all 0.5s;
    z-index: 0;
}

#index-body .init-4 .bottom ul li .box .txtBox .sub {
    background-color: #fff;
    padding: 9px 20px;
    border-radius: 10px;
    color: var(--color);
    transition: all 0.5s;
}

#index-body .init-4 .bottom ul li .box .txtBox .tit {
    color: var(--color);
    font-family: "Unbounded";
    font-weight: 500;
    transition: all 0.5s;
}

#index-body .init-4 .bottom ul li .box .txtBox .btn-jt {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 30px;
    background-image: linear-gradient(0deg, #0043ac 0%, #a0b8ed 100%);
    top: 50%;
    transform: translate(50%, -50%);
    right: 0;
}

#index-body .init-4 .bottom ul li .box .txtBox .btn-jt i {
    font-size: 28px;
    color: #fff;
    transition: all 0.5s;
}

#index-body .init-4 .bottom ul li .box .txtBox::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(90deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#f0fbff, #f0fbff);
    opacity: 0;
    transition: all 0.5s;
    z-index: -1;
    border-radius: 10px;
}

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

#index-body .init-4 .bottom ul li .box .txtBox:hover .sub {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#index-body .init-4 .bottom ul li .box .txtBox:hover .tit {
    color: #fff;
}

#index-body .init-4 .bottom ul li .box .txtBox:hover .btn-jt i {
    transform: rotate(-45deg);
}

#index-body .init-5 {
    background-color: #f0fbff;
}

#index-body .init-5 .left {
    width: 35%;
    height: 100%;
}

#index-body .init-5 .right {
    width: 65%;
    padding-right: 3%;
    padding-left: 2.5%;
}

#index-body .init-5 .right .box2 .content {
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255);
    border-radius: 10px;
    height: 100%;
    width: 100%;
    padding: 12% 10%;
    opacity: 0;
    transition: 1.5s;
}

#index-body .init-5 .right .box2 .content span.h6 {
    line-height: 1.2;
    font-family: "Unbounded";
    font-weight: bold;
    color: #141414;
    transition: all 0.5s;
}

#index-body .init-5 .right .box2 .content span.h6:hover {
    color: var(--color);
}

#index-body .init-5 .right .box2 .content .text {
    color: #666666;
    font-weight: 500;
    min-height: 63px;
}

#index-body .init-5 .right .box2 .content .more {
    background-image: linear-gradient(90deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#eff1fa, #eff1fa);
    height: 50px;
    width: 190px;
    border-radius: 25px;
    position: relative;
    z-index: 0;
    overflow: hidden;

}

#index-body .init-5 .right .box2 .content .more::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background-color: #0345ad;
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

#index-body .init-5 .right .box2 .content .more:hover::after {
    opacity: 1;
    left: 0;
}

#index-body .init-5 .right .list {
    width: 117%;
    margin-left: -17%;
}

#index-body .init-5 .right .list a.img-box {
    transition: 0.5s;
    border-radius: 10px;
}

#index-body .init-5 .right .list a.img-box img {
    -o-object-fit: cover;
    object-fit: cover;
}

#index-body .init-5 .right .list .slick-current a.img-box {
    opacity: 0;
}

#index-body .init-5 .right .list .slick-current .content {
    opacity: 1;
}

#index-body .init-5 .right .page .line {
    width: 100%;
    height: 2px;
    background-color: #b8ddea;
    position: relative;
}

#index-body .init-5 .right .page .line i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--color);
    width: 20%;
    transition: 0.5s;
}

#index-body .init-5 .right .page .slickBtn div {
    width: 56px;
    height: 56px;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#0a5284, #0a5284);
    color: #fff;
}

#index-body .init-5 .right .page .slickBtn div i {
    font-size: 28px;
    transition: all 0.5s;
}

#index-body .init-5 .right .page .slickBtn div.next {
    border-left: none;
}

#index-body .init-5 .right .page .slickBtn div:hover i {
    transform: rotate(-45deg);
}

#index-body .init-5 .right .page .slickBtn div:hover.prev i {
    transform: rotate(45deg);
}

#index-body .init-6 .wrapper {
    margin: 0 auto;
    width: 1450px;
    padding: 0 15px;
}

#index-body .init-6 .newsbox {
    position: relative;
    padding-right: 230px;
}

#index-body .init-6 .imgBox {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#index-body .init-6 .news-list {
    box-shadow: 8px 24px 59px 11px #ebebeb;
    background-color: #ffffff;
    border-radius: 100px;
    padding-right: 192px;
}

#index-body .init-6 .news-list .box .con {
    padding: 100px 90px;
}

#index-body .init-6 .news-list .box .con .cate {
    display: inline-flex;
    height: 45px;
    padding: 0 20px;
    background-image: linear-gradient(90deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#f0fbff, #f0fbff);
    border-radius: 45px;
}

#index-body .init-6 .news-list .box .con .tt {
    font-family: "Unbounded";
    font-weight: 500;
}

#index-body .init-6 .news-list .box .con .desc {
    color: #676767;
    line-height: 1.7;
}

#index-body .init-6 .news-list .box .con .time {
    background-image: linear-gradient(90deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    display: inline-flex;
    border-radius: 10px;
    padding: 12px 20px;
}

#index-body .init-6 .news-list .box .con .time .month {
    font-family: "Unbounded";
    font-weight: 500;
}

#index-body .init-6 .news-list .btn-box {
    position: absolute;
    bottom: 17%;
    right: 25.5%;
    z-index: 2;
}

#index-body .init-6 .news-list .btn-box .swiper-button {
    position: static;
    width: 56px;
    height: 56px;
    border-radius: 30px;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    margin: 10px;
    transition: all 0.5s;
    z-index: 0;
}

#index-body .init-6 .news-list .btn-box .swiper-button::after {
    display: none;
}

#index-body .init-6 .news-list .btn-box .swiper-button i {
    font-size: 30px;
    color: #fff;
    transition: all 0.5s;
}

#index-body .init-6 .news-list .btn-box .swiper-button:hover i {
    transform: rotate(-45deg);
}

#index-body .init-6 .news-list .btn-box .swiper-button:hover.swiper-button-prev i {
    transform: rotate(45deg);
}

#index-body .init-7 {
    background-color: #ecf3f5;
    overflow: hidden;
}

#index-body .init-7 .partner02-list .slick-list {
    direction: rtl;
}

#footer {
    background-image: linear-gradient(176deg, #0345ad 0%, #02317b 50%, #001c49 100%), linear-gradient(#000000, #000000);
    position: relative;
    overflow: hidden;
}

#footer .footer-center .footer-t .left {
    width: 59%;
}

#footer .footer-center .footer-t .mktit img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

#footer .footer-center .footer-t .footer-t-gird .t-list {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin-bottom: 50px;
    padding-right: 48px;
}

#footer .footer-center .footer-t .footer-t-gird .t-list p {
    font-size: 20px;
    margin-bottom: 18px;
    font-family: "Unbounded";
    font-weight: bold;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span:last-child {
    margin-bottom: 0;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    transition: all 0.5s;
    padding-left: 0;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span i {
    opacity: 0;
    position: absolute;
    left: 5px;
    top: 0;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span:hover {
    padding-left: 20px;
}

#footer .footer-center .footer-t .footer-t-gird .t-list span:hover i {
    left: 0;
    opacity: 1;
}

#footer .footer-center .footer-t .footer-t-gird .follow .share li {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .footer-t-gird .follow .share li i {
    color: #fff;
    font-size: 16px;
}

#footer .footer-center .footer-t .footer-t-gird .follow .share li::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-image: linear-gradient(182deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#fafbfc, #fafbfc);
    transition: all 0.5s;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

#footer .footer-center .footer-t .footer-t-gird .follow .share li:hover {
    background-image: linear-gradient(182deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#fafbfc, #fafbfc);
}

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

#footer .footer-center .footer-t .footer-t-gird .follow .share .ewm {
    position: relative;
}

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

#footer .footer-center .footer-t .footer-t-gird .quick span {
    width: 28%;
}

#footer .footer-center .footer-t .footer-t-gird .quick span:nth-child(odd) {
    margin-right: 50px;
}

#footer .footer-center .footer-t .right {
    width: 41%;
    border-radius: 20px;
    border: solid 1px #0062ff;
}

#footer .footer-center .footer-t .right .f-form {
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 90px 70px;
}

#footer .footer-center .footer-t .right .f-form .tit {
    font-family: "Unbounded";
    font-weight: bold;
}

#footer .footer-center .footer-t .right .f-form .desc {
    color: rgba(255, 255, 255, 0.8);
}

#footer .footer-center .footer-t .right .f-form form ul {
    margin: 0 -25px;
}

#footer .footer-center .footer-t .right .f-form form ul li {
    width: 50%;
    padding: 0 25px;
    margin-bottom: 10px;
}

#footer .footer-center .footer-t .right .f-form form ul li.wid-100 {
    width: 100%;
}

#footer .footer-center .footer-t .right .f-form form input {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    width: 100%;
    padding: 10px 0 30px;
}

#footer .footer-center .footer-t .right .f-form form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

#footer .footer-center .footer-t .right .f-form form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

#footer .footer-center .footer-t .right .f-form form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

#footer .footer-center .footer-t .right .f-form form input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

#footer .footer-center .footer-t .right .f-form form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

#footer .footer-center .footer-t .right .f-form form .send {
    background-color: #ffffff;
    border-radius: 30px;
    margin-top: 50px;
    height: 50px;
    width: 170px;
    padding: 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

#footer .footer-center .footer-t .right .f-form form .send span {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%);
    -webkit-background-clip: text;
    color: transparent;
    background-clip: text;
    font-family: "Unbounded";
}

#footer .footer-center .footer-t .right .f-form form .send::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background-image: linear-gradient(180deg, #0345ad 0%, #87b9f3 100%), linear-gradient(#0a5284, #0a5284);
    position: absolute;
    top: 0;
    left: -100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.5s;
}

#footer .footer-center .footer-t .right .f-form form .send:hover {
    border-color: transparent;
    background-color: transparent;
    transition-delay: 0.5s;
}

#footer .footer-center .footer-t .right .f-form form .send:hover::after {
    opacity: 1;
    left: 0;
}

#footer .footer-center .footer-t .right .f-form form .send:hover span {
    color: #fff;
}

#footer .footer-center .footer-t .right .f-form form .send:hover img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

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

#footer .footer-center .footer-b p span {

    font-size: 14px;
}

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

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

#footer .txt-bg {
    font-size: 83px;
    color: #d8e4f1;
    opacity: 0.09;
    font-family: "Unbounded";
    font-weight: bold;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    line-height: 1;
}

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

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

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

    #header .nav .ui.menu .right .h-inquire {
        padding: 0 24px;
    }

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

@media (max-width: 1700px) {
    #banner .banner-content .swiper-tool-box {
        bottom: 6%;
    }

    #index-body .init-6 .wrapper {
        width: 1400px;
    }

    #footer .txt-bg {
        font-size: 70px;
    }
}

@media (max-width: 1450px) {
    #header .nav .ui.menu .right .h-inquire {
        font-size: 16px;
    }

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

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

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

    #banner .swiper-button {
        right: 4%;
        width: 270px;
        height: 150px;
    }

    #banner .banner-content .swiper-tool-box {
        bottom: 4%;
    }

    #index-body .init-1 .categories .left .linebg {
        padding-bottom: 358px;
    }

    #index-body .init-1 .categories .right ul {
        padding-left: 80px;
    }

    #index-body .init-1 .categories .right ul li .box .xh {
        left: -126px;
    }

    #index-body .init-6 .wrapper {
        width: 1200px;
    }

    #index-body .init-3 .advantages {
        padding: 60px 70px;
    }

    #index-body .init-5 .right .box2 .content .more {
        margin-top: calc(100% - 135px);
    }

    #footer .txt-bg {
        font-size: 60px;
    }

    #footer .footer-center .footer-t .right .f-form {
        padding: 90px 40px;
    }

    #footer .footer-center .footer-t .footer-t-gird .quick span:nth-child(odd) {
        margin-right: 10px;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list {
        padding-right: 20px;
    }

    #footer .footer-center .footer-t .left {
        width: 62%;
    }

    #footer .footer-center .footer-t .right {
        width: 38%;
    }

    #footer .footer-center .footer-t .right .f-form form ul {
        margin: 0 -10px;
    }

    #footer .footer-center .footer-t .right .f-form form ul li {
        padding: 0 10px;
    }
}

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

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

    #banner .swiper-button {
        height: 120px;
        width: 216px;
    }

    #banner .swiper-button span {
        width: 56px;
    }

    #index-body .init-6 .wrapper {
        width: 970px;
    }

    #index-body .init-1 .categories .right ul {
        padding-left: 50px;
    }

    #index-body .init-1 .categories .right ul li .box .xh {
        left: -96px;
    }

    #index-body .init-1 .categories .right ul li .box .imgBox {
        padding: 0 18px;
    }

    #index-body .init-1 .categories .right ul li .box .txt-box {
        padding: 30px;
        padding-top: 130px;
    }

    #index-body .init-1 .categories .left .linebg {
        padding-bottom: 70px;
    }

    #index-body .init-2 .top .right h1 {
        max-height: 114px;
        overflow-y: auto;
    }

    #index-body .init-3 .advantages {
        padding: 30px;
    }

    #index-body .init-3 .advantages .center {
        width: 54%;
    }

    #index-body .init-4 .bottom ul li .box .txtBox {
        padding: 20px 20px 20px 15px;
        width: 80%;
    }

    #index-body .init-4 .bottom ul li .box .txtBox .btn-jt {
        width: 45px;
        height: 45px;
    }

    #index-body .init-5 .right {
        width: 60%
    }

    #index-body .init-5 .right .top {
        padding-left: 30px;
    }

    #index-body .init-5 .right .top .mktit h2 {
        line-height: 1.1;
    }

    #index-body .init-5 .left {
        width: 40%
    }

    #index-body .init-5 .right .page .slickBtn div {
        width: 45px;
        height: 45px;
    }

    #index-body .init-6 .news-list .box .con {
        padding: 70px 50px;
    }

    #footer .txt-bg {
        font-size: 50px;
    }

    #footer .footer-center .footer-t .footer-t-gird .t-list {
        padding-right: 5px;
    }

    #footer .footer-center .footer-t .right .f-form {
        padding: 90px 15px;
    }
}

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

    #index-body .init-6 .wrapper {
        width: 700px;
    }

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

    #index-body .init-1 .categories .left .linebg {
        padding-right: 0;
        padding-bottom: 60px;
        background-image: none !important;
    }

    .mktit .desc {
        max-width: 100%;
    }

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

    #index-body .init-1 .categories .right ul {
        padding-left: 0;
    }

    #index-body .init-1 .categories .right ul li .box .xh {
        display: none;
    }

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

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

    #index-body .init-2 .top .right h1 {
        max-height: none;
        overflow-y: hidden;
    }

    #index-body .init-2 .bottom ul {
        margin: 0 -15px;
    }

    #index-body .init-2 .bottom ul li {
        width: 50%;
        padding: 15px;
    }

    #index-body .init-3 .advantages .center {
        display: none;
    }

    #index-body .init-3 .advantages {
        margin: 5% -15px 0;
    }

    #index-body .init-3 .advantages ul {
        width: 50%;
        padding: 0 15px;
    }

    #index-body .init-3 .advantages ul li.num2 .box {
        flex-direction: column;
    }

    #index-body .init-5 .right {
        width: 100%
    }

    #index-body .init-5 .left {
        display: none
    }

    #index-body .init-5 {
        padding: 50px 0
    }

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

    #index-body .init-5 .right .box2 .content .more {
        margin-top: 8%;
    }

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

    #index-body .init-6 .newsbox {
        padding-right: 0;
    }

    #index-body .init-6 .news-list {
        padding-right: 0;
        border-radius: 46px;
    }

    #index-body .init-6 .news-list .box .con {
        padding: 50px 30px;
    }

    #index-body .init-6 .news-list .btn-box {
        bottom: 10%;
    }

    #index-body .init-6 .news-list .btn-box .swiper-button {
        width: 50px;
        height: 50px;
    }

    #footer .txt-bg {
        font-size: 2.2rem;
    }

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

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

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

    #footer .footer-center .footer-t .right {
        width: 100%;
        margin-top: 5%;
    }

    #footer .footer-center .footer-t {
        flex-wrap: wrap;
    }

    #footer .footer-center .footer-t .right .f-form {
        padding: 40px 15px;
    }
}

@media (max-width: 700px) {
    .btn-go .rs-txt {
        padding: 10px 22px;
    }

    .btn-go .rs-ico {
        width: 45px;
        height: 45px;
    }

    #banner .swiper-button {
        display: none;
    }

    #banner .banner-content .swiper-slide .txt-content h3 {
        padding-left: 0;
    }

    #banner .banner-content .swiper-tool-box {
        display: none;
    }

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

    #index-body .init-1 .categories .left .linebg {
        padding-bottom: 30px;
    }

    #index-body .init-3 .advantages {
        padding: 20px 0;
        flex-wrap: wrap;
    }

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

    #index-body .init-3 .advantages ul li .box .xh {
        display: none;
    }

    #index-body .init-4 .top .swiper-button {
        width: 45px;
        height: 45px;
    }

    #index-body .init-4 .top {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer .txt-bg {
        font-size: 3rem;
    }

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

@media (max-width: 500px) {
    .btn-go .rs-ico {
        width: 50px;
        height: 50px;
    }

    .btn-go .rs-txt {
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #index-body .init-5 .bottom ul li {
        width: 100%;
    }

    #index-body .init-5 .list li .text {
        margin-bottom: 0
    }

    #index-body .init-5 .list li a.more {
        display: none
    }

    #index-body .init-6 .news-list .btn-box {
        right: 1%;
    }

    #index-body .init-6 .news-list .box .con {
        padding: 30px 15px;
    }

    #footer .footer-center .footer-t .right .f-form form ul li {
        width: 100%;
    }

}

.oxy-nav-menu .mb2-search input[type=submit] {
    background-image: url(../images/icon-search-white.png);
}

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

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

.grid-box .column {
    display: inline-block;
    font-size: 12px;
    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%;
    }

}

.t_1 {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.flex_cont {
    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
}

.flex_a_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.flex_j_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@keyframes round_translate1 {
    0% {
        right: 75%;
    }

    74.99% {
        opacity: 1;
    }

    75% {
        right: -25%;
        top: 100%;
        opacity: 0;
    }

    75.05% {
        right: 100%;
        opacity: 0;
    }

    75.1% {
        opacity: 1;
    }

    100% {
        right: 75%;
    }
}

@keyframes round_translate2 {
    0% {
        right: 40%;
    }

    64.99% {
        opacity: 1;
    }

    65% {
        right: -30%;
        opacity: 0;
    }

    65.05% {
        right: 100%;
        opacity: 0;
    }

    65.1% {
        opacity: 1;
    }

    100% {
        right: 40%;
    }
}

@keyframes round_translate3 {
    0% {
        right: 0;
    }

    9.99% {
        opacity: 1;
    }

    10% {
        right: -25%;
        opacity: 0;
    }

    10.05% {
        right: 100%;
        opacity: 0;
    }

    10.1% {
        opacity: 1;
    }

    100% {
        right: 0;
    }
}

.inner-banner {
    height: 250px;
    width: 100%;
    margin: 100px auto 0;
    overflow: hidden;
    position: relative;
}

.inner-banner::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    position: absolute;
    bottom: 0;
    right: 100%;
    height: 200%;
    background-color: rgba(11, 105, 170, 0.9);
    border-radius: 9999px;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%);
    -webkit-animation: round_translate2 12s linear infinite;
    -moz-animation: round_translate2 12s linear infinite;
    animation: round_translate2 12s linear infinite;
    z-index: 10;
}

.inner-banner .inner-content {
    width: 100%;
    height: 100%;
    background: url("../images/in-banner.png") no-repeat;
    background-size: cover;
    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;
    position: relative;
}

.inner-banner .inner-content::before {
    content: "";
    display: block;
    aspect-ratio: 1;
    position: absolute;
    top: 0;
    right: 100%;
    height: 200%;
    background-color: rgba(45, 50, 121, 0.9);
    border-radius: 9999px;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-animation: round_translate1 12s linear infinite;
    -moz-animation: round_translate1 12s linear infinite;
    animation: round_translate1 12s linear infinite;
}

.inner-banner .inner-content::after {
    content: "";
    display: block;
    aspect-ratio: 1;
    position: absolute;
    top: 50%;
    right: 100%;
    height: 200%;
    background-color: rgba(39, 68, 151, 0.9);
    border-radius: 9999px;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-animation: round_translate3 12s linear infinite;
    -moz-animation: round_translate3 12s linear infinite;
    animation: round_translate3 12s linear infinite;
}

.inner-banner .mbx {
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
}

.inner-banner .mbx h2 {
    font-size: 44px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: Unbounded;
}

.inner-banner .mbx p {
    font-size: 16px;
    line-height: 32px;
}

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

@media (max-width: 1000px) {
    .inner-banner {
        width: 100%;
    }

    .inner-banner .mbx h2 {
        font-size: 24px;
        padding: 0 15px;
        line-height: 38px;
    }

    .inner-banner .mbx p {
        padding: 0 15px;
    }
}




.inner-page .m-page {
    text-align: center;
    margin-top: 97px
}

.inner-page .m-page a,
.inner-page .m-page span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
    border: 1px solid #999;
    margin-right: 5px;
}

.inner-page .m-page a.next {
    margin-left: 20px;
}

.inner-page .m-page a:hover,
.inner-page .m-page span.current {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: #fff;
    border: 1px solid var(--color);
}

@media screen and (max-width: 1000px) {
    .inner-page .m-page {
        margin-top: 40px;
    }

}

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

.product-yd-page .init-1 .container ul li .box {
    border-top: 1px solid #e2e2e2;
    padding: 60px 0;
}

.product-yd-page .init-1 .container ul li .box .left {
    width: 60%;
    padding-right: 40px;
}

.product-yd-page .init-1 .container ul li .box .left .title {
    font-weight: bold;
    display: block;
    font-size: 50px;


}

.product-yd-page .init-1 .container ul li .box .left .title:hover {
    color: var(--color);
}

.product-yd-page .init-1 .container ul li .box .left .des {
    color: #666;
    margin-top: 20px;
    /*font-weight: 500;*/
    overflow-y: scroll;
    max-height: 250px;
    line-height: 32px;
}

.product-yd-page .init-1 .container ul li .box .left .more {
    margin-top: 30px;
}

.product-yd-page .init-1 .container ul li .box .right {
    width: 40%;
    text-align: right;
}

.product-yd-page .init-1 .container ul li .box .right img {
    width: auto;
}

.product-yd-page .init-1 .container ul li:last-child .box {
    border-bottom: 1px solid #e2e2e2;
}

@media screen and (max-width: 1200px) {
    .product-yd-page .init-1 .container ul li .box .left .title {
        font-size: 36px;
    }
}

@media (max-width: 1000px) {
    .product-yd-page .init-1 .container ul li .box .left {
        width: 100%;
        padding-right: 0;
    }

    .product-yd-page .init-1 .container ul li .box .right {
        width: 100%;
    }

    .product-yd-page .init-1 .container ul li .box .right {
        margin-top: 20px;
    }

    .product-yd-page .init-1 .container ul li .box .left .title {
        font-size: 32px;
    }
}

@media screen and (max-width:700px) {
    .product-yd-page .init-1 .container ul li .box .left .title {
        font-size: 24px;
    }
}

@media screen and (max-width: 500px) {
    .product-yd-page .init-1 .container ul li .box .left .title {
        font-size: 20px;
    }
}



.product-page {
    padding: 100px 0 100px 0;
    min-height: 80vh;
}

.product-page .pro-box .product-right {
    width: -webkit-calc(100% - 340px);
    width: -moz-calc(100% - 340px);
    width: calc(100% - 340px);
    padding-left: 35px;
    margin-left: auto;
}

.product-page .pro-box .product-right ul {
    margin: 0 -12px;
}

.product-page .pro-box .product-right ul li {
    padding: 0 12px;
    margin-bottom: 30px;
}

.product-page .pro-box .product-right ul li:hover .img-box {
    border: 1px solid var(--color);
}

.product-page .pro-box .product-right ul li .img-box {
    width: 100%;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.product-page .pro-box .product-right .text {
    margin-bottom: 30px;
}

.product-page .pro-box .product-right .text h1 {
    font-size: 30px;

    margin-bottom: 10px;
}

.product-page .pro-box .product-right .text p {
    font-size: 16px;
    color: #666;
    line-height: 32px;
}

.product-page .pro-box .product-right ul li .img-box:hover .icon {
    opacity: 1;
}

.product-page .pro-box .product-right ul li .img-box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.product-page .pro-box .product-right ul li .img-box .icon a {
    margin: 0 4px;
    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;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.product-page .pro-box .product-right ul li .img-box .icon a img {
    -webkit-filter: invert(0);
    filter: invert(0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: scale(1);
}
.product-page .pro-box .product-right ul li .img-box .icon a img.hover{
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-page .pro-box .product-right ul li .img-box .icon a:hover .cur,
.product-page .pro-box .product-right ul li .img-box .icon a.active .cur {
    opacity: 0;
}

.product-page .pro-box .product-right ul li .img-box .icon a:hover .hover,
.product-page .pro-box .product-right ul li .img-box .icon a.active .hover {
    opacity: 1;
}

.product-page .pro-box .product-right ul li .img-box .img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, .2);
}

.product-page .pro-box .product-right ul li h4 {
    font-size: 20px;

    text-align: center;
    padding: 0 25px;
    margin-top: 15px;
    transition: all 0.5s;
    font-weight: 700;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-page .pro-box .product-right ul li h4:hover {
    color: var(--color);
}

@media screen and (max-width: 1400px) {
    .product-page .pro-box .product-right ul li h4 {
        font-size: 18px;
    }
}

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

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

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

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

@media screen and (max-width: 500px) {
    .product-page .pro-box .product-right .text h3 {
        font-size: 20px;
    }

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


.pro-box .pro-left {
    width: 340px;
    position: sticky;
    top: 130px;
    float: left;
}

.pro-box .pro-left .menus {

    margin-bottom: 50px;
}

.pro-box .pro-left .menus>li {
    border-radius: 5px;
    border-top: none;
    margin-bottom: 10px;
}

.pro-box .pro-left .menus>li:last-child {
    margin-bottom: 0;
}

.pro-box .pro-left .menus>li.active .menu-a span,
.pro-box .pro-left .menus>li:hover .menu-a span {
    right: 0;
}

.pro-box .pro-left .menus>li.active .menu-a a,
.pro-box .pro-left .menus>li:hover .menu-a a,
.pro-box .pro-left .menus>li.active .menu-a i,
.pro-box .pro-left .menus>li:hover .menu-a i {
    color: white;
}

.pro-box .pro-left .menus>li.active .menu-a i {
    transform:translateY(-50%) rotate(-90deg);
   
}

.pro-box .pro-left .menus>li .menu-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;
    height: 60px;
    padding: 0 70px 0 27px;

    font-size: 18px;
    /*text-transform: uppercase;*/
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
    z-index: 5;
}

.pro-box .pro-left .menus>li .menu-a span {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    right: -webkit-calc(100% - 8px);
    right: -moz-calc(100% - 8px);
    right: calc(100% - 8px);
    top: 0;
    /*background-color: var(--color);*/
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    z-index: -1;
}

.pro-box .pro-left .menus>li .menu-a i {
    position: absolute;
    right: 27px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 24px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.pro-box .pro-left .menus>li .sub-menu {
    padding: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    margin-top: -3px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    display: none;
    /*box-shadow: 0px -0.4px 6px 1px rgb(0 0 0 / 8%);*/
}

.pro-box .pro-left .menus>li .sub-menu li {
    padding: 5px 30px;
}

.pro-box .pro-left .menus>li .sub-menu li a {
    font-size: 18px;
    color: #666;
    transition: all 0.5s;
}

.pro-box .pro-left .menus>li .sub-menu li a:hover {
    color: var(--color);
}

.pro-box .pro-left .menus>li .sub-menu li.active a {
    color: var(--color);
}

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



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

.prodet-page .prodet-right {
    width: -webkit-calc(100% - 340px);
    width: -moz-calc(100% - 340px);
    width: calc(100% - 340px);
    padding-left: 65px;
}

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

.prodet-page .prodet-right .box .left {
    width: 46.5%;
}

.prodet-page .prodet-right .box .left .smallImg ul {
    margin: 0 -5px;
}

.prodet-page .prodet-right .box .left .smallImg ul li {
    padding: 0 5px;
}

.prodet-page .prodet-right .box .left .smallImg ul li .img_box {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.5s;
}

.prodet-page .prodet-right .box .left .smallImg ul li.active .img_box {
    border: 1px solid var(--color);
}

.prodet-page .prodet-right .box .right {
    width: 53.5%;
    padding-left: 50px;
}

.prodet-page .prodet-right .box .right .det.max-h {
    max-height: 360px;
    overflow-y: auto;
}

.prodet-page .prodet-right .box .right .det table {
    margin-bottom: 0;
}

.prodet-page .prodet-right .box .right .det ul li {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.prodet-page .prodet-right .box .right .det ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 10px;
}

.prodet-page .prodet-right .box .right .det2 ul {
    display: flex;
}

.prodet-page .prodet-right .box .right .det2 ul li {
    margin-right: 15px;
    font-size: 90px;
}

.prodet-page .prodet-right .box .right h1 {
    font-size: 35px;
    font-weight: bold;

}

.prodet-page .prodet-right .box .right .det {
    color: #666;
    line-height: 2;

}

.prodet-page .prodet-right .box .right .line {
    width: 100%;
    border-radius: 35px;
    height: 10px;
}

.prodet-page .prodet-right .box .right .btn {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.prodet-page .prodet-right .box .right .Auxil-through {
    color: #666;
}


.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 10px;
    position: relative;
    cursor: pointer;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box.no_img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box.no_img {
    border-color: transparent;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev:hover .img_box .link,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover .img_box .link {
    opacity: 1;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev .img_box .img,
.prodet-page .prodet-right .box .right .Auxil-through .next .img_box .img {
    border-radius: 5px;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev p,
.prodet-page .prodet-right .box .right .Auxil-through .next p {
    color: #000;
    transition: all 0.5s;
    cursor: pointer;
    opacity: 0;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev p:hover,
.prodet-page .prodet-right .box .right .Auxil-through .next p:hover {
    color: var(--color);
    opacity: 1;
}

.prodet-page .prodet-right .box .right .Auxil-through .prev:hover p,
.prodet-page .prodet-right .box .right .Auxil-through .next:hover p {
    opacity: 1;
}

.prodet-page .prodet-right .box .right .btn .product_add {
    position: relative;
}

.prodet-page .prodet-right .box .right .btn .product_add .fly_love {
    display: none;
    z-index: 204;
    transition: all 0.5s;
}

.prodet-page .prodet-right .box .right .btn .product_add .love {
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s;
}

.prodet-page .prodet-right .box .right .btn .product_add .collect {
    opacity: 1;
    transition: all 0.5s;
}

.prodet-page .prodet-right .box .right .btn .product_add.active .love {
    opacity: 1;
}

.prodet-page .prodet-right .box .right .btn .product_add.active .collect {
    opacity: 0;
}

.prodet-page .prodet-right .prodet-title {
    margin: 100px 0 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.prodet-page .prodet-right .prodet-content {
    padding-bottom: 60px;
    color: #666;
    font-size: 16px;

}

.prodet-page .prodet-right .prodet-title ul {
    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;
}

.prodet-page .prodet-right .prodet-title ul li {
    padding: 10px 20px;
    margin: 0 40px;
    position: relative;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.prodet-page .prodet-right .prodet-title ul li:before {
    content: "";
    display: block;
    position: absolute;
    width: 28px;
    height: 22px;
    background: url("../images/nav-tag.png") no-repeat;
    left: 2px;
    top: -6px;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.prodet-page .prodet-right .prodet-title ul li.active {
    border-bottom: 2px solid var(--color);
}

.prodet-page .prodet-right .prodet-title ul li.active:before {
    opacity: 1;
}

.prodet-page .prodet-right .prodet-content .det table {
    table-layout: fixed;
}

.prodet-page .prodet-right .prodet-content .det table tr:nth-child(odd) {
    background-color: #ecf3f5;
}
.prodet-page .prodet-right .prodet-content .det table tr:nth-child(even){
    background-color: #ecf3f5;
}

.prodet-page .prodet-right .prodet-content .det table tr td {
    font-size: 16px;
    color: #666;
    text-align: center;
}

.prodet-page .prodet-right .prodet-content .det form {
    margin-top: 50px;
    /*padding: 10px;*/
    background: #fff;
    /*box-shadow: #ccc 0 0 10px 0;*/
}

.prodet-page .prodet-right .prodet-content .det form ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.prodet-page .prodet-right .prodet-content .det form ul li {
    margin-top: 18px;
    width: 49.5%;
    display: inline-block;
}

.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) {
    width: 100%;
}

.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(5) textarea {
    width: 100%;
    border: #ccc solid 1px;
    padding: 10px;
    font-size: 16px;
}

.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) {
    width: 100%;
}

.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: #fff;
    transition: all .5s;
}

.prodet-page .prodet-right .prodet-content .det form ul li:nth-child(6) input:hover {
    background: #000;
}

.prodet-page .prodet-right .prodet-content .det form ul li input {
    padding: 15px;
    border: #ccc solid 1px;
    width: 100%;
    font-size: 16px;
}

@media screen and (max-width: 1600px) {
    .prodet-page .prodet-right .box .right .Auxil-through .next {
        margin-top: 30px;
    }

    .prodet-page .prodet-right .box .right .Auxil-through .next .next-t {
        flex-direction: row-reverse;
    }

    .prodet-page .prodet-right .box .right .Auxil-through .next .next-t span {
        margin-right: 0;
        margin-left: 10px;
    }
}

@media screen and (max-width: 1400px) {
    .prodet-page .prodet-right .box .right h1 {
        font-size: 26px;
    }

}

@media screen and (max-width: 1250px) {
    .prodet-page .prodet-right .box .left {
        width: 100%;
        margin-bottom: 60px;
    }

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

    .prodet-page .prodet-right .box .left .bigImg ul li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .prodet-page .prodet-right .box .right {
        padding-left: 0;
    }

    .prodet-page .prodet-right .prodet-title ul li {
        margin: 0 15px;
        font-size: 20px;
    }

    .prodet-page .prodet-right .prodet-title {
        margin: 60px 0 30px 0;
    }

}


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

    .prodet-page .prodet-right .box .right .line img {
        width: 100%;
    }

    .prodet-page .prodet-right .box .right .btn a:first-child {
        display: none;
    }

    .prodet-page .prodet-right .box .right .btn a:last-child {
        margin-left: 0;
    }
}

@media screen and (max-width:700px) {
    .prodet-page .prodet-right .prodet-title ul li {
        margin: 0 5px;
        font-size: 18px
    }

    .prodet-page .prodet-right .prodet-content .det form ul li {
        width: 100%;
    }

    .prodet-page .prodet-right .prodet-content {
        padding-bottom: 30px;
    }

    .prodet-page .prodet-right .prodet-title {
        margin: 20px 0 20px 0;
    }
}

@media screen and (max-width: 500px) {
    .prodet-page .prodet-right .prodet-title ul li {
        width: 100%;
        margin-bottom: 5px;
        padding-left: 10px;
    }

    .prodet-page .prodet-right .box .right h2 {
        font-size: 20px;
    }

    .prodet-page .prodet-right .prodet-content .det form {
        margin-top: 0;
    }
}

.flex-box {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}


.recommended-product {
    padding: 90px 0;
    background-color: #f9f9f9;
}

.recommended-product ul {
    margin: 60px -24px 0;
}

.recommended-product ul li {
    padding: 0 24px;
}

.recommended-product ul li .img_box {
    width: 100%;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.recommended-product ul li .img_box:hover .icon {
    opacity: 1;
}

.recommended-product ul li .img_box .icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
}

.recommended-product ul li .img_box .icon a {
    margin: 0 4px;
    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;
    width: 45px;
    height: 45px;
    border-radius: 5px;
    background-color: white;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;position: relative;
}

.recommended-product ul li .img_box .icon a img {
    -webkit-filter: invert(0);
    filter: invert(0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    transform: scale(1);
}

.recommended-product ul li .img_box .icon a img.hover{
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

.recommended-product ul li .img_box .icon a:hover .cur{
    opacity: 0;
}

.recommended-product ul li .img_box .icon a:hover .hover{
   opacity: 1;
}



.recommended-product ul li .img_box .img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.recommended-product ul li h4 {
    font-size: 20px;

    text-align: center;
    padding: 0 25px;
    margin-top: 15px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 1250px) {
    .recommended-product {
        padding: 60px 0;
    }
}

@media screen and (max-width: 700px) {
    .recommended-product {
        padding: 30px 0;
    }
}



.news-page .sidebar-box .sidebar-left {
    width: 28%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    padding-right: 45px;
}

.news-page .sidebar-box .sidebar-left .inner {
    max-width: 375px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-title {
    font-size: 20px;

    line-height: 2;
    color: #000;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    font-weight: 600;
}

.news-page .sidebar-box .sidebar-left .inner .inner-search {
    margin-bottom: 40px;
}

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

.news-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
    width: 100%;
    height: 43px;
    border: 1px solid #eee;
    padding: 10px 20px;
    padding-right: 50px;
    font-size: 14px;
    color: #555555;
}

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

.news-page .sidebar-box .sidebar-left .inner .inner-cat {
    margin-bottom: 40px;
    padding-right: 5px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li {
    position: relative;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
    display: block;
    padding: 8px 0;

    font-size: 16px;
    font-weight: 600;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    line-height: 2;
    word-break: break-all;
    position: relative;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i {
    position: absolute;
    font-size: 18px;
    right: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    text-align: center;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
    color: #aaa;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover {
    color: var(--color);
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
    color: var(--color);
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>a {
    color: var(--color);
}

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

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li {
    margin-left: 10px;
    color: #7b7b7b;
}

.news-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li a {
    font-size: 16px;
    line-height: 40px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-recent {
    margin-bottom: 40px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
    padding: 15px 0;
}

.news-page .sidebar-box .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;
}

.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
    margin-right: 20px;
}

.news-page .sidebar-box .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;
}

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

.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
    color: #000;
    font-weight: 600;

    font-size: 14px;
    line-height: 28px;
    display: -webkit-box;
    margin-bottom: 8px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
    color: var(--color);
}

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

.news-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
    padding-bottom: 0;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact {
    background: url(../images/ny-bg.jpg) no-repeat center center;
    padding: 215px 30px 30px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: bold;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
    font-size: 18px;

    font-weight: 600;
    line-height: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2 {
    font-weight: 700;

    cursor: pointer;
    color: #fff;
    line-height: 1.3;
    padding: 12px 24px;
    background-color: var(--color);
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2 .img {
    width: 14px;
    height: 14px;
    margin-left: 12px;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2:hover {
    background: #000;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more2:hover .img {
    transform: rotate(45deg);
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
    display: block;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more {
    color: #fff;
}

.news-page .sidebar-box .sidebar-left .inner .inner-contact .more:hover {
    color: var(--color);
}

.news-page .sidebar-box .sidebar-right {
    width: 72%;
}

.news-page .news-list ul {
    margin: -30px -15px 0;
}

.news-page .news-list ul>p {
    font-size: 20px;
    margin: 20px;
    letter-spacing: 0;
}

.news-page .news-list ul li {
    padding: 0 25px;
    margin-bottom: 30px;
}

.news-page .news-list ul li .box .img img {
    width: 100%;
}

.news-page .news-list ul li .box .content .cat_name {
    background-color: #b3b3b3;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
    padding: 5px 15px;
    margin-top: 20px;

    line-height: 2;
}

.news-page .news-list ul li .box .content .title {
    font-weight: 600;

    margin-top: 20px;
    font-size: 24px;
    min-height: 4em;



}

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

.news-page .news-list ul li .box .content .time {
    font-size: 14px;
    /*font-weight: 500;*/
    /*line-height: 30px;*/
    color: var(--color);
    display: inline-block;
    /*margin-top: 5px;*/
}

.news-page .news-list ul li .box .content .des {
    font-size: 16px;
    /*font-weight: 500;*/
    color: #666;
    margin-top: 6px;
    line-height: 1.8;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 3;
 -webkit-box-orient: vertical;
}

.newdet-page {
    padding: 0 0 150px;
}

.newdet-page .header {
    max-width: 1520px;
    width: 100%;
    padding: 55px;
    background: #fff;
    margin: 0 auto;
    text-align: center;
}

.newdet-page .header .categoty {
    display: inline-block;
    font-size: 16px;
    color: #fff;

    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    padding: 5px 15px;
    text-transform: uppercase;
}

.newdet-page .header h1 {
    font-size: 48px;
    line-height: 1.4;
    margin: 20px 71px 0;

}

.newdet-page .header .post_meta {
    margin-top: 26px;
    font-weight: 500;
}

.newdet-page .header .post_meta span {
    display: inline-block;
    vertical-align: middle;
}

.newdet-page .header .post_meta .post_author_avatar {
    margin-right: 11px;
}

.newdet-page .header .post_meta .photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.newdet-page .header .post_meta .post_author_name {
    font-size: 16px;
    line-height: 1;
}

.newdet-page .header .post_meta .post_author {
    display: inline-block;
    vertical-align: middle;
}

.newdet-page .header .post_meta .post_author::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    background: #7b7b7b;
    border-radius: 50%;
    margin: 0 10px 0;
}

.newdet-page .header .post_meta .post_date {
    font-size: 16px;
    color: #7b7b7b;
}

.newdet-page .header .post_meta .post_date::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: -6px 10px 0;
}

.newdet-page .header .post_meta .post_meta_number {
    font-size: 14px;
    color: #83827f;
}

.newdet-page .content {
    margin-top: 40px;
    /*font-weight: 500;*/
    font-size: 16px;
    line-height: 32px;
    color: #666;
}

.newdet-page .share {
    max-width: 1520px;
    width: 100%;
    margin: 40px auto 0;
    padding: 28px 0;
    border-top: 1px solid #d1d0c8;
    border-bottom: 1px solid #d1d0c8;
    text-align: right;

}

.newdet-page .share a {
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    font-size: 20px;
    background: #fff;
    margin: 3px 0 3px 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

.newdet-page .share a:first-child {
    margin-left: 0;
}

.newdet-page .share a:nth-child(1) {
    color: #fff;
}

.newdet-page .share a:nth-child(2) {
  
    color: #fff;
}

.newdet-page .share a:nth-child(3) {

    color: #fff;
}

.newdet-page .share a:nth-child(4) {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: #fff;
}

.newdet-page .share a:nth-child(5) {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: #fff;
}

.newdet-page .share a:hover {
    margin-top: -3px;
}

.newdet-page .m-link {
    margin: 40px auto 0;
}

.newdet-page .m-link a {
    display: inline-block;
    vertical-align: top;
    width: 49%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.newdet-page .m-link a em {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    color: #7b7b7b;
}

.newdet-page .m-link a:first-child i {
    margin-right: 10px;
}

.newdet-page .m-link a:last-child {
    text-align: right;
}

.newdet-page .m-link a:last-child i {
    margin-left: 10px;
}

.newdet-page .m-link a span {
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;

}

.newdet-page .m-link a:hover {
    color: #000;
}

.newdet-page .prodet-page {
    padding: 0;
}

.newdet-page .prodet-2 {
    max-width: 1520px;
    width: 100%;
    margin: 0 auto;
}

.newdet-page .prodet-2 .ret .slide .con .right {
    padding: 0;
}

.newdet-page .prodet-3 {
    margin: 0 auto;
}

.releted-product .tipsTitle {
    font-weight: 700;
    text-align: center;

}

.releted-product .content ul {
    margin: 0 -15px;
}

.releted-product .content ul li {
    padding: 0 15px;
}

.releted-product .content ul li .img a {
    border: 1px solid #dadada;
    height: 316px;
    background: #fff;
}

.releted-product .content ul li .img a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.releted-product .content ul li .text {
    margin-top: 20px;
    font-weight: 600;

    color: #000;
}

.releted-product .content ul li .text:hover {
    color: var(--color);
}

@media (max-width: 1250px) {
    .releted-product .content ul li .img a {
        height: auto;
    }
}

@media (max-width: 1250px) {

    .newdet-page .header h1 {
        font-size: 50px;
        margin: 20px 40px 0;
    }

}

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

    .newdet-page .header h1 {
        font-size: 40px;
        margin: 20px 27px 0;
    }
}

@media (max-width: 700px) {
    .newdet-page {
        padding: 30px 0;
    }

    .newdet-page .header {
        padding: 30px 20px;
    }

    .newdet-page .header h1 {
        font-size: 34px;
        margin: 20px 20px 0;
    }

    .newdet-page .content {
        margin-top: 20px;
    }

    .newdet-page .share {
        margin: 20px auto 0;
    }

    .newdet-page .m-lin {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .newdet-page .header h1 {
        font-size: 24px;
        margin: 20px 0px 0;
    }

    .newdet-page .content {
        font-size: 16px;
        line-height: 30px;
    }

    .newdet-page .m-link a {
        display: block;
        width: 100%;
    }

    .newdet-page .m-link a:last-child {
        text-align: left;
        margin-top: 20px;
    }

    .news-page .news-list ul li .box .content .title {
        min-height: unset;
        

    }
}



.inner-page .sidebar-box .sidebar-left {
    width: 28%;
    position: sticky;
    top: 130px;
    padding-right: 45px;
    margin-top: 60px;
}

.inner-page .sidebar-box .sidebar-left .inner {
    max-width: 375px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-title {
    font-size: 20px;
    line-height: 2;
    color: #000;
    text-transform: capitalize;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
    font-weight: bold;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-search {
    margin-bottom: 40px;
}

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

.inner-page .sidebar-box .sidebar-left .inner .inner-search form input[type="text"] {
    width: 100%;
    height: 43px;
    border: 1px solid #eee;
    padding: 10px 20px;
    padding-right: 50px;
    font-size: 14px;
    color: #555555;
}

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

.inner-page .sidebar-box .sidebar-left .inner .inner-cat {
    margin-bottom: 40px;
    /*max-height: 3300px;
    overflow-y: auto;*/
    padding-right: 5px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a {
    padding: 8px 0;
    font-size: 16px;
    /*font-weight: bold;*/
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    line-height: 2;
    word-break: break-all;
    position: relative;
    color: #666;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a i {
    float: right;
    position: relative;
    top: 1px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a span {
    color: #aaa;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a:hover,
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li a.active {
    color: var(--color);
}

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

/*.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul > li > ol{
    display: none;
  }*/
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul li.active>ol {
    display: block;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol{
    display: none;
}
.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li {
    /*list-style-type: disc;*/
    margin-left: 10px;
    color: #7b7b7b;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-cat ul>li>ol>li a {
    font-size: 16px;
    line-height: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent {
    margin-bottom: 40px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li {
    padding: 15px 0;
}

.inner-page .sidebar-box .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;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-img {
    margin-right: 20px;
}

.inner-page .sidebar-box .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;
}

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

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p {
    color: #000;
    /*font-weight: bold;*/
    font-size: 16px;
    display: -webkit-box;
    margin-bottom: 8px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li a .r-text p:hover {
    color: var(--color);
}

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

.inner-page .sidebar-box .sidebar-left .inner .inner-recent ul li:last-child {
    padding-bottom: 0;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact {
    background: url(/tbmcrane/2025/08/08/newsside.jpg?imageView2/2/format/webp/q/100) no-repeat center center;
    padding: 215px 40px 30px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h5 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: bold;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 {
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.inner-page .sidebar-box .sidebar-left .inner .inner-contact h6 span {
    display: block;
}

.inner-page .sidebar-box .sidebar-right {
    width: 72%;
    margin-top: 60px;
}

.inner-page.product2-page .sidebar-left {
    padding-right: 45px;

}

@media screen and (max-width: 1250px) {
    .inner-page .sidebar-box .sidebar-left .inner .inner-contact {
        padding: 90px 30px 30px;
    }
}

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

    .inner-page .sidebar-box .sidebar-right {
        width: 100%;
    }
}



.case-page .init-1 ul {
    margin: 60px -15px 0;
}

.case-page .init-1 ul>p {
    font-size: 16px;
    letter-spacing: 0;
    margin: 20px;
}

.case-page .init-1 ul li {
    padding: 0 15px;
    margin-top: 30px;
}

.case-page .init-1 ul li .box {
    position: relative;
}

.case-page .init-1 ul li .box .img {
    display: block;
    overflow: hidden;
}

.case-page .init-1 ul li .box {
    position: relative;
    z-index: 2;
}

.case-page .init-1 ul li .box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: 2;
}

.case-page .init-1 ul li .box .cont {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 20px 40px;
    width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, .5);
}

.case-page .init-1 ul li .box .cont .sub {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    transition: all .5s;
   background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    transform: scaleX(0);
    z-index: -1;
    transform-origin: left;
}

.case-page .init-1 ul li .box .cont .cat {
    font-size: 16px;
    font-weight: 500;
}

.case-page .init-1 ul li .box .cont .title {
    font-weight: 700;

    font-size: 20px;
    margin-top: 6px;
    display: block;
    max-width: 400px;
}

.case-page .init-1 ul li .box .cont .moreC {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #fff;
}

.case-page .init-1 ul li .box .cont .moreC .more {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-page .init-1 ul li .box .cont .moreC .more:before {
    background: #fff;
}

.case-page .init-1 ul li .box .cont .moreC .more i {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    transition: all .5s;
    font-size: 36px;

}

.case-page .init-1 ul li .box .cont .moreC .more i.i1 {
    left: -50px;
    color: #000;
}

.case-page .init-1 ul li .box:hover .cont .sub {
    transform: scaleX(1);
}

.case-page .init-1 ul li .box:hover .cont .moreC .more i {
    transform: translateX(50px);
    color: #000;
}

@media (max-width: 1000px) {
    .case-page .init-1 ul li .box .cont {
        padding: 20px 10px;
    }

    .case-page .init-1 ul li .box .cont .moreC {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 700px) {
    .case-page .init-1 ul {
        margin: 30px -15px 0;
    }
}

@media (max-width: 500px) {
    .case-page .init-1 ul {
        margin-top: 20px;
    }

}


.gallery-page .init-1 .container .cont {
    border-bottom: 1px solid #d2d2d2;
}

.gallery-page .init-1 .container .cont li {
    margin-right: 40px;
}

.gallery-page .init-1 .container .cont li:last-child {
    margin-right: 0;
}

.gallery-page .init-1 .container .cont li .box a {
    padding: 8px 20px;

    font-size: 20px;
    display: block;
    position: relative;
    font-weight: 600;
}

.gallery-page .init-1 .container .cont li .box a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #bf0000;
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    -o-transform-origin: left;
    transform-origin: left;
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}

.gallery-page .init-1 .container .cont li .box a.active::before,
.gallery-page .init-1 .container .cont li .box a:hover::before {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

.gallery-page .init-2 {
    padding-top: 60px;
    background: #ecf3f5;
}

.gallery-page .init-2 .container ul {
    margin: 0 -25px;
}

.gallery-page .init-2 .container ul>p {
    font-size: 16px;
    letter-spacing: 0;
    margin: 20px;
}

.gallery-page .init-2 .container ul li {
    margin-top: 50px;
    padding: 0 25px;
}

.gallery-page .init-2 .container ul li .box video {
    display: block;
    width: 100%;
}

.gallery-page .init-2 .container ul li .box .title {
    /*font-weight: 600;*/
    text-align: center;
    margin-top: 16px;
    color: #666;

}

.gallery-page .init-2 .container ul li .box .img {
    position: relative;
    display: block;
}

.gallery-page .init-2 .container ul li .box .img img {
    width: 100%;
    border-radius: 10px;
   
}

.gallery-page .init-2 .container ul li .box .img::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.gallery-page .init-2 .container ul li .box:hover .img::before {
    -webkit-animation: circle 0.75s;
    -moz-animation: circle 0.75s;
    -o-animation: circle 0.75s;
    animation: circle 0.75s;
    -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3sease;
    -o-transition: all 0.3sease;
    -moz-transition: all 0.3sease;
    transition: all 0.3sease;
}

.gallery-page.Partner .init-2 .container ul li {
    width: 20%;
}


@media (max-width: 1000px) {
    .gallery-page .init-1 {
        display: none;
    }

    .gallery-page .init-2 {
        padding-top: 0;
    }
}

@media (max-width: 500px) {
    .gallery-page .init-2 .container ul li {
        margin-top: 20px;
    }
}


.faq-page {
    padding: 0 0 5.209% 0;
    background: #ecf3f5;
    overflow: hidden;
}

.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: 20px 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;
    }
}


.contact-page {
    padding-top: 120px;
}

.contact-page .contact-1 .left form ul {
    margin: 0 -30px -37px 0;
}

.contact-page .contact-1 .left form ul li {
    padding: 0 30px 37px 0;
}

.contact-page .contact-1 .left form ul li .box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d1d0c8;
}

.contact-page .contact-1 .left form ul li .box input,
.contact-page .contact-1 .left form ul li .box textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0 13px 36px;
    font-size: 16px;
    line-height: 30px;
    color: #7b7b7b;
}

.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
    color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
    color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
    color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
    color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::placeholder,
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
    color: #83827f;
}

.contact-page .contact-1 .left form ul li .box i {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 20px;
}

.contact-page .contact-1 .left form ul li .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.contact-page .contact-1 .left form ul li .more {
    padding: 0;
    vertical-align: middle;
}

.contact-page .contact-1 .left form ul li .more i {
    margin-right: 6px;
    display: inline-block;
}

.contact-page .contact-1 .left form ul li .more input[type="submit"] {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0 40px;
}

.contact-page .contact-1 .left form ul li p {
    display: inline-block;
    vertical-align: middle;
    padding-left: 26px;
    font-size: 14px;
    line-height: 28px;
    color: #83827f;
}

.contact-page .contact-1 .left form ul li p span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}

.contact-page .contact-1 .left form ul li:hover .box::before,
.contact-page .contact-1 .left form ul li.active .box::before {
    width: 100%;
}

.contact-page .contact-1 .left form ul li.wid-100 {
    width: 100% !important;
}

.contact-page .contact-1 .right {
    padding-left: 7.65%;
}

.contact-page .contact-1 .right .title {
    line-height: 1.2;
}

.contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
    color: #83827f;
    margin-top: 7px;
}

.contact-page .contact-1 .right .list {
    margin-top: 22px;
}

.contact-page .contact-1 .right .list ul li {
    color: #111;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}

.contact-page .contact-1 .right .list ul li i {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    width: 20px;
    text-align: center;
    margin-top: 5px;
}

.contact-page .contact-1 .right .list ul li span {
    display: inline-block;
    vertical-align: top;
    width: 90%;
    padding-left: 20px;
}

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

.contact-page .contact-2 {
    padding-top: 120px;
}

.contact-page .contact-2 #mapContainer {
    height: 520px;
}

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

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

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

    .contact-page .contact-1 .right {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .contact-page .contact-2 {
        padding-top: 60px;
    }

    .contact-page .contact-2 #mapContainer {
        height: 360px;
    }
}

@media screen and (max-width: 700px) {
    .contact-page {
        padding-top: 30px;
    }

    .contact-page .contact-1 .left form ul li .more {
        padding: 18px 20px;
    }

    .contact-page .contact-2 {
        padding-top: 30px;
    }
}

@media screen and (max-width: 500px) {
    .contact-page .contact-1 .left form ul li .more {
        padding: 2px 12px;
    }

    .contact-page .contact-1 .left form ul li p {
        display: block;
        padding: 10px 0 0 0;
    }

    .contact-page .contact-1 .left form ul {
        margin-bottom: -20px;
    }

    .contact-page .contact-1 .left form ul li {
        padding-bottom: 20px;
    }

    .contact-page .contact-1 .left form ul li .box input,
    .contact-page .contact-1 .left form ul li .box textarea {
        padding: 10px 0 10px 36px;
    }

    .contact-page .contact-1 .right p {
        font-size: 16px;
        line-height: 30px;
    }

    .contact-page .contact-1 .right .list ul li {
        font-size: 16px;
    }

    .contact-page .contact-2 #mapContainer {
        height: 260px;
    }
}



.about-page .about-1 .top .img {
    position: relative;
    border-radius: 10px;
    width: 100%;
    text-align: center;
}

.about-page .about-1 .top .img .lazy {
    border-radius: 15px;
}

.about-page .about-1 .top .img .play {
    position: absolute;
    right: 36px;
    bottom: 115px;
    display: inline-block;
    padding: 50px 50px 50px 60px;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    border-radius: 50%;
    z-index: 1;
}

.about-page .about-1 .top .img .play::before,
.about-page .about-1 .top .img .play::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -15px;
    top: -15px;
    right: -15px;
    bottom: -15px;
    background: rgba(223, 182, 37, .5);
    border-radius: 50%;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
}

.about-page .about-1 .top .img .play::before {
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
}

.about-page .about-1 .top .text {
    max-width: 1370px;
    width: 100%;
    margin: -150px auto 0;
    background: #fff;
    -webkit-box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 9px 38px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 1;
    padding: 50px;
    border-radius: 10px;
}

.about-page .about-1 .top .text .title {
    line-height: 1.2;
    text-transform: uppercase;
}

.about-page .about-1 .top .text .con {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}

.about-page .about-1 .bottom {
    max-width: 1215px;
    width: 100%;
    margin: 111px auto 0;
}

.about-page .about-1 .bottom ul {
    margin-right: -70px;
}

.about-page .about-1 .bottom ul li {
    padding-right: 70px;
}

.about-page .about-1 .bottom ul li .data {
    font-weight: bold;
    padding-bottom: 26px;
    border-bottom: 1px solid #58596c;
}

.about-page .about-1 .bottom ul li .data em {
    font-size: 56px;
    line-height: 1.2;
    color: #000;
    display: inline-block;
    vertical-align: bottom;
}

.about-page .about-1 .bottom ul li .data sub {
    font-size: 22px;
    color: var(--color);
    display: inline-block;
    vertical-align: bottom;
    line-height: 1;
    text-transform: capitalize;
    margin: 0 0 9px 7px;
}

.about-page .about-1 .bottom ul li .text .tit {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 2;
    margin-top: 23px;
}

.about-page .about-1 .bottom ul li .text p {
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
}

.about-page .about-2 {
    margin-top: 137px;
}

.about-page .about-2 .box {
    padding: 12px 0 122px 0;
    position: relative;
    z-index: 1;
}

.about-page .about-2 .box .img {
    width: 50%;
    vertical-align: middle;
    border-radius: 10px;
}

.about-page .about-2 .box .img img {
    border-radius: 10px;
}

.about-page .about-2 .box .text {
    width: 50%;
    padding-left: 64px;
    vertical-align: middle;
    color: #111;
}

.about-page .about-2 .box .text .header {
    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: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-right: 24px;
}

.about-page .about-2 .box .text .header .left {
    width: 100%;
}

.about-page .about-2 .box .text .header .title {
    margin-top: 12px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-top: 41px;
}

.about-page .about-2 .box .text .header .more {
    color: #000;
    margin-bottom: 10px;
    background: #fff;
}

.about-page .about-2 .box .text .header .more span {
    text-decoration: none;
}

.about-page .about-2 .box .text .con {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.about-page .about-2 .box .text .list {
    margin-top: 29px;
}

.about-page .about-2 .box .text .list ul {
    margin-bottom: -25px;
}

.about-page .about-2 .box .text .list ul li {
    position: relative;
    padding-left: 47px;
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: 25px;
}

.about-page .about-2 .box .text .list ul li::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 30px;
    height: 2px;
    background: white;
}

.about-page .about-2 .box::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    width: 84.5%;
    height: 100%;
    background: #fff;
    border-radius: 15px;
}

.about-page .about-3 {
    background-color: #f2f2f2;
    padding: 6% 0 6%;
    margin-top: -122px;
}

.about-page .about-3 .header {
    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: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 63px;
    border-bottom: 1px solid #b8b8bc;
}

.about-page .about-3 .header .left {
    width: 50%;
}

.about-page .about-3 .header .left span.tag {
    color: var(--color);
}

.about-page .about-3 .header .left .title {
    margin-top: 12px;
    line-height: 1.2;

    font-weight: 900;
}

.about-page .about-3 .header .right {
    width: 50%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}

.about-page .about-3 .content {
    margin-top: 88px;
}

.about-page .about-3 .content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 -37px -37px 0;
}

.about-page .about-3 .content ul {
    margin: 0 -37px;
}

.about-page .about-3 .content ul li .slide-box {
    margin: 0 20px 37px;
    background: #fff;
    padding: 20px;
    /*width: 30.3%;*/
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    color: #121212;
    /*height: 250px;*/
    border-radius: 6px;
}

.about-page .about-3 .content ul li .tit {
    font-size: 24px;
    font-weight: 700;
    line-height: 2;
    margin-top: 15px;
}

.about-page .about-3 .content ul li p {
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.about-page .about-3 .content ul li .slide-box:hover {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

/*.about-page .about-3 .content ul li:hover i img {
    -webkit-filter: grayscale(100%) brightness(300);
    filter: grayscale(100%) brightness(300);
  }*/
.about-page .about-3 .content ul li:hover .tit,
.about-page .about-3 .content ul li:hover p {
    color: white;
}

.about-page .about-3 .list {
    margin-top: 151px;
}

.about-page .about-3 .list .img-box {
    display: block;
}

.about-page .about-3 .list .img-box img {
    width: 100%;
}

.about-page .about-3 .list .slick-dots {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -54px;
    width: 100%;
    margin: 0;
    text-align: right;
    padding-right: 22px;
}

.about-page .about-3 .list .slick-dots li {
    width: 14px;
    height: 14px;
    background-color: #fff;
    display: inline-block;
    border-radius: 50%;
    margin-right: 14px;
    cursor: pointer;
    -webkit-transition: 0.5;
    -moz-transition: 0.5;
    transition: 0.5;
    padding: 0;
}

.about-page .about-3 .list .slick-dots li:last-child {
    margin-right: 0;
}

.about-page .about-3 .list .slick-dots li button {
    display: none;
}

.about-page .about-3 .list .slick-dots li.slick-active {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

.about-page .about-4 {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    padding: 68px 0 70px;
    max-width: 959px;
    width: 100%;
    margin-top: -17%;
    position: relative;
    z-index: 1;
    color: #fff;
}

.about-page .about-4 .box {
    max-width: 507px;
    margin: 0 94px 0 auto;
}

.about-page .about-4 .box .title {
    margin-top: 27px;
}

.about-page .about-4 .box .con {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 27px;
}

.about-page .about-4 .box .info {
    margin-top: 20px;
    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;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
}

.about-page .about-4 .box .info .tit {
    font-size: 20px;
    line-height: 1.5;
}

.about-page .about-4 .box .info p {
    font-size: 16px;
    line-height: 1.8;
}

.about-page .about-4 .box .more {
    margin-top: 36px;
    background: #000;
}

.about-page .about-4 .box .more:hover {
    background: #fff;
    color: var(--color);
}

.about-page .about-5 {
    padding: 120px 0 180px;
    background: #f0fbff;
}

.about-page .about-5 .header {
    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: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 45px;
    border-bottom: 1px solid #b8b8bc;
}

.about-page .about-5 .header .right {
    width: 51%;
    font-size: 18px;
    line-height: 1.8;
    color: #7b7b7b;
    padding: 0 0 0 20px;
}

.about-page .about-5 .header span.tag {
    color: var(--color);
}

.about-page .about-5 .header .title {
    margin-top: 12px;
    line-height: 1.2;
}

.about-page .about-5 .header .more {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    margin-bottom: 4px;
}

.about-page .about-5 .header .more:hover {
    background: #000;
}

.about-page .about-5 .content {
    margin-top: 47px;
}

.about-page .about-5 .content ul {
    margin-right: -42px;
}

.about-page .about-5 .content ul li {
    padding-right: 30px;
}

.about-page .about-5 .content ul li .img-box {
    display: block;
}

.about-page .about-5 .content ul li .img-box img {
    width: 100%;
}

.about-page .about-5 .content ul .slick-dots {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -54px;
    width: 100%;
    margin: 0;
    text-align: center;
}

.about-page .about-5 .content ul .slick-dots li {
    width: 14px;
    height: 14px;
    background-color: #d2d2d2;
    display: inline-block;
    border-radius: 50%;
    margin-right: 14px;
    cursor: pointer;
    -webkit-transition: 0.5;
    -moz-transition: 0.5;
    transition: 0.5;
    padding: 0;
}

.about-page .about-5 .content ul .slick-dots li:last-child {
    margin-right: 0;
}

.about-page .about-5 .content ul .slick-dots li button {
    display: none;
}

.about-page .about-5 .content ul .slick-dots li.slick-active {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

@media screen and (max-width: 1440px) {
    .about-page .about-2 {
        margin-top: 100px;
    }
    .about-page .about-4 .box {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1280px) {
    .about-page .about-1 .top .img .play {
        padding: 30px 30px 30px 40px;
    }
    .about-page .about-2 {
        margin-top: 80px;
    }
    .about-page .about-2 .box .text {
        padding: 0 15px 0 30px;
    }

    /*.about-page .about-3 .content ul li {
      width: 29.9%;
    }*/
    .about-page .about-3 .content ul li .slide-box {
        padding: 39px 15px;
    }

    .about-page .about-3 .content ul li .tit {
        font-size: 22px;
    }

    .about-page .about-4 {
        max-width: 800px;
    }
}

@media screen and (max-width: 1100px) {
    .about-page .about-1 .top .text {
        padding: 70px 50px 90px;
    }

    .about-page .about-1 .bottom ul {
        margin-right: -40px;
    }

    .about-page .about-1 .bottom ul li {
        padding-right: 40px;
    }

    .about-page .about-3 .content ul {
        margin: 0 -20px -20px 0;
    }

    /*.about-page .about-3 .content ul li {
      width: 31.3%;
    }*/
    .about-page .about-3 .content ul li .slide-box {
        margin: 0 20px 20px 0;
    }

    .about-page .about-4 {
        max-width: 700px;
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-1 .top .text {
        padding: 50px 30px;
    }

    .about-page .about-1 .top .text .con {
        font-size: 18px;
    }

    .about-page .about-1 .bottom {
        margin: 60px auto 0;
    }

    .about-page .about-1 .bottom ul {
        margin-right: -20px;
    }

    .about-page .about-1 .bottom ul li {
        padding-right: 20px;
    }

    .about-page .about-1 .bottom ul li .data em {
        font-size: 50px;
    }

    .about-page .about-1 .bottom ul li .text .tit {
        font-size: 20px;
        line-height: 1.8;
    }

    .about-page .about-1 .bottom ul li .text p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-2 {
        margin-top: 47px;
    }

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

    .about-page .about-2 .box .img {
        width: 100%;
    }

    .about-page .about-2 .box .text {
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
    }

    .about-page .about-2 .box::after {
        width: 100%;
    }

    .about-page .about-3 {
        margin-top: 0;
        padding: 60px 0;
    }

    .about-page .about-3 .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 30px;
    }

    .about-page .about-3 .header .left {
        width: 100%;
    }

    .about-page .about-3 .header .right {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .about-page .about-3 .content {
        margin-top: 30px;
    }

    /*.about-page .about-3 .content ul li {
      width: 47%;
    }*/
    .about-page .about-3 .list {
        margin-top: 60px;
    }

    .about-page .about-3 .list .slick-dots {
        bottom: -40px;
    }

    .about-page .about-4 {
        max-width: 680px;
        margin-top: 0;
    }

    .about-page .about-5 {
        padding: 60px 0 11.05%;
    }

    .about-page .about-5 .header {
        padding-bottom: 30px;
    }

    .about-page .about-5 .header .left {
        width: 52%;
    }

    .about-page .about-5 .content ul {
        margin-right: -20px;
    }

    .about-page .about-5 .content ul li {
        padding-right: 20px;
    }

    
}

@media screen and (max-width: 700px) {
    .about-page .about-1 .top .img .play {
        padding: 20px 20px 20px 30px;
        bottom: 20px;
    }

    .about-page .about-1 .top .text {
        margin-top: 0;
        padding: 30px 15px;
    }

    .about-page .about-1 .top .text .con {
        margin-top: 20px;
    }

    .about-page .about-1 .bottom ul li .data {
        padding-bottom: 0;
    }

    .about-page .about-1 .bottom {
        margin: 30px auto 0;
    }

    .about-page .about-2 .box .text .con {
        margin-top: 20px;
    }

    .about-page .about-2 {
        margin-top: 30px;
    }

    .about-page .about-3 {
        padding: 30px 0;
    }

    /*.about-page .about-3 .content ul li {
      width: 45.9%;
    }*/
    .about-page .about-3 .content ul li .tit {
        font-size: 20px;
        line-height: 1.8;
    }

    .about-page .about-3 .content ul li p {
        font-size: 17px;
        margin-top: 10px;
    }

    .about-page .about-3 .list {
        margin-top: 30px;
    }

    .about-page .about-4 {
        padding: 30px 15px;
    }

    .about-page .about-5 {
        padding: 30px 0;
    }

    .about-page .about-5 .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .about-page .about-5 .header .left {
        width: 100%;
    }

    .about-page .about-5 .header .left .title {
        margin-top: 15px;
    }

    .about-page .about-5 .header .right {
        margin-top: 20px;
        width: 100%;
    }

    .about-page .about-5 .content {
        margin-top: 20px;
    }

    .about-page .about-5 .content ul .slick-dots {
        bottom: -25px;
    }
}

@media screen and (max-width: 500px) {
    .about-page .about-1 .top .img .play {
        padding: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        text-align: center;
    }

    .about-page .about-1 .top .img .play img {
        width: 20px;
        margin: 0 auto;
        display: inline-block;
        vertical-align: middle;
    }

    .about-page .about-1 .top .text .con {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-1 .bottom ul {
        margin: 0 0 -20px 0;
    }

    .about-page .about-1 .bottom ul li {
        padding: 0 0 20px 0;
    }

    .about-page .about-1 .bottom ul li .data em {
        font-size: 40px;
    }

    .about-page .about-2 .box {
        padding-bottom: 30px;
    }

    .about-page .about-2 .box .text .header {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-page .about-2 .box .text .header .left {
        width: 100%;
    }

    .about-page .about-2 .box .text .header .left .title {
        margin-top: 10px;
    }

    .about-page .about-2 .box .text .header .right {
        padding: 20px 0 0;
    }

    .about-page .about-2 .box .text .con {
        font-size: 16px;
        margin-top: 10px;
        line-height: 30px;
    }

    .about-page .about-2 .box .text .list ul li {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-page .about-3 .header {
        padding-bottom: 10px;
    }

    .about-page .about-3 .header .left .title {
        margin-top: 10px;
    }

    .about-page .about-3 .header .right {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-3 .content ul {
        margin: 0 0 -20px 0;
    }

    /*.about-page .about-3 .content ul li {
      width: 100%;
    }*/
    .about-page .about-3 .content ul li .slide-box {
        margin: 0 0 20px 0;
    }

    .about-page .about-3 .content ul li p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-page .about-4 .box .title {
        margin-top: 10px;
    }

    .about-page .about-4 .box .con {
        margin-top: 10px;
    }

    .about-page .about-4 .box .info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-bottom: 10px;
    }

    .about-page .about-4 .box .info p {
        font-size: 14px;
        line-height: 2;
    }

    .about-page .about-4 .box .info .left {
        width: 100%;
    }

    .about-page .about-4 .box .info .right {
        width: 100%;
        margin-top: 20px;
    }

    .about-page .about-4 .box .more {
        margin-top: 20px;
    }

    .about-page .about-5 .header .left .title {
        margin-top: 10px;
    }
    
}


.design-page .design-1 .container {
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.design-page .design-1 .container img {
    border-radius: 10px;
}

.design-page .design-2 {
    padding: 20px 0 110px;
}

.design-page .design-2 .i-title {
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.design-page .design-2 .left .img {
    /*text-align: right;*/
    border-radius: 10px;
}

.design-page .design-2 .left .txt {
    font-size: 20px;
    line-height: 1.4;
    color: #7b7b7b;
    margin-bottom: 20px;
}

.design-page .design-2 .left .img img {
    border-radius: 10px;
}

.design-page .design-2 .right {
    padding-left: 90px;
}

.design-page .design-2 .right img {
    border-radius: 10px;
}

.design-page .design-2 .right .txt {
    font-size: 20px;
    line-height: 32px;
    color: #7b7b7b;
    margin-top: 10px;
}

.design-page .design-3 {
    padding-bottom: 120px;
}

.design-page .design-3 .i-title {
    margin-bottom: 48px;
}

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

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

.design-page .design-3 ul .slick-list {
    padding: 0 28%;
}

.design-page .design-3 ul li .box {
    position: relative;
    width: 500px;
}

.design-page .design-3 ul li .box img {
    width: 100%;
    border-radius: 10px;
}

.design-page .design-3 ul li .content {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background: white;
    position: absolute;
    left: 0;
    bottom: 18%;
    padding: 20px;
    opacity: 0;
    border-radius: 0 10px 10px 0;
}

.design-page .design-3 ul li .content h4 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
}

.design-page .design-3 ul li .content p {
    font-size: 18px;
    font-weight: bold;
}

.design-page .design-3 ul li:hover .content {
    opacity: 1;
}

.design-page .design-3 ul .slick-dots {
    margin: 0;
    text-align: center;
}

.design-page .design-3 ul .slick-dots li {
    padding: 0;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #e5e5e5;
    display: inline-block;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.design-page .design-3 ul .slick-dots li button {
    display: none;
}

.design-page .design-3 ul .slick-dots li.slick-active {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

.design-page .design-4 {
    color: white;
    padding: 107px 0 70px;
}

.design-page .design-4 .left {
    position: sticky;
    top: 170px;
    width: 35%;
}

.design-page .design-4 .left p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);

}

.design-page .design-4 .left .i-title {
    line-height: 1.2;
}

.design-page .design-4 .right {
    padding-left: 90px;
    width: 65%;
}

.design-page .design-4 .right ul li {
    padding-left: 140px;
    position: relative;
    padding-bottom: 50px;
}

.design-page .design-4 .right ul li .icon {
    width: 77px;
    height: 77px;
    border-radius: 100%;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    text-align: center;
    line-height: 77px;
    position: absolute;
    left: 0;
    top: 0;
}

.design-page .design-4 .right ul li .icon img {
    vertical-align: middle;
}

.design-page .design-4 .right ul li::after {
    content: "";
    position: absolute;
    left:38px;
    top: 87px;
    width: 1px;
    height: calc(100% - 97px);
    background: rgba(255, 255, 255, 0.3);
}
.design-page .design-4 .right ul li:last-child::after{
    display: none;
}

.design-page .design-4 .right ul li:last-child .icon::after {
    content: none;
}

.design-page .design-4 .right ul li h4 {
    font-size: 30px;
    font-weight: bold;
}

.design-page .design-4 .right ul li .des {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 14px;
    color: rgba(255, 255, 255, .7);
}

.design-page .design-5 {
    padding: 130px 0 110px;
    position: relative;
}

.design-page .design-5 .i-title {
    line-height: 1.2;
}

.design-page .design-5 .wrap {
    margin-top: 70px;
}

.design-page .design-5 .left {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.design-page .design-5 .left .box {
    max-width: 50%;
}

.design-page .design-5 .left .txt {
    font-size: 20px;
    line-height: 1.4;
    color: #7b7b7b;
    margin-bottom: 45px;
}

.design-page .design-5 .left img {
    width: 100%;
}

.design-page .design-5 .right {
    max-width: 50%;
    width: fit-content;
    margin-left: auto;
}

.design-page .design-5 .right img {
    border-radius: 10px;
}

@media screen and (max-width: 1600px) {
    .design-page .design-5 .ui.container {
        padding-left: 7%;
    }

    .design-page .design-5 .wrap {
        padding-left: 10%;
    }

    .design-page .design-5 .right {
        max-width: 40%;
    }
}

@media screen and (max-width: 1400px) {
    .design-page .design-4 .right {
        padding-left: 30px;
    }

    .design-page .design-5 .wrap {
        padding-left: 0;
    }

    .design-page .design-5 .left .txt {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1200px) {
    .design-page .design-5 .left .i-title {
        font-size: 30px;
    }

    .design-page .design-2 .right {
        padding-left: 50px;
    }

    .design-page .design-3 ul li {
        padding: 20px;
    }

    .design-page .design-3 ul {
        margin: -20px;
    }

    .design-page .design-3 ul li .content h4 {
        font-size: 21px;
    }

    .design-page .design-4 .right ul li {
        padding-left: 105px;
        padding-bottom: 40px;
    }

    .design-page .design-4 .right ul li .icon:after {
        height: 225%;
    }
    .design-page .design-2 .right .txt {
        margin-top: 50px;
    }   
}

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

    .design-page .design-1 .ui.container {
        padding: 0 20px;
    }

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

    .design-page .design-3 ul .slick-list {
        padding: 0 18%;
    }

    .design-page .design-4 .left {
        position: relative;
        width: 100%;
        top: 0;
    }

    .design-page .design-4 .right {
        width: 100%;
        margin-top: 20px;
    }

    .design-page .design-5 {
        padding: 55px 0 50px;
    }

    .design-page .design-5 .left {
        width: 100%;
        position: unset;
        transform: none;
        margin-bottom: 60px;
    }

    .design-page .design-5 .left .box {
        width: 100%;
        max-width: 100%;
    }

    .design-page .design-5 .right {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
        .design-page .design-2 .right .txt {
        margin-top: 40px;
    } 
}

@media screen and (max-width: 700px) {
    .inner-banner h2 {
        font-size: 26px;
    }

    .design-page .design-2 .right {
        width: 100%;
        padding-left: 0;
        margin-top: 25px;
    }

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

    .design-page .design-2 .i-title {
        margin-bottom: 30px;
    }

    .design-page .design-3 ul .slick-list {
        padding: 0;
    }

    .design-page .design-3 {
        padding: 0 15px 50px;
    }

    .design-page .design-4 .right {
        padding-left: 0;
    }

    .design-page .design-4 .left {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .design-page .design-2{
        padding: 30px 0 35px;
    }
    .design-page .design-4 .right ul li {
        padding-left: 0;
    }

    .design-page .design-4 .right ul li .icon {
        position: relative;
        margin-bottom: 12px;
    }

    .design-page .design-4 .right ul li .icon::after {
        content: none;
    }
    .design-page .design-4 .right ul li::after{
        display: none;
    }        .design-page .design-2 .right .txt {
        margin-top: 30px;
    }
}

.service-page .service-1 {
    padding: 100px 0 120px 0;
}

.service-page .service-1 #index-body .about .top .text {
    width: 48%;
}

.service-page .service-1 #index-body .about .top .text h2.title {
    margin-bottom: 40px;
    line-height: 1.4;
    /*text-transform: uppercase;*/
}

.service-page .service-1 #index-body .about .top .text h3 {
    font-size: 22px;
    line-height: 1.6;
    color: #181818;
    font-weight: 400;
    margin-top: 32px;
}

.service-page .service-1 #index-body .about .top .text p {
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

.service-page .service-1 #index-body .about .top .img {
    text-align: right;
    padding: 0 0 50px 0;
    border-radius: 10px;
}

.service-page .service-1 #index-body .about .top .img .i1 {

    border-radius: 10px;
}

.service-page .service-1 #index-body .about .top .img .i2 {
    position: absolute;
    left: 0;
    bottom: -25px;
    top: auto;
    z-index: 1;
    border-radius: 10px;
}

.pr {
    position: relative
}

.pa {
    position: absolute
}


.service-page .service-2 h3 {
    width: 46%;
}

.service-page .service-2 .img {
    padding-top: 35px;
    border-radius: 20px;
}

.service-page .service-2 .img img {
    border-radius: 20px;
}

.service-page .service-2 {
    background: #f9f9f9;
    padding: 60px 0 90px;
}

.service-page .service-2 .info {
    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;
}

.service-page .service-2 h3 {
    width: 40%;
    color: #111;
    line-height: 1.4;
    font-weight: bold;
    /*text-transform: uppercase;*/
}

.service-page .service-2 .btn {
    width: 60%;
    color: #666;
    font-size: 18px;
    line-height: 1.4;
}

.service-page .service-2 .more {
    background: white;
    color: black;
}

.service-page .service-2 .more:hover {
    color: white;
}


.service-page .service-3 .advantage {
    padding-top: 7.08333333vw;
    padding-bottom: 6.71875vw;
}

.service-page .service-3 .advantage .advantage-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: right;
    position: relative;
}

.service-page .service-3 .advantage .advantage-list:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 62.60416667vw;
    height: 1px;
    background-color: #b7b7b7;
}

.service-page .service-3 .advantage .advantage-list>li .top {
    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: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.service-page .service-3 .advantage .advantage-list>li .top .order {
    color: #80807a;
    font-weight: 900;
}

.service-page .service-3 .advantage .advantage-list>li .top .title {
    color: #65645f;
    font-weight: normal;
}

.service-page .service-3 .advantage .advantage-list>li:first-child {
    margin-top: 13px;
    width: 100%;
    margin-bottom: 5vw;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .top .order {
    color: var(--color);
    font-size: 7.8125vw;
    line-height: 1;
    margin-right: -3.02083333vw;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .top .title {
    color: #000000;
    margin-top: 31px;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .btn-container {
    -webkit-transition: -webkit-transform .16s;
    transition: -webkit-transform .16s;
    -moz-transition: transform .16s, -moz-transform .16s;
    transition: transform .16s;
    transition: transform .16s, -webkit-transform .16s, -moz-transform .16s;

}

.service-page .service-3 .advantage .advantage-list>li:first-child .btn-container .btn-go {
    margin-right: -56px;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .public-btn1 {
    border-color: rgba(82, 82, 82, 0.6);
    margin-left: auto;
    position: relative;
    background: url("../images/advantage-btn-bg.png") no-repeat center center;
    background-size: cover;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .public-btn1 span {
    color: #3d3d3d;
}

.service-page .service-3 .advantage .advantage-list>li:first-child .public-btn1 .arrow {
    -webkit-filter: brightness(0.3);
    filter: brightness(0.3);
}

.service-page .service-3 .advantage .advantage-list>li:first-child .public-btn1:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    border-color: transparent;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-page .service-3 .advantage .advantage-list>li:first-child .intro {
    color: #474747;

    margin-bottom: 2.5vw;
}

.service-page .service-3 .advantage .advantage-list>li:last-child {
    width: 100%;
}

.service-page .service-3 .advantage .advantage-list>li:last-child .top {
    justify-content: center;
}

.service-page .service-3 .advantage .advantage-list>li:last-child ol {
    width: 78%;
    margin-left: auto;
}

.service-page .service-3 .advantage .advantage-list>li:last-child .title {
    margin-left: 8px;
}

.service-page .service-3 .advantage .advantage-list>li:last-child ol .intro {
    display: none;
}

.service-page .init-5 {
    padding: 110px 0 50px;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    color: #fff
}

.service-page .init-5 .container .sub_img {
    position: absolute;
    top: -70px;
    left: 0;
    width: 910px
}

.service-page .init-5 .container .tips {
    font-weight: 700;
    position: relative;
    z-index: 2
}

.service-page .init-5 .container .list_cont {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 80px
}

.service-page .init-5 .container .list_cont .slick1 li .box {
    position: relative;
    padding: 0 40px
}

.service-page .init-5 .container .list_cont .slick1 li .box .year {
    font-weight: 700
}

.service-page .init-5 .container .list_cont .slick1 li .box .img {
    position: absolute;
    /*height: 100%;*/
    top: 100px;
    left: 0;
    height: 171px;
}

.service-page .init-5 .container .list_cont .slick1 li .box .cont {
    position: relative
}

.service-page .init-5 .container .list_cont .slick1 li .box .cont .title {
    font-weight: 700;
    margin-top: 10px;
    font-size: 30px;
    
}

.service-page .init-5 .container .list_cont .slick1 li .box .cont .des {
    margin-top: 40px;
    padding-right: 2px;
    overflow-y: auto;
    height: 255px;
    transition: all .5s
}

.service-page .init-5 .container .list_cont .slick1 li .box:hover .cont .des {
    opacity: 1
}

@media screen and (max-width: 1450px) {
    .service-page .service-1 {
        padding-bottom: 60px;
    }

    .service-page .service-3 .advantage-list>li:last-child ol {
        width: 90%;
    }
}

@media screen and (max-width: 1250px) {
    .service-page .service-3 .advantage-list li:first-child .top .title {
        margin-top: 0;
    }

    .service-page .service-3 .advantage-list>li:last-child ol {
        width: 100%;
    }

    .service-page .service-3 .advantage-list>li:last-child ol li .top {
        text-align: left;
    }
}

@media screen and (max-width: 1000px) {
    .service-page .service-1 #index-body .about .top .img {
        padding: 0 0 50px 30px;
    }

    .service-page .service-2 .info {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .service-page .service-2 h3 {
        width: 100%;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .service-page .service-2 .btn {
        width: 100%;
    }

    .service-page .service-1 #index-body .about .top .text {
        padding-right: 0;
        width: 100%;
    }

    .service-page .service-1 #index-body .about .top .img {
        width: 100%;
        margin-top: 25px;
    }

    .service-page .service-1 {
        padding-bottom: 60px;
    }

    .service-page .init-5 {
    text-align: center;
  }
  .service-page .init-5 .container .sub_img {
    display: none;
  }
  .service-page .init-5 .container .list_cont .slick1 li .box {
    padding: 0 10px;
  }
  .service-page .init-5 .container .list_cont .slick1 li .box .cont {
    height: auto;
  }
  .service-page .init-5 .container .list_cont .slick1 li .box .cont .des{
    opacity: 1;
    height: 100px;
  }
  .service-page .init-5 .container .list_cont .slick1 li .box .img {
    display: none;
  }
}

@media screen and (max-width: 700px) {
    .service-page .service-1 #index-body .about .top .text h3 {
        margin-top: 12px;
    }

    .service-page .service-1 {
        padding-bottom: 30px;
    }

    .service-page .service-3 .advantage .advantage-list>li .top {
        align-items: center;
        margin-top: 30px;
    }

    .service-page .service-3 .advantage .advantage-list>li:first-child .top .order {
        margin-right: 10px;
    }

    .service-page .service-3 .advantage .advantage-list>li:first-child .top .title {
        margin-top: 0;
    }

    .service-page .service-3 .advantage .advantage-list>li:last-child ol {
        width: 100%;
    }
}
@media screen and (max-width: 500px){
    .service-page .init-5 {
        padding: 40px 0;
    }

    .service-page .init-5 .container .list_cont {
        margin-top: 20px;
        padding: 0;
    }
}



.process-page {
    background-color: #faf9f9;
}

.process-page .custom-1 {
    padding: 90px 0;
    background: #ffffff;
}

.process-page .custom-1 .top {
    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;
    margin-bottom: 95px;
}

.process-page .custom-1 .top .h3 {
    width: 50%;
    padding-left: 35px;
    line-height: 1.2;
    border-left: 3px solid var(--base-color);
}

.process-page .custom-1 .top p {
    width: 70%;
    padding-left: 20px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

.process-page .custom-1 .btm ul.list2 {
    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;
    margin: 0 -10px;
}
.process-page .custom-1 .btm ul.list2 li.item{
    padding: 0 10px;
}
.process-page .custom-1 .btm ul.list2 li.item .box {
    height: 180px;
    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;
    /*border: 1px solid #000;*/
    border-radius: 5%;
    background-color: #f2f6f7;
    flex-direction: column;
    text-align: center;
}

.process-page .custom-1 .btm ul.list2 li.item img {

    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    margin-bottom: 15px;
}

.process-page .custom-1 .btm ul.list2 li.item:hover img {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.process-page .custom-2 {
    padding: 110px 0 0px;
    background: #f2f6f7;

}
.process-page .custom-4 {
   
    background: #f2f6f7;

}
.process-page .custom-4 table tbody tr{
    background-color: #fff;
}

.process-page .custom-2 .ui.container .top {
    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;
}

.process-page .custom-2 .ui.container .top .left {
    padding-right: 65px;
}

.process-page .custom-2 .ui.container .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--base-color);
}

.process-page .custom-2 .ui.container .top .left p {
    line-height: 2;
    margin-top: 35px;
    font-weight: 300;
    color: #666;
    max-height: 390px;
    overflow-y: auto;
}

.process-page .custom-2 .ui.container .bottom {
    border-radius: 56px;
    margin: 100px 0;
    background: #fff;
    -webkit-box-shadow: 0px 0px 20px 0 rgb(0 0 0 / 10%);
    /*box-shadow: 10px 10px 15px 0 rgba(0, 0, 0, 0.3);*/
    padding: 80px 80px 115px 80px;
    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;
}

.process-page .custom-2 .ui.container .bottom .left {
    padding-right: 80px;
}

.process-page .custom-2 .ui.container .bottom .left .h4 {
    color: var(--color);
}

.process-page .custom-2 .ui.container .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
    font-weight: 300;
    color: #666;

}

.process-page .custom-2 .ui.container .bottom .right {
    /*padding-right: 80px;*/
}

.process-page .custom-2 .ui.container .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

.process-page .custom-2 .ui.container .bottom .right ul.list3 li .top {
    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-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
}

.process-page .custom-2 .ui.container .bottom .right ul.list3 li .top em {
    margin-left: 25px;
}

.process-page .custom-2 .ui.container .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}

.process-page .custom-2 .ui.container .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 30px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
    font-weight: 300;
    color: #666;
}

.process-page .custom-3 {
    padding-top: 90px;
    padding-bottom: 100px;
}

.process-page .custom-3 .ui.container {
    text-align: center;
}

.process-page .custom-3 .ui.container .strengthbox {
    margin-top: 55px;
}

.process-page .custom-3 .ui.container .strengthbox ul.list4 li {
    padding: 0 15px;
}

.process-page .custom-3 .ui.container .strengthbox ul.list4 li .item {
    background: #f7f7f7;
    border-radius: 5px;
}

.process-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text {
    padding: 25px;
    text-align: center;
}

.process-page .custom-3 .ui.container .strengthbox ul.list4 li .item .text p {
    line-height: 1.8;
    font-weight: 400;
    margin-top: 15px;
    max-height: 116px;
    overflow-y: auto;
}

@media screen and (max-width: 1250px) {
    .process-page .custom-1 {
        padding: 60px 0;
    }

    .process-page .custom-1 .top {
        margin-bottom: 60px;
    }

    .process-page .custom-2 {
        padding: 70px 0 40px;
    }

    .process-page .custom-2 .ui.container .bottom .left {
        padding-right: 0px;
    }

    .process-page .custom-2 .ui.container .bottom {
        margin: 70px 0;
    }
}

@media screen and (max-width: 1000px) {
    .hide-1000 {
        display: none !important;
    }

    .process-page .custom-1 .top {
        margin-bottom: 30px;
    }

    .process-page .custom-2 .ui.container .bottom .right {
        padding-right: 0;
    }

    .process-page .custom-2 .ui.container .bottom {
        padding: 30px 25px;
    }
}

@media screen and (max-width: 700px) {
    .process-page .custom-1 {
        padding: 30px 0;
    }

    .process-page .custom-1 .top .h3 {
        width: 100%;
    }

    .process-page .custom-1 .top p {
        width: 100%;
        padding-left: 0;
    }


    .process-page .custom-2 {
        padding: 30px 0 20px;
    }

    .process-page .custom-2 .ui.container .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .process-page .custom-2 .ui.container .top .left {
        padding-right: 0px;
        width: 100%;
    }

    .process-page .custom-2 .ui.container .top .right {
        width: 100%;
    }

    .process-page .custom-2 .ui.container .bottom {
        margin: 30px 0;
    }

    .process-page .custom-2 .ui.container .bottom .right ul.list3 li .top {
        flex-wrap: nowrap;
        font-size: 16px;
        line-height: 30px;
    }

    .process-page .custom-2 .ui.container .bottom .left {
        padding-right: 0px;
        width: 100%;
    }

    .process-page .custom-2 .ui.container .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px;
    }
}



.manufacture-page .manufacture-01 {
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background-color: #faf9f9;
}

.manufacture-page .manufacture-01 .icenter2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 100px;
}

.manufacture-page .manufacture-01 .icenter2 .le {
    overflow: hidden;
    position: relative;
    width: 45%;
    border-radius: 5%;
}

.manufacture-page .manufacture-01 .icenter2 .le::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .5);
    content: '';
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
    z-index: 1;
}

.manufacture-page .manufacture-01 .icenter2 .le:hover::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0);
}

/*.manufacture-page .manufacture-01 .icenter2 .le img{height: 100%;}*/
.manufacture-page .manufacture-01 .icenter2 .le:hover img {
    transform: scale(1.1);
}

.manufacture-page .manufacture-01 .icenter2 .ri {
    width: 50%;
}

.manufacture-page .manufacture-01 .icenter2 .ri>ul {
    margin: 20px 0 0px;
}

.manufacture-page .manufacture-01 .icenter2 .ri>ul li {
    position: relative;
    padding-left: 15px;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
}

.manufacture-page .manufacture-01 .icenter2 .ri>ul li::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #666666;
    position: absolute;
    left: 0px;
    top: 13px;
    content: "";
}

.manufacture-page .manufacture-01 dl dd {
    padding-top: 60px;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #d5d5d5;
}

.manufacture-page .manufacture-01 dl dd .icon {
    width: 86px;
    margin-right: 58px;
}

.manufacture-page .manufacture-01 dl dd .text h4 {
    position: relative;
    padding-bottom: 0px;
    font-size: 18px;
    color: #333333;
    width: fit-content;
    margin-bottom: 10px;
}

.manufacture-page .manufacture-01 dl dd .text h4 strong {
    font-size: 70px;
    font-weight: 600;
}

.manufacture-page .manufacture-01 dl dd .text h4::after {
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 5px;
    background-color: var(--color);
}

.manufacture-page .manufacture-01 dl dd .text p {
    font-size: 18px;
    color: #666666;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom {
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .left {
    padding-right: 80px;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li .top {
    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-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
    line-height: 36px;
    font-weight: 500;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li .top em {
    margin-left: 25px;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}

.manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 75px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
}


@media screen and (max-width:1700px) {
    .manufacture-page .manufacture-01 .icenter2 .ri>ul li {
        padding-left: 15px;
        font-size: 14px;
        line-height: 24px;
    }

    .manufacture-page .manufacture-01 .icenter2 .ri>ul {
        margin: 16px 0 0px;
    }

    .manufacture-page .manufacture-01 dl dd {
        padding-top: 34px;
        padding-bottom: 12px;
    }

    .manufacture-page .manufacture-01 dl dd .icon {
        width: 74px;
        margin-right: 50px;
    }

    .manufacture-page .manufacture-01 dl dd .text h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .manufacture-page .manufacture-01 dl dd .text h4 strong {
        font-size: 58px;
    }

    .manufacture-page .manufacture-01 dl dd .text h4::after {
        height: 4px;
    }

    .manufacture-page .manufacture-01 dl dd .text p {
        font-size: 15px;
    }
}

@media screen and (max-width: 1250px) {
    .manufacture-page .manufacture-01 .icenter2 .ri .bottom .left {
        padding-right: 0px;
    }
    .manufacture-page .manufacture-01 .icenter2 {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 1000px) {
        .manufacture-page .manufacture-01 .icenter2 {
        flex-flow: wrap;
    }
    .manufacture-page .manufacture-01 .icenter2 .le {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
        .manufacture-page .manufacture-01 .icenter2 .ri {
        width: 100%;
    }
    .manufacture-page .manufacture-01 .icenter2 .ri .bottom .right {
        padding-right: 0;
    }

    .manufacture-page .manufacture-01 .icenter2 .ri .bottom {
        padding: 30px 25px;
    }
}

@media only screen and (max-width:700px) {
    .manufacture-page .manufacture-01 dl dd .icon {
        width: 60px;
        margin-right: 31px;
    }

    .manufacture-page .manufacture-01 {
        padding-top: 50px;
    }
    .manufacture-page .manufacture-01 .icenter2 {
        padding-bottom: 30px;
    }
    .manufacture-page .manufacture-01 .icenter2 .ri .bottom .right ul.list3 li .top {
        flex-wrap: nowrap;
        font-size: 16px;
        line-height: 30px;
    }

    .manufacture-page .manufacture-01 .icenter2 .ri .bottom .left {
        padding-right: 0px;
        width: 100%;
    }

    .manufacture-page .manufacture-01 .icenter2 .ri .bottom .right {
        padding-right: 0;
        width: 100%;
    }
}


.manufacture-page .manufacture-02 .container {
    display: flex;
}

.manufacture-page .manufacture-02 .container .i6-l {
    width: 23.1%;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    border-radius: 40px;
}

.manufacture-page .manufacture-02 .container .i6-l .i6l-p {
    font-weight: 600;
    color: #fefefe;
}

.manufacture-page .manufacture-02 .container .i6-l .f-put1 {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    border-radius: 10px;
    border: 1px solid #499dcc;
    height: 61px;
    width: 100%;
    padding-left: 20px;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.manufacture-page .manufacture-02 .container .i6-l .f-put1::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
}

.manufacture-page .manufacture-02 .container .i6-l .f-put2 {
    height: 88px;
}

.manufacture-page .manufacture-02 .container .i6-l button {
    width: 172px;
    height: 50px;
    background: #ffffff;
    border-radius: 25px;
    font-weight: 400;
    font-size: 16px;
    color: var(--color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border: none;
}
.manufacture-page .manufacture-02 .btn-go{
    margin-right: -56px;
}

.manufacture-page .manufacture-02 .container .i6-r {
    width: 77.9%;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-t {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b {
    position: relative;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .s6-o {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    width: 41px;
    height: 41px;
    background: #F6F6F6;
    border-radius: 50%;
    border: 1px solid #D9D9D9;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d9d9d9;
    font-size: 22px;
    z-index: 5;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .s6-o:hover {
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    color: #fff;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .s6-l {
    left: -73px;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .s6-r {
    right: 0;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .i6-tap {
    display: flex;
    align-items: center;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .i6-tap p {
    width: 48px;
    height: 48px;
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
    border-radius: 24px;
    font-weight: 600;
    font-size: 18px;
    color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .i6-box {
    max-width: 301px;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .i6-box .i6-b-p1 {
    font-family: Poppins;
    font-weight: 600;
    color: #141414;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .i6-box .i6-b-p2 {
    font-family: Poppins;
    font-weight: 300;
    color: #666666;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6 {
    overflow: hidden;
    position: relative;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #C8DCE8;
    border-radius: 50%;
    top: 37%;
    right: 0;
    z-index: 5;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6 .swiper-slide:first-of-type .i6-tap {
    position: relative;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6 .swiper-slide:first-of-type .i6-tap p {
    position: relative;
    z-index: 1;
}

.manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6 .swiper-slide:first-of-type .i6-tap span {
    position: absolute;
    z-index: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2000px;
    height: 1px;
    background: #c8dce8;
}
.all-btn-hw{
    width: 172px;
  height: 46px;
  background: #ffffff;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 16px;
  color: #007fc6;
  position: relative;
  text-transform: uppercase;
  overflow: hidden;
}
.all-btn-hw::after{
     -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  clip-path: inset(0 0 100% 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
}

.all-btn-hw::after {
 
}
.all-btn-hw:hover {
  background: transparent;
  color: #fff;
}
.all-btn-hw:hover::after {
  clip-path: inset(0 0 0 0);
}
.all-btn-hw span {
  position: relative;
  z-index: 2;
}

@media (max-width: 1800px) {
    .manufacture-page .manufacture-02 .container .i6-r .i6-r-b .swiper6::before {
        display: none;
    }
}

@media (max-width: 1000px) {
    .manufacture-page .manufacture-02 .container .i6-r .i6-r-b .s6-r {
        right: -73px;
    }

    .manufacture-page .manufacture-02 .container .i6-r .i6-r-b {
        padding-right: 0;
    }

    .manufacture-page .manufacture-02 .container {
        flex-wrap: wrap;
    }

    .manufacture-page .manufacture-02 .container .i6-l,
    .manufacture-page .manufacture-02 .container .i6-r {
        padding: 0;
        width: 100%;
    }

    .manufacture-page .manufacture-02 .container .i6-r {
        margin-top: 20px;
    }

    .manufacture-page .manufacture-02 .container .i6-l {
        padding: 20px;
    }
}


.manufacture-page .manufacture-03 {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    background: #f2f6f7;
}

.manufacture-page .manufacture-03 .bg_fix {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 690px;
}

.manufacture-page .manufacture-03 .bg_fix::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.manufacture-page .manufacture-03 .bg_fix img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.manufacture-page .manufacture-03 .top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /*margin-bottom: 47px;*/
    z-index: 1;
    position: relative;
}

.manufacture-page .manufacture-03 .top .hu_h3 {
    color: #fff;
}

.manufacture-page .manufacture-03 .top p {
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    color: #fff;
    margin-top: 10px;
}

.manufacture-page .manufacture-03 .top .line {
    height: 75px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 28px 0;
    position: relative;
}

.manufacture-page .manufacture-03 .top .line::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    animation: 2s linear 0.5s infinite hua2;
}

@keyframes hua2 {
    from {
        top: 0%;
    }

    to {
        top: 95%;
    }
}

.manufacture-page .manufacture-03 .top h4 {
    font-size: 30px;
    color: #fff;
}

.manufacture-page .manufacture-03 .botF {
    padding: 0 90px;
    position: relative;
}

.manufacture-page .manufacture-03 .botF .fa {
    background-image: none;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    font-size: 74px;
    color: #cbcbcb;
    outline: none;
}

.manufacture-page .manufacture-03 .botF .fa:hover {
    color: var(--color);
    ;
}

.manufacture-page .manufacture-03 .bot {
    position: relative;
    overflow: hidden;
    margin: auto;
}

.manufacture-page .manufacture-03 .bot .box {
    background-color: #fff;
    padding: 50px 0 90px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgb(102 102 102 / 30%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.manufacture-page .manufacture-03 .bot .box .icon {
    border-radius: 50%;
    position: relative;
    height: 111px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 111px;
}

.manufacture-page .manufacture-03 .bot .box:hover .icon::before {
    animation: img01anime 10s 0s linear infinite;
}

.manufacture-page .manufacture-03 .bot .box:hover .icon::after {
    animation: img02anime 10s 0s linear infinite;
}

.manufacture-page .manufacture-03 .bot .box .icon::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1.6px dashed #0345ad;
}

.manufacture-page .manufacture-03 .bot .box .icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.6px dashed #0345ad;
}

@keyframes img01anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes img02anime {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.manufacture-page .manufacture-03 .bot .box .icon img {
    width: 56px;
    transition: 0s;
}

.manufacture-page .manufacture-03 .bot .box h4 {
    font-size: 16px;
    line-height: 32px;
    color: #ccc;
    margin-bottom: 5px;
    margin-top: 54px;
}

.manufacture-page .manufacture-03 .bot .box h5 {
    font-size: 24px;
    position: relative;
    color: #111;
    text-align: center;
    line-height: 40px;
    height: 52px;
}

.manufacture-page .manufacture-03 .bot .box h5::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background-color: var(--color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

.manufacture-page .manufacture-03 .bot .box p {
    padding: 30px 15px;
    font-size: 16px;
    line-height: 30px;
    height: 120px;
    text-align: center;
    font-weight: 300;
    color: #666;
    /*overflow-y: auto;*/
}

.manufacture-page .manufacture-03 .bot .box:hover h5::after {
    background-color: #fff;
}

.manufacture-page .manufacture-03 .bot .box:hover h4,
.manufacture-page .manufacture-03 .bot .box:hover h5,
.manufacture-page .manufacture-03 .bot .box:hover p {
    color: #fff;
}

.manufacture-page .manufacture-03 .bot .box:hover .icon img {
    filter: grayscale(10) brightness(10);
}

.manufacture-page .manufacture-03 .bot .box:hover .icon,
.manufacture-page .manufacture-03 .bot .box:hover .icon::before,
.manufacture-page .manufacture-03 .bot .box:hover .icon::after {
    border-color: #fff;
}

.manufacture-page .manufacture-03 .bot .box:hover {
    /*background-color: var(--color);*/
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

.manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper {
    width: 1200px;
    margin: auto;
}

.manufacture-page .manufacture-03 .bot {
    width: 1242px;
    margin: auto;
    padding: 22px 0;
}

/*.manufacture-page .manufacture-03 .bot .swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between !important;
}*/

.manufacture-page .manufacture-03 .bot .swiper-slide {
    width: 30%
}

.manufacture-page .manufacture-03 .bot,
.manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper {
    width: 100% !important;
}

.manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper {
    padding-bottom: 30px;
}

.manufacture-page .manufacture-03 .botF {
    padding: 0 !important;
}

@media screen and (max-width:1600px) {
    .manufacture-page .manufacture-03 .top p {
        font-size: 15px;
        line-height: 30px;
        margin-top: 8px;
    }

    .manufacture-page .manufacture-03 .top {
        margin-bottom: 30px;
    }

    .manufacture-page .manufacture-03 .top h4 {
        font-size: 24px;
    }

    .manufacture-page .manufacture-03 .top .line {
        height: 55px;
        margin: 20px 0;
    }

    .manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper {
        width: 1000px;
    }

    .manufacture-page .manufacture-03 .bot {
        width: 1032px;
        padding: 22px 0;
    }

    .manufacture-page .manufacture-03 .botF {
        padding: 0 13px;
    }

    .manufacture-page .manufacture-03 .botF .fa {
        font-size: 65px;
    }

    .manufacture-page .manufacture-03 .bot .box {
        padding: 43px 0 105px;
        /*box-shadow: 0 0 11px #d8d8d8;*/
       background: #f3fcff;
    }

    .manufacture-page .manufacture-03 .bot .box .icon {
        height: 95px;
        width: 95px;
    }

    .manufacture-page .manufacture-03 .bot .box .icon img {
        width: 48px;
    }

    .manufacture-page .manufacture-03 .bot .box h4 {
        font-size: 26px;
        margin-bottom: 5px;
        margin-top: 44px;
    }

    .manufacture-page .manufacture-03 .bot .box h5 {
        width: 220px;
        font-size: 16px;
        line-height: 30px;
        height: 48px;
    }

    .manufacture-page .manufacture-03 .bot .box h5::after {
        width: 17px;
        height: 3px;
  
    }

    .manufacture-page .manufacture-03 .botF .fa-angle-left {
        left: -18px;
    }

    .manufacture-page .manufacture-03 .botF .fa-angle-right {
        right: -18px;
    }

    .manufacture-page .manufacture-03 {
        padding: 115px 0 90px;
    }

    .manufacture-page .manufacture-03 .bg_fix {
        height: 555px;
    }
}

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

    .manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper,
    .manufacture-page .manufacture-03 .bot {
        max-width: 100%;
    }

    .manufacture-page .manufacture-03 .bot .box p {
        font-size: 14px;
        line-height: 28px;
        padding: 0 15px;
    }

    .manufacture-page .manufacture-03 .bot .box h5:after {
        display: none;
    }

    .manufacture-page .manufacture-03 .bot .box h5 {
        height: auto;
        width: 100%;
    }

    .manufacture-page .manufacture-03 .bot .box h4 {
        margin-top: 30px;
        font-size: 20px;
        line-height: 36px;
    }

    .manufacture-page .manufacture-03 .bot .box {
        padding: 40px 0;
    }
}

@media screen and (max-width: 1000px) {
    .manufacture-page .manufacture-03 .top h4 {
        font-size: 20px;
    }

    .manufacture-page .manufacture-03 .bg_fix {
        height: 620px;
    }

    .manufacture-page .manufacture-03 .bot .box .icon {
        zoom: .7;
    }



    .manufacture-page .manufacture-03 .bot .swiper-slide {
        width: 98%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:700px) {
    .manufacture-page .manufacture-03 .top p {
        font-size: 15px;
        line-height: 26px;
        margin-top: 8px;
    }

    .manufacture-page .manufacture-03 .top .line {
        height: 42px;
        margin: 14px 0;
        position: relative;
    }

    .manufacture-page .manufacture-03 .top h4 {
        font-size: 22px;
    }

    .manufacture-page .manufacture-03 .bot {
        width: 110%;
    }

    .manufacture-page .manufacture-03 .top {
        margin-bottom: 20px;
    }

    .manufacture-page .manufacture-03 .botF {
        padding: 0 0px;
    }

    @keyframes hua2 {
        from {
            top: 0%;
        }

        to {
            top: 95%;
        }
    }

    .manufacture-page .manufacture-03 .bot .manufacture-page .manufacture-03Swiper {
        width: 100%;
    }

    .manufacture-page .manufacture-03 .bot {
        width: 100%;
        padding: 0;
    }

    .manufacture-page .manufacture-03 .botF .fa-angle-left {
        left: -8px;
    }

    .manufacture-page .manufacture-03 .botF .fa-angle-right {
        right: -8px;
    }

    .manufacture-page .manufacture-03 {
        padding: 80px 0 40px;
    }

    .manufacture-page .manufacture-03 .bg_fix {
        height: 483px;
    }
}

.seoPublic .Auxil-about .box .right{
    padding-top: 0;
}
.seoPublic .Auxil-about .box .right .text{
    max-height: 310px;
}
#mobile2{
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}
#wap-bottom{
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#3e3e3c, #3e3e3c);
}

.seoPublic>div:nth-child(odd){
    background: #ecf3f5;
}

.seoPublic .Auxil-through a:hover{
    background-image: linear-gradient(90deg, #003ca0 0%, #5dbdff 100%), linear-gradient(#0a5284, #0a5284);
}