@font-face {
    font-family: 'Swiss-Roman';
    src: url('../fonts/Swiss721BT-Roman.eot') format('eot'), url('../fonts/Swiss721BT-Roman.woff2') format('woff2'), url('../fonts/Swiss721BT-Roman.woff') format('woff'), url('../fonts/Swiss721BT-Roman.ttf') format('truetype');
    font-display: swap;
  }
  @font-face {
    font-family: 'Swiss-Bold';
    src: url('../fonts/Swiss721BT-Bold.eot') format('eot'), url('../fonts/Swiss721BT-Bold.woff2') format('woff2'), url('../fonts/Swiss721BT-Bold.woff') format('woff'), url('../fonts/Swiss721BT-Bold.ttf') format('truetype');
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot') format('eot'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
  }
  body {
    font-family: 'Poppins';
  }
  .body-overflow-box {
    position: relative;
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    overflow: hidden;
  }
  :root {
    --white: #fff;
    --black: #000;
    --primary: #f39c3f;
  }
  .ui.container {
    padding: 0 15px;
    position: relative;
    max-width: 1380px;
    margin: auto;
    width: 100%;
  }
  #header {
    z-index: 999;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #header .ui.container {
    max-width: 1630px;
  }
  #header .h-top {
    background-color: #3e3e3e;
    color: var(--white);
    padding: 8px 0;
  }
  #header .h-top .ui.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .h-top .ui.menu .left ul li {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    margin-right: 73px;
    font-family: 'Swiss-Roman';
  }
  #header .h-top .ui.menu .left ul li img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .h-top .ui.menu .left ul li span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 6px;
  }
  #header .h-top .ui.menu .left ul li:last-child {
    margin-right: 0;
  }
  #header .h-top .ui.menu .right {
    margin: 0 0 0 auto;
  }
  #header .h-top .ui.menu .right a {
    display: inline-block;
    font-size: 16px;
    margin-right: 23px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #header .h-top .ui.menu .right a:last-child {
    margin-right: 0;
  }
  #header .h-top .ui.menu .right a:hover {
    color: var(--primary);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  #header .nav {
    background: var(--white);
  }
  #header .nav .ui.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .nav .ui.menu .logo {
    vertical-align: middle;
  }
  #header .nav .ui.menu .logo img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .nav .ui.menu .menu-box {
    display: inline-block;
    margin: 0 0 0 auto;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    text-transform: uppercase;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    padding: 0 35px;
    line-height: 110px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a:hover,
  #header .nav .ui.menu .menu-box ul.menu > li > a.active {
    background: var(--primary);
    color: var(--white);
  }
  #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;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 100%;
    left: 0;
    width: 220px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary);
    display: none \9;
  }
  #header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
    display: block;
    float: none;
    padding: 0 10px;
    line-height: 40px;
    color: black;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    transition: .1s;
    text-transform: capitalize;
    position: relative;
  }
  #header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
    display: block;
    background: none;
    height: auto;
    padding: 0;
  }
  #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:hover ul.sub-menu {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
    display: block \9;
  }
  #header .nav .ui.menu .menu-box ul.menu > li:last-child {
    margin-right: 0;
  }
  #header .nav .ui.menu .h-search {
    display: inline-block;
    cursor: pointer;
    margin-left: 30px;
  }
  #header .nav .ui.menu .h-search img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .nav .ui.menu .h-language {
    display: inline-block;
    position: relative;
    margin-left: 29px;
  }
  #header .nav .ui.menu .h-language span {
    color: #a7a7a7;
    font-size: 18px;
  }
  #header .nav .ui.menu .h-language span i {
    display: inline-block;
  }
  #header .nav .ui.menu .h-language ul.sub-menu {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 125%;
    right: 0;
    width: 130px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary);
    display: none \9;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li {
    display: block;
    padding: 0 10px;
    line-height: 40px;
    text-transform: capitalize;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li a {
    display: block;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li a img {
    vertical-align: middle;
    width: auto;
    height: 20px;
    margin-right: 6px;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li:hover {
    background: #222;
    color: white;
  }
  #header .nav .ui.menu .h-language:hover ul.sub-menu {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
    display: block \9;
  }
  #header .nav .ui.menu .h-inquiry {
    display: inline-block;
    margin-left: 22px;
    cursor: pointer;
  }
  #header .nav .ui.menu .h-inquiry img {
    display: inline-block;
    vertical-align: middle;
  }
  #header.active {
    position: fixed;
    top: -40px;
    left: 0;
    -webkit-box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.1);
  }
  #header.active .nav .ui.menu .logo img{
    width: 70%;
  }
  #header.active .nav .ui.menu .menu-box ul.menu > li > a{
    line-height: 70px;
  }
  #banner {
    position: relative;
  }
  #banner ul li {
    position: relative;
  }
  #banner ul li .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
  }
  #banner ul li .text .box {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 90px;
    text-align: center;
  }
  #banner ul li .text .box .title {
    font-size: 80px;
    letter-spacing: 5px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
    text-transform: uppercase;
  }
  #banner ul li .text .box .tit {
    font-size: 70px;
    letter-spacing: 4px;
    line-height: 1;
    font-family: 'Swiss-Roman';
    margin-top: 1px;
    text-transform: uppercase;
  }
  #index-body .title {
    font-size: 40px;
    line-height: 1.3;
    font-family: 'Swiss-Bold';
  }
  #index-body .i-product {
    background: url(../images/ipbg.png) no-repeat center bottom;
    padding: 9.532% 0 5.469%;
  }
  #index-body .i-product .box {
    max-width: 883px;
  }
  #index-body .i-product .box .title {
    color: #32404c;
  }
  #index-body .i-product .box p {
    letter-spacing: 1px;
    color: #6a6a6a;
    font-family: 'Swiss-Roman';
    line-height: 2;
    margin-top: 6px;
  }
  #index-body .i-product .box .con {
    line-height: 2;
    letter-spacing: 1px;
    color: #858d94;
    margin-top: 37px;
  }
  #index-body .i-product .box .category {
    padding-top: 12.458%;
  }
  #index-body .i-product .box .category 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;
  }
  #index-body .i-product .box .category ul li {
    text-align: center;
  }
  #index-body .i-product .box .category ul li .img-box {
    line-height: 106px;
    overflow: unset;
  }
  #index-body .i-product .box .category ul li .img-box img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .i-product .box .category ul li .tit {
    font-size: 20px;
    line-height: 1.4;
    font-family: 'Swiss-Roman';
    margin-top: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .i-product .box .category ul li .tit:hover {
    color: var(--primary);
  }
  #index-body .product {
    padding: 14px 0 8.8021%;
  }
  #index-body .product ul {
    margin: -25px -10px -26px -9px;
  }
  #index-body .product ul li {
    padding: 25px 10px 26px 9px;
  }
  #index-body .product ul li .ig {
    padding: 7px;
    background: var(--white);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #7d7d7d;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .product ul li .ig .img-box img{
    width: 100%;
  }
  #index-body .product ul li .ig .text {
    padding: 33px 21px 77px 14px;
  }
  #index-body .product ul li .ig .text span {
    line-height: 2;
  }
  #index-body .product ul li .ig .text .tit {
    color: #0c0c0c;
    font-family: 'Swiss-Bold';
    line-height: 2;
    margin-top: 2px;
  }
  #index-body .product ul li .ig .text .con {
    margin-top: 11px;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  #index-body .product ul li .ig .link {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 34px 30px 32px 31px;
    border-radius: 50%;
    background-color: #333333;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    opacity: 0;
  }
  #index-body .product ul li .ig:hover {
    background: var(--primary);
    color: var(--white);
    border-radius: 0px 0px 138px 0px;
  }
  #index-body .product ul li .ig:hover .text .tit {
    color: var(--white);
  }
  #index-body .product ul li .ig:hover .link {
    opacity: 1;
  }
  #index-body .about {
    position: relative;
  }
  #index-body .about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 920px;
  }
  #index-body .about .box .left {
    width: 40.5208%;
    color: var(--white);
    background-color: #373737;
    padding: 4.896% 5.4% 0 8.282%;
  }
  #index-body .about .box .left .con {
    line-height: 2;
    margin-top: 29px;
  }
  #index-body .about .box .left .con h1 {
    display: inline;
  }
  #index-body .about .box .left ul li {
    margin-top: 45px;
  }
  #index-body .about .box .left ul li .num {
    font-size: 35px;
    font-family: 'Swiss-Bold';
    line-height: 1;
  }
  #index-body .about .box .left ul li .num sub {
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    margin: 0 0 3px 9px;
  }
  #index-body .about .box .left ul li p {
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
  }
  #index-body .about .box .left ul li:last-child {
    margin-bottom: 0;
  }
  #index-body .about .box .right {
    width: 59.4792%;
    height: 100%;
  }
  #index-body .about .box .right img {
    height: 100%;
  }
  #index-body .about .bottom {
    border-radius: 0px 79px 78px 82px;
    border: solid 1px #999999;
    min-width: 994px;
    position: absolute;
    bottom: 95px;
    left: 8.282%;
    padding: 21px 29px 21px 16px;
    background: rgba(55, 55, 55, 0.5);
  }
  #index-body .about .bottom .ig {
    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;
  }
  #index-body .about .bottom .ig .left img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .about .bottom .ig .left .link {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary);
    font-family: 'Swiss-Roman';
    text-decoration: underline;
    padding-left: 34px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .about .bottom .ig .left .link:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  #index-body .about .bottom .ig .right .play {
    display: inline-block;
    padding: 16px;
    border-radius: 50%;
    position: relative;
    border: solid 1px rgba(0, 0, 0, 0.1);
  }
  #index-body .about .bottom .ig .right .play::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 50px;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
  }
  #index-body .about .bottom .ig .right .play svg {
    position: absolute;
    top: -1px;
    left: -2px;
    stroke-width: 2px;
  }
  #index-body .about .bottom .ig .right .play svg path {
    fill: none;
    stroke: var(--white);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    stroke-dasharray: 100,2000;
  }
  #index-body .about .bottom .ig .right .play:hover svg path {
    stroke-dasharray: 620,620;
  }
  #index-body .case {
    padding: 146px 0 101px;
    position: relative;
  }
  #index-body .case .title {
    position: absolute;
    z-index: 10;
    left: 72px;
    top: 90px;
    color: #32404c;
    width: 36%;
  }
  #index-body .case .ui.container {
    max-width: 1510px;
  }
  #index-body .case .swiper {
    overflow: hidden;
  }
  #index-body .case .swiper-slide {
    padding-top: 220px;
  }
  #index-body .case .swiper-slide .img-box {
    -webkit-transform: scale(0.73);
    -moz-transform: scale(0.73);
    -ms-transform: scale(0.73);
    transform: scale(0.73);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  #index-body .case .swiper-slide .text {
    color: #404040;
    line-height: 1.7;
    width: 80%;
    margin: -10% 0 0 13%;
    display: none;
  }
  #index-body .case .swiper-slide .text .con {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 2;
  }
  #index-body .case .swiper-slide .text .more {
    display: inline-block;
    background: var(--primary);
    font-size: 22px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    color: var(--white);
    padding: 11px 53px;
    margin-top: 44px;
  }
  #index-body .case .swiper-slide-active {
    padding: 110px 0;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  #index-body .case .swiper-slide-active .img-box {
    -webkit-transform: scale(1.33);
    -moz-transform: scale(1.33);
    -ms-transform: scale(1.33);
    transform: scale(1.33);
  }
  #index-body .case .swiper-slide-next {
    padding-top: 60px;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  #index-body .case .swiper-slide-next .text {
    display: block;
  }
  #index-body .case .qh {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
  #index-body .case .qh .prev,
  #index-body .case .qh .next {
    cursor: pointer;
  }
  #index-body .case .qh .swiper-pagination {
    margin: 0 83px;
    position: initial;
  }
  #index-body .case .qh .swiper-pagination-bullet {
    width: 70px;
    height: 3px;
    background-color: #333333;
    border-radius: 0;
    margin-right: 10px;
    cursor: pointer;
  }
  #index-body .case .qh .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  #index-body .case .qh .swiper-pagination-bullet-active {
    background: var(--primary);
  }
  #index-body .advantage {
    background: url(../images/adbg.jpg) no-repeat center;
    background-size: 100% 100%;
    height: 752px;
    color: var(--white);
    position: relative;
  }
  #index-body .advantage .ui.container {
    max-width: 1630px;
  }
  #index-body .advantage .box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  #index-body .advantage .box .bottom {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    margin-top: 71px;
    padding: 82px 0 68px;
  }
  #index-body .advantage .box .bottom ul {
    margin-right: -62px;
    width: 90%;
  }
  #index-body .advantage .box .bottom ul li {
    padding-right: 62px;
  }
  #index-body .advantage .box .bottom ul li .ig {
    padding-right: 52px;
    position: relative;
  }
  #index-body .advantage .box .bottom ul li .ig i {
    width: 39px;
    height: 39px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--white);
    text-align: center;
    line-height: 39px;
  }
  #index-body .advantage .box .bottom ul li .ig i img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .advantage .box .bottom ul li .ig span {
    display: block;
    line-height: 1.8;
    font-family: 'Swiss-Bold';
    letter-spacing: 1px;
    margin-top: 26px;
  }
  #index-body .advantage .box .bottom ul li .ig p {
    line-height: 2;
    margin-top: 8px;
    min-height: 111px;
  }
  #index-body .advantage .box .bottom ul li .ig::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 129px;
    border: 1px dashed #c0bbab;
  }
  #index-body .advantage .box .bottom ul li:last-child .ig {
    padding-right: 0;
  }
  #index-body .advantage .box .bottom ul li:last-child .ig::after {
    display: none;
  }
  #index-body .news {
    padding: 110px 0 46px;
  }
  #index-body .news .header .title {
    color: #32404c;
  }
  #index-body .news .header p {
    font-family: 'Swiss-Roman';
    letter-spacing: 1px;
    color: #6a6a6a;
    line-height: 1.6;
    margin-top: 3px;
  }
  #index-body .news .content {
    margin-top: 66px;
  }
  #index-body .news .content ul {
    margin-right: -30px;
  }
  #index-body .news .content ul li {
    padding-right: 30px;
  }
  #index-body .news .content ul li .tit {
    font-size: 25px;
    line-height: 1.2;
    font-family: 'Swiss-Roman';
    color: #32404c;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .news .content ul li .tit:hover {
    color: var(--primary);
  }
  #index-body .news .content ul li i {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bfbfbf;
    margin-top: 27px;
  }
  #index-body .news .content ul li p {
    font-size: 14px;
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  #index-body .news .content ul li time {
    display: inline-block;
    font-size: 14px;
    color: #5d5c60;
    line-height: 1.5;
    margin-top: 21px;
  }
  #index-body .contact {
    background: url(../images/contact.png) no-repeat center;
    background-size: 100% 100%;
    padding: 110px 0 97px;
    position: relative;
    z-index: 1;
    margin-top: 170px;
  }
  #index-body .contact .box {
    width: 79%;
  }
  #index-body .contact .box .left .title {
    line-height: 1.3;
    color: #32404c;
  }
  #index-body .contact .box .right {
    padding: 13px 0 0 40px;
  }
  #index-body .contact .box .right ul {
    margin: 0 -20px -20px 0;
  }
  #index-body .contact .box .right ul li {
    padding: 0 20px 20px 0;
  }
  #index-body .contact .box .right ul li input {
    width: 100%;
    height: 44px;
    background: var(--white);
    border: 0;
    font-size: 14px;
    color: #8f8f8f;
    padding: 0 20px;
  }
  #index-body .contact .box .right ul li input::-webkit-input-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input:-moz-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input::-moz-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input:-ms-input-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input::placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li.wid-100 {
    width: 100%;
  }
  #index-body .contact .box .right ul li .submit {
    display: block;
    background: var(--primary);
    color: var(--white);
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    font-family: 'Swiss-Roman';
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .contact .box .right ul li .submit:hover {
    background: var(--white);
    color: var(--primary);
  }
  #index-body .contact .tp {
    position: absolute;
    z-index: -1;
    right: 0;
    top: -170px;
  }
  #footer {
    background-color: #333333;
    color: var(--white);
    padding: 87px 0 34px;
    position: relative;
  }
  #footer .ui.container {
    max-width: 1630px;
  }
  #footer .f-content .tit {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0 25px;
    font-family: 'Swiss-Roman';
  }
  #footer .f-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 6px;
    color: #a3a3a3;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
  }
  #footer .f-content ul li i {
    width: 23px;
    display: inline-block;
    vertical-align: middle;
  }
  #footer .f-content ul li i img {
    display: inline-block;
  }
  #footer .f-content ul li span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 16px;
    width: 93%;
  }
  #footer .f-content ul li:last-child {
    margin-bottom: 0;
  }
  #footer .f-content ul li:hover {
    color: var(--white);
  }
  #footer .f-content .f-ab .share {
    margin-top: 41px;
  }
  #footer .f-content .f-ab .share a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    background: #404040;
    margin-right: 5px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #footer .f-content .f-ab .share a:last-child {
    margin-right: 0;
  }
  #footer .f-content .f-ab .share a:hover {
    background: var(--white);
    color: var(--primary);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  #footer .f-content .f-nav {
    width: 23.9%;
    padding-left: 3.938%;
  }
  #footer .f-content .f-product {
    width: 24%;
  }
  #footer .f-content .f-contact {
    width: 27.1%;
    padding-top: 11px;
  }
  #footer .f-content .f-contact ul li {
    margin-bottom: 32px;
  }
  #footer .f-content .f-contact ul li:last-child {
    margin-bottom: 0;
  }
  #footer .f-content .f-contact ul li:hover {
    color: #a3a3a3;
  }
  #footer .f-copy {
    width: 100%;
    position: relative;
    margin-top: 81px;
    background-color: #3d3d3d;
    padding: 14px 0 13px;
    font-size: 14px;
    color: #b1b1b1;
    text-align: center;
  }
  #footer .f-copy svg {
    vertical-align: top;
    margin-top: -3px;
    width: auto;
    max-height: 26px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    fill: #b1b1b1;
  }
  #footer .f-copy svg text {
    fill: #b1b1b1;
  }
  #footer .f-copy .a1 {
    display: inline-block;
    margin-left: 77px;
  }
  @media screen and (max-width: 1680px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1400px;
    }
    #index-body .about .box .left {
      padding: 4.896% 5.4% 0 6%;
    }
    #index-body .about .bottom {
      left: 6%;
    }
    #index-body .case .title {
      width: 40%;
    }
    #index-body .advantage .box .bottom ul li .ig p {
      min-height: 134px;
    }
    #footer .f-content ul li span {
      width: 92%;
    }
    #footer .f-copy svg {
      max-height: 33px;
      margin-top: -6px;
    }
  }
  @media screen and (max-width: 1440px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1200px;
    }
    #index-body .case .title {
      width: 42%;
    }
    #index-body .case .swiper-slide .text {
      width: 77%;
    }
    #index-body .advantage .box .bottom ul {
      width: 100%;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -40px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 40px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 40px;
    }
    #index-body .contact .box {
      width: 85%;
    }
    #footer .f-content ul li span {
      width: 91%;
    }
  }
  @media screen and (max-width: 1280px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1090px;
    }
    #header .nav .ui.menu .menu-box ul.menu > li {
      font-size: 14px;
    }
    #header .nav .ui.menu .menu-box ul.menu > li > a {
      padding: 0 25px;
      line-height: 100px;
    }
    #header .nav .ui.menu .h-search,
    #header .nav .ui.menu .h-language,
    #header .nav .ui.menu .h-inquiry {
      margin-left: 20px;
    }
    #banner ul li .text .box .title {
      font-size: 70px;
    }
    #banner ul li .text .box .tit {
      font-size: 60px;
    }
    #index-body .product ul li .ig .text {
      padding: 33px 0 77px;
    }
    #index-body .about .box {
      height: 820px;
    }
    #index-body .about .box .left {
      padding: 4.896% 2% 0 3%;
    }
    #index-body .about .bottom {
      left: 3%;
      bottom: 40px;
    }
    #index-body .about .box .left ul li {
      margin-top: 30px;
    }
    #index-body .case .title {
      width: 50%;
    }
    #index-body .case .swiper-slide-next {
      padding-top: 20px;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -30px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 30px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 30px;
    }
    #index-body .contact .box {
      width: 90%;
    }
    #footer .f-content ul li span {
      width: 90%;
    }
    #footer .f-copy .a1 {
      margin-left: 20px;
    }
  }
  @media screen and (max-width: 1100px) {
    #header .nav .ui.menu .logo {
      width: 10%;
    }
    #header .nav .ui.menu .menu-box ul.menu > li > a {
      padding: 0 20px;
      line-height: 80px;
    }
    #banner ul li .text .box .title {
      font-size: 60px;
    }
    #banner ul li .text .box .tit {
      font-size: 50px;
    }
    #index-body .case {
      padding: 100px 0;
    }
    #index-body .case .title {
      width: 58%;
    }
    #index-body .case .swiper-slide .text .more {
      font-size: 20px;
      margin-top: 32px;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -20px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 20px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 20px;
    }
    #index-body .news .content ul li .tit {
      font-size: 22px;
    }
    #index-body .contact .box {
      width: 100%;
    }
    #footer .f-content ul li span {
      width: 89%;
    }
    #footer .f-copy svg {
      max-height: 28px;
      margin-top: -3px;
    }
  a.tengfa{
    display: none !important;
  }
  
  }
  @media screen and (max-width: 1000px) {
    #header {
      margin-bottom: 0;
    }
    #header .nav {
      padding: 0;
    }
    #header .nav .ui.menu .logo {
      padding: 0;
      width: auto;
      display: block;
    }
    #header.active .nav .ui.menu .logo img,
    #header .nav .ui.menu .logo img {
      width: 70%;
    }
    #header .nav .ui.menu .h-language,
    #header .nav .ui.menu .h-inquiry {
      display: none;
    }
    #header.active .nav {
      padding: 0;
    }
    #banner {
      padding-top: 60px;
    }
    #banner ul li .text .box {
      padding: 50px 0 80px;
    }
    #banner ul li .text .box .title {
      font-size: 50px;
    }
    #banner ul li .text .box .tit {
      font-size: 40px;
    }
    #banner ul.slick-dots {
      bottom: 20px;
    }
    #index-body .i-product {
      background: transparent;
    }
    #index-body .product ul li .ig .text {
      padding: 20px 0 77px;
    }
    #index-body .about {
      background: #373737;
      padding: 0 15px;
      padding-bottom: 4%;
    }
    #index-body .about .box {
      height: auto;
    }
    #index-body .about .box .left {
      width: 100%;
      padding: 3% 0;
    }
    #index-body .about .box .right {
      display: none;
    }
    #index-body .about .bottom {
      position: initial;
      margin-top: 30px;
      min-width: 100%;
    }
    #index-body .case {
      padding: 60px 0;
    }
    #index-body .case .ui.container {
      max-width: 680px;
    }
    #index-body .case .title {
      width: 80%;
    }
    #index-body .case .swiper-slide-active,
    #index-body .case .swiper-slide-next {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    #index-body .case .swiper-slide-active {
      padding: 0;
    }
    #index-body .case .swiper-slide-active .img-box {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
    #index-body .case .swiper-slide-active .img-box img {
      width: 100%;
    }
    #index-body .case .swiper-slide-active .text {
      display: block;
      width: 100%;
      margin: 20px 0 0 0;
    }
    #index-body .case .swiper-slide-active .text .more {
      margin-top: 20px;
    }
    #index-body .advantage .box .bottom {
      padding: 30px 0;
      margin-top: 40px;
    }
    #index-body .advantage .box .bottom ul {
      margin: 0 -20px -20px 0;
    }
    #index-body .advantage .box .bottom ul li {
      width: 50%;
      padding: 0 20px 20px 0;
    }
    #index-body .news {
      padding: 60px 0 46px;
    }
    #index-body .news .content {
      margin-top: 30px;
    }
    #index-body .contact {
      margin-top: 0;
      padding: 60px 0;
    }
    #index-body .contact .box .right {
      padding: 13px 0 0 10px;
    }
    #index-body .contact .tp {
      top: 0;
      width: 39.5%;
      display: none;
    }
    #footer {
      padding: 40px 0 30px;
    }
    #footer .f-content .f-ab {
      width: 40%;
    }
    #footer .f-content .f-nav,
    #footer .f-content .f-product {
      display: none;
    }
    #footer .f-content .f-contact {
      width: 60%;
    }
    #footer .f-copy {
      margin-top: 30px;
    }
    #footer .f-copy .a1 {
      margin-left: 0;
    }
    #footer .f-copy svg {
      max-height: 26px;
    }
  }
  @media screen and (max-width: 700px) {
    #banner ul li .text .box {
      padding: 15px 0 40px;
    }
    #banner ul li .text .box .title {
      font-size: 40px;
    }
    #banner ul li .text .box .tit {
      font-size: 26px;
    }
    #banner ul.slick-dots {
      bottom: 5px;
    }
    #banner ul.slick-dots li {
      width: 14px;
      height: 14px;
    }
    #banner ul.slick-dots li::after {
      width: 6px;
      height: 6px;
      top: 3px;
      left: 3px;
    }
    .font-22 {
      font-size: 17px;
    }
    #index-body .i-product .box .con {
      margin-top: 15px;
    }
    #index-body .i-product .box .category {
      padding-top: 8%;
    }
    #index-body .i-product .box .category ul li .tit {
      font-size: 20px;
    }
    #index-body .product ul li .ig .link {
      padding: 23px 20px 22px 21px;
    }
    #index-body .about .bottom .ig .left img {
      display: none;
    }
    #index-body .title {
      font-size: 35px;
    }
    #index-body .case {
      padding: 30px 0;
    }
    #index-body .case .title {
      position: initial;
      width: 100%;
    }
    #index-body .case .qh {
      margin-top: 20px;
    }
    #index-body .advantage {
      height: auto;
    }
    #index-body .advantage .box {
      position: initial;
      padding: 30px 0;
    }
    #index-body .advantage .box .bottom {
      background: transparent;
      margin-top: 20px;
      padding: 0;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: 0;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 0;
      width: 100%;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 0;
    }
    #index-body .advantage .box .bottom ul li .ig p {
      min-height: auto;
    }
    #index-body .advantage .box .bottom ul li .ig::after {
      display: none;
    }
    #index-body .news {
      padding: 30px 0;
    }
    #index-body .contact {
      padding: 30px 0;
    }
    #index-body .contact .box .left {
      width: 100%;
    }
    #index-body .contact .box .right {
      width: 100%;
      padding: 13px 0 0 0;
    }
    #index-body .contact .tp {
      display: none;
    }
    #footer {
      padding: 30px 0;
    }
    #footer .f-content .f-ab {
      width: 100%;
    }
    #footer .f-content .f-ab .share {
      margin-top: 20px;
    }
    #footer .f-content .f-contact {
      width: 100%;
      padding: 20px 0 0 0;
    }
    #footer .f-copy {
      margin-top: 20px;
    }
    .fixed-toolbar ul li.code {
      display: none;
    }
  }
  @media screen and (max-width: 500px) {
    #banner ul li > img {
      min-height: 300px;
    }
    #banner ul li .text .box .title {
      font-size: 30px;
      line-height: 1.3;
      letter-spacing: 2px;
    }
    #banner ul li .text .box .tit {
      font-size: 17px;
      line-height: 1.5;
      letter-spacing: 1px;
    }
    #index-body .title {
      font-size: 30px;
      line-height: 1.3;
    }
    .font-22 {
      font-size: 15px;
    }
    #index-body .i-product .box .category ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    #index-body .i-product .box .category ul li {
      width: 50%;
      margin-bottom: 10px;
    }
    #index-body .i-product .box .category ul li:last-child {
      margin-bottom: 0;
    }
    #index-body .product ul li .ig .link {
      opacity: 1;
    }
    #index-body .about .box .left .con {
      margin-top: 10px;
    }
    #index-body .about .bottom .ig .left .link {
      font-size: 14px;
      padding-left: 0;
    }
    #index-body .case {
      display: none;
    }
    #index-body .news .content ul li .tit {
      font-size: 20px;
      line-height: 1.6;
    }
    #index-body .news .content ul li i,
    #index-body .news .content ul li p {
      margin-top: 10px;
    }
    #index-body .news .content ul li time {
      margin-top: 12px;
    }
    #footer .f-content ul li span {
      width: 91%;
      padding-left: 10px;
    }
    .fixed-toolbar {
      bottom: 16%;
    }
    .fixed-toolbar ul li {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 18px;
    }
  }
  
  .inner-banner {
      padding: 200px 0;
      color: #fff;
      background-size: 100% 100%;
      position: relative;
      overflow: hidden;
      background-repeat: no-repeat;
      /*background-attachment: fixed;*/
      background-position: center top;
  }
  .inner-banner.teshu:before {
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    left: -16.5%;
    /*background: var(--primary);*/
    opacity: .7;
    position: absolute;
    -webkit-transform: skewX(25deg);
    -moz-transform: skewX(25deg);
    -ms-transform: skewX(25deg);
    transform: skewX(25deg);
  }
  .inner-banner span.h2 {
    font-size: 42px;
    font-family: 'Swiss-Bold';
    line-height: 1.5;
    display: block;
    padding-bottom: .2em;
    color: #000000;
    /*background: url("../images/inner-1-line.png") left bottom no-repeat;*/
  }
  .inner-banner .text {
    font-size: 28px;
    line-height: 1.4;
    margin: 1em 0;
    font-family: 'Swiss-Roman';
  }
  .inner-banner .mbx {
    font-size: 16px;
    color: #3e3e3e;
    line-height: 2;
  }
  .inner-page a.more {
    line-height: 50px;
    height: 50px;
    padding: 0 2em;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    background: var(--primary);
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .inner-page a.more:hover {
    background: var(--black);
  }
  .inner-banner .btn{
    margin-top: 20px;
  }
  .inner-banner .btn a{
    display: inline-block;
    font-size: 16px;
    padding: 10px 0;
    background: var(--primary);
    min-width: 200px;
    text-align: center;
    line-height: 2;
  }
  .inner-banner .btn a.active{
    background: #000;
  }
  .sj {
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .about-page .about-1 {
    padding: 110px 0;
  }
  .about-page .about-1 .left {
    width: 52%;
  }
  .about-page .about-1 .left span.tag {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-bottom: .5em;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-1 .left span.h3 {
    font-size: 26px;
    display: block;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-1 .left .text {
    font-size: 16px;
    color: #303030;
    line-height: 2;
    margin: 1.2em 0;
    max-height: 610px;
    overflow-y: scroll;
  }
  .about-page .about-1 .left .text p {
    margin-top: 1em;
    padding-right: 10px;
  }
  .about-page .about-1 .left .text p:first-child {
    margin-top: 0;
  }
  .about-page .about-1 .right {
    width: 48%;
    padding-left: 3%;
  }
  .about-page .about-1 .right .img video{
    width: 100%;
    min-height: 400px;
    object-fit: cover;
  }
  .about-page .about-1 .right .list ul li {
    padding: 23px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border-bottom: 1px solid #e3e3e3;
  }
  .about-page .about-1 .right .list ul li i.fa {
    padding: 0 .5em;
    font-size: 28px;
    line-height: 1;
    margin-top: -0.1em;
  }
  .about-page .about-1 .right .list ul li .content {
    width: 100%;
  }
  .about-page .about-1 .right .list ul li .content span.h6 {
    font-size: 18px;
    color: #373737;
    line-height: 1.4;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-1 .right .list ul li .content .text {
    font-size: 15px;
    color: #303030;
    line-height: 1.8;
    margin-top: 1.2em;
    display: none;
  }
  .about-page .about-1 .right .list ul li span.plus {
    width: 18px;
    height: 18px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    display: block;
    cursor: pointer;
    cursor: hand;
  }
  .about-page .about-1 .right .list ul li span.plus:after,
  .about-page .about-1 .right .list ul li span.plus:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #a6a6a6;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .about-page .about-1 .right .list ul li span.plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .about-page .about-1 .right .list ul li.active span.plus:after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .about-page .about-2 {
    padding: 180px 0 180px;
    color: white;
    background: url("../images/init-4-bg.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
  }
  .about-page .about-2 span.h2 {
    font-size: 26px;
    line-height: 1.6;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-2 span.h2.small {
    font-family: 'Swiss-Roman';
  }
  .about-page .about-2 .list {
    margin-top: 65px;
  }
  .about-page .about-2 .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .about-page .about-2 .list ul li {
    width: auto;
  }
  .about-page .about-2 .list ul li span.h6 {
    font-size: 80px;
    font-family: 'Swiss-Bold';
    line-height: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: .4em;
  }
  .about-page .about-2 .list ul li span.h6 i {
    font-size: 0.2em;
    margin-left: .5em;
  }
  .about-page .about-2 .list ul li p {
    font-size: 18px;
    font-weight: 300;
  }
  .about-page .about-2 .play {
    margin-top: 45px;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 100%;
    cursor: pointer;
    cursor: hand;
  }
  .about-page .about-2 .play img {
    position: relative;
    z-index: 1;
  }
  .about-page .about-2 .play:after,
  .about-page .about-2 .play:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
  }
  .about-page .about-2 .play:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
  }
  .about-page .about-3 {
    padding: 110px 0;
  }
  .about-page .about-3 .list ul {
    margin: -20px;
  }
  .about-page .about-3 .list ul li {
    padding: 20px;
  }
  .about-page .about-3 .list ul li .box {
    overflow: hidden;
  }
  .about-page .about-3 .list ul li .box .content {
    background: #f3f3f3;
    padding: 30px 7% 30px;
    color: #2c2c2c;
    position: relative;
  }
  .about-page .about-3 .list ul li .box .content:before {
    content: '';
    width: 100%;
    /*height: 60%;*/
    position: absolute;
    top: 100%;
    left: 0;
    background: inherit;
    -webkit-transform: skewX(-75deg);
    -moz-transform: skewX(-75deg);
    -ms-transform: skewX(-75deg);
    transform: skewX(-75deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
        z-index: 1;
  }
  .about-page .about-3 .list ul li .box .content i {
      width: 40px;
      background: #fcc101;
      padding: 20px 4px 20px;
      display: block;
      position: relative;
      top: -15px;
  }
  .about-page .about-3 .list ul li .box .content i img {
      -webkit-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1);
  }
  .about-page .about-3 .list ul li .box .content i:after {
      content: '';
      border-bottom: 6px solid var(--primary);
      border-right: 19px solid transparent;
      border-left: 19px solid transparent;
      position: absolute;
      left: 0;
      bottom: 0;
  }
  .about-page .about-3 .list ul li .box .content span.tag {
    font-size: 18px;
    display: block;
    line-height: 1.2;
    margin-top: 1em;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-3 .list ul li .box .content span.h3 {
    font-size: 26px;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Bold';
    min-height: 62px;
  }
  .about-page .about-3 .list ul li .box .content .text {
    font-size: 15px;
    line-height: 2;
    margin: 1em 0 2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    height: 11.2em;
  }
  .about-page .about-3 .list ul li .box .content a.more {
    padding: 0 2em 0 .8em;
    text-transform: capitalize;
    background: white;
    color: var(--primary);
    position: relative;
    line-height: 2.5em;
    height: 2.5em;
  }
  .about-page .about-3 .list ul li .box .content a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .about-page .about-3 .list ul li .box .content a.more:hover {
    background: var(--primary);
    color: white;
  }
  .about-page .about-3 .list ul li .box .img {
    display: block;
        overflow: hidden;
  }
  .about-page .about-3 .list ul li .box .img img {
    width: 100%;
    transition: all 1.2s ease;
  }
  .about-page .about-3 .list ul li:hover .img img {
      transform: scale3d(1.05, 1.05, 1);
      transition: all 1.2s ease;
  }
  .about-page .about-4 {
    padding: 110px 0 80px;
    background: url("../images/about-4-bg.jpg") center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 4%;
  }
  .about-page .about-4:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: -10%;
    right: 0;
    background: url("../images/about-4-2.png") right bottom no-repeat;
    background-size: 60% auto;
    position: absolute;
  }
  .about-page .about-4 span.h2 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-4 .text {
    font-size: 16px;
    margin-top: 1em;
    display: block;
    font-family: 'Swiss-Roman';
    line-height: 2;
  }
  .about-page .about-4 .text:after {
    content: '';
    width: 2em;
    height: 0.25em;
    /*background: white;*/
    display: block;
    margin: 1em auto 0;
  }
  .about-page .about-4 .list {
    margin-top: 60px;
  }
  .about-page .about-4 .list ul li {
    padding: 0 30px;
  }
  .about-page .about-4 .list ul li a {
    display: block;
  }
  .about-page .about-4 .list ul li a img {
    display: block;
    width: 100%;
  }
  .about-page .about-5 .text {
    font-size: 16px;
    margin-top: 1em;
    display: block;
    font-family: 'Swiss-Roman';
    line-height: 2;
  }
  .about-page .slick-arrow {
    height: 60px;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 1;
  }
  .about-page .slick-arrow.slick-prev {
    right: 100%;
    background-image: url("../images/banner-btn-l.png");
  }
  .about-page .slick-arrow.slick-next {
    left: 100%;
    background-image: url("../images/banner-btn-r.png");
  }
  .about-page .slick-arrow:hover {
    background-color: var(--primary);
  }
  .about-page .about-5 {
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
  }
  .about-page .about-5 span.h2 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-5 span.h2:after {
    content: '';
    width: 1.66666667em;
    height: 0.13333333em;
    display: block;
    margin: 0em auto 0;
    /*background-color: var(--primary);*/
  }
  .about-page .about-5 .list {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
  }
  .about-page .about-5 .list .slick-arrow {
    z-index: 6;
  }
  .about-page .about-5 .list .slick-arrow.slick-prev {
    right: auto;
    left: 0;
  }
  .about-page .about-5 .list .slick-arrow.slick-next {
    right: 0;
    left: auto;
  }
  .about-page .about-5 .list ul {
    margin: 0 -15%;
    position: static;
  }
  .about-page .about-5 .list .slick-slide {
    -webkit-transform: translateX(170%);
    -moz-transform: translateX(170%);
    -ms-transform: translateX(170%);
    transform: translateX(170%);
    position: relative;
    z-index: 1;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .about-page .about-5 .list .slick-slide li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .about-page .about-5 .list .slick-slide.slick-active {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2;
  }
  .about-page .about-5 .list .slick-slide.slick-active li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .about-page .about-5 .list .slick-slide.slick-active + div {
    -webkit-transform: translateX(40%);
    -moz-transform: translateX(40%);
    -ms-transform: translateX(40%);
    transform: translateX(40%);
    z-index: 3;
  }
  .about-page .about-5 .list .slick-slide.slick-active + div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 4;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div {
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
    z-index: 3;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div + div {
    -webkit-transform: translateX(-170%);
    -moz-transform: translateX(-170%);
    -ms-transform: translateX(-170%);
    transform: translateX(-170%);
    z-index: 1;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div + div li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
  }
  @media screen and (max-width: 1600px) {
    .about-page .about-2 .list ul li p {
      font-size: 16px;
    }
    .about-page .about-2 span.h2 {
      font-size: 28px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 60px;
    }
    .about-page .about-2 {
      padding: 120px 0 200px;
    }
    .about-page .about-2 .list {
      margin-top: 40px;
    }
  }
  @media screen and (max-width: 1400px) {
    .about-page .about-2 .list ul li p {
      font-size: 14px;
    }
    #index-body .init-3 .right .img {
      height: 500px;
    }
    .about-page .about-2 span.h2 {
      font-size: 24px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 44px;
    }
    .about-page .about-2 {
      padding: 80px 0 140px;
    }
  }
  @media screen and (max-width: 1250px) {
    .about-page .about-2 {
      padding: 80px 0;
    }
  }
  @media screen and (max-width: 1000px) {
    .about-page .about-2 .list ul li span.h6 {
      font-size: 36px;
    }
    .about-page .about-2 {
      padding: 50px 0;
    }
  }
  @media screen and (max-width: 700px) {
    .about-page .about-2 span.h2 {
      font-size: 20px;
    }
    .about-page .about-2 span.h2.small {
      font-size: 18px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 26px;
    }
  }
  @media screen and (max-width: 500px) {
    .about-page .about-2 .list ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page .about-2 .list ul li {
      width: 50%;
      padding: 5px;
    }
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
  }
  .inner-page .sideBarBox .sideBarLeft form {
    height: 42px;
    line-height: 42px;
    border: 1px solid #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
  }
  .inner-page .sideBarBox .sideBarLeft form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1em;
  }
  .inner-page .sideBarBox .sideBarLeft form button {
    width: 42px;
    border: none;
    background-color: var(--primary);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .inner-page .sideBarBox .sideBarLeft form button img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide {
    margin-top: 50px;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a {
    font-size: 16px;
    font-family: 'Swiss-Roman';
    margin-top: 1em;
    display: block;
    padding-right: 1.5em;
    position: relative;
    line-height: 2;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa {
    position: absolute;
    right: .3em;
    top: 0;
    font-size: 140%;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a em {
    opacity: .6;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li:hover > a {
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li ul {
    display: none;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li {
    padding-left: 1em;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li a {
    font-weight: normal;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list {
    margin: 10px 0;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li {
    padding: 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li a.img-box {
    width: 25%;
    margin-right: 4%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content {
    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-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content span.h6 {
      font-size: 17px;
      width: 100%;
      -webkit-line-clamp: 2;
      overflow: hidden;
      -webkit-box-orient: vertical;
      display: -webkit-box;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content .star {
    font-size: 14px;
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content time {
    font-size: 14px;
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg {
    background-image: url("../images/sideBarImg-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    padding: 180px 10% 80px;
    display: block;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg span.h3 {
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg .text {
    font-size: 16px;
    line-height: 1.4;
    margin: 1em 0 2em;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg a.more {
    line-height: 2em;
    height: 2em;
    padding: 0 1em 0 .5em;
    background: url("../images/icon-sideBarImg-link.png") center no-repeat;
    background-size: 100% 100%;
  }
  .inner-page .sideBarBox .slideBarRight {
    width: 75%;
    padding-left: 2%;
  }
  .inner-page .m-page {
    text-align: center;
    margin-top: 30px;
    padding: 40px 39px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    font-size: 16px;
    line-height: 2em;
    height: 2em;
    padding: 0 1em;
    border-radius: 0.33333333em;
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.33333333em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .inner-page .m-page a:hover,
  .inner-page .m-page span.current {
    background-color: var(--primary);
    color: white;
  }
  .history-page {
    padding: 110px 0;
    overflow: hidden;
  }
  .history-page .historySideBar .historySideLeft {
    width: 40%;
    padding: 0 8%;
  }
  .history-page .historySideBar .historySideLeft span.h3 {
    font-size: 30px;
    padding: 1.83333333em 15%;
    display: block;
    background: url("../images/historySideLeft-1.jpg") center center no-repeat;
    background-size: cover;
    line-height: 1.2;
    color: white;
    position: relative;
    font-family: 'Swiss-Bold';
  }
  .history-page .historySideBar .historySideLeft span.h3:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    background: url("../images/historySideLeft-3.jpg") center center no-repeat;
    background-size: cover;
  }
  .history-page .historySideBar .historySideLeft span.h3:after {
    content: '';
    width: 1.66666667em;
    height: 0.13333333em;
    display: block;
    margin-top: .5em;
    background-color: white;
  }
  .history-page .historySideBar .historySideLeft .img {
    padding: 10%;
    height: 480px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: url("../images/historySideLeft-2.jpg") center center no-repeat;
    background-size: cover;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    color: white;
  }
  .history-page .historySideBar .historySideLeft .img span.h6 {
    font-size: 22px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
  }
  .history-page .historySideBar .historySideLeft .img .text {
    font-size: 16px;
    margin-top: .5em;
  }
  .history-page .historySideBar .historySideRight {
    width: 60%;
  }
  .history-page .historySideBar .historySideRight .list {
    position: relative;
  }
  .history-page .historySideBar .historySideRight .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .history-page .historySideBar .historySideRight .list ul li time {
    font-size: 24px;
    color: var(--primary);
    line-height: 1.2;
    font-family: 'Swiss-Roman';
  }
  .history-page .historySideBar .historySideRight .list ul li .slide {
    padding-left: 30px;
    margin-left: 30px;
    padding-bottom: 30px;
    position: relative;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide:before {
    content: '';
    width: 1px;
    height: 140%;
    position: absolute;
    left: 0;
    top: -20%;
    background: #e5e5e5;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide:after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid #e5e5e5;
    display: block;
    position: absolute;
    left: -7px;
    top: 5px;
    background: white;
    z-index: 1;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide .text {
      font-size: 16px;
      color: #7e7f81;
      padding-left: 2em;
      padding-bottom: 20px;
      position: relative;
      line-height: 2;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide .text i.fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 120%;
  }
  .sustainable-page span.tag {
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-bottom: .5em;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-1 {
    padding: 110px 0;
  }
  .sustainable-page .sustainable-1 .img {
    display: block;
  }
  .sustainable-page .sustainable-1 .img img {
    width: 100%;
  }
  .sustainable-page .sustainable-1 .text {
    color: #646464;
  }
  .sustainable-page .sustainable-1 .left {
    width: 48%;
    padding-right: 5%;
  }
  .sustainable-page .sustainable-1 .left .text {
    font-size: 16px;
    padding: 0 0%;
    margin-top: 10%;
    line-height: 1.8;
  }
  .sustainable-page .sustainable-1 .right {
    width: 52%;
    margin-top: 80px;
  }
  .sustainable-page .sustainable-1 .right span.h3 {
    font-size: 32px;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-1 .right .text {
    font-size: 16px;
    margin: 1.5em 0 4em;
    line-height: 2;
  }
  .sustainable-page .sustainable-2 {
    padding-bottom: 110px;
  }
  .sustainable-page .sustainable-2 .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;
  }
  .sustainable-page .sustainable-2 .top .title {
    width: 25%;
  }
  .sustainable-page .sustainable-2 .top .title span.h2 {
    font-size: 42px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-2 .top .text {
    font-size: 16px;
    line-height: 1.4;
    color: #606060;
    width: 55%;
  }
  .sustainable-page .sustainable-2 .top a.link {
    font-size: 16px;
  }
  .sustainable-page .sustainable-2 .top a.link i.fa {
    margin-left: .5em;
  }
  .sustainable-page .sustainable-2 .list {
    margin-top: 35px;
  }
  .sustainable-page .sustainable-2 .list ul {
    margin: 0 -20px;
  }
  .sustainable-page .sustainable-2 .list ul li {
    padding: 0 20px;
  }
  .sustainable-page .sustainable-2 .list ul li img {
    width: 100%;
  }
  .sustainable-page .sustainable-3 {
    padding-top: 160px;
    background: url("../images/sustainable-3.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin-bottom: 90px;
  }
  .sustainable-page .sustainable-3 .box {
    width: 450px;
    margin-right: 5%;
    display: block;
    margin-left: auto;
    padding: 50px 35px;
    position: relative;
    z-index: 1;
    background-color: rgba(243, 156, 63, 0.8);
  }
  .sustainable-page .sustainable-3 .box:before {
    content: '';
    border-left: 45px solid white;
    border-bottom: 45px solid white;
    border-top: 45px solid transparent;
    border-right: 45px solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .sustainable-page .sustainable-3 .box:after {
    content: '';
    width: 100%;
    /*background-color: var(--primary);*/
    position: absolute;
    left: 0;
    opacity: .9;
    z-index: -1;
    height: 90px;
    top: 100%;
  }
  .sustainable-page .sustainable-3 .box span.h3 {
    font-size: 24px;
    line-height: 1.4;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-3 .box .text {
    font-size: 15px;
    line-height: 2;
    margin: 2em 0;
  }
  .sustainable-page .sustainable-3 .box a.more {
    line-height: 2.75em;
    height: 2.75em;
    padding-left: 2em;
    padding-right: 3em;
    background-color: white;
    color: var(--primary);
    position: relative;
  }
  .sustainable-page .sustainable-3 .box a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: var(--primary);
    border-right-color: var(--primary);
  }
  .sustainable-page .sustainable-4 {
    padding: 110px 0;
  }
  .sustainable-page .sustainable-4 span.h3 {
    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: 30px;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-4 span.h3 img {
    margin-right: .3em;
  }
  .sustainable-page .sustainable-4 .box {
    margin-top: 60px;
  }
  .sustainable-page .sustainable-4 .box .left .list {
    position: relative;
  }
  .sustainable-page .sustainable-4 .box .left .list ul li img {
    width: 100%;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn {
    position: absolute;
    left: 93%;
    bottom: 0px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn div {
    height: 45px;
    width: 45px;
    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-color: #7f7f7f;
    color: white;
    font-size: 18px;
    cursor: pointer;
    cursor: hand;
    margin: 0 2px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn div:hover {
    background-color: var(--primary);
  }
  .sustainable-page .sustainable-4 .box .right {
    padding-left: 10%;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li:last-child {
    margin-bottom: 0;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li i {
    margin-right: 20px;
    width: 48px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li .content span.h6 {
    font-size: 22px;
    font-family: 'Swiss-Bold';
    display: block;
    line-height: 1.2;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li .content .text {
    font-size: 16px;
    color: #353535;
    line-height: 1.6;
    margin-top: .5em;
  }
  .sustainable-page .sustainable-5 {
    padding-bottom: 30px;
    display: block;
  }
  .sustainable-page .sustainable-5 .slide {
    margin-bottom: 70px;
    background-color: #f9f9f9;
    overflow: hidden;
  }
  .sustainable-page .sustainable-5 .slide .left {
    width: 52%;
    vertical-align: middle;
    padding: 0 3%;
    position: relative;
  }
  .sustainable-page .sustainable-5 .slide .left span.h6 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-5 .slide .left .text {
    font-size: 18px;
    color: #353535;
    line-height: 2;
    margin: 1em 0 3em;
  }
  .sustainable-page .sustainable-5 .slide .left a.more {
    line-height: 2.75em;
    height: 2.75em;
    padding-left: 1em;
    padding-right: 2em;
    position: relative;
    background-color: white;
    color: var(--primary);
    text-transform: capitalize;
  }
  .sustainable-page .sustainable-5 .slide .left a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #e1e5ec;
    border-right-color: #e1e5ec;
  }
  .sustainable-page .sustainable-5 .slide .left a.more:hover {
    background-color: var(--primary);
    color: white;
  }
  .sustainable-page .sustainable-5 .slide .right {
    width: 48%;
    vertical-align: middle;
    position: relative;
  }
  .sustainable-page .sustainable-5 .slide .right a.img {
    display: block;
    /*-webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);*/
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    overflow: hidden;
  }
  /*.sustainable-page .sustainable-5 .slide .right a.img img {
    -webkit-transform: skewX(-15deg) scale(1.2);
    -moz-transform: skewX(-15deg) scale(1.2);
    -ms-transform: skewX(-15deg) scale(1.2);
    transform: skewX(-15deg) scale(1.2);
  }*/
  .sustainable-page .sustainable-5 .slide:nth-child(even) .left {
    left: 48%;
  }
  .sustainable-page .sustainable-5 .slide:nth-child(even) .right {
    left: -52%;
  }
  .sustainable-page .sustainable-5 .slide:nth-child(even) .right a.img {
    /*-webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);*/
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  /*.sustainable-page .sustainable-5 .slide:nth-child(even) .right a.img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }*/
  .contact-page {
    padding-bottom: 110px;
  }
  .contact-page .left {
    width: 47% !important;
    padding-right: 5%;
  }
  .contact-page .left .box2 {
    background-color: #f9f9f9;
    padding: 30px 5% 90px;
    position: relative;
  }
  /*.contact-page .left .box2:before {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: inherit;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }*/
  .contact-page .left .box2:after {
    content: '';
    width: 100%;
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: inherit;
  }
  .contact-page .left .box2 span.h2 {
    font-size: 36px;
    font-weight: bold;
    color: #363636;
    line-height: 1.2;
    display: block;
    margin-bottom: 1.5em;
    font-family: 'Swiss-Bold';
  }
  .contact-page .left .box2 .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 2;
  }
  .contact-page .left .box2 .form {
    margin-top: 50px;
  }
  .contact-page .left .box2 .form ul li {
    font-size: 16px;
    color: #666;
  }
  .contact-page .left .box2 .form ul li label {
    display: block;
    margin: 1em 0 .5em;
    font-family: 'Swiss-Bold';
  }
  .contact-page .left .box2 .form ul li label em {
    color: var(--primary);
  }
  .contact-page .left .box2 .form ul li input,
  .contact-page .left .box2 .form ul li textarea {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #aaabad;
    padding: .2em 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .contact-page .left .box2 .form ul li input:focus,
  .contact-page .left .box2 .form ul li textarea:focus {
    border-color: var(--primary);
  }
  .contact-page .left .box2 .form ul li textarea {
    height: 140px;
  }
  .contact-page .left .box2 .form ul li a.more {
    margin-top: 50px;
    padding-left: 2em;
    padding-right: 2.5em;
    background-color: var(--primary);
    position: relative;
  }
  .contact-page .left .box2 .form ul li a.more:hover {
    background-color: var(--primary);
  }
  .contact-page .left .box2 .form ul li a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #edeef0;
    border-right-color: #edeef0;
  }
  .contact-page .right {
    width: 53% !important;
    padding-top: 83px;
  }
  .contact-page .right span.h2 {
    font-size: 36px;
    font-weight: bold;
    color: #363636;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .contact-page .right span.h2:after {
    content: '';
    width: 2em;
    height: 0.11111111em;
    background-color: black;
    display: block;
    margin-top: .2em;
  }
  .contact-page .right .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 2;
    margin: 1em 0 1.5em;
  }
  .contact-page .right .phone {
    font-size: 15px;
    color: white;
    padding: 1em;
    text-align: center;
    background-color: var(--primary);
    position: relative;
    font-family: 'Swiss-Roman';
  }
  .contact-page .right .phone:after,
  .contact-page .right .phone:before {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: white;
    border-right-color: white;
  }
  .contact-page .right .phone:before {
    left: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .contact-page .right span.h5 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    color: #363636;
    display: block;
    line-height: 1.2;
    margin: 1.5em 0 .5em;
  }
  .contact-page .right span.h6 {
    display: block;
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.2;
    font-family: 'Swiss-Roman';
  }
  .contact-page .right .info {
    font-size: 16px;
    color: #7e7f81;
  }
  .contact-page .right .info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5em;
  }
  .contact-page .right .info li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact-page .right iframe {
    margin-top: 25px;
    height: 320px;
    width: 100%;
  }
  .news-page {
    padding: 110px 0;
  }
  .news-page .sideBarBox .slideBarRight {
    padding-left: 0;
    padding-right: 2%;
  }
  .news-page .sideBarBox .slideBarRight .list {
    margin-bottom: 90px;
  }
  .news-page .sideBarBox .slideBarRight .list ul {
    margin: -27px -17px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li {
    padding: 27px 17px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box {
    background-color: #edeef0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img {
    display: block;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img time {
    font-size: 12px;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 5%;
    bottom: 5%;
    color: white;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img:before {
    content: '';
    border-left: 15px solid white;
    border-top: 20px solid white;
    border-right: 15px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    left: 0;
    top: 0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content {
    padding: 15px 20px 30px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content time{
    font-size: 14px;
    display: block;
    line-height: 2;
    margin-bottom: 10px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6 {
    display: block;
    font-size: 16px;
    color: #2b2b2b;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: 'Swiss-Bold';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6:hover {
    color: var(--primary);
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content .text {
    font-size: 14px;
    color: #7e7f81;
    line-height: 2;
    margin: 1em 0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more {
    background-color: var(--primary);
    /*position: relative;*/
    font-size: 12px;
    line-height: 3em;
    height: 3em;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more:hover {
    background-color: var(--primary);
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #edeef0;
    border-right-color: #edeef0;
  }
  .news-page .sideBarBox .sideBarLeft {
    padding-left: 2%;
  }
  .newdet-page .newdet-content {
    padding-right: 85px;
  }
  .newdet-page .newdet-content .category {
    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: 15px;
  }
  .newdet-page .newdet-content .category a {
    padding: 0 5px;
    margin-left: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
  }
  .newdet-page .newdet-content .category a:hover {
    background: var(--primary);
    color: #fff;
  }
  .newdet-page .newdet-content .category a span {
    font-family: 'Swiss-Roman';
    display: inline-block;
    -webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);
  }
  .newdet-page .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    font-family: 'Swiss-Roman';
  }
  .newdet-page .newdet-content .category .time span {
    color: #000;
    margin-left: 10px;
  }
  .newdet-page .newdet-content h4.n-title {
    font-size: 30px;
    line-height: 2;
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
  }
.newdet-page .newdet-content .content p {
    font-size: 16px!important;
    color: #666!important;
    text-align: left!important;
    line-height: 2!important;
    height: auto!important;
}
.newdet-page .newdet-content .content ul li {
    padding: 5px 10px!important;
    line-height: 2;
    font-size: 16px;
    color: #666!important;
}
.newdet-page .newdet-content .content h3 {
  font-size: 18px;
  line-height: 1.6;
  padding: 10px 5px;
  font-weight: 600;
}
.newdet-page .newdet-content .content h4 {
 font-size: 16px;
  line-height: 1.8;
  padding: 10px 5px;
}
.newdet-page .newdet-content .content h2 {
  font-size: 20px;
  line-height: 1.6;
  padding: 10px 5px;
  font-weight: 600;
  color:#f39c3f;
}
.newdet-page .newdet-content .content ol li,.newdet-page .newdet-content .content ul li {
    list-style: disc;
    list-style-position: inside;
}
  .newdet-page .newdet-content .content {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    padding: 0;
  }
  .newdet-page .newdet-content .content .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    color: #555;
    font-weight: 300;
    margin-top: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .newdet-content .content .icon a {
    font-size: 14px;
    color: #000;
    margin-left: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
  }
  .newdet-page .newdet-content .content .icon a:hover {
    color: var(--primary);
  }
  .newdet-page .newdet-content .m-link {
    border-bottom: 1px solid #e7e7e7;
    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;
  }
  .newdet-page .newdet-content .m-link a {
    width: 50%;
    padding: 35px 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;
  }
  .newdet-page .newdet-content .m-link a .r-img {
    margin-right: 2rem;
  }
  .newdet-page .newdet-content .m-link a .r-img img {
    display: block;
    width: 110px;
    min-width: 110px;
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media screen and (max-width: 700px) {
    .newdet-page .newdet-content .m-link a .r-img {
      display: none;
    }
  }
  .newdet-page .newdet-content .m-link a .r-text p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: 700;
    max-width: 255px;
    font-family: 'Swiss-Roman';
  }
  .newdet-page .newdet-content .m-link a .r-text p:hover {
    color: var(--primary);
  }
  .newdet-page .newdet-content .m-link a .r-text span {
    color: #aaa;
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
  }
  .newdet-page .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
  }
  .newdet-page .newdet-content .m-link a.right {
    padding-left: 30px;
  }
  .newdet-page h1 {
    font-size: 32px;
    font-family: 'Swiss-Bold';
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .form {
    margin-top: 60px;
  }
  .newdet-page .form span.h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1em;
    display: block;
  }
  .newdet-page .form ul {
    margin: -10px;
  }
  .newdet-page .form ul li {
    padding: 10px;
  }
  .newdet-page .form ul li input,
  .newdet-page .form ul li textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: .5em 1em;
    border: 1px solid #eee;
  }
  .newdet-page .form ul li textarea {
    height: 100px;
  }
  .newdet-page .form ul li a.more {
    background-color: var(--primary);
  }
  .newdet-page .form ul li a.more:hover {
    background-color: var(--primary);
  }
  .newdet-page .form ul li.wid-100 {
    width: 100%;
  }
  .application-page span.h2 {
    font-size: 36px;
    color: #363636;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
  }
  .application-page span.h2:after {
    content: '';
    width: 1em;
    height: 0.11111111em;
    display: block;
    background-color: var(--primary);
    margin-top: .2em;
  }
  .application-page .application-1 {
    padding-top: 110px;
  }
  .application-page .application-1 .box .slide {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow: hidden;
  }
  .application-page .application-1 .box .left {
    padding-right: 2%;
    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-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    padding: 50px 0;
  }
  .application-page .application-1 .box .left .info {
    margin: 10px 0;
  }
  .application-page .application-1 .box .left span.h6 {
    font-size: 26px;
    line-height: 1.4;
  }
  .application-page .application-1 .box .left .text {
    font-size: 16px;
    color: #7e7f81;
  }
  .application-page .application-1 .box .left .text p {
    margin-top: 2em;
  }
  .application-page .application-1 .box .left .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .application-page .application-1 .box .left .btn div {
    height: 60px;
    width: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #7f7f7f;
    color: white;
    font-size: 20px;
    margin-right: 1em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
  }
  .application-page .application-1 .box .left .btn div:hover {
    background-color: var(--primary);
  }
  .application-page .application-1 .box .right .img {
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    /*overflow: hidden;*/
  }
  .application-page .application-1 .box .right .img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }
  .application-page .application-1 .list {
    margin-top: 100px;
    padding-right: 5%;
    overflow: hidden;
  }
  .application-page .application-1 .list ul {
    margin: -26px;
  }
  .application-page .application-1 .list ul .slick-list {
    overflow: unset;
  }
  .application-page .application-1 .list ul .slick-slide {
    opacity: 0;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .application-page .application-1 .list ul .slick-slide.slick-active {
    opacity: 1;
  }
  .application-page .application-1 .list ul li {
    padding: 26px;
  }
  .application-page .application-1 .list ul li a.img {
    display: block;
    /*-webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);*/
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    /*overflow: hidden;*/
  }
  /*.application-page .application-1 .list ul li a.img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }*/
  .application-page .application-1 .list ul li span.h6 {
    font-size: 18px;
    color: #363636;
    margin-top: 1.5em;
    display: block;
    text-align: center;
    font-family: 'Swiss-Roman';
  }
  .application-page .application-2 {
    padding: 110px 0;
    text-align: center;
  }
  .application-page .application-2 span.h2:after {
    margin-left: auto;
    margin-right: auto;
  }
  .application-page .application-2 .list {
    margin-top: 50px;
  }
  .application-page .application-2 .list ul {
    margin: -25px;
    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;
  }
  .application-page .application-2 .list ul li {
    padding: 25px;
  }
  .application-page .application-2 .list ul li .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .application-page .application-2 .list ul li .flex .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
  }
  .application-page .application-2 .list ul li .flex .content {
    position: relative;
    width: 50%;
    z-index: 1;
    color: white;
    padding: 50px 5%;
    padding-left: 0;
    text-align: left;
  }
  .application-page .application-2 .list ul li .flex .content:before {
    content: '';
    width: 125%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../images/application-2-bg.png") center right no-repeat;
    z-index: -1;
    background-size: 100% 100%;
  }
  .application-page .application-2 .list ul li .flex .content span.h6 {
    font-size: 18px;
    font-family: 'Swiss-Bold';
    display: block;
    margin-bottom: 1em;
  }
  .application-page .application-2 .list ul li .flex .content .text {
    font-size: 14px;
    line-height: 1.6;
  }
  .application-page .application-3 {
    padding-bottom: 110px;
    text-align: center;
  }
  .application-page .application-3 span.h2:after {
    margin-left: auto;
    margin-right: auto;
  }
  .application-page .application-3 .list {
    margin-top: 40px;
  }
  .application-page .application-3 .list ul {
    border: 1px solid #e7e7e7;
  }
  .application-page .application-3 .list ul li {
    padding: 20px;
    border-right: 1px solid #e7e7e7;
    text-align: center;
  }
  .application-page .application-3 .list ul li a.img {
    display: block;
    margin: 70px 0;
    padding: 0 5%;
  }
  .application-page .application-3 .list ul li .btn {
    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;
  }
  .application-page .application-3 .list ul li .btn a {
    height: 40px;
    width: 40px;
    border: 1px solid #e7e7e7;
    margin: 0 2px;
    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;
    color: #aaa;
    font-size: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .application-page .application-3 .list ul li .btn a:hover {
    color: white;
    border-color: var(--primary);
    background-color: var(--primary);
  }
  .application-page .application-3 .list ul li span.h6 {
    font-size: 19px;
    line-height: 1.2;
    margin: 1em 0 .5em;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-family: 'Swiss-Roman';
  }
  .application-page .application-3 .list ul li span.h6:hover {
    color: var(--primary);
  }
  .application-page .application-3 .list ul li .text {
    font-size: 16px;
    color: #919191;
    line-height: 1.4;
    -webkit-line-clamp: 3;
      overflow: hidden;
      -webkit-box-orient: vertical;
      display: -webkit-box;
  }
  .manufacturing-page .manufacturing-1 {
    margin: 110px 0;
  }
  .manufacturing-page .manufacturing-1 .left {
    width: 25%;
    padding-right: 5%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-1 .left span.h3 {
    font-size: 30px;
    font-family: 'Swiss-Bold';
    line-height: 1.4;
  }
  .manufacturing-page .manufacturing-1 .left span.h3:after {
    content: '';
    height: 0.13333333em;
    width: 1em;
    background-color: var(--primary);
    margin-top: .5em;
    display: block;
  }
  .manufacturing-page .manufacturing-1 .right {
    width: 75%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-1 .right .text {
    font-size: 18px;
    color: #7e7f81;
  }
  .manufacturing-page .manufacturing-1 .right .text p {
    margin-top: 1em;
  }
  .manufacturing-page .manufacturing-1 .right .text p:first-child {
    margin-top: 0;
  }
  .manufacturing-page .about-5 {
    background: url("../images/manufacturing-2-bg.jpg") center center no-repeat;
    background-size: cover;
  }
  .manufacturing-page .manufacturing-2 {
    padding: 110px 0;
  }
  .manufacturing-page .manufacturing-2 .left {
    padding-right: 4%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-2 .left span.h6 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 1em;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-2 .right {
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li:last-child {
    margin-bottom: 0;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    line-height: 1.4;
    margin-bottom: 1em;
    display: block;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li .content .text {
    font-size: 18px;
    color: #7e7f81;
    line-height: 1.6;
  }
  .manufacturing-page .manufacturing-3 {
    padding: 60px 0;
    background-color: #edeef0;
  }
  .manufacturing-page .manufacturing-3 .list ul li {
    padding: 25px 0;
    border-bottom: 1px solid #d8d9db;
    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;
  }
  .manufacturing-page .manufacturing-3 .list ul li:last-child {
    border-bottom: none;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content {
    width: 72%;
    padding-right: 7%;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content span.h6 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    display: block;
    margin-bottom: .5em;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content .text {
    font-size: 18px;
    color: #7e7f81;
    line-height: 1.4;
  }
  .manufacturing-page .manufacturing-3 .list ul li .img {
    width: 28%;
  }
  .manufacturing-page .manufacturing-4 {
    padding: 110px 0;
  }
  .manufacturing-page .manufacturing-4 span.tag {
    font-size: 18px;
    color: var(--primary);
    display: block;
    line-height: 1.2;
    margin-bottom: .3em;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-4 span.h2 {
    font-size: 30px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
  }
  .manufacturing-page .manufacturing-4 span.h2:after {
    content: '';
    width: 1.5em;
    height: 0.13333333em;
    display: block;
    margin-top: .3em;
    background-color: var(--primary);
  }
  .manufacturing-page .manufacturing-4 .list {
    margin-top: 70px;
  }
  .manufacturing-page .manufacturing-4 .list ul {
    margin: 0 -20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li {
    padding: 0 20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box {
    background-color: var(--primary);
    color: white;
    padding: 20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box a.img {
    display: block;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box a.img img {
    display: block;
    width: 100%;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span {
    font-size: 16px;
    margin: 1em 0 .5em;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span a {
    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;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span a i {
    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;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
  }
  .dealers-page .dealers-1 {
    padding: 70px 0;
  }
  .dealers-page .dealers-1 .left .text {
    margin-top: 1em;
        margin-bottom: 40px;
  }
  .dealers-page .dealers-1 .left .text p {
    margin-top: 1em;
  }
  .dealers-page .dealers-1 .left .text p:first-child {
    margin-top: 0;
  }
  .dealers-page .dealers-1 .right {
    text-align: center;
    padding: 0 5%;
    vertical-align: bottom;
  }
  .dealers-page .dealers-1 .right img:after {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--primary);
      display: block;
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: -1;
  }
  .dealers-page .dealers-2 {
    padding: 80px 0;
    background: black;
    color: white;
    background: url(../images/de-bg.jpg) no-repeat;
        background-size: 100%;
      background-repeat: no-repeat;
      background-attachment: fixed;
  }
  .dealers-page .dealers-2 .list ul li {
    height: 300px;
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
    height: 100%;
    padding: 0 5%;
    transform: scale(.8);
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box .text {
    color: inherit;
    opacity: 0;
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box h6 {
    display: block;
    font-size: 24px;
    margin: .5em 0;
    width: 100%;
    font-family: 'Swiss-Roman';
  }
  .dealers-page .dealers-2 .list ul:hover li {
    width: 20%;
  }
  .dealers-page .dealers-2 .list ul:hover li:hover {
    width: 40%;
    background: var(--primary);
  }
  .dealers-page .dealers-2 .list ul:hover li:hover .box {
    transform: scale(1);
  }
  .dealers-page .dealers-2 .list ul:hover li:hover .text {
    opacity: 1;
  }
  .dealers-page .dealers-3 {
    padding: 80px 0;
    text-align: center;
  }
  .dealers-page .dealers-4 .box {
    display: flex;
  }
  .dealers-page .dealers-4 .box .left .img {
      height: 100%;
      display: block;
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: left;
      background-size: 50%;
  }
  .dealers-page .dealers-4 .box .right {
    padding: 50px 5%;
    background: #f9f9f9;
    color: white;
  }
  .dealers-page .dealers-4 .box .right form {
    margin-top: 30px;
  }
  .dealers-page .dealers-4 .box .right form ul {
    margin: -10px;
  }
  .dealers-page .dealers-4 .box .right form ul li {
    padding: 10px;
    width: 100%;
  }
  .dealers-page .dealers-4 .box .right form ul li input,
  .dealers-page .dealers-4 .box .right form ul li textarea {
    padding: .5em;
    font-size: 16px;
    background: white;
    border: 1px solid #eee;
    transition: .5s;
    color: black;
    width: 100%;
  }
  .dealers-page .dealers-4 .box .right form ul li textarea {
    height: 120px;
  }
  .dealers-page .dealers-4 .box .right form ul li input:focus,
  .dealers-page .dealers-4 .box .right form ul li textarea:focus {
    border-color: var(--primary);
  }
  .dealers-page .dealers-4 .box .right form ul li input[type="submit"] {
    width: auto;
    padding: .5em 2em;
    background: var(--primary);
    color: white;
    border: none;
  }
  
  .dealers-page h2 {
   font-size: 28px;
      font-weight: 700;
      line-height: 1.6;
      text-transform: capitalize;
      font-family: 'Swiss-Bold';
      color: #333;
  }
  .dealers-page .dealers-1 .left {
      padding-top: 60px;
  }
  .dealers-page .text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
  }
  .dealers-page .text p {
    font: inherit;
  }
  .dealers-page .text span {
    font-size: 120%;
    font-family: 'Swiss-Roman';
  }
  .dealers-page .dealers-1 .left a.more.you {
      margin-left: 15px;
  }
  .faq-page {
    padding: 60px 0;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item {
    margin-bottom: 5px;
    border: 1px solid #f2f2f2;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item:last-of-type {
    margin-bottom: 0;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q {
    padding: 20px 86px 20px 40px;
    font-size: 20px;
    line-height: 36px;
    color: #000;
    position: relative;
    transition: 500ms ease;
    cursor: pointer;
    font-family: 'Swiss-Bold';
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active {
    background: #000;
    color: #fff;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active .icon {
    background: var(--primary);
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active .icon i {
    color: #fff;
    transform: rotate(90deg);
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q .icon {
    position: absolute;
    width: 76px;
    height: 100%;
    right: 0;
    top: 0;
    background: #f7f9ff;
    text-align: center;
    line-height: 76px;
    transition: 500ms ease;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q .icon i {
    font-size: 20px;
    color: var(--primary);
    transition: 500ms ease;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .a {
    padding: 30px;
    display: none;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .a .inner {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #646464;
  }
  .gallery-page {
    padding-bottom: 60px;
  }
  .gallery-page .container .gallery-list a {
    display: block;
  }
  .gallery-page .container .gallery-list ul {
    margin: -15px;
  }
  .gallery-page .container .gallery-list ul li {
    padding: 15px;
  }
  .gallery-page .container .gallery-list ul li .box {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(105, 172, 22, 0.3);
    padding: 10px;
    border-radius: 5px;
  }
  .gallery-page .container .gallery-list ul li .box .img-box {
    overflow: hidden;
  }
  .gallery-page .container .gallery-list ul li .box h5 {
    display: block;
    color: #111;
    font-size: 18px;
    line-height: 32px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: 'Swiss-Roman';
  }
  .gallery-page .container .gallery-list ul li:hover .box h5 {
    background-color: var(--primary);
    color: #fff;
  }
  .solution-page{
    padding: 100px 0;
  }
  .solution-page ul{
    margin: -20px -10px;
  }
  .solution-page ul li{
    padding: 20px 10px;
  }
  .solution-page ul li .box .img-box{
    display: block;
    overflow: hidden;
  }
  .solution-page ul li .box .img-box img{
    width: 100%;
  }
  .solution-page ul li .box .text{
    margin-top: 20px;
  }
  .solution-page ul li .box .text .title{
    font-size: 18px;
    font-family: 'Swiss-Bold';
    line-height: 1.8;
  }
  .solution-page ul li .box .text .title sup{
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: 8px;
  }
  .solution-page ul li .box .text .des{
      font-size: 16px;
      line-height: 30px;
      margin-top: 8px;
      overflow: hidden;
  }
  @media screen and (max-width: 1600px) {
    .inner-banner span.h2 {
      font-size: 44px;
    }
    .inner-banner .text {
      font-size: 24px;
    }
    .inner-banner .mbx {
      font-size: 14px;
    }
    .about-page .about-1,
    .about-page .about-3,
    .about-page .about-4,
    .about-page .about-5,
    .application-page .application-2,
    .history-page,
    .news-page,
    .sustainable-page .sustainable-1,
    .sustainable-page .sustainable-4,
    .manufacturing-page .manufacturing-2,
    .manufacturing-page .manufacturing-4{
      padding: 60px 0;
    }
    .application-page .application-1,
    .contact-page .right {
      padding-top: 60px;
    }
    .manufacturing-page .manufacturing-1 {
      margin: 60px 0;
    }
    .application-page .application-3,
    .contact-page,
    .seoIndustry,
    .sustainable-page .sustainable-2,
    .seoAbout {
      padding-bottom: 60px;
    }
    .application-page .application-1 .list {
      margin-top: 60px;
    }
    .about-page .about-1 .left span.tag,
    .sustainable-page span.tag {
      font-size: 16px;
    }
    .about-page .about-1 .left span.h3 {
      font-size: 22px;
    }
    .about-page .about-1 .left .text {
      font-size: 15px;
    }
    .about-page .about-1 .right .list ul li .content .text {
      margin-top: .5em;
    }
    .about-page .about-1 .right .list ul li {
      padding: 17px 10px;
    }
    .about-page .about-2 {
      padding: 120px 0;
    }
    .about-page .slick-arrow.slick-next {
      left: auto;
      right: 0;
    }
    .about-page .slick-arrow.slick-prev {
      left: 0;
      right: auto;
    }
    .inner-banner {
      padding: 160px 0;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3 {
      font-size: 28px;
    }
    .application-page .application-1 .box .left span.h6 {
      font-size: 22px;
    }
    .application-page .application-1 .box .left .text p {
      margin-top: 1em;
    }
    .application-page .application-1 .box .left .btn div {
      width: 44px;
      height: 44px;
    }
    .application-page .application-1 .list ul li span.h6 {
      font-size: 16px;
      margin-top: 1em;
    }
    .application-page .application-2 .list ul li .flex .content span.h6 {
      font-size: 16px;
    }
    .application-page .application-3 .list ul li a.img {
      margin: 40px 0;
    }
    .application-page .application-3 .list ul li .text,
    .contact-page .left .box2 .text {
      font-size: 14px;
    }
    .application-page .application-3 .list ul li span.h6 {
      font-size: 16px;
    }
    .contact-page .right span.h5 {
      font-size: 20px;
    }
    .contact-page .right span.h6 {
      font-size: 14px;
    }
    .newdet-page .newdet-content {
      padding-right: 40px;
    }
    .newdet-page .newdet-content .content .icon {
      margin-top: 30px;
      padding-bottom: 30px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3{
      font-size: 20px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a {
      font-size: 14px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content span.h6,
    .seoAbout .left .text,
    .sustainable-page .sustainable-1 .right .text,
    .sustainable-page .sustainable-4 .box .right .list ul li .content .text{
      font-size: 15px;
    }
    .seoAbout .left span.tag {
      font-size: 16px;
    }
    .seoAbout .left span.h3 {
      font-size: 20px;
    }
    .about-page.seo .about-2:before {
      height: 50px;
    }
    .about-page.seo .about-2 {
      padding: 80px 0;
    }
    .sustainable-page .sustainable-1 .left .text {
      font-size: 18px;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 32px;
    }
    .sustainable-page .sustainable-3 {
      padding-top: 80px;
    }
    .sustainable-page .sustainable-3 .box span.h3,
    .manufacturing-page .manufacturing-2 .left span.h6,
    .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3,
    .manufacturing-page .manufacturing-3 .list ul li .content span.h6 {
      font-size: 20px;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li .content span.h6 {
      font-size: 18px;
    }
    .sustainable-page .sustainable-5 .slide .left .text,
    .manufacturing-page .manufacturing-2 .right .list ul li .content .text,
    .manufacturing-page .manufacturing-3 .list ul li .content .text,
    .manufacturing-page .manufacturing-1 .right .text,
    .sustainable-page .sustainable-2 .top .text,
    .seoIndustry .text{
      font-size: 16px;
      line-height: 2;
    }
    .manufacturing-page .manufacturing-4 .list {
      margin-top: 40px;
    }
  }
  @media screen and (max-width: 1450px) {
    .inner-banner span.h2 {
      font-size: 32px;
    }
    .inner-banner .text {
      font-size: 20px;
    }
    .inner-banner {
      padding: 120px 0;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li {
      margin-bottom: 20px;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3 {
      margin-bottom: .5em;
    }
    .sustainable-page .sustainable-1 .right {
      margin-top: 40px;
    }
    .sustainable-page .sustainable-1 .right .text {
      margin: 1em 0 2em;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 28px;
    }
    .sustainable-page .sustainable-3 .box:after {
      height: 50px;
    }
    .sustainable-page .sustainable-3 .box:before {
      border-width: 25px;
    }
    .sustainable-page .sustainable-3 {
      margin-bottom: 50px;
    }
    .sustainable-page .sustainable-4 .box .left .list .btn div {
      width: 30px;
      height: 30px;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li .content .text {
      margin-top: .3em;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li {
      margin-bottom: 1em;
    }
    .sustainable-page .sustainable-5 .slide .left .text {
      margin: 1em 0;
    }
    .sustainable-page .sustainable-5 .slide {
      margin-bottom: 40px;
    }
    .about-page .slick-arrow {
      width: 44px;
      height: 44px;
    }
    .about-page .about-2 .play {
      max-width: 60px;
    }
    .inner-banner:before {
      left: -22.5%;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box a.img {
      height: 180px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content {
      padding: 10px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6 {
      font-size: 14px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content .text {
      margin: .5em 0;
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      padding: 10px;
    }
    .news-page .sideBarBox .slideBarRight .list ul {
      margin: -10px;
    }
    .news-page .sideBarBox .slideBarRight .list {
      margin-bottom: 50px;
    }
    .newdet-page .newdet-content .m-link a .r-text p {
      font-size: 14px;
    }
    .newdet-page .newdet-content .m-link a .r-img img {
      width: 80px;
      height: 80px;
      min-width: 80px;
    }
    .newdet-page .newdet-content .m-link a .r-img {
      margin-right: 1rem;
    }
    .newdet-page .newdet-content .m-link a {
      padding: 15px 0;
    }
    .newdet-page .newdet-content .m-link a.left {
      padding-right: 15px;
    }
    .newdet-page .newdet-content .m-link a.right {
      padding-left: 15px;
    }
    .history-page .historySideBar .historySideLeft span.h3 {
      font-size: 24px;
    }
    .history-page .historySideBar .historySideLeft .img {
      padding: 5%;
      height: 300px;
    }
    .history-page .historySideBar .historySideLeft .img span.h6 {
      font-size: 18px;
    }
    .history-page .historySideBar .historySideLeft .img .text {
      font-size: 14px;
    }
    .history-page .historySideBar .historySideRight .list ul li time {
      font-size: 20px;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide .text {
      font-size: 14px;
    }
    .application-page .application-1 .box .left .text {
      font-size: 14px;
    }
    .application-page .application-1 .list ul li {
      padding: 10px;
    }
    .application-page .application-1 .list ul {
      margin: -10px;
    }
    .application-page .application-2 .list ul li {
      padding: 5px;
    }
    .application-page .application-2 .list ul {
      margin: -5px;
    }
    .application-page .application-2 .list ul li .flex .content {
      padding: 20px 5%;
      padding-left: 0;
    }
    .application-page .application-3 .list ul li a.img {
      margin: 20px 0;
    }
    .application-page .application-3 .list ul li .btn a {
      font-size: 16px;
    }
    .about-page .about-1 .left span.tag,
    .sustainable-page span.tag {
      font-size: 14px;
    }
    .about-page .about-1 .left span.h3 {
      font-size: 20px;
    }
    .about-page .about-2 {
      padding: 60px 0;
    }
    .about-page .about-3 .list ul li .box .content span.tag {
      font-size: 16px;
      margin-top: 2em;
    }
    .about-page .about-3 .list ul li .box .content span.h3 {
      font-size: 20px;
    }
    .about-page .about-3 .list ul li .box .content .text {
      font-size: 13px;
    }
    .about-page .about-5 .list {
      margin-top: 30px;
    }
  }
  @media screen and (max-width: 1250px) {
    .inner-banner {
      padding: 50px 0;
    }
    .inner-banner span.h2 {
      font-size: 28px;
    }
    .inner-banner .text {
      font-size: 16px;
    }
    .about-page .about-1 .right .list ul li .content span.h6 {
      font-size: 16px;
    }
    .about-page .about-1 .right .list ul li i.fa {
      font-size: 24px;
    }
    .about-page .about-3 .list ul li {
      padding: 5px;
    }
    .about-page .about-3 .list ul {
      margin: -5px;
    }
    .about-page .about-4 span.h2 {
      font-size: 28px;
    }
    .about-page .about-4 .text {
      font-size: 14px;
    }
    .about-page .about-4 .text:after {
      margin-top: .5em;
    }
    .about-page .about-4 .list ul li {
      padding: 0 10px;
    }
    .about-page .about-4 .list ul {
      margin: 0 -10px;
    }
    .application-page .application-2 .list ul li {
      width: 100%;
    }
    .contact-page .left .box2:after,
    .contact-page .left .box2:before {
      height: 10px;
    }
    .contact-page .right .phone {
      font-size: 14px;
    }
    .contact-page .right .info {
      font-size: 14px;
    }
    .contact-page .right span.h5 {
      font-size: 18px;
    }
    .contact-page .right iframe {
      height: 280px;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3{
      font-size: 24px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3{
      font-size: 18px;
    }
    .seoAbout .right {
      display: none;
    }
    .seoAbout .left {
      width: 100% !important;
      padding-right: 0;
    }
    .sustainable-page .sustainable-2 .list ul li {
      padding: 0 5px;
    }
    .sustainable-page .sustainable-2 .list ul {
      margin: 0 -5px;
    }
    .sustainable-page .sustainable-4 .box .right {
      width: 100%;
      padding-left: 0;
      margin-top: 30px;
    }
    .sustainable-page .sustainable-4 .box .left {
      width: 100%;
    }
    .sustainable-page .sustainable-4 .box .left .list .btn {
      right: 0;
      left: auto;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    .sustainable-page .sustainable-5 .slide .left .text,
    .manufacturing-page .manufacturing-2 .right .list ul li .content .text,
    .manufacturing-page .manufacturing-3 .list ul li .content .text,
    .manufacturing-page .manufacturing-1 .right .text,
    .sustainable-page .sustainable-2 .top .text,
    .seoIndustry .text{
      font-size: 14px;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li i {
      width: 70px;
    }
    .manufacturing-page .manufacturing-4 .list ul li {
      padding: 0 5px;
    }
    .manufacturing-page .manufacturing-4 .list ul {
      margin: 0 -5px;
    }
    .manufacturing-page .manufacturing-4 .list ul li .box span {
      font-size: 14px;
    }
    .manufacturing-page .manufacturing-4 .list ul li .box {
      padding: 5px;
    }
    .manufacturing-page .manufacturing-4 span.h2 {
      font-size: 24px;
    }
    .manufacturing-page .manufacturing-4 span.tag {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 1000px) {
    .manufacturing-page .manufacturing-1 .left {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-1 .right {
      width: 100%;
      margin-top: 10px;
    }
    .manufacturing-page .manufacturing-2 .left {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-2 .right {
      width: 100%;
      margin-top: 20px;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 24px;
    }
    .sustainable-page .sustainable-1 .right {
      margin-top: 10px;
    }
    .sustainable-page .sustainable-3 .box {
      padding: 20px;
    }
    .sustainable-page .sustainable-5 .slide .left {
      width: 100%;
      padding: 15px;
      left: 0 !important;
    }
    .sustainable-page .sustainable-5 .slide .right {
      display: none;
    }
    .sustainable-page .sustainable-5 .slide {
      margin-bottom: 10px;
    }
    .inner-page .sideBarBox .slideBarRight {
      width: 100%;
      padding: 0;
    }
    .inner-page .sideBarBox .sideBarLeft {
      display: none;
    }
    .about-page .about-5 .list ul .slick-slide {
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%);
    }
    .about-page .about-5 .list ul .slick-slide li {
      -webkit-transform: scale(0.75);
      -moz-transform: scale(0.75);
      -ms-transform: scale(0.75);
      transform: scale(0.75);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active {
      -webkit-transform: translateX(40%);
      -moz-transform: translateX(40%);
      -ms-transform: translateX(40%);
      transform: translateX(40%);
      z-index: 2;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active li {
      -webkit-transform: scale(0.85714286);
      -moz-transform: scale(0.85714286);
      -ms-transform: scale(0.85714286);
      transform: scale(0.85714286);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      z-index: 4;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current li {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div {
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      transform: translateX(-40%);
      z-index: 3;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div li {
      -webkit-transform: scale(0.85714286);
      -moz-transform: scale(0.85714286);
      -ms-transform: scale(0.85714286);
      transform: scale(0.85714286);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div + div {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
      z-index: 2;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div + div li {
      -webkit-transform: scale(0.75);
      -moz-transform: scale(0.75);
      -ms-transform: scale(0.75);
      transform: scale(0.75);
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      width: 50%;
    }
    .newdet-page .form {
      margin-top: 30px;
    }
    .history-page .historySideBar .historySideLeft {
      display: none;
    }
    .history-page .historySideBar .historySideRight {
      width: 100%;
    }
    .contact-page .left {
      width: 100% !important;
      padding-right: 0;
    }
    .contact-page .right {
      width: 100% !important;
      padding-left: 0;
    }
    .contact-page .left .box2 {
      padding: 20px 15px;
    }
    .contact-page .left .box2 .form {
      margin-top: 20px;
    }
    .manufacturing-page .manufacturing-3 .list ul li .content {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-3 .list ul li .img {
      display: none;
    }
    .sustainable-page .sustainable-1 .left {
      width: 100%;
      padding-right: 0;
    }
    .sustainable-page .sustainable-1 .right {
      width: 100%;
    }
    .sustainable-page .sustainable-1 .left .text {
      margin: 3% 0;
      padding: 0;
    }
    .application-page .application-1 .box .left {
      width: 100%;
      padding-right: 0;
    }
    .application-page .application-1 .box .right {
      display: none;
    }
    .application-page .application-1 .list {
      margin-top: 20px;
    }
    .application-page .application-2 .list {
      margin-top: 20px;
    }
    .about-page .about-1 .left {
      width: 100%;
    }
    .about-page .about-1 .right {
      width: 100%;
      padding-left: 0;
      margin-top: 20px;
    }
    .about-page .about-3 .list ul li {
      width: 100%;
    }
    .about-page .about-4 .list {
      margin-top: 30px;
    }
    .inner-banner{
      margin-top: 60px;
    }
    .dealers-page .dealers-1 .left{
      padding-top: 0;
      width: 100%;
    }
    .dealers-page .dealers-1 .right{
      display: none;
    }
    .dealers-page .dealers-2{
      display: none;
    }
    .dealers-page .dealers-3{
      padding-top: 0;
    }
    .dealers-page .dealers-4 .box .left{
      display: none;
    }
    .dealers-page .dealers-4 .box .right{
      width: 100%;
    }
  }
  @media screen and (max-width: 700px) {
    .inner-banner span.h2 {
      font-size: 24px;
    }
    .inner-banner .text {
      font-size: 14px;
    }
    .about-page .about-4 span.h2 {
      font-size: 24px;
    }
    .sustainable-page .sustainable-2 .top {
      display: block;
    }
    .sustainable-page .sustainable-2 .top .title {
      width: 100%;
    }
    .sustainable-page .sustainable-2 .top .text {
      width: 100%;
      margin: 10px 0;
    }
    .sustainable-page .sustainable-3 .box {
      margin-right: 0;
      max-width: 100%;
    }
    .sustainable-page .sustainable-4 span.h3 img {
      display: none;
    }
    .sustainable-page .sustainable-4 .box {
      margin-top: 30px;
    }
    .about-page .about-2 .list ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page .about-2 .list ul li {
      width: 50%;
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      width: 100%;
    }
    .dealers-page .dealers-1{
      padding: 30px 0;
    }
    .dealers-page .dealers-3{
      padding-bottom: 30px;
    }
    .dealers-page .text span{
      font-size: 17px;
    }
    .dealers-page .text{
      font-size: 16px;
    }
  }
  @media screen and (max-width: 500px) {
    .history-page .historySideBar .historySideRight .list ul li time {
      font-size: 18px;
      padding-top: .2em;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide {
      padding-left: 15px;
      margin-left: 15px;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide .text {
      padding-left: 1em;
    }
    .newdet-page .newdet-content .category {
      display: block;
    }
    .newdet-page .newdet-content .category .time {
      margin-left: 0;
      margin-top: 5px;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3{
      font-size: 20px;
    }
    .newdet-page .form ul li input,
    .newdet-page .form ul li textarea {
      font-size: 14px;
    }
    .about-page .about-5 span.h2 {
      font-size: 24px;
    }
    .application-page .application-1 .list ul li a.img {
      -webkit-transform: skewX(0);
      -moz-transform: skewX(0);
      -ms-transform: skewX(0);
      transform: skewX(0);
    }
    .application-page .application-1 .list ul li a.img img {
      -webkit-transform: skewX(0) scale(1);
      -moz-transform: skewX(0) scale(1);
      -ms-transform: skewX(0) scale(1);
      transform: skewX(0) scale(1);
    }
    .application-page .application-2 .list ul li .flex .img {
      width: 100%;
      height: 200px;
    }
    .application-page .application-2 .list ul li .flex .content {
      width: 100%;
    }
    .application-page .application-2 .list ul li .flex {
      display: block;
      overflow: hidden;
    }
    .application-page .application-2 .list ul li .flex .content {
      padding: 20px 5%;
    }
    .dealers-page h2{
      font-size: 20px;
    }
    .dealers-page .text{
      font-size: 14px;
      line-height: 2;
    }
    .dealers-page .dealers-1 .left a.more.you{
      margin-left: 0;
      margin-top: 10px;
    }
    .dealers-page .dealers-1 .left .text{
      margin-bottom: 20px;
    }
    .inner-banner{
      background-attachment: initial;
      background-size: 100% 100%;
    }
    .inner-faq .container .inner-faq-content .inner-faq-list .item .a{
      padding: 20px 10px;
    }
    .solution-page{
      padding: 40px 0;
    }
  }
  
  .product-page{
    padding: 60px 0;
  }
  .product-page .sideLeft {
      width: 30%;
      padding-right: 30px;
      position: sticky;
  }
  
  .product-page .sideRight {
      width: 70%
  }
  
  .product-page .sideLeft .box {
      padding: 30px;
      background: #f7f7f7
  }
  
  .product-page .sideLeft .box h3 {
      display: block;
      padding: 38px 25px;
      background: var(--primary);
      font-size: 30px;
      color: #fff;
      font-family: 'Swiss-Bold';
  }
  
  .product-page .sideLeft .box .list ul li {
      margin-top: 6px;
      padding: 10px 20px;
      border-left: 4px solid var(--primary);
      font-size: 16px;
      line-height: 2;
      color: #000;
      background: #fff;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      position: relative
  }
  .product-page .sideLeft .box .list > ul > li.active{
    color: var(--primary);
  }
  
  .product-page .sideLeft .box .list ul li.active ul {
      display: block
  }
  
  .product-page .sideLeft .box .list ul li i {
      position: absolute;
      top: 6px;
      right: 0;
      padding: 10px;
      font-size: 18px
  }
  
  .product-page .sideLeft .box .list ul li img {
      max-width: 32px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 30px
  }
  
  .product-page .sideLeft .box .list ul li ul li {
      border: none;
      background: #fff;
      color: #888;
  }
  
  .product-page .sideLeft .box .list ul li ul li:hover {
      background: var(--primary);
      color: #fff
  }
  
  .product-page .sideLeft .box .list ul li ul li.active {
      background: var(--primary);
      color: #fff
  }
  
  .product-page .sideLeft .img {
      display: block;
      margin-top: 40px;
      padding: 60px 5%;
      text-align: center;
      color: #fff
  }
  
  .product-page .sideLeft .img h4 {
      display: block;
      font-size: 24px;
      line-height: 1;
      font-family: 'Swiss-Bold';
  }
  
  .product-page .sideLeft .img p {
      display: block;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      margin: 25px 0 45px
  }
  
  .product-page .sideLeft .img a.more {
      line-height: 45px;
      height: 45px;
      width: 150px;
      padding: 0 20px;
      background: var(--primary);
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      display: inline-block;
      border: 1px solid transparent
  }
  
  .product-page .sideLeft .img a.more:hover {
      background: 0 0;
      color: var(--primary);
      border: 1px solid var(--primary);
  }
  .product-page .sideRight{
    width: 70%;
  }
  
  .main-box .top {
      padding: 30px 25px;
      -webkit-box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, .1);
      box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, .1);
      text-align: left
  }
  
  .main-box .top h1{
    font-family: 'Swiss-Bold';
  }
  .main-box .top .cat_des{
    font-size: 16px;
    margin-top: 6px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0px;
    line-height: 30px;
  }
  .main-box .top .content{
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
  }
  
  .main-box .top h3 {
      color: #111;
      font-weight: 700;
      line-height: 2;
      margin-bottom: 10px
  }
  
  .main-box .top p {
      line-height: 1.5;
      color: #111;
      font-size: 18px
  }
  
  .main-box .productbox {
      padding: 45px 35px;
      background: #f7f7f7;
      margin-top: 0px
  }
  
  .main-box .productbox ul {
      margin: 0 -12px;
      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
  }
  
  .main-box .productbox ul > p{
    font-size: 16px;
    letter-spacing: 0;
  }
  
  .main-box .productbox ul li {
      padding: 12px
  }
  
  .main-box .productbox ul.searchlist li .item {
      border: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
  }
  
  .main-box .productbox ul.searchlist li .item .content {
      display: inline-block
  }
  
  .main-box .productbox ul.searchlist li .item .content p.pp {
      opacity: 0
  }
  
  .main-box .productbox ul li .item.nav {
      background: #000
  }
  
  .main-box .productbox ul li .item.nav h3 {
      color: #fff
  }
  
  .main-box .productbox ul li .item a.more {
      font-size: 14px
  }
  
  .main-box .productbox ul li .item h5 {
      width: 100%;
      background: #fff;
      text-align: center;
      padding: 10px;
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      /*border-top: 1px solid #eee;*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Swiss-Bold';
      line-height: 1.7;
  }
  
  .main-box .productbox ul li .item .cont{
    padding-bottom: 10px;
    background: #ffffff;
    margin-top: 10px;
  }
  .main-box .productbox ul li .item .des{
    display: block;
    text-align: center;
    background: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 0 10px;
    min-height: 70px;
  }
  
  .main-box .productbox ul.search li .item h5 {
      width: auto
  }
  
  .main-box .productbox ul.search li .item .floatbox {
      position: relative !important;
      display: block !important;
      left: 0;
      transform: none
  }
  
  .main-box .productbox ul li .item:hover h5 {
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      color: var(--primary)
  }
  
  .main-box .productbox ul li .item:hover .des {
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      color: var(--primary)
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox a.more {
      font-size: 16px;
      width: 160px;
      height: 50px;
      background-color: #333;
      border-radius: 5px;
      display: inline-block;
      line-height: 50px;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      position: relative;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      -ms-transition: .5s;
      -o-transition: .5s;
      transition: .5s
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox a.more:hover {
      background-color: var(--primary)
  }
  
  .main-box .productbox ul.imglist {
      margin: 0
  }
  
  .main-box .productbox ul.imglist li {
      padding: 0
  }
  
  .main-box .productbox ul.imglist li a img {
      min-width: 306px;
      width: 100%
  }
  
  .main-box .productbox ul.productlist2 li:nth-child(3n) .item .floatbox {
      left: auto;
      right: 100%
  }
  
  .main-box .productbox ul.productlist2 li .item {
      position: relative;
      height: 100%;
      background: #ffffff;
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox {
      position: absolute;
      width: 109%;
      top: 0;
      left: 100%;
      height: 100% !important;
      border: 1px solid #eee;
      background: #fff;
      padding: 25px;
      text-align: left;
      display: none;
      z-index: 99
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox .content {
      margin-top: 15px;
      margin-bottom: 40px;
      font-size: 18px
  }
  
  
  .prodet-page .prodet-1 {
      padding: 90px 0 100px;
  }
  .prodet-page .prodet-1 .product-box .left{
      width: 50%;
      position: relative;
  }
  .prodet-page .prodet-1 .product-box .left .big {
      border: 1px solid #ccc;
  }
  .prodet-page .prodet-1 .product-box .left .big img {
      width: 100%;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll {
      position: relative;
      width: 100%;
      left: 0;
      top: 0;
      height: auto;
      overflow: hidden;
      margin-top: 20px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul {
      margin: 0 -8px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul li {
      margin-bottom: 13px;
      padding: 0 10px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul li a {
      border: 1px solid #ccc;
      display: block;
  }
  .prodet-page .prodet-1 .product-box .right {
      width: 50%;
      padding: 0 46px;
  }
  .prodet-page .prodet-1 .product-box .right.app {
      width: 66%;
      padding: 0 0 0 46px;
  }
  .prodet-page .prodet-1 .product-box .right h1 {
      font-size: 30px;
      color: #000;
      margin-bottom: 26px;
      font-family: 'Swiss-Bold';
      line-height: 1.5;
  }
  .prodet-page .prodet-1 .product-box .right h3 {
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 26px;
  }
  .prodet-page .prodet-1 .product-box .right .content {
    font-size: 16px;
    color: #666666;
    line-height: 2;
  }
  .prodet-page .prodet-1 .product-box .right .content .color .c_list{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #000;
    margin-right: 10px;
    margin-bottom: 10px;
  } 
  .prodet-page .prodet-1 .product-box .right .content .color .c_list.r{
    background: red;
  }
  .prodet-page .prodet-1 .product-box .right .more{
    display: inline-block;
    padding: 12px 36px;
    height: auto;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: var(--primary);
    margin-top: 30px;
    font-family: 'Swiss-Roman';
  }
  .prodet-page .prodet-1 .product-box .right .more:hover{
    background: var(--black)
  }
  .prodet-page .prodet-1 .product-box .right .features {
    color: #000;
    margin: 30px 0 12px;
  }
  .product2-page {
      overflow: unset;
      position: relative;
      z-index: 1;
      padding: 70px 0 100px
  }
  
  
  .prodet-page .prodet-2 .options {
    background: #efefef;
  }
  .prodet-page .prodet-2 .options ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .prodet-page .prodet-2 .options ul li {
    font-size: 18px;
    line-height: 1;
    color: #000000;
    padding: 30px 0 26px;
    cursor: pointer;
    position: relative;
    margin-right: 74px;
    font-family: 'Swiss-Bold';
  }
  .prodet-page .prodet-2 .options ul li:hover::after {
    width: 100%;
  }
  .prodet-page .prodet-2 .options ul li::after {
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    background: var(--primary);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
  }
  .prodet-page .prodet-2 .options ul li.active::after {
    width: 100%;
  }
  .prodet-page .prodet-2 .ret dl dd .content {
    padding: 60px 0 90px;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
  }
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form input,
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form textarea{
      width: 100%;
      height: 70px;
      border: none;
      background: #f7f7f7;
      font-size: 16px;
      line-height: 30px;
      color: #000;
      padding: 0 20px;
      margin-bottom: 20px;
  }
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form input[type=submit]{
    width: 174px;
    min-width: 120px;
    height: 54px;
    background: var(--primary);
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 60px;
    padding-top: 30px;
  }
  .prodet-page .prodet-3 h2 {
    text-align: center;
    font-family: 'Swiss-Bold';
  }
  .prodet-page .prodet-3 .relatedBox {
    margin-top: 30px;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #cccccc;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img:hover span {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img img {
    width: 100%;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img span {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: var(--primary);
    text-transform: uppercase;
    padding: 24px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    font-weight: bold;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Swiss-Roman';
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide p:hover{
    color: var(--primary);
  }
  .prodet-page h2 {
      font-size: 48px;
      line-height: 1.2;
  }
  .pro-link{
    padding: 40px 0;
  }
  .pro-link .container{
    display: flex;
    flex-wrap: wrap;
  }
  
  
  @media screen and (max-width: 1500px) {
    .prodet-page h2 {
      font-size: 38px;
      line-height: 1.2;
    }
  }
  @media screen and (max-width: 1250px) {
    .product-page .sideLeft{
      display: none;
    }
    .product-page .sideRight{
      width: 100%;
    }
  
    .prodet-page .prodet-1 .product-box .right h1{
       font-size: 24px;
     }
     .prodet-page .prodet-1 .product-box .right h3{
        font-size: 16px;
        line-height: 30px;
    }
    .prodet-page .prodet-1 .product-box .right .content{
        font-size: 16px;
        line-height: 30px;
      }
      .prodet-page .prodet-3 .relatedBox .swiper-slide p{
        font-size: 16px;
        line-height: 30px;
      }
  }
  
  @media screen and (max-width: 1000px) {
    .prodet-page .prodet-3 .relatedBox .swiper-slide p{
      font-size: 16px;
      line-height: 30px;
    }
    .prodet-page .prodet-1 .product-box .left{
        width: 100%;
    }
    .prodet-page .prodet-1 .product-box .right {
      width: 100%;
      margin-top: 30px;
      padding: 0;
    }
    .prodet-page .prodet-1 .product-box .right.app {
      width: 100%;
      margin-top: 30px;
      padding: 0;
  }
  }
  
  @media screen and (max-width: 700px) {
    .prodet-page .prodet-2 .options ul li{
       font-size: 16px;
     }
    .prodet-page .prodet-1 .product-box .left{
      padding-left: 0;
    }
    .prodet-page .prodet-1 .product-box .left .big{
      padding: 0;
      width: 100%;
      border: 1px solid #ccc;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll{
      width: 100%;
      height: auto;
      position: relative;
      top: 0;
      left: 0;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul{
      margin: 0 -10px;
      margin-top: 20px;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul li{
      padding: 0 10px;
    }
    .pro-link{
      padding: 20px 0;
      line-height: 1.7;
    }
    .pro-link .left,
    .pro-link .right{
      width: 100%;
    }
  }
  
  @media screen and (max-width: 500px) {
    .product-page{
      padding: 10px 0;
    }
    .prodet-page .prodet-1{
      padding: 40px 0;
    }
    .main-box .top{
      padding: 16px;
    }
    .main-box .productbox{
      padding: 20px 10px;
    }
    .prodet-page .prodet-1 .product-box .right h1 {
      font-size: 20px;
      line-height: 36px;
    }
    .prodet-page .prodet-2 .options ul li{
      margin-right: 20px;
    }
    .prodet-page .prodet-2 .ret dl dd .content{
      padding-bottom: 0;
    }
    .prodet-page .prodet-3{
      padding-bottom: 40px;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul{
      margin: 0 -9px;
      margin-top: 20px;
    }
    .prodet-page h2 {
      font-size: 24px;
      line-height: 1.8;
    }
  }
  
  .service-page .service-1 {
    padding: 40px 0;
  }
  .service-page .service-1 .list {
    margin-top: 90px;
  }
  .service-page .service-1 .list ul {
    margin: -30px;
  }
  .service-page .service-1 .list ul li {
    padding: 30px;
  }
  .service-page .service-1 .list ul li i {
    height: 52px;
    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;
  }
  .service-page .service-1 .list ul li h6 {
    display: block;
    font-size: 24px;
    margin: 1em 0 .5em;
    line-height: 2;
  }
  .service-page .service-1 .list ul li .text {
    font-size: 16px;
    color: #626262;
    line-height: 2;
  }
  .service-page .service-2 {
    padding: 160px 0 130px;
    color: white;
    background: url("../images/service-2-bg.jpg") center center no-repeat;
  }
  .service-page .service-2 .box {
    width: 48%;
  }
  .service-page .service-2 h2.title small {
    display: block;
    font-size: 16px;
    margin-top: .5em;
    font-weight: normal;
  }
  .service-page .service-2 .list {
    margin-top: 100px;
  }
  .service-page .service-2 .list ul {
    margin: -18px;
  }
  .service-page .service-2 .list ul li {
    padding: 18px;
  }
  .service-page .service-2 .list ul li > i {
    height: 50px;
    line-height: 50px;
    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;
  }
  .service-page .service-2 .list ul li h6 {
    margin-top: 2em;
    font-size: 18px;
    padding-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
  }
  .service-page .service-2 .list ul li h6:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    top: -1px;
    background: var(--primary);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    right: 0;
  }
  .service-page .service-2 .list ul li a.link2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    margin-top: .7em;
  }
  .service-page .service-2 .list ul li a.link2:hover {
    color: var(--primary);
  }
  .service-page .service-2 .list ul li:hover h6:after {
    width: 100%;
    left: 0;
  }
  .service-page .service-3 {
    padding: 140px 0;
  }
  .service-page .service-3 a.link {
    float: right;
    margin-top: -0.1em;
  }
  .service-page .service-3 .list {
    margin-top: 50px;
  }
  .service-page .service-3 .list ul {
    margin: -10px;
  }
  .service-page .service-3 .list ul li {
    padding: 10px;
  }
  .service-page .service-3 .list ul li video {
    display: block;
    width: 100%;
  }
  .service-page .service-3 .list ul .slick-prev {
    left: -5%;
  }
  .service-page .service-3 .list ul .slick-next {
    right: -5%;
  }
  .download-page ul{
      margin:-15px;
  }
  .download-page ul li{
      padding:15px;
  }
  
  .download-page ul li .box{
      background-color: #e9e9e9;
      padding:15px;
  }
  
  .download-page ul li .box .img{
      width:40%;
      vertical-align: middle;
  }
  
  .download-page ul li .box .text{
      width:60%;
      vertical-align: middle;
  }
  
  .download-page ul li .box .text p{
      margin-top: 10px;
      width: auto;
      height: 80px;
      line-height: 28px;
      position: relative;
      top: 0px;
      left: 0px;
  }
  
  .download-page ul li .box a{
      display: inline-block;
      padding:0 20px;
      height: 36px;
      color: #ffffff;
      font-size: 14px;
      text-align: center;
      line-height: 36px;
      background-color: var(--primary);
  }
  
  .download-page ul li .box a:hover{
    background-color: #000000;
  }
  @media screen and (max-width: 1500px) {
    .service-page .service-2,
    .service-page .service-3,
    .service-page .service-1 {
      padding: 70px 0;
    }
    .service-page .service-1 .list ul li h6{
      font-size: 20px;
    }
    .service-page .service-1 .list {
      margin-top: 50px;
    }
    .service-page .service-1 .list ul li {
      padding: 15px;
    }
    .service-page .service-1 .list ul {
      margin: -15px;
    }
    .service-page .service-1 .list ul li i {
      height: 40px;
      line-height: 40px;
    }
    .service-page .service-1 .list ul li i img {
      max-height: 100%;
      max-width: 40px;
    }
    .service-page .service-2 .list {
      margin-top: 40px;
    }
    .service-page .service-2 .list ul li h6 {
      margin-top: 1em;
      padding-top: .5em;
    }
    .service-page .service-2 .list ul li > i {
      line-height: 40px;
      height: 40px;
    }
    .service-page .service-2 .list ul li > i img {
      max-height: 100%;
      max-width: 40px;
    }
  }
  @media screen and (max-width: 1250px) {
     .service-page .service-1 .list ul li .text {
      font-size: 14px;
    }
    .service-page .service-1 .list ul li h6{
      font-size: 18px;
      line-height: 2;
    }
  }
  @media screen and (max-width: 1000px) {
    .download-page ul li{
      width: 100%!important;
    }
    .service-page .service-1 .list ul li {
      width: 50%;
    }
    .service-page .service-2 .box {
      width: 80%;
    }
    .service-page .service-2 .list ul li > i {
      height: 30px;
      line-height: 30px;
    }
  }
  @media screen and (max-width: 700px) {
    .service-page .service-2,
    .service-page .service-3,
    .service-page .service-1 {
      padding: 40px 0;
    }
  }
  @media screen and (max-width: 500px) {
    .download-page ul li .box .img{
      width: 100%!important;
    }
    .download-page ul li .box .text{
      width: 100%!important;
      padding: 15px;
    }
  
    .download-page ul li .box .text p{
      height: auto;
    }
    .service-page .service-1 .list ul li {
      width: 100%;
    }
  }
  
  .production-sec h3.title{
     font-size: 40px;
    line-height: 1.2;
  }
  .production-sec h3.title em{
    color: var(--primary);
  }
  .production-sec .pur-sec {
    padding: 0 0 80px 0;
  }
  .production-sec .design-1{
    padding: 100px 0;
  }
  .production-sec .design-1 .tips{
    font-size: 52px;
    text-align: center;
    text-transform: capitalize;
  }
  .production-sec .design-1 .tips_des{
    max-width: 1230px;
    color: rgba(0, 0, 0, .8);
    font-size: 18px;
    margin: 20px auto 0;
    line-height: 1.8;
    text-align: center;
  }
  .production-sec .design-1 .content{
    margin-top: 70px;
  }
  .production-sec .design-1 .slick{
    margin: 0 -10px;
  }
  .production-sec .design-1 .slick .slick-track{
    display: flex;
    align-items: center;
  }
  .production-sec .design-1 .slick li{
    padding: 0 10px;
  }
  .production-sec .design-1 .slick li a{
    display: block;
  }
  .production-sec .design-1 .slick li a img{
    width: 100%;
    vertical-align: middle;
  }
  .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: 50%;
    padding-right: 60px;
    padding-top: 90px;
  }
  .production-sec .pur-sec .mml-row .text-wrap h2 {
    font-style: normal;
    font-size: 40px;
    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: 36px;
    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-style: normal;
    font-size: 48px;
    line-height: 1.2;
    color: #f26122;
    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: 30px 0px;
    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: 40px;
    line-height: 1.2;
    color: var(--primary);
  }
  .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: 80px;
  }
  .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: 40%;
  }
  .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-style: normal;
    font-size: 40px;
    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: 32px;
    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-style: normal;
    color: #000;
    font-size: 40px;
    line-height: 1.2;
    margin: 40px;
    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-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: 80px 0;
    background-color: whitesmoke;
  }
  .production-sec .p11-milestone .text h2 {
    font-style: normal;
    font-size: 40px;
    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: 40px;
  }
  .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(#f26122), color-stop(50%, #f35d2e), to(#f25743));
    background-image: -webkit-linear-gradient(left, #f26122 0%, #f35d2e 50%, #f25743 100%);
    background-image: -moz-linear-gradient(left, #f26122 0%, #f35d2e 50%, #f25743 100%);
    background-image: linear-gradient(90deg, #f26122 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: #f26122;
  }
  .production-sec .team-img {
    text-align: center;
  }
  .production-sec .team-img .text h2 {
    font-style: normal;
    font-size: 40px;
    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) {
    .production-sec h3.title{
      font-size: 30px;
    }
    .production-sec .pur-sec .mml-row{
      flex-wrap: wrap;
    }
    .production-sec .prints-sec .mml-row .text-wrap{
      max-width: 600px;
    }
    .production-sec .pur-sec .mml-row .text-wrap{
      width: 50%;
    }
    .production-sec .pur-sec .mml-row .img-wrap{
      width: 50%;
    }
    .production-sec .design-1 .tips{
      font-size: 40px;
    }
    
  }
  
  @media screen and (max-width: 1250px) {
    .production-sec .pur-sec .mml-row .text-wrap{
      width: 100%;
      padding-right: 0;
    }
    
    .production-sec .pur-sec .mml-row .img-wrap{
      width: 100%;
      max-width: 100%;
      margin-top: 40px;
    }
  
     .production-sec .pur-sec .mml-row .img-wrap img{
       width: 100%;
     }
  
     .production-sec .prints-sec .mml-row{
       flex-wrap: wrap;
     }
     .production-sec .prints-sec .mml-row .img-wrap{
       width: 100%;
       max-width: 100%;
     }
     .production-sec .prints-sec .mml-row .img-wrap img{
       width: 100%;
       margin-top: 40px;
     }
  
     .production-sec .prints-sec .mml-row .text-wrap{
       width: 100%;
       order: -1;
       max-width: 100%;
     }
    
  }
  
  @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%;
      margin-top: 20px;
    }
    .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 .prints-sec{
      padding-bottom: 40px;
    }
    .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;
    }
  
  }
  
  @media screen and (max-width: 500px) {
    .production-sec .design-1{
      padding: 40px 0;
    }
    .production-sec .design-1 .tips{
      font-size: 24px;
    }
    .production-sec .design-1 .tips_des{
      font-size: 16px;
      line-height: 2;
    }
    .production-sec .design-1 .content{
      margin-top: 20px;
    }
    .production-sec h3.title{
      font-size: 24px;
    }
    .production-sec .p11-milestone{
      padding: 40px 0;
    }
  }
  
  /*seo*/
  
  a.tengfa{
    width: 400px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      display: inline-block;
      transform: translate(12px,6px);
  }@font-face {
    font-family: 'Swiss-Roman';
    src: url('../fonts/Swiss721BT-Roman.eot') format('eot'), url('../fonts/Swiss721BT-Roman.woff2') format('woff2'), url('../fonts/Swiss721BT-Roman.woff') format('woff'), url('../fonts/Swiss721BT-Roman.ttf') format('truetype');
    font-display: swap;
  }
  @font-face {
    font-family: 'Swiss-Bold';
    src: url('../fonts/Swiss721BT-Bold.eot') format('eot'), url('../fonts/Swiss721BT-Bold.woff2') format('woff2'), url('../fonts/Swiss721BT-Bold.woff') format('woff'), url('../fonts/Swiss721BT-Bold.ttf') format('truetype');
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot') format('eot'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-display: swap;
  }
  body {
    font-family: 'Poppins';
  }
  .body-overflow-box {
    position: relative;
    left: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    overflow: hidden;
  }
  :root {
    --white: #fff;
    --black: #000;
    --primary: #f39c3f;
  }
  .ui.container {
    padding: 0 15px;
    position: relative;
    max-width: 1380px;
    margin: auto;
    width: 100%;
  }
  #header {
    z-index: 999;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #header .ui.container {
    max-width: 1630px;
  }
  #header .h-top {
    background-color: #3e3e3e;
    color: var(--white);
    padding: 8px 0;
  }
  #header .h-top .ui.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .h-top .ui.menu .left ul li {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
    margin-right: 73px;
    font-family: 'Swiss-Roman';
  }
  #header .h-top .ui.menu .left ul li img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .h-top .ui.menu .left ul li span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 6px;
  }
  #header .h-top .ui.menu .left ul li:last-child {
    margin-right: 0;
  }
  #header .h-top .ui.menu .right {
    margin: 0 0 0 auto;
  }
  #header .h-top .ui.menu .right a {
    display: inline-block;
    font-size: 16px;
    margin-right: 23px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #header .h-top .ui.menu .right a:last-child {
    margin-right: 0;
  }
  #header .h-top .ui.menu .right a:hover {
    color: var(--primary);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  #header .nav {
    background: var(--white);
  }
  #header .nav .ui.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .nav .ui.menu .logo {
    vertical-align: middle;
  }
  #header .nav .ui.menu .logo img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .nav .ui.menu .menu-box {
    display: inline-block;
    margin: 0 0 0 auto;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    z-index: 100;
    float: left;
    position: relative;
    text-transform: uppercase;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: relative;
    padding: 0 35px;
    line-height: 110px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li > a:hover,
  #header .nav .ui.menu .menu-box ul.menu > li > a.active {
    background: var(--primary);
    color: var(--white);
  }
  #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;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 100%;
    left: 0;
    width: 220px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary);
    display: none \9;
  }
  #header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
    display: block;
    float: none;
    padding: 0 10px;
    line-height: 40px;
    color: black;
    -webkit-transition: .1s;
    -moz-transition: .1s;
    transition: .1s;
    text-transform: capitalize;
    position: relative;
  }
  #header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
    display: block;
    background: none;
    height: auto;
    padding: 0;
  }
  #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:hover ul.sub-menu {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
    display: block \9;
  }
  #header .nav .ui.menu .menu-box ul.menu > li:last-child {
    margin-right: 0;
  }
  #header .nav .ui.menu .h-search {
    display: inline-block;
    cursor: pointer;
    margin-left: 30px;
  }
  #header .nav .ui.menu .h-search img {
    display: inline-block;
    vertical-align: middle;
  }
  #header .nav .ui.menu .h-language {
    display: inline-block;
    position: relative;
    margin-left: 29px;
  }
  #header .nav .ui.menu .h-language span {
    color: #a7a7a7;
    font-size: 18px;
  }
  #header .nav .ui.menu .h-language span i {
    display: inline-block;
  }
  #header .nav .ui.menu .h-language ul.sub-menu {
    -webkit-perspective: 500px;
    -moz-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    text-align: left;
    position: absolute;
    z-index: 1;
    font-size: 14px;
    font-weight: 400;
    background: #fff;
    top: 125%;
    right: 0;
    width: 130px;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    -moz-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.3s;
    transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid var(--primary);
    display: none \9;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li {
    display: block;
    padding: 0 10px;
    line-height: 40px;
    text-transform: capitalize;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li a {
    display: block;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li a img {
    vertical-align: middle;
    width: auto;
    height: 20px;
    margin-right: 6px;
  }
  #header .nav .ui.menu .h-language ul.sub-menu li:hover {
    background: #222;
    color: white;
  }
  #header .nav .ui.menu .h-language:hover ul.sub-menu {
    opacity: 1;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    -moz-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
    display: block \9;
  }
  #header .nav .ui.menu .h-inquiry {
    display: inline-block;
    margin-left: 22px;
    cursor: pointer;
  }
  #header .nav .ui.menu .h-inquiry img {
    display: inline-block;
    vertical-align: middle;
  }
  #header.active {
    position: fixed;
    top: -40px;
    left: 0;
    -webkit-box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 7px 7px 35px 0px rgba(0, 0, 0, 0.1);
  }
  #header.active .nav .ui.menu .logo img{
    width: 70%;
  }
  #header.active .nav .ui.menu .menu-box ul.menu > li > a{
    line-height: 70px;
  }
  #banner {
    position: relative;
  }
  #banner ul li {
    position: relative;
  }
  #banner ul li .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
  }
  #banner ul li .text .box {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 90px;
    text-align: center;
  }
  #banner ul li .text .box .title {
    font-size: 80px;
    letter-spacing: 5px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
    text-transform: uppercase;
  }
  #banner ul li .text .box .tit {
    font-size: 70px;
    letter-spacing: 4px;
    line-height: 1;
    font-family: 'Swiss-Roman';
    margin-top: 1px;
    text-transform: uppercase;
  }
  #index-body .title {
    font-size: 40px;
    line-height: 1.3;
    font-family: 'Swiss-Bold';
  }
  #index-body .i-product {
    background: url(../images/ipbg.png) no-repeat center bottom;
    padding: 9.532% 0 5.469%;
  }
  #index-body .i-product .box {
    max-width: 883px;
  }
  #index-body .i-product .box .title {
    color: #32404c;
  }
  #index-body .i-product .box p {
    letter-spacing: 1px;
    color: #6a6a6a;
    font-family: 'Swiss-Roman';
    line-height: 2;
    margin-top: 6px;
  }
  #index-body .i-product .box .con {
    line-height: 2;
    letter-spacing: 1px;
    color: #858d94;
    margin-top: 37px;
  }
  #index-body .i-product .box .category {
    padding-top: 12.458%;
  }
  #index-body .i-product .box .category 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;
  }
  #index-body .i-product .box .category ul li {
    text-align: center;
  }
  #index-body .i-product .box .category ul li .img-box {
    line-height: 106px;
    overflow: unset;
  }
  #index-body .i-product .box .category ul li .img-box img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .i-product .box .category ul li .tit {
    font-size: 20px;
    line-height: 1.4;
    font-family: 'Swiss-Roman';
    margin-top: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .i-product .box .category ul li .tit:hover {
    color: var(--primary);
  }
  #index-body .product {
    padding: 14px 0 8.8021%;
  }
  #index-body .product ul {
    margin: -25px -10px -26px -9px;
  }
  #index-body .product ul li {
    padding: 25px 10px 26px 9px;
  }
  #index-body .product ul li .ig {
    padding: 7px;
    background: var(--white);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #7d7d7d;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .product ul li .ig .img-box img{
    width: 100%;
  }
  #index-body .product ul li .ig .text {
    padding: 33px 21px 77px 14px;
  }
  #index-body .product ul li .ig .text span {
    line-height: 2;
  }
  #index-body .product ul li .ig .text .tit {
    color: #0c0c0c;
    font-family: 'Swiss-Bold';
    line-height: 2;
    margin-top: 2px;
  }
  #index-body .product ul li .ig .text .con {
    margin-top: 11px;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  #index-body .product ul li .ig .link {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 34px 30px 32px 31px;
    border-radius: 50%;
    background-color: #333333;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    opacity: 0;
  }
  #index-body .product ul li .ig:hover {
    background: var(--primary);
    color: var(--white);
    border-radius: 0px 0px 138px 0px;
  }
  #index-body .product ul li .ig:hover .text .tit {
    color: var(--white);
  }
  #index-body .product ul li .ig:hover .link {
    opacity: 1;
  }
  #index-body .about {
    position: relative;
  }
  #index-body .about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 920px;
  }
  #index-body .about .box .left {
    width: 40.5208%;
    color: var(--white);
    background-color: #373737;
    padding: 4.896% 5.4% 0 8.282%;
  }
  #index-body .about .box .left .con {
    line-height: 2;
    margin-top: 29px;
  }
  #index-body .about .box .left .con h1 {
    display: inline;
  }
  #index-body .about .box .left ul li {
    margin-top: 45px;
  }
  #index-body .about .box .left ul li .num {
    font-size: 35px;
    font-family: 'Swiss-Bold';
    line-height: 1;
  }
  #index-body .about .box .left ul li .num sub {
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    margin: 0 0 3px 9px;
  }
  #index-body .about .box .left ul li p {
    font-size: 14px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
  }
  #index-body .about .box .left ul li:last-child {
    margin-bottom: 0;
  }
  #index-body .about .box .right {
    width: 59.4792%;
    height: 100%;
  }
  #index-body .about .box .right img {
    height: 100%;
  }
  #index-body .about .bottom {
    border-radius: 0px 79px 78px 82px;
    border: solid 1px #999999;
    min-width: 994px;
    position: absolute;
    bottom: 95px;
    left: 8.282%;
    padding: 21px 29px 21px 16px;
    background: rgba(55, 55, 55, 0.5);
  }
  #index-body .about .bottom .ig {
    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;
  }
  #index-body .about .bottom .ig .left img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .about .bottom .ig .left .link {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--primary);
    font-family: 'Swiss-Roman';
    text-decoration: underline;
    padding-left: 34px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .about .bottom .ig .left .link:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
  #index-body .about .bottom .ig .right .play {
    display: inline-block;
    padding: 16px;
    border-radius: 50%;
    position: relative;
    border: solid 1px rgba(0, 0, 0, 0.1);
  }
  #index-body .about .bottom .ig .right .play::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 50px;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
  }
  #index-body .about .bottom .ig .right .play svg {
    position: absolute;
    top: -1px;
    left: -2px;
    stroke-width: 2px;
  }
  #index-body .about .bottom .ig .right .play svg path {
    fill: none;
    stroke: var(--white);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    stroke-dasharray: 100,2000;
  }
  #index-body .about .bottom .ig .right .play:hover svg path {
    stroke-dasharray: 620,620;
  }
  #index-body .case {
    padding: 146px 0 101px;
    position: relative;
  }
  #index-body .case .title {
    position: absolute;
    z-index: 10;
    left: 72px;
    top: 90px;
    color: #32404c;
    width: 36%;
  }
  #index-body .case .ui.container {
    max-width: 1510px;
  }
  #index-body .case .swiper {
    overflow: hidden;
  }
  #index-body .case .swiper-slide {
    padding-top: 220px;
  }
  #index-body .case .swiper-slide .img-box {
    -webkit-transform: scale(0.73);
    -moz-transform: scale(0.73);
    -ms-transform: scale(0.73);
    transform: scale(0.73);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  #index-body .case .swiper-slide .text {
    color: #404040;
    line-height: 1.7;
    width: 80%;
    margin: -10% 0 0 13%;
    display: none;
  }
  #index-body .case .swiper-slide .text .con {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-height: 2;
  }
  #index-body .case .swiper-slide .text .more {
    display: inline-block;
    background: var(--primary);
    font-size: 22px;
    letter-spacing: 1px;
    font-family: 'Swiss-Roman';
    color: var(--white);
    padding: 11px 53px;
    margin-top: 44px;
  }
  #index-body .case .swiper-slide-active {
    padding: 110px 0;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  #index-body .case .swiper-slide-active .img-box {
    -webkit-transform: scale(1.33);
    -moz-transform: scale(1.33);
    -ms-transform: scale(1.33);
    transform: scale(1.33);
  }
  #index-body .case .swiper-slide-next {
    padding-top: 60px;
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
  }
  #index-body .case .swiper-slide-next .text {
    display: block;
  }
  #index-body .case .qh {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
  }
  #index-body .case .qh .prev,
  #index-body .case .qh .next {
    cursor: pointer;
  }
  #index-body .case .qh .swiper-pagination {
    margin: 0 83px;
    position: initial;
  }
  #index-body .case .qh .swiper-pagination-bullet {
    width: 70px;
    height: 3px;
    background-color: #333333;
    border-radius: 0;
    margin-right: 10px;
    cursor: pointer;
  }
  #index-body .case .qh .swiper-pagination-bullet:last-child {
    margin-right: 0;
  }
  #index-body .case .qh .swiper-pagination-bullet-active {
    background: var(--primary);
  }
  #index-body .advantage {
    background: url(../images/adbg.jpg) no-repeat center;
    background-size: 100% 100%;
    height: 752px;
    color: var(--white);
    position: relative;
  }
  #index-body .advantage .ui.container {
    max-width: 1630px;
  }
  #index-body .advantage .box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  #index-body .advantage .box .bottom {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    margin-top: 71px;
    padding: 82px 0 68px;
  }
  #index-body .advantage .box .bottom ul {
    margin-right: -62px;
    width: 90%;
  }
  #index-body .advantage .box .bottom ul li {
    padding-right: 62px;
  }
  #index-body .advantage .box .bottom ul li .ig {
    padding-right: 52px;
    position: relative;
  }
  #index-body .advantage .box .bottom ul li .ig i {
    width: 39px;
    height: 39px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid var(--white);
    text-align: center;
    line-height: 39px;
  }
  #index-body .advantage .box .bottom ul li .ig i img {
    display: inline-block;
    vertical-align: middle;
  }
  #index-body .advantage .box .bottom ul li .ig span {
    display: block;
    line-height: 1.8;
    font-family: 'Swiss-Bold';
    letter-spacing: 1px;
    margin-top: 26px;
  }
  #index-body .advantage .box .bottom ul li .ig p {
    line-height: 2;
    margin-top: 8px;
    min-height: 111px;
  }
  #index-body .advantage .box .bottom ul li .ig::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 129px;
    border: 1px dashed #c0bbab;
  }
  #index-body .advantage .box .bottom ul li:last-child .ig {
    padding-right: 0;
  }
  #index-body .advantage .box .bottom ul li:last-child .ig::after {
    display: none;
  }
  #index-body .news {
    padding: 110px 0 46px;
  }
  #index-body .news .header .title {
    color: #32404c;
  }
  #index-body .news .header p {
    font-family: 'Swiss-Roman';
    letter-spacing: 1px;
    color: #6a6a6a;
    line-height: 1.6;
    margin-top: 3px;
  }
  #index-body .news .content {
    margin-top: 66px;
  }
  #index-body .news .content ul {
    margin-right: -30px;
  }
  #index-body .news .content ul li {
    padding-right: 30px;
  }
  #index-body .news .content ul li .tit {
    font-size: 25px;
    line-height: 1.2;
    font-family: 'Swiss-Roman';
    color: #32404c;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .news .content ul li .tit:hover {
    color: var(--primary);
  }
  #index-body .news .content ul li i {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #bfbfbf;
    margin-top: 27px;
  }
  #index-body .news .content ul li p {
    font-size: 14px;
    line-height: 2;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  #index-body .news .content ul li time {
    display: inline-block;
    font-size: 14px;
    color: #5d5c60;
    line-height: 1.5;
    margin-top: 21px;
  }
  #index-body .contact {
    background: url(../images/contact.png) no-repeat center;
    background-size: 100% 100%;
    padding: 110px 0 97px;
    position: relative;
    z-index: 1;
    margin-top: 170px;
  }
  #index-body .contact .box {
    width: 79%;
  }
  #index-body .contact .box .left .title {
    line-height: 1.3;
    color: #32404c;
  }
  #index-body .contact .box .right {
    padding: 13px 0 0 40px;
  }
  #index-body .contact .box .right ul {
    margin: 0 -20px -20px 0;
  }
  #index-body .contact .box .right ul li {
    padding: 0 20px 20px 0;
  }
  #index-body .contact .box .right ul li input {
    width: 100%;
    height: 44px;
    background: var(--white);
    border: 0;
    font-size: 14px;
    color: #8f8f8f;
    padding: 0 20px;
  }
  #index-body .contact .box .right ul li input::-webkit-input-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input:-moz-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input::-moz-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input:-ms-input-placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li input::placeholder {
    color: #8f8f8f;
  }
  #index-body .contact .box .right ul li.wid-100 {
    width: 100%;
  }
  #index-body .contact .box .right ul li .submit {
    display: block;
    background: var(--primary);
    color: var(--white);
    height: 44px;
    line-height: 44px;
    font-size: 16px;
    font-family: 'Swiss-Roman';
    text-align: center;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #index-body .contact .box .right ul li .submit:hover {
    background: var(--white);
    color: var(--primary);
  }
  #index-body .contact .tp {
    position: absolute;
    z-index: -1;
    right: 0;
    top: -170px;
  }
  #footer {
    background-color: #333333;
    color: var(--white);
    padding: 87px 0 34px;
    position: relative;
  }
  #footer .ui.container {
    max-width: 1630px;
  }
  #footer .f-content .tit {
    font-size: 20px;
    line-height: 1;
    margin: 10px 0 25px;
    font-family: 'Swiss-Roman';
  }
  #footer .f-content ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 6px;
    color: #a3a3a3;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    transition: .2s;
  }
  #footer .f-content ul li i {
    width: 23px;
    display: inline-block;
    vertical-align: middle;
  }
  #footer .f-content ul li i img {
    display: inline-block;
  }
  #footer .f-content ul li span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 16px;
    width: 93%;
  }
  #footer .f-content ul li:last-child {
    margin-bottom: 0;
  }
  #footer .f-content ul li:hover {
    color: var(--white);
  }
  #footer .f-content .f-ab .share {
    margin-top: 41px;
  }
  #footer .f-content .f-ab .share a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    background: #404040;
    margin-right: 5px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  #footer .f-content .f-ab .share a:last-child {
    margin-right: 0;
  }
  #footer .f-content .f-ab .share a:hover {
    background: var(--white);
    color: var(--primary);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  #footer .f-content .f-nav {
    width: 23.9%;
    padding-left: 3.938%;
  }
  #footer .f-content .f-product {
    width: 24%;
  }
  #footer .f-content .f-contact {
    width: 27.1%;
    padding-top: 11px;
  }
  #footer .f-content .f-contact ul li {
    margin-bottom: 32px;
  }
  #footer .f-content .f-contact ul li:last-child {
    margin-bottom: 0;
  }
  #footer .f-content .f-contact ul li:hover {
    color: #a3a3a3;
  }
  #footer .f-copy {
    width: 100%;
    position: relative;
    margin-top: 81px;
    background-color: #3d3d3d;
    padding: 14px 0 13px;
    font-size: 14px;
    color: #b1b1b1;
    text-align: center;
  }
  #footer .f-copy svg {
    vertical-align: top;
    margin-top: -3px;
    width: auto;
    max-height: 26px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    fill: #b1b1b1;
  }
  #footer .f-copy svg text {
    fill: #b1b1b1;
  }
  #footer .f-copy .a1 {
    display: inline-block;
    margin-left: 77px;
  }
  @media screen and (max-width: 1680px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1400px;
    }
    #index-body .about .box .left {
      padding: 4.896% 5.4% 0 6%;
    }
    #index-body .about .bottom {
      left: 6%;
    }
    #index-body .case .title {
      width: 40%;
    }
    #index-body .advantage .box .bottom ul li .ig p {
      min-height: 134px;
    }
    #footer .f-content ul li span {
      width: 92%;
    }
    #footer .f-copy svg {
      max-height: 33px;
      margin-top: -6px;
    }
  }
  @media screen and (max-width: 1440px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1200px;
    }
    #index-body .case .title {
      width: 42%;
    }
    #index-body .case .swiper-slide .text {
      width: 77%;
    }
    #index-body .advantage .box .bottom ul {
      width: 100%;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -40px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 40px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 40px;
    }
    #index-body .contact .box {
      width: 85%;
    }
    #footer .f-content ul li span {
      width: 91%;
    }
  }
  @media screen and (max-width: 1280px) {
    .ui.container,
    #index-body .advantage .ui.container,
    #footer .ui.container {
      max-width: 1090px;
    }
    #header .nav .ui.menu .menu-box ul.menu > li {
      font-size: 14px;
    }
    #header .nav .ui.menu .menu-box ul.menu > li > a {
      padding: 0 25px;
      line-height: 100px;
    }
    #header .nav .ui.menu .h-search,
    #header .nav .ui.menu .h-language,
    #header .nav .ui.menu .h-inquiry {
      margin-left: 20px;
    }
    #banner ul li .text .box .title {
      font-size: 70px;
    }
    #banner ul li .text .box .tit {
      font-size: 60px;
    }
    #index-body .product ul li .ig .text {
      padding: 33px 0 77px;
    }
    #index-body .about .box {
      height: 820px;
    }
    #index-body .about .box .left {
      padding: 4.896% 2% 0 3%;
    }
    #index-body .about .bottom {
      left: 3%;
      bottom: 40px;
    }
    #index-body .about .box .left ul li {
      margin-top: 30px;
    }
    #index-body .case .title {
      width: 50%;
    }
    #index-body .case .swiper-slide-next {
      padding-top: 20px;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -30px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 30px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 30px;
    }
    #index-body .contact .box {
      width: 90%;
    }
    #footer .f-content ul li span {
      width: 90%;
    }
    #footer .f-copy .a1 {
      margin-left: 20px;
    }
  }
  @media screen and (max-width: 1100px) {
    #header .nav .ui.menu .logo {
      width: 10%;
    }
    #header .nav .ui.menu .menu-box ul.menu > li > a {
      padding: 0 20px;
      line-height: 80px;
    }
    #banner ul li .text .box .title {
      font-size: 60px;
    }
    #banner ul li .text .box .tit {
      font-size: 50px;
    }
    #index-body .case {
      padding: 100px 0;
    }
    #index-body .case .title {
      width: 58%;
    }
    #index-body .case .swiper-slide .text .more {
      font-size: 20px;
      margin-top: 32px;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: -20px;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 20px;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 20px;
    }
    #index-body .news .content ul li .tit {
      font-size: 22px;
    }
    #index-body .contact .box {
      width: 100%;
    }
    #footer .f-content ul li span {
      width: 89%;
    }
    #footer .f-copy svg {
      max-height: 28px;
      margin-top: -3px;
    }
  a.tengfa{
    display: none !important;
  }
  
  }
  @media screen and (max-width: 1000px) {
    #header {
      margin-bottom: 0;
    }
    #header .nav {
      padding: 0;
    }
    #header .nav .ui.menu .logo {
      padding: 0;
      width: auto;
      display: block;
    }
    #header.active .nav .ui.menu .logo img,
    #header .nav .ui.menu .logo img {
      width: 70%;
    }
    #header .nav .ui.menu .h-language,
    #header .nav .ui.menu .h-inquiry {
      display: none;
    }
    #header.active .nav {
      padding: 0;
    }
    #banner {
      padding-top: 60px;
    }
    #banner ul li .text .box {
      padding: 50px 0 80px;
    }
    #banner ul li .text .box .title {
      font-size: 50px;
    }
    #banner ul li .text .box .tit {
      font-size: 40px;
    }
    #banner ul.slick-dots {
      bottom: 20px;
    }
    #index-body .i-product {
      background: transparent;
    }
    #index-body .product ul li .ig .text {
      padding: 20px 0 77px;
    }
    #index-body .about {
      background: #373737;
      padding: 0 15px;
      padding-bottom: 4%;
    }
    #index-body .about .box {
      height: auto;
    }
    #index-body .about .box .left {
      width: 100%;
      padding: 3% 0;
    }
    #index-body .about .box .right {
      display: none;
    }
    #index-body .about .bottom {
      position: initial;
      margin-top: 30px;
      min-width: 100%;
    }
    #index-body .case {
      padding: 60px 0;
    }
    #index-body .case .ui.container {
      max-width: 680px;
    }
    #index-body .case .title {
      width: 80%;
    }
    #index-body .case .swiper-slide-active,
    #index-body .case .swiper-slide-next {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    #index-body .case .swiper-slide-active {
      padding: 0;
    }
    #index-body .case .swiper-slide-active .img-box {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
    #index-body .case .swiper-slide-active .img-box img {
      width: 100%;
    }
    #index-body .case .swiper-slide-active .text {
      display: block;
      width: 100%;
      margin: 20px 0 0 0;
    }
    #index-body .case .swiper-slide-active .text .more {
      margin-top: 20px;
    }
    #index-body .advantage .box .bottom {
      padding: 30px 0;
      margin-top: 40px;
    }
    #index-body .advantage .box .bottom ul {
      margin: 0 -20px -20px 0;
    }
    #index-body .advantage .box .bottom ul li {
      width: 50%;
      padding: 0 20px 20px 0;
    }
    #index-body .news {
      padding: 60px 0 46px;
    }
    #index-body .news .content {
      margin-top: 30px;
    }
    #index-body .contact {
      margin-top: 0;
      padding: 60px 0;
    }
    #index-body .contact .box .right {
      padding: 13px 0 0 10px;
    }
    #index-body .contact .tp {
      top: 0;
      width: 39.5%;
      display: none;
    }
    #footer {
      padding: 40px 0 30px;
    }
    #footer .f-content .f-ab {
      width: 40%;
    }
    #footer .f-content .f-nav,
    #footer .f-content .f-product {
      display: none;
    }
    #footer .f-content .f-contact {
      width: 60%;
    }
    #footer .f-copy {
      margin-top: 30px;
    }
    #footer .f-copy .a1 {
      margin-left: 0;
    }
    #footer .f-copy svg {
      max-height: 26px;
    }
  }
  @media screen and (max-width: 700px) {
    #banner ul li .text .box {
      padding: 15px 0 40px;
    }
    #banner ul li .text .box .title {
      font-size: 40px;
    }
    #banner ul li .text .box .tit {
      font-size: 26px;
    }
    #banner ul.slick-dots {
      bottom: 5px;
    }
    #banner ul.slick-dots li {
      width: 14px;
      height: 14px;
    }
    #banner ul.slick-dots li::after {
      width: 6px;
      height: 6px;
      top: 3px;
      left: 3px;
    }
    .font-22 {
      font-size: 17px;
    }
    #index-body .i-product .box .con {
      margin-top: 15px;
    }
    #index-body .i-product .box .category {
      padding-top: 8%;
    }
    #index-body .i-product .box .category ul li .tit {
      font-size: 20px;
    }
    #index-body .product ul li .ig .link {
      padding: 23px 20px 22px 21px;
    }
    #index-body .about .bottom .ig .left img {
      display: none;
    }
    #index-body .title {
      font-size: 35px;
    }
    #index-body .case {
      padding: 30px 0;
    }
    #index-body .case .title {
      position: initial;
      width: 100%;
    }
    #index-body .case .qh {
      margin-top: 20px;
    }
    #index-body .advantage {
      height: auto;
    }
    #index-body .advantage .box {
      position: initial;
      padding: 30px 0;
    }
    #index-body .advantage .box .bottom {
      background: transparent;
      margin-top: 20px;
      padding: 0;
    }
    #index-body .advantage .box .bottom ul {
      margin-right: 0;
    }
    #index-body .advantage .box .bottom ul li {
      padding-right: 0;
      width: 100%;
    }
    #index-body .advantage .box .bottom ul li .ig {
      padding-right: 0;
    }
    #index-body .advantage .box .bottom ul li .ig p {
      min-height: auto;
    }
    #index-body .advantage .box .bottom ul li .ig::after {
      display: none;
    }
    #index-body .news {
      padding: 30px 0;
    }
    #index-body .contact {
      padding: 30px 0;
    }
    #index-body .contact .box .left {
      width: 100%;
    }
    #index-body .contact .box .right {
      width: 100%;
      padding: 13px 0 0 0;
    }
    #index-body .contact .tp {
      display: none;
    }
    #footer {
      padding: 30px 0;
    }
    #footer .f-content .f-ab {
      width: 100%;
    }
    #footer .f-content .f-ab .share {
      margin-top: 20px;
    }
    #footer .f-content .f-contact {
      width: 100%;
      padding: 20px 0 0 0;
    }
    #footer .f-copy {
      margin-top: 20px;
    }
    .fixed-toolbar ul li.code {
      display: none;
    }
  }
  @media screen and (max-width: 500px) {
    #banner ul li > img {
      min-height: 300px;
    }
    #banner ul li .text .box .title {
      font-size: 30px;
      line-height: 1.3;
      letter-spacing: 2px;
    }
    #banner ul li .text .box .tit {
      font-size: 17px;
      line-height: 1.5;
      letter-spacing: 1px;
    }
    #index-body .title {
      font-size: 30px;
      line-height: 1.3;
    }
    .font-22 {
      font-size: 15px;
    }
    #index-body .i-product .box .category ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    #index-body .i-product .box .category ul li {
      width: 50%;
      margin-bottom: 10px;
    }
    #index-body .i-product .box .category ul li:last-child {
      margin-bottom: 0;
    }
    #index-body .product ul li .ig .link {
      opacity: 1;
    }
    #index-body .about .box .left .con {
      margin-top: 10px;
    }
    #index-body .about .bottom .ig .left .link {
      font-size: 14px;
      padding-left: 0;
    }
    #index-body .case {
      display: none;
    }
    #index-body .news .content ul li .tit {
      font-size: 20px;
      line-height: 1.6;
    }
    #index-body .news .content ul li i,
    #index-body .news .content ul li p {
      margin-top: 10px;
    }
    #index-body .news .content ul li time {
      margin-top: 12px;
    }
    #footer .f-content ul li span {
      width: 91%;
      padding-left: 10px;
    }
    .fixed-toolbar {
      bottom: 16%;
    }
    .fixed-toolbar ul li {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 18px;
    }
  }
  
  .inner-banner {
      padding: 200px 0;
      color: #fff;
      background-size: 100% 100%;
      position: relative;
      overflow: hidden;
      background-repeat: no-repeat;
      /*background-attachment: fixed;*/
      background-position: center top;
  }
  .inner-banner.teshu:before {
    content: '';
    width: 50%;
    height: 100%;
    top: 0;
    left: -16.5%;
    /*background: var(--primary);*/
    opacity: .7;
    position: absolute;
    -webkit-transform: skewX(25deg);
    -moz-transform: skewX(25deg);
    -ms-transform: skewX(25deg);
    transform: skewX(25deg);
  }
  .inner-banner span.h2 {
    font-size: 42px;
    font-family: 'Swiss-Bold';
    line-height: 1.5;
    display: block;
    padding-bottom: .2em;
    color: #000000;
    /*background: url("../images/inner-1-line.png") left bottom no-repeat;*/
  }
  .inner-banner .text {
    font-size: 28px;
    line-height: 1.4;
    margin: 1em 0;
    font-family: 'Swiss-Roman';
  }
  .inner-banner .mbx {
    font-size: 16px;
    color: #3e3e3e;
    line-height: 2;
  }
  .inner-page a.more {
    line-height: 50px;
    height: 50px;
    padding: 0 2em;
    font-size: 16px;
    text-transform: uppercase;
    color: white;
    background: var(--primary);
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .inner-page a.more:hover {
    background: var(--black);
  }
  .inner-banner .btn{
    margin-top: 20px;
  }
  .inner-banner .btn a{
    display: inline-block;
    font-size: 16px;
    padding: 10px 0;
    background: var(--primary);
    min-width: 200px;
    text-align: center;
    line-height: 2;
  }
  .inner-banner .btn a.active{
    background: #000;
  }
  .sj {
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .about-page .about-1 {
    padding: 110px 0;
  }
  .about-page .about-1 .left {
    width: 52%;
  }
  .about-page .about-1 .left span.tag {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-bottom: .5em;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-1 .left span.h3 {
    font-size: 26px;
    display: block;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-1 .left .text {
    font-size: 16px;
    color: #303030;
    line-height: 2;
    margin: 1.2em 0;
    max-height: 610px;
    overflow-y: scroll;
  }
  .about-page .about-1 .left .text p {
    margin-top: 1em;
    padding-right: 10px;
  }
  .about-page .about-1 .left .text p:first-child {
    margin-top: 0;
  }
  .about-page .about-1 .right {
    width: 48%;
    padding-left: 3%;
  }
  .about-page .about-1 .right .img video{
    width: 100%;
    min-height: 400px;
    object-fit: cover;
  }
  .about-page .about-1 .right .list ul li {
    padding: 23px 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border-bottom: 1px solid #e3e3e3;
  }
  .about-page .about-1 .right .list ul li i.fa {
    padding: 0 .5em;
    font-size: 28px;
    line-height: 1;
    margin-top: -0.1em;
  }
  .about-page .about-1 .right .list ul li .content {
    width: 100%;
  }
  .about-page .about-1 .right .list ul li .content span.h6 {
    font-size: 18px;
    color: #373737;
    line-height: 1.4;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-1 .right .list ul li .content .text {
    font-size: 15px;
    color: #303030;
    line-height: 1.8;
    margin-top: 1.2em;
    display: none;
  }
  .about-page .about-1 .right .list ul li span.plus {
    width: 18px;
    height: 18px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    display: block;
    cursor: pointer;
    cursor: hand;
  }
  .about-page .about-1 .right .list ul li span.plus:after,
  .about-page .about-1 .right .list ul li span.plus:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #a6a6a6;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .about-page .about-1 .right .list ul li span.plus:after {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .about-page .about-1 .right .list ul li.active span.plus:after {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .about-page .about-2 {
    padding: 180px 0 180px;
    color: white;
    background: url("../images/init-4-bg.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
  }
  .about-page .about-2 span.h2 {
    font-size: 26px;
    line-height: 1.6;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-2 span.h2.small {
    font-family: 'Swiss-Roman';
  }
  .about-page .about-2 .list {
    margin-top: 65px;
  }
  .about-page .about-2 .list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .about-page .about-2 .list ul li {
    width: auto;
  }
  .about-page .about-2 .list ul li span.h6 {
    font-size: 80px;
    font-family: 'Swiss-Bold';
    line-height: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: .4em;
  }
  .about-page .about-2 .list ul li span.h6 i {
    font-size: 0.2em;
    margin-left: .5em;
  }
  .about-page .about-2 .list ul li p {
    font-size: 18px;
    font-weight: 300;
  }
  .about-page .about-2 .play {
    margin-top: 45px;
    position: relative;
    z-index: 1;
    display: inline-block;
    border-radius: 100%;
    cursor: pointer;
    cursor: hand;
  }
  .about-page .about-2 .play img {
    position: relative;
    z-index: 1;
  }
  .about-page .about-2 .play:after,
  .about-page .about-2 .play:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-animation: ks 2s linear infinite;
    -moz-animation: ks 2s linear infinite;
    animation: ks 2s linear infinite;
  }
  .about-page .about-2 .play:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s;
  }
  .about-page .about-3 {
    padding: 110px 0;
  }
  .about-page .about-3 .list ul {
    margin: -20px;
  }
  .about-page .about-3 .list ul li {
    padding: 20px;
  }
  .about-page .about-3 .list ul li .box {
    overflow: hidden;
  }
  .about-page .about-3 .list ul li .box .content {
    background: #f3f3f3;
    padding: 30px 7% 30px;
    color: #2c2c2c;
    position: relative;
  }
  .about-page .about-3 .list ul li .box .content:before {
    content: '';
    width: 100%;
    /*height: 60%;*/
    position: absolute;
    top: 100%;
    left: 0;
    background: inherit;
    -webkit-transform: skewX(-75deg);
    -moz-transform: skewX(-75deg);
    -ms-transform: skewX(-75deg);
    transform: skewX(-75deg);
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
        z-index: 1;
  }
  .about-page .about-3 .list ul li .box .content i {
      width: 40px;
      background: #fcc101;
      padding: 20px 4px 20px;
      display: block;
      position: relative;
      top: -15px;
  }
  .about-page .about-3 .list ul li .box .content i img {
      -webkit-filter: brightness(0) invert(1);
      filter: brightness(0) invert(1);
  }
  .about-page .about-3 .list ul li .box .content i:after {
      content: '';
      border-bottom: 6px solid var(--primary);
      border-right: 19px solid transparent;
      border-left: 19px solid transparent;
      position: absolute;
      left: 0;
      bottom: 0;
  }
  .about-page .about-3 .list ul li .box .content span.tag {
    font-size: 18px;
    display: block;
    line-height: 1.2;
    margin-top: 1em;
    font-family: 'Swiss-Roman';
  }
  .about-page .about-3 .list ul li .box .content span.h3 {
    font-size: 26px;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Bold';
    min-height: 62px;
  }
  .about-page .about-3 .list ul li .box .content .text {
    font-size: 15px;
    line-height: 2;
    margin: 1em 0 2em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    height: 11.2em;
  }
  .about-page .about-3 .list ul li .box .content a.more {
    padding: 0 2em 0 .8em;
    text-transform: capitalize;
    background: white;
    color: var(--primary);
    position: relative;
    line-height: 2.5em;
    height: 2.5em;
  }
  .about-page .about-3 .list ul li .box .content a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .about-page .about-3 .list ul li .box .content a.more:hover {
    background: var(--primary);
    color: white;
  }
  .about-page .about-3 .list ul li .box .img {
    display: block;
        overflow: hidden;
  }
  .about-page .about-3 .list ul li .box .img img {
    width: 100%;
    transition: all 1.2s ease;
  }
  .about-page .about-3 .list ul li:hover .img img {
      transform: scale3d(1.05, 1.05, 1);
      transition: all 1.2s ease;
  }
  .about-page .about-4 {
    padding: 110px 0 80px;
    background: url("../images/about-4-bg.jpg") center center;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 4%;
  }
  .about-page .about-4:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: -10%;
    right: 0;
    background: url("../images/about-4-2.png") right bottom no-repeat;
    background-size: 60% auto;
    position: absolute;
  }
  .about-page .about-4 span.h2 {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-4 .text {
    font-size: 16px;
    margin-top: 1em;
    display: block;
    font-family: 'Swiss-Roman';
    line-height: 2;
  }
  .about-page .about-4 .text:after {
    content: '';
    width: 2em;
    height: 0.25em;
    /*background: white;*/
    display: block;
    margin: 1em auto 0;
  }
  .about-page .about-4 .list {
    margin-top: 60px;
  }
  .about-page .about-4 .list ul li {
    padding: 0 30px;
  }
  .about-page .about-4 .list ul li a {
    display: block;
  }
  .about-page .about-4 .list ul li a img {
    display: block;
    width: 100%;
  }
  .about-page .about-5 .text {
    font-size: 16px;
    margin-top: 1em;
    display: block;
    font-family: 'Swiss-Roman';
    line-height: 2;
  }
  .about-page .slick-arrow {
    height: 60px;
    width: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
    border: none;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 1;
  }
  .about-page .slick-arrow.slick-prev {
    right: 100%;
    background-image: url("../images/banner-btn-l.png");
  }
  .about-page .slick-arrow.slick-next {
    left: 100%;
    background-image: url("../images/banner-btn-r.png");
  }
  .about-page .slick-arrow:hover {
    background-color: var(--primary);
  }
  .about-page .about-5 {
    padding: 110px 0;
    text-align: center;
    overflow: hidden;
  }
  .about-page .about-5 span.h2 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .about-page .about-5 span.h2:after {
    content: '';
    width: 1.66666667em;
    height: 0.13333333em;
    display: block;
    margin: 0em auto 0;
    /*background-color: var(--primary);*/
  }
  .about-page .about-5 .list {
    margin-top: 50px;
    overflow: hidden;
    position: relative;
  }
  .about-page .about-5 .list .slick-arrow {
    z-index: 6;
  }
  .about-page .about-5 .list .slick-arrow.slick-prev {
    right: auto;
    left: 0;
  }
  .about-page .about-5 .list .slick-arrow.slick-next {
    right: 0;
    left: auto;
  }
  .about-page .about-5 .list ul {
    margin: 0 -15%;
    position: static;
  }
  .about-page .about-5 .list .slick-slide {
    -webkit-transform: translateX(170%);
    -moz-transform: translateX(170%);
    -ms-transform: translateX(170%);
    transform: translateX(170%);
    position: relative;
    z-index: 1;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .about-page .about-5 .list .slick-slide li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .about-page .about-5 .list .slick-slide.slick-active {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 2;
  }
  .about-page .about-5 .list .slick-slide.slick-active li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .about-page .about-5 .list .slick-slide.slick-active + div {
    -webkit-transform: translateX(40%);
    -moz-transform: translateX(40%);
    -ms-transform: translateX(40%);
    transform: translateX(40%);
    z-index: 3;
  }
  .about-page .about-5 .list .slick-slide.slick-active + div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    z-index: 4;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current li {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div {
    -webkit-transform: translateX(-40%);
    -moz-transform: translateX(-40%);
    -ms-transform: translateX(-40%);
    transform: translateX(-40%);
    z-index: 3;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div li {
    -webkit-transform: scale(0.85714286);
    -moz-transform: scale(0.85714286);
    -ms-transform: scale(0.85714286);
    transform: scale(0.85714286);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 2;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div li {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div + div {
    -webkit-transform: translateX(-170%);
    -moz-transform: translateX(-170%);
    -ms-transform: translateX(-170%);
    transform: translateX(-170%);
    z-index: 1;
  }
  .about-page .about-5 .list .slick-slide.slick-active.slick-current + div + div + div li {
    -webkit-transform: scale(0.625);
    -moz-transform: scale(0.625);
    -ms-transform: scale(0.625);
    transform: scale(0.625);
  }
  @media screen and (max-width: 1600px) {
    .about-page .about-2 .list ul li p {
      font-size: 16px;
    }
    .about-page .about-2 span.h2 {
      font-size: 28px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 60px;
    }
    .about-page .about-2 {
      padding: 120px 0 200px;
    }
    .about-page .about-2 .list {
      margin-top: 40px;
    }
  }
  @media screen and (max-width: 1400px) {
    .about-page .about-2 .list ul li p {
      font-size: 14px;
    }
    #index-body .init-3 .right .img {
      height: 500px;
    }
    .about-page .about-2 span.h2 {
      font-size: 24px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 44px;
    }
    .about-page .about-2 {
      padding: 80px 0 140px;
    }
  }
  @media screen and (max-width: 1250px) {
    .about-page .about-2 {
      padding: 80px 0;
    }
  }
  @media screen and (max-width: 1000px) {
    .about-page .about-2 .list ul li span.h6 {
      font-size: 36px;
    }
    .about-page .about-2 {
      padding: 50px 0;
    }
  }
  @media screen and (max-width: 700px) {
    .about-page .about-2 span.h2 {
      font-size: 20px;
    }
    .about-page .about-2 span.h2.small {
      font-size: 18px;
    }
    .about-page .about-2 .list ul li span.h6 {
      font-size: 26px;
    }
  }
  @media screen and (max-width: 500px) {
    .about-page .about-2 .list ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page .about-2 .list ul li {
      width: 50%;
      padding: 5px;
    }
  }
  .inner-page .sideBarBox .sideBarLeft {
    width: 25%;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
  }
  .inner-page .sideBarBox .sideBarLeft form {
    height: 42px;
    line-height: 42px;
    border: 1px solid #eee;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
  }
  .inner-page .sideBarBox .sideBarLeft form input {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0 1em;
  }
  .inner-page .sideBarBox .sideBarLeft form button {
    width: 42px;
    border: none;
    background-color: var(--primary);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .inner-page .sideBarBox .sideBarLeft form button img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide {
    margin-top: 50px;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a {
    font-size: 16px;
    font-family: 'Swiss-Roman';
    margin-top: 1em;
    display: block;
    padding-right: 1.5em;
    position: relative;
    line-height: 2;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa {
    position: absolute;
    right: .3em;
    top: 0;
    font-size: 140%;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a i.fa.active {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a em {
    opacity: .6;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li:hover > a {
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li ul {
    display: none;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li {
    padding-left: 1em;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li li a {
    font-weight: normal;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list {
    margin: 10px 0;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li {
    padding: 15px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li a.img-box {
    width: 25%;
    margin-right: 4%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content {
    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-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content span.h6 {
      font-size: 17px;
      width: 100%;
      -webkit-line-clamp: 2;
      overflow: hidden;
      -webkit-box-orient: vertical;
      display: -webkit-box;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content .star {
    font-size: 14px;
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content time {
    font-size: 14px;
    color: var(--primary);
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg {
    background-image: url("../images/sideBarImg-bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    padding: 180px 10% 80px;
    display: block;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg span.h3 {
    font-size: 24px;
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg .text {
    font-size: 16px;
    line-height: 1.4;
    margin: 1em 0 2em;
  }
  .inner-page .sideBarBox .sideBarLeft .sideBarImg a.more {
    line-height: 2em;
    height: 2em;
    padding: 0 1em 0 .5em;
    background: url("../images/icon-sideBarImg-link.png") center no-repeat;
    background-size: 100% 100%;
  }
  .inner-page .sideBarBox .slideBarRight {
    width: 75%;
    padding-left: 2%;
  }
  .inner-page .m-page {
    text-align: center;
    margin-top: 30px;
    padding: 40px 39px;
  }
  .inner-page .m-page a,
  .inner-page .m-page span {
    font-size: 16px;
    line-height: 2em;
    height: 2em;
    padding: 0 1em;
    border-radius: 0.33333333em;
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0.33333333em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .inner-page .m-page a:hover,
  .inner-page .m-page span.current {
    background-color: var(--primary);
    color: white;
  }
  .history-page {
    padding: 110px 0;
    overflow: hidden;
  }
  .history-page .historySideBar .historySideLeft {
    width: 40%;
    padding: 0 8%;
  }
  .history-page .historySideBar .historySideLeft span.h3 {
    font-size: 30px;
    padding: 1.83333333em 15%;
    display: block;
    background: url("../images/historySideLeft-1.jpg") center center no-repeat;
    background-size: cover;
    line-height: 1.2;
    color: white;
    position: relative;
    font-family: 'Swiss-Bold';
  }
  .history-page .historySideBar .historySideLeft span.h3:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    background: url("../images/historySideLeft-3.jpg") center center no-repeat;
    background-size: cover;
  }
  .history-page .historySideBar .historySideLeft span.h3:after {
    content: '';
    width: 1.66666667em;
    height: 0.13333333em;
    display: block;
    margin-top: .5em;
    background-color: white;
  }
  .history-page .historySideBar .historySideLeft .img {
    padding: 10%;
    height: 480px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    background: url("../images/historySideLeft-2.jpg") center center no-repeat;
    background-size: cover;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    color: white;
  }
  .history-page .historySideBar .historySideLeft .img span.h6 {
    font-size: 22px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
  }
  .history-page .historySideBar .historySideLeft .img .text {
    font-size: 16px;
    margin-top: .5em;
  }
  .history-page .historySideBar .historySideRight {
    width: 60%;
  }
  .history-page .historySideBar .historySideRight .list {
    position: relative;
  }
  .history-page .historySideBar .historySideRight .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .history-page .historySideBar .historySideRight .list ul li time {
    font-size: 24px;
    color: var(--primary);
    line-height: 1.2;
    font-family: 'Swiss-Roman';
  }
  .history-page .historySideBar .historySideRight .list ul li .slide {
    padding-left: 30px;
    margin-left: 30px;
    padding-bottom: 30px;
    position: relative;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide:before {
    content: '';
    width: 1px;
    height: 140%;
    position: absolute;
    left: 0;
    top: -20%;
    background: #e5e5e5;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide:after {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 3px solid #e5e5e5;
    display: block;
    position: absolute;
    left: -7px;
    top: 5px;
    background: white;
    z-index: 1;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide .text {
      font-size: 16px;
      color: #7e7f81;
      padding-left: 2em;
      padding-bottom: 20px;
      position: relative;
      line-height: 2;
  }
  .history-page .historySideBar .historySideRight .list ul li .slide .text i.fa {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 120%;
  }
  .sustainable-page span.tag {
    font-size: 18px;
    color: var(--primary);
    text-transform: uppercase;
    display: block;
    line-height: 1.2;
    margin-bottom: .5em;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-1 {
    padding: 110px 0;
  }
  .sustainable-page .sustainable-1 .img {
    display: block;
  }
  .sustainable-page .sustainable-1 .img img {
    width: 100%;
  }
  .sustainable-page .sustainable-1 .text {
    color: #646464;
  }
  .sustainable-page .sustainable-1 .left {
    width: 48%;
    padding-right: 5%;
  }
  .sustainable-page .sustainable-1 .left .text {
    font-size: 16px;
    padding: 0 0%;
    margin-top: 10%;
    line-height: 1.8;
  }
  .sustainable-page .sustainable-1 .right {
    width: 52%;
    margin-top: 80px;
  }
  .sustainable-page .sustainable-1 .right span.h3 {
    font-size: 32px;
    line-height: 1.2;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-1 .right .text {
    font-size: 16px;
    margin: 1.5em 0 4em;
    line-height: 2;
  }
  .sustainable-page .sustainable-2 {
    padding-bottom: 110px;
  }
  .sustainable-page .sustainable-2 .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;
  }
  .sustainable-page .sustainable-2 .top .title {
    width: 25%;
  }
  .sustainable-page .sustainable-2 .top .title span.h2 {
    font-size: 42px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-2 .top .text {
    font-size: 16px;
    line-height: 1.4;
    color: #606060;
    width: 55%;
  }
  .sustainable-page .sustainable-2 .top a.link {
    font-size: 16px;
  }
  .sustainable-page .sustainable-2 .top a.link i.fa {
    margin-left: .5em;
  }
  .sustainable-page .sustainable-2 .list {
    margin-top: 35px;
  }
  .sustainable-page .sustainable-2 .list ul {
    margin: 0 -20px;
  }
  .sustainable-page .sustainable-2 .list ul li {
    padding: 0 20px;
  }
  .sustainable-page .sustainable-2 .list ul li img {
    width: 100%;
  }
  .sustainable-page .sustainable-3 {
    padding-top: 160px;
    background: url("../images/sustainable-3.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    margin-bottom: 90px;
  }
  .sustainable-page .sustainable-3 .box {
    width: 450px;
    margin-right: 5%;
    display: block;
    margin-left: auto;
    padding: 50px 35px;
    position: relative;
    z-index: 1;
    background-color: rgba(243, 156, 63, 0.8);
  }
  .sustainable-page .sustainable-3 .box:before {
    content: '';
    border-left: 45px solid white;
    border-bottom: 45px solid white;
    border-top: 45px solid transparent;
    border-right: 45px solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .sustainable-page .sustainable-3 .box:after {
    content: '';
    width: 100%;
    /*background-color: var(--primary);*/
    position: absolute;
    left: 0;
    opacity: .9;
    z-index: -1;
    height: 90px;
    top: 100%;
  }
  .sustainable-page .sustainable-3 .box span.h3 {
    font-size: 24px;
    line-height: 1.4;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .sustainable-page .sustainable-3 .box .text {
    font-size: 15px;
    line-height: 2;
    margin: 2em 0;
  }
  .sustainable-page .sustainable-3 .box a.more {
    line-height: 2.75em;
    height: 2.75em;
    padding-left: 2em;
    padding-right: 3em;
    background-color: white;
    color: var(--primary);
    position: relative;
  }
  .sustainable-page .sustainable-3 .box a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: var(--primary);
    border-right-color: var(--primary);
  }
  .sustainable-page .sustainable-4 {
    padding: 110px 0;
  }
  .sustainable-page .sustainable-4 span.h3 {
    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: 30px;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-4 span.h3 img {
    margin-right: .3em;
  }
  .sustainable-page .sustainable-4 .box {
    margin-top: 60px;
  }
  .sustainable-page .sustainable-4 .box .left .list {
    position: relative;
  }
  .sustainable-page .sustainable-4 .box .left .list ul li img {
    width: 100%;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn {
    position: absolute;
    left: 93%;
    bottom: 0px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn div {
    height: 45px;
    width: 45px;
    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-color: #7f7f7f;
    color: white;
    font-size: 18px;
    cursor: pointer;
    cursor: hand;
    margin: 0 2px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .sustainable-page .sustainable-4 .box .left .list .btn div:hover {
    background-color: var(--primary);
  }
  .sustainable-page .sustainable-4 .box .right {
    padding-left: 10%;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li:last-child {
    margin-bottom: 0;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li i {
    margin-right: 20px;
    width: 48px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li .content span.h6 {
    font-size: 22px;
    font-family: 'Swiss-Bold';
    display: block;
    line-height: 1.2;
  }
  .sustainable-page .sustainable-4 .box .right .list ul li .content .text {
    font-size: 16px;
    color: #353535;
    line-height: 1.6;
    margin-top: .5em;
  }
  .sustainable-page .sustainable-5 {
    padding-bottom: 30px;
    display: block;
  }
  .sustainable-page .sustainable-5 .slide {
    margin-bottom: 70px;
    background-color: #f9f9f9;
    overflow: hidden;
  }
  .sustainable-page .sustainable-5 .slide .left {
    width: 52%;
    vertical-align: middle;
    padding: 0 3%;
    position: relative;
  }
  .sustainable-page .sustainable-5 .slide .left span.h6 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'Swiss-Bold';
  }
  .sustainable-page .sustainable-5 .slide .left .text {
    font-size: 18px;
    color: #353535;
    line-height: 2;
    margin: 1em 0 3em;
  }
  .sustainable-page .sustainable-5 .slide .left a.more {
    line-height: 2.75em;
    height: 2.75em;
    padding-left: 1em;
    padding-right: 2em;
    position: relative;
    background-color: white;
    color: var(--primary);
    text-transform: capitalize;
  }
  .sustainable-page .sustainable-5 .slide .left a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #e1e5ec;
    border-right-color: #e1e5ec;
  }
  .sustainable-page .sustainable-5 .slide .left a.more:hover {
    background-color: var(--primary);
    color: white;
  }
  .sustainable-page .sustainable-5 .slide .right {
    width: 48%;
    vertical-align: middle;
    position: relative;
  }
  .sustainable-page .sustainable-5 .slide .right a.img {
    display: block;
    /*-webkit-transform: skewX(15deg);
    -moz-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);*/
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    overflow: hidden;
  }
  /*.sustainable-page .sustainable-5 .slide .right a.img img {
    -webkit-transform: skewX(-15deg) scale(1.2);
    -moz-transform: skewX(-15deg) scale(1.2);
    -ms-transform: skewX(-15deg) scale(1.2);
    transform: skewX(-15deg) scale(1.2);
  }*/
  .sustainable-page .sustainable-5 .slide:nth-child(even) .left {
    left: 48%;
  }
  .sustainable-page .sustainable-5 .slide:nth-child(even) .right {
    left: -52%;
  }
  .sustainable-page .sustainable-5 .slide:nth-child(even) .right a.img {
    /*-webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);*/
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  /*.sustainable-page .sustainable-5 .slide:nth-child(even) .right a.img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }*/
  .contact-page {
    padding-bottom: 110px;
  }
  .contact-page .left {
    width: 47% !important;
    padding-right: 5%;
  }
  .contact-page .left .box2 {
    background-color: #f9f9f9;
    padding: 30px 5% 90px;
    position: relative;
  }
  /*.contact-page .left .box2:before {
    content: '';
    width: 50%;
    height: 70px;
    position: absolute;
    left: 0;
    bottom: 100%;
    background-color: inherit;
    -webkit-transform: skewX(-30deg);
    -moz-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }*/
  .contact-page .left .box2:after {
    content: '';
    width: 100%;
    height: 70px;
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: inherit;
  }
  .contact-page .left .box2 span.h2 {
    font-size: 36px;
    font-weight: bold;
    color: #363636;
    line-height: 1.2;
    display: block;
    margin-bottom: 1.5em;
    font-family: 'Swiss-Bold';
  }
  .contact-page .left .box2 .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 2;
  }
  .contact-page .left .box2 .form {
    margin-top: 50px;
  }
  .contact-page .left .box2 .form ul li {
    font-size: 16px;
    color: #666;
  }
  .contact-page .left .box2 .form ul li label {
    display: block;
    margin: 1em 0 .5em;
    font-family: 'Swiss-Bold';
  }
  .contact-page .left .box2 .form ul li label em {
    color: var(--primary);
  }
  .contact-page .left .box2 .form ul li input,
  .contact-page .left .box2 .form ul li textarea {
    display: block;
    width: 100%;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #aaabad;
    padding: .2em 0;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .contact-page .left .box2 .form ul li input:focus,
  .contact-page .left .box2 .form ul li textarea:focus {
    border-color: var(--primary);
  }
  .contact-page .left .box2 .form ul li textarea {
    height: 140px;
  }
  .contact-page .left .box2 .form ul li a.more {
    margin-top: 50px;
    padding-left: 2em;
    padding-right: 2.5em;
    background-color: var(--primary);
    position: relative;
  }
  .contact-page .left .box2 .form ul li a.more:hover {
    background-color: var(--primary);
  }
  .contact-page .left .box2 .form ul li a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #edeef0;
    border-right-color: #edeef0;
  }
  .contact-page .right {
    width: 53% !important;
    padding-top: 83px;
  }
  .contact-page .right span.h2 {
    font-size: 36px;
    font-weight: bold;
    color: #363636;
    display: block;
    font-family: 'Swiss-Bold';
  }
  .contact-page .right span.h2:after {
    content: '';
    width: 2em;
    height: 0.11111111em;
    background-color: black;
    display: block;
    margin-top: .2em;
  }
  .contact-page .right .text {
    font-size: 16px;
    color: #7e7f81;
    line-height: 2;
    margin: 1em 0 1.5em;
  }
  .contact-page .right .phone {
    font-size: 15px;
    color: white;
    padding: 1em;
    text-align: center;
    background-color: var(--primary);
    position: relative;
    font-family: 'Swiss-Roman';
  }
  .contact-page .right .phone:after,
  .contact-page .right .phone:before {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: white;
    border-right-color: white;
  }
  .contact-page .right .phone:before {
    left: 0;
    top: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .contact-page .right span.h5 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    color: #363636;
    display: block;
    line-height: 1.2;
    margin: 1.5em 0 .5em;
  }
  .contact-page .right span.h6 {
    display: block;
    font-size: 16px;
    color: #7e7f81;
    line-height: 1.2;
    font-family: 'Swiss-Roman';
  }
  .contact-page .right .info {
    font-size: 16px;
    color: #7e7f81;
  }
  .contact-page .right .info li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5em;
  }
  .contact-page .right .info li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact-page .right iframe {
    margin-top: 25px;
    height: 320px;
    width: 100%;
  }
  .news-page {
    padding: 110px 0;
  }
  .news-page .sideBarBox .slideBarRight {
    padding-left: 0;
    padding-right: 2%;
  }
  .news-page .sideBarBox .slideBarRight .list {
    margin-bottom: 90px;
  }
  .news-page .sideBarBox .slideBarRight .list ul {
    margin: -27px -17px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li {
    padding: 27px 17px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box {
    background-color: #edeef0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img {
    display: block;
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img time {
    font-size: 12px;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 5%;
    bottom: 5%;
    color: white;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box a.img:before {
    content: '';
    border-left: 15px solid white;
    border-top: 20px solid white;
    border-right: 15px solid transparent;
    border-bottom: 20px solid transparent;
    position: absolute;
    left: 0;
    top: 0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content {
    padding: 15px 20px 30px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content time{
    font-size: 14px;
    display: block;
    line-height: 2;
    margin-bottom: 10px;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6 {
    display: block;
    font-size: 16px;
    color: #2b2b2b;
    line-height: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-family: 'Swiss-Bold';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6:hover {
    color: var(--primary);
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content .text {
    font-size: 14px;
    color: #7e7f81;
    line-height: 2;
    margin: 1em 0;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more {
    background-color: var(--primary);
    /*position: relative;*/
    font-size: 12px;
    line-height: 3em;
    height: 3em;
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more:hover {
    background-color: var(--primary);
  }
  .news-page .sideBarBox .slideBarRight .list ul li .box .content a.more:after {
    content: '';
    border-right: 0.6em solid var(--primary);
    border-bottom: 0.6em solid var(--primary);
    border-top: .6em solid transparent;
    border-left: .6em solid transparent;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-bottom-color: #edeef0;
    border-right-color: #edeef0;
  }
  .news-page .sideBarBox .sideBarLeft {
    padding-left: 2%;
  }
  .newdet-page .newdet-content {
    padding-right: 85px;
  }
  .newdet-page .newdet-content .category {
    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: 15px;
  }
  .newdet-page .newdet-content .category a {
    padding: 0 5px;
    margin-left: 4px;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    -webkit-transform: skewX(-10deg) skewY(0);
    -moz-transform: skewX(-10deg) skewY(0);
    -ms-transform: skewX(-10deg) skewY(0);
    transform: skewX(-10deg) skewY(0);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
  }
  .newdet-page .newdet-content .category a:hover {
    background: var(--primary);
    color: #fff;
  }
  .newdet-page .newdet-content .category a span {
    font-family: 'Swiss-Roman';
    display: inline-block;
    -webkit-transform: skewX(10deg) skewY(0);
    -moz-transform: skewX(10deg) skewY(0);
    -ms-transform: skewX(10deg) skewY(0);
    transform: skewX(10deg) skewY(0);
  }
  .newdet-page .newdet-content .category .time {
    font-size: 14px;
    margin-left: 12px;
    color: #aaa;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    font-family: 'Swiss-Roman';
  }
  .newdet-page .newdet-content .category .time span {
    color: #000;
    margin-left: 10px;
  }
  .newdet-page .newdet-content h4.n-title {
    font-size: 30px;
    line-height: 2;
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 20px;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .newdet-content .content {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
    padding: 0;
  }
  .newdet-page .newdet-content .content .icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 14px;
    color: #555;
    font-weight: 300;
    margin-top: 50px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .newdet-content .content .icon a {
    font-size: 14px;
    color: #000;
    margin-left: 18px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
  }
  .newdet-page .newdet-content .content .icon a:hover {
    color: var(--primary);
  }
  .newdet-page .newdet-content .m-link {
    border-bottom: 1px solid #e7e7e7;
    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;
  }
  .newdet-page .newdet-content .m-link a {
    width: 50%;
    padding: 35px 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;
  }
  .newdet-page .newdet-content .m-link a .r-img {
    margin-right: 2rem;
  }
  .newdet-page .newdet-content .m-link a .r-img img {
    display: block;
    width: 110px;
    min-width: 110px;
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  @media screen and (max-width: 700px) {
    .newdet-page .newdet-content .m-link a .r-img {
      display: none;
    }
  }
  .newdet-page .newdet-content .m-link a .r-text p {
    color: #000;
    font-size: 16px;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
    font-weight: 700;
    max-width: 255px;
    font-family: 'Swiss-Roman';
  }
  .newdet-page .newdet-content .m-link a .r-text p:hover {
    color: var(--primary);
  }
  .newdet-page .newdet-content .m-link a .r-text span {
    color: #aaa;
    display: block;
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
  }
  .newdet-page .newdet-content .m-link a.left {
    padding-right: 30px;
    border-right: 1px solid #e7e7e7;
  }
  .newdet-page .newdet-content .m-link a.right {
    padding-left: 30px;
  }
  .newdet-page h1 {
    font-size: 32px;
    font-family: 'Swiss-Bold';
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px solid #e7e7e7;
  }
  .newdet-page .form {
    margin-top: 60px;
  }
  .newdet-page .form span.h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 1em;
    display: block;
  }
  .newdet-page .form ul {
    margin: -10px;
  }
  .newdet-page .form ul li {
    padding: 10px;
  }
  .newdet-page .form ul li input,
  .newdet-page .form ul li textarea {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: .5em 1em;
    border: 1px solid #eee;
  }
  .newdet-page .form ul li textarea {
    height: 100px;
  }
  .newdet-page .form ul li a.more {
    background-color: var(--primary);
  }
  .newdet-page .form ul li a.more:hover {
    background-color: var(--primary);
  }
  .newdet-page .form ul li.wid-100 {
    width: 100%;
  }
  .application-page span.h2 {
    font-size: 36px;
    color: #363636;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
  }
  .application-page span.h2:after {
    content: '';
    width: 1em;
    height: 0.11111111em;
    display: block;
    background-color: var(--primary);
    margin-top: .2em;
  }
  .application-page .application-1 {
    padding-top: 110px;
  }
  .application-page .application-1 .box .slide {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    overflow: hidden;
  }
  .application-page .application-1 .box .left {
    padding-right: 2%;
    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-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    padding: 50px 0;
  }
  .application-page .application-1 .box .left .info {
    margin: 10px 0;
  }
  .application-page .application-1 .box .left span.h6 {
    font-size: 26px;
    line-height: 1.4;
  }
  .application-page .application-1 .box .left .text {
    font-size: 16px;
    color: #7e7f81;
  }
  .application-page .application-1 .box .left .text p {
    margin-top: 2em;
  }
  .application-page .application-1 .box .left .btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }
  .application-page .application-1 .box .left .btn div {
    height: 60px;
    width: 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;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #7f7f7f;
    color: white;
    font-size: 20px;
    margin-right: 1em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
  }
  .application-page .application-1 .box .left .btn div:hover {
    background-color: var(--primary);
  }
  .application-page .application-1 .box .right .img {
    -webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    /*overflow: hidden;*/
  }
  .application-page .application-1 .box .right .img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }
  .application-page .application-1 .list {
    margin-top: 100px;
    padding-right: 5%;
    overflow: hidden;
  }
  .application-page .application-1 .list ul {
    margin: -26px;
  }
  .application-page .application-1 .list ul .slick-list {
    overflow: unset;
  }
  .application-page .application-1 .list ul .slick-slide {
    opacity: 0;
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    transition: 1.5s;
  }
  .application-page .application-1 .list ul .slick-slide.slick-active {
    opacity: 1;
  }
  .application-page .application-1 .list ul li {
    padding: 26px;
  }
  .application-page .application-1 .list ul li a.img {
    display: block;
    /*-webkit-transform: skewX(-15deg);
    -moz-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);*/
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    /*overflow: hidden;*/
  }
  /*.application-page .application-1 .list ul li a.img img {
    -webkit-transform: skewX(15deg) scale(1.2);
    -moz-transform: skewX(15deg) scale(1.2);
    -ms-transform: skewX(15deg) scale(1.2);
    transform: skewX(15deg) scale(1.2);
  }*/
  .application-page .application-1 .list ul li span.h6 {
    font-size: 18px;
    color: #363636;
    margin-top: 1.5em;
    display: block;
    text-align: center;
    font-family: 'Swiss-Roman';
  }
  .application-page .application-2 {
    padding: 110px 0;
    text-align: center;
  }
  .application-page .application-2 span.h2:after {
    margin-left: auto;
    margin-right: auto;
  }
  .application-page .application-2 .list {
    margin-top: 50px;
  }
  .application-page .application-2 .list ul {
    margin: -25px;
    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;
  }
  .application-page .application-2 .list ul li {
    padding: 25px;
  }
  .application-page .application-2 .list ul li .flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
  .application-page .application-2 .list ul li .flex .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 50%;
  }
  .application-page .application-2 .list ul li .flex .content {
    position: relative;
    width: 50%;
    z-index: 1;
    color: white;
    padding: 50px 5%;
    padding-left: 0;
    text-align: left;
  }
  .application-page .application-2 .list ul li .flex .content:before {
    content: '';
    width: 125%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: url("../images/application-2-bg.png") center right no-repeat;
    z-index: -1;
    background-size: 100% 100%;
  }
  .application-page .application-2 .list ul li .flex .content span.h6 {
    font-size: 18px;
    font-family: 'Swiss-Bold';
    display: block;
    margin-bottom: 1em;
  }
  .application-page .application-2 .list ul li .flex .content .text {
    font-size: 14px;
    line-height: 1.6;
  }
  .application-page .application-3 {
    padding-bottom: 110px;
    text-align: center;
  }
  .application-page .application-3 span.h2:after {
    margin-left: auto;
    margin-right: auto;
  }
  .application-page .application-3 .list {
    margin-top: 40px;
  }
  .application-page .application-3 .list ul {
    border: 1px solid #e7e7e7;
  }
  .application-page .application-3 .list ul li {
    padding: 20px;
    border-right: 1px solid #e7e7e7;
    text-align: center;
  }
  .application-page .application-3 .list ul li a.img {
    display: block;
    margin: 70px 0;
    padding: 0 5%;
  }
  .application-page .application-3 .list ul li .btn {
    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;
  }
  .application-page .application-3 .list ul li .btn a {
    height: 40px;
    width: 40px;
    border: 1px solid #e7e7e7;
    margin: 0 2px;
    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;
    color: #aaa;
    font-size: 20px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .application-page .application-3 .list ul li .btn a:hover {
    color: white;
    border-color: var(--primary);
    background-color: var(--primary);
  }
  .application-page .application-3 .list ul li span.h6 {
    font-size: 19px;
    line-height: 1.2;
    margin: 1em 0 .5em;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    font-family: 'Swiss-Roman';
  }
  .application-page .application-3 .list ul li span.h6:hover {
    color: var(--primary);
  }
  .application-page .application-3 .list ul li .text {
    font-size: 16px;
    color: #919191;
    line-height: 1.4;
    -webkit-line-clamp: 3;
      overflow: hidden;
      -webkit-box-orient: vertical;
      display: -webkit-box;
  }
  .manufacturing-page .manufacturing-1 {
    margin: 110px 0;
  }
  .manufacturing-page .manufacturing-1 .left {
    width: 25%;
    padding-right: 5%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-1 .left span.h3 {
    font-size: 30px;
    font-family: 'Swiss-Bold';
    line-height: 1.4;
  }
  .manufacturing-page .manufacturing-1 .left span.h3:after {
    content: '';
    height: 0.13333333em;
    width: 1em;
    background-color: var(--primary);
    margin-top: .5em;
    display: block;
  }
  .manufacturing-page .manufacturing-1 .right {
    width: 75%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-1 .right .text {
    font-size: 18px;
    color: #7e7f81;
  }
  .manufacturing-page .manufacturing-1 .right .text p {
    margin-top: 1em;
  }
  .manufacturing-page .manufacturing-1 .right .text p:first-child {
    margin-top: 0;
  }
  .manufacturing-page .about-5 {
    background: url("../images/manufacturing-2-bg.jpg") center center no-repeat;
    background-size: cover;
  }
  .manufacturing-page .manufacturing-2 {
    padding: 110px 0;
  }
  .manufacturing-page .manufacturing-2 .left {
    padding-right: 4%;
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-2 .left span.h6 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 1em;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-2 .right {
    vertical-align: middle;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li:last-child {
    margin-bottom: 0;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li i {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    line-height: 1.4;
    margin-bottom: 1em;
    display: block;
  }
  .manufacturing-page .manufacturing-2 .right .list ul li .content .text {
    font-size: 18px;
    color: #7e7f81;
    line-height: 1.6;
  }
  .manufacturing-page .manufacturing-3 {
    padding: 60px 0;
    background-color: #edeef0;
  }
  .manufacturing-page .manufacturing-3 .list ul li {
    padding: 25px 0;
    border-bottom: 1px solid #d8d9db;
    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;
  }
  .manufacturing-page .manufacturing-3 .list ul li:last-child {
    border-bottom: none;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content {
    width: 72%;
    padding-right: 7%;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content span.h6 {
    font-size: 24px;
    font-family: 'Swiss-Bold';
    display: block;
    margin-bottom: .5em;
  }
  .manufacturing-page .manufacturing-3 .list ul li .content .text {
    font-size: 18px;
    color: #7e7f81;
    line-height: 1.4;
  }
  .manufacturing-page .manufacturing-3 .list ul li .img {
    width: 28%;
  }
  .manufacturing-page .manufacturing-4 {
    padding: 110px 0;
  }
  .manufacturing-page .manufacturing-4 span.tag {
    font-size: 18px;
    color: var(--primary);
    display: block;
    line-height: 1.2;
    margin-bottom: .3em;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-4 span.h2 {
    font-size: 30px;
    font-family: 'Swiss-Bold';
    line-height: 1.2;
    display: block;
  }
  .manufacturing-page .manufacturing-4 span.h2:after {
    content: '';
    width: 1.5em;
    height: 0.13333333em;
    display: block;
    margin-top: .3em;
    background-color: var(--primary);
  }
  .manufacturing-page .manufacturing-4 .list {
    margin-top: 70px;
  }
  .manufacturing-page .manufacturing-4 .list ul {
    margin: 0 -20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li {
    padding: 0 20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box {
    background-color: var(--primary);
    color: white;
    padding: 20px;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box a.img {
    display: block;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box a.img img {
    display: block;
    width: 100%;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span {
    font-size: 16px;
    margin: 1em 0 .5em;
    display: block;
    font-family: 'Swiss-Roman';
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span a {
    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;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span a i {
    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;
  }
  .manufacturing-page .manufacturing-4 .list ul li .box span img {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: .5em;
  }
  .dealers-page .dealers-1 {
    padding: 70px 0;
  }
  .dealers-page .dealers-1 .left .text {
    margin-top: 1em;
        margin-bottom: 40px;
  }
  .dealers-page .dealers-1 .left .text p {
    margin-top: 1em;
  }
  .dealers-page .dealers-1 .left .text p:first-child {
    margin-top: 0;
  }
  .dealers-page .dealers-1 .right {
    text-align: center;
    padding: 0 5%;
    vertical-align: bottom;
  }
  .dealers-page .dealers-1 .right img:after {
      content: '';
      width: 100%;
      height: 100%;
      background: var(--primary);
      display: block;
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: -1;
  }
  .dealers-page .dealers-2 {
    padding: 80px 0;
    background: black;
    color: white;
    background: url(../images/de-bg.jpg) no-repeat;
        background-size: 100%;
      background-repeat: no-repeat;
      background-attachment: fixed;
  }
  .dealers-page .dealers-2 .list ul li {
    height: 300px;
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    align-content: center;
    height: 100%;
    padding: 0 5%;
    transform: scale(.8);
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box .text {
    color: inherit;
    opacity: 0;
    transition: .5s;
  }
  .dealers-page .dealers-2 .list ul li .box h6 {
    display: block;
    font-size: 24px;
    margin: .5em 0;
    width: 100%;
    font-family: 'Swiss-Roman';
  }
  .dealers-page .dealers-2 .list ul:hover li {
    width: 20%;
  }
  .dealers-page .dealers-2 .list ul:hover li:hover {
    width: 40%;
    background: var(--primary);
  }
  .dealers-page .dealers-2 .list ul:hover li:hover .box {
    transform: scale(1);
  }
  .dealers-page .dealers-2 .list ul:hover li:hover .text {
    opacity: 1;
  }
  .dealers-page .dealers-3 {
    padding: 80px 0;
    text-align: center;
  }
  .dealers-page .dealers-4 .box {
    display: flex;
  }
  .dealers-page .dealers-4 .box .left .img {
      height: 100%;
      display: block;
      background-attachment: fixed;
      background-repeat: no-repeat;
      background-position: left;
      background-size: 50%;
  }
  .dealers-page .dealers-4 .box .right {
    padding: 50px 5%;
    background: #f9f9f9;
    color: white;
  }
  .dealers-page .dealers-4 .box .right form {
    margin-top: 30px;
  }
  .dealers-page .dealers-4 .box .right form ul {
    margin: -10px;
  }
  .dealers-page .dealers-4 .box .right form ul li {
    padding: 10px;
    width: 100%;
  }
  .dealers-page .dealers-4 .box .right form ul li input,
  .dealers-page .dealers-4 .box .right form ul li textarea {
    padding: .5em;
    font-size: 16px;
    background: white;
    border: 1px solid #eee;
    transition: .5s;
    color: black;
    width: 100%;
  }
  .dealers-page .dealers-4 .box .right form ul li textarea {
    height: 120px;
  }
  .dealers-page .dealers-4 .box .right form ul li input:focus,
  .dealers-page .dealers-4 .box .right form ul li textarea:focus {
    border-color: var(--primary);
  }
  .dealers-page .dealers-4 .box .right form ul li input[type="submit"] {
    width: auto;
    padding: .5em 2em;
    background: var(--primary);
    color: white;
    border: none;
  }
  
  .dealers-page h2 {
   font-size: 28px;
      font-weight: 700;
      line-height: 1.6;
      text-transform: capitalize;
      font-family: 'Swiss-Bold';
      color: #333;
  }
  .dealers-page .dealers-1 .left {
      padding-top: 60px;
  }
  .dealers-page .text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
  }
  .dealers-page .text p {
    font: inherit;
  }
  .dealers-page .text span {
    font-size: 120%;
    font-family: 'Swiss-Roman';
  }
  .dealers-page .dealers-1 .left a.more.you {
      margin-left: 15px;
  }
  .faq-page {
    padding: 60px 0;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item {
    margin-bottom: 5px;
    border: 1px solid #f2f2f2;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item:last-of-type {
    margin-bottom: 0;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q {
    padding: 20px 86px 20px 40px;
    font-size: 20px;
    line-height: 36px;
    color: #000;
    position: relative;
    transition: 500ms ease;
    cursor: pointer;
    font-family: 'Swiss-Bold';
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active {
    background: #000;
    color: #fff;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active .icon {
    background: var(--primary);
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q.active .icon i {
    color: #fff;
    transform: rotate(90deg);
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q .icon {
    position: absolute;
    width: 76px;
    height: 100%;
    right: 0;
    top: 0;
    background: #f7f9ff;
    text-align: center;
    line-height: 76px;
    transition: 500ms ease;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .q .icon i {
    font-size: 20px;
    color: var(--primary);
    transition: 500ms ease;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .a {
    padding: 30px;
    display: none;
  }
  .inner-faq .container .inner-faq-content .inner-faq-list .item .a .inner {
    position: relative;
    font-size: 16px;
    line-height: 30px;
    color: #646464;
  }
  .gallery-page {
    padding-bottom: 60px;
  }
  .gallery-page .container .gallery-list a {
    display: block;
  }
  .gallery-page .container .gallery-list ul {
    margin: -15px;
  }
  .gallery-page .container .gallery-list ul li {
    padding: 15px;
  }
  .gallery-page .container .gallery-list ul li .box {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(105, 172, 22, 0.3);
    padding: 10px;
    border-radius: 5px;
  }
  .gallery-page .container .gallery-list ul li .box .img-box {
    overflow: hidden;
  }
  .gallery-page .container .gallery-list ul li .box h5 {
    display: block;
    color: #111;
    font-size: 18px;
    line-height: 32px;
    padding: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: 'Swiss-Roman';
  }
  .gallery-page .container .gallery-list ul li:hover .box h5 {
    background-color: var(--primary);
    color: #fff;
  }
  .solution-page{
    padding: 100px 0;
  }
  .solution-page ul{
    margin: -20px -10px;
  }
  .solution-page ul li{
    padding: 20px 10px;
  }
  .solution-page ul li .box .img-box{
    display: block;
    overflow: hidden;
  }
  .solution-page ul li .box .img-box img{
    width: 100%;
  }
  .solution-page ul li .box .text{
    margin-top: 20px;
  }
  .solution-page ul li .box .text .title{
    font-size: 18px;
    font-family: 'Swiss-Bold';
    line-height: 1.8;
  }
  .solution-page ul li .box .text .title sup{
    display: inline-block;
    margin-left: 10px;
    position: relative;
    top: 8px;
  }
  .solution-page ul li .box .text .des{
      font-size: 16px;
      line-height: 30px;
      margin-top: 8px;
      overflow: hidden;
  }
  @media screen and (max-width: 1600px) {
    .inner-banner span.h2 {
      font-size: 44px;
    }
    .inner-banner .text {
      font-size: 24px;
    }
    .inner-banner .mbx {
      font-size: 14px;
    }
    .about-page .about-1,
    .about-page .about-3,
    .about-page .about-4,
    .about-page .about-5,
    .application-page .application-2,
    .history-page,
    .news-page,
    .sustainable-page .sustainable-1,
    .sustainable-page .sustainable-4,
    .manufacturing-page .manufacturing-2,
    .manufacturing-page .manufacturing-4{
      padding: 60px 0;
    }
    .application-page .application-1,
    .contact-page .right {
      padding-top: 60px;
    }
    .manufacturing-page .manufacturing-1 {
      margin: 60px 0;
    }
    .application-page .application-3,
    .contact-page,
    .seoIndustry,
    .sustainable-page .sustainable-2,
    .seoAbout {
      padding-bottom: 60px;
    }
    .application-page .application-1 .list {
      margin-top: 60px;
    }
    .about-page .about-1 .left span.tag,
    .sustainable-page span.tag {
      font-size: 16px;
    }
    .about-page .about-1 .left span.h3 {
      font-size: 22px;
    }
    .about-page .about-1 .left .text {
      font-size: 15px;
    }
    .about-page .about-1 .right .list ul li .content .text {
      margin-top: .5em;
    }
    .about-page .about-1 .right .list ul li {
      padding: 17px 10px;
    }
    .about-page .about-2 {
      padding: 120px 0;
    }
    .about-page .slick-arrow.slick-next {
      left: auto;
      right: 0;
    }
    .about-page .slick-arrow.slick-prev {
      left: 0;
      right: auto;
    }
    .inner-banner {
      padding: 160px 0;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3 {
      font-size: 28px;
    }
    .application-page .application-1 .box .left span.h6 {
      font-size: 22px;
    }
    .application-page .application-1 .box .left .text p {
      margin-top: 1em;
    }
    .application-page .application-1 .box .left .btn div {
      width: 44px;
      height: 44px;
    }
    .application-page .application-1 .list ul li span.h6 {
      font-size: 16px;
      margin-top: 1em;
    }
    .application-page .application-2 .list ul li .flex .content span.h6 {
      font-size: 16px;
    }
    .application-page .application-3 .list ul li a.img {
      margin: 40px 0;
    }
    .application-page .application-3 .list ul li .text,
    .contact-page .left .box2 .text {
      font-size: 14px;
    }
    .application-page .application-3 .list ul li span.h6 {
      font-size: 16px;
    }
    .contact-page .right span.h5 {
      font-size: 20px;
    }
    .contact-page .right span.h6 {
      font-size: 14px;
    }
    .newdet-page .newdet-content {
      padding-right: 40px;
    }
    .newdet-page .newdet-content .content .icon {
      margin-top: 30px;
      padding-bottom: 30px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3{
      font-size: 20px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide .nav ul li a {
      font-size: 14px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide .list ul li .content span.h6,
    .seoAbout .left .text,
    .sustainable-page .sustainable-1 .right .text,
    .sustainable-page .sustainable-4 .box .right .list ul li .content .text{
      font-size: 15px;
    }
    .seoAbout .left span.tag {
      font-size: 16px;
    }
    .seoAbout .left span.h3 {
      font-size: 20px;
    }
    .about-page.seo .about-2:before {
      height: 50px;
    }
    .about-page.seo .about-2 {
      padding: 80px 0;
    }
    .sustainable-page .sustainable-1 .left .text {
      font-size: 18px;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 32px;
    }
    .sustainable-page .sustainable-3 {
      padding-top: 80px;
    }
    .sustainable-page .sustainable-3 .box span.h3,
    .manufacturing-page .manufacturing-2 .left span.h6,
    .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3,
    .manufacturing-page .manufacturing-3 .list ul li .content span.h6 {
      font-size: 20px;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li .content span.h6 {
      font-size: 18px;
    }
    .sustainable-page .sustainable-5 .slide .left .text,
    .manufacturing-page .manufacturing-2 .right .list ul li .content .text,
    .manufacturing-page .manufacturing-3 .list ul li .content .text,
    .manufacturing-page .manufacturing-1 .right .text,
    .sustainable-page .sustainable-2 .top .text,
    .seoIndustry .text{
      font-size: 16px;
      line-height: 2;
    }
    .manufacturing-page .manufacturing-4 .list {
      margin-top: 40px;
    }
  }
  @media screen and (max-width: 1450px) {
    .inner-banner span.h2 {
      font-size: 32px;
    }
    .inner-banner .text {
      font-size: 20px;
    }
    .inner-banner {
      padding: 120px 0;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li {
      margin-bottom: 20px;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li .content span.h3 {
      margin-bottom: .5em;
    }
    .sustainable-page .sustainable-1 .right {
      margin-top: 40px;
    }
    .sustainable-page .sustainable-1 .right .text {
      margin: 1em 0 2em;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 28px;
    }
    .sustainable-page .sustainable-3 .box:after {
      height: 50px;
    }
    .sustainable-page .sustainable-3 .box:before {
      border-width: 25px;
    }
    .sustainable-page .sustainable-3 {
      margin-bottom: 50px;
    }
    .sustainable-page .sustainable-4 .box .left .list .btn div {
      width: 30px;
      height: 30px;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li .content .text {
      margin-top: .3em;
    }
    .sustainable-page .sustainable-4 .box .right .list ul li {
      margin-bottom: 1em;
    }
    .sustainable-page .sustainable-5 .slide .left .text {
      margin: 1em 0;
    }
    .sustainable-page .sustainable-5 .slide {
      margin-bottom: 40px;
    }
    .about-page .slick-arrow {
      width: 44px;
      height: 44px;
    }
    .about-page .about-2 .play {
      max-width: 60px;
    }
    .inner-banner:before {
      left: -22.5%;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box a.img {
      height: 180px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content {
      padding: 10px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content span.h6 {
      font-size: 14px;
    }
    .news-page .sideBarBox .slideBarRight .list ul li .box .content .text {
      margin: .5em 0;
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      padding: 10px;
    }
    .news-page .sideBarBox .slideBarRight .list ul {
      margin: -10px;
    }
    .news-page .sideBarBox .slideBarRight .list {
      margin-bottom: 50px;
    }
    .newdet-page .newdet-content .m-link a .r-text p {
      font-size: 14px;
    }
    .newdet-page .newdet-content .m-link a .r-img img {
      width: 80px;
      height: 80px;
      min-width: 80px;
    }
    .newdet-page .newdet-content .m-link a .r-img {
      margin-right: 1rem;
    }
    .newdet-page .newdet-content .m-link a {
      padding: 15px 0;
    }
    .newdet-page .newdet-content .m-link a.left {
      padding-right: 15px;
    }
    .newdet-page .newdet-content .m-link a.right {
      padding-left: 15px;
    }
    .history-page .historySideBar .historySideLeft span.h3 {
      font-size: 24px;
    }
    .history-page .historySideBar .historySideLeft .img {
      padding: 5%;
      height: 300px;
    }
    .history-page .historySideBar .historySideLeft .img span.h6 {
      font-size: 18px;
    }
    .history-page .historySideBar .historySideLeft .img .text {
      font-size: 14px;
    }
    .history-page .historySideBar .historySideRight .list ul li time {
      font-size: 20px;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide .text {
      font-size: 14px;
    }
    .application-page .application-1 .box .left .text {
      font-size: 14px;
    }
    .application-page .application-1 .list ul li {
      padding: 10px;
    }
    .application-page .application-1 .list ul {
      margin: -10px;
    }
    .application-page .application-2 .list ul li {
      padding: 5px;
    }
    .application-page .application-2 .list ul {
      margin: -5px;
    }
    .application-page .application-2 .list ul li .flex .content {
      padding: 20px 5%;
      padding-left: 0;
    }
    .application-page .application-3 .list ul li a.img {
      margin: 20px 0;
    }
    .application-page .application-3 .list ul li .btn a {
      font-size: 16px;
    }
    .about-page .about-1 .left span.tag,
    .sustainable-page span.tag {
      font-size: 14px;
    }
    .about-page .about-1 .left span.h3 {
      font-size: 20px;
    }
    .about-page .about-2 {
      padding: 60px 0;
    }
    .about-page .about-3 .list ul li .box .content span.tag {
      font-size: 16px;
      margin-top: 2em;
    }
    .about-page .about-3 .list ul li .box .content span.h3 {
      font-size: 20px;
    }
    .about-page .about-3 .list ul li .box .content .text {
      font-size: 13px;
    }
    .about-page .about-5 .list {
      margin-top: 30px;
    }
  }
  @media screen and (max-width: 1250px) {
    .inner-banner {
      padding: 50px 0;
    }
    .inner-banner span.h2 {
      font-size: 28px;
    }
    .inner-banner .text {
      font-size: 16px;
    }
    .about-page .about-1 .right .list ul li .content span.h6 {
      font-size: 16px;
    }
    .about-page .about-1 .right .list ul li i.fa {
      font-size: 24px;
    }
    .about-page .about-3 .list ul li {
      padding: 5px;
    }
    .about-page .about-3 .list ul {
      margin: -5px;
    }
    .about-page .about-4 span.h2 {
      font-size: 28px;
    }
    .about-page .about-4 .text {
      font-size: 14px;
    }
    .about-page .about-4 .text:after {
      margin-top: .5em;
    }
    .about-page .about-4 .list ul li {
      padding: 0 10px;
    }
    .about-page .about-4 .list ul {
      margin: 0 -10px;
    }
    .application-page .application-2 .list ul li {
      width: 100%;
    }
    .contact-page .left .box2:after,
    .contact-page .left .box2:before {
      height: 10px;
    }
    .contact-page .right .phone {
      font-size: 14px;
    }
    .contact-page .right .info {
      font-size: 14px;
    }
    .contact-page .right span.h5 {
      font-size: 18px;
    }
    .contact-page .right iframe {
      height: 280px;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3{
      font-size: 24px;
    }
    .inner-page .sideBarBox .sideBarLeft .sideBarSlide span.h3{
      font-size: 18px;
    }
    .seoAbout .right {
      display: none;
    }
    .seoAbout .left {
      width: 100% !important;
      padding-right: 0;
    }
    .sustainable-page .sustainable-2 .list ul li {
      padding: 0 5px;
    }
    .sustainable-page .sustainable-2 .list ul {
      margin: 0 -5px;
    }
    .sustainable-page .sustainable-4 .box .right {
      width: 100%;
      padding-left: 0;
      margin-top: 30px;
    }
    .sustainable-page .sustainable-4 .box .left {
      width: 100%;
    }
    .sustainable-page .sustainable-4 .box .left .list .btn {
      right: 0;
      left: auto;
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    .sustainable-page .sustainable-5 .slide .left .text,
    .manufacturing-page .manufacturing-2 .right .list ul li .content .text,
    .manufacturing-page .manufacturing-3 .list ul li .content .text,
    .manufacturing-page .manufacturing-1 .right .text,
    .sustainable-page .sustainable-2 .top .text,
    .seoIndustry .text{
      font-size: 14px;
    }
    .manufacturing-page .manufacturing-2 .right .list ul li i {
      width: 70px;
    }
    .manufacturing-page .manufacturing-4 .list ul li {
      padding: 0 5px;
    }
    .manufacturing-page .manufacturing-4 .list ul {
      margin: 0 -5px;
    }
    .manufacturing-page .manufacturing-4 .list ul li .box span {
      font-size: 14px;
    }
    .manufacturing-page .manufacturing-4 .list ul li .box {
      padding: 5px;
    }
    .manufacturing-page .manufacturing-4 span.h2 {
      font-size: 24px;
    }
    .manufacturing-page .manufacturing-4 span.tag {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 1000px) {
    .manufacturing-page .manufacturing-1 .left {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-1 .right {
      width: 100%;
      margin-top: 10px;
    }
    .manufacturing-page .manufacturing-2 .left {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-2 .right {
      width: 100%;
      margin-top: 20px;
    }
    .sustainable-page .sustainable-2 .top .title span.h2 {
      font-size: 24px;
    }
    .sustainable-page .sustainable-1 .right {
      margin-top: 10px;
    }
    .sustainable-page .sustainable-3 .box {
      padding: 20px;
    }
    .sustainable-page .sustainable-5 .slide .left {
      width: 100%;
      padding: 15px;
      left: 0 !important;
    }
    .sustainable-page .sustainable-5 .slide .right {
      display: none;
    }
    .sustainable-page .sustainable-5 .slide {
      margin-bottom: 10px;
    }
    .inner-page .sideBarBox .slideBarRight {
      width: 100%;
      padding: 0;
    }
    .inner-page .sideBarBox .sideBarLeft {
      display: none;
    }
    .about-page .about-5 .list ul .slick-slide {
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%);
    }
    .about-page .about-5 .list ul .slick-slide li {
      -webkit-transform: scale(0.75);
      -moz-transform: scale(0.75);
      -ms-transform: scale(0.75);
      transform: scale(0.75);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active {
      -webkit-transform: translateX(40%);
      -moz-transform: translateX(40%);
      -ms-transform: translateX(40%);
      transform: translateX(40%);
      z-index: 2;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active li {
      -webkit-transform: scale(0.85714286);
      -moz-transform: scale(0.85714286);
      -ms-transform: scale(0.85714286);
      transform: scale(0.85714286);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current {
      -webkit-transform: translateX(0);
      -moz-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      z-index: 4;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current li {
      -webkit-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div {
      -webkit-transform: translateX(-40%);
      -moz-transform: translateX(-40%);
      -ms-transform: translateX(-40%);
      transform: translateX(-40%);
      z-index: 3;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div li {
      -webkit-transform: scale(0.85714286);
      -moz-transform: scale(0.85714286);
      -ms-transform: scale(0.85714286);
      transform: scale(0.85714286);
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div + div {
      -webkit-transform: translateX(-100%);
      -moz-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(-100%);
      z-index: 2;
    }
    .about-page .about-5 .list ul .slick-slide.slick-active.slick-current + div + div li {
      -webkit-transform: scale(0.75);
      -moz-transform: scale(0.75);
      -ms-transform: scale(0.75);
      transform: scale(0.75);
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      width: 50%;
    }
    .newdet-page .form {
      margin-top: 30px;
    }
    .history-page .historySideBar .historySideLeft {
      display: none;
    }
    .history-page .historySideBar .historySideRight {
      width: 100%;
    }
    .contact-page .left {
      width: 100% !important;
      padding-right: 0;
    }
    .contact-page .right {
      width: 100% !important;
      padding-left: 0;
    }
    .contact-page .left .box2 {
      padding: 20px 15px;
    }
    .contact-page .left .box2 .form {
      margin-top: 20px;
    }
    .manufacturing-page .manufacturing-3 .list ul li .content {
      width: 100%;
      padding-right: 0;
    }
    .manufacturing-page .manufacturing-3 .list ul li .img {
      display: none;
    }
    .sustainable-page .sustainable-1 .left {
      width: 100%;
      padding-right: 0;
    }
    .sustainable-page .sustainable-1 .right {
      width: 100%;
    }
    .sustainable-page .sustainable-1 .left .text {
      margin: 3% 0;
      padding: 0;
    }
    .application-page .application-1 .box .left {
      width: 100%;
      padding-right: 0;
    }
    .application-page .application-1 .box .right {
      display: none;
    }
    .application-page .application-1 .list {
      margin-top: 20px;
    }
    .application-page .application-2 .list {
      margin-top: 20px;
    }
    .about-page .about-1 .left {
      width: 100%;
    }
    .about-page .about-1 .right {
      width: 100%;
      padding-left: 0;
      margin-top: 20px;
    }
    .about-page .about-3 .list ul li {
      width: 100%;
    }
    .about-page .about-4 .list {
      margin-top: 30px;
    }
    .inner-banner{
      margin-top: 60px;
    }
    .dealers-page .dealers-1 .left{
      padding-top: 0;
      width: 100%;
    }
    .dealers-page .dealers-1 .right{
      display: none;
    }
    .dealers-page .dealers-2{
      display: none;
    }
    .dealers-page .dealers-3{
      padding-top: 0;
    }
    .dealers-page .dealers-4 .box .left{
      display: none;
    }
    .dealers-page .dealers-4 .box .right{
      width: 100%;
    }
  }
  @media screen and (max-width: 700px) {
    .inner-banner span.h2 {
      font-size: 24px;
    }
    .inner-banner .text {
      font-size: 14px;
    }
    .about-page .about-4 span.h2 {
      font-size: 24px;
    }
    .sustainable-page .sustainable-2 .top {
      display: block;
    }
    .sustainable-page .sustainable-2 .top .title {
      width: 100%;
    }
    .sustainable-page .sustainable-2 .top .text {
      width: 100%;
      margin: 10px 0;
    }
    .sustainable-page .sustainable-3 .box {
      margin-right: 0;
      max-width: 100%;
    }
    .sustainable-page .sustainable-4 span.h3 img {
      display: none;
    }
    .sustainable-page .sustainable-4 .box {
      margin-top: 30px;
    }
    .about-page .about-2 .list ul {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .about-page .about-2 .list ul li {
      width: 50%;
    }
    .news-page .sideBarBox .slideBarRight .list ul li {
      width: 100%;
    }
    .dealers-page .dealers-1{
      padding: 30px 0;
    }
    .dealers-page .dealers-3{
      padding-bottom: 30px;
    }
    .dealers-page .text span{
      font-size: 17px;
    }
    .dealers-page .text{
      font-size: 16px;
    }
  }
  @media screen and (max-width: 500px) {
    .history-page .historySideBar .historySideRight .list ul li time {
      font-size: 18px;
      padding-top: .2em;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide {
      padding-left: 15px;
      margin-left: 15px;
    }
    .history-page .historySideBar .historySideRight .list ul li .slide .text {
      padding-left: 1em;
    }
    .newdet-page .newdet-content .category {
      display: block;
    }
    .newdet-page .newdet-content .category .time {
      margin-left: 0;
      margin-top: 5px;
    }
    .application-page span.h2,
    .contact-page .left .box2 span.h2,
    .contact-page .right span.h2,
    .newdet-page h1,
    .newdet-page .form span.h3,
    .seoIndustry span.h3,
    .sustainable-page .sustainable-1 .right span.h3,
    .sustainable-page .sustainable-4 span.h3,
    .sustainable-page .sustainable-5 .slide .left span.h6,
    .manufacturing-page .manufacturing-1 .left span.h3{
      font-size: 20px;
    }
    .newdet-page .form ul li input,
    .newdet-page .form ul li textarea {
      font-size: 14px;
    }
    .about-page .about-5 span.h2 {
      font-size: 24px;
    }
    .application-page .application-1 .list ul li a.img {
      -webkit-transform: skewX(0);
      -moz-transform: skewX(0);
      -ms-transform: skewX(0);
      transform: skewX(0);
    }
    .application-page .application-1 .list ul li a.img img {
      -webkit-transform: skewX(0) scale(1);
      -moz-transform: skewX(0) scale(1);
      -ms-transform: skewX(0) scale(1);
      transform: skewX(0) scale(1);
    }
    .application-page .application-2 .list ul li .flex .img {
      width: 100%;
      height: 200px;
    }
    .application-page .application-2 .list ul li .flex .content {
      width: 100%;
    }
    .application-page .application-2 .list ul li .flex {
      display: block;
      overflow: hidden;
    }
    .application-page .application-2 .list ul li .flex .content {
      padding: 20px 5%;
    }
    .dealers-page h2{
      font-size: 20px;
    }
    .dealers-page .text{
      font-size: 14px;
      line-height: 2;
    }
    .dealers-page .dealers-1 .left a.more.you{
      margin-left: 0;
      margin-top: 10px;
    }
    .dealers-page .dealers-1 .left .text{
      margin-bottom: 20px;
    }
    .inner-banner{
      background-attachment: initial;
      background-size: 100% 100%;
    }
    .inner-faq .container .inner-faq-content .inner-faq-list .item .a{
      padding: 20px 10px;
    }
    .solution-page{
      padding: 40px 0;
    }
  }
  
  .product-page{
    padding: 60px 0;
  }
  .product-page .sideLeft {
      width: 30%;
      padding-right: 30px;
      position: sticky;
  }
  
  .product-page .sideRight {
      width: 70%
  }
  
  .product-page .sideLeft .box {
      padding: 30px;
      background: #f7f7f7
  }
  
  .product-page .sideLeft .box h3 {
      display: block;
      padding: 38px 25px;
      background: var(--primary);
      font-size: 30px;
      color: #fff;
      font-family: 'Swiss-Bold';
  }
  
  .product-page .sideLeft .box .list ul li {
      margin-top: 6px;
      padding: 10px 20px;
      border-left: 4px solid var(--primary);
      font-size: 16px;
      line-height: 2;
      color: #000;
      background: #fff;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      position: relative
  }
  .product-page .sideLeft .box .list > ul > li.active{
    color: var(--primary);
  }
  
  .product-page .sideLeft .box .list ul li.active ul {
      display: block
  }
  
  .product-page .sideLeft .box .list ul li i {
      position: absolute;
      top: 6px;
      right: 0;
      padding: 10px;
      font-size: 18px
  }
  
  .product-page .sideLeft .box .list ul li img {
      max-width: 32px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 30px
  }
  
  .product-page .sideLeft .box .list ul li ul li {
      border: none;
      background: #fff;
      color: #888;
  }
  
  .product-page .sideLeft .box .list ul li ul li:hover {
      background: var(--primary);
      color: #fff
  }
  
  .product-page .sideLeft .box .list ul li ul li.active {
      background: var(--primary);
      color: #fff
  }
  
  .product-page .sideLeft .img {
      display: block;
      margin-top: 40px;
      padding: 60px 5%;
      text-align: center;
      color: #fff
  }
  
  .product-page .sideLeft .img h4 {
      display: block;
      font-size: 24px;
      line-height: 1;
      font-family: 'Swiss-Bold';
  }
  
  .product-page .sideLeft .img p {
      display: block;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      margin: 25px 0 45px
  }
  
  .product-page .sideLeft .img a.more {
      line-height: 45px;
      height: 45px;
      width: 150px;
      padding: 0 20px;
      background: var(--primary);
      color: #fff;
      font-size: 16px;
      text-transform: uppercase;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      transition: .5s;
      display: inline-block;
      border: 1px solid transparent
  }
  
  .product-page .sideLeft .img a.more:hover {
      background: 0 0;
      color: var(--primary);
      border: 1px solid var(--primary);
  }
  .product-page .sideRight{
    width: 70%;
  }
  
  .main-box .top {
      padding: 30px 25px;
      -webkit-box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, .1);
      box-shadow: 0px 0px 17px 1px rgba(0, 0, 0, .1);
      text-align: left
  }
  
  .main-box .top h1{
    font-family: 'Swiss-Bold';
  }
  .main-box .top .cat_des{
    font-size: 16px;
    margin-top: 6px;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0px;
    line-height: 30px;
  }
  .main-box .top .content{
    margin-top: 16px;
    font-size: 14px;
    line-height: 2;
  }
  
  .main-box .top h3 {
      color: #111;
      font-weight: 700;
      line-height: 2;
      margin-bottom: 10px
  }
  
  .main-box .top p {
      line-height: 1.5;
      color: #111;
      font-size: 18px
  }
  
  .main-box .productbox {
      padding: 45px 35px;
      background: #f7f7f7;
      margin-top: 0px
  }
  
  .main-box .productbox ul {
      margin: 0 -12px;
      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
  }
  
  .main-box .productbox ul > p{
    font-size: 16px;
    letter-spacing: 0;
  }
  
  .main-box .productbox ul li {
      padding: 12px
  }
  
  .main-box .productbox ul.searchlist li .item {
      border: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: center;
  }
  
  .main-box .productbox ul.searchlist li .item .content {
      display: inline-block
  }
  
  .main-box .productbox ul.searchlist li .item .content p.pp {
      opacity: 0
  }
  
  .main-box .productbox ul li .item.nav {
      background: #000
  }
  
  .main-box .productbox ul li .item.nav h3 {
      color: #fff
  }
  
  .main-box .productbox ul li .item a.more {
      font-size: 14px
  }
  
  .main-box .productbox ul li .item h5 {
      width: 100%;
      background: #fff;
      text-align: center;
      padding: 10px;
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      /*border-top: 1px solid #eee;*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Swiss-Bold';
      line-height: 1.7;
  }
  
  .main-box .productbox ul li .item .cont{
    padding-bottom: 10px;
    background: #ffffff;
    margin-top: 10px;
  }
  .main-box .productbox ul li .item .des{
    display: block;
    text-align: center;
    background: #fff;
    font-size: 14px;
    line-height: 2;
    padding: 0 10px;
    min-height: 70px;
  }
  
  .main-box .productbox ul.search li .item h5 {
      width: auto
  }
  
  .main-box .productbox ul.search li .item .floatbox {
      position: relative !important;
      display: block !important;
      left: 0;
      transform: none
  }
  
  .main-box .productbox ul li .item:hover h5 {
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      color: var(--primary)
  }
  
  .main-box .productbox ul li .item:hover .des {
      -webkit-transition: .3s all;
      -moz-transition: .3s all;
      transition: .3s all;
      color: var(--primary)
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox a.more {
      font-size: 16px;
      width: 160px;
      height: 50px;
      background-color: #333;
      border-radius: 5px;
      display: inline-block;
      line-height: 50px;
      text-align: center;
      color: #fff;
      text-transform: uppercase;
      position: relative;
      -webkit-transition: .5s;
      -moz-transition: .5s;
      -ms-transition: .5s;
      -o-transition: .5s;
      transition: .5s
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox a.more:hover {
      background-color: var(--primary)
  }
  
  .main-box .productbox ul.imglist {
      margin: 0
  }
  
  .main-box .productbox ul.imglist li {
      padding: 0
  }
  
  .main-box .productbox ul.imglist li a img {
      min-width: 306px;
      width: 100%
  }
  
  .main-box .productbox ul.productlist2 li:nth-child(3n) .item .floatbox {
      left: auto;
      right: 100%
  }
  
  .main-box .productbox ul.productlist2 li .item {
      position: relative;
      height: 100%;
      background: #ffffff;
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox {
      position: absolute;
      width: 109%;
      top: 0;
      left: 100%;
      height: 100% !important;
      border: 1px solid #eee;
      background: #fff;
      padding: 25px;
      text-align: left;
      display: none;
      z-index: 99
  }
  
  .main-box .productbox ul.productlist2 li .item .floatbox .content {
      margin-top: 15px;
      margin-bottom: 40px;
      font-size: 18px
  }
  
  
  .prodet-page .prodet-1 {
      padding: 90px 0 100px;
  }
  .prodet-page .prodet-1 .product-box .left{
      width: 50%;
      position: relative;
  }
  .prodet-page .prodet-1 .product-box .left .big {
      border: 1px solid #ccc;
  }
  .prodet-page .prodet-1 .product-box .left .big img {
      width: 100%;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll {
      position: relative;
      width: 100%;
      left: 0;
      top: 0;
      height: auto;
      overflow: hidden;
      margin-top: 20px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul {
      margin: 0 -8px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul li {
      margin-bottom: 13px;
      padding: 0 10px;
  }
  .prodet-page .prodet-1 .product-box .left .img-scroll ul li a {
      border: 1px solid #ccc;
      display: block;
  }
  .prodet-page .prodet-1 .product-box .right {
      width: 50%;
      padding: 0 46px;
  }
  .prodet-page .prodet-1 .product-box .right.app {
      width: 66%;
      padding: 0 0 0 46px;
  }
  .prodet-page .prodet-1 .product-box .right h1 {
      font-size: 30px;
      color: #000;
      margin-bottom: 26px;
      font-family: 'Swiss-Bold';
      line-height: 1.5;
  }
  .prodet-page .prodet-1 .product-box .right h3 {
    font-size: 18px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 26px;
  }
  .prodet-page .prodet-1 .product-box .right .content {
    font-size: 16px;
    color: #666666;
    line-height: 2;
  }
  .prodet-page .prodet-1 .product-box .right .content .color .c_list{
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #000;
    margin-right: 10px;
    margin-bottom: 10px;
  } 
  .prodet-page .prodet-1 .product-box .right .content .color .c_list.r{
    background: red;
  }
  .prodet-page .prodet-1 .product-box .right .more{
    display: inline-block;
    padding: 12px 36px;
    height: auto;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: var(--primary);
    margin-top: 30px;
    font-family: 'Swiss-Roman';
  }
  .prodet-page .prodet-1 .product-box .right .more:hover{
    background: var(--black)
  }
  .prodet-page .prodet-1 .product-box .right .features {
    color: #000;
    margin: 30px 0 12px;
  }
  .product2-page {
      overflow: unset;
      position: relative;
      z-index: 1;
      padding: 70px 0 100px
  }
  
  
  .prodet-page .prodet-2 .options {
    background: #efefef;
  }
  .prodet-page .prodet-2 .options ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .prodet-page .prodet-2 .options ul li {
    font-size: 18px;
    line-height: 1;
    color: #000000;
    padding: 30px 0 26px;
    cursor: pointer;
    position: relative;
    margin-right: 74px;
    font-family: 'Swiss-Bold';
  }
  .prodet-page .prodet-2 .options ul li:hover::after {
    width: 100%;
  }
  .prodet-page .prodet-2 .options ul li::after {
    position: absolute;
    content: "";
    width: 0;
    height: 4px;
    background: var(--primary);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
  }
  .prodet-page .prodet-2 .options ul li.active::after {
    width: 100%;
  }
  .prodet-page .prodet-2 .ret dl dd .content {
    padding: 60px 0 90px;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
  }
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form input,
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form textarea{
      width: 100%;
      height: 70px;
      border: none;
      background: #f7f7f7;
      font-size: 16px;
      line-height: 30px;
      color: #000;
      padding: 0 20px;
      margin-bottom: 20px;
  }
  .prodet-page .prodet-2 .ret dl dd .content .contact_form form input[type=submit]{
    width: 174px;
    min-width: 120px;
    height: 54px;
    background: var(--primary);
    border: none;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .prodet-page .prodet-3 {
    padding-bottom: 60px;
    padding-top: 30px;
  }
  .prodet-page .prodet-3 h2 {
    text-align: center;
    font-family: 'Swiss-Bold';
  }
  .prodet-page .prodet-3 .relatedBox {
    margin-top: 30px;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img {
    display: block;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #cccccc;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img:hover span {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img img {
    width: 100%;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide .p-img span {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: var(--primary);
    text-transform: uppercase;
    padding: 24px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    font-weight: bold;
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    text-align: center;
    padding: 20px 10px;
    font-family: 'Swiss-Roman';
  }
  .prodet-page .prodet-3 .relatedBox .swiper-slide p:hover{
    color: var(--primary);
  }
  .prodet-page h2 {
      font-size: 48px;
      line-height: 1.2;
  }
  .pro-link{
    padding: 40px 0;
  }
  .pro-link .container{
    display: flex;
    flex-wrap: wrap;
  }
  
  
  @media screen and (max-width: 1500px) {
    .prodet-page h2 {
      font-size: 38px;
      line-height: 1.2;
    }
  }
  @media screen and (max-width: 1250px) {
    .product-page .sideLeft{
      display: none;
    }
    .product-page .sideRight{
      width: 100%;
    }
  
    .prodet-page .prodet-1 .product-box .right h1{
       font-size: 24px;
     }
     .prodet-page .prodet-1 .product-box .right h3{
        font-size: 16px;
        line-height: 30px;
    }
    .prodet-page .prodet-1 .product-box .right .content{
        font-size: 16px;
        line-height: 30px;
      }
      .prodet-page .prodet-3 .relatedBox .swiper-slide p{
        font-size: 16px;
        line-height: 30px;
      }
  }
  
  @media screen and (max-width: 1000px) {
    .prodet-page .prodet-3 .relatedBox .swiper-slide p{
      font-size: 16px;
      line-height: 30px;
    }
    .prodet-page .prodet-1 .product-box .left{
        width: 100%;
    }
    .prodet-page .prodet-1 .product-box .right {
      width: 100%;
      margin-top: 30px;
      padding: 0;
    }
    .prodet-page .prodet-1 .product-box .right.app {
      width: 100%;
      margin-top: 30px;
      padding: 0;
  }
  }
  
  @media screen and (max-width: 700px) {
    .prodet-page .prodet-2 .options ul li{
       font-size: 16px;
     }
    .prodet-page .prodet-1 .product-box .left{
      padding-left: 0;
    }
    .prodet-page .prodet-1 .product-box .left .big{
      padding: 0;
      width: 100%;
      border: 1px solid #ccc;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll{
      width: 100%;
      height: auto;
      position: relative;
      top: 0;
      left: 0;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul{
      margin: 0 -10px;
      margin-top: 20px;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul li{
      padding: 0 10px;
    }
    .pro-link{
      padding: 20px 0;
      line-height: 1.7;
    }
    .pro-link .left,
    .pro-link .right{
      width: 100%;
    }
  }
  
  @media screen and (max-width: 500px) {
    .product-page{
      padding: 10px 0;
    }
    .prodet-page .prodet-1{
      padding: 40px 0;
    }
    .main-box .top{
      padding: 16px;
    }
    .main-box .productbox{
      padding: 20px 10px;
    }
    .prodet-page .prodet-1 .product-box .right h1 {
      font-size: 20px;
      line-height: 36px;
    }
    .prodet-page .prodet-2 .options ul li{
      margin-right: 20px;
    }
    .prodet-page .prodet-2 .ret dl dd .content{
      padding-bottom: 0;
    }
    .prodet-page .prodet-3{
      padding-bottom: 40px;
    }
    .prodet-page .prodet-1 .product-box .left .img-scroll ul{
      margin: 0 -9px;
      margin-top: 20px;
    }
    .prodet-page h2 {
      font-size: 24px;
      line-height: 1.8;
    }
  }
  
  .service-page .service-1 {
    padding: 40px 0;
  }
  .service-page .service-1 .list {
    margin-top: 90px;
  }
  .service-page .service-1 .list ul {
    margin: -30px;
  }
  .service-page .service-1 .list ul li {
    padding: 30px;
  }
  .service-page .service-1 .list ul li i {
    height: 52px;
    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;
  }
  .service-page .service-1 .list ul li h6 {
    display: block;
    font-size: 24px;
    margin: 1em 0 .5em;
    line-height: 2;
  }
  .service-page .service-1 .list ul li .text {
    font-size: 16px;
    color: #626262;
    line-height: 2;
  }
  .service-page .service-2 {
    padding: 160px 0 130px;
    color: white;
    background: url("../images/service-2-bg.jpg") center center no-repeat;
  }
  .service-page .service-2 .box {
    width: 48%;
  }
  .service-page .service-2 h2.title small {
    display: block;
    font-size: 16px;
    margin-top: .5em;
    font-weight: normal;
  }
  .service-page .service-2 .list {
    margin-top: 100px;
  }
  .service-page .service-2 .list ul {
    margin: -18px;
  }
  .service-page .service-2 .list ul li {
    padding: 18px;
  }
  .service-page .service-2 .list ul li > i {
    height: 50px;
    line-height: 50px;
    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;
  }
  .service-page .service-2 .list ul li h6 {
    margin-top: 2em;
    font-size: 18px;
    padding-top: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
  }
  .service-page .service-2 .list ul li h6:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    top: -1px;
    background: var(--primary);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    right: 0;
  }
  .service-page .service-2 .list ul li a.link2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    display: inline-block;
    margin-top: .7em;
  }
  .service-page .service-2 .list ul li a.link2:hover {
    color: var(--primary);
  }
  .service-page .service-2 .list ul li:hover h6:after {
    width: 100%;
    left: 0;
  }
  .service-page .service-3 {
    padding: 140px 0;
  }
  .service-page .service-3 a.link {
    float: right;
    margin-top: -0.1em;
  }
  .service-page .service-3 .list {
    margin-top: 50px;
  }
  .service-page .service-3 .list ul {
    margin: -10px;
  }
  .service-page .service-3 .list ul li {
    padding: 10px;
  }
  .service-page .service-3 .list ul li video {
    display: block;
    width: 100%;
  }
  .service-page .service-3 .list ul .slick-prev {
    left: -5%;
  }
  .service-page .service-3 .list ul .slick-next {
    right: -5%;
  }
  .download-page ul{
      margin:-15px;
  }
  .download-page ul li{
      padding:15px;
  }
  
  .download-page ul li .box{
      background-color: #e9e9e9;
      padding:15px;
  }
  
  .download-page ul li .box .img{
      width:40%;
      vertical-align: middle;
  }
  
  .download-page ul li .box .text{
      width:60%;
      vertical-align: middle;
  }
  
  .download-page ul li .box .text p{
      margin-top: 10px;
      width: auto;
      height: 80px;
      line-height: 28px;
      position: relative;
      top: 0px;
      left: 0px;
  }
  
  .download-page ul li .box a{
      display: inline-block;
      padding:0 20px;
      height: 36px;
      color: #ffffff;
      font-size: 14px;
      text-align: center;
      line-height: 36px;
      background-color: var(--primary);
  }
  
  .download-page ul li .box a:hover{
    background-color: #000000;
  }
  @media screen and (max-width: 1500px) {
    .service-page .service-2,
    .service-page .service-3,
    .service-page .service-1 {
      padding: 70px 0;
    }
    .service-page .service-1 .list ul li h6{
      font-size: 20px;
    }
    .service-page .service-1 .list {
      margin-top: 50px;
    }
    .service-page .service-1 .list ul li {
      padding: 15px;
    }
    .service-page .service-1 .list ul {
      margin: -15px;
    }
    .service-page .service-1 .list ul li i {
      height: 40px;
      line-height: 40px;
    }
    .service-page .service-1 .list ul li i img {
      max-height: 100%;
      max-width: 40px;
    }
    .service-page .service-2 .list {
      margin-top: 40px;
    }
    .service-page .service-2 .list ul li h6 {
      margin-top: 1em;
      padding-top: .5em;
    }
    .service-page .service-2 .list ul li > i {
      line-height: 40px;
      height: 40px;
    }
    .service-page .service-2 .list ul li > i img {
      max-height: 100%;
      max-width: 40px;
    }
  }
  @media screen and (max-width: 1250px) {
     .service-page .service-1 .list ul li .text {
      font-size: 14px;
    }
    .service-page .service-1 .list ul li h6{
      font-size: 18px;
      line-height: 2;
    }
  }
  @media screen and (max-width: 1000px) {
    .download-page ul li{
      width: 100%!important;
    }
    .service-page .service-1 .list ul li {
      width: 50%;
    }
    .service-page .service-2 .box {
      width: 80%;
    }
    .service-page .service-2 .list ul li > i {
      height: 30px;
      line-height: 30px;
    }
  }
  @media screen and (max-width: 700px) {
    .service-page .service-2,
    .service-page .service-3,
    .service-page .service-1 {
      padding: 40px 0;
    }
  }
  @media screen and (max-width: 500px) {
    .download-page ul li .box .img{
      width: 100%!important;
    }
    .download-page ul li .box .text{
      width: 100%!important;
      padding: 15px;
    }
  
    .download-page ul li .box .text p{
      height: auto;
    }
    .service-page .service-1 .list ul li {
      width: 100%;
    }
  }
  
  .production-sec h3.title{
     font-size: 40px;
    line-height: 1.2;
  }
  .production-sec h3.title em{
    color: var(--primary);
  }
  .production-sec .pur-sec {
    padding: 0 0 80px 0;
  }
  .production-sec .design-1{
    padding: 100px 0;
  }
  .production-sec .design-1 .tips{
    font-size: 52px;
    text-align: center;
    text-transform: capitalize;
  }
  .production-sec .design-1 .tips_des{
    max-width: 1230px;
    color: rgba(0, 0, 0, .8);
    font-size: 18px;
    margin: 20px auto 0;
    line-height: 1.8;
    text-align: center;
  }
  .production-sec .design-1 .content{
    margin-top: 70px;
  }
  .production-sec .design-1 .slick{
    margin: 0 -10px;
  }
  .production-sec .design-1 .slick .slick-track{
    display: flex;
    align-items: center;
  }
  .production-sec .design-1 .slick li{
    padding: 0 10px;
  }
  .production-sec .design-1 .slick li a{
    display: block;
  }
  .production-sec .design-1 .slick li a img{
    width: 100%;
    vertical-align: middle;
  }
  .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: 50%;
    padding-right: 60px;
    padding-top: 90px;
  }
  .production-sec .pur-sec .mml-row .text-wrap h2 {
    font-style: normal;
    font-size: 40px;
    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: 36px;
    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-style: normal;
    font-size: 48px;
    line-height: 1.2;
    color: #f26122;
    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: 30px 0px;
    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: 40px;
    line-height: 1.2;
    color: var(--primary);
  }
  .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: 80px;
  }
  .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: 40%;
  }
  .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-style: normal;
    font-size: 40px;
    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: 32px;
    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-style: normal;
    color: #000;
    font-size: 40px;
    line-height: 1.2;
    margin: 40px;
    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-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: 80px 0;
    background-color: whitesmoke;
  }
  .production-sec .p11-milestone .text h2 {
    font-style: normal;
    font-size: 40px;
    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: 40px;
  }
  .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(#f26122), color-stop(50%, #f35d2e), to(#f25743));
    background-image: -webkit-linear-gradient(left, #f26122 0%, #f35d2e 50%, #f25743 100%);
    background-image: -moz-linear-gradient(left, #f26122 0%, #f35d2e 50%, #f25743 100%);
    background-image: linear-gradient(90deg, #f26122 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: #f26122;
  }
  .production-sec .team-img {
    text-align: center;
  }
  .production-sec .team-img .text h2 {
    font-style: normal;
    font-size: 40px;
    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) {
    .production-sec h3.title{
      font-size: 30px;
    }
    .production-sec .pur-sec .mml-row{
      flex-wrap: wrap;
    }
    .production-sec .prints-sec .mml-row .text-wrap{
      max-width: 600px;
    }
    .production-sec .pur-sec .mml-row .text-wrap{
      width: 50%;
    }
    .production-sec .pur-sec .mml-row .img-wrap{
      width: 50%;
    }
    .production-sec .design-1 .tips{
      font-size: 40px;
    }
    
  }
  
  @media screen and (max-width: 1250px) {
    .production-sec .pur-sec .mml-row .text-wrap{
      width: 100%;
      padding-right: 0;
    }
    
    .production-sec .pur-sec .mml-row .img-wrap{
      width: 100%;
      max-width: 100%;
      margin-top: 40px;
    }
  
     .production-sec .pur-sec .mml-row .img-wrap img{
       width: 100%;
     }
  
     .production-sec .prints-sec .mml-row{
       flex-wrap: wrap;
     }
     .production-sec .prints-sec .mml-row .img-wrap{
       width: 100%;
       max-width: 100%;
     }
     .production-sec .prints-sec .mml-row .img-wrap img{
       width: 100%;
       margin-top: 40px;
     }
  
     .production-sec .prints-sec .mml-row .text-wrap{
       width: 100%;
       order: -1;
       max-width: 100%;
     }
    
  }
  
  @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%;
      margin-top: 20px;
    }
    .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 .prints-sec{
      padding-bottom: 40px;
    }
    .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;
    }
  
  }
  
  @media screen and (max-width: 500px) {
    .production-sec .design-1{
      padding: 40px 0;
    }
    .production-sec .design-1 .tips{
      font-size: 24px;
    }
    .production-sec .design-1 .tips_des{
      font-size: 16px;
      line-height: 2;
    }
    .production-sec .design-1 .content{
      margin-top: 20px;
    }
    .production-sec h3.title{
      font-size: 24px;
    }
    .production-sec .p11-milestone{
      padding: 40px 0;
    }
  }
  
  /*seo*/
  
  a.tengfa{
    width: 400px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      display: inline-block;
      transform: translate(12px,6px);
  }