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

#mobile3 .m-search form input[type="submit"] {
    background-image: url(../images/icon-search-white.png);
}

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

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

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

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

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

body {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 18px;
    --color: #015cb5;
    margin: 0 auto;
}

.container {
    width: 1630px;
}

.bigtt-zt {
    font-family: "Poppins";
    font-weight: 600;
}

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

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

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

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

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

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

#header .nav .ui.menu .menu-box .menu-menu-container ul.menu>li {
    margin: 0 30px;
    font-size: 20px;
    font-weight: 500;
    height: 100%;
    color: #000;
    -webkit-perspective: 500px;
    perspective: 500px;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    border-bottom: 2px solid transparent;
}

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

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

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

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

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

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

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

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

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

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

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

#header .nav .ui.menu .right {
    display: flex;
    align-items: center;
}

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

#header .nav .ui.menu .right .h-language span i {
    font-size: 30px;
}

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

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

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

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

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

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

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

#header .nav .ui.menu .right .h-search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 35px 0 20px;
    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 {
    filter: none;
}

#header .nav .ui.menu .right .h-inquire {
    border-radius: 23px;
    height: 46px;
    min-width: 170px;
}

#header.active {
    background-color: #fff;
}

#header.inner_active {
    background-color: #fff;
}

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

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

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

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


#banner .banner-content .swiper-slide .txtbg {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: calc(6.0416vw + 14px);
    line-height: 0.7;
    color: rgba(0, 0, 0, 0.2);
}

#banner .banner-content .zdyqh {
    position: absolute;
    bottom: 0;
    right: 100px;
}

#banner .banner-content .swiper-button {
    position: static;
    margin-top: 0;
}

.zdyqh .swiper-button {
    width: 65px;
    height: 65px;
    background-color: #fff;
    transition: all 0.5s;
}

.zdyqh .swiper-button::after {
    font-size: 20px;
    color: #000;
    transition: all 0.5s;
}

.zdyqh .swiper-button:hover {
    background-color: var(--color);
}

.zdyqh .swiper-button:hover::after {
    color: #fff;
}

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

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

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

#index-body .init-1 .mk-content ul li .box .txtbox {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 80px 48px;
}

#index-body .init-1 .mk-content ul li .box .txtbox .desc {
    max-height: 3em;
    overflow-y: auto;
}

#index-body .init-2 {
    background-position: center;
}

#index-body .init-2 .mk-content .top ul li {
    /*padding: 65px 0;*/
}

#index-body .init-2 .mk-content .top ul li .box .imgbox {
    transition: all 0.5s;
}

#index-body .init-2 .mk-content .top ul li .box .btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 145px;
    height: 92px;
    background-color: var(--color);
    border-radius: 47px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
}

#index-body .init-2 .mk-content .top ul li .box .btn-base i {
    font-size: 30px;
    color: #fff;
}

#index-body .init-2 .mk-content .top ul li .box .btn-base::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transition: all 0.5s;
    z-index: -1;
}

#index-body .init-2 .mk-content .top ul li .box .btn-base:hover::after {
    top: 0;
}

#index-body .init-2 .mk-content .top ul li .box:hover .btn-base {
    opacity: 1;
}

#index-body .init-2 .mk-content .top ul li.swiper-slide-active .box .imgbox {
    transform: scale(1.35);
}

#index-body .init-2 .mk-content .top ul li.swiper-slide-prev .box {
    transform: translateX(-10%);
}

#index-body .init-2 .mk-content .top ul li.swiper-slide-next .box {
    transform: translateX(10%);
}

#index-body .init-2 .mk-content .bottom {
    flex-direction: row-reverse;
    margin-top: -30px;
}

#index-body .init-2 .mk-content .bottom .catlist ul li {
    margin-bottom: 12px;
}

#index-body .init-2 .mk-content .bottom .catlist ul li .box {
    width: 368px;
    background-color: #fff;
    padding: 12px 27px 12px 26px;
    transition: all 0.5s;
}

#index-body .init-2 .mk-content .bottom .catlist ul li .box a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#index-body .init-2 .mk-content .bottom .catlist ul li .box a i {
    font-size: 22px;
}

#index-body .init-2 .mk-content .bottom .catlist ul li .box:hover {
    background-color: var(--color);
    color: #fff;
}

#index-body .init-2 .mk-content .bottom .catlist ul li:nth-last-child(2) {
    margin-bottom: 40px;
}

#index-body .init-2 .mk-content .bottom .zdyqh {
    gap: 10px;
}

#index-body .init-2 .mk-content .bottom .zdyqh .swiper-button {
    position: static;
    width: 122px;
    height: 102px;
    margin-top: 0;
}

#index-body .init-2 .mk-content .bottom .zdyqh .swiper-button::after {
    font-size: 16px;
    font-weight: 700;
}

#index-body .init-3 .mk-content .left {
    width: 50%;
    padding-right: 9%;
}

#index-body .init-3 .mk-content .left .linebg .line01 {
    transition: all 0.5s;
    animation: clip-line 2s;
    max-width: 60%;
}

#index-body .init-3 .mk-content .left .linebg .line02 {
    transition: all 0.5s;
    animation: clip-line01 2s;
    position: absolute;
    right: 10%;
    bottom: 0;
    max-width: 75%;
}

#index-body .init-3 .mk-content .right {
    width: 50%;
}

#index-body .init-3 .mk-content .right .datashow ul {
    margin: -16px -22px;
}

#index-body .init-3 .mk-content .right .datashow ul li {
    width: 50%;
    padding: 16px 22px;
}

#index-body .init-3 .mk-content .right .datashow ul li .box {
    background-color: #f4f4f4;
    border-radius: 40px;
    transition: all 0.5s;
    padding: 35px 55px;
    min-height: 392px;
}

#index-body .init-3 .mk-content .right .datashow ul li .box i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    transition: all 0.5s;
}

#index-body .init-3 .mk-content .right .datashow ul li .box .num {
    color: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

#index-body .init-3 .mk-content .right .datashow ul li .box:hover {
    background-color: var(--color);
    color: #fff;
    cursor: pointer;
}

#index-body .init-3 .mk-content .right .datashow ul li .box:hover i {
    filter: brightness(0) invert(1);
}

#index-body .init-3 .mk-content .right .datashow ul li .box:hover .num {
    color: rgba(255, 255, 255, 0.1);
}

#index-body .init-3 .mk-content .right .datashow ul li:nth-child(odd) {
    transform: translateY(-40px);
}

#index-body .init-4 .mk-content {
    z-index: 0;
}

#index-body .init-4 .mk-content .big-swiper ul li .box {
    position: relative;
}

#index-body .init-4 .mk-content .big-swiper ul li .box .txtbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con {
    margin-top: -12%;
}

#index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con .left {
    width: 50%;
    padding-right: 9%;
}

#index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con .left .desc {
    max-height: 9em;
    overflow-y: auto;
}

#index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con .right {
    width: 50%;
    padding-left: 9%;
}

#index-body .init-4 .mk-content .small-swiper {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--color);
    border-radius: 40px 0 0 0;
    width: 83%;
    padding: 30px 70px;
    z-index: 9;
}

#index-body .init-4 .mk-content .small-swiper .con .left {
    width: calc(100% - 334px);
}

#index-body .init-4 .mk-content .small-swiper .con .left ul {
    align-items: center;
}

#index-body .init-4 .mk-content .small-swiper .con .left ul li {
    padding: 10px 0;
}

#index-body .init-4 .mk-content .small-swiper .con .left ul li .box {
    cursor: pointer;
    transition: all 0.5s;
}

#index-body .init-4 .mk-content .small-swiper .con .left ul li .box img {
    margin-right: 8%;
}

#index-body .init-4 .mk-content .small-swiper .con .left ul li:hover .box {
    transform: translateY(-6px);
}

#index-body .init-4 .mk-content .small-swiper .con .left ul li.swiper-slide-thumb-active .box {
    transform: translateY(-6px);
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-button {
    position: static;
    margin-top: 0;
    height: auto;
    width: auto;
    transition: all 0.5s;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-button::after {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    transition: all 0.5s;
    display: none;
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-button.swiper-button-prev::after {
    content: "PREV";
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-button.swiper-button-next::after {
    content: "NEXT";
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-button:hover {
    color: #000;
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-pagination {
    position: static;
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-pagination span {
    border-radius: 0;
    height: 2px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0;
    opacity: 1;
    transition: all 0.5s;
    vertical-align: middle;
}

#index-body .init-4 .mk-content .small-swiper .con .swiper-tools .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: rgba(255, 255, 255, 0.8);
}

#index-body .init-5 .mk-content ul li .box .txtbox {
    opacity: 0;
    transition: all 0.5s;
}

#index-body .init-5 .mk-content ul li .box .txtbox .text {
    max-width: calc(100% - 250px);
}

#index-body .init-5 .mk-content ul li .box .txtbox .text .desc {
    max-height: 4.5em;
    overflow-y: auto;
}

#index-body .init-5 .mk-content ul li.swiper-slide-active .txtbox {
    opacity: 1;
}

#index-body .init-6 {
    min-height: 520px;
}

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

#index-body .init-6 .bigimg ul {
    height: 100%;
}

#index-body .init-6 .bigimg ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

#index-body .init-6 .bigimg ul li img {
    height: 100%;
    object-fit: cover;
}

#index-body .init-6 .mk-content .left {
    width: 30%;
    padding-right: 6%;
}

#index-body .init-6 .mk-content .left .desc {
    max-height: 4.5em;
    overflow-y: auto;
}

#index-body .init-6 .mk-content .right {
    width: 60%;
}

#index-body .init-6 .mk-content .right .ullist {
    margin: -30px;
}

#index-body .init-6 .mk-content .right .ullist li {
    width: 33.3%;
    padding: 30px;
    position: relative;
}

#index-body .init-6 .mk-content .right .ullist li .box .imgbox {
    width: 172px;
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 6px solid var(--color);
}

#index-body .init-6 .mk-content .right .ullist.ul01 li+li::after {
    content: "";
    display: block;
    width: 53px;
    height: 25px;
    background-image: url("../images/h-cjt.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 38%;
    transform: translate(-50%, -50%);
    left: 0;
}

#index-body .init-6 .mk-content .right .ullist.ul02 {
    flex-direction: row-reverse;
}

#index-body .init-6 .mk-content .right .ullist.ul02 li+li::after {
    content: "";
    display: block;
    width: 53px;
    height: 25px;
    background-image: url("../images/h-cjt02.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 38%;
    transform: translate(50%, -50%);
    right: 0;
}

