body {
    /*max-width: 1920px;*/
    --color: #a22328;
    font-weight: normal;
    margin: 0 auto;
}
.container {
    width: 1600px;
}
img {
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: crisp-edges; /* Standard */
}
.body-overflow-box {
    position: relative;
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#header {
    z-index: 21;
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
}
#header .nav .ui.menu {
    height: 100px;
    margin: 0 auto;
}
#header .nav .ui.menu .logo,
#footer .footer-top .logo img{
    width: 15%;
}
#header .nav .ui.menu .menu-box {
    width: 50%;
    height: 100%;
}
#header .nav .ui.menu .menu-box > div {
    height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    float: left;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-transform: uppercase;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
    color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
    font-size: 16px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    font-size: 14px;
    background: #fff;
    top: 100%;
    left: -10px;
    width: 180px;
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    -ms-transform: rotate3d(1, 0, 0, -90deg);
    -o-transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    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-transition: -webkit-transform 0.5s, opacity 0.3s;
    -moz-transition: -moz-transform 0.5s, opacity 0.3s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--color);
    display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
    display: block;
    float: none;
    padding: 8px 15px;
    color: black;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    text-transform: capitalize;
    position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
    display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
    background: #222;
    color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
    display: block;
}
#header .nav .ui.menu .menu-box 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 .box {
    min-width: 230px;
    height: 100%;
}
#header .nav .ui.menu .box .yuy {
    height: 100%;
    padding-left: 1em;
}
#header .nav .ui.menu .box .yuy span i {
    font-size: .7em;
}
#header .nav .ui.menu .box .yuy ul {
    right: 0;
    left: auto;
}
#header .nav .ui.menu .h-search {
    cursor: pointer;
    cursor: hand;
}
#header.active {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#header .nav .search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}
#header .nav .search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}
#header .nav .search-box form input {
    background: none;
    outline: none;
    border: none;
}
#header .nav .search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 26px;
    color: #000;
    padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}
#header .nav .search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}
#banner .slick-slide .content {
    display: none;
}
#banner .slick-active .content {
    display: block;
}
.wpulike.wpulike-default {
    display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
    display: inline-block;
}
.post-views-box {
    position: relative;
    margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
    background-image: url(../images/fw.png) !important;
    -webkit-filter: none;
    filter: none;
}
.wpulike {
    z-index: 10;
}
.wpulike.post-views-box {
    z-index: 5;
}
#banner .nivo-directionNav a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
    color: transparent;
    overflow: hidden;
    text-indent: -999em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#banner .nivo-directionNav a {
    opacity: 0;
}
#banner:hover .nivo-directionNav a {
    opacity: 1;
}
#banner .nivo-directionNav a:hover {
    background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
    background-image: url(../images/banner-btn-l.png);
    left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
    background-image: url(../images/banner-btn-r.png);
    right: 40px;
}
#banner .theme-default .nivo-controlNav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
    width: 25px  !important;
    height: 25px !important;
    background: #fff !important;
    border: 7px solid #7d7d7d !important;
    border-radius: 100% !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
    border-color: var(--color) !important;
}
html.mobile {
    overflow: hidden;
}
html.mobile .body-overflow-box {
    position: relative;
    left: 280px;
}
#mobile {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: none;
    z-index: 20;
    height: 100%;
}
#mobile:before {
    content: '';
    width: 200%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.13);
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#mobile .mobile-logo {
    position: absolute;
    left: 100%;
    width: 100vw;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #111;
    -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
    max-height: 30px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
}
#mobile #menu-on {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    position: absolute;
    left: 100%;
    top: 0;
    cursor: pointer;
    cursor: hand;
    z-index: 1;
}
#mobile #menu-on i {
    width: 23px;
    height: 2px;
    background: #222;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
}
#mobile #menu-on i.line1 {
    top: 12px;
}
#mobile #menu-on i.line2 {
    top: 19px;
}
#mobile #menu-on i.line3 {
    top: 26px;
}
#mobile .menu-content {
    width: 100%;
    height: 100%;
    display: block;
    background: #222;
    padding: 40px 10% 60px;
    overflow-y: auto;
    color: white;
}
#mobile .menu-content::-webkit-scrollbar {
    width: 3px;
    border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
    display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
    background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
    background-color: #eee;
}
#mobile .menu-content h3 {
    font-size: 20px;
    color: inherit;
    text-transform: capitalize;
    margin-bottom: 10px;
}
#mobile .menu-content h3 i {
    font-size: 16px;
    position: relative;
    top: -1px;
}
#mobile .menu-content .menu-logo {
    display: block;
}
#mobile .menu-content .menu-logo img {
    margin: 0 auto;
}
#mobile .menu-content .menu-list {
    margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
    font-size: 15px;
    color: inherit;
    text-transform: uppercase;
    line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
    padding: 8px 0;
    display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
    color: var(--color);
    text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
    position: relative;
    padding-left: 15px;
    font-size: 13px;
    line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
    content: '';
    width: 6px;
    height: 1px;
    background: white;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
    padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
    width: 12px;
}
#mobile .menu-content .mob-search form {
    position: relative;
}
#mobile .menu-content .mob-search form input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border-radius: 5px;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
    width: 45px;
    height: 45px;
    background: url("../images/icon-search-white.png") no-repeat center center #222;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
}
#mobile .menu-content .mob-yuy {
    margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
    margin-bottom: 10px;
    color: inherit;
    font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
    max-width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
    width: 30px;
    height: 30px;
    border-radius: 3px;
    background: #333;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    color: white;
    font-size: 14px;
    margin-right: 3px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
    background: var(--color);
}
#mobile .menu-content #menu-off {
    margin-top: 40px;
    cursor: pointer;
    cursor: hand;
}
#mobile.active {
    left: 0;
}
#mobile.active:before {
    right: 0;
}
#mobile.active #menu-on i.line1 {
    -webkit-transform: translateX(-50%) rotateZ(45deg);
    -moz-transform: translateX(-50%) rotateZ(45deg);
    -ms-transform: translateX(-50%) rotateZ(45deg);
    transform: translateX(-50%) rotateZ(45deg);
    top: 12px;
    margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
    opacity: 0;
}
#mobile.active #menu-on i.line3 {
    -webkit-transform: translateX(-50%) rotateZ(-45deg);
    -moz-transform: translateX(-50%) rotateZ(-45deg);
    -ms-transform: translateX(-50%) rotateZ(-45deg);
    transform: translateX(-50%) rotateZ(-45deg);
    top: 28px;
    margin-left: 3px;
}
#mobile.white .mobile-logo {
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: white;
}
#mobile.white .menu-content {
    background: white;
    color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
    background: black;
}
#mobile.white .menu-content .mob-search form input {
    border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
    #banner,
    .inner-banner {
        margin-top: 40px;
    }
}
#spotlight.show {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
    border: 10px solid white !important;
    border-radius: 10px;
}
#spotlight .header {
    background: black !important;
}
.more {
    height: 2.5em;
    padding: 0 1em;
    min-width: 11.25em;
    border-radius: 1.25em;
    background-color: var(--color);
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.more:hover {
    background-color: black;
}
.text {
    color: #666;
    line-height: 1.5;
}
a.link {
    line-height: 1;
    color: #333;
    border-bottom: 1px solid #333;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
a.link:hover {
    color: var(--color);
    border-bottom-color: var(--color);
}
#banner {
    position: relative;
}
#banner li>img {
    width: 100%;
}
#banner li.ie0 .more{
    display: none;
}
#banner .slickBtn {
    font-size: 30px;
}
#banner .slickBtn div {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}
#banner .slickBtn div:hover {
    background-color: var(--color);
    color: white;
}
#banner .slickBtn .prev {
    left: 2%;
}
#banner .slickBtn .next {
    right: 2%;
    left: auto;
}
#banner .slickDots {
    width: 100%;
    bottom: 4%;
}
#banner .slickDots li {
    width: 5em;
    height: .4em;
    background-color: white;
    margin: 0 .8em;
    border-radius: 0;
    border: none;
}
#banner .slickDots li.slick-active {
    background-color: var(--color);
}
#banner li {
    position: relative;
}
#banner li .content {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#banner li .content .left {
    display: inline-block;
    max-width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
#banner li.ie0 .content {
    top: 45%;
}
#banner li.ie0 .content .left {
    padding: 6% 3%;
}
#banner li.ie0 .content .left:before {
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
}

#banner li.ie0 .content .left:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency=".7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>');
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    display: none;
}
#banner li.ie0 .content .left i {
    content: '';
    -webkit-filter: blur(2px);
    filter: blur(2px);
    position: absolute;
    background-size: 100vw auto;
    background-position: center top -53.3vw;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: none;
}
#index-body .init-1 .right .list i {
    height: 1em;
}
#index-body .init-1 .right .list i img {
    max-height: 100%;
}
#index-body .init-1 .right .list span.h6 {
    line-height: 1;
    color: var(--color);
}
#index-body .init-1 .right .list span.h6 sub {
    vertical-align: baseline;
}
#index-body .init-1 .right .list span.h6 small {
    color: black;
    line-height: 1.2;
}
#index-body .init-1 .right .list p {
    color: #333;
}
#index-body .init-2 ul {
    height: 100vh;
}
#index-body .init-2 a {
    height: 100%;
    background-size: cover;
    background-position: center left;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
#index-body .init-2 a span.name {
    -webkit-writing-mode: tb;
    -ms-writing-mode: tb;
    writing-mode: tb;
    padding: 2em .2em;
    border-radius: 2em;
    background-color: var(--color);
    color: white;
    position: absolute;
    left: 0;
    bottom: 10%;
    letter-spacing: .2em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#index-body .init-2 a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    opacity: 0;
    transition: .5s;
}
#index-body .init-2 a .content {
    position: absolute;
    left: 0;
    bottom: 15%;
    width: 100%;
    padding: 0 5%;
    z-index: 1;
    color: white;
    opacity: 0;
    transition: .5s;
}
#index-body .init-2 a .content span.num {
    line-height: .8;
    margin-bottom: -.35em;
}
#index-body .init-2 a .content span.h5 {
    text-shadow: -2px 2px 0 black;
}
#index-body .init-2 a .content em {
    text-decoration: underline;
}
#index-body .init-2 li i.bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .5s;
}
#index-body .init-2:hover li i.bg {
    opacity: 0 !important;
}
#index-body .init-2 li.active a .content,
#index-body .init-2 li.active a:before {
    opacity: 1;
}
#index-body .init-2 li.active a span.name {
    -webkit-transform: translateX(-110%);
    -moz-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
}
#index-body .init-2 .mask i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transition: .5s;
}
#index-body .init-2 .mask i.active {
    opacity: 1;
}
#index-body .init-2 {
    background-color: black;
    position: relative;z-index: 1;
}
#index-body .init-2 li {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-right: 1px solid white;
}
#index-body .init-2 li.active {
    width: 30%;
}
#index-body .init-3 time {
    color: #999;
}
#index-body .init-3 span.h6 {
    color: #333;
}
#index-body .init-3 span.h6:hover {
    color: var(--color);
}
#footer .footer-top .box span.h6:after {
    content: '';
    width: 6em;
    height: 1px;
    background-color: #c9c9c9;
    display: block;
    margin-top: .5em;
}
#footer .footer-top .box .nav {
    line-height: 2.2;
    color: #666;
}
#footer .footer-top .box .nav ul ul {
    display: none !important;
}
#footer .footer-top .box .nav.two {
    width: 200px;
}
#footer .footer-top .box .nav.two ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#footer .footer-top .box .nav a {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#footer .footer-top .box .nav a:hover {
    color: var(--color);
}
#footer .footer-top .box .info a {
    position: relative;
    display: block;
}
#footer .footer-top .box .info a i {
    position: absolute;
    right: 103%;
    height: 2.2em;
    width: 16px;
}
#footer .footer-top .box .info a i img {
    width: auto;
    max-width: none;
}
#footer .footer-top .box .form ul {
    width: 210px;
    max-width: 100%;
}
#footer .footer-top .box .form ul input {
    width: 100%;
    border: none;
    padding: .5em 0;
    border-bottom: 1px solid #bbb;
}
#footer .footer-top .box .form ul input::-webkit-input-placeholder {
    color: #999;
}
#footer .footer-top .box .form ul input:-moz-placeholder {
    color: #999;
}
#footer .footer-top .box .form ul input::-moz-placeholder {
    color: #999;
}
#footer .footer-top .box .form ul input:-ms-input-placeholder {
    color: #999;
}
#footer .footer-top .box .form ul input::placeholder {
    color: #999;
}
#footer .footer-top .box .form ul li {
    margin-top: 1em;
}
#footer .footer-top .box .form ul li:first-child {
    margin-top: 0;
}
#footer .footer-top .box .form button {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    background-color: var(--color);
    color: white;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#footer .footer-top .box .form button:hover {
    background-color: black;
}
#footer .footer-bottom .share a {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    border: 1px solid #333;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#footer .footer-bottom .share a:hover {
    background-color: var(--color);
    color: white;
    border-color: var(--color);
}
#footer .footer-bottom .coy {
    color: #666;
}
#footer .footer-bottom .coy a {
    color: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#footer .footer-bottom .coy a:hover {
    color: black;
}
#footer .footer-bottom .coy svg {
    max-height: 1.625em;
    width: auto;
    display: block;
    fill: #666;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
#footer .footer-bottom .coy svg:hover {
    fill: var(--color);
}
@media screen and (max-width: 1000px) {
    #index-body .init-2 ul {
        height: auto;
        gap: 1%;
    }
    #index-body .init-2 ul li {
        height: 200px;
        width: 49% !important;
        margin-bottom: 2%;
    }
    .footer-top .box .slide:nth-child(1),
    .footer-top .box .slide:nth-child(2),
    .footer-top .box .slide:nth-child(3) {
        display: none;
    }
    #footer .footer-bottom .share {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    #footer .footer-bottom .coy {
        gap: .5em;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #banner .slickBtn {
        display: none;
    }
    .font-26 {
        font-size: 18px;
    }
    .font-36 {
        font-size: 22px;
    }
    .font-30 {
        font-size: 20px;
    }
    #footer .footer-bottom .coy {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}
@media screen and (max-width: 500px) {
    .footer-top .box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-top .box .slide {
        width: 100%;
        padding-left: 0;
    }
    .footer-top .box .slide .info {
        padding-left: 7%;
    }
    #footer .footer-top .box .form ul {
        width: 100%;
    }
}
.inner-banner {
    color: white;
}
.inner-banner span.h2 {
    line-height: 1;
}
.inner-banner .mbx a:hover {
    text-decoration: underline;
}
.sale-page span.h2 {
    line-height: 1;
}
.sale-page span.h2:after {
    content: '';
    width: 2em;
    height: 1px;
    background-color: #b4b4b4;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.sale-page .sale-1 .list ul li {
    background-color: #f2f2f1;
}
.sale-page .sale-1 .list ul li .left {
    padding: 3%;
}
.sale-page .sale-2 .box {
    background-color: #f2f2f2;
    padding: 2%;
}
.sale-page .sale-2 .box i {
    width: 2em;
    height: 2em;
    border-radius: 100%;
    border: 1px solid #a3a3a3;
}
@media screen and (max-width: 1000px) {
    .sale-page .sale-1 .list ul li .left {
        padding: 5% !important;
    }
}
@media screen and (max-width: 500px) {
    .sale-page .sale-2 .box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -moz-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 10%;
        gap: 20px;
    }
}

