@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.eot');
  src: url('../fonts/Gotham-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Medium.woff2') format('woff2'), url('../fonts/Gotham-Medium.woff') format('woff'), url('../fonts/Gotham-Medium.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.eot');
  src: url('../fonts/Gotham-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gotham-Bold.woff2') format('woff2'), url('../fonts/Gotham-Bold.woff') format('woff'), url('../fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
.grid-box {
    font-size: 0;
    letter-spacing: -4px;
    font-size: 12px
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .grid-box.five>.column {
        width: 100%
    }
}
body {
  font-family: "Gotham";
  max-width: 1920px;
  --color: #0e4399;
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 1520px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
}
#header .nav .ui.menu {
  height: 6.5em;
  margin: 0 auto;
}
#header .nav .ui.menu .menu-box {
  height: 100%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a:before {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 60%;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:hover > a:before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .box {
  height: 100%;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.more {
  height: 2.5em;
  padding: 0 .7em;
  min-width: 8.75em;
  background-color: var(--color);
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
.more:hover {
  background-color: black;
  color: white;
}
span.h2 {
  line-height: 1.2;
}
.text {
  opacity: .7;
  line-height: 1.66666667;
  font-weight: 300;
}
#banner li {
  position: relative;
}
#banner li .content {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
#banner li .content .box {
  width: 50%;
  position: relative;
}
#banner li .content .box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
  z-index: -1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.slickBtn div {
  font-size: 1.25em;
}
.slickBtn div.prev {
  border: 1px solid var(--color);
  background-color: transparent;
  color: var(--color);
}
.slickBtn div:hover {
  background-color: black;
  color: white;
  border-color: black;
}
span.tag {
  display: block;
  line-height: 1.2;
}
#index-body {
  background-color: #f8f8f8;
}
#index-body .init-2 .bottom li {
  height: 100%;
}
#index-body .init-2 .bottom .box {
  padding: 1em 1.4em;
  background-color: white;
  height: 100%;
}
#index-body .init-2 .bottom .box hr {
  background-color: #edeeee;
}
#index-body .init-2 .bottom .box .tag {
  color: #aaa;
}
#index-body .init-2 .bottom .box .btn .more {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .bottom .box .btn .link {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  color: var(--color);
  gap: .5em;
  white-space: nowrap;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .bottom .box .btn .link i {
  width: 1.33333333em;
  height: 1.33333333em;
  border-radius: 100%;
  background-color: var(--color);
  color: white;
}
#index-body .init-2 .bottom .box:hover .btn .more {
  opacity: 1;
}
#index-body .init-2 .bottom .box:hover .btn .link {
  opacity: 0;
}
#index-body .init-3 {
  color: white;
}
#index-body .init-3 .left .img {
  width: 115%;
  margin-left: -15%;
}
#index-body .init-4 .list {
  max-width: 1250px;
}
#index-body .init-4 .list li {
  border-radius: 0;
  border-bottom: 2px solid #eee;
  padding: 1em 1.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-4 .list li > i {
  width: 3em;
  text-align: center;
}
#index-body .init-4 .list li .content span.h6 i {
  width: 1.33333333em;
  height: 1.33333333em;
  border-radius: 100%;
  border: 1px solid #1b1b1b;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-4 .list li .content span.h6 i:before,
#index-body .init-4 .list li .content span.h6 i:after {
  content: '';
  width: 0.66666667em;
  height: 2px;
  background-color: #1b1b1b;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
#index-body .init-4 .list li .content span.h6 i:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
#index-body .init-4 .list li .content .text {
  line-height: 1.33333333;
  color: black;
  display: none;
}
#index-body .init-4 .list li.active {
  border-radius: .5em;
  background-color: white;
  -webkit-box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.09);
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.09);
  margin-bottom: 1em;
  margin-top: -2px;
}
#index-body .init-4 .list li.active .content span.h6 i:after {
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -moz-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
}
#index-body .init-5 {
  padding: 14% 0;
  color: white;
}
#index-body .init-5 .content {
  width: 55%;
  margin-left: auto;
}
#index-body .init-6 time {
  opacity: .5;
  line-height: 1;
}
#index-body .init-6 span.h6 {
  line-height: 1.38461538;
  letter-spacing: -0.025em;
}
#footer {
  background-color: black;
  color: white;
}
#footer .footer-top .form {
  font-weight: 300;
}
#footer .footer-top .form li {
  width: 100%;
}
#footer .footer-top .form li:last-child {
  width: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#footer .footer-top .form input {
  width: 100%;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: .9em 0;
  background-color: transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top .form input::-webkit-input-placeholder {
  color: white;
}
#footer .footer-top .form input:-moz-placeholder {
  color: white;
}
#footer .footer-top .form input::-moz-placeholder {
  color: white;
}
#footer .footer-top .form input:-ms-input-placeholder {
  color: white;
}
#footer .footer-top .form input::placeholder {
  color: white;
}
#footer .footer-top .form input:focus {
  border-bottom-color: white;
}
#footer .footer-top .form button {
  border: none;
}
#footer .footer-top .form button:hover {
  background-color: white;
  color: var(--color);
}
#footer .footer-top .box .info {
  max-width: 520px;
  font-weight: 300;
}
#footer .footer-top .box .info p {
  margin-top: 1.1em;
}
#footer .footer-top .box .info p:first-child {
  margin-top: 0;
}
#footer .footer-top .box span.h6 {
  line-height: 1;
}
#footer .footer-top .box .nav {
  font-weight: 300;
  line-height: 1.2;
}
#footer .footer-top .box .nav li {
  margin-bottom: 0.77777778em;
}
#footer .footer-top .box .nav li:last-child {
  margin-bottom: 0;
}
#footer .footer-top .box .nav li a:hover {
  border-bottom: 1px solid white;
}
#footer .footer-top .box .nav li ul {
  display: none;
}
#footer .footer-top .box #ewm {
  width: 160px;
  border: 4px solid white;
}
#footer .footer-top .box .share {
  line-height: 1;
}
#footer .footer-bottom {
  position: relative;
}
#footer .footer-bottom:before {
  content: '';
  width: 90%;
  height: 1px;
  position: absolute;
  left: 5%;
  top: 0;
  background-color: rgba(255, 255, 255, 0.3);
}
#footer .footer-bottom .coy {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
#footer .footer-bottom .coy svg {
  max-height: 1.55555556em;
  width: auto;
  fill: rgba(255, 255, 255, 0.5);
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-bottom .coy svg:hover {
  fill: white;
}
#footer .footer-bottom .coy a {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-bottom .coy a:hover {
  color: white;
}
@media screen and (max-width: 1250px) {
  #banner li .content .box {
    width: 60%;
  }
  #index-body .init-3 .left .img {
    width: 100%;
    margin-left: 0;
  }
  #index-body .init-4 .list {
    max-width: 700px;
  }
}
@media screen and (max-width: 1000px) {
  #banner .left .text {
    display: none;
  }
  #banner .left .more {
    margin-top: .5em;
  }
  #index-body .init-1 {
    display: none;
  }
  #index-body .init-4 .list li > i {
    zoom: .7;
  }
  #footer .footer-top .box .slide {
    display: none;
  }
  #footer .footer-top .box .slide:first-child {
    display: block;
  }
  #footer .footer-top .box .logo {
    zoom: .7;
  }
  #footer .footer-top .box .info {
    max-width: none;
  }
}
@media screen and (max-width: 700px) {
  .font-36 {
    font-size: 20px;
  }
  #banner li .content .box {
    width: auto;
    padding: 3%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #banner li .content .box:before {
    display: none;
  }
  #banner li .content .box .right {
    display: none;
  }
  #footer .footer-top .form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-bottom .coy {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  #index-body .init-5 .content {
    width: 100%;
  }
  #index-body .init-4 .list li .content span.h6 {
    font-size: 18px;
  }
  #banner span.tag {
    display: none;
  }
}