#index-body .init-6 .mk-content .right .ullist.uljt li {
    text-align: center;
    opacity: 0;
}

#index-body .init-6 .mk-content .right .ullist.uljt li:nth-last-child(1) {
    opacity: 1;
}

#index-body .init-6 .zdyqh {
    position: absolute;
    left: calc(50vw - 800px);
    bottom: 0;
}

#index-body .init-6 .zdyqh .swiper-button {
    position: static;
    margin-top: 0;
    width: 107px;
    height: 97px;
}

#index-body .init-7 .mk-top .line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}

#index-body .init-7 .mk-content .left {
    width: 35%;
}

#index-body .init-7 .mk-content .left ul li .box {
    position: relative;
}

#index-body .init-7 .mk-content .left ul li .box .btn-more {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background-color: var(--color);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

#index-body .init-7 .mk-content .left ul li .box .btn-more:hover {
    background-color: #fff;
    color: var(--color);
    border-color: var(--color);
}

#index-body .init-7 .mk-content .right {
    width: 65%;
    padding-left: 3%;
}

#index-body .init-7 .mk-content .right .swiper {
    height: 458px;
}

#index-body .init-7 .mk-content .right .swiper ul li .item {
    height: 100%;
    padding: 20px 50px;
    background-color: #f4f3f4;
}

#index-body .init-7 .mk-content .right .swiper ul li .box .date .month {
    color: #919191;
}

#index-body .init-7 .mk-content .right .swiper ul li .box .text {
    width: calc(100% - 260px);
}

#index-body .init-7 .mk-content .right .swiper ul li .box .text .desc {
    max-height: 3em;
    overflow-y: auto;
}

@keyframes clip-line {
    from {
        clip-path: polygon(100% 100%, 100% 0%, 100% 100%, 0% 100%);
    }

    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

@keyframes clip-line01 {
    from {
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 0% 100%);
    }

    to {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

#footer {
    position: relative;
    z-index: 1;
    background-color: #1f4b77;
    -o-background-size: cover;
    background-size: cover;
    background-attachment: fixed;
}

#footer .fTop .container {
    padding-top: 60px;
}

#footer .fTop .container .listCont .first {
    font-weight: 500;
    color: #fff;
}

#footer .fTop .container .listCont form {
    margin-top: 10px;
}

#footer .fTop .container .listCont form input {
    margin-top: 10px;
    width: calc(50% - 10px);
    background-color: #f6f6f6;
    border: none;
    padding: 12px 20px;
}

#footer .fTop .container .listCont form input::placeholder {
    color: #323232;
    font-weight: 500;
}

#footer .fTop .container .listCont form .content {
    width: calc(100% - 220px);
}

#footer .fTop .container .listCont form .submit {
    margin-top: 10px;
    width: 200px;
    text-align: center;
    background-color: var(--color);
    padding: 14px 10px;
    cursor: pointer;
    color: #fff;
    transition: all 0.5s;
}

#footer .fTop .container .listCont form .submit:hover {
    background-color: #fff;
    color: var(--color);
}

#footer .fTop .container .listCont #ewm {
    width: 116px;
    background-color: #fff;
    padding: 6px;
}

#footer .fTop .container .listCont1 {
    width: 41%;
}

#footer .fTop .container .listCont2 {
    margin-right: 120px;
}

#footer .fTop .container .line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

#footer .fMiddle .container .listCont {
    margin-top: 40px;
}

#footer .fMiddle .container .listCont .first {
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}

#footer .fMiddle .container .listCont .menu-menu-container ul li {
    margin-top: 8px;
}

#footer .fMiddle .container .listCont .menu-menu-container ul li a {
    transition: all 0.5s;
    font-size: 20px;
    display: inline-block;
    color: #fff;
    position: relative;
}

#footer .fMiddle .container .listCont .menu-menu-container ul li a:hover {
    transform: translateX(5px);
}

#footer .fMiddle .container .listCont .menu-menu-container ul li ul {
    display: none;
}

#footer .fMiddle .container .listCont .list {
    margin-top: 10px;
}

#footer .fMiddle .container .listCont .list a {
    transition: all 0.5s;
    font-size: 20px;
    display: inline-block;
    color: #fff;
    position: relative;
}

#footer .fMiddle .container .listCont .list a:hover {
    transform: translateX(5px);
}

#footer .fMiddle .container .listCont .list2 {
    color: #fff;
    margin-top: 10px;
}

#footer .fMiddle .container .listCont .share ul li {
    margin-right: 10px;
}

#footer .fMiddle .container .listCont .share ul li a {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    border: 1px solid #7d7d7d;
    color: #7d7d7d;
    font-size: 14px;
    transition: all 0.5s;
}

#footer .fMiddle .container .listCont .share ul li a:hover {
    background-color: #7d7d7d;
    color: #fff;
}

#footer .fMiddle .container .listCont .go_top {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

#footer .fMiddle .container .listCont1 {
    width: 190px;
}

#footer .fMiddle .container .listCont2 {
    width: 310px;
}

#footer .fMiddle .container .listCont3 {
    width: 460px;
}

#footer .fMiddle .container .listCont4 {
    width: 320px;
}

#footer .subCont {
    height: 20px;
    background-color: #000;
}

#footer .copyright {
    position: relative;
    font-size: 16px;
    overflow: hidden;
    color: #ffffff;
    -o-background-size: cover;
    background-size: cover;
}

#footer .copyright svg {
    height: 30px;
    width: auto;
    fill: #ffffff;
    position: relative;
    top: 2px;
}

#footer .copyright a img {
    margin-top: 8px;
    height: 16px;
}

#footer .copyright .left {
    position: relative;
    top: 0;
}

@media (max-width: 1450px) {
    #footer .fMiddle .container .listCont4 {
        width: 100%;
    }
}

@media (max-width: 1250px) {
    #footer .fMiddle .container .listCont1 {
        width: 170px;
    }

    #footer .fMiddle .container .listCont2 {
        width: 280px;
    }

    #footer .fTop .container .listCont2 {
        margin-right: 0;
    }

    #footer .fTop .container .listCont1 {
        width: 56%;
    }
}

@media (max-width: 1000px) {
    #footer .fTop .container .listCont1 {
        width: 100%;
    }

    #footer .fMiddle .container .listCont {
        width: 100%;
    }
}

@media (max-width: 700px) {
    #footer .fTop .container .listCont form input {
        width: 100%;
    }

    #footer .fTop .container .listCont form .content {
        width: 100%;
    }

    #footer .fTop .container .listCont form .submit {
        width: 100%;
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .date .month {
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    #footer .fTop .container {
        padding-top: 0;
    }

    #footer .fMiddle .container .listCont {
        margin-top: 20px;
    }

    #footer .fMiddle .container .listCont .list2 {
        font-size: 14px;
    }

    #footer .fMiddle .container .listCont .list2 span {
        display: block;
    }

    #footer .fMiddle .container .listCont .list2 span.zw {
        display: none;
    }

    #footer .fTop .container .listCont form input {
        padding: 6px 16px;
    }

    #footer .fTop .container .listCont form .submit {
        padding: 6px 16px;
    }

    #banner .banner-content .swiper-slide .txt-content h3 {
        text-shadow: 0px 0px 8px #fff;
    }

    #banner .banner-content .swiper-slide .txt-content .text2 {
        text-shadow: 0px 0px 2px #fff;
    }
}

@media screen and (max-width: 1700px) {
    #header .nav .ui.menu {
        width: 90%;
    }

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

    #index-body .init-6 .zdyqh {
        left: calc((100vw - 1370px) / 2);
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text {
        width: calc(100% - 200px);
    }
}

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

    .btn-go {
        zoom: 0.9;
    }

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

    #index-body .init-2 .mk-content .bottom .zdyqh .swiper-button {
        zoom: 0.8;
    }

    #index-body .init-3 .mk-content .right .datashow ul {
        margin: -12px;
    }

    #index-body .init-3 .mk-content .right .datashow ul li {
        padding: 12px;
    }

    #index-body .init-3 .mk-content .right .datashow ul li .box {
        padding: 20px 30px;
        min-height: 320px;
    }

    #index-body .init-4 .mk-content .small-swiper .con .left {
        width: calc(100% - 224px);
    }

    #index-body .init-4 .mk-content .small-swiper .con .left ul li .box img {
        zoom: 0.8;
    }

    #index-body .init-6 .zdyqh {
        left: calc((100vw - 1170px) / 2);
    }

    #index-body .init-6 .zdyqh .swiper-button {
        zoom: 0.8;
    }

    #index-body .init-6 .mk-content .right .ullist li .box .imgbox {
        zoom: 0.9;
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text {
        width: calc(100% - 150px);
    }
}