.inner-page .mbx-box {
    padding: 30px 0 30px;
}
.inner-page .mbx {
    font-size: 14px;
    line-height: 28px;
    color: transparent;
    padding-left: 35px;
    position: relative;
}
.inner-page .mbx::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    border-bottom: 1px solid #000;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.inner-page .mbx a {
    color: #000;
    padding: 0 16px 0 12px;
    border-right: 1px solid rgba(0, 0, 0, 0.6);
}
.inner-page .mbx a:first-child {
    padding-left: 0;
}
.inner-page .mbx span {
    color: #000;
    padding-left: 12px;
}
.inner-page .sidebar-box {
    max-width: 1620px;
    margin: 0 auto;
    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;
}
.inner-page .sidebar-box .sidebar-left {
    width: 69%;
}
.inner-page .sidebar-box .sidebar-right {
    width: 31%;
    padding-left: 60px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav {
    padding: 28px 50px 40px;
    background: var(--color);
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav h3 {
    font-size: 24px;
    line-height: 44px;
    color: #ffffff;
    position: relative;
    padding-bottom: 20px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav h3::after {
    position: absolute;
    content: "";
    width: 68px;
    height: 2px;
    border-bottom: 1px solid #fff;
    left: 0;
    bottom: 0;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul {
    margin-top: 25px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li {
    font-size: 16px;
    line-height: 30px;
    color: #ffffff94;
    margin-bottom: 22px;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li:last-child {
    margin-bottom: 0;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a {
    display: inline-block;
    position: relative;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a:hover {
    color: #fff;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a:hover::after {
    width: 100%;
}
.inner-page .sidebar-box .sidebar-right .sidebar-nav ul li a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    border-bottom: 1px solid var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    left: 0;
    bottom: -3px;
}
.inner-page .sidebar-box .sidebar-right .like-list {
    margin-top: 36px;
}
.inner-page .sidebar-box .sidebar-right .like-list h4 {
    font-size: 16px;
    line-height: 30px;
    color: #141414;
    font-weight: bold;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.inner-page .sidebar-box .sidebar-right .like-list ul {
    margin-top: 15px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li {
    padding-left: 21px;
    position: relative;
    margin-bottom: 25px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li::after {
    position: absolute;
    content: "";
    width: 13px;
    height: 1px;
    background: #000;
    left: 0;
    top: 13px;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li h5 {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
}
.inner-page .sidebar-box .sidebar-right .like-list ul li h5:hover {
    color: var(--color);
}
.inner-page .sidebar-box .sidebar-right .like-list ul li p {
    font-size: 14px;
    line-height: 2;
    color: rgba(20, 20, 20, 0.5);
    margin-top: 12px;
}
.inner-page .about-link {
    padding: 70px 0;
    background: var(--color);
}

.inner-page .about-link .a-box {
    max-width: 1620px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 0;
}
.inner-page .about-link .a-box h3 {
    font-size: 24px;
    line-height: 44px;
    color: #ffffff;
    font-weight: bold;
}

.inner-page .about-link .a-box a {
    padding: 15px 80px 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
}
.inner-page .about-link .a-box a:hover {
    color: var(--color);
    background: #fff;
}
.inner-page .about-link .a-box a:hover:after {
    background: #fff;
}
/*.inner-page .about-link .a-box a img{
  display: none;
}*/
.inner-page .m-page {
    text-align: center;
    margin-top: 50px;
}
.inner-page .m-page span,
.inner-page .m-page a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    text-align: center;
    line-height: 42px;
    color: #9b2a2c;
    border: 1px solid rgba(0, 0, 0, 0.4);
    margin-right: 10px;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.inner-page .m-page span:hover,
.inner-page .m-page a:hover {
    color: #fff;
    background: #000;
}
.inner-page .m-page .current {
    color: #fff;
    background: #9b2a2c;
}
.news-page .news-list {
    padding-bottom: 90px;
}
.news-page .news-list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 80px;
}
.news-page .news-list ul li .left {
    width: 30%;
}
.news-page .news-list ul li .left a {
    display: block;
    overflow: hidden;
}
.news-page .news-list ul li .left a img {
    width: 100%;
}
.news-page .news-list ul li .right {
    width: 70%;
    padding-left: 60px;
}
.news-page .news-list ul li .right span {
    font-size: 14px;
    line-height: 28px;
    color: rgba(20, 20, 20, 0.5);
}
.news-page .news-list ul li .right h4 {
    font-size: 24px;
    line-height: 44px;
    color: #000000;
    font-weight: bold;
    margin: 20px 0;
}
.news-page .news-list ul li .right h4:hover {
    color: var(--color);
}
.news-page .news-list ul li .right p {
    font-size: 16px;
    line-height: 30px;
    color: #303030;
    display: -webkit-box;
}
.news-page .news-list ul li .right .more {
    display: inline-block;
    padding: 8px 32px;
    background: #1f1f1f;
    font-size: 14px;
    color: #fff;
    line-height: 2;
    margin-top: 28px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.news-page .news-list ul li .right .more:hover {
    background: var(--color);
}

.newdet-page .news-content {
    padding-bottom: 135px;
}
.newdet-page .news-content .title {
    padding: 15px 0 35px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.newdet-page .news-content .title span {
    font-size: 14px;
    line-height: 2;
    color: rgba(20, 20, 20, 0.5);
}
.newdet-page .news-content .title h1 {
    font-size: 30px;
    line-height: 1.4;
    color: #000000;
    font-weight: bold;
    margin-top: 20px;
}
.newdet-page .news-content .content {
    padding: 45px 0 200px;
    font-size: 16px;
    letter-spacing: 0.5px;
    line-height: 2;
    color: #303030;
}
.newdet-page .news-content .m-link h3 {
    font-size: 24px;
    line-height: 1;
    color: #1f1f1f;
    font-weight: bold;
    position: relative;
    margin-bottom: 25px;
}
.newdet-page .news-content .m-link h3::after {
    position: absolute;
    content: "";
    width: 80%;
    height: 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.newdet-page .news-content .m-link .next {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.newdet-page .news-content .m-link .next .left {
    width: 42.5%;
}
.newdet-page .news-content .m-link .next .left a {
    display: block;
    overflow: hidden;
}
.newdet-page .news-content .m-link .next .left a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.newdet-page .news-content .m-link .next .left a img {
    width: 100%;
}
.newdet-page .news-content .m-link .next .right {
    width: 57.5%;
    padding-left: 26px;
}
.newdet-page .news-content .m-link .next .right span {
    font-size: 14px;
    line-height: 1;
    color: rgba(20, 20, 20, 0.5);
}
.newdet-page .news-content .m-link .next .right h4 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 20px;
}
.newdet-page .news-content .m-link .next .right h4:hover {
    color: var(--color);
}
.newdet-page .news-content .m-link .next .right p {
    font-size: 14px;
    line-height: 1.8;
    color: #303030;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.newdet-page .news-content .m-link .next .right .more {
    display: inline-block;
    padding: 8px 32px;
    background: #1f1f1f;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    margin-top: 28px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.newdet-page .news-content .m-link .next .right .more:hover {
    background: var(--color);
}
.category-page .container {
    max-width: 1570px;
}
.category-page .mbx-box .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.category-page .mbx-box .container .p-btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    color: #000000;
    position: relative;
}
.category-page .mbx-box .container .p-btn a:hover::after {
    width: 100%;
}
.category-page .mbx-box .container .p-btn a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    border-bottom: 1px solid #000;
    left: 0;
    top: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.category-page .mbx-box .container .p-btn a img {
    margin-right: 10px;
}
.category-page .category-box {
    padding-bottom: 70px;
}
.category-page .category-box .category-list .item-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;
    background: #f6f6f6;
    padding: 0 5%;
}
.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 {
    position: relative;
    z-index: 10;
}
.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 a {
    display: block;
    overflow: inherit;
    position: relative;
    height: auto;
}
/*.category-page .category-box .category-list:nth-child(1) .item-box .item-img1 img{
  position: absolute;
  max-width: none;
  width: 500px !important;
  left: 10*10px;
  bottom: -6.6*10px;
}*/
.category-page .category-box .category-list .item-box .item {
    width: 50%;
    position: relative;
    background: #f6f6f6;
    max-height: 400px;
}
.category-page .category-box .category-list .item-box .item .item-img {
    display: block;
    overflow: hidden;
}
.category-page .category-box .category-list .item-box .item .item-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.category-page .category-box .category-list .item-box .item .item-img img {
    width: auto;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}
.category-page .category-box .category-list .item-box .item-text {
    padding: 80px 60px;
    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;
    background: #f8f8f8;
}
.category-page .category-box .category-list .item-box .item-text .content {
    width: 100%;
}
.category-page .category-box .category-list .item-box .item-text .content h4 {
    font-size: 55px;
    line-height: 1;
    font-weight: bold;
    color: #121212;
}
.category-page .category-box .category-list .item-box .item-text .content h4:hover {
    color: var(--color);
}
.category-page .category-box .category-list .item-box .item-text .content p {
    font-size: 14px;
    line-height: 1.6;
    color: #202020;
    margin: 25px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.category-page .category-box .category-list .product-box {
    /*padding: 3*10px;*/
}
.category-page .category-box .category-list .product-box h3 {
    font-size: 22px;
    line-height: 1;
    color: #000000;
    padding-left: 85px;
    position: relative;
}
.category-page .category-box .category-list .product-box h3::after {
    position: absolute;
    content: "";
    width: 53px;
    height: 2px;
    border-bottom: 1px solid #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 13px;
}
.category-page .category-box .category-list .product-box .productBox {
    margin-top: 40px;
    padding: 0 50px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a {
    display: block;
    text-align: center;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a:hover .p-img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a:hover h4::after {
    width: 100%;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a .p-img {
    overflow: hidden;
    height: 195px;
    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;
    margin-bottom: 20px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a .p-img img {
    width: 100%;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h5 {
    font-size: 20px;
    line-height: 1;
    color: #121212;
    text-transform: uppercase;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h4 {
    font-size: 14px;
    line-height: 1;
    color: #121212;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}
.category-page .category-box .category-list .product-box .productBox .swiper-slide a h4::after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    border-bottom: 1px solid #121212;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
/*.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img2 {
  right: 66.6666%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-text {
  left: 66.6666%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img1 {
  right: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img2 {
  right: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
  left: 33.3333%;
}
.category-page .category-box .category-list:nth-child(4n) .item-box .item-img2 {
  right: 66.6666%;
}*/

.prodet-page{
    overflow: hidden;
    background: #f7f7f8;
}

.prodet-page .prodet-box .prodet-1 {
    padding: 20px 0 80px;
}
.prodet-page .prodet-box .prodet-1 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.prodet-page .prodet-box .prodet-1 .container .left {
    width: 50%;
    padding-right: 10px;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll {
    padding: 20px 0;
    position: relative;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-wrapper{
    margin: -10px;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-wrapper .slick-list {
    width: 100%;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-slide {
    padding: 10px;
}

.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-prev,
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-next {
    width: 16px;
    height: 29px;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-prev {
    background: url(../images/ped-left.png) no-repeat center center;
    background-size: 100% 100%;
    left: 0;
}
.prodet-page .prodet-box .prodet-1 .container .left .img-scroll .swiper-button-next {
    background: url(../images/ped-right.png) no-repeat center center;
    background-size: 100% 100%;
    right: 0;
}
.prodet-page .prodet-box .prodet-1 .container .right {
    width: 50%;
    padding-left: 80px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
    font-size: 24px;
    line-height: 44px;
    color: var(--color);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box h1 {
    font-size: 40px;
    line-height: 1.4;
    color: #121212;
    font-weight: 600;
    /*text-transform: uppercase;*/
    margin: 15px 0;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box p {
    font-size: 18px;
    line-height: 2;
    color: #000000;
    /*padding: 20px 0;*/
    /*border-bottom: 1px solid #8a8a8a;*/
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .content {
    font-size: 16px;
    line-height: 30px;
    margin-top: 40px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color {
    margin-top: 30px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color span {
    font-size: 14px;
    line-height: 1;
    color: #444444;
    display: block;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox {
    margin-top: 20px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox .swiper-slide {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .product-color .colorBox .swiper-slide:hover {
    background: #f4f4f4;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box {
    margin-top: 35px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a {
    display: inline-block;
    padding: 16px 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 18px;
    line-height: 1;
    color: #121212;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a:hover {
    border: 1px solid var(--color);
    color: #fff;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a:hover::after {
    width: 100%;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--color);
    left: 0;
    top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: -1;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box .inquiry {
    padding: 16px 60px;
    border: 1px solid #000000;
    margin-left: 18px;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share {
    margin-top: 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    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;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon {
    font-size: 14px;
    line-height: 2;
    font-weight: 100;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a {
    padding: 0 18px;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a:hover {
    color: var(--color);
}
.prodet-page .prodet-box .prodet-1 .container .right .text-box .share .icon a:last-child {
    border-right: none;
}
.prodet-page .prodet-box .prodet-2 h3 {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.prodet-page .prodet-box .prodet-2 h3 span {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: #000;
    padding: 12px 25px;
    background: #ccc;
    position: relative;
    cursor: pointer;
}
.prodet-page .prodet-box .prodet-2 h3 span.active {
    color: #fff;
    background: var(--color);
}
.prodet-page .prodet-box .prodet-2 h3 span.active::after {
    position: absolute;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 100%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--color);
}
.prodet-page .prodet-box .prodet-2 .content {
    padding: 60px 0 50px;
    font-size: 18px;
}

.prodet-page .prodet-box .prodet-2 .content strong {
    font-weight: bold;
    display: block;
}

.prodet-page .prodet-box .prodet-3 {
    padding: 40px 0 45px;
    background: #f5f5f5;
}
.prodet-page .prodet-box .prodet-3 h3 {
    font-size: 20px;
    line-height: 1;
    color: #1f1f1f;
    font-weight: bold;
}
.prodet-page .prodet-box .prodet-3 .reportBox {
    margin: 45px -10px 0;
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container {
    padding: 10px;
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a {
    display: block;
    overflow: hidden;
    -webkit-box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 2px 3px 5px 0 rgba(0, 0, 0, 0.3);
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.prodet-page .prodet-box .prodet-3 .reportBox .swiper-container .swiper-slide a img {
    width: 100%;
}
.prodet-page .prodet-box .prodet-4 {
    padding: 60px 0;
}
.prodet-page .prodet-box .prodet-4 h3 {
    font-size: 35px;
    color: #080808;
    font-weight: 600;
    text-align: center;
}
.prodet-page .prodet-box .prodet-4 .recommendBox {
    margin-top: 40px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-wrapper {
    margin: -15px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide {
    padding: 15px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a {
    display: block;
    text-align: center;
}

.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a:hover h4::after {
    width: 100%;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a .p-img {
    overflow: hidden;
    height: auto;
    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;
    margin-bottom: 20px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a .p-img img {
    width: 100%;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h5 {
    font-size: 20px;
    line-height: 36px;
    color: #121212;
    /*text-transform: uppercase;*/
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h4 {
    font-size: 14px;
    line-height: 2;
    color: #121212;
    margin-top: 10px;
    display: inline-block;
    position: relative;
    font-weight: 500;
    padding-bottom: 4px;
}
.prodet-page .prodet-box .prodet-4 .recommendBox .swiper-slide a h4::after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    border-bottom: 1px solid var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.prodet-page.prodet2-page .prodet-box .container {
    max-width: 1605px;
}
.prodet-page.prodet2-page .prodet-box .prodet-1 .left {
    width: 55%;
}
.prodet-page.prodet2-page .prodet-box .prodet-1 .right {
    width: 45%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 {
    border-top: 1px solid #d9d9d9;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title {
    padding: 40px 0 85px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title h3 {
    font-size: 28px;
    line-height: 1;
    color: #000000;
    font-weight: bold;
    margin-bottom: 14px;
    border: none;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .title p {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    font-weight: 100;
    max-width: 1150px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .left {
    width: 58%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right {
    width: 42%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit {
    width: 100%;
    padding: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit h4 {
    font-size: 24px;
    color: #000000;
    padding-top: 25px;
    position: relative;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li .right .tit h4::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    top: 0;
    left: 0;
    border-top: 1px solid #d9d9d9;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .content-box ul li:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box {
    margin-top: 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container {
    max-width: 1230px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content {
    padding: 110px 0 100px;
    /*border-top: 1px solid #a3a3a3;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .left {
    width: 42%;
    padding: 15px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right {
    width: 58%;
    padding-left: 5%;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right h5 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    padding: 0 6px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list {
    margin-top: 40px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item {
    margin-bottom: 15px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 6px;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title h6 {
    font-size: 18px;
    color: #000;
    line-height: 1;
    font-weight: 400;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title i {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .title i::before {
    content: "+";
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box {
    display: none;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box ul {
    padding: 15px;
    margin-left: 40px;
    margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box ul li {
    font-size: 16px;
    color: #565656;
    margin-bottom: 5px;
    list-style-type: disc;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box {
    padding: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p {
    width: 50%;
    margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p .spec-title {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 500;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item .text-box .box p .spec-value {
    display: block;
    font-size: 16px;
    color: #565656;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item.active .title {
    border: 2px solid #000;
}
.prodet-page.prodet2-page .prodet-box .prodet-2 .technical-box .container .content .right .list .item.active .title i::before {
    content: "-";
}
.prodet-page.prodet2-page .prodet-box .prodet-3 {
    padding: 60px 0;
    background: #000;
    text-align: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .container {
    max-width: 1230px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 h5 {
    margin: 0;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox {
    margin-top: 30px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img {
    overflow: hidden;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .e-img img {
    width: 100%;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content {
    padding: 15px 5px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content h6 {
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 700;
    margin-bottom: 20px;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 .exploreBox .swiper-slide .content p {
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}
.prodet-page.prodet2-page .prodet-box .prodet-3 a {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    text-transform: uppercase;
    line-height: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 100;
    margin-top: 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 {
    background: #f1f1f1;
    padding: 30px 0 50px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top {
    text-align: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top h4 {
    font-size: 26px;
    line-height: 1;
    color: #1e1e1e;
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 17px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 .top p {
    font-size: 16px;
    line-height: 1;
    color: #1e1e1e;
    margin-top: 35px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form {
    margin-top: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[type="text"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 0px 0px 0px 16px;
    height: 48px;
    text-align: left;
    color: #242424;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    background-color: #ffffff;
    border: 1px solid #242424;
    margin-left: 5px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="name"] {
    width: 140px;
    margin-left: 0;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="mail"] {
    width: 240px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[name="content"] {
    width: 300px;
}
.prodet-page.prodet2-page .prodet-box .prodet-5 form input[type="submit"] {
    background: #000000;
    border-radius: 0px;
    border-style: solid;
    border-color: #000000;
    border-width: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    white-space: normal;
    padding: 11px 10px;
    text-align: center;
    word-break: break-word;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    cursor: pointer;
    height: auto;
}

/*.about-page .about-1 {
  padding-top: 15px;
}*/
.about-page .about-1 .about-box .left {
    position: relative;
}
/*.about-page .about-1 .about-box .left::after {
  position: absolute;
  content: "";
  width: 80%;
  height: 100%;
  background: var(--color);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}*/
.about-page .about-1 .about-box .right h2 {
    font-size: 45px;
    line-height: 1;
    color: #1c1c1c;
    font-weight: bold;
}
.about-page .about-1 .about-box .right .h3 {
    font-size: 40px;
    line-height: 1.6;
    color: var(--color);
    font-weight: bold;
    margin-bottom: .7em;
}
.about-page .about-1 .about-box .right p {
    font-size: 16px;

    color: #777;

   
    line-height: 2;
}
.about-page .about-1 .text {
    padding: 100px 0 100px;
    text-align: center;
    color: #000;
}
.about-page .about-1 .text h2 {
    font-size: 45px;
    font-weight: bold;
    text-transform: uppercase;
}
.about-page .about-1 .text p {
    font-size: 16px;
    margin-top: 20px;
}
.about-page .about-2 {
    padding: 100px 0 610px;
    background: url(../images/about-2-bg.jpg) no-repeat center center;


}
.about-page .about-2 .left{width: 45%}
.about-page .about-2 .left h2{font-size: 30px; color: #3a69de; font-weight: 700;}
.about-page .about-2 .right{width: 55%}
.about-page .about-2 .right p{font-size: 18px;}
.about-page .about-2 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -15px;
}

.about-page .about-2 ul li {
    width: 50%;
    text-align: center;
    position: relative;
    padding: 15px;
}
.about-page .about-2 ul li:last-child::after {
    display: none;
}

.about-page .about-2 ul li h4 {
    font-size: 72px;
    line-height: 1;
    color: #3a69de;
    font-weight: bold;
}
.about-page .about-2 ul li h4 span {
    font-weight: 100;
    font-size: 22px;
}
.about-page .about-2 ul li p {
    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-top: 22px;
}
.about-page .about-3 {

    background-size: cover;
}
.about-page .about-3 .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.about-page .about-3 .top .left {
    width: 50%;
    text-align: right;
    padding: 100px 0 100px 0;
}
.about-page .about-3 .top .left img {
    margin-right: -15px;
}
.about-page .about-3 .top .right {
    width: 50%;
    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;
    padding: 40px 20px;
}
.about-page .about-3 .top .right ul li {
    padding-left: 125px;
    position: relative;
    font-size: 30px;
    color: #000;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin: 20px 0;
}
.about-page .about-3 .top .right ul li:hover {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
}
.about-page .about-3 .top .right ul li:last-child {
    margin-bottom: 0;
}
.about-page .about-3 .top .right ul li::after {
    position: absolute;
    content: "";
    width: 98px;
    height: 2px;
    border-bottom: 1px solid #000;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.about-page .about-3 .bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 130px;
}
.about-page .about-3 .bottom .left {
    width: 50%;
    padding-left: 20px;
}
.about-page .about-3 .bottom .left h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bold;
    max-width: 700px;
}
.about-page .about-3 .bottom .left .more {
    margin: 45px 0;
}
.about-page .about-3 .bottom .left p {
    font-size: 18px;
    color: #202020;
    letter-spacing: 0px;
    line-height:2;
}
.about-page .about-3 .bottom .right {
    width: 50%;
    text-align: right;
    padding-left: 30px;
}
.about-page .about-4 {
    padding: 100px 0 147px;
    background: url(../images/about-4-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.about-page .about-4 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.about-page .about-4 .container .left {
    width: 50%;
    text-align: center;
}
.about-page .about-4 .container .left .content {
    display: inline-block;
    position: relative;
}
.about-page .about-4 .container .left .content .ball {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.about-page .about-4 .container .left .content .ball .box {
    border-radius: 100%;
    width: 100%;
    height: 100%;
    -webkit-animation: kz 20s infinite linear;
    -moz-animation: kz 20s infinite linear;
    animation: kz 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    position: relative;
}
.about-page .about-4 .container .left .content .ball .box .text1 {
    position: absolute;
    top: 0;
    left: -20px;
    border-radius: 100%;
    width: 140px;
    height: 140px;
    line-height: 140px;
    font-size: 26px;
    text-align: center;
    color: #fff;
    background: #a6a6a6;
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text2 {
    position: absolute;
    top: -40px;
    right: 65px;
    border-radius: 100%;
    width: 125px;
    height: 125px;
    line-height: 125px;
    font-size: 26px;
    color: #fff;
    text-align: center;
    background: #8a8a8a;
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text3 {
    position: absolute;
    top: 155px;
    right: -75px;
    border-radius: 100%;
    width: 175px;
    height: 175px;
    line-height: 175px;
    font-size: 36.5px;
    color: #fff;
    text-align: center;
    background: #bbbbbb;
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text4 {
    position: absolute;
    bottom: -40px;
    right: 35px;
    border-radius: 100%;
    width: 170px;
    height: 170px;
    line-height: 170px;
    font-size: 26px;
    color: #fff;
    text-align: center;
    background: #565656;
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-page .about-4 .container .left .content .ball .box .text5 {
    position: absolute;
    bottom: 32px;
    left: -50px;
    border-radius: 100%;
    width: 195px;
    height: 195px;
    line-height: 195px;
    font-size: 35px;
    color: #fff;
    text-align: center;
    background: #363636;
    -webkit-animation: kzs 20s infinite linear;
    -moz-animation: kzs 20s infinite linear;
    animation: kzs 20s infinite linear;
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
}
.about-page .about-4 .container .right {
    width: 50%;
}
.about-page .about-4 .container .right .text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
.about-page .about-4 .container .right h2 {
    font-size: 161px;
    line-height: .8;
    color: #ffffff;
    font-weight: bold;
}
.about-page .about-4 .container .right h3 {
    font-size: 62px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
    margin-left: 10px;
}
.about-page .about-4 .container .right p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 40px;
}
.about-page .about-5 {
    padding: 55px 0 72px;
    background: url(../images/about-5.jpg) no-repeat center center;
    background-size: cover;
}
.about-page .about-5 h3 {
    font-size: 30px;
    line-height: 1;
    color: #ffffff;
}
.about-page .about-5 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
}
.about-page .about-5 ul li {
    width: 50%;
    padding-left: 28px;
    border-left: 1px solid #fff;
}
.about-page .about-5 ul li:hover img {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}
.about-page .about-5 ul li h2 {
    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;
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
}
.about-page .about-5 ul li h2 img {
    margin-left: 45px;
}
.about-page .about-5 ul li p {
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    margin-top: 20px;
}
.about-page .about-6 {
    background: #ebebeb;
    background-size: cover;
    background-attachment: fixed;
    padding: 85px 0 85px;
}
.about-page .about-6 h2 {
    font-size: 40px;
    color: #181818;
    font-weight: bold;
    text-align: center;
}
.about-page .about-6 .historyBox {
    margin-top: 70px;
}
.about-page .about-6 .historyBox ul {
    margin: 0 -20px;
}
.about-page .about-6 .historyBox ul li {
    padding: 0 20px;
}
.about-page .about-6 .historyBox .swiper-container {
    height: 470px;
}
.about-page .about-6 .historyBox .swiper-slide {
    text-align: center;
    padding: 75px 0 15px;
    position: relative;
}
.about-page .about-6 .historyBox .swiper-slide::after {
    position: absolute;
    content: "";
    width: 2px;
    border-left: 1px solid #181818;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 30px;
    height: 48px;
}
.about-page .about-6 .historyBox .swiper-slide h4 {
    font-size: 36px;
    line-height: 1;
    color: #181818;
    font-weight: bold;
}
.about-page .about-6 .historyBox .swiper-slide p {
    font-size: 20px;
    line-height: 1;
    color: #181818;
    margin-top: 18px;
}
.about-page .about-7 {
    padding: 100px 0 100px;
    text-align: center;
    color: #fff;
    background: var(--color);
}
.about-page .about-7 .top h2 {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 30px;
}
.about-page .about-7 .top p {
    font-size: 16px;
    line-height: 30px;
}
.about-page .about-7 .top p.p {
    font-size: 14px;
}
.about-page .about-7 .top .txt {
    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;
    margin-top: 36px;
    padding: 0 55px 20px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.about-page .about-7 .top .txt::after {
    position: absolute;
    content: "";
    width: 780px;
    height: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}
.about-page .about-7 .top .txt img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-top: 15px;
}
.about-page .about-7 .top .txt h4 {
    font-size: 26px;
    line-height: 1;
}
.about-page .about-7 .top .txt h4 span {
    font-size: 48px;
    line-height: 1;
    font-weight: bold;
}
.about-page .about-7 .map-box {
    margin-top: 45px;
}
.about-page .about-7 .map-box .map {
    display: inline-block;
    position: relative;
}
.about-page .about-7 .map-box .map .item {
    position: absolute;
    text-align: left;
}
.about-page .about-7 .map-box .map .item h5 {
    font-size: 25px;
    color: #f9f9f9;
    font-weight: bold;
}
.about-page .about-7 .map-box .map .item li {
    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: 60px;
    height: 60px;
    border-radius: 100%;
    background: #ffffff;
    font-size: 12px;
    line-height: 1;
    color: #000;
    margin-right: 2px;
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 6;
}
.about-page .about-7 .map-box .map .item li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    display: block;
    z-index: -1;
}
.about-page .about-7 .map-box .map .item li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
    z-index: -1;
}
.about-page .about-7 .map-box .map .item li:hover {
    background: #242424;
    color: #fff;
}
.about-page .about-7 .map-box .map .item li:hover::before {
    -webkit-animation: ks 2s infinite;
    -moz-animation: ks 2s infinite;
    animation: ks 2s infinite;
}
.about-page .about-7 .map-box .map .item li:hover::after {
    -webkit-animation: ks 2s infinite;
    -moz-animation: ks 2s infinite;
    animation: ks 2s infinite;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}
.about-page .about-7 .map-box .map .item ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 14px;
}
.about-page .about-7 .map-box .map .item:nth-child(1) {
    left: 73%;
    top: 30%;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
    width: 80px;
    height: 80px;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) span {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: var(--color);
    color: #fff;
    border-radius: 100%;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
.about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}
.about-page .about-7 .map-box .map .item:nth-child(2) {
    left: 41%;
    top: 15%;
    text-align: center;
}
.about-page .about-7 .map-box .map .item:nth-child(2) ul {
    max-width: 186px;
}
.about-page .about-7 .map-box .map .item:nth-child(2) ul li:nth-child(1) {
    margin-right: 3px;
}
.about-page .about-7 .map-box .map .item:nth-child(3) {
    left: 15%;
    top: 22%;
}
.production-page .production-1 {
    padding: 52px 0 120px;
    background: url(../images/production-1-bg.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 2;
}
.production-page .production-1::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 118px;
    border-right: 1px solid #a5a5a5;
    bottom: -59px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.production-page .production-1 .production-box {
    padding-top: 80px;
}
.production-page .production-1 .production-box h2 {
    font-size: 48px;
    line-height: 1;
    color: #202020;
    text-align: center;
    font-weight: bold;
}
.production-page .production-1 .production-box .content-box {
    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;
    margin-top: 55px;
}
.production-page .production-1 .production-box .content-box h4 {
    font-size: 20px;
    line-height: 1;
    color: #000000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}
.production-page .production-1 .production-box .content-box .box {
    width: 125px;
    height: 125px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #191919;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: bold;
    border: 5px solid #2c2c2c;
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: -20px;
    border-radius: 100%;
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    z-index: 6;
}
.production-page .production-1 .production-box .content-box .box:hover {
    color: #fff;
    background: #2e2e2e;
    outline: 0px solid rgba(0, 0, 0, 0.2);
}
.production-page .production-1 .production-box .content-box .box:hover::before {
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
}
.production-page .production-1 .production-box .content-box .box:hover::after {
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}
.production-page .production-1 .production-box .content-box .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(46, 46, 46, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    display: block;
    z-index: -1;
}
.production-page .production-1 .production-box .content-box .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(46, 46, 46, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    display: block;
    z-index: -1;
}
.production-page .production-1 .production-box .content-box .left {
    padding-right: 60px;
    position: relative;
}
.production-page .production-1 .production-box .content-box .right {
    padding-left: 60px;
    position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 38px;
    position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 80px;
    border-left: 1px solid #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
}
.production-page .production-1 .production-box .content-box .centre ul::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 80px;
    border-left: 1px solid #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}
.production-page .production-1 .production-box .content-box .centre ul li {
    padding: 0 22px;
    position: relative;
}
.production-page .production-1 .production-box .content-box .centre ul li .box {
    background: #f0f0f0;
}
.production-page .production-1 .production-box .content-box .centre ul li .box:hover {
    background: #2e2e2e;
    outline: 0px solid rgba(0, 0, 0, 0.2);
}
.production-page .production-1 .production-box .content-box .centre ul li:last-child::after {
    display: none;
}
.production-page .production-1 .production-box .content-box .centre ul li::after {
    position: absolute;
    content: "";
    width: 25px;
    height: 2px;
    border-bottom: 1px solid #000;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -12px;
}
.production-page .production-1 .production-box p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    color: #191919;
    margin-top: 43px;
}
.production-page .production-2 {
    padding: 85px 0 200px;
    position: relative;
    background: url(../images/production-2-bg.jpg) no-repeat center center;
    background-size: cover;
}
.production-page .production-2 .container {
    max-width: 1375px;
}
.production-page .production-2::after {
    position: absolute;
    content: "";
    width: 2px;
    height: 118px;
    border-right: 1px solid #a5a5a5;
    bottom: -59px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.production-page .production-2 h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 40px;
}
.production-page .production-2 .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.production-page .production-2 .item .left {
    width: 50%;
    position: relative;
    z-index: 5;
}
.production-page .production-2 .item .left h3 {
    font-size: 64px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    padding-bottom: 90px;
    position: relative;
}
.production-page .production-2 .item .left h3::after {
    content: attr(data-shadow);
    position: absolute;
    left: 0;
    bottom: 15px;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    font-size: 88px;
    line-height: 1;
    font-weight: bold;
}
.production-page .production-2 .item .left h4 {
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
    font-weight: bold;
}
.production-page .production-2 .item .left p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin-top: 15px;
}
.production-page .production-2 .item .left .more {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 45px;
}
.production-page .production-2 .item .right {
    width: 50%;
    text-align: right;
    position: relative;
    z-index: 2;
}
.production-page .production-2 .item .right .e-img {
    padding: 0 27px 30px 0;
    position: relative;
    display: inline-block;
}
.production-page .production-2 .item .right .e-img .box {
    position: relative;
}
.production-page .production-2 .item .right .e-img .box::after {
    position: absolute;
    content: "";
    width: 95%;
    height: 95%;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
    right: -27px;
    bottom: -30px;
}
.production-page .production-2 .tit {
    text-align: center;
    font-size: 44px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    margin: 88px 0 95px;
}
.production-page .production-2 .item.item2 {
    -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;
}
.production-page .production-2 .item.item2 .left {
    padding-left: 110px;
}
.production-page .production-2 .item.item2 .left h4 {
    line-height: 1.4;
}
.production-page .production-2 .item.item2 .right {
    text-align: left;
}
.production-page .production-2 .item.item2 .right .e-img {
    padding: 25px 22px 0 0;
}
.production-page .production-2 .item.item2 .right .e-img .box::after {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: none;
    right: -22px;
    bottom: auto;
    top: -25px;
}
.production-page .production-3 {
    padding: 105px 0 150px;
}
.production-page .production-3 .container {
    max-width: 1360px;
}
.production-page .production-3 .container h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1;
    color: #000;
    font-weight: bold;
    margin-bottom: 53px;
}
.production-page .production-3 .container .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-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.production-page .production-3 .container .box .left {
    width: 44%;
    padding-right: 50px;
}
.production-page .production-3 .container .box .left p {
    font-size: 16px;
    line-height: 1.8;
    color: #202020;
    max-width: 475px;
    margin-bottom: 35px;
    letter-spacing: 4px;
}
.production-page .production-3 .container .box .right {
    width: 56%;
}
.production-page .production-3 .container .box .right .swiper-slide a {
    display: block;
    overflow: hidden;
}
.production-page .production-3 .container .box .right .swiper-slide a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.production-page .production-3 .container .box .right .swiper-slide a img {
    width: 100%;
}
.production-page .production-4 {
    background: #040404;
}
.production-page .production-4 h2 {
    width: 25%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 80px;
    font-size: 48px;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}
.production-page .production-4 .honorBox {
    position: relative;
}
.production-page .production-4 .honorBox .swiper-slide {
    background: url(../images/honor-bg.png) no-repeat center center;
    background-size: cover;
    padding: 180px 20px 65px;
}
.production-page .production-4 .honorBox .swiper-slide a {
    display: block;
    text-align: center;
}
.production-page .production-4 .honorBox .swiper-slide a:hover img {
    -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
.production-page .production-4 .honorBox .swiper-slide a:hover .see {
    color: #fff;
}
.production-page .production-4 .honorBox .swiper-slide a:hover .see::after {
    width: 70px;
}
.production-page .production-4 .honorBox .swiper-slide a span {
    display: inline-block;
    margin-bottom: 30px;
}
.production-page .production-4 .honorBox .swiper-slide a span img {
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
.production-page .production-4 .honorBox .swiper-slide a p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}
.production-page .production-4 .honorBox .swiper-slide a .see {
    display: inline-block;
    padding-top: 30px;
    margin-top: 40px;
    font-size: 12px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}
.production-page .production-4 .honorBox .swiper-slide a .see::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.production-page .production-4 .honorBox .swiper-slide a .see::after {
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    bottom: -4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.production-page .production-4 .honorBox .swiper-button-prev,
.production-page .production-4 .honorBox .swiper-button-next {
    width: 70px;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.production-page .production-4 .honorBox .swiper-button-prev {
    left: -50px;
}
.production-page .production-4 .honorBox .swiper-button-next {
    right: -50px;
}
.product-page {
    background: #f7f7f8;
}

.product-page .title h1 {
    font-size: 45px;
    line-height: 1;
    color: #000;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.product-page .title p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 1200px;
}
.product-page .product-box {
    margin-top: 30px;
    padding-bottom: 100px;
}
.product-page .product-box .product-list {
    margin-top: 80px;
}
.product-page .product-box .product-list ul {
    margin: -15px;
    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;
}
.product-page .product-box .product-list ul li {
    width: 25%;
    padding: 15px;
    margin-bottom: 60px;
}
.product-page .product-box .product-list ul li .pr {
    height: 100%;
}
.product-page .product-box .product-list ul li a {
    border-radius: 10px;
    padding: 0 0 35px 0;
    background: #fff;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 100%;
}
.product-page .product-box .product-list ul li a:hover {
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

.product-page .product-box .product-list ul li a .p-img {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}
/*.product-page .product-box .product-list ul li a .p-img img:last-child {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transition: .5s;
}
.product-page .product-box .product-list ul li a .p-img:hover img:last-child {
    opacity: 1;
}*/
.product-page .product-box .product-list ul li a h4 {
    font-size: 24px;
    line-height: 1;
    color: #000;
}
.product-page .product-box .product-list ul li a h5 {
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin-top: 12px;
}
.product-page .product-box .product-list ul li a p {
    text-align: center;
    font-size: 20px;
    color: #000;
    margin-bottom: 30px;
    font-weight: 700;
}


/*.product-page .product-box .product-list ul li > div i {
  position: absolute;
  z-index: 1;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}*/
.product-page .product-box .product-list ul li > div i.ie0 {
    width: 2px;
    top: 0;
    left: 0;
}
.product-page .product-box .product-list ul li > div i.ie2 {
    width: 2px;
    bottom: 0;
    right: 0;
}
.product-page .product-box .product-list ul li > div i.ie3 {
    height: 2px;
    top: 0;
    right: 0;
}
.product-page .product-box .product-list ul li > div i.ie4 {
    height: 2px;
    bottom: 0;
    left: 0;
}
.product-page .product-box .product-list ul li > div:hover i.ie0 {
    height: 100%;
    bottom: 0;
    top: auto;
}
.product-page .product-box .product-list ul li > div:hover i.ie2 {
    height: 100%;
    top: 0;
}
.product-page .product-box .product-list ul li > div:hover i.ie3 {
    width: 100%;
    left: 0;
}
.product-page .product-box .product-list ul li > div:hover i.ie4 {
    width: 100%;
    right: 0;
    left: auto;
}


.product-page .product-box .product-list .m-page {
    margin-top: 60px;
}


.product-page .product-box .cate-list{
    margin-top: 70px;
}
.product-page .product-box .cate-list ul{
    margin: -15px -25px;
}
.product-page .product-box .cate-list ul li{
    padding: 15px 25px;
}

.product-page .product-box .cate-list ul li > div{
    background-color: white;
    display: flex;
    flex-wrap: wrap;
}

.product-page .product-box .cate-list ul li .img{
    width: 40%;
}

.product-page .product-box .cate-list ul li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page .product-box .cate-list ul li .content{
    width: 60%;
    padding: 30px;
    margin: auto 0;
}

.product-page .product-box .cate-list ul li .content a.moreBtn{
    color: #2451a0;
    border-bottom: 1px solid currentColor;
}

@media screen and (max-width: 1000px) {
    .product-page .product-box .cate-list ul li{
        width: 100%!important;
    }
}

@media screen and (max-width: 500px) {
    .product-page .product-box .cate-list ul li .img{
        width: 100%;
    }
    .product-page .product-box .cate-list ul li .content{
        width: 100%;
    }
}


.research-page .research-1 {
    padding: 50px 0 27px;
    background: url(../images/research-1-bg.jpg) no-repeat center center;
}
.research-page .research-1 .text {
    padding: 135px 0 105px;
}
.research-page .research-1 .text h2 {
    font-size: 36px;
    line-height: 1;
    color: #070707;
    font-weight: bold;
}
.research-page .research-1 .text p {
    font-size: 14px;
    line-height: 2;
    color: #070707;
    max-width: 575px;
    margin-top: 30px;
}
.research-page .research-1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.research-page .research-1 ul li {
    font-size: 16px;
    line-height: 1;
    color: #2e2e2e;
    padding: 12px 68px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.research-page .research-1 ul li:hover {
    background: #000000;
    color: #fff;
}
.research-page .research-2 {
    padding: 0 0 145px;
}
.research-page .research-2 .research-list .item {
    padding-top: 40px;
}
.research-page .research-2 .research-list .item:last-child {
    margin-bottom: 0;
}
.research-page .research-2 .research-list .item h3 {
    font-size: 28px;
    line-height: 1;
    color: #0a0a0a;
    font-weight: bold;
    padding-top: 28px;
    position: relative;
    margin-bottom: 15px;
}
.research-page .research-2 .research-list .item h3::after {
    position: absolute;
    content: "";
    width: 83px;
    height: 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.8);
    left: 0;
    top: 0;
}
.research-page .research-2 .research-list .item p {
    font-size: 16px;
    line-height: 1.8;
    color: #0a0a0a;
}
.research-page .research-2 .research-list .item .researchBox {
    margin-top: 50px;
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a {
    display: block;
    overflow: hidden;
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.research-page .research-2 .research-list .item .researchBox .swiper-slide a img {
    width: 100%;
}
.research-page .research-2 .research-list .item .researchBox ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.research-page .research-2 .research-list .item .researchBox ul li {
    width: 50%;
    padding: 0 15px;
    margin-bottom: 40px;
}
.research-page .research-2 .research-list .item .researchBox ul li a {
    display: block;
    overflow: hidden;
}
.research-page .research-2 .research-list .item .researchBox ul li a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.research-page .research-2 .research-list .item .researchBox ul li a img {
    width: 100%;
}
.research-page .research-2 .research-list .item .researchBox ul li .content {
    margin-top: 25px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content h4 {
    padding-left: 10px;
    border-left: 2px solid #000;
    font-size: 18px;
    line-height: 1;
    color: #0a0a0a;
    margin-bottom: 10px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content h4:nth-child(3) {
    display: none;
}
.research-page .research-2 .research-list .item .researchBox ul li .content p {
    font-size: 16px;
    line-height: 1.5;
    color: #0a0a0a;
    padding-left: 10px;
}
.research-page .research-2 .research-list .item .researchBox ul li .content p:nth-child(4) {
    display: none;
}
.research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
    width: 33.333%;
}
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
    width: 33.3333%;
}
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(1),
.research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(2) {
    width: 50%;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
    width: 33.3333%;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a {
    display: block;
    width: 33.3333%;
    padding: 0 15px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content {
    width: 66.6666%;
    padding: 0 15px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p {
    line-height: 1.8;
    margin-bottom: 40px;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p:last-child {
    margin-bottom: 0;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content h4:nth-child(3) {
    display: block;
}
.research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content p:nth-child(4) {
    display: block;
}
.research-page.research2-page .research-1 {
    background: url(../images/research2-1-bg.jpg) no-repeat center center;
}
.research-page.research2-page .research-1 ul li {
    width: 19.5%;
    padding: 12px 0;
    text-align: center;
}
.sustainability-page .sustainability-box h2.title {
    font-size: 48px;
    line-height: 1;
    color: #000000;
    font-weight: bold;
}
.sustainability-page .sustainability-box span.tit {
    display: inline-block;
    position: relative;
    font-size: 16px;
    line-height: 1;
    color: #1c1c1c;
    padding-right: 24px;
}
.sustainability-page .sustainability-box span.tit::after {
    position: absolute;
    content: "";
    width: 82px;
    height: 2px;
    border-bottom: 1px solid #1c1c1c;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.sustainability-page .sustainability-box p {
    font-size: 16px;
    color: #1c1c1c;
}
.sustainability-page .sustainability-box h4 {
    font-size: 24px;
    line-height: 1;
    color: #000000;
}
.sustainability-page .sustainability-box .left .content h2 {
    margin: 30px 0;
}
.sustainability-page .sustainability-box .left .content h4 {
    margin-bottom: 30px;
}
.sustainability-page .sustainability-box .left .content p {
    line-height: 2;
}
.sustainability-page .sustainability-box .sustainability-1 {
    padding: 35px 0 150px;
}
.sustainability-page .sustainability-box .sustainability-1 .container {
    max-width: 1365px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box {
    margin-bottom: 35px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text {
    width: 52%;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text h2 {
    position: relative;
    padding-bottom: 27px;
    display: inline-block;
    border-bottom: 1px solid #439836;
    margin-bottom: 30px;
    letter-spacing: 4px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text h4 {
    margin-bottom: 23px;
}
.sustainability-page .sustainability-box .sustainability-1 .container .text-box .text p {
    line-height: 1.5;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -10px;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li {
    width: 14.285%;
    padding: 10px;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box {
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box:hover .img2 {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    opacity: 0;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box:hover .img {
    opacity: 1;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    transform: rotateY(0);
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li .box .img {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(1) {
    position: absolute;
    right: 28.57%;
    bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(2) {
    position: absolute;
    right: 14.285%;
    bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(3) {
    position: absolute;
    right: 0;
    bottom: 100%;
}
.sustainability-page .sustainability-box .sustainability-2 {
    padding: 90px 0 160px;
    background: url(../images/sustainability-2-bg.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
}
.sustainability-page .sustainability-box .sustainability-2 h3 {
    font-size: 48px;
    line-height: 1;
    color: #fff;
    margin-bottom: 70px;
}
.sustainability-page .sustainability-box .sustainability-3 {
    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;
    background: url(../images/sustainability-3-bg.jpg) no-repeat left center;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-3 .bg {
    width: 50%;
}
.sustainability-page .sustainability-box .sustainability-3 .img {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    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;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .left {
    padding-left: 45px;
}
.sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
    max-width: 605px;
}
.sustainability-page .sustainability-box .sustainability-4 {
    padding: 65px 0 605px;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-4 .box {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}
.sustainability-page .sustainability-box .sustainability-4 .box .img1 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/sustainability-4.png) no-repeat center center;
    background-size: cover;
    z-index: 10;
}
.sustainability-page .sustainability-box .sustainability-4 .box .img2 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../images/beijing.jpg) no-repeat center center;
    background-size: cover;
    z-index: 1;
}
.sustainability-page .sustainability-box .sustainability-4 .container {
    position: relative;
    z-index: 20;
}
.sustainability-page .sustainability-box .sustainability-4 .content {
    text-align: center;
}
.sustainability-page .sustainability-box .sustainability-4 .content h2 {
    color: #fff;
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 30px;
}
.sustainability-page .sustainability-box .sustainability-4 .content h2::after {
    position: absolute;
    content: "";
    width: 380px;
    height: 2px;
    border-bottom: 1px solid #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
}
.sustainability-page .sustainability-box .sustainability-4 .content p {
    color: #fff;
    max-width: 980px;
    line-height: 2;
    margin: 0 auto;
    letter-spacing: 1px;
}
.sustainability-page .sustainability-box .sustainability-4 .content h3 {
    font-size: 52px;
    line-height: 1;
    color: #ffffff;
    margin-top: 30px;
    letter-spacing: 3px;
}
.sustainability-page .sustainability-box .sustainability-5 {
    padding: 175px 0 150px;
}
.sustainability-page .sustainability-box .sustainability-5 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left {
    width: 31.5%;
    padding: 0 40px;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 15px;
    font-size: 22px;
    line-height: 1;
    color: #1c1c1c;
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li:hover img {
    -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
    transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
.sustainability-page .sustainability-box .sustainability-5 .container .left ul li img {
    margin-right: 10px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right {
    width: 68.5%;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li {
    padding: 8px;
    border-radius: 100%;
    margin-left: -80px;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li::after {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: "";
    border: 1px solid rgba(98, 168, 54, 0.3);
    top: 0;
    left: 0;
    border-radius: 100%;
    -webkit-animation: yz 3.5s linear infinite;
    -moz-animation: yz 3.5s linear infinite;
    animation: yz 3.5s linear infinite;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:first-child {
    margin-left: 0;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:nth-child(2)::after {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}
.sustainability-page .sustainability-box .sustainability-5 .container .right ul li:nth-child(3)::after {
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    animation-delay: 2s;
}
.sustainability-page .sustainability-box .sustainability-6 {
    background: #e9e9e9;
    padding-top: 100px;
    position: relative;
}
.sustainability-page .sustainability-box .sustainability-6 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left {
    width: 28%;
    padding-left: 40px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left span {
    color: #439836;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left h2 {
    color: #439836;
}
.sustainability-page .sustainability-box .sustainability-6 .container .left h4 {
    letter-spacing: 3px;
    margin-bottom: 0;
}
.sustainability-page .sustainability-box .sustainability-6 .container .centre {
    width: 40%;
    text-align: center;
}
.sustainability-page .sustainability-box .sustainability-6 .container .right {
    width: 28%;
    padding: 0 30px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .right p {
    line-height: 2.2;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird {
    position: absolute;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird1 {
    left: 10%;
    top: -44px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird2 {
    left: 24%;
    top: 90px;
}
.sustainability-page .sustainability-box .sustainability-6 .container .bird3 {
    left: 73%;
    top: -54px;
}
.r-d-page h2 {
    font-size: 48px;
    line-height: 1;
    color: #202020;
}
.r-d-page h3 {
    font-size: 56px;
    line-height: 1;
    color: #202020;
}
.r-d-page p {
    font-size: 16px;
    color: #202020;
}
.r-d-page .r-d-1 {
    text-align: center;
    padding: 50px 0 80px;
}
.r-d-page .r-d-1 .top h2 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 685px;
    margin: 0 auto;
}
.r-d-page .r-d-1 .top h3 {
    margin-top: 60px;
}
.r-d-page .r-d-1 ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 132px 0;
}
.r-d-page .r-d-1 ul li {
    position: relative;
}
.r-d-page .r-d-1 ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(230, 230, 230, 0.8);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
.r-d-page .r-d-1 ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(230, 230, 230, 0.8);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}
.r-d-page .r-d-1 ul li:nth-child(1) {
    margin-right: -30px;
}
.r-d-page .r-d-1 ul li:nth-child(2) {
    z-index: 2;
}
.r-d-page .r-d-1 ul li:nth-child(3) {
    margin-left: -30px;
}
.r-d-page .r-d-1 .bottom .text h3 {
    margin-bottom: 40px;
}
.r-d-page .r-d-1 .bottom .text p {
    max-width: 740px;
    margin: 0 auto;
    letter-spacing: 2px;
}
.r-d-page .r-d-1 .bottom .img {
    margin: 50px 0;
}
.r-d-page .r-d-1 .bottom .link {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid #8b8b8b;
    color: #202020;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}
.r-d-page .r-d-2 .link {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid #8b8b8b;
    color: #202020;
    font-size: 18px;
    line-height: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
}
.r-d-page .r-d-2 .link:hover {
    border: 1px solid var(--color);
    color: #fff;
}
.r-d-page .r-d-2 .link:hover::after {
    width: 100%;
}
.r-d-page .r-d-1 .bottom .link:hover {
    border: 1px solid var(--color);
    color: #fff;
}
.r-d-page .r-d-1 .bottom .link:hover::after {
    width: 100%;
}
.r-d-page .r-d-1 .bottom .link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    left: 0;
    top: 0;
    z-index: -1;
}
.r-d-page .r-d-2 .link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    background: var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    left: 0;
    top: 0;
    z-index: -1;
}
.r-d-page .r-d-1 .bottom .dwo {
    margin-top: 30px;
    margin-bottom: -60px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.r-d-page .r-d-1 .bottom .dwo img {
    cursor: pointer;
}
.r-d-page .r-d-1 .bottom .dwo img:hover {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}
.r-d-page .r-d-2 {
    text-align: center;
    padding: 110px 0 145px;
    background: url(../images/r-d-1-2-bg.jpg) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.r-d-page .r-d-2 ul {
    margin: 83px 0;
    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;
}
.r-d-page .r-d-2 ul li {
    border-radius: 100%;
    border: 12px solid rgba(255, 255, 255, 0.57);
    width: 280px;
    height: 280px;
    position: relative;
}
.r-d-page .r-d-2 ul li .box {
    background: #292929;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 100%;
    position: relative;
}
.r-d-page .r-d-2 ul li .box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: 100% !important;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
}
.r-d-page .r-d-2 ul li .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100% !important;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-animation: ks 3s infinite;
    -moz-animation: ks 3s infinite;
    animation: ks 3s infinite;
    display: block;
    z-index: -1;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    animation-delay: .4s;
}
.r-d-page .r-d-2 ul li .box h4 {
    font-size: 30.4px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: bold;
}
.r-d-page .r-d-2 ul li:nth-child(1),
.r-d-page .r-d-2 ul li:nth-child(2) {
    margin-right: -60px;
    z-index: 1;
}
.r-d-page .r-d-2 ul li:nth-child(2) .box,
.r-d-page .r-d-2 ul li:nth-child(4) .box {
    background: #494949;
}
.r-d-page .r-d-2 ul li:nth-child(3) {
    z-index: 2;
}
.r-d-page .r-d-2 ul li:nth-child(4),
.r-d-page .r-d-2 ul li:nth-child(5) {
    margin-left: -60px;
    z-index: 1;
}
.r-d-page .r-d-2 ul li:nth-child(1) .box,
.r-d-page .r-d-2 ul li:nth-child(5) .box {
    background: rgba(41, 41, 41, 0.5);
}
.r-d-page .r-d-2 ul li:nth-child(5) {
    z-index: 0;
}
.r-d-page .r-d-2 h5 {
    font-size: 30px;
    line-height: 1;
    color: #202020;
    margin-bottom: 30px;
}
.r-d-page .r-d-2 .box {
    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;
    margin-bottom: 65px;
}
.r-d-page .r-d-2 .box h6 {
    width: 30px;
    font-size: 24px;
    line-height: 2;
    color: #000000;
    margin-right: 90px;
}
.r-d-page .r-d-2 h3 {
    margin-bottom: 30px;
}
.r-d-page .r-d-2 p {
    line-height: 1.8;
    color: #202020;
    max-width: 875px;
    letter-spacing: 2px;
    margin: 0 auto;
}
.r-d-page .r-d-2 .dwo {
    margin-top: 30px;
    margin-bottom: -100px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.r-d-page .r-d-2 .dwo img {
    cursor: pointer;
}
.r-d-page .r-d-2 .dwo img:hover {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
}
.r-d-page .r-d-3 {
    padding: 100px 0 250px;
}
.r-d-page .r-d-3 h2 {
    text-align: center;
}
.r-d-page .r-d-3 .box {
    margin-top: 140px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.r-d-page .r-d-3 .box .left {
    width: 50%;
    text-align: right;
}
.r-d-page .r-d-3 .box .right {
    width: 50%;
    padding-left: 70px;
}
.r-d-page .r-d-3 .box .right h6 {
    font-size: 30px;
    line-height: 1;
    color: #202020;
    margin-bottom: 20px;
}
.r-d-page .r-d-3 .box .right p {
    line-height: 1.8;
    max-width: 530px;
    letter-spacing: 1.5px;
}
.r-d-page .rd-3 {
    padding: 180px 0 105px;
}
.r-d-page .rd-3 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.r-d-page .rd-3 .container .ams {
    position: absolute;
    top: -42px;
    left: 50%;
    -webkit-transform: translateX(-60%);
    -moz-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    transform: translateX(-60%);
    z-index: 3;
}
.r-d-page .rd-3 .container .img {
    display: inline-block;
    position: relative;
    padding-bottom: 30px;
}
.r-d-page .rd-3 .container .img::after {
    position: absolute;
    content: "";
    width: 175px;
    height: 2px;
    left: 0;
    bottom: 0;
    border-bottom: 1px solid #a5a5a5;
}
.r-d-page .rd-3 .container .content {
    max-width: 544px;
}
.r-d-page .rd-3 .container .content p {
    line-height: 2;
    letter-spacing: 2px;
}
.r-d-page .rd-3 .container .left {
    width: 50%;
    padding: 0 65px;
}
.r-d-page .rd-3 .container .left h3 {
    margin: 38px 0 25px;
}
.r-d-page .rd-3 .container .right {
    width: 50%;
    padding: 0 60px;
}
.r-d-page .rd-3 .container .right .content {
    margin: 0 0 0 auto;
}
.r-d-page .rd-3 .container .right .content h2 {
    padding-left: 12%;
    margin-bottom: 25px;
}
.r-d-page .rd-3 .container .right .content p {
    padding-left: 12%;
}
.r-d-page .rd-3 .container .right .content .img {
    margin-top: 45px;
    margin-bottom: 10px;
}
.r-d-page .rd-3 .container .bg-1 {
    position: absolute;
    z-index: -1;
    top: -35px;
    left: 44%;
}
.r-d-page .rd-3 .container .bg-2 {
    position: absolute;
    z-index: -1;
    right: 20px;
    top: 60px;
}
@media screen and (max-width: 1605px) {
    .product-banner.inner-banner {
        height: 500px;
        padding-bottom: 180px;
    }
    .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
        max-width: 45%;
    }
    .sustainability-page .sustainability-box .sustainability-3 .img img {
        width: 50%;
    }
}
@media screen and (max-width: 1400px) {
    .product-banner.inner-banner {
        height: 400px;
        padding-bottom: 130px;
    }
    .production-page .production-1 .production-box .content-box .centre ul {
        padding: 0 28px;
    }
    .production-page .production-1 .production-box .content-box .right {
        padding-left: 30px;
    }
    .production-page .production-1 .production-box .content-box .left {
        padding-right: 30px;
        position: relative;
    }
    .research-page .research-1 ul li {
        padding: 12px 50px;
    }
    .sustainability-page .sustainability-box .sustainability-5 .container .left ul li {
        font-size: 14px;
    }

    .prodet-page .prodet-box .prodet-1 .container .right .text-box h1{
        font-size: 30px;
    }
}
@media screen and (max-width: 1230px) {
    .about-page .about-1 .about-box .right p {
        font-size: 14px;
    }
    .about-page .about-3 .bottom .left h2 {
        font-size: 40px;
    }
    .about-page .about-4 .container .right h2 {
        font-size: 120px;
    }
    .about-page .about-4 .container .left .content .ball .box .text3 {
        width: 140px;
        height: 140px;
        line-height: 140px;
    }
    .about-page .about-4 .container .left .content .ball .box .text5 {
        width: 150px;
        height: 150px;
        line-height: 150px;
    }
    .about-page .about-4 .container .left .content .ball .box .text4 {
        width: 120px;
        height: 120px;
        font-size: 15px;
        line-height: 120px;
    }
    .about-page .about-4 .container .left .content .ball .box .text2 {
        width: 110px;
        height: 110px;
        line-height: 110px;
    }
    .about-page .about-4 .container .left .content .ball .box .text1 {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }

    .about-page .about-2 ul li h4{
        font-size: 45px;
    }
    .about-page .about-2 ul li h4 span{
        font-size: 18px;
    }

    .about-page .about-3 .top .right ul li{
        font-size: 24px;
    }

    .about-page .about-3 .bottom .left h2 {
        font-size: 30px;
    }

    .about-page .about-6 h2{
        font-size: 30px;
    }

    .about-page .about-7 .top h2{
        font-size: 30px;
    }

    .inner-page .about-link .a-box h3 {
        font-size: 18px;
    }
    .contact-page .contact-1 .contact-box {
        padding: 63px 75px 130px;
    }
    .product-page .product-box .product-list ul li a h4 {
        font-size: 20px;
    }
    .product-page .product-box .product-list ul li a h5 {
        font-size: 16px;
    }
    .production-page .production-1 .production-box .content-box .box {
        width: 100px;
        height: 100px;
        font-size: 14px;
    }
    .research-page .research-1 ul li {
        padding: 12px 33px;
        font-size: 14px;
    }
    .research-page .research-2 .research-list .item .researchBox ul li .content p {
        line-height: 1.5;
    }
    .sustainability-page .sustainability-box h4 {
        font-size: 20px;
    }
    .sustainability-page .sustainability-box h4 {
        font-size: 18px;
    }
    .sustainability-page .sustainability-box p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1000px) {
    .inner-banner{
        display: none;
    }
    .about-page .about-1 .about-box .left {
        width: 100%;
    }
    .about-page .about-1 .about-box .right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .about-page .about-1 .about-box .right h2 {
        font-size: 30px;
    }
    .about-page .about-1 .about-box .right .h3{
        font-size: 24px;
    }
    .about-page .about-2 ul li h4 {
        font-size: 30px;
    }
    .about-page .about-3 .bottom .left h2 {
        font-size: 24px;
    }
    .about-page .about-3 .bottom .left p {
        font-size: 14px;
    }
    .about-page .about-3 .top .right ul li {
        font-size: 18px;
    }
    .about-page .about-4 .container .right p {
        font-size: 14px;
    }
    .about-page .about-4 .container .left .content .ball .box .text3 {
        display: none;
    }
    .about-page .about-4 .container .left .content .ball .box .text2 {
        display: none;
    }
    .about-page .about-4 .container .left .content .ball .box .text1 {
        display: none;
    }
    .about-page .about-4 .container .left .content .ball .box .text4 {
        display: none;
    }
    .about-page .about-4 .container .left .content .ball .box .text5 {
        display: none;
    }
    .about-page .about-5 ul li p {
        font-size: 14px;
    }
    .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    .about-page .about-7 .map-box .map .item li {
        width: 40px;
        height: 40px;
    }
    .about-page .about-7 .map-box .map .item:nth-child(2) ul {
        max-width: 126px;
    }
    .about-page .about-7 .map-box .map .item:nth-child(2) {
        top: 11%;
    }
    .inner-page .more {
        font-size: 14px;
        line-height: 28px;
        padding: 12px 30px;
    }
    .inner-page .more img {
        display: none;
    }
    .inner-page .about-link .a-box a {
        padding: 12px 25px;
    }
    .inner-page .about-link .a-box h3 {
        font-size: 16px;
        line-height: 30px;
    }
    .product-banner.inner-banner {
        height: 260px;
        padding-bottom: 100px;
    }
    .inner-page .sidebar-box .sidebar-right {
        display: none;
    }
    .inner-page .sidebar-box .sidebar-left {
        width: 100%;
    }
    .inner-page .m-page span,
    .inner-page .m-page a {
        margin-bottom: 10px;
    }
    .newdet-page .news-content .title h1 {
        font-size: 24px;
    }
    .prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box a {
        padding: 12px 20px;
        font-size: 14px;
    }
    .prodet-page .prodet-box .prodet-1 .container .right .text-box .btn-box .inquiry {
        padding: 12px 20px;
    }
    .prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
        font-size: 24px;
    }
    .product-page .product-box .product-list ul li {
        width: 50%;
    }
    .product-page .title p {
        font-size: 14px;
    }
    .production-page .production-1 .production-box .content-box .box {
        width: 70px;
        height: 70px;
    }
    .r-d-page .r-d-2 h5 {
        font-size: 24px;
    }
    .r-d-page p {
        font-size: 14px;
    }
    .r-d-page .rd-3 .container .ams {
        display: none;
    }
    .research-page .research-1 ul li {
        padding: 12px 5px;
    }
    .research-page .research-2 .research-list .item p {
        font-size: 14px;
    }
    .research-page .research-2 .research-list .item h3 {
        font-size: 24px;
    }
    .research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
        width: 50%;
    }
    .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
        width: 50%;
    }
    .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
        width: 50%;
    }
    .research-page .research-2 .research-list .item .researchBox ul li .content p {
        font-size: 14px;
    }
    .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) a {
        width: 100%;
    }
    .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li:nth-child(4) .content {
        width: 100%;
    }
    .sustainability-page .sustainability-box .sustainability-6 .container .bird {
        display: none;
    }
    .sustainability-page .sustainability-box .sustainability-5 .container .left {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }
    .sustainability-page .sustainability-box .sustainability-5 .container .right {
        width: 100%;
    }
    .sustainability-page .sustainability-box .sustainability-6 .container .left {
        width: 28%;
        padding-left: 0;
    }

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


    .prodet-page .prodet-box .prodet-1 .container .right .text-box h1{
        font-size: 24px;
    }
}
@media screen and (max-width: 700px) {
    .about-page .about-2 ul li{
        width: 50%;
        padding: 15px;
    }

    .about-page .about-2 ul li:nth-child(2n)::after{
        display: none;
    }

    .about-page .about-3 .top{
        display: block;
    }

    .about-page .about-3 .top .left{
        width: 100%;
        padding: 0;
    }

    .about-page .about-3 .top .left img{
        margin: 0;
    }

    .about-page .about-3 .top .right{
        width: 100%;
        display: block;
    }

    .about-page .about-3 .bottom{
        padding-top: 60px;
        padding-bottom: 60px;
        display: block;
    }

    .about-page .about-4 .container .left {
        display: none;
    }
    .about-page .about-4 .container .right {
        width: 100%;
    }
    .about-page .about-2 ul li p {
        font-size: 14px;
    }

    .about-page .about-3 .bottom .left {
        width: 100%;
        padding-left: 0;
    }
    .about-page .about-3 .bottom .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .category-page .category-box .category-list .item-box .item.item-img2 {
        display: none;
    }
    .category-page .category-box .category-list .item-box .item {
        width: 50%;
    }
    .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
        left: 50%;
    }
    .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
        left: auto;
        right: 50%;
    }
    .category-page .category-box .category-list:nth-child(4n-1) .item-box .item-text {
        left: 0;
    }
    .category-page .category-box .category-list:nth-child(4n-1) .item-box .item-img1 {
        right: 0;
    }
    .category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
        left: 50%;
    }
    .category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
        left: auto;
        right: 50%;
    }
    .inner-page .about-link .a-box a {
        display: none;
    }
    .contact-page .contact-1 .contact-box .contact-content .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .contact-1 .contact-box .contact-content .right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .newdet-page .news-content .m-link .next .right h4 {
        font-size: 18px;
    }

    .prodet-page .prodet-box .prodet-1 .container .right .text-box h3.tit {
        font-size: 20px;
    }

    .prodet-page .prodet-box .prodet-1 .container .right .text-box p {
        font-size: 14px;
    }
    .production-page .production-1 .production-box .content-box {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .production-page .production-1 .production-box .content-box .left {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .production-page .production-1 .production-box .content-box .right {
        padding-left: 0;
        margin-top: 20px;
    }
    .production-page .production-2 .item .left {
        width: 100%;
    }
    .production-page .production-2 .item .right {
        width: 100%;
        margin-top: 20px;
    }
    .production-page .production-2 .item.item2 .left {
        padding-left: 0;
    }
    .production-page .production-3 .container .box .left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .production-page .production-3 .container .box .right {
        width: 100%;
    }
    .r-d-page .r-d-2 ul li {
        width: 230px;
        height: 230px;
    }
    .r-d-page .r-d-2 h5 {
        font-size: 20px;
    }
    .r-d-page .r-d-3 .box .left {
        width: 100%;
    }
    .r-d-page .r-d-3 .box .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .r-d-page .r-d-2 .box {
        width: 100%;
    }
    .research-page .research-1 ul {
        display: none;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container .text-box .text {
        width: 100%;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(1) {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(2) {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container ul li:nth-child(3) {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container ul li {
        width: 20%;
    }
    .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box {
        position: relative;
    }
    .sustainability-page .sustainability-box .sustainability-3 .img {
        width: 100%;
    }
    .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .content {
        max-width: 100%;
        padding: 30px 0;
    }
    .sustainability-page .sustainability-box .sustainability-3 .sustainability-3-box .left {
        padding-left: 0;
    }
    .sustainability-page .sustainability-box .sustainability-6 .container .left {
        width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }
    .sustainability-page .sustainability-box .sustainability-6 .container .right {
        display: none;
    }
    .sustainability-page .sustainability-box .sustainability-6 .container {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }


    .prodet-page .prodet-box .prodet-2 h3 span{
        font-size: 14px;
        padding: 10px;
    }
}
@media screen and (max-width: 500px) {
    .category-page .category-box .category-list:nth-child(1) .item-box .item-img1 img {
        position: static;
        width: 185px!important;
    }
    .about-page .about-2 ul li p {
        font-size: 14px;
        line-height: 28px;
    }
    .about-page .about-3 .top .right ul li {
        font-size: 14px;
        line-height: 2;
    }

    .about-page .about-5 ul li {
        width: 100%;
        margin-bottom: 15px;
    }
    .about-page .about-6 .historyBox .swiper-slide::after {
        display: none;
    }
    .about-page .about-6 .historyBox .swiper-slide p {
        font-size: 15px;
    }
    .about-page .about-7 .map-box .map .item li {
        display: none;
    }
    .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
        display: block;
    }
    .about-page .about-7 .map-box .map .item h5 {
        display: none;
    }
    .about-page .about-7 .map-box .map .item:nth-child(1) ul li:nth-child(1) {
        width: 30px;
        height: 30px;
    }
    .about-page .about-7 .top .txt {
        padding: 0 0px 20px;
    }
    .product-banner.inner-banner {
        height: 140px;
        padding-bottom: 50px;
    }
    .category-page .category-box .category-list .item-box .item {
        width: 100%;
    }
    .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-text {
        left: 0%;
    }
    .category-page .category-box .category-list:nth-child(4n-2) .item-box .item-img1 {
        left: auto;
        right: 0%;
    }
    .category-page .category-box .category-list:nth-child(4n) .item-box .item-text {
        left: 0%;
    }
    .category-page .category-box .category-list:nth-child(4n) .item-box .item-img1 {
        left: auto;
        right: 0%;
    }
    .category-page .category-box .category-list .item-box .item-text {
        padding: 25px 15px;
    }
    .contact-page .contact-1 .contact-box {
        padding: 63px 20px 130px;
    }
    .contact-page .contact-1 .contact-box .contact-content .right form input[type="submit"] {
        font-size: 14px;
        padding: 18px 56px 18px 125px;
    }
    .news-page .news-list ul li:nth-child(1) .right h4 {
        font-size: 20px;
        line-height: 36px;
    }
    .news-page .news-list ul li:nth-child(1) .left a span {
        font-size: 14px;
    }
    .news-page .news-list ul li .left {
        width: 100%;
    }
    .news-page .news-list ul li .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .news-page .news-list ul li .right h4 {
        font-size: 18px;
    }
    .newdet-page .news-content .m-link .next .left {
        width: 100%;
    }
    .newdet-page .news-content .m-link .next .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .product-page .product-box .product-list ul li {
        width: 100%;
    }
    .production-page .production-4 h2 {
        width: 35%;
    }
    .production-page .production-1 .production-box .content-box .centre ul {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .production-page .production-1 .production-box .content-box .centre ul li {
        margin-bottom: 10px;
    }
    .r-d-page .rd-3 .container .left {
        width: 100%;
        padding: 0 ;
    }
    .r-d-page .rd-3 .container .right {
        width: 100%;
        padding: 0 ;
    }
    .r-d-page .rd-3 .container .right .content p {
        padding-left: 0%;
        margin-top: 30px;
    }
    .research-page .research-2 .research-list .item:nth-child(1) .researchBox ul li {
        width: 100%;
    }
    .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(1),
    .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li:nth-child(2) {
        width: 100%;
    }
    .research-page .research-2 .research-list .item:nth-child(2) .researchBox ul li {
        width: 100%;
    }
    .research-page .research-2 .research-list .item:nth-child(3) .researchBox ul li {
        width: 100%;
    }
    .sustainability-page .sustainability-box .sustainability-1 .container ul li {
        width: 33.333%;
    }
}
/*.about-7{
  padding:65px 0 38px;
  background: url(../images/about7-map_bg.jpg) no-repeat center;
  background-repeat: cover;
  text-align: center;
}
.about-7 h2{
  color: #fff;
  font-size: 45px;
  font-weight: bold;
}
.about-7 p.intro{
  margin: 14px 0 20px;
  color: #cbcbcb;
  font-size: 16px;
}
.about-7 h3{
  display: inline-block;
  font-size: 26px;
  color: #fff;
  padding-left: 50px;
  position: relative;
  background: url(../images/about7-ico.png) no-repeat left 27px;
}
.about-7 h3 em{
  font-size: 48px;
  font-weight: bold;
}
.about-7 h3:after{
  content:'';
  position: absolute;
  bottom: -12px;
  left: 0;
  width:120%;
  margin-left: -10%;
  background: #717171;
  height: 1px;
}
.about-7 .the_map{
  margin-top:56px;
}*/
@media screen and (max-width: 500px) {
    .about-page .about-6 .historyBox .swiper-slide,
    .about-page .about-6 .historyBox .swiper-container,
    .r-d-page .r-d-2 .box img {
        height: auto!important;
    }
    .r-d-page .r-d-2 .box img {
        width: auto!important;
    }
    .r-d-page .r-d-2 .box {
        display: block;
    }
    .r-d-page .r-d-2 .box h6 {
        width: 100%;
        font-size: 20px;
    }
    .sustainability-page .sustainability-box p {
        font-size: 12px;
    }
}
/*other*/
.factory-page .navList {
    margin-top: 10px;
}
.factory-page .navList ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.factory-page .navList ul li {
    font-weight: 300;
    font-size: 24px;
    color: #373330;
    width: auto;
    text-transform: capitalize;
    display: inline-block;
    margin: 0 80px;
}
.factory-page .navList ul li a {
    display: block;
    padding: 0 30px;
    position: relative;
    font-size: 18px;
    transition: .5s;
}
.factory-page .navList ul li a:after {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    top: 110%;
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.factory-page .navList ul li a:hover:after,
.factory-page .navList ul li a.active:after {
    width: 100%;
}
.factory-page .navList ul.icon li a:after {
    display: none;
}
.factory-page .navList ul.icon li a {
    padding: .5em;
    text-align: center;
    min-width: 160px;
}
.factory-page .navList ul.icon li a i {
    display: block;
    width: 100%;
    margin-bottom: .9em;
}
.factory-page .navList ul.icon li a img {
    display: block;
    margin: 0 auto;
    transition: .5s;
    max-height: 65px;
}
.factory-page .navList ul.icon li a.active {
    background-color: var(--color);
    color: white;
}
.factory-page .navList ul.icon li a.active img {
    filter: brightness(0) invert(1);
}
.factory-page .imgList {
    padding: 60px 0 120px;
}
.factory-page .imgList .list ul {
    margin: -10px;
}
.factory-page .imgList .list ul li {
    padding: 10px;
}
.factory-page .imgList .list ul li a {
    display: block;
    position: relative;
}
.factory-page .imgList .list ul li a h6 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}
.factory-page .imgList .list ul li a img {
    display: block;
    width: 100%;
}
.factory-page .imgList .list ul li a:hover h6 {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.service-page .service-1 span.tag {
    font-weight: 500;
    font-size: 24px;
    color: var(--color);
    line-height: 1.2;
    display: block;
}
.service-page .service-1 h2 {
    font-weight: bold;
    font-size: 44px;
    color: #191919;
    line-height: 1.2;
    margin: 15px 0;
}
.service-page .service-1 .text {
    font-weight: 300;
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
    margin-bottom: 60px;
}
.service-page .service-1 .ui.container > img {
    width: 100%;
}
.service-page .service-1 .list {
    margin-top: 75px;
}
.service-page .service-1 .list ul {
    margin: -20px;
}
.service-page .service-1 .list ul li {
    padding: 20px;
}
.service-page .service-1 .list ul li .box {
    -o-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.07);
    border-bottom: 4px solid var(--color);
}
.service-page .service-1 .list ul li .box a.img-box {
    display: block;
}
.service-page .service-1 .list ul li .box a.img-box img {
    width: 100%;
}
.service-page .service-1 .list ul li .box .content {
    padding: 25px 15px 10px;
}
.service-page .service-1 .list ul li .box .content h4 {
    font-weight: 600;
    font-size: 24px;
    color: #191919;
    display: block;
    line-height: 1.2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    min-height: 2.4em;
}
.service-page .service-1 .list ul li .box .content h4:hover {
    color: var(--color);
}
.service-page .service-1 .list ul li .box .content p {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: #191919;
    margin: 10px 0 30px;
}
.service-page .service-1 .list ul li .box .content a.more {
    display: inline-block;
}
.service-page .service-2 {
    padding: 80px 0 70px;
    text-align: center;
    background: #fbfbfb;
}
.service-page .service-2 .list {
    text-align: left;
}
.service-page .service-2 .list ul {
    counter-reset: number;
}
.service-page .service-2 .list ul li .left {
    vertical-align: middle;
    padding-right: 2%;
    position: relative;
}
.service-page .service-2 .list ul li .left:before {
    content: '0' counter(number);
    counter-increment: number;
    font-weight: 400;
    color: #cdcdcd;
    display: block;
    line-height: 1;
    font-size: 20px;
}
.service-page .service-2 .list ul li .left h4,
.service-page .service-new .box ul h4 {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: var(--color);
    margin: 10px 0 25px;
    display: block;
}
.service-page .service-2 .list ul li .left p,
.service-page .service-new .box ul p {
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
    max-width: 600px;
}
.service-page .service-2 .list ul li .left:after {
    content: '';
    width: 15%;
    height: 1px;
    background: var(--color);
    margin-top: 15px;
    display: block;
}
.service-page .service-2 .list ul li .left div.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    border-radius: 3px;
    background: var(--color);
    color: white;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-2 .list ul li .left div.btn:hover {
    background: #222;
}
.service-page div.formBox {
    padding: 35px 60px;
    display: inline-block;
    width: 100%;
    background: #f8f8f8;
    /*-moz-box-shadow: 0 0 10px rgba(0,0,0,.1);
-o-box-shadow: 0 0 10px rgba(0,0,0,.1);
box-shadow: 0 0 10px rgba(0,0,0,.1);*/
}
.service-page div.formBox h4 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}
.service-page div.formBox ul {
    margin: -10px;
}
.service-page div.formBox ul li {
    width: 50%;
    float: left;
    padding: 10px;
}
.service-page div.formBox ul li label {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 5px;
    display: block;
    color: #525252;
}
.service-page div.formBox ul li input {
    width: 100%;
    line-height: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 16px;
    color: black;
    border: 1px solid #e3e3e3;
    background: #fff;
}
.service-page div.formBox ul li:last-child {
    text-align: center;
    width: 100%;
}
.service-page div.formBox ul li input[type="submit"] {
    max-width: 200px;
    margin-left: auto;
    padding: 0 20px;
    height: 50px;
    background: var(--color);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}

.service-page div.formBox ul li .file{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    right: 0;
    top: 0;
    /*background-color: #eee;*/
}
.service-page div.formBox ul li input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.service-page .service-new .box ul {
    margin: -15px;
    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;
}
.service-page .service-new .box ul li {
    padding: 15px;
}
.service-page .service-new .box ul li .box2 {
    padding: 30px;
    background: #fff;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /*border: 1px solid #e3e3e3;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);*/
    /* box-shadow: 0 0 10px rgb(0 0 0 / 10%); */
    height: 100%;
}
.service-page .service-2 .list ul li .right {
    padding-left: 2%;
    vertical-align: middle;
    position: relative;
}
.service-page .service-2 .list ul li .right .img {
    background-size: cover;
    background-position: center center;
    height: 390px;
}
.service-page .service-2 .list ul li:nth-child(even) {
    margin: 80px 0;
}
.service-page .service-2 .list ul li:nth-child(even) .left {
    left: 50%;
    padding-left: 2%;
    padding-right: 0;
}
.service-page .service-2 .list ul li:nth-child(even) .right {
    left: -50%;
    padding-right: 2%;
    padding-left: 0;
}
.service-page .service-2 a.more {
    display: inline-block;
    text-align: center;
    margin-top: 70px;
    font-weight: 300;
    font-size: 24px;
    color: var(--color);
    line-height: 1.2;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.service-page .service-2 a.more i {
    margin-right: 10px;
}
.service-page .service-2 a.more:after {
    content: '';
    width: 95%;
    height: 1px;
    background: var(--color);
    display: block;
    margin-left: auto;
}
.service-page .service-3 {
    padding: 90px 0 150px;
    background-color: #fff;
}
.service-page .service-3 h2 {
    font-weight: bold;
    font-size: 40px;
    color: #191919;
    text-transform: capitalize;
    line-height: 1;
    text-align: center;
}
.service-page .service-3 h2:after {
    content: '';
    display: block;
    margin: 23px auto 0;
    width: 10%;
    height: 4px;
    background: var(--color);
}
.service-page .service-3 .list {
    margin: 65px 0 85px;
}
.service-page .service-3 .list .slide ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.service-page .service-3 .list .slide ul li {
    margin-bottom: 15px;
    width: 48%;
}
.service-page .service-3 .list .slide ul li h6 {
    padding: 12px 0;
    font-size: 20px;
    line-height: 36px;
    /*font-weight: 300;*/
    border-bottom: 2px solid #efefef;
    /*text-transform: uppercase;*/
    padding-right: 30px;
    position: relative;
}
.service-page .service-3 .list .slide ul li h6 i {
    width: 12px;
    height: 12px;
    position: absolute;
    top: 17px;
    right: 10px;
    cursor: pointer;
    cursor: hand;
}
.service-page .service-3 .list .slide ul li h6 i:after,
.service-page .service-3 .list .slide ul li h6 i:before {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color);
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li h6 i:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.service-page .service-3 .list .slide ul li h6 i.active:after {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.service-page .service-3 .list .slide ul li .text {
    font-size: 16px;
    line-height: 30px;
    padding: 15px 0;
    /*font-weight: 300;*/
    color: var(--color);
    display: none;
}
.service-page .service-3 .list .slide ul li:last-child {
    margin-bottom: 0;
}
.service-page .service-3 .content {
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    max-width: 70%;
    display: inline-block;
}
.service-page .service-3 a.more {
    line-height: 50px;
    height: 50px;
    padding: 0 35px;
    /*border-radius: 5px;*/
    background: var(--color);
    /*font-weight: bold;*/
    font-size: 20px;
    color: white;
    display: inline-block;
    float: right;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.service-page .service-3 a.more:hover {
    opacity: .7;
}
.why-page .why-1 {
    padding-top: 0px;
}
.why-page .why-1 .left {
    vertical-align: middle;
}
.why-page .why-1 .left .img {
    height: 360px;
    background-position: center center;
    background-repeat: no-repeat;
    background-position-x: left;
}
.why-page .why-1 .right {
    vertical-align: middle;
}
.why-page .why-1 .right h3 {
    font-weight: bold;
    font-size: 40px;
    line-height: 1.4;
    color: var(--color);
}
.why-page .why-1 .right .content {
    margin-top: 45px;
    font-size: 16px;
    line-height: 30px;
}
.why-page .why-2 {
    padding: 110px 0;
}
.why-page .why-2 ul {
    margin: -20px;
    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;
}
.why-page .why-2 ul li {
    padding: 20px;
}
.why-page .why-2 ul li .box {
    -o-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    box-shadow: 2px 0 9px rgba(0, 0, 0, 0.07);
    padding: 55px 35px 50px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    height: 100%;
}
.why-page .why-2 ul li .box:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, var(--color)), color-stop(100%, #64a5da));
    /* 兼容Safari4-5, chrome1-9 */
    background: -moz-linear-gradient(-45deg, var(--color) 0%, #64a5da 100%);
    /* firefox */
    background: -webkit-linear-gradient(45deg, var(--color) 0%, #64a5da 100%);
    /* chrome */
    /* opera */
    /* ie */
    background: -webkit-gradient(linear, -45deg, from(var(--color)), to(#64a5da));
    background: -webkit-linear-gradient(-45deg, var(--color), #64a5da);
    background: -moz-linear-gradient(-45deg, var(--color), #64a5da);
    background: linear-gradient(to -45deg, var(--color), #64a5da);
    /* firefox */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da',GradientType=1)";
    /* 兼容IE8~IE9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--color)', endColorstr='#64a5da', GradientType=1);
    /* 兼容IE5~IE9 */
    z-index: -1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    opacity: 0;
    background: var(--color);
}
.why-page .why-2 ul li .box i {
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 67px;
}
.why-page .why-2 ul li .box h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin: 30px 0 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.why-page .why-2 ul li .box p {
    font-size: 16px;
    /*font-weight: 300;*/
    line-height: 1.8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.why-page .why-2 ul li .box:hover:after {
    opacity: 1;
}
.why-page .why-2 ul li .box:hover i {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.why-page .why-2 ul li .box:hover h4,
.why-page .why-2 ul li .box:hover p {
    color: white;
}
.why-page .why-3 {
    background: #fff;
    padding: 0px 0 100px;
}
.why-page .why-3 .left {
    width: 66%;
    vertical-align: middle;
    position: relative;
}
.why-page .why-3 .left ul {
    margin: -7px;
}
.why-page .why-3 .left ul li {
    padding: 7px;
}
.why-page .why-3 .left ul li a.img-box {
    display: block;
}
.why-page .why-3 .left ul li a.img-box img {
    display: block;
    width: 100%;
}
.why-page .why-3 .right {
    width: 34%;
    vertical-align: middle;
    position: relative;
    padding-left: 4%;
}
.why-page .why-3 .right h3 {
    font-weight: bold;
    font-size: 30px;
    color: #1b1b1b;
    line-height: 1.2;
    text-transform: capitalize;
}
.why-page .why-3 .right .text {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0 20px;
}
.why-page .why-3 .right a.more {
    line-height: 35px;
    height: 35px;
    padding: 0 17px;
    border-radius: 17px;
    background: var(--color);
    color: white;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    text-transform: capitalize;
}
.why-page .why-3 .right a.more:hover {
    opacity: .7;
}
.why-page .why-3 .box {
    margin-top: 95px;
}
.why-page .why-3 .box:first-child {
    margin-top: 0;
}
.why-page .why-3 .box:nth-child(even) .left {
    left: 33.5%;
}
.why-page .why-3 .box:nth-child(even) .right {
    left: -66%;
    padding-left: 0;
    padding-right: 4%;
}
.why-page .why-4 {
    padding: 100px 0 120px;
}
.why-page .why-4 .list ul {
    margin: -40px;
}
.why-page .why-4 .list ul li {
    padding: 40px;
}
.why-page .why-4 .list ul li img {
    display: block;
}
.why-page .why-4 .list ul li p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 25px;
}
.why-page .why-4 .list ul .slick-dots {
    padding-top: 40px;
    text-align: center;
}
.why-page .why-4 .list ul .slick-dots li {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    background: #d4d4d4;
    cursor: pointer;
    cursor: hand;
    padding: 0;
}
.why-page .why-4 .list ul .slick-dots li button {
    display: none;
}
.why-page .why-4 .list ul .slick-dots li.slick-active {
    background: var(--color);
}
.application-page {
    background: #f7f7f7;
    padding: 0 0 120px;
}
.application-page .application-list ul li {
    margin-bottom: 20px;
    padding: 25px;
    background: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.application-page .application-list ul li .left {
    width: 50%;
    vertical-align: middle;
}
.application-page .application-list ul li .right {
    width: 50%;
    vertical-align: middle;
    padding-left: 30px;
}
.application-page .application-list ul li .right h4 {
    font-size: 30px;
    color: var(--color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.application-page .application-list ul li .right .text {
    display: block;
    font-size: 15px;
    color: #757272;
    line-height: 1.8;
    margin-top: 10px;
}
.application-page .application-list ul li:last-child {
    margin-bottom: 0;
}
.application-page .application-list ul li:hover {
    -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1700px) {
    .why-page .why-1 .right h3 {
        font-size: 32px;
    }
    .why-page .why-1 .right .content {
        margin-top: 20px;
    }
    .why-page .why-1 {
        padding-top: 70px;
    }
    .why-page .why-2 {
        padding: 60px 0;
    }
    .why-page .why-2 ul li .box {
        padding: 25px;
    }
    .why-page .why-2 ul li .box h4 {
        font-size: 20px;
        margin: 20px 0 10px;
    }
    .why-page .why-2 ul li .box i {
        height: auto;
    }
    .why-page .why-2 ul li .box i img {
        max-height: 48px;
    }
    .why-page .why-2 ul li .box p {
        font-size: 14px;
        line-height: 2!important;
    }
    .why-page .why-3 {
        padding: 70px 0;
    }
    .why-page .why-3 .box {
        margin-top: 50px;
    }
    .why-page .why-4 {
        padding: 60px 0 80px;
    }
    .service-page .service-1 {
        padding: 60px 0;
    }
    .service-page .service-1 span.tag {
        font-size: 20px;
    }
    .service-page .service-1 h2 {
        font-size: 36px;
    }
    .service-page .service-1 .list {
        margin-top: 50px;
    }
    .service-page .service-1 .list ul li .box .content h4,
    .service-page .service-2 a.more {
        font-size: 20px;
    }
    .service-page .service-1 .list ul li .box .content p {
        font-size: 14px;
    }
    .service-page .service-1 .list ul li .box .content a.more img {
        max-width: 40px;
    }
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 32px;
    }
    .service-page .service-2 .list ul li .left:before,
    .contact-page .contact-1 .left span.tag {
        font-size: 20px;
    }
    .service-page .service-3 {
        padding: 70px 0;
    }
    .service-page .service-3 a.more {
        line-height: 44px;
        height: 44px;
        padding: 0 25px;
        font-size: 20px;
    }
    .application-page .application-list ul li .right .text {
        font-size: 14px;
    }
    .application-page .application-list ul li .right h4 {
        font-size: 26px;
    }
    .application-page {
        padding: 50px 0;
    }
}
@media screen and (max-width: 1500px) {
    .why-page .why-3 .right .text {
        font-size: 14px;
        line-height: 2;
        margin: 10px 0;
    }
    .factory-page .navList {
        margin-top: 50px;
    }
}
@media screen and (max-width: 1250px) {
    .why-page .why-4 .list ul li {
        padding: 15px;
    }
    .why-page .why-4 .list ul {
        margin: -15px;
    }
    .why-page .why-3 .right h3 {
        font-size: 24px;
    }
    .why-page .why-2 ul li .box h4 {
        font-size: 18px;
    }
    .why-page .why-2 ul li .box {
        padding: 10px;
    }
    .why-page .why-2 ul li {
        padding: 10px;
    }
    .why-page .why-2 ul {
        margin: -10px;
    }
    .why-page .why-1 .right h3 {
        font-size: 26px;
    }
    .service-page .service-3 h2:after {
        margin-top: 15px;
    }
    .service-page .service-3 .list {
        margin: 30px 0 50px;
    }
    .service-page .service-1 h2,
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 28px;
    }

    .service-page .service-2 .list ul li .left h4,
    .service-page .service-new .box ul h4{
        font-size: 24px;
    }

    .prodet-page .prodet-box .prodet-4 h3{
        font-size: 24px;
    }
}
@media screen and (max-width: 1000px) {
    .factory-page .navList {
        display: none;
    }
    .service-page .service-1 h2,
    .service-page .service-2 .list ul li .left h4,
    .service-page .service-3 h2 {
        font-size: 24px;
        line-height: 1.6;
    }
    .service-page .service-2 .list ul li .right {
        width: 100%;
        padding: 0 !important;
        left: 0 !important;
    }
    .service-page .service-2 .list ul li .left {
        width: 100%;
        padding: 0 !important;
        left: 0 !important;
    }
    .service-page .service-2 .list ul li:nth-child(even) {
        margin: 25px 0;
    }
    .service-page .service-2 .list ul li .right .img {
        height: 200px;
    }
    .service-page .service-2 a.more {
        margin-top: 40px;
    }
    .service-page .service-3 .list .slide {
        width: 100%;
        padding: 0 !important;
    }
    .service-page .service-3 .list .slide ul li {
        margin-bottom: 0;
        padding-bottom: 10px;
    }


    .service-page .service-new .box ul li .box2{
        padding: 0;
    }

    .service-page .service-3 .list .slide ul{
        display: block;
    }

    .service-page .service-3 .list .slide ul li{
        width: 100%;
    }

    .service-page .service-3 .list .slide ul li h6{
        font-size: 16px;
        line-height: 30px;
    }

    .why-page .why-3 .right {
        width: 100%;
        left: 0 !important;
        padding: 0 !important;
        margin-top: 25px;
    }
    .why-page .why-3 .left {
        width: 100%;
        left: 0 !important;
    }
    .why-page .why-3 {
        padding: 40px 0;
    }
    .why-page .why-2 ul li {
        width: 50% !important;
    }
    .why-page .why-1 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
    .why-page .why-1 .left {
        width: 100%;
    }
    .why-page .why-1 .left .img {
        height: 240px;
    }
    .application-page .application-list ul li .right {
        width: 100%;
        padding: 30px 0 0;
    }
    .application-page .application-list ul li .left {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .service-page .service-1 .list ul li {
        padding: 10px;
    }
    .service-page .service-1 .list ul {
        margin: -10px;
    }
    .service-page .service-1 .list ul li .box .content {
        padding: 10px;
    }
    .why-page .why-2 ul li {
        width: 100% !important;
    }
    .why-page .why-1 .right h3 {
        font-size: 22px;
        line-height: 40px;
    }
    .why-page .why-1 {
        padding-top: 20px;
    }
    .service-page .service-3 .content {
        max-width: none;
    }
    .service-page .service-3 a.more {
        margin-top: 20px;
        float: none;
    }
    .service-page .service-2 a.more {
        font-size: 16px;
    }

    .service-page div.formBox{
        padding: 30px;
    }

    .service-page div.formBox ul li{
        width: 100%;
    }
}
/*inner css add end*/
@-webkit-keyframes ro {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes ro {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes ro {
    from {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes tx {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(3px);
        -moz-transform: translateX(3px);
        transform: translateX(3px);
    }
    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}
@-moz-keyframes tx {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(3px);
        -moz-transform: translateX(3px);
        transform: translateX(3px);
    }
    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tx {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(3px);
        -moz-transform: translateX(3px);
        transform: translateX(3px);
    }
    to {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
}





/* about-play-btn */
.about-page .about-1 .about-box .left .video{
    display: inline-block;
}
.about-page .about-1 .about-box .left .video img{border-radius: 0px;}
.about-page .about-1 .about-box .left .play,
#index-body .init-1 .left .play {
    left: 0;
    bottom: 0;
    transform: translate(-50%,50%);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    text-align: center;
    background: var(--color);
    cursor: pointer;
    cursor: hand;
    position: absolute;
}
.about-page .about-1 .about-box .left .play i,
#index-body .init-1 .left .play i {
    display: inline-block;
    vertical-align: middle;
    font-size: 30px;
    color: white;
    position: relative;
    left: 3px;
}
.about-page .about-1 .about-box .left .play::before,
#index-body .init-1 .left .play:before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    background: rgb(155 42 44);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
    z-index: -1;
}
/* end */



.btn_pro_det{
    position: absolute;
    left: 50%;
    margin-left: -30px;
    bottom: -30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    color: #656b6f;
    text-align: center;
    cursor: pointer;
    background-color: #c0c6ca;
    font-size: 14px;
    transition: all .5s ease;
}
.btn_pro_det i{
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    transition: all .5s ease;
}
.btn_pro_det .det_more{
    display: block;
    width: 300%;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    transition: all .5s ease;
}
.btn_pro_det .hover_more{
    width: 0;
    height: 0;
    overflow: hidden;
    color: #fff;
    bottom: 0;
    display: inline-block;
    white-space:nowrap;
    text-overflow:ellipsis;
    font-size: 18px;
}
.pro_box .btn_pro_det {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pro_box:hover .btn_pro_det {
    background-color: var(--color) !important;
    box-shadow: 0 2px 10px -2px rgba(0, 101, 59, 0.6);
    color: #fff !important;
    width: 200px;
    margin-left: -100px;
}
.pro_box:hover .det_more{
    opacity: 0;
    width: 100%;
}
.pro_box:hover .hover_more{
    width: auto;
    height: auto;
}

.pro_box:hover .btn_pro_det i{
    margin-left: 3.5em;
}

/* 整点人用的 */
.colorf {
    color: #fff;
}
.bgImg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important; }
.poa50 {
    position: absolute;
    left: 50%;
    top: 50%; }
.flexBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

.ability-list2 {
    padding: 60px 0;
    flex-wrap: nowrap; }
.ability-list2 .list-left {
    vertical-align: middle;}
.ability-list2 .list-right {
    vertical-align: middle;}
.ability-list2 .ability-list2-man {

}
.ability-list2 .cn-font18 {
    margin: 36px 0 80px; }
.ability-list2 .num-item {
    text-align: center;
    flex: 1;
    line-height: 1.1;
    font-size: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.1); }
.ability-list2 .num-item:first-child {
    border-left: none; }
.ability-list2 .num-txts {
    display: block; }
.ability-list2 .num-num0 {
    margin-bottom: 10px;
    display: block; }

.in-about-about-text .down-box{
    display: inline-block;
    text-align: center;
}
.in-about-about-text .down-box h4{
    font-size: 18px;
}
.in-about-about-text .down-box .d-more a{
    width: 125px;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    background-color: #f8ce67;
    color: #fff;
    border-radius: 10px;
    margin-top: 20px;
}

.recruits-list2 {
    /*min-height: 400px;*/
    padding-bottom:80px; }
.recruits-list2 .recruits-nav {
    flex: 0 0  300px;
    width: 300px; }
.recruits-list2 .recruits-nav-name {
    font-size: 24px;
    color: #fff;
    line-height: 80px;
    padding-left: 36px;
    background: #9b2a2c; }
.recruits-list2 .recruits-nav-a {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 1.2;
    color: #666;
    padding: 0.8em 2em;
    border-bottom: 1px solid #fff;
    background: #f4f4f4;
    transition-duration: .5s; }
.recruits-list2 .recruits-nav-a:before{
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 6px;
    height: 0;
    transition-duration: .5s;
    background:#9b2a2c;
    position: absolute; }
.recruits-list2 .recruits-nav-a:hover, .recruits-list2 .recruits-nav-a.cur {
    background: #fff; }
.recruits-list2 .recruits-nav-a:hover:before, .recruits-list2 .recruits-nav-a.cur:before,
.recruits-list2 .recruits-nav-a.active:before{
    height: 100%; }

.recruits-list2 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #ee772b !important; }
.recruits-list2 .mCSB_scrollTools {
    width: 6px !important; }
.recruits-list2 .mCSB_inside > .mCSB_container {
    margin-right: 0 !important; }
.recruits-list2 .mCSB_scrollTools .mCSB_draggerRail {
    background: #f4f4f4 !important; }
.recruits-list2 .recruits-info {
    flex: 0 0 calc(100% - 324px);
    width: calc(100% - 324px);
    background: #f4f4f4; }
.recruits-list2 .recruits-info-contents {
    padding: 44px 64px 100px;
    display:none;
    opacity: 1;
    transform: translateY(20px);
    line-height: 1.8;
    font-size: 16px;
    transition-duration: .3s; }
.recruits-list2 .recruits-info-contents:nth-child(1){
    display:block;
}
.recruits-list2 .recruits-info-contents.cur {
    opacity: 1;
    transform: translateY(0); }
.recruits-list2 .recruits-position-name {
    font-size: 20px;
    line-height: 1.2;
    color: #444;
    padding-bottom: 4px; }
.recruits-list2 .recruits-para-wrap {
    justify-content: flex-start;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 30px; }
.recruits-list2 .para-item {
    flex: 0 0 auto;
    font-size: 14px;
    line-height: 24px;
    color: #444;
    position: relative;
    padding-left: 30px; }
.recruits-list2 .para-item:before {
    position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #cfcfcf;
    left: 15px;
    top: 4px; }
.recruits-list2 .para-item:first-child {
    padding-left: 0; }
.recruits-list2 .para-item:first-child:before {
    display: none; }
.recruits-list2 .recruits-bot-item {
    font-size: 14px;
    line-height: 34px;
    padding-top: 30px; }
.recruits-list2 .recruits-bot-h5 {
    color: #444; }
.recruits-list2 .recruits-bot-detial {
    color: #888; }
.recruits-list2 .recruits-a {
    display: block;
    margin-top: 42px;
    width: 120px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 14px;
    padding-left: 24px;
    background: #ee772b url(../img/recruits-a.png) no-repeat right 24px center;
    transition-duration: .3s; }
.recruits-list2 .recruits-a:hover {
    background: #ee772b url(../img/recruits-a.png) no-repeat right 18px center; }


.recruits-list3 .m-img {
    display: none;
}

.recruits-list3 .swiper-slide:hover .txts-mains{
    height: auto;
    color: #fff;
}
.recruits-list3 .swiper-slide:hover .txts-mains p{
    color: #fff;
}

.recruits-list3 .list3-txts {
    padding: 28px;
    height: auto;
    width: 100%;
    max-height: 100%;
    transform: translate(-50%,-50%);
}
.recruits-list3 {
    padding: 72px 0;
}
.recruits-list3 .img-wrap {
    height: 355px;
    border-radius: 20px;
}
.recruits-list3 .swiper-wrapper{
    margin: -10px;
}
.recruits-list3 .swiper-slide {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10px;
}
.recruits-list3 .ico-wrap {
    width: 40px;
    margin: 0 auto 20px;
}
.recruits-list3 .list3-h5 {
    font-size: 20px;
    font-weight: 700;
}
.recruits-list3 .list3-h5:after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: #fff;
    margin: 20px auto;
}
.recruits-list3 .txts-mains {
    font-size: 14px;
    transition-duration: .3s;
    height: 0;
    overflow: hidden;
}
.recruits-list3 .scroll-wrap,.recruits-list3 .txts-mains.autoHeight {
    height: 168px;
}

@media screen and (max-width: 1000px) {
    .ability-list2 .list-left{
        padding: 0;
        width: 100%!important;
    }
    .ability-list2 .list-right{
        padding: 0;
        width: 100%!important;
        margin-top: 40px;
    }

    .recruits-list2 .recruits-nav{
        flex: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .recruits-list2 .recruits-info{
        flex: none;
        width: 100%;
    }

    .recruits-list2 .recruits-info-contents{
        padding: 20px 36px;
    }
}
/* end */




.inner-page h3.title{
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
}
.inner-page h3.title em{
    color: var(--color);
}
.production-sec .pur-sec {
    padding: 48px 0;
}
.production-sec .pur-sec .mml-row {
    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;
}
.production-sec .pur-sec .mml-row .text-wrap {
    width: 100%;
    max-width: 800px;
    padding-top: 90px;
}
.production-sec .pur-sec .mml-row .text-wrap h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .text-wrap p {
    font-size: 18px;
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .pur-sec .mml-row .img-wrap {
    width: 60%;
    max-width: 760px;
}
.production-sec .fig-sec {
    padding-bottom: 55px;
}
.production-sec .fig-sec .mml-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-content: center;
}
.production-sec .fig-sec .mml-row h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 38.4px;
    line-height: 1.2;
    color: var(--color);
    margin-bottom: 6px;
    width: 40%;
}
.production-sec .fig-sec .mml-row ul {
    width: 60%;
    max-width: 760px;
    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: 45px 0px 30px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.production-sec .fig-sec .mml-row ul li {
    max-width: 193px;
    text-align: center;
}
.production-sec .fig-sec .mml-row ul li .nums {
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: var(--color);
}
.production-sec .fig-sec .mml-row ul li p {
    font-size: 18px;
    line-height: 32px;
    color: #282828;
    margin-bottom: 0px;
    margin-top: 10px;
}
.production-sec .prints-sec {
    padding-bottom: 64px;
}
.production-sec .prints-sec .mml-row {
    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;
}
.production-sec .prints-sec .mml-row .img-wrap {
    width: 46%;
    /*max-width: 500px;*/
}
.production-sec .prints-sec .mml-row .text-wrap {
    width: 70%;
    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;
    max-width: 760px;
}
.production-sec .prints-sec .mml-row .text-wrap .text h2 {
    margin-bottom: 25px;
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text p {
    font-size: 18px;
    line-height: 1.8;
    color: #242424;
    letter-spacing: 0.2px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li {
    padding: 25px 0px;
    font-style: normal;
    font-size: 14px;
    color: #888;
    border-bottom: 1px solid #d2d2d2;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
    font-style: normal;
    font-size: 24px;
    line-height: 44px;
    color: #303030;
    margin-bottom: 10px;
}
.production-sec .prints-sec .mml-row .text-wrap .text ul li p {
    margin-bottom: 0px;
}
.production-sec .proto-sec h2 {
    font-weight: bold;
    font-style: normal;
    color: #000;
    font-size: 32px;
    line-height: 1.2;
    margin: 32px;
    text-align: center;
}
.production-sec .proto-sec ul {
    font-size: 0;
    margin: -15px;
}
.production-sec .proto-sec ul li {
    display: inline-block;
    width: 25%;
    padding: 15px;
}
.production-sec .proto-sec ul li img {
    display: block;
    max-width: 100%;
}
.production-sec .proto-sec h4 {
    font-weight: bold;
    font-style: normal;
    font-size: 40px;
    color: #242424;
    text-align: center;
}
.production-sec .proto-sec p {
    font-style: normal;
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 0px;
}
.production-sec .p11-milestone {
    padding: 52px 0;
    background-color: whitesmoke;
}
.production-sec .p11-milestone .text h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
.production-sec .p11-milestone .title {
    margin-bottom: 32px;
}
.production-sec .p11-milestone .list ul {
    margin: -15px;
}
.production-sec .p11-milestone .list ul li {
    padding: 15px;
}
.production-sec .p11-milestone .galaxy {
    position: relative;
    height: 600px;
    overflow: hidden;
}
.production-sec .p11-milestone .track {
    position: absolute;
    left: 0;
    top: 50%;
    margin-right: 200px;
    height: 5px;
    width: 1600px;
    -webkit-transform: translate3d(0, -2.5px, 0);
    -moz-transform: translate3d(0, -2.5px, 0);
    transform: translate3d(0, -2.5px, 0);
    will-change: transform;
}
.production-sec .p11-milestone .comet,
.production-sec .p11-milestone .historys {
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    will-change: transform;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.production-sec .p11-milestone .comet {
    position: relative;
    width: 0;
    border-radius: 3px;
    background-image: -webkit-gradient(linear, left top, right top, from(var(--color)), color-stop(50%, #f35d2e), to(#f25743));
    background-image: -webkit-linear-gradient(left, var(--color) 0%, #f35d2e 50%, #f25743 100%);
    background-image: -moz-linear-gradient(left, var(--color) 0%, #f35d2e 50%, #f25743 100%);
    background-image: linear-gradient(90deg, var(--color) 0%, #f35d2e 50%, #f25743 100%);
}
.production-sec .p11-milestone .comet::after {
    content: '\20';
    position: absolute;
    z-index: 3;
    right: -6px;
    top: -3px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    height: 12px;
    width: 12px;
    border-radius: 6px;
    background: #fff;
    -webkit-box-shadow: 0 0 80px #fff;
    box-shadow: 0 0 80px #fff;
}
.production-sec .p11-milestone .historys {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 260px;
}
.production-sec .p11-milestone .historys time,
.production-sec .p11-milestone .historys text {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys time {
    font-style: normal;
    color: #242424;
    font-size: 24px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text p {
    font-style: normal;
    color: #242424;
    font-size: 16px;
    line-height: 24px;
}
.production-sec .p11-milestone .historys .text .pic {
    max-width: 400px;
    max-height: 250px;
    margin: 0 auto 15px;
    overflow: hidden;
}
.production-sec .p11-milestone .historys > li {
    position: relative;
    width: 400px;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time {
    bottom: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(even) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(even) .text {
    top: 1000%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time {
    top: 450%;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) time::before {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 10px;
    content: '';
    display: block;
    background-color: #fff;
    margin-left: -1px;
}
.production-sec .p11-milestone .historys > li:nth-child(odd) .text {
    bottom: 1000%;
}
.production-sec .p11-milestone .historys > li.mml-show {
    opacity: 1;
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(even) .text {
    -webkit-transform: translate(0, 12px);
    -moz-transform: translate(0, 12px);
    -ms-transform: translate(0, 12px);
    transform: translate(0, 12px);
}
.production-sec .p11-milestone .historys > li.mml-show:nth-child(odd) .text {
    -webkit-transform: translate(0, -12px);
    -moz-transform: translate(0, -12px);
    -ms-transform: translate(0, -12px);
    transform: translate(0, -12px);
}
.production-sec .p11-milestone .historys > li::before {
    content: '\20';
    position: absolute;
    left: 50%;
    top: 0;
    margin: -3px 0 0 -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color);
}
.production-sec .team-img {
    text-align: center;
}
.production-sec .team-img .text h2 {
    font-weight: bold;
    font-style: normal;
    font-size: 32px;
    line-height: 1.2;
    color: #242424;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}
@media screen and (max-width: 1500px) {
    .prints-sec .img-wrap {
        width: 35%;
    }
    .prints-sec .text-wrap {
        width: 60%;
    }
}
@media screen and (max-width: 1200px) {
    .text.mod-1 h2 {
        font-size: 30px;
        line-height: 1.4;
        margin-bottom: 20px !important;
        padding-top: 10px !important;
    }
    .production-sec .fig-sec h2 {
        font-size: 30px;
    }
    .production-sec .prints-sec .mml-row .img-wrap {
        width: 45%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 50%;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text ul li h4 {
        font-size: 22px;
    }
}
@media screen and (max-width: 1000px) {
    .production-sec .pur-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec .mml-row ul {
        width: 100%;
    }
    .production-sec .prints-sec .mml-row .text-wrap {
        width: 100%;
    }
    .production-sec .pur-sec .container .text-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .production-sec .pur-sec .container .img-wrap {
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }
    .production-sec .fig-sec .mml-row {
        display: block;
    }
    .production-sec .fig-sec h2 {
        width: 100%;
        margin-bottom: 30px;
    }
    .production-sec .fig-sec ul {
        width: 100%;
        max-width: 100%;
    }
    .prints-sec .img-wrap {
        display: none;
    }
    .prints-sec .text-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 700px) {
    .production-sec .pur-sec {
        padding: 20px 0 !important;
    }
    .production-sec .fig-sec ul {
        display: block;
    }
    .production-sec .fig-sec ul li {
        max-width: 100%;
        padding: 20px 0;
    }
    .production-sec .fig-sec {
        display: none;
    }
    .production-sec .pur-sec .mml-row .text-wrap p {
        font-size: 14px;
        line-height: 2;
    }
    .production-sec .prints-sec .mml-row .text-wrap .text p {
        font-size: 14px;
        line-height: 2;
    }
}






/* 应用 */
.solu-1 {
    background: var(--color);
    color: #fff;
    padding: 30px;
}

.solu-2 {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    width: 100%;
    left: 0;
    padding: 30px 0;
    z-index: 3;
    background: #fff;
}
.solu-2 .navbox {
    position: relative;
}
.solu-2 .navbox ul.navlist {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}
.solu-2 .navbox ul.navlist li {
    display: inline-block;
    border-bottom: 3px solid transparent;
    padding: 30px 0;
    margin-bottom: -1.5px;
}
.solu-2 .navbox ul.navlist li.active {
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
    border-color: var(--color);
}
.solu-2 .navbox ul.navlist li a {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.solu-2 .navbox ul.navlist li a img {
    margin-right: 25px;
}

.solu-3 {
    padding-top: 75px;
    padding-bottom: 110px;
}
.solu-3 .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.solu-3 .top .left {
    padding-right: 85px;
}
.solu-3 .top .right {
    text-align: left;
}
.solu-3 .top .right p {
    margin: 20px 0 40px;
}
.solu-3 .bottom {
    margin-top: 75px;
}
.solu-3 .bottom ul {
    margin: 0 -10px;
}
.solu-3 .bottom ul li {
    padding: 0 10px ;
}
.solu-5 {
    padding-top: 110px;
}
.solu-5 ul.solulist2 li {
    margin-bottom: 100px;
}
.solu-5 ul.solulist2 li .text .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--color);
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 30px;
}
.solu-5 ul.solulist2 li .text span {
    text-transform: uppercase;
    color: #000;
    opacity: .7;
}
.solu-5 ul.solulist2 li .text P {
    margin-top: 15px;
}

@media screen and (max-width: 1000px) {
    .solu-3 .top .left {
        padding-right: 10px;
    }
    .solu-3 .top .right p {
        max-height: 200px;
        overflow-y: auto;
    }
    .solu-2 {
        top: 40px;
    }
}

@media screen and (max-width: 700px) {
    .font-40 {
        font-size: 28px;
    }

    .solu-1 .ui.container {
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
    .solu-1 .ui.container .left {
        width: 100%;
    }
    .solu-1 .ui.container .logo {
        width: 100%;
        text-align: center;
    }
    .solu-3 .top .left {
        width: 100%;
        padding-right: 0;
    }
    .solu-3 .top .right {
        width: 100%;
        padding-left: 0 ;
    }
    .solu-5 ul.solulist2 li:nth-child(2n) {
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    }
}

@media screen and (max-width: 500px) {
    .font-40 {
        font-size: 20px;
    }
    .solu-2 .navbox ul.navlist li {
        width: 100%;
    }

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






.transition_1 {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.pb-150 {
    padding-bottom: 150px;
}
.pt-120 {
    padding-top: 120px;
}
.pb-120 {
    padding-bottom: 120px;
}
.pt-100 {
    padding-top: 100px;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-90 {
    padding-top: 90px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pt-80 {
    padding-top: 80px;
}
.pb-70 {
    padding-bottom: 70px;
}

.sustainable-page .init-1 .container .left {
    font-weight: 700;
    width: 530px;
    padding-right: 10px;
}
.sustainable-page .init-1 .container .right {
    width: -webkit-calc(-430%);
    width: -moz-calc(-430%);
    width: calc(100% - 530px);
    color: #838383;
}
.sustainable-page .init-1 .container .content {
    margin: 10px -25px 0;
}
.sustainable-page .init-1 .container .content .list {
    margin-top: 40px;
    padding: 0 25px;
}
.sustainable-page .init-1 .container .content .list .box {
    display: block;
    background-color: #f9f9f9;
    padding: 16px 60px 16px 16px;
}
.sustainable-page .init-1 .container .content .list .box .img {
    width: 166px;
    height: 166px;
    background-color: #fff;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}
.sustainable-page .init-1 .container .content .list .box .img img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.sustainable-page .init-1 .container .content .list .box .text {
    width: -webkit-calc(-66%);
    width: -moz-calc(-66%);
    width: calc(100% - 166px);
    padding-left: 34px;
}
.sustainable-page .init-1 .container .content .list .box .text .title {
    font-weight: 500;
    margin-top: 10px;
}
.sustainable-page .init-1 .container .content .list .box .text .des {
    color: #898989;
    margin-top: 10px;
    line-height: 1.6;
}
.sustainable-page .init-1 .container .content .list .box:hover {
    background-color: #245e3e;
    color: #fff;
}
.sustainable-page .init-1 .container .content .list .box:hover .text .title {
    color: #ffff;
}
.sustainable-page .init-1 .container .content .list .box:hover .text .des {
    color: #fff;
}
.sustainable-page .init-2 {
    text-align: center;
    -o-background-size: cover;
    background-size: cover;
    padding: 200px 0;
    color: #fff;
}
.sustainable-page .init-2 .container .tips {
    font-weight: 500;
}
.sustainable-page .init-2 .container .des {
    max-width: 660px;
    margin: 30px auto 0;
}
.sustainable-page .init-3 .container .left {
    width: -webkit-calc(-410%);
    width: -moz-calc(-410%);
    width: calc(100% - 510px);
    padding-right: 90px;
}
.sustainable-page .init-3 .container .left .list {
    margin-top: 50px;
}
.sustainable-page .init-3 .container .left .list .img {
    width: 50px;
}
.sustainable-page .init-3 .container .left .list .text {
    width: -webkit-calc(50%);
    width: -moz-calc(50%);
    width: calc(100% - 50px);
    padding-left: 40px;
}
.sustainable-page .init-3 .container .left .list .text .title {
    font-weight: 700;
}
.sustainable-page .init-3 .container .left .list .text .des {
    margin-top: 10px;
    color: #8d8d8d;
}
.sustainable-page .init-3 .container .left .list:first-child {
    margin-top: 0;
}
.sustainable-page .init-3 .container .left .list:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}
.sustainable-page .init-3 .container .left .list:hover .img {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.sustainable-page .init-3 .container .right {
    width: 510px;
}
.sustainable-page .init-3 .container .right img {
    width: 100%;
}
.sustainable-page .init-4 {
    background-color: #f9f9f9;
}
.sustainable-page .init-4 .container .img {
    width: 40%;
}
.sustainable-page .init-4 .container .right {
    width: 60%;
    padding-left: 120px;
}
.sustainable-page .init-4 .container .right .title {
    font-weight: 700;
}
.sustainable-page .init-4 .container .right .des {
    color: #878787;
    margin-top: 20px;
}
.sustainable-page .init-5 .container .top_c .left {
    width: 700px;
    padding-right: 100px;
}
.sustainable-page .init-5 .container .top_c .left .tips {
    font-weight: 700;
}
.sustainable-page .init-5 .container .top_c .left .des {
    color: #8a8a8a;
    margin-top: 10px;
}
.sustainable-page .init-5 .container .top_c .right {
    vertical-align: bottom;
    width: -webkit-calc(-600%);
    width: -moz-calc(-600%);
    width: calc(100% - 700px);
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list {
    cursor: pointer;
    padding: 0 20px;
    width: 25%;
    text-align: center;
    color: #bfbfbf;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .img {
    height: 50px;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .img img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list .text {
    margin-top: 30px;
    font-weight: 500;
}
.sustainable-page .init-5 .container .top_c .right .list_cont .list:hover,
.sustainable-page .init-5 .container .top_c .right .list_cont .list.active {
    color: #328256;
}
.sustainable-page .init-5 .container .content {
    margin-top: 40px;
}
.sustainable-page .init-5 .container .content .slick li .box {
    background-color: #f9f9f9;
}
.sustainable-page .init-5 .container .content .slick li .box .left {
    width: -webkit-calc(-410%);
    width: -moz-calc(-410%);
    width: calc(100% - 510px);
    vertical-align: middle;
}
.sustainable-page .init-5 .container .content .slick li .box .left img {
    width: 100%;
}
.sustainable-page .init-5 .container .content .slick li .box .right {
    vertical-align: middle;
    width: 510px;
    padding: 40px 70px;
}
.sustainable-page .init-5 .container .content .slick li .box .right .title {
    font-weight: 700;

}
.sustainable-page .init-5 .container .content .slick li .box .right .des {
    margin-top: 20px;
    color: #8a8a8a;
}
.sustainable-page .init-6 {
    -o-background-size: cover;
    background-size: cover;
    color: #fff;
    padding-bottom: 230px;
}
.sustainable-page .init-6 .container .left {
    width: 410px;
}
.sustainable-page .init-6 .container .left .tips {
    font-weight: 500;
}
.sustainable-page .init-6 .container .left .des {
    margin-top: 20px;
}
.sustainable-page .init-6 .container .right {
    width: -webkit-calc(-310%);
    width: -moz-calc(-310%);
    width: calc(100% - 410px);
    padding-left: 280px;
}
.sustainable-page .init-6 .container .right .list {
    cursor: pointer;
    position: relative;
    margin-top: 36px;
}
.sustainable-page .init-6 .container .right .list .line_cont {
    width: 26px;
    height: 26px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 2px;
}
.sustainable-page .init-6 .container .right .list .line_cont .line {
    position: absolute;
    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%);
    background-color: #000;
}
.sustainable-page .init-6 .container .right .list .line_cont .line1 {
    width: 14px;
    height: 2px;
}
.sustainable-page .init-6 .container .right .list .line_cont .line2 {
    width: 2px;
    height: 14px;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}
.sustainable-page .init-6 .container .right .list .text {
    padding-left: 40px;
}
.sustainable-page .init-6 .container .right .list .text .title {
    font-weight: 500;
}
.sustainable-page .init-6 .container .right .list .des {
    display: none;
    margin-top: 20px;
}
.sustainable-page .init-6 .container .right .list:first-child {
    margin-top: 0;
}
.sustainable-page .init-6 .container .right .list.active .line_cont .line2 {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
}
.sustainable-page .init-7 {
    position: relative;
    z-index: 2;
    margin-top: -150px;
}
.sustainable-page .init-7 .container .cont {
    background-color: #fff;
    padding: 60px 180px 100px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.sustainable-page .init-7 .container .cont .tips {
    font-weight: 500;
    text-align: center;
}
.sustainable-page .init-7 .container .cont .tips_des {
    margin: 10px auto 0;
    color: #8e8e8e;
    text-align: center;
    max-width: 640px;
}
.sustainable-page .init-7 .container .cont .img {
    margin-top: 30px;
    display: block;
    width: 100%;
}
.sustainable-page .init-8 .container .tips {
    font-weight: 500;
    text-align: center;
}



.sustainable-page .init-8 .container .tips_des {
    max-width: 1000px;
    color: #8a8a8a;
    text-align: center;
    margin: 20px auto 0;
}
.sustainable-page .init-8 .container .content {
    margin-top: 50px;
}
.sustainable-page .init-8 .container .content .slick {
    margin: 0 -15px 0;
}
.sustainable-page .init-8 .container .content .slick .slick-track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.sustainable-page .init-8 .container .content .slick .slick-track .slick-slide {
    height: auto;
}
.sustainable-page .init-8 .container .content .slick .slick-track .slick-slide > div {
    height: 100%;
}
.sustainable-page .init-8 .container .content .slick li {
    height: 100%;
    padding: 0 15px;
}
.sustainable-page .init-8 .container .content .slick li .box {
    height: 100%;
    background-color: #f9f9f9;
    padding: 44px 60px;
}
.sustainable-page .init-8 .container .content .slick li .box .title {
    font-weight: 500;
}
.sustainable-page .init-8 .container .content .slick li .box .des {
    color: #8a8a8a;
    margin-top: 20px;
}
.sustainable-page .init-8 .container .content .slick li .box:hover {
    background-color: #328256;
}
.sustainable-page .init-8 .container .content .slick li .box:hover .title {
    color: #fff;
}
.sustainable-page .init-8 .container .content .slick li .box:hover .des {
    color: #fff;
}


@media (max-width: 1500px) {
    .sustainable-page .init-5 .container .top_c .left {
        width: 500px;
        padding-right: 20px;
    }
    .sustainable-page .init-5 .container .top_c .right {
        width: -webkit-calc(-400%);
        width: -moz-calc(-400%);
        width: calc(100% - 500px);
    }
}


@media (max-width: 1250px) {
    .sustainable-page .init-6 .container .right {
        padding-left: 20px;
    }
    .sustainable-page .init-8 .container .content .slick li .box {
        padding: 20px;
    }
}

@media (max-width: 1000px) {
    .sustainable-page .init-1 .container .left {
        padding: 0;
        width: 100%;
        text-align: center;
    }
    .sustainable-page .init-1 .container .right {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }
    .sustainable-page .init-1 .container .content .list {
        width: 100%;
    }
    .sustainable-page .init-3 .container .left {
        width: 100%;
        padding-right: 0;
    }
    .sustainable-page .init-3 .container .right {
        display: none;
    }
    .sustainable-page .init-4 .container .img {
        display: none;
    }
    .sustainable-page .init-4 .container .right {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .sustainable-page .init-5 .container .top_c .left {
        padding: 0;
        width: 100%;
        text-align: center;
    }
    .sustainable-page .init-5 .container .top_c .right {
        width: 100%;
    }
    .sustainable-page .init-5 .container .top_c .right .list {
        margin-top: 20px;
    }
    .sustainable-page .init-5 .container .content .slick li .box {
        text-align: center;
    }
    .sustainable-page .init-5 .container .content .slick li .box .left {
        width: 100%;
        max-width: 420px;
        margin-top: 20px;
    }
    .sustainable-page .init-5 .container .content .slick li .box .right {
        width: 100%;
    }
    .sustainable-page .init-6 .container .left {
        width: 100%;
    }
    .sustainable-page .init-6 .container .right {
        width: 100%;
        padding: 0;
        margin-top: 30px;
    }
    .sustainable-page .init-7 .container .cont {
        padding: 16px;
    }
}


@media (max-width: 700px) {
    .sustainable-page .init-6 {
        padding: 40px 0;
    }
    .sustainable-page .init-7 {
        display: none;
    }
}


@media (max-width: 500px) {
    .sustainable-page .init-1 .container .content .list {
        margin-top: 20px;
    }
    .sustainable-page .init-1 .container .content .list .box {
        text-align: center;
        padding: 20px 16px;
    }
    .sustainable-page .init-1 .container .content .list .box .text {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .sustainable-page .init-2 {
        padding: 40px 0;
    }
    .sustainable-page .init-3 .container .left .list {
        text-align: center;
    }
    .sustainable-page .init-3 .container .left .list .text {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }
    .sustainable-page .init-5 .container .top_c .right .list_cont .list {
        width: 50%;
        padding: 0 5px;
    }
    .sustainable-page .init-5 .container .top_c .right .list_cont .list .text {
        margin-top: 10px;
    }
    .sustainable-page .init-5 .container .content .slick li .box .right {
        padding: 16px;
    }
    .sustainable-page .init-5 .container .content .slick li .box .right .des {
        margin-top: 10px;
    }
}




/* 工程中心 */
.patent-top {
    padding: 44.8px 0 33.6px;
    align-items: self-start;
}

.patent-top .list1-left {
    flex: 0 0 auto;
}

.patent-top .title-cn {
    font-size: 40px;
    line-height: 1;
    color: #333;
    font-weight: 700;
}

.patent-top .title-en {
    text-transform: uppercase;
}

.patent-top .title-en {
    font-size: 30px;
    line-height: 1;
    color: #c5c5c5;
    margin-top: 8px;
}

.patent-top .list1-right {
    flex: 0 0 920px;
    /*margin-top: 20px;*/
}

.patent-top .nums-wrap {
    justify-content: left;
}

.patent-top .right-title {
    color: #777;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.patent-top .nums-wrap {
    padding: 40px 0;
}

.patent-top .num-item {
    text-align: center;
    flex: 0 0 auto;
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #dbdbdb;
}

.patent-top .num0 {
    display: block;
    font-size: 40px;
    line-height: 1;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.patent-top .num-txt {
    color: #888;
    font-size: 14px;
    line-height: 1;
    display: block;
}

.patent-top .num-item:last-child {
    border-right: none;
    margin-right: 0;
}

.patent-top .right-detail {
    color: #888;
    font-size: 14px;
    line-height: 2;
}




@keyframes bounce-up-data-v-7e3caf58
{
    10% {
        transform: rotate(20deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

.hu_h3 {font-size: 44px;font-weight: bold;color: #333333;}
.hu_p {font-size: 18px;color: #666666;line-height: 30px;}

@media screen and (max-width: 1600px){
    .hu_h3 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 768px){
    .hu_h3 {
        font-size: 26px;
    }
}


/* aft */
.aft01 {padding: 120px 0 100px; background: url(../images/aft01_bg.jpg);background-size: cover;position: relative;overflow: hidden;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01  h4 {    font-size: 30px; color: #333333; margin: 16px 0 28px; font-weight: bold;}
.aft01 .box {display: flex;    margin-bottom: 60px;}
.aft01 .box .min {width: 350px;height: 350px;border-radius: 50%;display: flex;justify-content: center;align-items: center;flex-direction: column;}
.aft01 .box .min:nth-of-type(1) {transition: 0.5s; background-color: rgb(71 110 236);position: relative;z-index: 1;left: 0px;}
.aft01 .box .min:nth-of-type(2) {transition: 0.5s; background-color: rgb(36 36 36 / 90%); margin-left: -42px;position: relative;right: 0px;}
.aft01 .box:hover .min:nth-of-type(1){left: 308px;}
.aft01 .box:hover .min:nth-of-type(2){right: 308px;}
.aft01 .box .min  h5 {font-size: 20px;font-weight: bold;margin-bottom: 30px;color: #fff;}
.aft01 .box .min  h6 {font-size: 24px;color: #fff;font-weight: bold;margin-bottom: 50px;text-align: center;}
.aft01 .box .min  img {width: 42px;}
.aft01 p {font-size: 20px;color: #333333;font-weight: bold;}
.aft02 {padding: 160px 0 120px;position: relative;overflow: hidden;}
.aft02 .bg_fix {position: absolute;top: 0px;left: 0px;width: 100%;height: 690px;}
.aft02 .bg_fix::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); position: absolute; left: 0; top: 0; }
.aft02 .bg_fix img {height: 100%;width: 100%;object-fit: cover;}
.aft02 .top {display: flex;justify-content: center;align-items: center;flex-direction: column;margin-bottom: 47px;    z-index: 1; position: relative;}
.aft02 .top .hu_h3 {color: #fff;}
.aft02 .top  p {font-size: 18px;line-height: 34px;text-align: center;color: #fff;margin-top: 10px;}
.aft02 .top .line {height: 75px;width: 1px;background-color: rgba(255,255,255,0.4);margin: 28px 0 ;position: relative;}
.aft02 .top .line::after {content: "";  width: 7px; height: 7px; background-color: #fff; position: absolute; left: 50%; transform: translateX(-50%); top: 0px; animation: 2s linear 0.5s infinite hua2;}
@keyframes hua2 { from { top: 0%; } to { top: 95%; } }
.aft02 .top h4 {font-size: 30px;color: #fff;}
.aft02 .botF {padding: 0 90px;position: relative;}
.aft02 .botF .fa {    background-image: none; width: auto; height: auto; margin: 0; padding: 0; font-size: 74px; color: #cbcbcb; outline: none;}
.aft02 .botF .fa:hover {color: var(--color);;}
.aft02 .bot {position: relative;overflow: hidden;margin: auto;}
.aft02 .bot .box {    background-color: #fff; padding: 50px 0 138px; border-radius: 12px; box-shadow: 0px 5px 15px rgb(102 102 102 / 30%); display: flex; justify-content: center; align-items: center; flex-direction: column; }
.aft02 .bot .box  .icon {border-radius: 50%; position: relative; height: 111px; display: flex;justify-content: center;align-items: center; width: 111px;}
.aft02 .bot .box:hover  .icon::before {   animation: img01anime 10s 0s linear infinite; }
.aft02 .bot .box:hover  .icon::after{  animation: img02anime 10s 0s linear infinite;}
.aft02 .bot .box  .icon::before {   content: ""; position: absolute; width: 120%; height: 120%; border-radius: 50%;  border: 1.6px dashed var(--color);}
.aft02 .bot .box  .icon::after{ content: ""; position: absolute; width: 100%; height: 100%; border-radius: 50%;  border: 1.6px dashed var(--color);}

@keyframes img01anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}
@keyframes img02anime{
    0%{transform: rotate(0deg);}
    100%{transform: rotate(-360deg);}
}

.aft02 .bot .box  .icon img {width: 56px;transition: 0s;}
.aft02 .bot .box h4 {font-size: 30px;font-weight: bold;color: #333333;margin-bottom: 5px;    margin-top: 54px;}
.aft02 .bot .box h5 {        width: 239px; font-size: 18px; position: relative; color: #666666; text-align: center; line-height: 26px; height: 52px;}
.aft02 .bot .box h5::after {content: "";position: absolute;width: 20px;height: 4px;background-color: var(--color);left: 50%;transform: translateX(-50%);bottom: 0px;}
.aft02 .bot .box p{padding:0px 40px; font-size: 18px; height: 70px;}
.aft02 .bot .box:hover h5::after {background-color: #fff;}
.aft02 .bot .box:hover h4,.aft02 .bot .box:hover h5,.aft02 .bot .box:hover p{color: #fff;}
.aft02 .bot .box:hover  .icon img {filter: grayscale(10) brightness(10);}
.aft02 .bot .box:hover  .icon,.aft02 .bot .box:hover  .icon::before,.aft02 .bot .box:hover  .icon::after {border-color: #fff;}

.aft02 .bot .box:hover {background-color: var(--color);}

.aft02 .bot .aft02Swiper {width: 1200px;margin: auto;}
.aft02 .bot  {width: 1242px;margin: auto;    padding: 22px 0;}
.aft03 {padding-bottom: 0;position: relative;overflow: hidden;}
.aft03 .icenter2 {display: flex;justify-content: space-between;align-items:center;}
.aft03 .icenter2 .le {overflow: hidden;position: relative;width: 45%;    height: 695px;}
.aft03 .icenter2 .le::before { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,.5); content: ''; -webkit-transition: -webkit-transform .6s; transition: transform .6s; -webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-110%,0); z-index: 1; }
.aft03 .icenter2 .le:hover::before { -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 115%, 0); }
.aft03 .icenter2 .le img{height: 100%;}
.aft03 .icenter2 .le:hover img {transform: scale(1.1);}
.aft03 .icenter2 .ri {width: 50%;}
.aft03 .icenter2 .ri >ul {margin: 20px 0 0px;}
.aft03 .icenter2 .ri >ul li {position: relative;padding-left: 15px;font-size: 18px;color: #666666;line-height: 30px;}
.aft03 .icenter2 .ri >ul li::before {    width: 5px; height: 5px; border-radius: 50%; background-color: #666666; position: absolute; left: 0px; top: 13px; content: "";}
.aft03 dl dd{ padding-top: 60px;  display: flex;align-items: center;padding-bottom: 20px;border-bottom: 1px solid #d5d5d5;}
.aft03 dl dd .icon {width: 86px;margin-right: 58px;}
.aft03 dl dd .text {}
.aft03 dl dd .text h4 {    position: relative; padding-bottom: 0px; font-size: 18px; color: #333333; width: fit-content; margin-bottom: 10px;}
.aft03 dl dd .text h4 strong {font-size: 70px;font-weight: bold;}
.aft03 dl dd .text h4::after { position: absolute;content: "";left: 0px;bottom: 0px; width: 100%;height: 5px;background-color:var(--color);}
.aft03 dl dd .text  p {font-size: 18px;color: #666666;}
.aft04 {background: url(../images/aft04_bg.jpg);background-size: cover;position: relative;overflow: hidden;background-attachment: fixed;padding: 130px 0 180px;}
.aft04  .icenter2 {position: relative; z-index: 1;}
.aft04::after { content: ""; display: inline-block; width: 100%; height: 100%; background-color: rgba(239, 241, 247, 0.65); position: absolute; left: 0; top: 0; }
.aft04 .hu_h3 {padding-left: 42px;}
.aft04 dl {margin-top: 50px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2;}
.aft04 dl dd {width: 48%;padding-left: 42px;padding-bottom: 42px;box-sizing: border-box;display: flex;align-items: center;position: relative;    justify-content: space-between;}
.aft04 dl dd .bg {position: absolute; width: 127px;left: 0px;bottom: 0px;transition: 0.5s;}
.aft04 dl dd:hover .bg {left: 30px;bottom: 30px;}
.aft04 dl dd .le {width: 38.5%;}
.aft04 dl dd .ri {width: 51%;}
.aft04 dl dd .ri .name {font-size: 20px;font-weight: bold;color: #333333;width: 156px;height: 43px;border: 1px solid #d3d3d4;display: flex;justify-content: center;align-items: center;    background-color: #fff;}
.aft04 dl dd:hover .ri .name {background-color: #cd161d;color: #fff;}
.aft04 dl dd .ri .number{margin-top: 78px;}
.aft04 dl dd .ri .number .t {display: flex;align-items: center; margin-bottom: 17px; }
.aft04 dl dd .ri .number .t .icon {width: 65px;    margin-right: 12px;animation: bounce-up-data-v-7e3caf58 1.5s linear infinite;}
.aft04 dl dd .ri .number .t a {font-size: 40px;font-weight: bold;color: #cd161d;position: relative;}
.aft04 dl dd .ri .number .t a::after {    content: ""; position: absolute; left: 5px; bottom: -7px; width: 50px; height: 3px; background-color: #cd161d;}
.aft04 dl dd .ri .number span {font-size: 18px;color: #999999;}


@media screen and (max-width:1600px) {
    .aft01 {padding: 100px 0 90px;}
    .aft01 h4 { font-size: 25px; margin: 10px 0 22px; }
    .aft01 .box .min { width: 320px; height: 320px;}
    .aft01 .box:hover .min:nth-of-type(1) { left: 278px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 278px; }
    .aft01 .box .min h5 { font-size: 17px; margin-bottom: 26px; }
    .aft01 .box .min h6 { font-size: 22px; margin-bottom: 44px; }
    .aft01 .box .min img { width: 32px; }
    .aft01 .box { margin-bottom: 38px; }
    .aft02 .top p { font-size: 15px; line-height: 28px; margin-top: 8px; }
    .aft02 .top { margin-bottom: 30px;}
    .aft02 .top h4 { font-size: 24px; }
    .aft02 .top .line { height: 55px; margin: 20px 0; }
    .aft02 .bot .aft02Swiper { width: 1000px; }
    .aft02 .bot { width: 1032px; padding: 22px 0; }
    .aft02 .botF { padding: 0 13px;}
    .aft02 .botF .fa { font-size: 65px; }
    .aft02 .bot .box { padding: 43px 0 105px; box-shadow: 0 0 11px #d8d8d8;}
    .aft02 .bot .box .icon { height: 95px; width: 95px;}
    .aft02 .bot .box .icon img { width: 48px; }
    .aft02 .bot .box h4 { font-size: 26px; margin-bottom: 5px; margin-top: 44px; }
    .aft02 .bot .box h5 { width: 220px; font-size: 15px; line-height: 24px; height: 48px; }
    .aft02 .bot .box h5::after { width: 17px; height: 3px; bottom: -125px; }
    .aft02 .botF .fa-angle-left {left: -18px;}
    .aft02 .botF .fa-angle-right {right: -18px;}
    .aft02 { padding: 115px 0 90px; }
    .aft02 .bg_fix { height: 555px; }
    .aft03 .icenter2 .ri >ul li { padding-left: 15px; font-size: 14px; line-height: 24px; }
    .aft03 .icenter2 .ri >ul { margin: 16px 0 0px; }
    .aft03 dl dd { padding-top: 34px; padding-bottom: 12px; }
    .aft03 dl dd .icon { width: 74px; margin-right: 50px; }
    .aft03 dl dd .text h4 { font-size: 16px; margin-bottom: 8px; }
    .aft03 dl dd .text h4 strong { font-size: 58px; }
    .aft03 dl dd .text h4::after { height: 4px;}
    .aft03 dl dd .text p { font-size: 15px; }
    .aft03 .icenter2 .le { height: 529px; }
    .aft04 { padding: 100px 0 155px; }
    .aft04 dl dd { padding-left: 36px; padding-bottom: 36px;}
    .aft04 .hu_h3 { padding-left: 36px; }
    .aft04 dl { margin-top: 38px;}
    .aft04 dl dd .ri .number .t .icon { width: 48px; margin-right: 10px;}
    .aft04 dl dd .ri .number .t a { font-size: 30px; }
    .aft04 dl dd .ri .number .t a::after { width: 41px;}
    .aft04 dl dd .ri .number span { font-size: 16px; }
    .aft04 dl dd .ri .name { font-size: 16px; width: 133px; height: 38px;}
    .aft04 dl dd .bg { width: 115px; }
    .aft04 dl dd .ri .number { margin-top: 70px; }
}

@media only screen and (max-width:768px){
    .aft01 { padding: 50px 0; }
    .aft01 h4 { font-size: 22px; margin: 10px 0 22px; }
    .aft01 .box .min {        width: 192px; height: 192px; }
    .aft01 .box .min h5 { font-size: 14px; margin-bottom: 20px; }
    .aft01 .box .min h6 {      font-size: 16px; margin-bottom: 34px; height: 40px; display: flex; align-items: center;}
    .aft01 p { font-size: 16px; }
    .aft01 .box .min:nth-of-type(2) { margin-left: -25px; }
    .aft02 .top p { font-size: 15px; line-height: 26px; margin-top: 8px; }
    .aft02 .top .line { height: 42px; margin: 14px 0;position: relative; }
    .aft02 .top h4 { font-size: 22px; }
    .aft02 .bot { width: 110%; }
    .aft02 .top { margin-bottom: 20px; }
    .aft02 .botF { padding: 0 0px; }
    @keyframes hua2 { from { top: 0%; } to { top: 95%; } }
    .aft02 .bot .aft02Swiper { width: 100%; }
    .aft02 .bot { width: 100%;padding: 20px; }
    .aft02 .botF .fa-angle-left { left: -8px; }
    .aft02 .botF .fa-angle-right{ right: -8px; }
    .aft02 { padding: 80px 0 40px; }
    .aft02 .bg_fix { height: 483px; }
    .aft03 .icenter2 {flex-flow: wrap;}
    .aft03 .icenter2 .le {width: 100%;height: auto;margin-bottom: 20px;}
    .aft03 .icenter2 .ri {width: 100%;}
    .aft03 dl dd .icon { width: 60px; margin-right: 31px; }
    .aft03 { padding-bottom: 50px; }
    .aft04 {    padding: 50px 0 20px; background-attachment: unset;}
    .aft04 .hu_h3 { padding-left: 0px; }
    .aft04 dl { margin-top: 26px; flex-flow: wrap;}
    .aft04 dl dd {     padding-left: 22px; padding-bottom: 22px; width: fit-content; margin-bottom: 30px; }
    .aft04 dl dd .bg {     width: 72px; bottom: 0px; }
    .aft04 dl dd .le .imgbox {    height: 153px; width: 123px;}
    .aft04 dl dd .ri .name { font-size: 14px; width: 114px; height: 33px; }
    .aft04 dl dd .ri .number { margin-top: 38px; }
    .aft04 dl dd .ri .number .t a { font-size: 24px; }
    .aft04 dl dd .ri .number .t .icon { width: 32px; margin-right: 6px; }
    .aft04 dl dd .ri .number span { font-size: 14px; }
    .aft04 dl dd .ri { width: 60%; margin-left: 8%; }
    .aft01 .box:hover .min:nth-of-type(1) { left: 168px; }
    .aft01 .box:hover .min:nth-of-type(2) { right: 168px; }
}




/* 文化 */

.col-page-culture h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.col-page-culture .col-1 {
    padding: 12vh 0;
}

.col-page-culture .col-1 .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.col-page-culture .col-1 .flex .img {
    width: 51%;
}

.col-page-culture .col-1 .flex .content {
    width: 43%;
}

.col-page-culture .col-1 .flex .content .s-content {
    font-size: 16px;
    color: #142340;
    line-height: 2;
}

.col-page-culture .col-1 .flex .content .s-content strong {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin: 4vh 0 15px;
}

.col-page-culture .col-1 .flex .content .s-content p {
    margin-bottom: 15px;
}

.col-page-culture .col-1 .flex .content .s-content p:last-child {
    margin-bottom: 0;
}

.col-page-culture .col-1 .flex .content .s-content h3 {
    font-size: 40px;
    font-weight: bold;
    color: var(--color);
    line-height: 1.282;
}

.col-page-culture .col-2 {
    padding: 0 0 12vh;
}

.col-page-culture .col-2 .imgList {
    margin-bottom: 8vh;
    display: flex;
    align-items: flex-start;
}

.col-page-culture .col-2 .imgList img:nth-child(1) {
    width: 100%;
}

.col-page-culture .col-2 .imgList img:nth-child(2) {
    width: 62.4%;
}

.col-page-culture .col-2 h2 {
    margin-bottom: 10px;
}

.col-page-culture .col-2 .namemark {
    font-size: 2.625rem;
    font-weight: bold;
    color: var(--color);
    margin-bottom: 5.5vh;
}

.col-page-culture .col-2 ul.list {
    display: flex;
    flex-wrap: wrap;
}

.col-page-culture .col-2 ul.list li {
    width: calc(33% - 3px);
    margin-right: 4px;
    margin-bottom: 4px;
    background: #f5f6fa;
    transition: 0.25s;
    color: #142340;
    text-align: center;
    padding: 4vh 10px 4.2vh;
}

.col-page-culture .col-2 ul.list li:nth-child(4n) {
    margin-right: 0;
}

.col-page-culture .col-2 ul.list li .img {
    line-height: 43px;
}

.col-page-culture .col-2 ul.list li .img img {
    transition: 0.25s;
}

.col-page-culture .col-2 ul.list li .title {
    font-size: 24px;
    font-weight: bold;
    margin: 12px 0 6px;
}

.col-page-culture .col-2 ul.list li .content {
    font-size: 16px;
}

.col-page-culture .col-2 ul.list li:hover {
    background: var(--color);
    color: #fff;
}
.col-page-culture .col-2 ul.list li:hover .img img{filter: grayscale(100%) brightness(10000%);}
@media (max-width: 1460px) {
    .col-page-layout1 .col-1 .wrap .content ul li,.col-page-layout1 .col-2 .content ul li p:nth-child(1),.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3,.col-page-layout4 .col-2 .flex .content ul li p:nth-child(2),.col-page-layout6 .col-1 .wrap .content>ul li p:nth-child(2),.col-page-esg .col-2 ul.list li .content strong,.col-page-history .flex .content .s-content h4,.col-page-history .flex .content .namemark,.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(2) h3,.col-page-culture .col-2 ul.list li .title,.col-page-party .col-3 ul li .content .name,.col-page-investor .tongkun .flex .info h3 span.name,.col-page-contact .col-1 .flex .content h4,.col-page-contact .col-1 .flex .content a,.col-page-contact .col-2 .content,.col-page-contact .col-2 ul.list li .title,.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(1) ul li,.col-page-party .col-2 .child .flex .content .s-content {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .col-index-btn, .col-page-layout1 .col-3 ul li, .col-page-layout2 .col-1 .wrap, .col-page-layout3 .col-3 .child>li, .col-page-layout3 .col-3, .col-page-layout3 .col-1 .wrap, .col-page-layout4 .col-2, .col-page-layout4 .col-1 .wrap, .col-page-layout4 .col-3, .col-page-layout5 .col-1 .wrap, .col-page-layout5 .col-2 ul.list li, .col-page-layout6 .col-1 .wrap, .col-page-layout6 .col-2 ul.list li, .col-page-layout7 .col-1 .wrap, .col-page-layout8 .col-1 .wrap, .col-page-layout8 .col-2 .slide, .col-page-esg .col-1, .col-page-esg .col-3, .col-page-download, .col-page-news .news-top, .col-page-paper, .col-page-about .col-1, .col-page-about .col-3, .col-page-culture .col-1, .col-page-honor .col-1, .col-page-honor .col-2, .col-page-party .col-2 .child, .col-page-party .col-3, .col-page-digital, .col-page-investor .tongkun, .col-page-investor .col-1, .col-page-investor .col-2, .col-page-investor .col-3, .col-page-message, .col-page-career .col-1, .col-page-career .col-2, .col-page-career .col-3, .col-page-contact .col-1, .col-page-contact .col-2, .col-page-innovation .col-1 {
        padding-top: 6vh !important;
        padding-bottom: 6vh !important;
    }

    .home_banner .swiper_bg .swiper-container .swiper-slide,.col-index-product h2,#col-banner .swiper-slide .ban_cont .content h1,.col-page-layout1 .col-1 .wrap .content ul li strong, .col-page-layout1 .col-1 .wrap .content ul li strong .odometer,.col-page-layout1 .col-2 .content ul li p:nth-child(1) .odometer,.col-page .col-1 .wrap .flex .title .namemark,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1) #my_odometer1,.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3 strong, .col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1) h3 strong .odometer,.col-page-layout4 .col-2 .flex .content ul li p:nth-child(2) .odometer,.col-page-layout7 .col-1 .wrap .content>ul li h3,.col-page-layout8 .col-1 .wrap .content>ul li h3,.col-page-esg .col-1 .content ul li:nth-child(1) h3,.col-page-about .col-2 .wrap .flex .content .s-content,.col-page-about .col-3 .wrap .flex .content .s-content h2,.col-page-about .col-5 .wrap .flex .content h2,.col-page-history .flex .content .s-content h2,.col-page-history .flex .seven p,.col-page-culture .col-1 .flex .content .s-content h3,.col-page-honor .col-1 .flex .content .s-content h3,.col-page-party .col-1 .wrap .content .s-content strong,.col-page-party .col-2 .wrap .flex h2,.col-page-digital .development-container .swiper-slide .item.cur .title,.col-page-investor .tongkun .flex .info .title .name,.col-page-investor .tongkun .flex .info h3 .price,.col-page-career .col-1 .flex .content .s-content strong,.col-page-contact .col-1 .flex .content strong,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1) strong,.col-page-party .col-1 .child .flex .content strong {
        font-size: 32.5px;
    }

    .home_banner2 .home_banner2a .logo .logo3 .logo3a,.col-index-link .wrap .swiper-slide a .content .s-content,.col-index-product .namemark,.col-index-product .content .swiper-slide .inner .s-content,.col-index-more ul li h3,.col-index-news .flex .title .namemark,footer .flex .footer-info h2,ul.download_list li .content .title,.col-page-about .col-4 .wrap .flex ul.list li .title .name,.col-page-about .col-4 .wrap .flex ul.list li .s-content h3,.col-page-culture h2,.col-page-party .col-1 .wrap .content .s-content,.col-page-party .col-2 .wrap ul.list li .title,.col-page-party .col-2 .child .flex .content strong,.col-page-digital .development-container .swiper-slide .item .title,.col-page-investor .tongkun .flex .info h3 .rmb,.col-page-investor .tongkun .flex .info h3 .percent,.col-page-career .col-4 .content h3 {
        font-size: 18px;
    }

    .col-page-culture .col-2 ul.list li .img {
        line-height: 30px;
    }

    .col-page-culture .col-2 ul.list li .img img {
        height: 28px;
    }
}
@media (max-width: 992px) {
    .home_banner .swiper_bg .swiper-container .swiper-slide,.col-index-product h2,#col-banner .swiper-slide .ban_cont .content h1,.col-page .col-1 .wrap .flex .title .namemark,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1) #my_odometer1,.col-page-layout7 .col-1 .wrap .content>ul li h3,.col-page-layout8 .col-1 .wrap .content>ul li h3,.col-page-esg .col-1 .content ul li:nth-child(1) h3,.col-page-news .news-top .flex .right ul li a .date .d,.col-page-news .lists ul.list li a .date .d,.col-page-about .col-2 .wrap .flex .content .s-content,.col-page-about .col-3 .wrap .flex .content .s-content h2,.col-page-about .col-5 .wrap .flex .content h2,.col-page-history .flex .seven p,.col-page-culture .col-1 .flex .content .s-content h3,.col-page-honor .col-1 .flex .content .s-content h3,.col-page-party .col-1 .wrap .content .s-content strong,.col-page-party .col-2 .wrap .flex h2,.col-page-digital .development-container .swiper-slide .item.cur .title,.col-page-investor .tongkun .flex .info .title .name,.col-page-investor .tongkun .flex .info h3 .price,.col-page-career .col-1 .flex .content .s-content strong,.col-page-contact .col-1 .flex .content strong,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1) strong {
        font-size: 27px;
    }

    .col-index-about .flex #parallax-counter,.col-index-about .flex .inner,.col-page-layout1 .col-3 ul li .flex .img,.col-page-layout1 .col-3 ul li .flex .content,.col-page-layout1 .col-1 .wrap .content ul li,.col-page-layout2 .col-1 .wrap .content ul li:nth-child(1),.col-page-layout2 .col-1 .wrap .content ul li:nth-child(2),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(1),.col-page-layout3 .col-1 .wrap .content>ul>li:nth-child(2),.col-page-layout3 .col-3 .child>li .flex .content,.col-page-layout3 .col-3 .child>li .flex .img,.col-page-layout4 .col-1 .wrap .content>ul>li:nth-child(1),.col-page-layout4 .col-1 .wrap .content>ul>li:nth-child(2),.col-page-layout4 .col-2 .flex .img,.col-page-layout4 .col-2 .flex .content,.col-page-layout5 .col-1 .wrap .content>ul:nth-of-type(1)>li:nth-child(1),.col-page-layout5 .col-1 .wrap .content>ul:nth-of-type(1)>li:nth-child(2),.col-page-layout5 .col-2 ul li .flex .img,.col-page-layout5 .col-2 ul li .flex .content,.col-page-layout6 .col-2 ul li .flex .content,.col-page-layout6 .col-2 ul li .flex .img,.col-page-layout7 .col-2 .wrap .img,.col-page-layout7 .col-2 .wrap .content,.col-page-layout8 .col-1 .wrap .content>ul li,.col-page-layout9 .col-1 .wrap .content>ul li,.col-page-layout9 .col-2 ul li .flex .img,.col-page-layout9 .col-2 ul li .flex .content,.col-page-layout9 .col-1 .wrap .content>ul li:last-child,.col-page-esg .col-1 .content ul li:nth-child(1),.col-page-esg .col-1 .content ul li:nth-child(2),.col-page-news .news-top .flex .left,.col-page-news .news-top .flex .right,.col-page-about .col-2 .wrap .flex .img,.col-page-about .col-2 .wrap .flex .content,.col-page-about .col-3 .wrap .flex .content,.col-page-about .col-3 .wrap .flex .img,.col-page-about .col-4 .wrap .flex .content,.col-page-about .col-4 .wrap .flex ul.list,.col-page-about .col-5 .wrap .flex .img,.col-page-about .col-5 .wrap .flex .content,.col-page-history .flex .content,.col-page-history .flex .seven,.col-page-history .history-container .swiper-slide .flex .name,.col-page-history .history-container .swiper-slide .flex .content,.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(1),.col-page-history .history-container .swiper-slide .flex .content ul li:nth-child(2),.col-page-culture .col-1 .flex .content,.col-page-honor .col-1 .flex .content,.col-page-honor .col-1 .flex .img,.col-page-party .col-1 .child .flex .content,.col-page-party .col-1 .child .flex .img,.col-page-party .col-2 .wrap ul.list li:not(:first-child)::before,.col-page-party .col-2 .child .flex .img,.col-page-party .col-2 .child .flex .content,.col-page-party .col-3 ul li .content,.col-page-party .col-3 ul li .img,.col-page-digital .development-list .swiper-slide .flex .content,.col-page-digital .development-list .swiper-slide .flex .img,.col-page-investor .tongkun .flex .info,.col-page-investor .tongkun .flex .content,.col-page-investor .col-2 .flex .content,.col-page-investor .col-2 .flex .img,.col-page-investor .col-3 .flex .content,.col-page-investor .col-3 .flex .message,.col-page-career .col-1 .flex .content,.col-page-career .col-1 .flex .img,.col-page-career .col-3 .flex .img,.col-page-career .col-3 .flex .content,.col-page-contact .col-1 .flex .content,.col-page-contact .col-1 .flex .img,.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(1),.col-page-innovation .col-1 .content>ul:nth-of-type(1)>li:nth-child(2),.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(1),.col-page-innovation .col-1 .content>ul:nth-of-type(2)>li:nth-child(2) {
        width: 100%;
        margin-bottom: 30px;
        max-width: none;
        display: block;
    }

    .col-page-culture .col-1 .flex .img {
        width: 50%;
        margin: 0 auto 30px;
    }

    .col-page .col-1 .wrap .flex .img {
        max-width: 50px;
    }

    .col-page-culture .col-2 .namemark {
        font-size: 18.75px;
    }
}

@media (max-width: 768px) {
    .col-page-culture .col-2 ul.list li {
        width: calc(50% - 2px);
        margin-right: 4px;
    }

    .col-page-culture .col-2 ul.list li:nth-child(4n) {
        width: calc(50% - 2px);
        margin-right: 4px;
    }

    .col-page-culture .col-2 ul.list li:nth-child(2n) {
        margin-right: 0;
    }
}
.factory-list ul{
    margin: -15px;
}

.factory-list ul li{
    padding: 15px;
}
.proNav {
    padding: 100px 0;
}
.proNav .slick-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    background-position: center;
    background-size: 12px;
    background-repeat: no-repeat;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0);
    opacity: .5;
    transition: .5s;
    border-radius: 50px;
    font-size: 0;
    color: transparent;
}
.proNav .slick-arrow:hover {
    opacity: 1;
}
.proNav .slick-arrow.slick-prev {
    right: 101%;
    background-image: url('../images/banner-btn-l.png');
}
.proNav .slick-arrow.slick-next {
    left: 101%;
    background-image: url('../images/banner-btn-r.png');
}
.proNav ul {
    margin: -10px;
}
.proNav ul li {
    padding: 10px;
}
.proNav ul li a.img-box {
    display: block;
}
.proNav ul li span.h6 {
    display: block;
    font-size: 18px;
    margin-top: .5em;
}
.downNav {
    float: right;
    position: relative;
    z-index: 2;

}
.downNav span {
    font-size: 22px;
    width: 2em;
    height: 2em;
    /*border: 1px solid #999;*/
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #9b2a2c;
    color: #fff;

}
.downNav ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    background-color: white;
    font-size: 16px;
    display: none;
}
.downNav:hover ul {
    display: block;
}
.downNav ul li {
    border-top: 1px solid #eee;
}
.downNav ul li a {
    padding: .5em;
    display: block;
    transition: .5s;
}
.downNav ul li a:hover {
    background-color: var(--color);
    color: white;
}
#mask {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: none;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 111;
    display: none
}

#mask.active {display: block!important}
#mask .mask-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

}

#mask .mask-close {
    position: absolute;
    z-index: 1;
    right: 10%;
    top: 17%;
    color: #000;
    cursor: pointer;
    font-size: 18px
}

#mask .mask-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1100px) {
    #mask .mask-close {
        right: 3%;
        top: 3%
    }
    #mask .mask-inner .item {width: 100%}
    #mask .prodet-page {
        padding: 0
    }
    #mask .prodet-page .prodet-1 .prodet-box {
        height: 100vh;
        overflow: auto
    }
}

.custom-2 .ui .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.custom-2 .ui .top .left {
    padding-right: 65px;
}
.custom-2 .ui .top .left .h3 {
    padding-left: 35px;
    border-left: 3px solid var(--color);
}
.custom-2 .ui .top .left p {
    line-height: 2;
    margin-top: 35px;
}
.custom-2 .ui .bottom {
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}
.custom-2 .ui .bottom .left {
    padding-right: 80px;
}
.custom-2 .ui .bottom .left p {
    max-width: 600px;
    line-height: 1.8;
    margin-top: 45px;
}
.custom-2 .ui .bottom .right {
    /*padding-right: 80px;*/
}
.custom-2 .ui .bottom .right ul.list3 li.active {
    background: #f3f3f3;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    transition: 0.3s all;
}
.custom-2 .ui .bottom .right ul.list3 li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 28px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #eee;
}
.custom-2 .ui .bottom .right ul.list3 li .top em {
    margin-left: 25px;
    font-family: "rom";
}
.custom-2 .ui .bottom .right ul.list3 li .top i.fr {
    position: absolute;
    top: 16px;
    right: 25px;
}
.custom-2 .ui .bottom .right ul.list3 li .content {
    padding: 10px 30px 20px 30px;
    line-height: 1.8;
    display: none;
    font-size: 16px;
}
@media screen and (max-width: 1250px) {
    .font-48 {
        font-size: 30px;
    }
    .custom-2 .ui .bottom .left {
        padding-right: 0px;
    }
    .font-36 {
        font-size: 28px;
    }
    .font-16 {
        font-size: 16px;
        line-height: 30px;
    }
}
@media screen and (max-width: 1000px) {
    .font-30 {
        font-size: 18px;
        line-height: 32px;
    }
    .custom-1 .btm ul.list2 li.item {
        width: 120px;
        height: 120px;
    }
    .custom-2 .ui .bottom .right {
        padding-right: 0;
    }
    .custom-2 .ui .bottom {
        padding: 30px 25px;
    }
}
@media screen and (max-width: 700px) {
    .font-40 {
        font-size: 28px;
    }
    .font-20 {
        font-size: 14px;
    }
    .custom-2 .ui .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .custom-2 .ui .top .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2 .ui .top .right {
        width: 100%;
    }
    .custom-2 .ui .bottom .right ul.list3 li .top{
        flex-wrap: nowrap;
        font-size: 16px;
    }
    .custom-2 .ui .bottom .left {
        padding-right: 0px;
        width: 100%;
    }
    .custom-2 .ui .bottom .right {
        padding-right: 0;
        width: 100%;
        margin-top: 40px;
    }
}
@media screen and (max-width: 500px) {
    .font-40 {
        font-size: 20px;
    }
    .font-48 {
        font-size: 24px;
        line-height: 40px;
    }
    .font-36 {
        font-size: 24px;
    }
}

.contact2-page .marginBox {
    padding-top: 00px;
}
.contact2-page .contact-1 {
    padding: 150px 0 110px;
    text-align: center;
}
.contact2-page .contact-1 .text {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 1.6;
    max-width: 650px;
    display: block;
    margin: 1em auto 3em;
}
.contact2-page .contact-1 .list ul {
    margin: -20px;
    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;
}
.contact2-page .contact-1 .list ul li {
    padding: 20px;
}
.contact2-page .contact-1 .list ul li .box {
    padding: 35px 5% 35px;
    border: 1px solid #bfbfbf;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    height: 100%;
    position: relative;
    top: 0;
}
.contact2-page .contact-1 .list ul li .box i {
    display: block;
}
.contact2-page .contact-1 .list ul li .box i img {
    display: block;
    margin: 0 auto;
}
.contact2-page .contact-1 .list ul li .box span.h6 {
    font-weight: 500;
    font-size: 24px;
    color: #242424;
    margin: 1em 0 .5em;
    display: block;
}
.contact2-page .contact-1 .list ul li .box p {
    font-size: 18px;
    color: #8e8e8e;
    line-height: 2;
}
.contact2-page .contact-1 .list ul li .box:hover {
    border-color: var(--color);
    top: -20px;
}
.contact2-page .map {
    position: relative;
    z-index: 1;
}
.contact2-page .form ul {
    margin: -15px -7px;
}
.contact2-page .form ul li {
    padding: 15px 7px;
}
.contact2-page .form ul li input,
.contact2-page .form ul li textarea {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: .6em 1em;
    border: 1px solid #bfbfbf;
}
.contact2-page .form ul li input::-webkit-input-placeholder, .contact2-page .form ul li textarea::-webkit-input-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input:-moz-placeholder, .contact2-page .form ul li textarea:-moz-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input::-moz-placeholder, .contact2-page .form ul li textarea::-moz-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input:-ms-input-placeholder, .contact2-page .form ul li textarea:-ms-input-placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li input::placeholder,
.contact2-page .form ul li textarea::placeholder {
    color: #8e8e8e;
}
.contact2-page .form ul li textarea {
    height: 150px;
}
.contact2-page .form ul li input[type="submit"] {
    border: none;
    background: var(--color);
    color: white;
    /*font-weight: bold;*/
    font-size: 20px;
    font-family: 'rom';
    /*text-transform: uppercase;*/
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.contact2-page .form ul li input[type="submit"]:hover {
    background: #242424;
}
.contact2-page .form ul li.wid-100 {
    width: 100%;
}
@media screen and (max-width: 1600px) {
    .contact2-page .form ul li {
        padding: 6px;
    }
    .contact2-page .form ul {
        margin: -6px;
    }
    .contact2-page .form ul li input,
    .contact2-page .form ul li textarea,
    .contact2-page .form ul li input[type="submit"] {
        font-size: 16px;
    }
}
@media screen and (max-width: 1000px) {
    .contact2-page .form ul li input,
    .contact2-page .form ul li textarea,
    .contact2-page .form ul li input[type="submit"] {
        font-size: 14px;
        padding: .5em;
    }
}
#footerMask {
    background: url(../images/foot-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 5.7vw 0;
    color: #fff;
}
#footerMask .column {
    padding-left: 59px;
}
#footerMask .Tit {
    font-size: 1.56vw;
}
#footerMask .content {
    line-height: 2;
}
@media (max-width: 1000px) {
    #footerMask .Tit {
        font-size: 30px;
    }
    #footerMask {
        padding: 60px 0;
    }
}
@media (max-width: 700px) {
    #footerMask .column {
        padding: 0 3%;
    }
    #footerMask .Tit {
        font-size: 24px;
    }
}
@media (max-width: 500px) {
    #footerMask {
        text-align: right;
    }
    #footerMask .Tit {
        font-size: 20px;
    }
    #footerMask .Tit br {
        display: none;
    }
}

.hl_history {
    padding-bottom: 7rem;
    background: url(../images/hisbg.png) no-repeat left bottom;
    background-size:cover;
}
.hl_history .box .banner {
    margin: 1rem 0 4rem;
    position: relative;
}
.hl_history .box .banner .item {
    position: relative;
    text-align: center;
}
.hl_history .box .banner .item .number {
    font-size: 22.75rem;
    /*font-family: 'GOTHICB';*/
    color: #e5e5e5;
    line-height: 1;
    /*max-width: 80rem;*/
    width: 100%;
    font-weight: bold;
}
.hl_history .box .banner .item .text {
    font-size: 22px;
    line-height: 32px;
    position: absolute;
    top: 44%;
    left: 0;
    /*max-width: 100rem;*/
    width: 100%;
    color: #111;
}
.hl_history  .button .btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3.75rem;
    line-height: 3.75rem;
    background: #e2e2e2;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
.hl_history  .button .btn:hover {
    background: #2f5597;
}
.hl_history  .button .prev {
    left: 0;
}
.hl_history  .button .next {
    right: 0;
}
.hl_history .box .banner1 {
    position: relative;
    overflow: hidden;
}
.hl_history .box .banner1::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 19px;
    height: 1px;
    background: #ddd;
}
.hl_history .box .banner1 .swiper-slide {
    cursor: pointer;
}
.hl_history .box .banner1 .swiper-slide .item {
    text-align: center;
}
.hl_history .box .banner1 .swiper-slide .item .dian span {
    display: inline-block;
    width: 6px;
    margin-bottom: -9px;
    height: 6px;
    border-radius: 50%;
    background: #999999;
}
.hl_history .box .banner1 .swiper-slide .item p {
    margin-top: 0.9375rem;
    font-size: 1rem;
    color: #999;

}
.hl_history .box .banner1 .swiper-slide-thumb-active .item .dian span {
    background: #2f5597;
    -webkit-animation: big 1.5s infinite;
    -moz-animation: big 1.5s infinite;
    animation: big 1.5s infinite;
}
.hl_history .box .banner1 .swiper-slide-thumb-active .item p {
    color: #2f5597;
}
@-webkit-keyframes big {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}
@-moz-keyframes big {
    0% {
        -moz-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -moz-transform: scale(2);
        transform: scale(2);
    }
}
@keyframes big {
    0% {
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        transform: scale(0.8);
    }
    100% {
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        transform: scale(2);
    }
}
.p90 {
    padding-top: 5.625rem;
}
.font-48 {
    font-size: 48px;
}
@media screen and (max-width: 1000px) {
    .hl_history .box .banner .item .text p{
        max-height: 160px;
        overflow-y: auto;
    }
    .hl_history .box .banner .item{
        width:100%;
        padding: 0 15px;
    }
    .hl_history .box .banner1 .swiper-slide .item p{
        font-size: 18px;
    }
    .hl_history .box .banner .item .number{
        font-size: 260px;
    }
    .hl_history .button .btn{
        display: none;
    }
}
@media screen and (max-width: 700px) {
    .hl_history .box .banner .item .text p{
        max-height: 100px;
        overflow-y: auto;
    }
    .hl_history .box .banner .item .number{
        font-size: 190px;
    }
}
@media screen and (max-width: 500px) {
    .hl_history .box .banner .item .number{
        font-size: 120px;
    }
}

#mask .prodet-page {
    padding:  3%;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    background: #fff;
    height: 750px;
    overflow: auto;

    display: flex;
    align-items : center;
    flex-wrap: wrap;
    width: 1580px;
}

#mask .prodet-page .container {
    width: 100%;
}

#mask .prodet-page .prodet-1 .prodet-box .left {
    width: 50%;
    padding-right: 3.5rem
}

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

#mask .prodet-page .prodet-1 .prodet-box .left .big .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 48px;
    border: none;
    color: transparent;
    z-index: 5;
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .slick-prev {
    background: url(../images/banner-btn-l.png) no-repeat center center;
    background-size: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .slick-next {
    background: url(../images/banner-btn-r.png) no-repeat center center;
    background-size: 12px;
    background-color: rgba(0, 0, 0, 0.5);
    right: 0
}

#mask .prodet-page .prodet-1 .prodet-box .left .big ul li img {
    width: 100%
}

#mask .prodet-page .prodet-1 .slick-track {
    display: flex;
    align-items: center;
}
#mask .prodet-page .prodet-1 .prodet-box .left .big .btn {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 4.5rem;
    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
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .btn a {
    display: inline-block;
    padding: 13px 3.6rem;
    font-size: 18px;
    line-height: 1;
    color: #20584f;
    border: 1px solid #20584f;
    background: #fff;
    margin: 0 1rem;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .btn a:hover {
    background: #20584f;
    border: 1px solid #20584f;
    color: #fff
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .btn a.on {
    color: #fff;
    background: #20584f
}

#mask .prodet-page .prodet-1 .prodet-box .left .big .btn a.on:hover {
    background: #20584f
}

#mask .prodet-page .prodet-1 .prodet-box .right {
    width: 50%;
    padding-top: 25px
}

#mask .prodet-page .prodet-1 .prodet-box .right h3 {
    font-size: 26px;
    line-height: 2;
    color: #000;
    font-weight: 700;
    font-family: 'Montserrat';
    text-transform: capitalize
}

#mask .prodet-page .prodet-1 .prodet-box .right p {
    font-size: 15px;
    color: #000;
    line-height: 2;
    font-family: 'Montserrat-ExtraLight';
    font-weight: 700;
    text-transform: capitalize
}

#mask .prodet-page .prodet-1 .prodet-box .right h4 {
    font-size: 16px;
    line-height: 2;
    color: #000;
    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;
    font-family: 'Montserrat'
}

#mask .prodet-page .prodet-1 .prodet-box .right .tit {
    padding-bottom: 1rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .tit h1 {
    margin-bottom: 2rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .text {
    padding-bottom: 1.8rem;
    max-height: 220px;
    overflow: overlay;
    line-height: 2
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery {
    margin: 20px 0
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .list1 .acc .add {
    padding: 10px
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery h4 {
    margin-bottom: 0.8rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .slick ul {
    margin: 0 -1.3rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .slick ul li {
    padding: 0 1.3rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .slick ul li a {
    display: block;
    overflow: hidden
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .slick ul li a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1)
}

#mask .prodet-page .prodet-1 .prodet-box .right .pro-gallery .slick ul li a img {
    width: 100%
}

#mask .prodet-page .prodet-1 .prodet-box .right .det h4 {
    margin-bottom: 1.5rem
}

#mask .prodet-page .prodet-1 .prodet-box .right .det h4 img {
    max-width: 9px;
    margin-right: 12px
}
#mask .prodet-page .prodet-1 .prodet-box .right .btn a {
    display: inline-block;
    font-size: 16px;
    padding: .6em 1.5em;
    background-color: var(--color);
    color: white;
    transition: .5s;
}
#mask .prodet-page .prodet-1 .prodet-box .right .btn a:hover {
    background-color: black;
}
#mask .prodet-page .prodet-1 .prodet-box .right .share {
    margin-top: 2.8rem;
    display: block
}

#mask .prodet-page .prodet-1 .prodet-box .right .share h4 {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #000
}

#mask .prodet-page .prodet-1 .prodet-box .right .share ul {
    display: inline-block;
    vertical-align: middle
}

#mask .prodet-page .prodet-1 .prodet-box .right .share ul li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    padding: 0;
    margin: 0;
    margin-left: 1.5rem;
    color: #000;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}
@media screen and (max-width: 1250px) {
    .inner-banner h2.tit,.about-page .about-3 .bottom .left h2 {
        font-size: 40px;
    }
    .about-page .about-1 .about-box .right .h3,.product-page .title h1 {
        font-size: 32px;
    }
    .about-page .about-2 {
        background-image: unset;
        padding: 60px 0;
    }
    .about-page .about-2 .right {
        width: 100%;
    }
    .about-page .about-2 .left {
        display: none;
    }
    .about-page .about-3 .top .left img {
        margin: 0;
    }
    .about-page .about-3 .top .right ul li {
        font-size: 24px;
        padding-left: 3em;
        margin: 10px 0;
    }
    .about-page .about-3 .top .right ul li:after {
        width: 2.5em;
    }
    .about-page .about-3 .top .right ul p,.about-page .about-3 .bottom .left p,.about-page .about-2 .right p {
        font-size: 16px !important;
    }
    .about-page .about-2 .right h2,.about-page .about-6 h2 {
        font-size: 24px !important;
    }
    .about-page .about-1 .about-box .left .play {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    .about-page .about-1 .about-box .left .play i {
        font-size: 20px;
    }
    .about-page .about-6 .historyBox ul li {
        padding: 0 5px;
    }
    .about-page .about-6 .historyBox ul {
        margin: 0 -5px;
    }
    .about-page .about-6 .historyBox {
        margin-top: 30px;
    }
    .about-page .about-3 .bottom {
        padding-bottom: 80px;
    }
    .aft02 .bot .aft02Swiper,.aft02 .bot {
        width: 100%;
    }
    .hu_h3 {
        font-size: 28px;
    }
    .aft02 .top h4 {
        font-size: 20px;
    }
    .aft02 .bot .box h4 {
        font-size: 22px;
    }
    .aft02 .bot .box p {
        font-size: 16px;
    }
    .custom-2 .ui .bottom .right ul.list3 li .top {
        padding: 10px;
    }
    .font-20 {
        font-size: 18px;
    }
    .custom-2 .ui .bottom {
        padding: 0;
    }
    .contact2-page .contact-1 {
        padding: 50px 0 80px;
    }
    .contact2-page .contact-1 .text {
        font-size: 16px;
    }
    .patent-top .list1-right {
        flex: unset;
    }
}
@media screen and (max-width: 1000px) {
    .inner-page,.hl_history {
        margin-top: 40px;
    }
    .about-page .about-1 .about-box .right .h3 {
        font-size: 24px;
        margin: 15px 0;
    }
    .product-page .title h1,.font-48,.patent-top .title-cn {
        font-size: 24px;
    }
    .hl_history .box .banner .item .text {
        font-size: 18px;
    }
    .patent-top .right-title {
        font-size: 16px;
    }
    .hl_history .box .banner .item .number {
        font-size: 80px;
    }
    .about-page .about-3 .top .right ul p, .about-page .about-3 .bottom .left p, .about-page .about-2 .right p {
        font-size: 14px !important;
        line-height: 2!important;
    }
    .about-page .about-3 .top .right {
        width: 100%;
        padding: 25px 0;
    }
    .about-page .about-3 .top .left {
        width: 100%;
        padding: 0;
    }
    .about-page .about-3 .top {
        display: block;
    }
    .about-page .about-3 .top .right ul {
        width: 100%;
    }
    .about-page .about-3 .top .right ul li {
        font-size: 20px;
    }
    .about-page .about-3 .bottom .left {
        width: 100%;
        padding-left: 0;
    }
    .about-page .about-3 .bottom .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
    .inner-banner h2.tit, .about-page .about-3 .bottom .left h2 {
        font-size: 28px !important;
    }
    .product-page .product-box .product-list ul li a p {
        font-size: 16px;
    }
    .btn_pro_det .hover_more {
        font-size: 14px;
    }
    .btn_pro_det {
        line-height: 48px;
    }
    .inner-page .m-page span, .inner-page .m-page a {
        font-size: 14px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .inner-page .mbx a {
        padding: 0 5px;
    }
    .inner-page .mbx {
        padding-left: 0;
    }
    .inner-page .mbx:after {
        display: none;
    }
    .service-page div.formBox h4,.proNav h3 {
        font-size: 28px !important;
    }
    .service-page div.formBox {
        padding: 20px 0;
    }
    .service-page div.formBox ul li input[type=submit] {
        font-size: 16px;
    }
}
@media screen and (max-width: 700px) {
    .about-page .about-6 {
        padding: 50px 0;
    }
    .hu_h3 {
        font-size: 24px;
    }
}
.after-inner #main.contact-page .row{
    padding-top: 0;
}
.contact-page .init-1 h2 {
    font-size: 36px;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 0 0 20px;
    border-bottom: 1px solid #eee;
    text-transform: capitalize;
}
.contact-page .init-1 ul {
    padding: 80px 0px 0px;
}
.contact-page .init-1 ul li {
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.contact-page .init-1 ul li i {
    width: 100px;
    height: 100px;
    border: 2px solid #ccc;
    border-radius: 100%;
    line-height: 100px;
    text-align: center;
    font-size: 24px;
    color: #969696;
    margin: 0 auto;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.contact-page .init-1 ul li h3 {
    font-size: 14px;
    color: black;
    padding: 20px 0 10px;
    text-transform: capitalize;
}
.contact-page .init-1 ul li p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}
.contact-page .init-1 ul li:hover {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
}
.contact-page .init-1 ul li:hover i {
    color: #000000;
}
.contact-page .init-2 {
    border-top: 0px solid #d6d6d6;
    border-bottom: 0px solid #d6d6d6;
}
.contact-page .init-2 #map img,
.contact-page .init-2 #map label {
    max-width: none;
    width: auto;
}
.contact-page .init-3 h2 {
    font-size: 36px;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 50px 0 20px;
    border-bottom: 1px solid #eee;
}
.contact-page .init-3 ul {
    margin: -12px;
    display: inline-block;
    width: 100%;
    padding: 70px 0;
}
.contact-page .init-3 ul li {
    width: 50%;
    padding: 12px;
    float: left;
    text-align: center;
}
.contact-page .init-3 ul li.wid-100 {
    width: 100%;
}
.contact-page .init-3 ul li input,
.contact-page .init-3 ul li textarea {
    outline: none;
    background: none;
    border: 1px solid #ccc;
    width: 100%;
    padding: 0 10px;
}
.contact-page .init-3 ul li input::-webkit-input-placeholder,
.contact-page .init-3 ul li textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:-moz-placeholder,
.contact-page .init-3 ul li textarea:-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input::-moz-placeholder,
.contact-page .init-3 ul li textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:-ms-input-placeholder,
.contact-page .init-3 ul li textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:focus,
.contact-page .init-3 ul li textarea:focus {
    border-color: #000000;
}
.contact-page .init-3 ul li input {
    line-height: 60px;
    text-transform:capitalize;
    font-size:15px;
}
.contact-page .init-3 ul li textarea{
    text-transform:capitalize;
    font-size:15px;
}
.contact-page .init-3 ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding: 10px 50px;
    line-height: normal;
    color: white;
    font-size: 18px;
    background: #9b2a2c;
    margin: 50px auto 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.contact-page .init-3 ul li input[type="submit"]:hover {
    box-shadow: 0 5px 10px 0 #ccc;
    -webkit-box-shadow: 0 5px 10px 0 #ccc;
    -moz-box-shadow: 0 5px 10px 0 #ccc;
    -ms-box-shadow: 0 5px 10px 0 #ccc;
    -o-box-shadow: 0 5px 10px 0 #ccc;
}
.contact-page .init-3 ul li textarea {
    height: 200px;
    max-width: 100%;
    min-width: 100%;
    line-height: 24px;
    padding-top: 15px;
}
.contact-page .init-3 ul li .yam {
    position: relative;
}
.contact-page .init-3 ul li .yam input {
    padding-right: 50%;
}
.contact-page .init-3 ul li .yam .img {
    position: absolute;
    right: 2px;
    top: 20px;
}
.contact-page .init-3 ul li .yam .img img,
.contact-page .init-3 ul li .yam .img p {
    display: inline-block;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    vertical-align: middle;
}
@media screen and (max-width: 1200px){
    .contact-page .init-3 h2,.contact-page .init-1 h2 {
        font-size: 30px;
    }
    .contact-page .init-3 ul li input {
        line-height: 40px;
    }
    .contact-page .init-3 ul li .yam .img {
        top: 12px;
    }
    .contact-page .init-3 h2, .contact-page .init-1 h2 {
        font-size: 22px;
    }
    .contact-page .init-1 ul li p {
        font-size: 14px;
    }
}

@media screen and (max-width: 700px){
    .contact-page .init-1 ul li {
        width: 50% !important;
        float: none;
        display: inline-block;
        vertical-align: top;
        margin-left: -5px;
        margin-top: 20px;
    }
    .contact-page .init-1 ul li:nth-child(2n) {
        margin-left: 0;
    }
    .contact-page .init-1 ul li i {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
    .contact-page .init-1 ul {
        padding: 40px 0;
    }
    .button-group .button:nth-child(2) {
        display: none;
    }
    .contact-page .init-3 ul li {
        width: 100%;
    }
    .contact-page .init-3 ul li input[type="submit"] {
        width: 100%;
        margin-top: 20px;
    }
    .contact-page .init-1 h2 {
        padding: 30px 0 10px;
    }

}
.history-page2 {
    padding: 80px 0;
}
.history-page2 .container{
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(/jianandatex/2023/06/16/milestones_background.jpg) no-repeat top center;;
}
.history-page2 .container .list{
    width: 50%;
    text-align: center;
    margin: 100px auto 0;
}
.history-page2 .container .list:nth-child(1){
    margin-top: 0;
}
.history-page2 .tips{
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
    color: #c7c7c7;
}
.history-page2 .title_s{
    background: #eee;
    height: 1px;
    position: relative;
    width: 100%;
    z-index: 2;
}
.history-page2 .title_s img{
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}
.history-page2 .container .list .title{
    line-height: 1;
    font-size: 60px;
    color: #842f31;
}
.history-page2 .container .list .des{
    margin-top: 30px;
    color: #111;
    font-size: 16px;
}
.history-page2 .container .list .des p{
    font-size: 16px;
}
.history-page2 .container .list:nth-child(2){
    margin-left: 32%;
}
.history-page2 .container .list:nth-child(3){
    margin-left: 12%;
}
.history-page2 .container .list:nth-child(5){
    margin-left: 38%;
}
.history-page2 .container .list:nth-child(5){
    margin-left: 38%;
}
/*add history*/
.history-list {
    margin: 50px 0;
    position: relative;
}
.history-list:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #ddd;
    left: 50%;
    top: 0;
}
.history-list .list p {
    font-weight: 300;
    color: #504a44;
    font-size: 16px;
    line-height: 2;
    text-align: left;
}
.history-list .list .i-text {
    float: left;
    width: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    position: relative;
}
.history-list .list .i-text:after {
    content: '';
    position: absolute;
    width: 9px;
    height: 15px;
    background: url(../images/r_03.jpg) no-repeat center;
    right: -9px;
    top: 40%;
    z-index: 8;
}
.history-list .list .i-text .text1 {
    border: 1px solid #ededed;
    padding: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: right;
    width: 92%;
}
.history-list .list .i-text .text1 .grid-box .column {
    width: 100%;
}
.history-list .list .i-text .text1 .grid-box .column:nth-child(2) {
    width: 25%;
    padding-left: 10px;
}
.history-list .list .i-text .text1 .grid-box .column:nth-child(2) img {
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
.history-list .list .i-text .text1 .grid-box .column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.history-list .list .i-text:hover .text1 {
    background: #eee;
}
.history-list .list .i-text:hover .img img {
    transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
}
.history-list .list .i-year {
    float: right;
    width: 50%;
}
.history-list .list .i-year .year1 {
    padding: 4% 30px 0 8%;
}
.history-list .list .i-year .year1 h3 {
    font-size: 32px;
    font-weight: 700;
}
.history-list .list:nth-child(2n) .i-text {
    float: right;
}
.history-list .list:nth-child(2n) .i-text:after {
    background: url(../images/l_03.jpg) no-repeat center;
    right: auto;
    left: -8px;
}
.history-list .list:nth-child(2n) .i-text .text1 {
    float: right;
    text-align: left;
}
.history-list .list:nth-child(2n) .i-text .text1 .grid-box .column:nth-child(1) {
    float: right;
    padding: 0 0 0 10px;
}
.history-list .list:nth-child(2n) .i-text .text1 .grid-box .column:nth-child(2) {
    float: left;
}
.history-list .list:nth-child(2n) .i-year {
    float: left;
}
.history-list .list:nth-child(2n) .i-year h3,
.history-list .list:nth-child(2n) .i-year p {
    text-align: right;
}
.history-list .list:nth-child(2n) .i-year .year1 {
    padding: 10% 8% 0 30px;
}

@media screen and (max-width: 1400px) {
    .history-page2 .container .list .title{
        font-size: 60px;
    }
}

@media screen and (max-width: 1000px) {
    .history-page2 .title_s{
        display: none;
    }

    .history-page2 .container{
        background: none;
        padding-top: 0;
    }
    .history-page2 .container .list{
        width: 100%;
        margin: 40px auto 0 !important;
    }
}

@media screen and (max-width: 500px) {
    .history-page .list{
        display: flex;
        flex-wrap: wrap;
    }
    .history-list:after{
        left: 0;
    }

    .history-list .list .i-text{
        width: 100%;
    }
    .history-list .list .i-year{
        width: 100%;
        text-align: center;
        order: -1;
    }
    .history-list .list .i-text .text1{
        text-align: center;
        margin-left: auto;
    }

    .history-list .list .i-text:after{
        left: 0;
    }

    .history-list .list:nth-child(2n) .i-text:after{
        background: url(/template/cn/images/r_03.jpg) no-repeat center;
        left: 0;
    }

    .history-list .list:nth-child(2n) .i-year h3, .history-list .list:nth-child(2n) .i-year p{
        text-align: center;
    }

    .history-page2{
        padding: 40px 0;
    }
    .history-page2 .container{
        padding-top: 0;
        padding-bottom: 20px;
    }
    .history-page2 .container .list .title{
        font-size: 24px;
    }
    .history-page2 .container .list .des{
        font-size: 16px;
        margin-top: 10px;
    }
}
.newsTab {
    padding-top: 50px;
}
.newsTab .container {
    padding-bottom: 20px;
    border-bottom: 1px solid #767676;
}
.newsTab .container .list {
    margin-top: 10px;
    color: #767676;
    position: relative;
    width: 290px;
    text-align: center;
    padding: 0 10px;
}
.newsTab .container .list::before {
    content: '/';
    position: absolute;
    top: 0;
    right: 0;
}
.newsTab .container .list:hover,
.newsTab .container .list.active {
    color: #9b2a2c;
    font-weight: bold;
}
.newsTab .container .list:hover::before,
.newsTab .container .list.active::before {
    color: #767676;
}
.newsTab .container .list:last-child::before {
    display: none;
}
.news-page .init-1 .container ul {
    padding-top: 40px;
}
.news-page .init-1 .container ul li {
    margin-top: 40px;
}
.news-page .init-1 .container ul li .box {
    position: relative;
    padding: 20px 0;
    z-index: 2;
}
.news-page .init-1 .container ul li .box .time {
    width: 140px;
    color: #666666;
}
.news-page .init-1 .container ul li .box .time .date {
    color: #000;
}
.news-page .init-1 .container ul li .box .imgC {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    width: 32%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 30px rgba(56, 84, 184, 0.1);
    box-shadow: 0 0 30px rgba(56, 84, 184, 0.1);
    overflow: hidden;
}
.news-page .init-1 .container ul li .box .imgC img {
    width: 100%;
}
.news-page .init-1 .container ul li .box .cont {
    width: -webkit-calc(-72%);
    width: -moz-calc(-72%);
    width: calc(68% - 140px);
    padding: 20px 90px 20px 50px;
    position: relative;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
.news-page .init-1 .container ul li .box .cont .title:hover {
    color: #9b2a2c;
}
.news-page .init-1 .container ul li .box .cont .des {
    color: #767676;
    margin-top: 16px;
}
.news-page .init-1 .container ul li .box .cont .more {
    margin-top: 30px;
}
.news-page .init-1 .container ul li .box .cont .more .moreCir {
    background-color: #000;
}
.news-page .init-1 .container ul li .box .cont .more:hover .moreCir {
    background-color: #9b2a2c;
}
.news-page .init-1 .container ul li .box .sub {
    opacity: 0;
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff;
     box-shadow:0 0 30px rgb(199 199 199 / 20%);
    box-shadow:0 0 30px rgb(199 199 199 / 20%);
    border-radius: 20px;
}
.news-page .init-1 .container ul li:hover .sub {
    opacity: 1;
}
.newdet-page .container .left {
    width: 75%;
    border-radius: 20px;
     box-shadow:0 0 30px rgb(199 199 199 / 20%);
     box-shadow:0 0 30px rgb(199 199 199 / 20%);
    padding: 70px;
}
.newdet-page .container .left .title {
    text-align: center;
}
.newdet-page .container .left .time {
    color: #666666;
    margin-top: 26px;
    text-align: center;
}
.newdet-page .container .left .des {
    margin-top: 40px;
    color: #666666;
}
.newdet-page .container .left .m-link {
    margin-top: 50px;
    border-top: 1px solid #666666;
    padding-top: 16px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.newdet-page .container .left .m-link .list {
    margin: 5px 0;
    color: #bfbfbf;
}
.newdet-page .container .left .m-link .list:hover {
    color: #3854b8;
}
.newdet-page .container .right {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    width: 25%;
    padding-left: 50px;
}
.newdet-page .container .right .tipsTitle {
    border-bottom: 1px solid #767676;
    padding-bottom: 12px;
}
.newdet-page .container .right ul li {
    margin-top: 26px;
}
.newdet-page .container .right ul li .box {
    position: relative;
}
.newdet-page .container .right ul li .box .boxC {
    padding-right: 20px;
}
.newdet-page .container .right ul li .box .title {
    color: #767676;
}
.newdet-page .container .right ul li .box .title:hover {
    color: #3854b8;
}
.newdet-page .container .right ul li .box .time {
    color: #767676;
    margin-top: 14px;
}
.newdet-page .container .right ul li .box .time .date {
    color: #000;
}
.newdet-page .container .right ul li .box .more {
    width: 14px;
    height: 12px;
    position: absolute;
    right: 0;
    bottom: 24px;
    opacity: 0;
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px);
}
.newdet-page .container .right ul li .box .line {
    width: 50px;
    height: 1px;
    margin-top: 16px;
    background-color: #767676;
}
.newdet-page .container .right ul li:hover .box .boxC {
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
}
.newdet-page .container .right ul li:hover .box .more {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.newdet-page .container .right ul li:hover .box .line {
    width: 100%;
    background-color: #3854b8;
}
@media (max-width: 1250px) {
    .newsTab {
        display: none;
    }
    .news-page .init-1 .container ul li .box .cont {
        padding-right: 20px;
    }
    .newdet-page .container .left {
        width: 100%;
    }
    .newdet-page .container .right {
        display: none;
    }
}
@media (max-width: 1000px) {
    .news-page .init-1 .container ul li .box {
        padding: 20px 12px;
    }
    .news-page .init-1 .container ul li .box .sub {
        width: 100%;
        height: 100%;
    }
    .news-page .init-1 .container ul li .box .time {
        width: 100%;
    }
    .news-page .init-1 .container ul li .box .imgC {
        width: 100%;
        margin-top: 20px;
    }
    .news-page .init-1 .container ul li .box .cont {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }
    .newdet-page .container .left {
        padding: 40px 16px;
    }
}
@media (max-width: 500px) {
    .newdet-page .container .left .time {
        margin-top: 10px;
    }
    .newdet-page .container .left .des {
        margin-top: 20px;
    }
    .newdet-page .container .left .m-link {
        margin-top: 30px;
    }
}
/* 栅格 */
.grid-box {
    font-size: 0;
[;letter-spacing: -4px;font-size: 12px;]
}
.grid-box .column {
    display: inline-block;
    font-size: 12px;
    vertical-align: top;
[;letter-spacing: 0;]
}

.grid-box .column {
    width: 100%;
}
.grid-box.two>.column {
    width: 50%;
}
.grid-box.three>.column {
    width: 33.33333%;
}
.grid-box.four>.column {
    width: 25%;
}
.grid-box.five>.column {
    width: 20%;
}
.grid-box.six>.column {
    width: 16.6666667%;
}
.grid-box.seven>.column {
    width: 14.285714%;
}
.grid-box.eight>.column {
    width: 12.55%;
}
.grid-box.nine>.column {
    width: 11.11111111%;
}
.grid-box.ten>.column {
    width: 10%;
}
@media screen and (max-width: 1000px){
    .grid-box.two>.column {
        width: 50%;
    }
    .grid-box.three>.column {
        width: 33.33333%;
    }
    .grid-box.four>.column {
        width: 33.33333%;
    }
    .grid-box.five>.column {
        width: 33.33333%;
    }

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

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

}
.inspiration-page span.h6 {
  background-color: #f2f2f2;
  padding: 4%;
  line-height: 1.2;
}
.inspiration-page .filter a.img-box {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inspiration-page .filter a.img-box:hover {
  -webkit-filter: unset;
  filter: unset;
}
.inspiration-page .team ul {
  row-gap: 1em;
}
.inspiration-page .team li {
  background-color: #e9e9e9;
  max-width: 210px;
  padding: 10px;
}
.inspiration-page .team li.wid {
  max-width: 300px;
}
@media screen and (max-width: 1250px) {
  .inspiration-page .list.wid-60 {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .inspiration-page .team ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .inspiration-page .team li {
    width: 100%;
  }
}