/*inner-banner*/
.m-link{
    margin-top: 40px;
}
.m-link a{
    display: block;
    font-size: 16px;
    color: #767676;
    font-weight: 300;
    line-height: 2;
    transition: all .5s;
}
.m-link a:hover{
    color: var(--color);
}
.inner-banner {
    background: #f5f5f5;
    padding: 60px 0;
}

.inner-banner h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 1.2;
}

.inner-banner .mbx {
    font-size: 14px;
    line-height: 2;
    margin: 20px 0;
}

.inner-banner p {
    font-size: 18px;
    color: #424242;
}

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

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

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

.font-58 {
    font-size: 58px;
}

.inner-page .top.tab {
    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;
    background: #eee;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.inner-page .top.tab li {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 2;
    position: relative;
    margin: 0 20px;
}

.inner-page .top.tab li a {
    position: relative;
    padding: 24px 10px;
    display: block;
}

.inner-page .top.tab li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.inner-page .top.tab li.active,
.inner-page .top.tab li:hover {
    color: var(--color);
}

.inner-page .top.tab li.active a::after,
.inner-page .top.tab li:hover a::after {
    width: 100%;
}

.about-page .about-1 {
    background: url(../images/about-page-bg1.png) no-repeat center bottom, rgba(255, 255, 255, 0.9);
    background-size: cover;
    padding-top: 84px;
    padding-bottom: 55px;
}

.about-page .about-1 .ui.container {
    padding: 0;
    /*background: url(../images/about-page-1.png) no-repeat left bottom 145px;*/
}

.about-page .about-1 h2 {
    margin-bottom: 35px;
}

.about-page .about-1 .content {
    font-size: 14px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 63px;
}

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

.about-page .about-2 .wrap .right {
    padding-left: 110px;
}

.about-page .about-2 .wrap .right ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about-page .about-2 .wrap .right ul li {
    text-align: center;
    width: 34%;
    margin-bottom: 96px;
}

.about-page .about-2 .wrap .right ul li h3 {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    font-size: 80px;
    font-weight: bold;
}

.about-page .about-2 .wrap .right ul li p {
    font-size: 20px;
    line-height: 1.8;
    color: #ababab;
    margin-top: 8px;
}

.about-page .about-2 .wrap .right ul li:hover h3 {
    color: var(--color);
}

.about-page .about-2 .wrap .right ul li:nth-child(4),
.about-page .about-2 .wrap .right ul li:nth-child(3) {
    margin-bottom: 0;
}

.about-page .about-2 .wrap .right .content {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 34px;
    margin-top: 63px;
}


.about-page .about-3 {
    padding-top: 118px;
    padding-bottom: 60px;
    background: #f7f7f7;
}

.about-page .about-3 h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 80px
}

.about-page .about-3 ul {
    margin: -20px
}

.about-page .about-3 ul li {
    padding: 20px
}

.about-page .about-3 ul li .top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.about-page .about-3 ul li .top .title {
    margin-left: 30px
}

.about-page .about-3 ul li .top .title h4 {
    font-size: 20px;
    line-height: 1.8;
    font-weight: 700
}

.about-page .about-3 ul li .top .title p {
    font-size: 14px;
    line-height: 2;
    color: #797979
}

.about-page .about-3 ul li .content {
    font-size: 16px;
    line-height: 2;
    font-weight: 300;
    color: #797979;
    margin-top: 26px
}

.about-page .init-5 {
    padding: 110px 0 150px 0;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    color: #fff;
}
.about-page .init-5 .container .sub_img {
    position: absolute;
    top: -70px;
    left: 0;
    width: 910px;
}
.about-page .init-5 .container .tips {
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.about-page .init-5 .container .list_cont {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin-top: 80px;
}
.about-page .init-5 .container .list_cont .slick li .box {
    position: relative;
    padding: 0 40px 0 40px;
}
.about-page .init-5 .container .list_cont .slick li .box .year {
    font-weight: 700;
}
.about-page .init-5 .container .list_cont .slick li .box .img {
    position: absolute;
    height: 100%;
    top: 100px;
    left: 0;
    height: 310px;
}
.about-page .init-5 .container .list_cont .slick li .box .cont {
    position: relative;
}
.about-page .init-5 .container .list_cont .slick li .box .cont .title {
    font-weight: 700;
    margin-top: 10px;
}
.about-page .init-5 .container .list_cont .slick li .box .cont .des {
    margin-top: 40px;
    opacity: 0;
    padding-right: 2px;
    overflow-y: auto;
    height: 255px;
    transition: all .5s;
}
.about-page .init-5 .container .list_cont .slick li .box:hover .cont .des{
    opacity: 1;
}


.faq-page {
    padding-bottom: 160px;
}

.faq-page h2 {
    margin: 80px 0 66px;
}

.faq-page ul.faq_list li {
    background: #fafafa;
    border-top: 1px solid #e7e7e7;
    padding: 56px 40px 59px;
}

.faq-page ul.faq_list li h4 {
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 20px;
}

.faq-page ul.faq_list li .content {
    line-height: 28px;
    color: #3e3e3e;
}

.news-page .news_list {
    padding-top: 130px;
    padding-bottom: 130px;
}

.news-page .news_list ul li {
    border-top: 2px solid #e3e3e3;
    padding-top: 101px;
    padding-bottom: 87px;
}

.news-page .news_list ul li .time {
    width: 22%;
    text-align: center;
    font-size: 30px;
    color: #888888;
}

.news-page .news_list ul li .time h2 {
    color: var(--color);
    font-weight: bold;
    font-size: 110px;
    line-height: 1;
}

.news-page .news_list ul li .content {
    width: 78%;
    padding-left: 180px;
}

.news-page .news_list ul li .content h4 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.4;
}

.news-page .news_list ul li .content .text {
    font-size: 20px;
    line-height: 36px;
    font-weight: 300;
    margin: 40px 0;
}

.news-page .news_list ul li .content .more {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background: black;
    color: white;
    font-size: 20px;
    height: 59px;
    line-height: 59px;
    padding: 0 50px;
    position: relative;
    display: inline-block;
}

.news-page .news_list ul li .content .more span {
    position: relative;
    z-index: 3;
}

.news-page .news_list ul li .content .more::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background: var(--color);
}

.news-page .news_list ul li .content .more:hover::after {
    width: 100%;
}

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

.m-page a,
.m-page span {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    margin: 0 5px;
}

.m-page span::after,
.m-page a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.m-page a:hover::after,
.m-page span::after {
    width: 100%;
}

.newdet-page .newdet-1 {
    padding-top: 120px;
    padding-bottom: 80px;
}

.newdet-page .newdet-1 h1 {
    font-size: 38px;
    font-weight: bold;
    line-height: 2;
}

.newdet-page .newdet-1 .time {
    font-size: 14px;
    line-height: 2;
    font-style: italic;
    color: #999999;
}

.newdet-page .newdet-1 .content {
    font-size: 16px;
    line-height: 2;
    color: #767676;
    font-weight: 300;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    padding: 60px 0;
    margin-top: 50px;
}

.newdet-page .newdet-1 .bottom {
    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;
    margin-top: 30px;
}

.newdet-page .newdet-1 .bottom .right {
    font-size: 16px;
    line-height: 30px;
    color: #767676;
}

.newdet-page .newdet-1 .bottom .right ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.newdet-page .newdet-1 .bottom .right ul li {
    color: black;
    margin-left: 15px;
}

.newdet-page .newdet-1 .bottom .right ul li:first-child {
    margin-left: 0;
}