@media screen and (max-width: 1250px) {
    #banner .banner-content {
        height: 40vw;
    }

    #index-body .init-2 .mk-content .bottom {
        margin-top: 0;
    }

    #index-body .init-3 .mk-content .right .datashow ul li .box {
        padding: 15px;
        min-height: 280px;
        border-radius: 20px;
    }

    #index-body .init-4 .mk-content .small-swiper {
        padding: 30px;
    }

    #index-body .init-4 .mk-content .big-swiper ul li .box .imgbox img {
        min-height: 560px;
        object-fit: cover;
    }

    #index-body .init-4 .mk-content .small-swiper {
        width: 92%;
    }

    #index-body .init-6 .zdyqh {
        left: calc((100vw - 940px) / 2);
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text {
        width: calc(100% - 120px);
    }

    #index-body .init-7 .mk-content .right .swiper ul li .item {
        padding: 20px 30px;
    }
}

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

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

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

    .phone_hide {
        display: none;
    }

    #index-body .init-1 .mk-content ul li .box .txtbox {
        padding: 20px;
    }

    #index-body .init-1 .mk-content ul li .box .txtbox .desc {
        max-height: 4em;
    }

    #index-body .init-5 .mk-content {
        padding: 0 15px;
    }

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

    #index-body .init-5 .mk-content ul li .box .txtbox .text {
        max-width: 100%;
        margin-bottom: 10px;
    }

    #index-body .init-2 .mk-content .bottom {
        flex-direction: row;
    }

    #index-body .init-2 .mk-content .bottom .catlist {
        width: 100%;
        margin-top: 5%;
    }

    #index-body .init-2 .mk-content .bottom .zdyqh .swiper-button {
        zoom: 0.6;
    }

    #index-body .init-2 .mk-content .bottom .catlist ul li .box {
        width: 100%;
        padding: 7px 20px;
    }

    #index-body .init-2 .mk-content .bottom .catlist ul li:nth-last-child(2) {
        margin-bottom: 12px;
    }

    #index-body .init-2 .mk-content .top ul li {
        padding: 0;
    }

    #index-body .init-2 .mk-content .top ul li.swiper-slide-active .box .imgbox {
        transform: scale(1);
    }

    #index-body .init-2 .mk-content .top ul li.swiper-slide-next .box {
        transform: none;
    }

    #index-body .init-3 .mk-content .left {
        width: 100%;
        padding-right: 0;
    }

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

    #index-body .init-3 .mk-content .left .linebg {
        display: none;
    }

    #index-body .init-3 .mk-content .right .datashow ul li:nth-child(odd) {
        transform: translateY(0);
    }

    #index-body .init-4 .mk-content .small-swiper {
        position: static;
        border-radius: 0;
        width: 100%;
    }

    #index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con {
        margin-top: 0;
        flex-direction: column-reverse;
    }

    #index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con .left {
        width: 100%;
        padding-right: 0;
        margin-top: 5%;
    }

    #index-body .init-4 .mk-content .big-swiper ul li .box .txtbox .con .right {
        width: 100%;
        padding-left: 0;
    }

    #index-body .init-4 .mk-content .big-swiper ul li .box .imgbox img {
        min-height: 510px;
    }

    #index-body .init-4 .mk-content .small-swiper .con {
        flex-wrap: wrap;
    }

    #index-body .init-4 .mk-content .small-swiper .con .left {
        width: 100%;
        margin-bottom: 20px;
    }

    #index-body .init-6 .zdyqh {
        left: calc((100vw - 670px) / 2);
    }

    /*#index-body .init-6 .mk-content {
        flex-direction: column-reverse;
    }*/

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

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

    #index-body .init-6 .zdyqh {
        position: static;
        justify-content: center;
        margin-top: 5%;
    }

    #index-body .init-6 .zdyqh .swiper-button {
        zoom: 0.6;
    }

    #index-body .init-6 .mk-content .right .ullist li .box .imgbox {
        zoom: 0.6;
    }

    #index-body .init-6 .mk-content .right .ullist {
        margin: -15px;
    }

    #index-body .init-6 .mk-content .right .ullist li {
        padding: 15px;
    }

    #index-body .init-6 .mk-content .right .ullist li+li::after {
        zoom: 0.8;
    }

    #index-body .init-6 .mk-content .right .ullist.uljt li img {
        zoom: 0.8;
    }

    #index-body .init-7 .mk-content .left {
        width: 100%;
    }

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

    #index-body .init-7 .mk-content .left ul li .box .imgbox img {
        width: 100%;
    }

    #index-body .init-7 .mk-content .left ul li .box .btn-more {
        zoom: 0.8;
    }

    #index-body .init-7 .mk-content .right .swiper {
        height: auto;
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text .desc {
        max-height: 6em;
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text {
        width: calc(100% - 80px);
    }

}

@media screen and (max-width: 700px) {
    body {
        font-size: 15px;
    }

    .btn-go {
        zoom: 0.8;
    }

    #banner .banner-content .zdyqh {
        display: none;
    }
}

@media screen and (max-width: 500px) {
    #index-body .init-3 .mk-content .right .datashow ul li .box i {
        zoom: 0.7;
    }

    #index-body .init-3 .mk-content .right .datashow ul li {
        width: 100%;
    }

    #index-body .init-3 .mk-content .right .datashow ul li .box {
        min-height: unset;
    }

    #index-body .init-3 .mk-content .right .datashow ul li .box .text {
        margin: 10px 0;
    }

    #index-body .init-6 .mk-content .right .ullist.uljt {
        display: none;
    }

    #index-body .init-6 .mk-content .right .ullist li {
        width: 100%;
    }

    #index-body .init-6 .mk-content .right .ullist li+li::after {
        display: none !important;
    }

    #index-body .init-6 .mk-content .right .ullist li .box .imgbox {
        zoom: 1;
    }

    #index-body .init-7 .mk-content .right .swiper ul li .box .text {
        width: 100%;
    }

    #index-body .init-7 .mk-top {
        flex-wrap: wrap;
    }

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

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


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

.inner-banner {
    position: relative;
}

.inner-banner .ui.container {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.inner-banner .ui.container h2 {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 600;
    color: white;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inner-banner .ui.container .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 25px 0 45px;
}

.inner-banner .ui.container .box .mbx {
    font-size: 18px;
    color: white;
}

.inner-banner .ui.container .box .mbx a {
    position: relative;
    padding-right: 15px;
}

.inner-banner .ui.container .box .mbx a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--color);
}

@media screen and (max-width: 1450px) {
    .inner-banner .ui.container h2 {
        font-size: 38px;
    }
}

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

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.i-tag {
    font-size: 20px;
    font-weight: 600;
    color: var(--color);
}

.i-tag i {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color);
    width: 40px;
    height: 1px;
    margin-right: 20px;
}

/*
    about-page
==============================================*/

.about-page .about-1 .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;
    padding-left: 100px;
}

.about-page .about-1 .top .i-title {
    margin-left: 40px;
}

.about-page .about-1 .box {
    position: relative;
    background: -webkit-gradient(linear, right top, left top, color-stop(66%, #fafafa), color-stop(66%, transparent));
    background: -webkit-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
    background: -moz-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
    background: linear-gradient(to left, #f5f5f5 66%, transparent 66% 100%);
    padding: 100px 0;
    margin-top: 65px;
}

.about-page .about-1 .box ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 40%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 0;
    z-index: 1;
}

.about-page .about-1 .box ul li {
    width: 30%;
    background: #1a1a1a;
    margin: 0 10px;
    color: white;
    padding: 25px 20px 60px;
}

.about-page .about-1 .box ul li .h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin: 34px 0 3px;
}

.about-page .about-1 .box ul li .h3 em {
    font-size: 49px;
    font-weight: 600;
}

.about-page .about-1 .box ul li p {
    font-size: 16px;
}

.about-page .about-1 .box ul li:first-child {
    background: var(--color);
}

.about-page .about-1 .box .play {
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    font-size: 90px;
    line-height: 1;
    color: var(--color);
}
.about-page .about-1 .box .play::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.26);
    z-index: -1;
}

.about-page .about-1 .box .play::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    -o-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.658);
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    z-index: -1;
}

.about-page .about-1 .box .wrap .left {
    width: 40%;
}

.about-page .about-1 .box .wrap .right {
    width: 60%;
    padding-left: 50px;
    padding-right: 260px;
}

.about-page .about-1 .box .wrap .right .content {
    font-size: 18px;
    line-height: 2;
    opacity: 0.73;
    max-height: calc(2em * 15);
    overflow-y: auto;
}

@media screen and (max-width: 1700px) {
    .about-page .about-1 .box .wrap .right {
        padding-right: 120px;
    }

    .about-page .about-1 .box ul li {
        width: 40%;
    }
}

@media screen and (max-width: 1450px) {
    .about-page .about-1 .box ul li .h3 em {
        font-size: 30px;
    }

    .about-page .about-1 .box .play {
        right: 150px;
        zoom: .7;
        top: -75px;
    }
}

@media screen and (max-width: 1250px) {
    .about-page .about-1 .box .wrap .right {
        padding-right: 60px;
    }
}

@media screen and (max-width: 1000px) {
    .about-page .about-1 .box .wrap .left {
        width: 100%;
    }

    .about-page .about-1 .box .wrap .right {
        width: 100%;
        margin-top: 30px;
    }

    .about-page .about-1 .top {
        padding-left: 0;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .about-page .about-1 .top .i-title {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
        line-height: 2;
    }

    .about-page .about-1 .box ul {
        width: 75%;
    }

    .about-page .about-1 .box .play {
        right: 35px;
    }

    .about-page .about-1 .box .wrap .right .content {
        font-size: 16px;
    }
}

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

    .about-page .about-1 .box {
        margin-top: 45px;
        padding-bottom: 60px;
    }

    .about-page .about-1 .box ul {
        width: 100%;
    }

    .about-page .about-1 .box .play {
        top: 25%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        display: none;
    }

    .about-page .about-1 .box .wrap .right {
        padding: 0 15px;
    }

    .about-page .about-1 .box ul li {
        padding-bottom: 30px;
    }
}


.about-page .about-2 {
    padding-bottom: 100px;
    padding-top: 90px;
    position: relative;
}

.about-page .about-2 .bg {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fafafa;
    width: 71%;
    height: 70%;
    z-index: -1;
}

.about-page .about-2 .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 100px;
}

.about-page .about-2 .top .i-title {
    /*width: 40%;*/
    margin-left: 55px;
}

.about-page .about-2 .top .more_btn {
    position: absolute;
    right: 0;
}

.about-page .about-2 .top .more_btn .more {
    border-color: rgba(0, 0, 0, 0.1);
}

.about-page .about-2 .top .more_btn .more::after {
    color: black;
}

.about-page .about-2 .list {
    padding-left: 230px;
}

.about-page .about-2 ul {
    margin: -25px;
}

.about-page .about-2 ul .slick-list {
    padding-top: 20px;
}

.about-page .about-2 ul li {
    padding: 25px;
}

.about-page .about-2 ul li .box {
    border: 1px solid #b5b5b5;
    position: relative;
    padding: 70px 35px;
    background: white;
}

.about-page .about-2 ul li .box .num {
    font-size: 18px;
    width: 48px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    background: var(--color);
    color: white;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.about-page .about-2 ul li .box .h5 {
    font-size: 30px;
    font-weight: bold;
    margin: 30px 0 15px;
    height: 3em;
    overflow-y: auto;
}

.about-page .about-2 ul li .box .des {
    font-size: 16px;
    line-height: 2;
    color: #4d4d4d;
    height: 8em;
    overflow-y: auto;
}

.about-page .about-2 ul li .box .border i {
    position: absolute;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
    background: #000;
}

.about-page .about-2 ul li .box .border i:nth-child(1) {
    left: -1px;
    top: 0;
    width: 1px;
    height: 0;
}

.about-page .about-2 ul li .box .border i:nth-child(2) {
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
}

.about-page .about-2 ul li .box .border i:nth-child(3) {
    right: -1px;
    bottom: 0;
    width: 1px;
    height: 0;
}

.about-page .about-2 ul li .box .border i:nth-child(4) {
    right: 0;
    top: -1px;
    width: 0;
    height: 1px;
}

.about-page .about-2 ul li .box:hover .border i:nth-child(1) {
    height: 100%;
}

.about-page .about-2 ul li .box:hover .border i:nth-child(2) {
    width: 100%;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: .2s;
}

.about-page .about-2 ul li .box:hover .border i:nth-child(3) {
    height: 100%;
    -webkit-transition-delay: .4s;
    -moz-transition-delay: .4s;
    transition-delay: .4s;
}

.about-page .about-2 ul li .box:hover .border i:nth-child(4) {
    width: 100%;
    -webkit-transition-delay: .6s;
    -moz-transition-delay: .6s;
    transition-delay: .6s;
}

@media screen and (max-width: 1450px) {
    .about-page .about-2 .top {
        margin-bottom: 90px;
    }

    .about-page .about-2 ul {
        margin: -13px;
    }

    .about-page .about-2 ul li {
        padding: 13px;
    }

    .about-page .about-2 .list {
        padding-left: 80px;
    }
}

@media screen and (max-width: 1000px) {
    .i-tag {
        font-size: 18px;
    }

    .about-page .about-2 {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .about-page .about-2 .top .more_btn {
        position: relative;
    }

    .about-page .about-2 .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }

    .about-page .about-2 .top .i-title {
        width: 100%;
        margin-left: 0;
        margin: 20px 0;
        line-height: 1.8;
    }

    .about-page .about-2 ul li .box .h5 {
        margin-top: 30px;
        font-size: 20px;
    }

    .about-page .about-2 ul li .box {
        padding: 25px;
        padding-top: 45px;
    }

    .about-page .about-2 .list {
        padding: 0 15px;
    }
}

@media screen and (max-width: 700px) {
    .about-page .about-2 {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .about-page .about-2 .top {
        margin-bottom: 56px;
    }
}

.about-page .about-4 {
    padding: 110px 0 80px;
    background: url("../images/about-4-bg.jpg") center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 4%;
}

.about-page .about-4:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: -10%;
    right: 0;
    background: url("../images/about-4-2.png") right bottom no-repeat;
    background-size: 60% auto;
    position: absolute;
}

.about-page .about-4 span.h2 {
    line-height: 1.2;
    display: block;
}

.about-page .about-4 .text {
    font-size: 16px;
    margin-top: 1em;
    display: block;
}

.about-page .about-4 .text:after {
    content: '';
    width: 2em;
    height: 0.25em;
    background: white;
    display: block;
    margin: 1em auto 0;
}

.about-page .about-4 .list {
    margin-top: 60px;
}

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

.about-page .about-4 .list ul li a {
    display: block;
}

.about-page .about-4 .list ul li a img {
    display: block;
    width: 100%;
}

.about-page .about-5 {
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.about-page .about-5 span.h2 {
    line-height: 1.2;
}

.about-page .about-5 span.h2:after {
    content: '';
    width: 1.66666667em;
    height: 0.13333333em;
    display: block;
    margin: .5em auto 0;
    /*background-color: var(--color);*/
}

.about-page .about-5 .list {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.about-page .about-5 .list .slick-arrow {
    z-index: 6;
}

.about-page .about-5 .list .slick-arrow.slick-prev {
    right: auto;
    left: 0;
}

.about-page .about-5 .list .slick-arrow.slick-next {
    right: 0;
    left: auto;
}

.about-page .about-5 .list ul {
    /*margin: 0 -15%;*/
    position: static;
}

/*
.about-page .about-5 .list .slick-slide {
    -webkit-transform: translateX(170%);
    -moz-transform: translateX(170%);
    -ms-transform: translateX(170%);
    transform: translateX(170%);
    position: relative;
    z-index: 1;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
}

.about-page .about-5 .list .slick-slide li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
}

.about-page .about-5 .list .slick-slide.slick-active {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2;
}

.about-page .about-5 .list .slick-slide.slick-active li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.about-page .about-5 .list .slick-slide.slick-active+div {
    -webkit-transform: translateX(40%);
    -moz-transform: translateX(40%);
    -ms-transform: translateX(40%);
    transform: translateX(40%);
    z-index: 3;
}

.about-page .about-5 .list .slick-slide.slick-active+div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 4;
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div {
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
    z-index: 3;
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div+div {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2;
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div+div li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div+div+div {
    -webkit-transform: translateX(-170%);
    -moz-transform: translateX(-170%);
    -ms-transform: translateX(-170%);
    transform: translateX(-170%);
    z-index: 1;
}

.about-page .about-5 .list .slick-slide.slick-active.slick-current+div+div+div li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
}*/

.about-page .slick-arrow {
    height: 60px;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 1;
}

.about-page .slick-arrow.slick-prev {
    right: 100%;
    background-image: url("../images/banner-btn-l.png");
}

.about-page .slick-arrow.slick-next {
    left: 100%;
    background-image: url("../images/banner-btn-r.png");
}

.about-page .slick-arrow:hover {
    background-color: var(--color);
}

@media screen and (max-width: 1600px) {
    .about-page .slick-arrow.slick-next {
        left: auto;
        right: 0;
    }

    .about-page .slick-arrow.slick-prev {
        left: 0;
        right: auto;
    }

}

@media screen and (max-width: 1450px) {
    .about-page .about-5 .list {
        margin-top: 30px;
    }

    .about-page .slick-arrow {
        width: 44px;
        height: 44px;
    }

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

    .about-page .about-5 {
        padding: 80px 0;
    }
}

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

    .about-page .about-4 .text {
        font-size: 14px;
    }

    .about-page .about-4 .text:after {
        margin-top: .5em;
    }

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

    .about-page .about-4 .list ul {
        margin: 0 -10px;
    }
}

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

    .about-page .about-5 .list ul .slick-slide {
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }

    .about-page .about-5 .list ul .slick-slide li {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }

    .about-page .about-5 .list ul .slick-slide.slick-active {
        -webkit-transform: translateX(40%);
        -moz-transform: translateX(40%);
        -ms-transform: translateX(40%);
        transform: translateX(40%);
        z-index: 2;
    }

    .about-page .about-5 .list ul .slick-slide.slick-active li {
        -webkit-transform: scale(0.85714286);
        -moz-transform: scale(0.85714286);
        -ms-transform: scale(0.85714286);
        transform: scale(0.85714286);
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        z-index: 4;
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current li {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current+div {
        -webkit-transform: translateX(-40%);
        -moz-transform: translateX(-40%);
        -ms-transform: translateX(-40%);
        transform: translateX(-40%);
        z-index: 3;
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current+div li {
        -webkit-transform: scale(0.85714286);
        -moz-transform: scale(0.85714286);
        -ms-transform: scale(0.85714286);
        transform: scale(0.85714286);
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current+div+div {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        z-index: 2;
    }

    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current+div+div li {
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }
}

@media screen and (max-width: 700px) {
    .about-page .about-4 {
        padding: 60px 0;
    }

    .about-page .about-5 {
        padding: 60px 0;
    }
}

/*==============================================
    about-page
*/

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

.gallery-page ul {
    margin: -15px;
}

.gallery-page ul li {
    padding: 15px;
}

.gallery-page ul li p {
    font-size: 18px;
    text-align: center;
    margin-top: 12px;
}

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


/*
    honour-page
==============================================*/

.honour-page .honour-1 .left {
    width: 226px;
}

.honour-page .honour-1 .left .listC .list {
    cursor: pointer;
    margin-top: 110px;
    color: #777777;
    transition: all 0.5s;
}

.honour-page .honour-1 .left .listC .list .num {
    line-height: 1;
}

.honour-page .honour-1 .left .listC .list .line {
    height: 5px;
    width: 100%;
    background-color: var(--color);
    margin-top: 15px;
    opacity: 0;
    transition: all 0.5s;
}

.honour-page .honour-1 .left .listC .list.active {
    color: var(--color);
}

.honour-page .honour-1 .left .listC .list.active .line {
    opacity: 1;
}

.honour-page .honour-1 .left .listC .list:nth-child(1) {
    margin-top: 0;
}

.honour-page .honour-1 .right {
    width: -webkit-calc(-130%);
    width: -moz-calc(-130%);
    width: calc(100% - 230px);
    padding-left: 100px;
}

.honour-page .honour-1 .right .list {
    display: none;
    width: 100%;
}

.honour-page .honour-1 .right .list .listC {
    width: 100%;
    position: relative;
}

.honour-page .honour-1 .right .list .imgC {
    padding-right: 70px;
    width: calc(100% - 250px);
    position: relative;
}

.honour-page .honour-1 .right .list .imgC .sha_tra {
    position: absolute;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 1) 100%);
    z-index: 3;
    top: 0;
    left: 0;
    pointer-events: none;
}

.honour-page .honour-1 .right .list .imgC .swiper {
    padding: 0 24%;
}

.honour-page .honour-1 .right .list .imgC ul li {
    height: 100%;
    width: 30%;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.honour-page .honour-1 .right .list .imgC ul li .box {
    height: 100%;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honour-page .honour-1 .right .list .imgC ul li .box .img img {
    width: 100%;
    /*filter: grayscale(1);*/
}


.honour-page .honour-1 .right .list .galleryC {
    width: 250px;
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.honour-page .honour-1 .right .list .galleryC .swiper {
    height: 490px;
}

.honour-page .honour-1 .right .list .galleryC i {
    font-size: 24px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    color: #111111;
}

.honour-page .honour-1 .right .list .galleryC i:hover {
    color: var(--color);
}

.honour-page .honour-1 .right .list .galleryC .prev {
    top: 0;
    bottom: unset;
}

.honour-page .honour-1 .right .list .galleryC ul li {
    padding: 10px 0;
}

.honour-page .honour-1 .right .list .galleryC ul li .box {
    border-radius: 10px;
    cursor: pointer;
    color: #777777;
    transition: all 0.5s;
    padding: 10px;
    background-color: #fff;
    border: 1px solid var(--color);
}

.honour-page .honour-1 .right .list .galleryC ul li .box p {
    overflow-y: auto;
    height: 90px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honour-page .honour-1 .right .list .galleryC ul li.active-nav .box {
    background-color: var(--color);
    color: #fff;
}

.honour-page .honour-1 .right .list.active {
    display: block;
}

.honour-page .honour-1 .right .list.active .listC .imgC {
    animation: fadeInLeftSmall 0.5s linear;
}

.honour-page .honour-1 .right .list.active .listC .galleryC {
    animation: fadeInRightSmall 0.5s linear;
}

@keyframes fadeInLeftSmall {
    from {
        opacity: 0;
        transform: translate3d(-10%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
    from {
        opacity: 0;
        transform: translate3d(10%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightSmall {
    animation-name: fadeInRightSmall;
}

@media (max-width: 1250px) {
    .honour-page .honour-1 .left {
        width: 150px;
    }

    .honour-page .honour-1 .right {
        width: -webkit-calc(-50%);
        width: -moz-calc(-50%);
        width: calc(100% - 150px);
        padding-left: 20px;
    }

    .honour-page .honour-1 .right .list .imgC {
        padding-right: 20px;
    }
}

@media (max-width: 1000px) {
    .honour-page .honour-1 .left {
        width: 100%;
    }

    .honour-page .honour-1 .left .listC {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .honour-page .honour-1 .left .listC .list {
        margin: 20px 15px 0;
        text-align: center;
    }

    .honour-page .honour-1 .left .listC .list:first-child {
        margin-top: 20px;
    }

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

    .honour-page .honour-1 .right .list .imgC {
        width: 100%;
    }

    .honour-page .honour-1 .right .list .galleryC {
        width: 100%;
    }

    .honour-page .honour-1 .right .list .galleryC ul li .box {
        height: auto;
        padding: 16px;
    }

    .honour-page .honour-1 .right .list .galleryC ul li .box p {
        height: 72px;
    }

    .honour-page .honour-1 .right .list .imgC {
        padding-right: 0;
    }
}

@media (max-width: 500px) {

    .honour-page .honour-1 .right .list .imgC ul li {
        padding: 40px 5px;
        padding-top: 20px;
    }
}

/*==============================================
    honour-page
*/

/*
    product-yd-page
==============================================*/
.product-yd-page .pd1 .Cit h2 {
    max-width: 960px;
}

.product-yd-page .pd1 .ev {
    display: block;
    padding: 60px 0;
    position: relative;
    margin-bottom: 123px;
}

.product-yd-page .pd1 .ev:nth-of-type(even) .wrap {
    flex-direction: row-reverse;
}

.product-yd-page .pd1 .ev:nth-of-type(even) .intr {
    padding-left: 5%;
    padding-right: 0;
}

.product-yd-page .pd1 .ev:nth-of-type(even)::after {
    left: auto;
    right: 0;
}

.product-yd-page .pd1 .ev::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 80%;
    height: 100%;
    background: #F8F8F8;
    z-index: -1;
    transition: all ease .8s;
    border-radius: 40px;
}

.product-yd-page .pd1 .ev:hover::after {
    width: 88%;
    background: #eaeaea;
}

.product-yd-page .pd1 .ev:nth-of-type(even)::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.product-yd-page .pd1 .ev:nth-of-type(odd)::after {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.product-yd-page .pd1 .ev .intr {
    width: 37%;
    padding-right: 5%;
}

.product-yd-page .pd1 .ev .pic {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-yd-page .pd1 .ev h2::after {
    content: '';
    display: block;
    width: 37px;
    height: 6px;
    background: #D5D5D5;
    margin: 15px 0 20px;
}

.product-yd-page .pd1 .ev p {
    font-size: 16px;
    color: #666666;
    line-height: 30px
}

@media screen and (max-width: 1250px) {
    .product-yd-page .pd1 .ev {
        margin-bottom: 80px;
    }

    .product-yd-page .pd1 .ev::after {
        width: 86%;
    }

    .product-yd-page .pd1 .ev .intr {
        width: 46%;
        padding-right: 3%;
    }
}

@media screen and (max-width: 1000px) {
    .product-yd-page .pd1 .ev::after {
        width: 107%;
    }

    .product-yd-page .pd1 .ev:hover::after {
        width: 107%;
    }

    .product-yd-page .pd1 .ev .intr {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .product-yd-page .pd1 .ev {
        padding: 40px 0;
        margin-bottom: 50px;
    }

    .product-yd-page .pd1 .ev .pic {
        width: 100%;
        margin-top: 20px;
        text-align: center;
    }

    .product-yd-page .pd1 .ev h2::after {
        display: none;
    }

    .product-yd-page .pd1 .ev .intr .Cmore {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 700px) {
    .product-yd-page .pd1 .ev h2 {
        font-size: 24px;
    }
}

/*==============================================
    product-yd-page
*/


/*
    product-page
==============================================*/

.product-page .init-2 .container .fl-list {
    display: inline-block;
    position: relative;
    width: 370px;
    border: solid 1px #474747;
    text-align: left;
    padding: 20px 40px 20px 28px;
    cursor: pointer;
    color: #474747;
    font-weight: 600;
}

.product-page .init-2 .container .fl-list span {
    display: block;
    position: relative;
}

.product-page .init-2 .container .fl-list span em {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.product-page .init-2 .container .fl-list span i {
    position: absolute;
    line-height: 1;
    font-size: 30px;
    top: -4px;
    right: -20px;
}

.product-page .init-2 .container .fl-list ul {
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 4px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 2;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--color);
    opacity: 0;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}

.product-page .init-2 .container .fl-list ul li {
    font-size: 18px;
    padding: 10px;
    line-height: 1.6;
}

.product-page .init-2 .container .fl-list ul li a {
    display: block;
}

.product-page .init-2 .container .fl-list ul li a:hover {
    color: var(--color);
}

.product-page .init-2 .container .fl-list:hover ul {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.product-page .init-2 .container .product-search {
    margin-left: 50px;
    border: solid 1px #474747;
}

.product-page .init-2 .container .product-search form {
    height: 64px;
    width: 365px;
    position: relative;
    font-weight: bold;
}

.product-page .init-2 .container .product-search form .text {
    width: -webkit-calc(25%);
    width: -moz-calc(25%);
    width: calc(100% - 75px);
    border: none;
    padding: 10px 24px;
}

.product-page .init-2 .container .product-search form .btn {
    width: 75px;
    background-color: var(--color);
    border: none;
    border-radius: 0;
    -o-background-size: 30px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.product-page .init-2 .container .product-search form .btn:hover {
    background-color: var(--color);
}

.product-page .init-3 .container .tipsTitle {
    text-align: center;

}

.product-page .init-3 .container .des {
    font-size: 14px;
    line-height: 2;
    margin-top: 40px;
}

.product-page .init-3 .container .des table {
    border: none;
}

.product-page .init-3 .container .des table tr {
    background: #fff;
}

.product-page .init-3 .container .des table tr td {
    border: 1px solid #ccc;
}

.product-page .init-3 .container .des table tbody>tr>td:first-child {
    background: #f6f6f6;
    min-width: 100px;
}

.product-page .init-3 .container .cat_des {
    max-height: 320px;
    margin-top: 20px;
    color: rgba(0, 0, 0, .5);
    font-size: 18px;
    line-height: 2;
    padding-right: 4px;
    overflow-y: auto;
    font-weight: 500;
}

.product-page .init-3 .container .content {
    margin-top: -40px;
}

.product-page .init-3 .container .content ul {
    margin: 0 -22px;
}

.product-page .init-3 .container .content ul>p {
    font-size: 20px;
    margin: 60px 20px 0;
    letter-spacing: 0;
}

.product-page .init-3 .container .content ul li {
    padding: 0 22px;
    margin-top: 90px;
}

.product-page .init-3 .container .content ul li .box {
    cursor: pointer;
}

.product-page .init-3 .container .content ul li .box .img {
    display: block;
    border: solid 1px #dadada;
}

.product-page .init-3 .container .content ul li .box .img img {
    width: 100%;
}

.product-page .init-3 .container .content ul li .box .title {
    margin-top: 20px;
    font-weight: 500;
    line-height: 40px;
    min-height: 4em;
}

.product-page .init-3 .container .content ul li .box .title:hover {
    color: var(--color);
}

.product-page .init-3 .container .content ul li .box .title2 {
    color: #5f5f5f;
    margin-top: 10px;
    /*font-weight: 500;*/
    line-height: 2;
    overflow-y: auto;
    max-height: 172px;
    padding-right: 4px;
}

.product-page .init-3 .container .content ul li .box .slick-track {
    margin-left: 0;
}

.product-page .init-3 .container .content ul li .box .smallImg {
    margin-top: 10px;
    display: none;
}

.product-page .init-3 .container .content ul li .box .smallImg .grid-box {
    margin: 0 -5px;
}

.product-page .init-3 .container .content ul li .box .smallImg .imgl {
    padding: 0 5px;
}

.product-page .init-3 .container .content ul li .box .smallImg .imgl .box {
    border: solid 1px #dadada;
}

.product-page .init-3 .container .content ul li .content_cont {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 30;
}

.product-page .init-3 .container .content ul li .content_cont .shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.product-page .init-3 .container .content ul li .content_cont .content_c {
    max-width: 100%;
    background-color: #fff;
    position: absolute;
    width: 1580px;
    padding-top: 70px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .close {
    z-index: 2;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
    width: 46px;
    height: 46px;
    cursor: pointer;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .close:hover {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top {
    padding: 0 40px;
    padding-bottom: 50px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
    width: 380px;
    height: 388px;
    border: 1px solid #eee;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle {
    position: relative;
    width: 110px;
    padding-left: 10px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper {
    height: 354px;
    width: 100%;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper ul {
    padding: 0;
    margin: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li {
    padding: 0;
    margin: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a {
    display: block;
    border: 1px solid #eee;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .swiper li .box2 a img {
    background-color: #f5f5f5;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
    position: absolute;
    bottom: -34px;
    left: 10px;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-size: 16px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn:hover {
    background-color: #212122;
    color: #fff;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .next {
    left: 50px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
    width: -webkit-calc(-390%);
    width: -moz-calc(-390%);
    width: calc(100% - 490px);
    padding-left: 40px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .title {
    font-weight: 600;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
    color: #5f5f5f;
    font-weight: 500;
    margin-top: 20px;
    max-height: 160px;
    overflow-y: auto;
    padding-right: 4px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
    margin-top: 20px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
    margin-top: 10px;
    font-weight: 700;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
    margin-left: 14px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .top .right table {
    width: 100% !important;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 30px;
    font-weight: 500;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #212122;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-left: 10px;
    border: 1px solid #212122;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .bottom a:hover {
    background-color: #fff;
    color: #212122;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
    display: none;
    padding: 20px 30px 30px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list {
    margin-top: 10px;
    position: relative;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
    position: absolute;
    width: 1px;
    height: 30px;
    background-color: #d9d9d9;
    top: 10px;
    left: 0;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list input {
    width: 100%;
    border: none;
    background-color: #f5f5f5;
    padding: 14px 12px;
    font-size: 14px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
    width: 190px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 10px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    margin-left: 30px;
    justify-content: center;
    color: #fff;
    line-height: 1.3;
    padding: 11px 24px;
    background-color: var(--color);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn .img {
    width: 14px;
    height: 14px;
    margin-left: 12px;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover {
    background-color: #000;
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn:hover .img {
    transform: rotate(45deg);
}

.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
.product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
    width: 390px;
}

@media (max-width: 1500px) {
    .product-page .init-3 .container .des table tr td {
        min-width: 120px;
    }

    .product-page .init-3 .container .des table tbody>tr>td:first-child {
        min-width: 120px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        height: 300px;
        width: 300px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
        width: 540px;
    }
}

@media (max-width: 1250px) {
    .product-page .init-3 .container .content ul li .content_cont .content_c .phone_cont {
        overflow-y: auto;
        max-height: 500px;
        padding-right: 10px;

    }

    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 970px;
        padding-top: 40px;
    }

    .wdcp {
        height: 180px;
    }

    #innerMobileBanner .banner1 .mbx {
        line-height: 2;
    }

    #innerMobileBanner .banner1 .imgC .text {
        line-height: 44px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .btn {
        display: none !important;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top {
        text-align: center;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        width: 340px;
        height: 340px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .bottom {
        display: none;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .des {
        max-height: 200px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
        width: 50%;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .submit_btn {
        margin-left: 0;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .moreC {
        width: auto;
    }
}

@media (max-width: 1000px) {
    .product-page .init-3 .container .cat_des {
        font-size: 16px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 700px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .middle .slick {
        height: 354px;
    }

    .product-page .init-1 {
        display: none;
    }

    .product-page .init-2 {
        display: none;
    }

    .product-page .init-3 .container .content ul {
        margin: 0 -8px;
    }

    .product-page .init-3 .container .content ul li {
        padding: 0 8px;
    }
}

@media (max-width: 700px) {
    .product-page .init-3 .container .content ul li .content_cont .content_c {
        width: 96%;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .big_img {
        width: -webkit-calc(-10%);
        width: -moz-calc(-10%);
        width: calc(100% - 110px);
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c {
        padding-right: 10px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top {
        padding: 20px 0 20px 20px;
    }
}

@media (max-width: 500px) {
    .product-page .init-3 .container .content {
        margin-top: 0;
    }

    .product-page .init-3 .container .content ul {
        margin: 0;
    }

    .product-page .init-3 .container .content ul li {
        padding: 0;
        margin-top: 30px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .more {
        text-align: center;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .top .right .more_c .contact {
        margin-left: 0;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont {
        padding: 20px 0 20px 16px;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .name,
    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .mail {
        width: 100%;
    }

    .product-page .init-3 .container .content ul li .content_cont .content_c .form_cont .form_list .line {
        display: none;
    }
}


/*==============================================
    product-page
*/


.m-page .wp-pagenavi {
    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;
}

.m-page .wp-pagenavi span,
.m-page .wp-pagenavi a {
    width: 40px;
    height: 40px;
    border: 1px solid #dcdcdc;
    text-align: center;
    line-height: 36px;
    font-size: 18px;
    font-weight: bold;
    margin: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.m-page .wp-pagenavi a:hover {
    background-color: var(--color);
    color: #fff;
    border: 1px solid var(--color);
}

.m-page .wp-pagenavi .current {
    background-color: var(--color);
    border: 1px solid var(--color);
    color: #fff;
}


/*
    prodet-page
==============================================*/


.prodet-page .prodet-1 .smallImg .slick-vertical .slick-slide {
    float: none;
}

.prodet-page .prodet-1 .smallImg .slick-track {
    width: 100% !important;
}

.prodet-page .prodet-1 .smallImg ul {
    margin: -0.5em;
}

.prodet-page .prodet-1 .smallImg ul li {
    padding: .5em;
}

.prodet-page .prodet-1 .left .smallImg img {
    border: 1px solid #000;
}

.prodet-page .prodet-1 .left .big {
    border: 1px solid #000;
}

.prodet-page .prodet-1 .right .text {
    max-height: 210px;
    overflow: auto;
}

.prodet-page .prodet-2 {
    background-color: #f6f6f6;
    color: #7b7b7b;
}

.prodet-page .prodet-2 i {
    mix-blend-mode: darken;
}

.prodet-page .prodet-3 .options:before,
.prodet-page .prodet-3 .options:after {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #ccc;
}

.prodet-page .prodet-3 .options span {
    min-width: 242px;
}

.prodet-page .prodet-3 .options span.active {
    border-color: var(--color);
    background-color: #fff;
    color: var(--color);
}

.prodet-page .prodet-3 .ret .slide {
    display: none;
}

.prodet-page .prodet-3 .ret span.h6 {
    padding: .5em 1em;
    background-color: #f5f5f5;
}

.prodet-page .prodet-3 .ret span.h6 i {
    width: 1.66666667em;
    height: 1.66666667em;
    border-radius: 100%;
    background-color: black;
    position: relative;
    cursor: pointer;
    cursor: hand;
}

.prodet-page .prodet-3 .ret span.h6 i:after,
.prodet-page .prodet-3 .ret span.h6 i:before {
    content: '';
    width: .5em;
    height: 2px;
    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%);
    background-color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.prodet-page .prodet-3 .ret span.h6.active i {
    background-color: var(--color);
}

.prodet-page .prodet-3 .ret span.h6.active i:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -moz-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.prodet-page .prodet-3 .ret .form {
    padding: 4% 9%;
    color: white;
    background-color: var(--color);
}

.prodet-page .prodet-3 .ret .form ul li.row {
    grid-row: span 2;
}

.prodet-page .prodet-3 .ret .form ul li input,
.prodet-page .prodet-3 .ret .form ul li textarea {
    width: 100%;
    border: none;
    padding: .8em 1.4em;
    color: black;
}

.prodet-page .prodet-3 .ret .form ul li input::-webkit-input-placeholder,
.prodet-page .prodet-3 .ret .form ul li textarea::-webkit-input-placeholder {
    color: #434343;
}

.prodet-page .prodet-3 .ret .form ul li input:-moz-placeholder,
.prodet-page .prodet-3 .ret .form ul li textarea:-moz-placeholder {
    color: #434343;
}

.prodet-page .prodet-3 .ret .form ul li input::-moz-placeholder,
.prodet-page .prodet-3 .ret .form ul li textarea::-moz-placeholder {
    color: #434343;
}

.prodet-page .prodet-3 .ret .form ul li input:-ms-input-placeholder,
.prodet-page .prodet-3 .ret .form ul li textarea:-ms-input-placeholder {
    color: #434343;
}

.prodet-page .prodet-3 .ret .form ul li input::placeholder,
.prodet-page .prodet-3 .ret .form ul li textarea::placeholder {
    color: #434343;
}

.prodet-page .prodet-3 .ret .form ul li textarea {
    height: 100%;
}

.prodet-page .prodet-3 .ret .form ul li .text {
    color: inherit;
}

.prodet-page .prodet-3 .ret .form ul li button {
    border: none;
    background-color: #fff;
    transition: all 0.5s;
    color: var(--color);
}

.prodet-page .prodet-3 .ret .form ul li button:hover {
    color: #000;
}


@media screen and (max-width: 1450px) {
    .prodet-page .prodet-2 i {
        zoom: .7;
    }
}

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

    .prodet-page .prodet-3 .options span {
        min-width: 240px;
    }
}

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

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

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

    .prodet-page .prodet-1 .right .text {
        margin-top: 20px;
    }

    .prodet-page .prodet-1 .right .btn,
    .prodet-page .prodet-1 .right .m-link {
        margin-top: 20px;
    }

    .prodet-page .prodet-3 .options {
        flex-direction: column;
    }
}

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

    .prodet-page .prodet-3 .options {
        display: none;
    }

    .prodet-page .prodet-3 .ret {
        margin-top: 0;
    }

    .prodet-page .prodet-3 .ret .slide {
        display: block !important;
        margin-top: 5%;
    }

    .prodet-page .prodet-3 .ret .slide:first-child {
        margin-top: 0;

    }

    .prodet-page .prodet-3 .ret .form {
        padding: 5%;
    }

    .prodet-page .prodet-3 .ret .form ul li.grid-span {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .prodet-page .prodet-3 .ret .form ul li .text {
        width: 100%;
    }

    .prodet-page .prodet-3 .ret .form ul li.row {
        grid-row: span 1;
    }

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

    .prodet-page .prodet-3 .ret .slide .appearance ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .prodet-page .prodet-1 .right .btn {
        flex-direction: column;
    }
}

/*==============================================
    prodet-page
*/

.seoPublic>div {
    padding: 90px 0;
}

.seoPublic .Auxil-about .box .right {
    padding-top: 0;
    padding-bottom: 0;
}

.seoPublic .Auxil-about .box .right .text {
    max-height: 320px;
    overflow-y: auto;
}

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

.seoPublic .Auxil-news .list ul li .content div.h6 {
    height: 2.8em;
}

.seoPublic .Auxil-news .list ul li .content p {
    height: 4.3em;
}

.seoPublic .Auxil-related .list ul {
    margin: -20px -18px;
}

.seoPublic .Auxil-related .list ul li {
    padding: 20px 18px;
}

.seoPublic .Auxil-related .list ul li .box {
    box-shadow: unset;
    background-color: transparent;
}

.seoPublic .Auxil-related .list ul li .box a.img-box {
    box-shadow: 0 0 8px rgba(125, 125, 125, .2);
}

@media screen and (max-width: 1700px) {
    .seoPublic>div {
        padding: 80px 0;
    }
}

@media screen and (max-width: 1450px) {
    .seoPublic>div {
        padding: 70px 0;
    }
}

@media screen and (max-width: 1250px) {
    .seoPublic>div {
        padding: 60px 0;
    }
}

@media screen and (max-width: 1000px) {
    .seoPublic>div {
        padding: 50px 0;
    }
}

@media screen and (max-width: 700px) {
    .seoPublic>div {
        padding: 40px 0;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -12px -8px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 12px 8px;
    }
}

@media screen and (max-width: 500px) {
    .seoPublic>div {
        padding: 35px 0;
    }
}

.seoPublic .Auxil-news .list2 ul {
    margin: -15px;
}

.seoPublic .Auxil-news .list2 ul li {
    padding: 15px;
}

.seoPublic .Auxil-news .list2 ul li .content {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 50px;
    border-radius: 12px;
    background-color: #fff;
}

.seoPublic .Auxil-news .list2 ul li .content time {
    color: rgba(0, 0, 0, 0.8);
}

.seoPublic .Auxil-news .list2 ul li .content .h6 {
    height: calc(1.5em * 2);
    /*overflow-y: auto;*/
}

.seoPublic .Auxil-news .list2 ul li .content p {
    height: calc(30px * 3);
    overflow-y: auto;
}

/*
    advantage-page
==============================================*/
.advantage-page .advantage-1 {
    position: relative;
    z-index: 1;
}

.advantage-page .advantage-1 .box {
    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;
}

.advantage-page .advantage-1 .box .text {
    width: 50%;
    background: var(--color);
    border-radius: 41px 0px 0px 41px;
    color: white;
    padding: 0 39px 0 52px;
    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-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.advantage-page .advantage-1 .box .text h3 {
    font-size: 46px;
    line-height: 1.1;
    font-weight: bold;
    width: 100%;
}

.advantage-page .advantage-1 .box .text p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 17px;
}

.advantage-page .advantage-1 .box .img {
    width: 50%;
}

.advantage-page .advantage-1 .box .img img {
    width: 100%;
    height: 100%;
}

.advantage-page .advantage-1 .icon {
    position: absolute;
    top: -85px;
    left: -85px;
}

.advantage-page .advantage-2 {
    background: #eee;
    background-size: cover;
    padding: 2% 0 6% 0;
    margin-top: 80px;
    position: relative;
}

.advantage-page .advantage-2 .header .left {
    width: 60%;
    vertical-align: middle;
}

.advantage-page .advantage-2 .header .right {
    width: 40%;
    vertical-align: middle;
}

.advantage-page .advantage-2 .content {
    margin-top: 73px;
}

.advantage-page .advantage-2 .content .left {
    width: 54.64%;
    position: relative;
    z-index: 1;
    vertical-align: middle;
}

.advantage-page .advantage-2 .content .left .icon {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -50px;
}

.advantage-page .advantage-2 .content .right {
    width: 45.36%;
    padding-left: 49px;
    vertical-align: middle;
}

.advantage-page .advantage-2 .content .right li {
    width: 100%;
    background: white;
    padding: 35px 33px 30px 33px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.03);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.03);
    border-radius: 35px;
    margin-bottom: 37px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.advantage-page .advantage-2 .content .right li i {
    width: 97px;
    text-align: center;
}

.advantage-page .advantage-2 .content .right li .text {
    padding-left: 25px;
    width: 79%;
}

.advantage-page .advantage-2 .content .right li .text h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
}

.advantage-page .advantage-2 .content .right li .text p {
    font-size: 18px;
    line-height: 1.5;
    color: #383737;
    margin-top: 10px;
    max-height: 110px;
    overflow: auto;
}

.advantage-page .advantage-2 .content .right li .text p::-webkit-scrollbar-thumb {
    background: var(--color);
}

.advantage-page .advantage-2 .content .right li:last-child {
    margin-bottom: 0;
}

.advantage-page .advantage-2 .icon {
    position: absolute;
    right: 9%;
    top: 0;
}

.advantage-page .advantage-3 {
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.advantage-page .advantage-3 li {
    margin-bottom: 109px;
    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;
}

.advantage-page .advantage-3 li .text {
    width: 50%;
    background: var(--color);
    border-radius: 41px 0px 0px 41px;
    color: white;
    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: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 47px 0 54px;
}

.advantage-page .advantage-3 li .text h3 {
    font-size: 46px;
    line-height: 1.1;
    font-weight: bold;
}

.advantage-page .advantage-3 li .text p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 12px;
}

.advantage-page .advantage-3 li .img {
    width: 50%;
}

.advantage-page .advantage-3 li .img img {
    width: 100%;
    height: 100%;
}

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

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

.advantage-page .advantage-3 li:nth-child(even) .text {
    border-radius: 0px 70px 0px 0px;
}

.advantage-page .advantage-3 .icon {
    position: absolute;
    z-index: -1;
    left: -95px;
    top: -60px;
}

@media screen and (max-width: 1700px) {
    .advantage-page .advantage-1 .icon {
        left: 0;
    }

    .advantage-page .advantage-3 .icon {
        left: 0;
    }

    .advantage-page .advantage-2 .icon {
        right: 0;
    }
}

@media screen and (max-width: 1450px) {
    .advantage-page .advantage-2 .content .right li .text {
        width: 74%;
    }
}

@media screen and (max-width: 1250px) {
    .advantage-page .advantage-1 .box .text {
        padding: 41px 0 0 30px;
    }

    .advantage-page .advantage-1 .box .text h3 {
        font-size: 38px;
    }

    .advantage-page .advantage-2 .content .right li {
        padding: 30px 20px;
    }

    .advantage-page .advantage-2 .content .right li .text p {
        font-size: 16px;
    }

    .advantage-page .advantage-2 .content .right li .text {
        width: 70%;
        padding-left: 20px;
    }

    .advantage-page .advantage-2 .content .right li .text h3 {
        font-size: 22px;
    }

    .advantage-page .advantage-3 li .text h3 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1100px) {
    .advantage-page .advantage-1 .box .text h3 {
        font-size: 34px;
    }

    .advantage-page .advantage-2 .content {
        margin-top: 40px;
    }

    .advantage-page .advantage-2 .content .right li .text {
        width: 71%;
        padding-left: 10px;
    }

    .advantage-page .advantage-2 .content .right li .text h3 {
        font-size: 19px;
    }

    .advantage-page .advantage-2 .content .right li .text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .advantage-page .advantage-3 li .text {
        padding: 0 30px;
    }

    .advantage-page .advantage-3 li .text h3 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1000px) {
    .advantage-page .advantage-1 .icon {
        display: none;
    }

    .advantage-page .advantage-1 .box .text {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .advantage-page .advantage-1 .box .text h3 {
        font-size: 30px;
    }

    .advantage-page .advantage-2 .header .left {
        width: 100%;
    }

    .advantage-page .advantage-2 .header .right {
        width: 100%;
    }

    .advantage-page .advantage-2 .content .left {
        display: none;
    }

    .advantage-page .advantage-2 .content .right {
        width: 100%;
        padding-left: 0;
    }

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

    .advantage-page .advantage-3 li {
        margin-bottom: 60px;
    }

    .advantage-page .advantage-3 li .text {
        padding: 40px 20px;
    }

    .advantage-page .advantage-3 li .text h3 {
        font-size: 30px;
    }

    .advantage-page .advantage-3 li .text p {
        line-height: 1.5;
    }

    .advantage-page .advantage-2 .content .right li .text {
        width: 84%;
    }

    .advantage-page .advantage-3 li .text {
        width: 100%;
        border-radius: 30px;
    }

    .advantage-page .advantage-3 li .img {
        width: 100%;
        margin-top: 5%;
    }
}

@media screen and (max-width: 700px) {
    .advantage-page .advantage-1 .box .text {
        width: 100%;
    }

    .advantage-page .advantage-1 .box .img {
        display: none;
    }

    .advantage-page .advantage-1 .box .text h3 {
        font-size: 24px;
    }

    .advantage-page .advantage-2 .icon {
        display: none;
    }

    .advantage-page .advantage-2 {
        margin-top: 30px;
    }

    .advantage-page .advantage-3 {
        padding: 30px 0;
    }

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

    .advantage-page .advantage-3 .icon {
        display: none;
    }

    .advantage-page .advantage-2 .content .right li .text {
        width: 76%;
    }
}

@media screen and (max-width: 500px) {
    .advantage-page .advantage-1 .box .text h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .advantage-page .advantage-1 .box .text p {
        font-size: 14px;
    }

    .advantage-page .advantage-2 .content .right li .text {
        width: 100%;
        padding: 20px 0 0 0;
    }

    .advantage-page .advantage-3 li .text h3 {
        font-size: 24px;
    }

    .advantage-page .advantage-3 li .text p {
        font-size: 16px;
    }
}

/*==============================================
    advantage-page
*/


/*
    news-page
==============================================*/

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

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

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

.news-page ul li .box {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 50px;
    border-radius: 12px;
}

.news-page ul li .box .time {
    opacity: 0.8;
}

.news-page ul li .box .h3 {
    font-weight: bold;
    margin: 12px 0 20px;
    height: calc(1.8em * 2);
    line-height: 1.8;
    /*overflow-y: auto;*/
}

.news-page ul li .box .content {
    line-height: 2;
    margin-bottom: 20px;
    height: calc(2em * 3);
    overflow-y: auto;
}

.news-page ul li .box .more_btn .more::after {
    color: black;
}

@media screen and (max-width: 1250px) {
    .news-page ul li {
        width: 50% !important;
    }
}

@media screen and (max-width: 700px) {
    .news-page ul li {
        width: 100% !important;
    }

    .news-page ul li .box .h3 {
        min-height: auto;
    }

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

}

/*==============================================
    news-page
*/

/*
    newdet-page
==============================================*/

.newdet-page .newdet-1 {
    text-align: center;
}

.newdet-page .newdet-1 .time {
    opacity: 0.8;
    margin: 20px 0;
}

.newdet-page .newdet-1 .content {
    line-height: 2;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 30px 0;
}

.newdet-page .newdet-1 .m-link {
    text-align: left;
}

/*==============================================
    newdet-page
*/


/*
    contact-page
==============================================*/
.df {
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox
}

.contact-page .contact-information .ui.container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact-page .contact-information .left {
    margin-top: 25px;
    width: 50%;
    padding-right: 4%;
}

.contact-page .contact-information .right {
    width: 50%;
}

.contact-page .contact-information .left .intro {
    color: var(--index-color2);
    margin-top: 2.08333vw;
    margin-bottom: 2.1875vw;
    max-width: 676px;
    line-height: 1.6;
}

.contact-page .contact-information .left .social-account {
    margin-bottom: 3vw;
}

.contact-page .contact-information .left .social-account li:first-child a i {
    font-size: 28px;
}

.contact-page .contact-information .left .social-account a {
    width: 51px;
    height: 51px;
    border: 1px solid #434343;
    border-radius: 50%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    color: #434343;
    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;
    margin-left: 12px;
}

.contact-page .contact-information .left .social-account a i {
    font-size: 24px;
}

.contact-page .contact-information .left .social-account a:hover {
    border-color: #010101;
    background: #010101;
    color: #fff;
}

.contact-page .contact-information .left .qr li {
    text-align: center;
    max-width: 44%;
}

.contact-page .contact-information .left .qr li>img {
    width: 150px;
}

.contact-page .contact-information .left .qr li:first-child {
    margin-right: 30px;
}

.contact-page .contact-information .left .qr .title {
    font-weight: bold;
}

.contact-page .contact-information .right .information-list li {
    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;
}

.contact-page .contact-information .right .information-list li:nth-child(2) {
    border-top: 1px solid rgba(131, 131, 131, 0.27);
    border-bottom: 1px solid rgba(131, 131, 131, 0.27);
}

.contact-page .contact-information .right .information-list li .icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.contact-page .contact-information .right .information-list li .list-right {
    margin-left: 26px;
    padding-top: 2.34375vw;
    padding-bottom: 2.6041666vw;
    padding-right: 2.8125vw;
}

.contact-page .contact-information .right .information-list li .list-right .title {
    font-weight: bold;
    margin-bottom: 14px;
}

.contact-page .contact-information .right .information-list li .list-right .list-intro {
    color: rgba(0, 0, 0, 0.53);
    line-height: 1.55;
    max-width: 470px;
}

.contact-page .contact-form {
    background-color: #eee;
}

.contact-page .contact-form .public-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contact-page .contact-form form {
    margin-top: 2.2vw;
}

.contact-page .contact-form form .form-ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-page .contact-form form .form-ul>li {
    margin-bottom: 2.08333vw;
    position: relative;
}

.contact-page .contact-form form .form-ul>li:before {
    content: "";
    display: block;
    position: absolute;
    left: -3px;
    top: -2px;
    width: 82px;
    height: 83px;
    border-radius: 50%;
    z-index: 2;
}

.contact-page .contact-form form .form-ul>li input {
    width: 100%;
    border-radius: 30px;
    border: solid 1px #bfbfbf;
    height: 76px;
    background: none;
    padding-left: 120px;
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li input::-webkit-input-placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li input:-moz-placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li input::-moz-placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li input:-ms-input-placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li input::placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li:nth-child(1),
.contact-page .contact-form form .form-ul>li:nth-child(2),
.contact-page .contact-form form .form-ul>li:nth-child(3),
.contact-page .contact-form form .form-ul>li:nth-child(4) {
    width: 48.8%;
}

.contact-page .contact-form form .form-ul>li:nth-child(1):before {
    background: var(--color) url("../images/contact-form-icon1.png") no-repeat center center;
}

.contact-page .contact-form form .form-ul>li:nth-child(2):before {
    background: var(--color) url("../images/contact-form-icon2.png") no-repeat center center;
}

.contact-page .contact-form form .form-ul>li:nth-child(3):before {
    background: var(--color) url("../images/contact-form-icon3.png") no-repeat center center;
}

.contact-page .contact-form form .form-ul>li:nth-child(4):before {
    background: var(--color) url("../images/contact-form-icon4.png") no-repeat center center;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) {
    position: relative;
    z-index: 2;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) .subject {
    visibility: visible;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) .subject-list {
    position: absolute;
    left: 0;
    top: 78px;
    width: 100%;
    border: solid 1px #bfbfbf;
    background: #fff;
    transform-origin: center top;
    transform: scaleY(0);
    transition: .3s;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) .subject-list.active {
    transform: scaleY(1);
}

.contact-page .contact-form form .form-ul>li:nth-child(4) .subject-list li {
    padding: 4px 8px;
    transition: .3s;
    cursor: pointer;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) .subject-list li:hover {
    color: #fff;
    background-color: var(--color);
}

.contact-page .contact-form form .form-ul>li:nth-child(4) select {
    width: 100%;
    border-radius: 30px;
    border: solid 1px #bfbfbf;
    height: 76px;
    background: none;
    padding-left: 120px;
    font-size: 21px;
    color: #000;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) select option {
    border: none;
}

.contact-page .contact-form form .form-ul>li:nth-child(4) select option:hover {
    background: var(--color);
}

.contact-page .contact-form form .form-ul>li:nth-child(5) {
    width: 100%;
}

.contact-page .contact-form form .form-ul>li:nth-child(5):before {
    background: var(--color) url("../images/contact-form-icon5.png") no-repeat center center;
    border-radius: 41px 41px 41px 0;
}

.contact-page .contact-form form .form-ul>li:nth-child(5) textarea {
    width: 100%;
    height: 275px;
    font-size: 21px;
    color: #000;
    padding-left: 120px;
    border-radius: 30px;
    border: solid 1px #bfbfbf;
    padding-top: 30px;
    background-color: transparent;
}

.contact-page .contact-form form .form-ul>li:nth-child(5) textarea::placeholder {
    font-size: 21px;
    color: #000;
}

.contact-page .contact-form form .form-ul>li:last-child {
    width: 100%;
    margin-bottom: 0;
}

.contact-page .contact-form form .form-ul>li:last-child:before {
    display: none;
}

.contact-page .contact-form form .form-ul>li:last-child a.submit {
    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: 231px;
    height: 64px;
    margin: 0 auto;
    background-color: var(--color);
    border-radius: 28px;
    border: 2px solid var(--color);
    color: #fff;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.contact-page .contact-form form .form-ul>li:last-child a.submit:hover {
    background-color: transparent;
    color: var(--color);
}

@media screen and (max-width: 1250px) {
    .contact-page .contact-information .right .information-list li .icon {
        zoom: 0.8;
    }

    .contact-page .contact-information .left .qr li img {
        zoom: 0.8;
    }

    .contact-page .contact-information .left .social-account a {
        zoom: 0.8;
    }

    .contact-page .contact-form form .form-ul>li input {
        padding-left: 90px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea {
        padding-left: 90px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea::placeholder {
        font-size: 18px;
    }

    .contact-page .contact-form form .form-ul>li input::placeholder {
        font-size: 18px;
    }
}

@media screen and (max-width: 1000px) {
    .contact-page .contact-information .ui.container {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .contact-page .contact-information .left {
        margin-top: 0;
        width: 100%;
        padding-right: 0;
    }

    .contact-page .contact-information .right {
        width: 100%;
        margin-top: 5%;
    }

    .contact-page .contact-information .left .intro,
    .contact-page .contact-information .right .information-list li .list-right .list-intro {
        max-width: 100%;
    }

    .contact-page .contact-form form .form-ul>li:before {
        width: 60px;
        height: 60px;
    }

    .contact-page .contact-form form .form-ul>li input {
        padding-left: 75px;
        height: 56px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea {
        padding-left: 75px;
    }

    .contact-page .contact-form form .form-ul>li input::placeholder {
        font-size: 16px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea::placeholder {
        font-size: 16px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(1),
    .contact-page .contact-form form .form-ul>li:nth-child(2),
    .contact-page .contact-form form .form-ul>li:nth-child(3),
    .contact-page .contact-form form .form-ul>li:nth-child(4) {
        width: 100%;
    }
}

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

    .contact-page .contact-form form .form-ul>li:nth-child(1),
    .contact-page .contact-form form .form-ul>li:nth-child(2),
    .contact-page .contact-form form .form-ul>li:nth-child(3),
    .contact-page .contact-form form .form-ul>li:nth-child(4) {
        width: 100%;
    }

    .contact-page .contact-information .left .qr li img {
        zoom: 0.6;
    }
}

@media screen and (max-width: 500px) {
    .contact-page .contact-information .right .information-list li .icon {
        zoom: .5;
    }

    .contact-page .contact-form form .form-ul>li input {
        height: 40px;
        font-size: 16px;
        border-radius: 20px;
        padding-left: 40px;
    }

    .contact-page .contact-form form .form-ul>li input::-webkit-input-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li input:-moz-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li input::-moz-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li input:-ms-input-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li input::placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(4) select {
        font-size: 16px;
        padding-left: 60px;
        height: 40px;
    }

    .contact-page .contact-form form .form-ul>li:before {
        width: 40px;
        height: 40px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea {
        padding-top: 8px;
        padding-left: 40px;
        font-size: 16px;
        height: 120px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea::-webkit-input-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea:-moz-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea::-moz-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea:-ms-input-placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:nth-child(5) textarea::placeholder {
        font-size: 15px;
    }

    .contact-page .contact-form form .form-ul>li:last-child a.submit {
        height: 40px;
    }
}

/*==============================================
    contact-page
*/

/*
    faq-page
==============================================*/
.faq-page .faq-1 .list ul li {
    margin-bottom: 10px;
}

.faq-page .faq-1 .list ul li .box {
    position: relative;
    border: 1px solid #e1e1e1;
    background-color: #ffffff;
    transition: all 0.5s;
}

.faq-page .faq-1 .list ul li .box h6 {
    position: relative;
    color: #222222;
    cursor: pointer;
    padding: 16px 30px;
    transition: all 0.5s;
    gap: 10px;
}

.faq-page .faq-1 .list ul li .box h6 i.fa {
    transition: all 0.5s;
}

.faq-page .faq-1 .list ul li .box .text {
    position: relative;
    padding: 0 30px 25px;
    display: none;
}

.faq-page .faq-1 .list ul li .box.active {
    border-color: var(--color);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.faq-page .faq-1 .list ul li .box.active h6 i.fa {
    transform: rotateX(180deg);
}

@media screen and (max-width: 500px) {
    .faq-page .faq-1 .list ul li .box h6 {
        padding: 15px;
    }

    .faq-page .faq-1 .list ul li .box .text {
        padding: 0 15px 15px;
    }
}

/*==============================================
    faq-page
*/

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

.process-page .advantage-page .advantage-2 {
    margin-top: 0;
}

.process-page .process-1 .mk-content ul {
    margin: -15px;
}

.process-page .process-1 .mk-content ul li {
    width: 25%;
    padding: 15px;
}

.process-page .process-1 .mk-content ul li img {
    width: 100%;
    height: 252px;
    object-fit: cover;
}

.process-page .advantage-page .advantage-2 .content .right li .text {
    width: 100%;
    padding-left: 0;
}

@media screen and (max-width: 1250px) {
    .process-page .process-1 .mk-content ul li {
        width: 33.3%;
    }
}

@media screen and (max-width: 1000px) {
    .process-page .process-1 .mk-content ul li {
        width: 50%;
    }
}

@media screen and (max-width: 500px) {
    .process-page .process-1 .mk-content ul li {
        width: 100%;
    }
}