.newdet-page .related_pro h2 {
    margin-bottom: 80px;
}

.newdet-page .related_pro ul {
    margin: -10px;
}

.newdet-page .related_pro ul li {
    padding: 10px;
}

.newdet-page .related_pro ul li .img-box {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.newdet-page .related_pro ul li .img-box img {
    width: auto;
    margin: auto;
}

.newdet-page .related_pro ul li h3 {
    font-size: 18px;
    line-height: 31px;
    margin-top: 10px;
}

.newdet-page .related_pro ul li:hover .img-box {
    background: #f2f2f2;
}


.customized-page .cus-1 {
    padding: 150px 0;
}

.customized-page .cus-1 .box {
    background: #212121;
    border-radius: 30px;
    color: white;
    padding: 85px 70px 70px;
}

.customized-page .cus-1 .box .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;
    margin-bottom: 45px;
}

.customized-page .cus-1 .box .top h2 {
    position: relative;
    padding-bottom: 20px;
}

.customized-page .cus-1 .box .top h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.customized-page .cus-1 .box .top a.more {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    line-height: 2;
}

.customized-page .cus-1 .box .top a.more img {
    margin-left: 20px;
}

.customized-page .cus-1 .box ul li {
    text-align: center;
    margin-top: 20px;
}

.customized-page .cus-1 .box ul li h5 {
    font-size: 30px;
    color: #999999;
    margin-top: 15px;
}

.customized-page .cus-2 {
    padding-bottom: 200px;
}

.customized-page .cus-2 ul li {
    margin-bottom: 100px;
}

.customized-page .cus-2 ul li .text {
    width: 55%;
    padding-right: 100px;
}

.customized-page .cus-2 ul li .text span {
    color: #7c7c7c;
}

.customized-page .cus-2 ul li .text .content {
    line-height: 30px;
    color: #8d8d8d;
    margin: 10px 0 30px;
}

.customized-page .cus-2 ul li .text .more {
    font-size: 16px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    height: 50px;
    line-height: 50px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    display: inline-block;
    padding: 0 30px;
}

.customized-page .cus-2 ul li .text .more:hover {
    background: var(--color);
    color: white;
    border-color: var(--color);
}

.customized-page .cus-2 ul li .img {
    width: 45%;
}

.customized-page .cus-2 ul li:last-child {
    margin-bottom: 0;
}

.customized-page .cus-3 {
    background: #212121;
    color: white;
    padding: 110px 0;
}

.customized-page .cus-3 ul {
    margin-top: 95px;
}

.customized-page .cus-3 ul li {
    margin-bottom: 120px;
}

.customized-page .cus-3 ul li .img {
    width: 55%;
    vertical-align: middle;
}

.customized-page .cus-3 ul li .text {
    width: 45%;
    vertical-align: middle;
    padding-left: 140px;
}

.customized-page .cus-3 ul li .text .content {
    line-height: 30px;
    color: #959595;
    margin-top: 30px;
}

.customized-page .cus-3 ul li:nth-child(2) {
    margin-bottom: 0;
}

.customized-page .cus-3 ul li:nth-child(2) .text {
    padding-left: 0;
    padding-right: 140px;
}

.customized-page .cus-4 {
    padding: 120px 0;
}

.customized-page .cus-4 .box {
    overflow: hidden;
    padding-bottom: 100px;
}

.customized-page .cus-4 ul {
    margin-top: 100px;
}

.customized-page .cus-4 ul li {
    position: relative;
    background: #212121;
    padding: 110px 0;
}

.customized-page .cus-4 ul li .left {
    width: 34%;
    position: relative;
    left: 85px;
    background: white;
    -webkit-box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.15);
}

.customized-page .cus-4 ul li .left img {
    width: auto;
    display: block;
    margin: auto;
}

.customized-page .cus-4 ul li .right {
    color: white;
    padding-right: 10px;
    margin-left: 13%;
}

.customized-page .cus-4 ul li .right h5 {
    font-size: 24px;
    line-height: 44px;
    color: white;
    margin-top: 10px;
}

.customized-page .cus-4 ul li .right .content {
    line-height: 30px;
    font-size: 16px;
    color: #989898;
    margin-top: 40px;
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.customized-page .cus-4 .swiper-button-prev {
    left: -50px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background-image: none;
    text-align: center;
    line-height: 60px;
    position: absolute !important;
    top: 50%;
    margin-top: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.customized-page .cus-4 .swiper-button-prev::after {
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 20px;
}

.customized-page .cus-4 .swiper-button-next {
    right: -50px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    background-image: none;
    text-align: center;
    line-height: 60px;
    position: absolute !important;
    top: 50%;
    margin-top: 0;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.customized-page .cus-4 .swiper-button-next::after {
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 20px;
}

.customized-page .cus-4 .swiper-button-next:hover {
    background: var(--color);
    color: white;
}

.customized-page .cus-6 {
    padding: 110px 0;
    text-align: center;
}

.customized-page .cus-6 .content {
    line-height: 32px;
    font-size: 18px;
    color: #929292;
    text-align: center;
    max-width: 960px;
    margin: 40px auto 50px;
}

.customized-page .cus-6 .more {
    font-size: 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background: var(--color);
    color: white;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding: 0 40px;
}

.customized-page .cus-6 .more:hover {
    background: black;
}


.customized-page .cus-5 {
    background: url(/template/en/images/pro-bg.jpg) no-repeat;
    background-size: cover;
    position: relative;
    padding: 90px 0 50px
}

.customized-page .cus-5 h2 {
    font-size: 101px;
    line-height: 113px;
    font-weight: 700;
    color: rgba(255, 255, 255, .02);
    position: absolute;
    top: 15%
}

.customized-page .cus-5 h4.title {
    font-size: 30px;
    line-height: 41px;
    color: #fff;
    position: absolute;
    top: 13px;
    z-index: 5
}

.customized-page .cus-5 h5.pro_name {
    color: #fff;
    background: var(--color);
    font-size: 16px;
    display: inline-block;
    padding: 3px 15px;
    position: absolute;
    right: 0;
    top: 18px;
    z-index: 5
}

.customized-page .cus-5 .list {
    z-index: 2
}

.customized-page .cus-5 .list .item {
    position: relative
}

.customized-page .cus-5 .list .item .img {
    width: 100%
}

.customized-page .cus-5 .list .item .img img {
    display: block;
    margin: auto
}

.customized-page .cus-5 .list .item ul li {
    position: absolute
}

.customized-page .cus-5 .list .item ul li i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: 0 0;
    border: 8px solid #fff;
    display: inline-block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer
}

.customized-page .cus-5 .list .item ul li .text {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    position: absolute;
    color: #fff;
    min-width: 400px;
    opacity: 0
}

.customized-page .cus-5 .list .item ul li .text h5 {
    font-size: 22px;
    font-weight: 700
}

.customized-page .cus-5 .list .item ul li .text p {
    font-size: 14px;
    line-height: 22px
}

.customized-page .cus-5 .list .item ul li:nth-child(1) {
    left: 50%;
    top: 12%
}

.customized-page .cus-5 .list .item ul li:nth-child(1) .text {
    left: 70px;
    top: -15px
}

.customized-page .cus-5 .list .item ul li:nth-child(2) {
    left: 64%;
    top: 36%
}

.customized-page .cus-5 .list .item ul li:nth-child(2) .text {
    left: -55px;
    top: auto;
    bottom: 50px
}

.customized-page .cus-5 .list .item ul li:nth-child(3) {
    left: 55%;
    top: 56%
}

.customized-page .cus-5 .list .item ul li:nth-child(3) .text {
    left: 0;
    top: 50px
}

.customized-page .cus-5 .list .item ul li:nth-child(4) {
    left: 45.5%;
    top: 78%
}

.customized-page .cus-5 .list .item ul li:nth-child(4) .text {
    right: 50px;
    top: -6px;
    text-align: right
}

.customized-page .cus-5 .list .item ul li:hover i {
    -webkit-box-shadow: 0px 0px 20px 12px var(--color);
    box-shadow: 0px 0px 20px 12px var(--color);
    background: var(--color)
}

.customized-page .cus-5 .list .item ul li:hover .text {
    opacity: 1
}

.customized-page .cus-5 .list .slick-current .item .img img {
    animation: 1s .3s zoomIn both
}

.customized-page .cus-5 .circle {
    width: 85%;
    margin: auto;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 10%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 2px solid rgba(255, 255, 255, .4);
    z-index: 0
}

.customized-page .cus-5 .btn {
    z-index: 5
}

.customized-page .cus-5 .btn a {
    position: absolute;
    z-index: 5;
    background: #1e1e1f;
    border-radius: 50%
}

.customized-page .cus-5 .btn a i {
    width: 60px;
    height: 60px;
    line-height: 56px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    text-align: center;
    color: rgba(255, 255, 255, .3);
    font-size: 36px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.customized-page .cus-5 .btn a.prev {
    left: 16%;
    bottom: 10.5%
}

.customized-page .cus-5 .btn a.next {
    right: 16%;
    bottom: 10.5%
}

.customized-page .cus-5 .btn a:hover i {
    border-color: #fff;
    color: #fff
}

.customized-page .cus-5 .down_arrow {
    position: absolute;
    left: 50%;
    bottom: 20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.customized-page .cus-5 .down_arrow i {
    font-size: 40px;
    line-height: .4;
    display: block;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    color: #fff;
    -webkit-animation: arrow_down 2s .3s infinite;
    -moz-animation: arrow_down 2s .3s infinite;
    animation: arrow_down 2s .3s infinite
}

.customized-page .cus-5 .down_arrow i:nth-child(1) {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    animation-delay: .6s
}

.design-page .design-1 .box {
    padding: 150px 0 220px;
}

.design-page .design-1 .box .content {
    line-height: 28px;
    color: #929292;
    max-width: 800px;
    margin: 50px auto 0;
}

.design-page .design-2 {
    background: url(../images/design-bg.jpg) no-repeat;
    background-size: cover;
    padding: 400px 0 130px;
}

.design-page .design-2 .top {
    color: white;
    padding-left: 200px;
    margin-bottom: 60px;
}

.design-page .design-2 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;
}

.design-page .design-2 ul li {
    text-align: center;
    position: relative;
}

.design-page .design-2 ul li .icon {
    width: 108px;
    height: 108px;
    line-height: 108px;
    background: white;
    border-radius: 50%;
    text-align: center;
    margin: auto;
}

.design-page .design-2 ul li .icon img {
    vertical-align: middle;
}

.design-page .design-2 ul li h5 {
    font-size: 18px;
    color: white;
    margin-top: 20px;
}

.design-page .design-2 ul li::after {
    content: "";
    position: absolute;
    top: 40%;
    right: -1.5em;
    width: 50px;
    height: 4px;
    background: white;
}

.design-page .design-2 ul li:last-child::after {
    content: none;
}

.design-page .design-3 {
    background: url(../images/design-bg2.jpg) no-repeat;
    background-size: cover;
    padding: 210px 0 160px;
}

.design-page .design-3 .box {
    width: 50%;
}

.design-page .design-3 .content {
    line-height: 28px;
    color: #929292;
    margin: 45px 0 30px;
}

.design-page .design-3 .more {
    color: var(--color);
    font-size: 18px;
}

.design-page .design-3 ul {
    margin: -15px;
    margin-top: 105px;
}

.design-page .design-3 ul li {
    padding: 15px;
    text-align: center;
}

.design-page .design-4 {
    padding: 140px 0 150px;
}

.design-page .design-4 .left {
    vertical-align: middle;
    padding: 0 140px;
}

.design-page .design-4 .left h4 {
    font-size: 23px;
    color: var(--color);
    margin-top: 80px;
}

.design-page .design-4 .left .content {
    line-height: 28px;
    color: #929292;
    margin: 30px 0 80px;
}

.design-page .design-4 .left .btn a {
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    background: white;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    line-height: 45px;
    display: inline-block;
    margin-right: 30px;
}

.design-page .design-4 .left .btn a:hover {
    background: var(--color);
    color: white;
}

.design-page .design-4 .right {
    vertical-align: middle;
}

.product-page .pro_nav {
    padding: 55px 0;
}

.product-page .pro_nav ul li {
    font-size: 20px;
    line-height: 1.8;
    border: 1px solid #c8c6c1;
    padding: 30px 10px;
    transition: 0.3s;
}

.product-page .pro_nav ul li a{
    display: inline-block;
    vertical-align: middle;
}

.product-page .pro_nav ul li .img{
    width: 60px;
    margin-right: 10px;
}

.product-page .pro_nav ul li .text{
    width: calc(100% - 80px);
}

.product-page .pro_nav ul li img {
    vertical-align: middle;
}

.product-page .pro_nav ul li.active,
.product-page .pro_nav ul li:hover {
    background: var(--color);
    color: #1c1c1c;
}

.product-page .product-1 {
    /*background: url(../images/product-bg1.jpg) no-repeat;*/
    background-size: cover;
    color: white;
    height: 42vw;
}

.product-page .product-1 .box {
    width: 40%;
    margin-left: auto;
}

.product-page .product-1 .box .content {
    line-height: 28px;
    margin: 35px 0 55px;
}

.product-page .product-1 .box .more {
    font-size: 20px;
    height: 59px;
    line-height: 59px;
    background: var(--color);
    border-radius: 29px;
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    padding: 0 40px;
}

.product-page .product-1 .box .more:hover {
    background: black;
}

.product-page .pro-list {
    padding: 150px 0 100px;
}

.product-page .pro-list .cat_des{
    font-size: 14px;
    line-height: 2;
    color: #555;
    margin: 10px 0 30px 0;
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.product-page .pro-list ul {
    margin: -10px;
}

.product-page .pro-list ul > p{
    font-size: 16px;
    letter-spacing: 0;
}

.product-page .pro-list ul li {
    padding: 10px;
}

.product-page .pro-list ul li .img-box {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.product-page .pro-list ul li .img-box img {
    display: block;
    width: auto;
    margin: auto;
}

.product-page .pro-list ul li h5 {
    font-size: 18px;
    line-height: 2;
    min-height: 4em;
    font-weight: bold;
    margin-top: 10px;
}

.product-page .pro-list ul li .des{
    font-size: 14px;
    line-height: 2;
    margin-top: 15px;
    color: #333;
}

.product-page .pro-list ul li:hover .img-box {
    background: rgba(0, 0, 0, 0.1);
}

.product-page #index-body .i-about .left {
    vertical-align: middle;
}

.product-page #index-body .i-about .right {
    vertical-align: middle;
}
.prodet-page .prodet-1 {
    padding: 130px 0 120px;
}

.prodet-page .prodet-1 .left .gallery {
    width: 20%;
    vertical-align: middle;
}

.prodet-page .prodet-1 .left .gallery ul li {
    padding: 10px;
}

.prodet-page .prodet-1 .left .gallery ul li a {
    border: 1px solid #eee;
    display: block;
    overflow: hidden;
}

.prodet-page .prodet-1 .left .bigImg {
    width: 77%;
    vertical-align: middle;
    border: 1px solid #eee;
}

.prodet-page .prodet-1 .left .bigImg a{
    display: block;
}

.prodet-page .prodet-1 .left .bigImg img {
    display: block;
    margin: auto;
    width: 100%;
}

.prodet-page .prodet-1 .right {
    padding-left: 50px;
}

.prodet-page .prodet-1 .right h1 {
    line-height: 44px;
}

.prodet-page .prodet-1 .right .item-box {
    margin-top: 55px;
}

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

.prodet-page .prodet-1 .right .item-box .item {
    border-top: 1px solid #e8e8e8;
    padding: 25px 0 30px;
}

.prodet-page .prodet-1 .right .item-box .item1 img{
    width: 90px;
    margin: 5px;
    display: inline-block;
}

.prodet-page .prodet-1 .right .item-box .item h5 {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 20px;
}

.prodet-page .prodet-1 .right .item-box .item ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.prodet-page .prodet-1 .right .item-box .item ul li {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.prodet-page .prodet-1 .right .item-box .item1 ul li:nth-child(1) {
    background: #020202;
}

.prodet-page .prodet-1 .right .item-box .item1 ul li:nth-child(2) {
    background: #020202;
}

.prodet-page .prodet-1 .right .item-box .item1 ul li:nth-child(3) {
    background: #020202;
}

.prodet-page .prodet-1 .right .item-box .item2 ul li:nth-child(1) {
    background: #82b858;
}

.prodet-page .prodet-1 .right .item-box .item2 ul li:nth-child(2) {
    background: #020202;
}

.prodet-page .prodet-1 .right .item-box .item:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.prodet-page .prodet-1 .right .item-box .item3 .content {
    color: #606060;
    max-height: 310px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    font-size: 16px;
    line-height: 30px;
}

.prodet-page .prodet-2 {
    padding-bottom: 120px;
}

.prodet-page .prodet-2 ul {
    border-top: 1px solid #e7e7e7;
}

.prodet-page .prodet-2 ul li {
    background: #fafafa;
    padding: 60px 40px 40px;
    border-top: 1px solid #e7e7e7;
    line-height: 2;
}

.prodet-page .prodet-2 ul li.gif .right img {
    max-width: 300px;
}

.prodet-page .prodet-2 ul li .left {
    position: relative;
    width: 36%;
    padding-right: 20px;
}

.prodet-page .prodet-2 ul li .left h5 {
    font-size: 30px;
    padding-right: 40px;
}

.prodet-page .prodet-2 ul li .left i {
    position: absolute;
    right: 20px;
    top: 12px;
    font-size: 30px;
    cursor: pointer;
}

.prodet-page .prodet-2 ul li .right {
    width: 64%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
}

.prodet-page .prodet-2 ul li .right .cont_des{
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 2px;
}

.prodet-page .prodet-2 ul li .right table{
    width: 100% !important;
}

.prodet-page .prodet-2 ul li .right table tr td{
    min-width: 120px;
    border: none;
}

.prodet-page .prodet-2 ul li .right table tbody tr{
    border-bottom: 1px solid #000;
    background: #fff;
}

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

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

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

@media screen and (max-width: 1600px) {
    .about-page .about-2 .wrap .right ul li {
        width: 40%;
        margin-bottom: 30px;
    }

    .about-page .about-2 .wrap .right ul li h3 {
        font-size: 68px;
    }

    .about-page .about-3 h2{
        font-size: 40px;
    }

    .news-page .news_list ul li .content {
        padding-left: 70px;
    }

    .product-page .product-1 {
        background-size: contain;
        padding: 66px 0 107px;
    }

    .customized-page .cus-5 h5.pro_name {
        right: 20px
    }
    .customized-page .cus-5 .list .item ul li:nth-child(2){
        left: 68%;
    }
}

@media screen and (max-width: 1400px) {
    .about-page .about-2 .wrap .right ul li {
        width: 50%;
    }

    .about-page .about-2 .wrap .right {
        padding-left: 40px;
    }

    .about-page .about-2 .wrap .right ul li h3 {
        font-size: 50px;
        line-height: 1;
    }

    .about-page .about-3 h2{
        font-size: 30px;
    }
    .about-page .about-3 ul li .top .title {
        margin-left: 10px
    }

    .customized-page .cus-5 h2 {
        font-size: 75px;
        line-height: 70px;
        top: 22%
    }

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

    .product-page .product-1 .box {
        width: 60%;
    }
}

@media screen and (max-width: 1250px) {
    .product-page .pro_nav{
        display: none;
    }
}



@media screen and (max-width: 1200px) {
    .inner-page .top.tab li {
        margin: 0 5px;
    }

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

    .inner-banner h2 {
        font-size: 50px;

    }

    .about-page .about-1 .ui.container {
        padding: 0 120px;
    }

    .design-page .design-2 .top {
        padding-left: 20px;
    }

    .design-page .design-3 .box {
        width: 90%;
    }

    .design-page .design-4 .left {
        padding: 0 30px;
    }



    .faq-page ul.faq_list li h4 {
        font-size: 26px;
    }

    .news-page .news_list ul li .time h2 {
        font-size: 90px;
    }


    .product-page .product-1 {
        background-size: cover;
    }

}

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

    .inner-banner {
        margin-top: 40px;
        padding: 40px 0;
        text-align: center;
    }

    .inner-banner .mbx{
        text-align: center;
        margin: 10px 0;
    }
    .news-page .news_list{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .news-page .news_list ul li .content .text{
        font-size: 16px;
        line-height: 2;
    }
    .news-page .news_list ul li .content h4{
        font-size: 22px;
        line-height: 40px;
    }

    .inner-banner h2 {
        font-size: 40px;
    }
    .inner-banner p{
        display: none;
    }

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

    .about-page .about-1 .ui.container {
        padding: 0 50px;
        background: none !important;
    }

    .about-page .about-2 .wrap .left {
        width: 100%;
    }

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

    .about-page .about-3 ul li {
        width: 50%
    }
    .about-page .init-5 {
        text-align: center;
    }
    .about-page .init-5 .container .sub_img {
        display: none;
    }
    .about-page .init-5 .container .list_cont .slick li .box {
        padding: 0 10px;
    }
    .about-page .init-5 .container .list_cont .slick li .box .cont {
        height: auto;
    }
    .about-page .init-5 .container .list_cont .slick li .box .cont .des{
        opacity: 1;
        height: 100px;
    }
    .about-page .init-5 .container .list_cont .slick li .box .img {
        display: none;
    }


    .design-page .design-3 .box {
        width: 100%;
    }

    .design-page .design-3 ul li {
        width: 33% !important;
    }

    .font-50 {
        font-size: 32px;
    }
    .font-58 {
        font-size: 40px;
    }

    .news-page .news_list ul li .time h2 {
        font-size: 66px;
    }

    .news-page .news_list ul li .time {
        font-size: 22px;
        line-height: 40px;
    }

    .news-page .news_list ul li .content {
        padding-left: 20px;
    }

    .newdet-page .newdet-1 .bottom{
        flex-wrap: wrap;
    }
    .newdet-page .newdet-1 .bottom .right{
        width: 100%;
        margin-top: 20px;
    }

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

    .font-28 {
        font-size: 20px;
        line-height: 1.8;
    }

    .customized-page .cus-1 .box ul li h5 {
        font-size: 22px;
        line-height: 40px;
    }

    .customized-page .cus-2 ul li .text {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }

    .customized-page .cus-2 ul li .img {
        width: 100%;
    }

    .customized-page .cus-3 ul li .text {
        padding-left: 25px;
    }

    .customized-page .cus-3 ul li:nth-child(2) .text {
        padding-right: 25px;
    }

    .customized-page .cus-4{
        padding-bottom: 0;
    }
    .customized-page .cus-4 .box{
        padding-bottom: 0;
    }

    .customized-page .cus-5{
        display: none;
    }

    .customized-page .cus-5 .list .item .img img {
        width: 50%
    }
}

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

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

    .prodet-page .prodet-1 .left,
    .prodet-page .prodet-2 ul li .left {
        width: 100%;
        padding-right: 0;
    }

    .prodet-page .prodet-1 .right,
    .prodet-page .prodet-2 ul li .right {
        width: 100%;
        padding-left: 0;
    }

    .prodet-page .prodet-2 ul li{
        padding: 40px 10px;
    }

    .customized-page .cus-3 ul li .img,
    .customized-page .cus-3 ul li .text {
        width: 100%;
        padding: 0;
        margin: 10px 0;
    }

    .customized-page .cus-1 .box .top {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .customized-page .cus-1 .box .top a.more {
        margin-top: 20px;
    }

    .customized-page .cus-1 .box {
        padding-left: 30px;
        padding-right: 30px;
        margin-top: -60px;
        margin-bottom: -60px;
    }

    .customized-page .cus-4 ul li .left {
        width: 80%;
        position: unset;
        display: block;
        margin: auto;
        padding: 40px 0;
    }

    .customized-page .cus-4 ul li .right {
        width: 100%;
        padding: 15px;
        margin-left: 0;
        text-align: center;
    }


    .customized-page .cus-5 h4.title {
        position: unset;
        width: 100%;
        text-align: center
    }

    .customized-page .cus-5 {
        padding-top: 40px
    }

    .customized-page .cus-5 .list {
        padding-top: 50px
    }

    .customized-page .cus-5 h5.pro_name {
        top: 114px;
        font-size: 14px
    }

    .customized-page .cus-5 .circle {
        width: 92%;
        height: 110px;
        bottom: 5%
    }

    .customized-page .cus-5 .btn a.prev {
        left: 9%;
        bottom: 3.5%
    }

    .customized-page .cus-5 .btn a.next {
        right: 9%;
        bottom: 3.5%
    }

    .design-page .design-4 .left {
        width: 100%;
    }

    .design-page .design-4 .right {
        width: 100%;
        margin-top: 20px;
    }

    .design-page .design-3 {
        padding-top: 80px;
    }

    .about-page .about-1 .ui.container {
        padding: 0 15px;
        background: unset;
    }

    .about-page .about-2 .wrap .right {
        padding-left: 0;
    }

    .about-page .about-2 .wrap .right ul li h3 {
        font-size: 42px;
        line-height: 1;
    }

    .about-page .about-3 h2{
        font-size: 22px;
        line-height: 2
    }

    .faq-page ul.faq_list li {
        padding: 35px 15px;
    }

    .font-50 {
        font-size: 30px;
    }
    .customized-page .cus-4 .txt-center {
        margin-top: -40px;
        margin-bottom: -40px;
    }

    .font-30 {
        font-size: 20px;
        line-height: 1.8;
    }

    .faq-page ul.faq_list li h4 {
        font-size: 20px;
    }

    .news-page .news_list ul li .time {
        width: 100%;
        text-align: left;
    }

    .news-page .news_list ul li .time h2 {
        display: inline-block;
    }

    .news-page .news_list ul li .content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .news-page .news_list ul li {
        padding: 40px 0;
    }

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

@media screen and (max-width: 500px) {
    .inner-banner h2 {
        font-size: 20px;
        line-height: 1.8;
    }

    .font-40 {
        font-size: 24px;
        line-height: 44px;
    }
    .product-page .pro-list .cat_des{
        display: none;
    }

    .inner-banner p {
        font-size: 16px;
    }

    .m-link{
        margin-top: 20px;
    }

    .about-page .about-2 .wrap .right ul li p {
        font-size: 16px;
        line-height: 30px;
    }
    .about-page .init-5 {
        padding: 40px 0;
    }
    .about-page .init-5 .container .list_cont {
        margin-top: 20px;
        padding: 0;
    }


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

    .product-page .pro-list{
        padding: 40px 0;
    }

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


    .newdet-page .newdet-1 h1 {
        font-size: 24px;
        line-height: 44px;
    }

    .newdet-page .newdet-1 {
        padding-top: 50px;
    }

    .prodet-page .prodet-2 ul li .left h5{
        font-size: 24px;
        line-height: 44px;
    }

    .inner-banner .mbx {
        font-size: 14px;
        line-height: 2;
    }

    .about-page .about-3 {
        padding-top: 45px
    }

    .about-page .about-3 ul li {
        width: 100%
    }

    .customized-page .cus-5 h4.title {
        font-size: 22px;
        line-height: 27px
    }

    .customized-page .cus-5 h5.pro_name {
        top: 68px
    }

    .customized-page .cus-5 .btn a i {
        width: 50px;
        height: 50px;
        line-height: 48px
    }

}

.privacy-page h3 {
    font-weight: bold;
    font-size: 22px;
}

h1.shouyeh1 {
    display: inline;
}

h1.fenleiyeh1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

@media screen and (max-width: 1000px) {
    .fenleiyeh1{
        font-size: 20px!important;
        line-height: 36px!important;
        margin-top: -20px;
    }
}
.product2-page .product-new {
    /*padding: 4rem 15px 10rem;*/
    background: #fcfaf8;
}
.product2-page .product-new h2 {
    font-size: 6rem;
    text-align: center;
}
.product2-page .product-new .newBox {
    margin: 0 auto;
    max-width: 1575px;
}
.product2-page .product-new .newBox .swiper-slide {
    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;
}
.product2-page .product-new .newBox .swiper-slide .left {
    width: 50%;
}
.product2-page .product-new .newBox .swiper-slide .left a {
    display: block;
    overflow: hidden;
}
.product2-page .product-new .newBox .swiper-slide .left a:hover img {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}
.product2-page .product-new .newBox .swiper-slide .left a img {
    width: 100%;
    background: #fff;
}
.product2-page .product-new .newBox .swiper-slide .right {
    width: 50%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2rem 4.5rem;
}
.product2-page .product-new .newBox .swiper-slide .right .centre h4 {
    font-size: 3.2rem;
    height: 62px;
    line-height: 1;
    color: #000000;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 3.5rem 0 1.5rem;
}
.product2-page .product-new .newBox .swiper-slide .right .centre p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.product2-page .product-new .newBox .swiper-slide .right .centre .more {
    margin-top: 4rem;
}
.product2-page .product-box {
    padding: 7rem 0 10rem;
}
.product2-page .product-box h1 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 2em;
    margin-bottom: .5em;
}
.Auxil-catdes{
    line-height: 30px;
    font-size: 16px;
}
.product2-page .product-box .otik {
    max-height: 210px;
    overflow: auto;
}
.product2-page .product-box .pro-nav {
    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;
}
.product2-page .product-box .pro-nav a {
    display: block;
    text-align: center;
    margin: 0 2rem;
}
/*.product2-page .product-box .pro-nav a:hover .nav-img {
    border: 1px solid #b10d03;
}*/
.product2-page .product-box .pro-nav a:hover p {
    color: #df0d00;
    font-weight: 500;
}
.product2-page .product-box .pro-nav a .nav-img {
    display: inline-block;
    border-radius: 100%;
    /*border: 1px solid #dedede;*/
    width: 80px;
    height: 80px;
    /*border: 1px solid #b10d03;*/
    margin-bottom: 1rem;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    overflow: hidden;
}
.product2-page .product-box .pro-nav a .nav-img:hover {
    transform: scale(1.1);
}
.product2-page .product-box .pro-nav a p {
    font-size: 18px;
    max-width: 170px;
    margin: 0 auto;
    color: #5d5d5d;
    line-height: 2;
}
.product2-page .product-box .product-list {
    margin: 4rem auto 0;
    /*max-width: 1664px;*/
    position: relative;
}
.product2-page .product-box .product-list .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    background-position: center;
    border: none;
    color: transparent;
    overflow: hidden;
    z-index: 1;
}
.product2-page .product-box .product-list .slick-arrow.slick-prev {
    left: -40px;
}
.product2-page .product-box .product-list .slick-arrow.slick-next {
    right: -40px;
}
.product2-page .product-box .product-list .slick-slide>div {
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 10px;
}
.product2-page .product-box .product-list ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}
.product2-page .product-box .product-list.slick ul {
    display: block;
}
.product2-page .product-box .product-list ul li {
    width: 25%;
    padding: 0 1.5rem;
    margin-bottom: 3rem;
    vertical-align: top;
}
.product2-page .product-box .product-list ul li .pro-img {
    display: block;
    overflow: hidden;
    border: 1px solid #ccc;
    position: relative;
}
.product2-page .product-box .product-list ul li .pro-img span {
    display: block;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: .5em;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #0e4399;
    text-align: center;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}
.product2-page .product-box .product-list ul li .pro-img:hover span {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.product2-page .product-box .product-list ul li .pro-img img {
    width: 100%;
    background: #fcfaf8;

}
.product2-page .product-box .product-list ul li h4 {
    font-size: 18px;
    /*line-height: 1;*/
    color: #000000;
    text-align: center;
    font-weight: 700;
    margin: 2rem 0 1rem;
    line-height: 1.8;
}
.product2-page .product-box .product-list ul li h4:hover {
    color: #b10d03;
}
.product2-page .product-box .product-list ul li p {
    text-align: center;
    margin: 0 auto;
    max-width: 320px;
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
@media screen and (max-width: 1230px) {
    .product2-page .product-box .product-list ul li{
        width: 33.333%;
    }
}
@media screen and (max-width: 1000px){
    .product2-page .product-box h1 {
        font-size: 24px;
    }
}
@media screen and (max-width: 700px){
    .product2-page .product-box .pro-nav{
        display: none;
    }
    .product2-page .product-box .product-list ul li{
        width: 50%;
    }

}

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

}
.prodet2-page .prodet-1 {
    padding: 130px 0 80px;
}
.prodet2-page .prodet-1 .left .gallery {
    width: 20%;
    vertical-align: middle;
}
.prodet2-page .prodet-1 .left .gallery ul li {
    padding: 10px;
    position: relative;
}
.prodet2-page .prodet-1 .left .gallery ul li a {
    border: 1px solid #eee;
    display: block;
}
.prodet2-page .prodet-1 .left .gallery ul li .play{
    width: 35px;
    height: 35px;
    background: #b10d03;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100%;
    cursor: pointer;
    color: white;
    text-align: center;
    line-height: 35px;
    font-size: 16px;
}
.prodet2-page .prodet-1 .left .bigImg {
    width: 77%;
    vertical-align: middle;
    border: 1px solid #eee;
}
.prodet2-page .prodet-1 .left .bigImg img {
    width: auto;
    display: block;
    margin: auto;
}
.prodet2-page .prodet-1 .right{
    padding-left: 50px;
}
.prodet2-page .prodet-1 .right h1 {
    line-height: 45px;
}
.prodet2-page .prodet-1 .right .item-box {
    margin-top: 30px;
}
.prodet2-page .prodet-1 .right .item-box .item {
    border-top: 1px solid #e8e8e8;
    padding: 25px 0 30px;
}
.prodet2-page .prodet-1 .right .item-box .item h5 {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.prodet2-page .prodet-1 .right .item-box .item ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.prodet2-page .prodet-1 .right .item-box .item ul li {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}
.prodet2-page .prodet-1 .right .item-box .item1 ul li:nth-child(1) {
    background: #020202;
}
.prodet2-page .prodet-1 .right .item-box .item1 ul li:nth-child(2) {
    background: #020202;
}
.prodet2-page .prodet-1 .right .item-box .item1 ul li:nth-child(3) {
    background: #020202;
}
.prodet2-page .prodet-1 .right .item-box .item2 ul li:nth-child(1) {
    background: #82b858;
}
.prodet2-page .prodet-1 .right .item-box .item2 ul li:nth-child(2) {
    background: #020202;
}
.prodet2-page .prodet-1 .right .item-box .item:last-child {
    border-bottom: 1px solid #e8e8e8;
}
.prodet2-page .prodet-1 .right .item-box .item3 .content {
    color: #606060;
}
.prodet2-page .prodet-1 .right .more {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background: #0e4399;
    color: white;
    font-size: 20px;
    height: 59px;
    line-height: 59px;
    padding: 0 40px;
    display: inline-block;
    margin-top: 50px;
}
.prodet2-page .prodet-1 .right .more:hover {
    background: black;
}
.prodet2-page .prodet-2 {
    padding-bottom: 120px;
}
.prodet2-page .prodet-2 ul {
    border-top: 1px solid #e7e7e7;
}
.prodet2-page .prodet-2 ul li {
    background: #fafafa;
    padding: 60px 40px 40px;
    border-top: 1px solid #e7e7e7;
    line-height: 2;
}
.prodet2-page .prodet-2 ul li.gif .right img{
    max-width: 300px;
}
.prodet2-page .prodet-2 ul li .left {
    position: relative;
    width: 35%;
    padding-right: 20px;
}
.prodet2-page .prodet-2 ul li .left h5 {
    font-size: 30px;
}
.prodet2-page .prodet-2 ul li .left i {
    position: absolute;
    right: 20px;
    top: 0;
    font-size: 30px;
    cursor: pointer;
}
.prodet2-page .prodet-2 ul li .right {
    width: 65%;
    padding-left: 20px;
    font-size: 16px;
    line-height: 30px;
}
@media screen and (max-width: 750px) {
    .prodet2-page .prodet-1 .left,
    .prodet2-page .prodet-2 ul li .left{
        width: 100%;
        padding-right: 0;
    }
    .prodet2-page .prodet-1 .right,
    .prodet2-page .prodet-2 ul li .right{
        width: 100%;
        padding-left: 0;
    }
}
@media screen and (max-width: 500px) {
    .prodet2-page .prodet-1 .right{
        padding-left: 0;
    }
}
.manufacture-page .img {
    overflow: hidden;
}
.manufacture-page .img img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.manufacture-page .img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.manufacture-page .manufacture-1 .mbx {
    padding: 49px 0 89px;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
}
.manufacture-page .manufacture-1 .title span {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3.5px;

}
.manufacture-page .manufacture-1 .title .tit4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--color);
    margin-top: 20px;
    max-width: 1200px;
}
.manufacture-page .manufacture-1 .top {
    margin-top: 80px;
}
.manufacture-page .manufacture-1 .top p {
    font-size: 18px;
    font-weight: 300;
    color: #1D1D1D;
    margin-top: 50px;
}
.manufacture-page .manufacture-1 .top .left {
    width: 46.18%;
}
.manufacture-page .manufacture-1 .top .right {
    width: 53.82%;
    padding-left: 110px;
}
.manufacture-page .manufacture-2 {
    margin-top: 110px;
}
.manufacture-page .manufacture-2 .num {
    margin-top: 80px;
}
.manufacture-page .manufacture-2 .num ul li {
    text-align: center;
}
.manufacture-page .manufacture-2 .num ul li h2 {
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    line-height: 1;
}
.manufacture-page .manufacture-2 .num ul li p {
    font-size: 18px;
    font-weight: 300;
    color: #1D1D1D;
    margin-top: 40px;
}
.manufacture-page .manufacture-3 {
    padding: 120px 0;
}
.manufacture-page .manufacture-3 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.manufacture-page .manufacture-3 .title .acc span {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3.5px;
}
.manufacture-page .manufacture-3 .title .acc .tit {
    font-size: 36px;
    font-weight: 700;
    color: var(--color);
    margin-top: 25px;
}
.manufacture-page .manufacture-3 .title p {
    font-size: 18px;
    color: #1D1D1D;
    line-height: 1.5;
    max-width: 770px;
}
.manufacture-page .manufacture-3 .top {
    margin-top: 100px;
}
.manufacture-page .manufacture-3 .top ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -6px;
}
.manufacture-page .manufacture-3 .top ul li {
    padding: 0 6px;
}


@media screen and (max-width: 1630px) {
    .manufacture-page .manufacture-2 .num ul li h2 {
        font-size: 48px;
    }
}

@media screen and (max-width: 1320px) {
    .manufacture-page .manufacture-2,
    .manufacture-page .manufacture-2 .num {
        margin-top: 80px;
    }

    .manufacture-page .manufacture-3 {
        padding: 80px 0;
    }

    .manufacture-page .manufacture-3 .title .acc .tit{
        font-size: 36px;
    }

    .manufacture-page .manufacture-1 .mbx {
        padding: 40px 0;
    }
    .manufacture-page .manufacture-2 .num ul li h2 {
        font-size: 36px;
    }
    .manufacture-page .manufacture-2 .num ul li p {
        font-size: 18px;
        margin-top: 10px;
    }
}


@media screen and (max-width: 1100px) {
    .manufacture-page .manufacture-1 .top .right {
        padding-left: 60px;
    }
    .manufacture-page .manufacture-1 .top p {
        margin-top: 20px;
    }
    .manufacture-page .manufacture-2 .num ul li {
        width: 25%;
    }
    .manufacture-page .manufacture-2 .num ul li p {
        font-size: 16px;
    }
    .manufacture-page .manufacture-3 .title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .manufacture-page .manufacture-3 .title .acc {
        width: 100%;
    }
    .manufacture-page .manufacture-3 .title .acc .tit,
    .manufacture-page .manufacture-3 .title p {
        margin-top: 15px;
        max-width: 100%;
    }
    .manufacture-page .manufacture-3 .top {
        margin-top: 50px;
    }
}

@media screen and (max-width: 972px) {
    .manufacture-page .manufacture-3 {
        padding: 60px 0;
    }

    .manufacture-page .manufacture-2,
    .manufacture-page .manufacture-2 .num {
        margin-top: 60px;
    }

    .manufacture-page .manufacture-1 .top {
        margin-top: 40px;
    }
    .manufacture-page .manufacture-1 .top p {
        font-size: 18px;
        line-height: 1.8;
    }
    .manufacture-page .manufacture-2 .num ul li h2 {
        font-size: 32px;
    }
    .manufacture-page .manufacture-3 .title p {
        font-size: 16px;
        line-height: 2;
    }
    .manufacture-page .manufacture-3 .top {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .manufacture-page .manufacture-3 .title .acc .tit,
    .manufacture-page .manufacture-1 .title .tit4 {
        font-size: 32px;
    }

    .manufacture-page .manufacture-1 .top .left {
        width: 100%;
    }
    .manufacture-page .manufacture-1 .top .right {
        padding-left: 0;
        width: 100%;
        margin-top: 30px;
    }
    .manufacture-page .manufacture-2 .num ul li {
        width: 50%;
        margin: 15px 0;
    }
    .manufacture-page .manufacture-3 .top ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .manufacture-page .manufacture-3 .top ul li {
        margin: 10px 0;
    }
}


@media screen and (max-width: 450px) {
    .manufacture-page .manufacture-3 .title .acc .tit,
    .manufacture-page .manufacture-1 .title .tit4 {
        font-size: 26px;
        line-height: 2;
    }

    .manufacture-page .manufacture-3 {
        padding: 40px 0;
    }

    .manufacture-page .manufacture-2,
    .manufacture-page .manufacture-2 .num {
        margin-top: 30px;
    }

    .manufacture-page .manufacture-2 .num ul li {
        width: 100%;
    }
}

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

.contact-page .contact-1 .left form ul li .box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #d1d0c8;
}
.contact-page .contact-1 .left form ul li .box input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0 13px 25px;
    font-size: 16px;
    line-height: 30px;
    color: rgba(0,0,0,.5);
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::-ms-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0 13px 36px;
    font-size: 16px;
    line-height: 30px;
    color: #7b7b7b;
}
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea::-ms-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box textarea::placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box i {
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 20px;
}
.contact-page .contact-1 .left form ul li .box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}
.contact-page .contact-1 .left form ul li .more {
    border: none;
}
.contact-page .contact-1 .left form ul li .more:before {
    opacity: 1;
}
.contact-page .contact-1 .left form ul li .more:hover:before {
    opacity: 0;
}
.contact-page .contact-1 .left form ul li p {
    display: inline-block;
    vertical-align: middle;
    padding-left: 26px;
    font-size: 14px;
    line-height: 28px;
    color: #83827f;
}
.contact-page .contact-1 .left form ul li p span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 5px;
}
.contact-page .contact-1 .left form ul li:hover .box::before {
    width: 100%;
}
.contact-page .contact-1 .left form ul li.active .box::before {
    width: 100%;
}
.contact-page .contact-1 .left form ul li.wid-100 {
    width: 100% !important;
}
.contact-page .contact-1 .right {
    padding-left: 7.65%;
}
.contact-page .contact-1 .right .title {
    line-height: 1.2;
}
.contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: #83827f;
    margin-top: 7px;
}
.contact-page .contact-1 .right .list {
    margin-top: 22px;
}
.contact-page .contact-1 .right .list ul li {
    color: rgba(0,0,0,.5);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
}
.contact-page .contact-1 .right .list ul li i {
    display: inline-block;
    vertical-align: top;
    color: #bf0000;
    font-size: 20px;
    width: 20px;
    text-align: center;
}
.contact-page .contact-1 .right .list ul li span {
    display: inline-block;
    vertical-align: top;
    width: 90%;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    padding-left: 10px;
}
.contact-page .contact-1 .right .list ul li:last-child {
    margin-bottom: 0;
}
.contact-page .contact-2 {
    padding-top: 120px;
}
.contact-page .contact-2 #mapContainer {
    height: 520px;
}
.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
    color: #83827f;
}
.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
    color: #83827f;
}
@media (max-width: 1250px) {
    .contact-page .contact-1 .right {
        padding-left: 5.65%;
    }
    .product2-page .product-box {
        zoom: .7;
    }
    .product2-page .product-box .pro-nav a {
        margin: 0 2em;
    }
    .product2-page .product-box .pro-nav {
        display: none;
    }
}
@media (max-width: 1000px) {
    .contact-page {
        padding-top: 30px;
    }
    .contact-page .contact-1 .left {
        width: 100%;
    }
    .contact-page .contact-1 .right {
        width: 100%;
        padding: 30px 0 0 0;
     }
    .contact-page .contact-2 {
        padding-top: 60px;
    }
    .contact-page .contact-2 #mapContainer {
        height: 360px;
    }
}
@media (max-width: 500px) {
    .contact-page .contact-1 .left form ul li .more {
        padding: 6px 12px;
    }
    .contact-page .contact-1 .left form ul li p {
        display: block;
    }
    .contact-page .contact-1 .left form ul {
        margin-bottom: -20px;
    }
    .contact-page .contact-1 .left form ul li {
        padding-bottom: 20px;
    }
    .contact-page .contact-1 .left form ul li .box input,
    .contact-page .contact-1 .left form ul li .box textarea {
        padding: 10px 0 10px 36px;
    }
    .contact-page .contact-1 .right p {
        font-size: 16px;
        line-height: 30px;
    }
    .contact-page .contact-1 .right .list ul li {
        font-size: 16px;
    }
    .contact-page .contact-2 #mapContainer {
        height: 260px;
    }
}