@font-face {
  font-family: 'Baskerville-Bold';
  src: url(../fonts/Baskerville-Bold.ttf) format('truetype'), url(../fonts/Baskerville-Bold.eot) format('eot'), url(../fonts/Baskerville-Bold.woff) format('woff'), url(../fonts/Baskerville-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'BaskervilleItalic';
  src: url(../fonts/BaskervilleItalic.ttf) format('truetype'), url(../fonts/BaskervilleItalic.eot) format('eot'), url(../fonts/BaskervilleItalic.woff) format('woff'), url(../fonts/BaskervilleItalic.woff2) format('woff2');
}
@font-face {
  font-family: 'Poppins-Regular';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Baskerville-Regular';
  src: url(../fonts/Baskerville-Regular.ttf) format('truetype'), url(../fonts/Baskerville-Regular.eot) format('eot'), url(../fonts/Baskerville-Regular.woff) format('woff'), url(../fonts/Baskerville-Regular.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #cccccc;
}
input::-moz-placeholder {
  color: #cccccc;
}
input:-moz-placeholder {
  color: #cccccc;
}
input:-ms-input-placeholder {
  color: #cccccc;
}
body {
  margin: 0;
  padding: 0;
  --color: #0b4e9b;
  --primary: #0064fb;
  --secondary: #fe7700;
  font-family: 'Poppins-Regular';
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1800px;
  margin: auto;
  position: relative;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 110px;
  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;
}
#header .nav .ui.menu {
  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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 65px;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  -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;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
  border-color: var(--color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#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: 15px;
  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(--secondary);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 12px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#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:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  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-left: 65px;
}
#header .nav .ui.menu .right .h-search {
  cursor: pointer;
}
#header .nav .ui.menu .right .h-phone {
  margin: 0 40px;
}
#header .nav .ui.menu .right .h-email,
#header .nav .ui.menu .right .h-phone {
  position: relative;
}
#header .nav .ui.menu .right .h-email p,
#header .nav .ui.menu .right .h-phone p {
  font-size: 16px;
  width: 0;
  white-space: nowrap;
  height: 40px;
  line-height: 40px;
  background-color: #f5f5f5;
  position: absolute;
  right: 0;
  top: 120%;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  overflow: hidden;
  text-align: center;
}
#header .nav .ui.menu .right .h-email:hover p,
#header .nav .ui.menu .right .h-phone:hover p {
  width: 300px;
  padding-right: 0px;
  text-align: center;
}
#header .nav .ui.menu .right .h-email {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
#header .nav .ui.menu .right .h-email span {
  font-size: 16px;
  margin-right: 10px;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
.search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
table {
  width: 100%;
  margin-bottom: 20px;
  word-break: break-word;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: 50%;
}
table td:first-child {
  color: #2d2d2d;
}
table td:last-child {
  color: #666;
}
.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;
}
#mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
}
#mobile:before {
  content: '';
  width: 100%;
  height: 200%;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
#mobile .m-search {
  padding: 10px 15px;
  background: #0d95e8;
  z-index: 2;
  position: relative;
}
#mobile .m-search form {
  width: 100%;
  padding-right: 50px;
  position: relative;
}
#mobile .m-search form input {
  width: 100%;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: url("../images/icon-search-black.png") center left 5px no-repeat white;
  background-size: 14px;
  padding-left: 25px;
  font-size: 14px;
}
#mobile .m-search form input[type="submit"] {
  width: 40px;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/icon-search-white.png") center center no-repeat;
}
#mobile .m-logo {
  text-align: center;
  background: #333;
  z-index: 1;
  position: relative;
  line-height: 60px;
  height: 60px;
}
#mobile .m-logo img {
  max-height: 40px;
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
#mobile .m-btn {
  position: absolute;
  bottom: 16px;
  left: 15px;
  width: 30px;
  z-index: 2;
  height: 24px;
}
#mobile .m-btn i {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: white;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .m-btn i.ie1 {
  margin-top: -10px;
}
#mobile .m-btn i.ie3 {
  margin-top: 10px;
}
#mobile .box {
  position: fixed;
  background: white;
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 0;
  height: 100%;
  overflow: auto;
  top: 0;
  padding: 25px;
  padding-top: 145px;
}
#mobile .m-nav ul li {
  display: block;
  position: relative;
}
#mobile .m-nav ul li a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  text-transform: capitalize;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-right: 40px;
}
#mobile .m-nav ul li a:hover {
  background: #eee;
  padding-left: 15px;
}
#mobile .m-nav ul li i {
  position: absolute;
  right: 0;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#mobile .m-nav ul li i:before {
  content: "\f105";
  font-family: "FontAwesome";
}
#mobile .m-nav ul li.children > i:before {
  content: "\f107";
}
#mobile .m-nav ul li.children.active > i:before {
  content: "\f106";
}
#mobile .m-nav ul li ul {
  display: none;
}
#mobile .m-nav ul li li a {
  padding-left: 30px;
  position: relative;
  font-size: 14px;
}
#mobile .m-nav ul li li a:after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .m-nav ul li li a:hover {
  padding-left: 30px;
}
#mobile .yuy {
  padding: 20px 0;
}
#mobile .yuy h4 {
  font-size: 18px;
  font-family: 'Baskerville-Bold';
  margin-bottom: 20px;
}
#mobile .yuy ul li {
  width: auto;
  display: inline-block;
  margin-right: 5px;
  font-size: 14px;
  padding-right: 5px;
  border-right: 1px solid #eee;
  margin-bottom: 5px;
}
#mobile .yuy ul li img {
  max-width: 30px;
}
#mobile h6 {
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #eee;
}
#mobile #gotop {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #eee;
  background: white;
  font-size: 14px;
  text-align: center;
  line-height: 40px;
  position: fixed;
  right: 10px;
  bottom: 20px;
  display: none;
}
#mobile.active .m-btn i {
  margin: 0 !important;
}
#mobile.active .m-btn i.ie1 {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#mobile.active .m-btn i.ie2 {
  opacity: 0;
}
#mobile.active .m-btn i.ie3 {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#mobile.active:before {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#mobile.active .box {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.language-box {
  margin: 0 65px 0 115px;
}
.language-box .zhuyu {
  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;
}
.language-box .zhuyu span {
  font-size: 16px;
  margin-left: 10px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -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.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -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);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 12px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language 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;
}
.home-title.center h3 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-title h3 {
  font-size: 92px;
  font-family: "Baskerville-Regular";
  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;
  text-transform: uppercase;
}
.home-title p {
  font-size: 18px;
}
.btn-go {
  font-size: 18px;
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  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;
}
.btn-go span {
  position: relative;
  z-index: 2;
  margin-left: 20px;
  border-bottom: 1px solid black;
   -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go:hover span {
  border-bottom: 1px solid var(--color);
  color: var(--color);
}
.btn-go img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.btn-go:hover img{
  filter: brightness(1);
}
#banner {
  margin-top: 110px;
}
#banner .banner-content {
  position: relative;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
  overflow: hidden;
}
#banner .banner-content ul li .content {
  position: absolute;
  bottom: 135px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#banner .banner-content ul li .content .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
#banner .banner-content ul li .content .left h3 {
  font-size: 72px;
   font-family: 'BaskervilleItalic';
  max-width: 680px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: -15px;
  font-style: italic;
  margin-right: 140px;
  margin-left: 100px;
}
#banner .banner-content ul li .content .left .box p {
  max-width: 400px;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 25px;
}
#banner .banner-content ul li .content .left .box .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}
#banner .banner-content ul li .content .left .box .btn:hover span{
  margin-left: 5px;
}
#banner .banner-content ul li .content .left .box .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#banner .banner-content ul li .content .left .box .btn span {
  border-bottom: 1px solid white;
  padding-bottom: 2px;
  margin-left: 15px;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
  text-transform: uppercase;
}
#banner .banner-content ul li .content .right {
  margin-left: 115px;
}
#banner .banner-content ul li .bg {
  width: 1780px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
  /*-webkit-filter: brightness(0.8);
  filter: brightness(0.8);*/
}
#banner .banner-content ul .slick-prev {
  display: none !important;
}
#banner .banner-content .next {
  position: absolute;
  bottom: 65px;
  right: 175px;
  border: none;
  background-color: transparent;
}
@-webkit-keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@-moz-keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@keyframes play_big {
  0% {
    width: 65px;
    height: 65px;
    opacity: 0;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 1;
  }
}
@-webkit-keyframes btn_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes btn_rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes btn_rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.product-btn {
  display: block;
  font-size: 22px;
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  line-height: 50px;
}
.product-btn span {
  margin-left: 0;
  font-size: 30px;
}
.product-btn .product-border::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
}
.product-btn .product-border {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-animation: btn_rotate 2s linear infinite;
  -moz-animation: btn_rotate 2s linear infinite;
  animation: btn_rotate 2s linear infinite;
}
#index-body .about {
  padding: 155px 0 65px;
  position: relative;
}
#index-body .about .about-content {
  z-index: 5;
}
#index-body .about .about-content .about-t {
  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: 100px;
}
#index-body .about .about-content .about-t .left {
  max-width: 935px;
}
#index-body .about .about-content .about-t .left .home-title {
  margin-bottom: 35px;
}
#index-body .about .about-content .about-t .left p {
  font-size: 20px;
  line-height: 2;
  margin: 30px 0 60px;
}
#index-body .about .about-content .about-t .right {
  position: relative;
  margin-right: 175px;
}
#index-body .about .about-content .about-t .right .bg-2 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
#index-body .about .about-content .about-b 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 .about .about-content .about-b ul li {
  max-width: 260px;
}
#index-body .about .about-content .about-b ul li h4 {
  font-size: 20px;
  font-family: 'Baskerville-Bold';
  margin: 25px 0 10px;
      text-transform: uppercase;
}
#index-body .about .about-content .about-b ul li p {
  font-size: 16px;
}
#index-body .product {
  padding: 50px 0 110px;
}
#index-body .product .product-content .home-title h3 {
  line-height: 1;
}
#index-body .product .product-content ul {
  margin-top: 65px;
}
#index-body .product .product-content ul li {
  width: 386px;
  position: relative;
  padding-bottom: 60px;
}
#index-body .product .product-content ul li:hover .box .img_box .bg {
  opacity: 1;
}
#index-body .product .product-content ul li:hover .box p {
  opacity: 0;
}
#index-body .product .product-content ul li:hover .box .btn {
  bottom: 10px;
}
#index-body .product .product-content ul li:hover .box-t:before {
  background-color: #000;
}
#index-body .product .product-content ul li .box {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 10px;
  overflow: hidden;
  position: relative;
}
#index-body .product .product-content ul li .box .img_box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
#index-body .product .product-content ul li .box .img_box .bg {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
  position: relative;
}
#index-body .product .product-content ul li .box:hover .img_box .bg{
  opacity: 1;
}
#index-body .product .product-content ul li .box .img_box .pro {
  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%);
}
#index-body .product .product-content ul li .box h4 {
  font-size: 18px;
  padding: 0 15px;
  margin: 20px 0 30px;
}
#index-body .product .product-content ul li .box p {
  font-size: 14px;
  font-style: italic;
  padding: 0 15px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.8;
}
#index-body .product .product-content ul li .box .btn {
  font-size: 14px;
  font-style: italic;
  color: var(--color);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color);
  position: absolute;
  left: 15px;
  bottom: -50px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li .box-t {
  width: 416px;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #eeeeee;
}
#index-body .product .product-content ul li .box-t:before {
  content: "";
  display: block;
  height: 5px;
  width: 386px;
  background-color: transparent;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  transition: all .5s;
}
#index-body .product .product-content .pro-prev {
  position: absolute;
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 1px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  transition: all .5s;
}
#index-body .product .product-content .pro-prev:hover{
  border-color:var(--color);
  background-color: var(--color);
}
#index-body .product .product-content .pro-prev:hover img {
  filter: brightness(0) invert(1);
}
#index-body .product .product-content .pro-prev img {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-filter: brightness(0);
  filter: brightness(0);
  transition: all .5s;
}
#index-body .other .other-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .other .other-content ul li {
  width: 50%;
  position: relative;
}
#index-body .other .other-content ul li .bg {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .other .other-content ul li .box {
  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%);
  text-align: center;
}
#index-body .other .other-content ul li .box h4 {
  font-size: 104px;
  font-family: 'BaskervilleItalic';
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}
#index-body .other .other-content ul li .box .btn {
  font-size: 18px;
  color: white;
  border-bottom: 1px solid white;
  transition: all .5s;
}
#index-body .other .other-content ul li .box .btn:hover{
  color: var(--color);
  border-bottom: 1px solid var(--color);
}
#index-body .userinfo {
  position: relative;
}
#index-body .userinfo .content {
  position: absolute;
  width: 1160px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
}
#index-body .userinfo .content .btn {
  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;
  border-bottom: 1px solid white;
  padding-bottom: 15px;
  padding-right: 10px;
  margin: 20px 0 20px;
}
#index-body .userinfo .content .btn span {
  font-size: 92px;
  text-transform: uppercase;
  font-family: 'Baskerville-Regular';
}
#index-body .userinfo .content .btn img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#index-body .userinfo .content h4 {
  font-size: 18px;
}
#index-body .userinfo .content p {
  font-size: 16px;
}
#index-body .news {
  padding: 85px 0 100px;
}
#index-body .news .news-content ul {
  margin-top: 35px;
}
#index-body .news .news-content ul li .date {
  font-size: 18px;
  opacity: 0.6;
  margin-top: 50px;
}
#index-body .news .news-content ul li .img-box{
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}
#index-body .news .news-content ul li .img-box img{
  width: 100%;
  object-fit: cover;
}
#index-body .news .news-content ul li h4 {
  font-size: 24px;
  margin: 30px 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .5s;
}
#index-body .news .news-content ul li h4:hover{
  color: var(--color);
}
#index-body .news .news-content ul li p {
  font-size: 18px;
  opacity: 0.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#footer {
  position: relative;
  padding: 80px 0 75px;
  background-color: #212121;
}
#footer .footer-t {
  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;
}
#footer .footer-t .footer-t-gird {
  width: 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;
}
#footer .footer-t .footer-t-gird .logo.t-list {
  max-width: 330px;
}
#footer .footer-t .footer-t-gird .logo.t-list .f-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 50px;
}
#footer .footer-t .footer-t-gird .logo.t-list .text {
  font-size: 14px;
  margin-top: 25px;
}
#footer .footer-t .footer-t-gird .contact.t-list {
  max-width: 500px;
  background: none;
}
#footer .footer-t .footer-t-gird .contact.t-list ul li {
  margin-bottom: 10px;
}
#footer .footer-t .footer-t-gird .contact.t-list ul li:last-child {
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .contact.t-list ul li i {
  font-size: 20px;
  margin-right: 10px;
}
#footer .footer-t .footer-t-gird .contact.t-list ul li img {
  display: inline-block;
  margin-right: 10px;
}
#footer .footer-t .footer-t-gird .contact.t-list ul li span {
  display: inline-block;
  max-width: 460px;
  text-transform: capitalize;
  font-size: 14px;
}
#footer .footer-t .footer-t-gird .social.t-list a {
  font-size: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
#footer .footer-t .footer-t-gird .social.t-list a i {
  font-size: 14px;
  margin-right: 20px;
}
#footer .footer-t .footer-t-gird .t-list {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#footer .footer-t .footer-t-gird .t-list p {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#footer .footer-t .footer-t-gird .t-list span {
  font-size: 16px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-transform: uppercase;
  margin-bottom: 5px;
}
#footer .footer-t .footer-t-gird .t-list span:last-child {
  margin-bottom: 0;
}
#footer .footer-t .footer-t-gird .t-list .qc-img img,
#footer .footer-t .footer-t-gird .t-list .qc-img canvas {
  width: 100px;
  height: auto;
  border: 3px solid #fff;
}
@media (max-width: 1800px) {
  .ui.container {
    width: 1600px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 60px;
    max-width: 530px;
    margin-right: 80px;
  }
  .home-title h3 {
    font-size: 70px;
  }
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 44px;
    max-width: 420px;
    margin-right: 80px;
  }
  #banner .banner-content .next {
    display: none;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 45px;
  }
  .language-box {
    margin: 0 50px 0 0;
  }
  #banner .banner-content ul li .content .right {
    max-width: 240px;
  }
  #index-body .about .about-content .about-t .left {
    max-width: 50%;
  }
  #index-body .about .about-content .about-t .left p {
    font-size: 18px;
  }
  #index-body .about .about-content .about-t .right {
    max-width: 35%;
    margin-right: 150px;
  }
  #index-body .about .about-content .about-t .right .bg-2 {
    max-width: 300px;
  }
  #footer .footer-t .footer-t-gird .contact.t-list {
    max-width: 360px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .right {
    margin-left: 30px;
  }
  .language-box {
    margin-right: 30px;
  }
  .home-title h3 {
    font-size: 50px;
    margin-top: 10px;
  }
  #banner .banner-content ul li .content .left h3 {
    margin-bottom: -10px;
  }
  #index-body .other .other-content ul li .box h4 {
    font-size: 80px;
    margin-bottom: 10px;
  }
  #index-body .about .about-content .about-t .left p {
    font-size: 16px;
    margin: 30px 0;
  }
  #index-body .about .about-content .about-t .right .bg-2 {
    max-width: 220px;
  }
  #index-body .userinfo .content {
    width: 920px;
  }
  #index-body .userinfo .content .btn span {
    font-size: 66px;
  }
  #index-body .news .news-content ul li .date {
    margin-top: 30px;
  }
  #index-body .news .news-content ul li h4 {
    font-size: 20px;
    margin: 15px 0;
  }
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .right .h-email,
  #header .nav .ui.menu .right .h-phone,
  #banner .banner-content ul li .content .right {
    display: none;
  }
  #index-body .about .about-content .about-t .right {
    margin-right: 110px;
  }
  #index-body .about .about-content .about-t .left p {
    line-height: 1.6;
    margin: -25px 0 20px;
  }
  #index-body .about .about-content .about-t {
    margin-bottom: 65px;
  }
  #index-body .userinfo {
    height: 360px;
  }
  #index-body .userinfo .bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #footer .footer-t .footer-t-gird {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    width: 30%;
  }
  #footer .footer-t .footer-t-gird .logo.t-list {
    margin-bottom: 60px;
  }
}
@media (max-width: 1000px) {
  #header {
    display: none;
  }
  #banner {
    margin-top: 120px;
  }
  #mobile {
    display: block;
  }
  .ui.container {
    width: 700px;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 30px;
    max-width: 265px;
    margin-right: 55px;
    margin-bottom: -5px;
  }
  #banner .banner-content ul li .content {
    bottom: 65px;
  }
  #index-body .about .about-content .about-t {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .about .about-content .about-t .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
  }
  #index-body .about .about-content .about-t .right {
    width: 100%;
    max-width: 100%;
  }
  #index-body .about .about-content .about-b ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .about .about-content .about-b ul li {
    max-width: 45%;
    margin: 20px 0;
  }
  #index-body .other .other-content ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .other .other-content ul li {
    width: 100%;
  }
  #index-body .userinfo .content {
    width: 620px;
  }
  #index-body .userinfo .content .btn span {
    font-size: 48px;
  }
  #index-body .news {
    padding: 80px 0;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }
  #banner .banner-content ul li .content .left .box {
    display: none;
  }
  .home-title h3 {
    font-size: 38px;
  }
  #index-body .about {
    padding: 65px 0;
  }
  #index-body .product {
    padding: 85px 0 0;
  }
  #index-body .userinfo,
  #index-body .other {
    display: none;
  }
  #index-body .news {
    padding: 0 0 80px;
  }
  #footer .footer-t .footer-t-gird .t-list.link {
    display: none;
  }
  #footer .footer-t .footer-t-gird .logo.t-list {
    max-width: 100%;
    text-align: center;
  }
  #footer .footer-t .footer-t-gird .logo.t-list .f-logo {
    margin: 0 auto;
  }
  #footer .footer-t .footer-t-gird .contact.t-list {
    max-width: 100%;
    margin-bottom: 60px;
  }
  #footer {
    padding: 65px 0;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .content .left h3 {
    font-size: 24px;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  #banner .banner-content ul li .content {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -moz-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
  }
  #index-body .about .about-content .about-b ul li {
    max-width: 100%;
  }
}

























/*inner-page*/
.inner-page .m-page {
  text-align: center;
  float: none;
  margin: 0px -5px 0px;
}

.inner-page .m-page a {
  display: inline-block;
  text-align: center;
  width: 60px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  border-radius: 100%;
  border: 1px solid #cccccc;
  color: #111;
  font-family: 'Baskerville-Bold';
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.inner-page .m-page span {
  background: #a68055 none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  text-align: center;
  width: 60px;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  border-radius: 100%;
  font-family: 'Baskerville-Bold';
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 5px;
}

.inner-page .m-page a:hover {
  background: #a68055 none repeat scroll 0 0;
  color: #fff;
}

.inner-page h3 {
  font-size: 52px;
  color: #222;
  line-height: 1.2;
  font-family: 'Baskerville-Bold';
  font-family: 'Baskerville-Bold';
  /*text-transform: uppercase;*/
}

.inner-page img {
  width: auto;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}

.inner-page .side-title {
  /*padding: 85px 0 65px;*/
}

.inner-page .side-title h4 {
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  /*padding-left: 36px;*/
  font-family: 'Baskerville-Bold';
}

.inner-page .side-title .singletit {
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  color: #222;
  padding-left: 36px;
  font-family: 'Baskerville-Bold';
}

.inner-page .side-list {
  padding-top: 0px;
}

.inner-page .side-list .side-nav {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.inner-page .side-list .side-nav>li {
  padding: 0 10px;
  border-right: 1px solid #bfbfbf;
}

.inner-page .side-list .side-nav>li.active>a {
  color: #222;
}

.inner-page .side-list .side-nav>li.active>a:after {
  width: 100%;
  background: #222;
}

.inner-page .side-list .side-nav>li>a {
  display: block;
  font-size: 20px;
  color: #222;
  line-height: 2;
  /*text-transform: capitalize;*/
  font-weight: normal;
  position: relative;
}

.inner-page .side-list .side-nav>li>a:hover::after {
  width: 100%;
}

.inner-page .side-list .side-nav>li>a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #222;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.about-page {
  padding-top: 120px;
  padding-left: 0;
  /*background: url(../images/about-1-bg.png) no-repeat 90px 200px;*/
}

.about-page .more a {
  display: flex;
  margin-top: 35px;
  align-items: center;
  font-size: 20px;
  line-height: 36px;
  color: #222;
  font-family: 'Baskerville-Bold';
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  font-weight: normal;
}

.about-page .more a span {
  display: inline-block;
  margin-left: 30px;
  width: 78px;
  height: 78px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  background: url(../images/about-right.png) no-repeat;
}

.about-page .more a span:hover {
  background: url(../images/right-hid.png) no-repeat;
}

.about-page .more a img {}

.about-page .about-1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 90px;
}

.about-page .about-1 .left {
  width: 40%;
  padding-right: 45px;
}

.about-page .about-1 .left h3 {
  margin-bottom: 25px;
}

.about-page .about-1 .left h3 span {
  display: block;
  font-size: 47px;
}

.about-page .about-1 .left p {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
  font-weight: normal;
}

.about-page .about-1 .left .more {
  margin-top: 20px;
}

.about-page .about-1 .right {
  width: 60%;
  overflow: hidden;
}

.about-page .about-1 .right .about-1-img {
  overflow: hidden;
  position: relative;
}

.about-page .about-1 .right .about-1-img .play{
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  text-align: center;
  line-height: 80px;
}
.about-page .about-1 .right .about-1-img .play .cont{
  border-radius: 50%;
  background: #fff;
  color: #000;
  position: relative;
  z-index: 2;
  font-size: 20px;
  cursor: pointer;
}
.about-page .about-1 .right .about-1-img .play .ling{
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  animation: ks 3s linear infinite;
}
.about-page .about-1 .right .about-1-img .play .ling:first-child{
  animation-delay: -1.5s;
}

.about-page .about-2 {
  padding: 150px 0 120px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.about-page .about-2 .left .left-box {
  position: relative;
}

.about-page .about-2 .left .left-box::after {
  width: 730px;
  height: 730px;
  border-radius: 100%;
  z-index: -1;
  position: absolute;
  top: -180px;
  left: 90px;
  border: 1px solid #cbcbcb;
  content: "";
  -webkit-animation: kz 4s linear infinite;
  -o-animation: kz 4s linear infinite;
  -ms-animation: kz 4s linear infinite;
  -moz-animation: kz 4s linear infinite;
  animation: kz 4s linear infinite;
}

.about-page .about-2 .right {
  width: 62%;
  padding: 0 180px;
}

.about-page .about-2 .right h3 {
  margin-bottom: 55px;
}

.about-page .about-2 .right p {
  font-size: 18px;
  line-height: 32px;
  color: #000;
  font-weight: normal;
}

.about-page .about-2 .right .more {
  margin-top: 65px;
}

.about-page .about-3 {
  overflow: hidden;
}

.about-page .about-3 .about-3-img img {
  width: 100%;
}

.about-page .about-3 .about-3-img {
  position: relative;
  max-height: 420px;
}

.about-page .about-3 .about-3-img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-page .about-3 .about-3-img .content {
  position: absolute;
  z-index: 2;
  text-align: left;
  left: 50%;
  top:50%;
  transform: translate(-50%,-50%);
}
.about-page .about-3 .about-3-img .content p{
  max-width: 860px;
}
.about-page .about-3 .about-3-img img{
  width: 100%;
  height: 100%;
  background-size: cover;
}

.about-page .about-3 .about-3-img .content h6 {
  font-size: 60px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Baskerville-Bold';
}

.about-page .about-3 .about-3-img .content h5 {
  font-size: 32px;
  color: #fff;
  line-height: 1.4;
  padding-bottom: 20px;

  font-weight: normal;
}

.about-page .about-3 .about-3-img .content p {
  font-size: 18px;
  color: #fff;
  line-height: 32px;
  font-weight: normal;
}

.about-page .about-3 .about-3-img .content .more {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.about-page .about-3 .about-3-img .content .more a {
  font-size: 18px;
  color: #fff;
  line-height: 1;
  font-weight: normal;
  display: none;
}

.about-page .about-3 .about-3-img .content .more a span {
  background: url(../images/about-more-1.png) no-repeat;
  margin-left: 0;
  margin-right: 55px;
}

.about-page .about-3 .about-3-img .content .more a span:hover {
  background: url(../images/right-hid.png) no-repeat
}
@media screen and (max-width:1000px) {
  .about-page .about-3 .about-3-img .content h6 {
    font-size: 40px;
  }
}
#advantages.init-2 {
  padding-top: 60px;
}

#advantages.init-2 h2 {
  font-size: 90px;
  line-height: 1;
  font-family: 'Baskerville-Bold';
  border-bottom: 1px solid #cccccc;
  padding-bottom: 30px;
  color: #222;
}

#advantages.init-2 .content .top {
  display: block;
  padding-left: 100px;
}

#advantages.init-2 .content .center {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-bottom: 60px;
  position: relative;
  padding-top: 50px;
}

#advantages.init-2 .content .center .left {
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 103px;
}

#advantages.init-2 .content .center .left h4 {
  font-size: 30px;
  line-height: 1.6;
  color: #222;
  font-weight: normal;
  font-family: 'Baskerville-Bold';
  text-transform: uppercase;
}

#advantages.init-2 .content .center .right {
  width: 100%;
  padding: 50px 100px 0;
  z-index: 3;
  position: relative;
}

#advantages.init-2 .content .center .right ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

#advantages.init-2 .content .center .right ul li {
  /*width: 25%;*/
}

#advantages.init-2 .content .center .right ul li span {
  display: flex;
  align-items: flex-start;
  font-size: 26px;
  font-weight: normal;
  line-height: 1;
  line-height: inherit;
  color: #222;
}

#advantages.init-2 .content .center .right ul li span em {
  font-size: 100px;
  line-height: 1;
  color: #222;
  font-family: 'Baskerville-Bold';
  font-family: 'Baskerville-Bold';
}

#advantages.init-2 .content .center .right ul li p {
  max-width: 230px;
  font-size: 16px;
  line-height: 30px;
  color: #222;
  font-weight: normal;
  margin-top: 12px;
}

#advantages.init-2 .content .center .right ul .lifist {
  margin-bottom: 50px;
}

#advantages.init-2 .content .center .xian {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}

#advantages.init-2 .content .center .xian .xianBox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 50%;
  bottom: 0;
}

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

.about-page .about-4 .top {
  padding: 0 10px 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
}

.about-page .about-4 .top h4 {
  font-size: 60px;
  color: #000000;
  line-height: 1;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
  text-transform: uppercase;
}

.about-page .about-4 .exhibitionBox {
  padding-top: 150px;
  position: relative;
}

.about-page .about-4 .exhibitionBox .swiper-slide .exhibition-img {
  display: inline-block;
}

.about-page .about-4 .exhibitionBox .navigation {
  position: absolute;
  top: 30px;
  right: 0;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  z-index: 10;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-prev,
.about-page .about-4 .exhibitionBox .navigation .swiper-button-next {
  width: 78px;
  height: 78px;
  position: relative;
  margin-top: 0;
  top: 0;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-prev:focus,
.about-page .about-4 .exhibitionBox .navigation .swiper-button-next:focus {
  display: none;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-prev:root {
  --swiper-navigation-size: 0;
  --swiper-theme-color: #fff;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-prev {
  background: url(../images/about-left.png) no-repeat center center;
  left: 0;
  margin-right: 30px;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-next:root {
  --swiper-navigation-size: 0;
  --swiper-theme-color: #fff;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-prev:hover {
  background: url(../images/left-had.png) no-repeat center center;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-next {
  background: url(../images/about-right.png) no-repeat center center;
  right: 0;
}

.about-page .about-4 .exhibitionBox .navigation .swiper-button-next:hover {
  background: url(../images/right-hid.png) no-repeat center center;
}

.about-page .about-5 {
  padding: 50px 80px 125px 90px;
}

.about-page .about-5 .partnerBox .swiper-slide {
  cursor: pointer;
}

.about-page .about-5 .partnerBox .swiper-slide:hover img {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
  filter: grayscale(0%);
  filter: gray;
}

.about-page .about-5 .partnerBox .swiper-slide img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}

.project-page {
  padding: 90px;
}


.project-page .project-list .list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.project-page .project-list .list li {
  width: 23%;
  margin-bottom: 35px;
  padding: 0 0;
}

.project-page.project-content .project-list .list li:hover a:after {
  opacity: 0;
}

.project-page .project-list .list li{
  padding: 0 30px;
}

.project-page .project-list .list li img {
  width: 80%;
}

.project-page .project-list .list li>a {
  display: block;
  position: relative;
}

.project-page.project-content .project-list .list li>a:after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.project-page.gallery-page .project-list .list {
  justify-content: inherit;
}

.project-page.gallery-page .project-list .list li {
  border: 0px solid #aaa;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.project-page.gallery-page .project-list .list li a{
  transition: all .5s;
}

.project-page.gallery-page .project-list .list li .text{
  display: block;
  margin-top: 10px;
  padding: 0 16px;
}



.project-page.gallery-page .project-list .list li>a:after {
  background: rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.project-page.environment-page .project-list .list li {
  width: 49%;
}

.project-page.equipment-page .project-list .list li {
  width: 32%;
}

.project-page.gallery-page .project-list .list li>a .content {
  background: rgba(0, 0, 0, 0);
}

.project-page .project-list .list li>a .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 30px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.5);
}

.project-page .project-list .list li>a .content .title {
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
}

.project-page .project-list .list li>a .content h4 {
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'Baskerville-Bold';
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.project-page .project-list .list li>a .content h4 span {
  display: block;
  font-weight: 18px;
  margin-top: 15px;
}

.project-page.gallery-page .project-list .list li {
  width: 25%;
  padding: 0 10px;
}

.project-page.gallery-page .project-list .list li>a .content h4 {
  font-size: 20px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.project-page.gallery-page .project-list .list li:hover a .content h4 {
  opacity: 0;
}
.download-page .project-list .list li .download_btn{
  padding: 10px;
  text-transform: uppercase;
  margin-top: 20px;
  background: #a68055;
  color: #fff;
  text-align: center;
  font-family: 'Baskerville-Bold';
  font-size: 16px;
  transition: all .5s;
}
.download-page .project-list .list li .download_btn:hover{
  background: #000;
}

.project2-page{
  padding-bottom: 80px;
}
.project2-page .tips_title{
  font-size: 50px;
  font-family: 'Baskerville-Bold';
  text-align: center;
  margin-top: 80px;
}
.project2-page .content{
  margin-top: 60px;
  padding: 50px;
  background-color: #f8f8f8;
  border-radius: 24px;
}
.project2-page .content .content_item{
  margin-top: 100px;
}
.project2-page .content .content_item:first-child{
  margin-top: 0;
}
.project2-page .content .content_item .tips{
    display: block;
    font-size: 32px;
    font-family: 'Baskerville-Bold';
    color: #333;
    line-height: 32px;
    border-bottom: 1px solid #b2a495;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.project2-page .content .content_item .content_c{
  margin: 0 -10px;
}
.project2-page .content .content_item .content_c > p{
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: 0;
}
.project2-page .content .content_item .content_c .item_c{
  padding: 0 10px;
  margin-top: 20px;
}
.project2-page .content .content_item .content_c .item_c a{
  display: block;
}
.project2-page .content .content_item .content_c .item_c .img img{
  width: 100%;
}
.project2-page .content .content_item .content_c .item_c .text{
  margin-top: 10px;
  font-size: 16px;
}
.project2-page .content .content_item .content_c .item_c a:hover{
  color: #a68055;
}

.project3-page{
  padding: 80px 0;
}
.project3-page .cat_cont{
  margin-bottom: 30px;
}
.project3-page .cat_cont_1{
  margin-bottom: 20px;
}
.project3-page .project_cat_cont{
  position: sticky;
  top: 126px;
  background: #fff;
  z-index: 2;
}

.project3-page .cat_cont a{
  padding: 6px 16px;
  border: 1px solid #ccc;
  font-size: 16px;
  margin: 5px;
}
.project3-page .cat_cont a:hover,
.project3-page .cat_cont a.active{
  background: #a68055;
  color: #fff;
  border: 1px solid #a68055;
}
.project3-page .cat_cont_content_2{
  text-align: center;
  margin-bottom: 20px;
}
.project3-page .cat_cont_content_2 > .list{
  display: none;
}
.project3-page .cat_cont_content_2 .cat_cont{
  display: inline-block;
  margin: 0;
}
.project3-page .cat_cont_content_2 .cat_cont a{
  display: inline-block;
  margin: 5px;
}


.project3-page .cat_cont_content_3{
  text-align: center;
  margin-bottom: 20px;
}
.project3-page .cat_cont_content_3 > .list_3_1{
  display: none;
}
.project3-page .cat_cont_content_3 > .list_3_1 > .list{
  display: none;
}
.project3-page .cat_cont_content_3 .cat_cont{
  display: inline-block;
  margin: 0;
}
.project3-page .cat_cont_content_3 .cat_cont a{
  display: inline-block;
  margin: 5px;
}

.project3-page .tips_title{
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  margin-top: 100px;
}
.project3-page .container .img{
  max-width: 1000px;
  margin: auto;
}
.project3-page .container .img img{
  width: 100%;
  border: 1px solid #eee;
}

.project3-page .container .content{
  margin-top: 60px;
  position: relative;
  padding: 0 50px;
}
.project3-page .container .content .btn{
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 33%;
  transform: translateY(50%);
}
.project3-page .container .content .prev{
  left: 0;
}
.project3-page .container .content .btn:hover{
  background: #000;
  color: #fff;
}
.project3-page .container .content a{
  display: block;
}
.project3-page .container .content .swiper .title:hover{
  color: #a68055;
}


.prodet-page .serviceBox .swiper-container{
  overflow: hidden;
}
.prodet-page .serviceBox .swiper-container .swiper-slide img{
  width: 100%;
}

.news-page {
  padding: 120px 120px 20px 90px;
}

.news-page .news-1 {
  /*background: url(../images/news-bg.png) no-repeat left top;*/
}

.news-page .news-list .list {
  border-top: 5px solid #000000;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.news-page .news-list .list li {
  width: 50%;
  padding: 65px 50px;
  position: relative;
}

.news-page .news-list .list li:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 93%;
  height: 1px;
  background: #c7c7c9;
}

.news-page .news-list .list li:nth-child(even):after {
  position: absolute;
  content: "";
  left: auto;
  right: 0;
  bottom: 0;
  width: 94%;
  height: 1px;
  background: #c7c7c9;
}

.news-page .news-list .list li>a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.news-page .news-list .list li>a img{
  max-width: 300px;
}

.news-page .news-list .list li>a .right .content .time {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.news-page .news-list .list li>a .right .content .time h2 {
  font-size: 70px;
  line-height: 1;
  color: #c6c6c6;
  text-transform: capitalize;
  font-family: 'Baskerville-Bold';
  margin-right: 10px;
}

.news-page .news-list .list li>a .right .content .time .time-box h4 {
  font-size: 30px;
  font-family: 'Baskerville-Bold';
  line-height: 1;
  color: #222;
  text-transform: capitalize;
  font-family: 'Baskerville-Bold';
  margin-bottom: 0px;
  height: auto;
}

.news-page .news-list .list li>a .right .content h5 {
  font-size: 20px;
  font-family: 'Baskerville-Bold';
  line-height: 36px;
  color: #222;
  text-transform: capitalize;
  font-family: 'Baskerville-Bold';
}

.news-page .news-list .list li>a .right .content h6 {
  font-size: 14px;
  font-family: 'Baskerville-Bold';
  line-height: 2;
  color: #a3a3a3;
  text-transform: capitalize;
  font-weight: normal;
  margin-bottom: 20px;
}

.news-page .news-list .list li>a .right .content .h4news {
  font-size: 20px;
  line-height: 2;
  font-family: 'Baskerville-Bold';
  min-height: 2.8em;
  color: #222;
  text-transform: capitalize;
  font-weight: normal;
  margin-bottom: 20px;
}

.news-page .news-list .list li>a .right .content p {
  font-size: 16px;
  color: #222;
  line-height: 2;
  font-weight: normal;
  margin-bottom: 30px;
}

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

.contact-page .contact-1 {
  background: url(../images/contact-bg.png) no-repeat 90px top;
  padding: 85px 120px 65px 90px;
  background-size: contain;
  background-position: center center;
}

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

.contact-page .contact-2 ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.contact-page .contact-2 ul li {
  width: 33.3333%;
  padding-left: 40px;
}

.contact-page .contact-2 ul li:hover .content h6 {
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}

.contact-page .contact-2 ul li .content {
  display: flex;
  align-items: center;
}

.contact-page .contact-2 ul li .content h6 {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 1px solid #aaaaaa;
  display: flex;
  align-items: center;
  margin-right: 20px;
  justify-content: center;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.contact-page .contact-2 ul li .content h6 i {
  font-size: 20px;
  color: #222;
}

.contact-page .contact-2 ul li .content p {
  font-size: 18px;
  color: #222;
  line-height: 32px;
  font-weight: normal;
  max-width: 330px;
}

.contact-page .contact-2 ul .add {
  padding-left: 0;
}

.contact-page .contact-2 ul .add .content {
  align-items: center;
}

.contact-page .contact-3 {
  padding: 0 120px 0 90px;
}

.contact-page .contact-3 ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.contact-page .contact-3 ul li {
  width: 33.3333%;
  padding-left: 125px;
  position: relative;
  margin-bottom: 45px;
}

.contact-page .contact-3 ul li img {
  width: 160px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 23px;
  box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-3 ul li .content {
  background: #f8f8f8;
  padding: 35px 45px;
}

.contact-page .contact-3 ul li .content .top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #b3b3b3;
}

.contact-page .contact-3 ul li .content .top .fa {
  font-size: 24px;
  color: #000000;
  line-height: 1;
  display: inline-block;
  margin-right: 18px;
}

.contact-page .contact-3 ul li .content .top h5 {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
  max-width: 230px;
  padding-bottom: 10px;
}

.contact-page .contact-3 ul li .content .bottom {
  max-width: 230px;
  margin: 0 0 0 auto;
  margin-top: 10px;
  font-size: 14px;
  color: #000000;
  line-height: 1;
  font-weight: normal;
}

.contact-page .contact-3 ul li .content .bottom>div {
  margin-bottom: 15px;
}

.contact-page .contact-3 ul li .content .bottom a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}

.contact-page .contact-3 ul li .content .bottom p {
  font-size: 14px;
  color: #000000;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 15px;
}

.contact-page .contact-4 {
  padding: 0 120px 20px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-page .contact-4 .left {
  max-width: 380px;
  margin-left: 35px;
  padding-top: 40px;
}

.contact-page .contact-4 .left h4 {
  font-size: 48px;
  line-height: 1;
  color: #222;
  font-family: 'Baskerville-Bold';
  margin-bottom: 10px;
}

.contact-page .contact-4 .left p {
  font-size: 20px;
  line-height: 36px;
  color: #222;
  font-weight: normal;
  margin-top: 20px;
}

.contact-page .contact-4 .left ul{
  margin-top: 30px;
}
.contact-page .contact-4 .left ul li{
  margin-top: 20px;
}
.contact-page .contact-4 .left ul li .content{
  display: flex;
  align-items: center;
}
.contact-page .contact-4 .left ul li h6 {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 1px solid #aaa;
    display: flex;
    align-items: center;
    margin-right: 20px;
    justify-content: center;
    transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}
.contact-page .contact-4 .left ul li h6 i {
    font-size: 20px;
    color: #222;
}
.contact-page .contact-4 .left ul li p {
    margin-top: 0;
    font-size: 18px;
    color: #222;
    line-height: 32px;
    font-weight: 400;
    width: calc(100% - 80px);
}

.contact-page .contact-4 .right {
  width: 63%;
}

.contact-page .contact-4 .right form{
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  padding: 40px 90px;
  width: 100%;
}

.contact-page .contact-4 .right form .tips2 {
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 22px;
    font-size: 30px;
    font-family: 'Baskerville-Bold';
}

.contact-page .contact-4 .right form .tips {
    margin-top: 16px;
    text-align: left;
    font-size: 14px;
}

.contact-page .contact-4 .right form .list input, 
.contact-page .contact-4 .right form .list textarea, 
.contact-page .contact-4 .right form .list .input_cont {
    width: 100%;
    margin-top: 4px;
    padding: 8px 20px;
    border: 1px solid #898989;
    font-size: 14px;
}
.contact-page .contact-4 .right form .phone .intl-tel-input.inside .flag-dropdown{
  left: 16px;
}
.contact-page .contact-4 .right form .list .submit {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 36px;
    background-color: #a68055;
    text-transform: uppercase;
    font-family: 'Baskerville-Bold';
    cursor: pointer;
    transition: all .5s;
}
.contact-page .contact-4 .right form .list .submit:hover{
  background: #000;
}
.contact-page .contact-4 .right form .list .submit img, 
.contact-page .contact-4 .right form .list .submit span {
    vertical-align: middle;
}
.contact-page .contact-4 .right form .list .submit:hover img{
  transform: rotate(46deg);
}
.contact-page .contact-4 .right form .list .submit span {
    margin-left: 14px;
    color: #fff;
}


.product-page {
  padding: 80px 0;
}
.product-page .sidebox .sideleft {
  width: 20%;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}
.product-page .sidebox .sideleft .result {
  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: 50px;
}
.product-page .sidebox .sideleft .result p,
.product-page .sidebox .sideleft .result span {
  font-size: 20px;
  line-height: 1.5;
  color: #1C1C1C;
}
.product-page .sidebox .sideleft .result p {
  margin-right: 15px;
}
.product-page .sidebox .sideleft .search{
  margin-bottom: 30px;
}
.product-page .sidebox .sideleft .search form{
  width: 70%;
  position: relative;
}
.product-page .sidebox .sideleft .search form input[type="text"]{
  width: 100%;
  border: 0;
  background: transparent;
  border-bottom: 1px solid #000;
  font-size: 16px;
  padding-right: 30px;
}
.product-page .sidebox .sideleft .search form input[type="submit"]{
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 20px;
  height: 20px;
  border: 0;
  background: url(../images/icon-search.png) no-repeat;
}
.product-page .sidebox .sideleft .classify p {
  font-size: 30px;
  line-height: 2;
  font-family: 'Baskerville-Bold';
  color: #3B3B3B;
  margin-bottom: 10px;
      border-bottom: 1px solid;
    margin-right: 50px;
}
.product-page .sidebox .sideleft .classify ul li {
  margin-bottom: 15px;
  transition: .5s;
}
.product-page .sidebox .sideleft .classify ul li a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 24px;
  line-height: 2;
  display: block;
  position: relative;
  color: #000;
  font-family: 'Baskerville';
}
.product-page .sidebox .sideleft .classify ul li a.active,
.product-page .sidebox .sideleft .classify ul li a:hover{
  color: #a68055;
}

.product-page .sidebox .sideleft .classify ul li:last-child {
  margin-bottom: 0;
}
.product-page .sidebox .sideleft .classify ul li.active ul{
  display: block;
} 
.product-page .sidebox .sideleft .classify ul li ul {
  display: none;
  padding-left: 10px;
  margin-top: 10px;
}
.product-page .sidebox .sideleft .classify ul li ul li{
  margin-bottom: 10px;
}
.product-page .sidebox .sideleft .classify ul li ul li a{
  color: #999;
  font-size: 14px;
  font-weight: 400;
}
.product-page .sidebox .sideleft .classify ul li ul li a:hover,
.product-page .sidebox .sideleft .classify ul li ul li a.active{
  color: #000;
}
.product-page .sidebox .sideright .top{
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.product-page .sidebox .sideright .top .left{
  max-width: calc(100% - 160px);
}
.product-page .sidebox .sideright .top .right{
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-page .sidebox .sideright .top .right .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #bdbbbb;
  transition: all .5s;
  margin-left: 10px;
  cursor: pointer;
}
.product-page .sidebox .sideright .top .right .btn:hover,
.product-page .sidebox .sideright .top .right .btn.active{
  background: #a68055;
}
.product-page .sidebox .sideright .top .right .btn img{
  width: 50%;
}

.product-page .sidebox .sideright .top h1{
  font-size: 28px;
  line-height: 2;
  margin-bottom: 20px;
  font-family: 'Baskerville-Bold';
}
.product-page .sidebox .sideright .top .con{
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 4px;
}
.product-page .sidebox .sideright {
  width: 80%;
}
.product-page .sidebox .sideright ul {
  margin: 0 -50px -35px 0;
}
.product-page .sidebox .sideright ul li {
  padding: 0 50px 35px 0;
}
.product-page .sidebox .sideright ul li .img-box {
  display: block;
  border: 1px solid #eee;
}
.product-page .sidebox .sideright ul li .img-box .i1 {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sidebox .sideright ul li .img-box .i2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 2;
}
.product-page .sidebox .sideright ul li:hover .img-box .i2{
  opacity: 1;
}
.product-page .sidebox .sideright ul li .text {
  margin-top: 20px;
}
.product-page .sidebox .sideright ul li .text span {
  display: block;
  font-size: 16px;
  line-height: 2;
  color: #5A5959;
  margin-bottom: 2px;
  font-weight: 400;
}
.product-page .sidebox .sideright ul li .text small{
  font-size: 20px;
  line-height: 1.5;
  display: block;
}
.product-page .sidebox .sideright ul li .text .tit {
  display: block;
  font-size: 16px;
  line-height: 2;
  color: #1C1C1C;
  font-weight: 400;
}
.product-page .sidebox .sideright ul.active_list li{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
}
.product-page .sidebox .sideright ul.active_list li .img-box{
  width: 240px;
}
.product-page .sidebox .sideright ul.active_list li .text{
  width: calc(100% - 240px);
  padding-left: 40px;
}



.prodet-page {
  padding: 120px 130px 150px 90px;
}

.prodet-page h4 {
  font-size: 24px;
  color: #222;
  line-height: 44px;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
  text-transform: capitalize;
  padding: 30px 0;
}

.prodet-page .h4product {
  font-size: 24px;
  color: #222;
  line-height: 44px;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
  min-height: 5.4em;
  text-transform: capitalize;
}

.prodet-page h5 {
  font-size: 24px;
  color: #222;
  line-height: 44px;
  font-weight: normal;
  font-family: 'Baskerville-Bold';
}

.prodet-page p {
  font-size: 18px;
  color: #696969;
  line-height: 32px;
  font-weight: normal;
  /*font-family: 'Baskerville-Bold';*/
}

.prodet-page .title {
  /*padding-left: 35px;*/
  padding-bottom: 40px;
  /*border-bottom: 5px solid #222;*/
}

.prodet-page .prodet-faq li h5 {
  padding: 30px 0 30px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border-bottom: 1px solid #a3a3a3;
}

.prodet-page .prodet-faq li h5 .fa {
  font-size: 32px;
  line-height: 1;
  color: #000000;
}

.prodet-page .prodet-faq li p {
  padding: 20px 0 20px;
  display: none;
  border-bottom: 1px solid #a3a3a3;
}

.prodet-page .prodet-faq li.Scroll_Elm {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.prodet-page .prodet-faq li.Scroll_Elm.Scroll_In {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.prodet-page .prodet-1 {
  /*background: url(../images/product-bg.png) no-repeat left top;*/
}

.prodet-page .prodet-2 {
  padding: 40px 0 85px;
  border-bottom: 5px solid #000000;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.prodet-page .prodet-2 .left {
  width: 45%;
  text-align: center;
}

.prodet-page .prodet-2 .left .grayborder {
  border: 1px solid #d9d9d9;
}

.prodet-page .prodet-2 .left>a {
  display: inline-block;
  position: relative;
}

.prodet-page .prodet-2 .left .grayborder::after {
  display: none;
}

.prodet-page .prodet-2 .left>a::after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  top: 30px;
  left: 80px;
  border: 1px solid #dfdfdf;
  -webkit-animation: kz 2s linear infinite;
  -o-animation: kz 2s linear infinite;
  -ms-animation: kz 2s linear infinite;
  -moz-animation: kz 2s linear infinite;
  animation: kz 2s linear infinite;
}

.prodet-page .prodet-2 .right {
  width: 55%;
  padding-left: 60px;
  padding-top: 0px;
}

.prodet-page .prodet-2 .right h4 {
  margin-bottom: 20px;
}

.prodet-page .prodet-2 .right h1 {
  margin-bottom: 20px;
  font-size: 30px;
  color: #222;
  line-height: 2;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
  text-transform: capitalize;
}

.prodet-page .prodet-2 .right .content {
  margin-bottom: 10px;
}

.prodet-page .prodet-2 .right .content p {
  font-size: 18px;
  color: #696969;
  line-height: 2;
  font-weight: normal;
  max-width: 580px;
}

.prodet-page .prodet-2 .right ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.prodet-page .prodet-2 .right ul li {
  display: flex;
  align-items: center;
  margin-right: 60px;
}

.prodet-page .prodet-2 .right ul li a {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #222;
  line-height: 1;
  font-family: 'Baskerville-Bold';
  font-weight: normal;
}

.prodet-page .prodet-2 .right ul li img {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.prodet-page .prodet-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  flex-wrap: wrap;
}

.prodet-page .prodet-3 .right {
  padding-right: 70px;
}

.prodet-page .prodet-3 .right ul li {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 2;
  color: #222;
  font-weight: normal;
  margin-bottom: 30px;
}

.prodet-page .prodet-3 .right ul li a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}

.prodet-page .prodet-3 .right ul li:last-child {
  margin-bottom: 0;
}

.prodet-page .prodet-3 .right ul li span {
  display: inline-block;
  width: 47px;
  height: 1px;
  background: #000;
  margin-right: 15px;
}

.prodet-page .prodet-3.pd {
  padding: 0px;
}

.prodet-page .prodet-3 .prodet-4 {
  margin-top: -250px;
}

.prodet-page .prodet-4 {
  /*padding-bottom: 140px;*/
}

.prodet-page .prodet-5 {
  /*padding-bottom: 140px;*/
}

.prodet-page .prodet-5 {}

.prodet-page .prodet-5 .prodet-faq {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.prodet-page .prodet-5 .prodet-faq li {
  width: 48%;
}

.prodet-page .prodet-5 .prodet-faq li h5 {
  padding: 30px 20px 25px 35px;
}

.prodet-page .prodet-5 .prodet-faq li p {
  padding: 30px 20px 20px 35px;
}

.prodet-page .prodet-6 {
  /*padding-bottom: 140px;*/
}

.prodet-page .prodet-7 h5 {
  padding: 35px 35px 20px;
}

.prodet-page .prodet-7 p.p {
  padding: 0 35px 20px;
}

.prodet-page .prodet-7 .serviceBox {
  padding: 60px 35px 0;
}

.prodet-page .prodet-7 .serviceBox .swiper-slide:hover img {
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}

.prodet-page .prodet-7 .serviceBox .swiper-slide .top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.prodet-page .prodet-7 .serviceBox .swiper-slide .top .service-icon {
  width: 90px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
}

.prodet-page .prodet-7 .serviceBox .swiper-slide .top .service-icon img {
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}

.prodet-page .prodet-7 .serviceBox .swiper-slide p {
  line-height: 2;
}

.newdet-content {
  padding-top: 0px;
  /*padding-bottom: 120px;*/
}

.newdet-content h1 {
  font-size: 30px;
  color: #222;
  line-height: 2;
  font-family: 'Baskerville-Bold';
  text-transform: capitalize;
  font-weight: normal;
  text-align: center;
  margin-bottom: 0px;
}

.riqi {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  margin-top: 10px;
}

.newdet-content .content {
  padding: 50px 0;
  /*border-top: 3px solid #222;
    border-bottom: 3px solid #222;*/
  font-size: 18px;
  line-height: 2;
}

.newdet-content .content p {
  font-size: 16px;
  color: #222;
  line-height: 2;
  font-weight: normal;
  margin-bottom: 15px;
}

.m-link {
  padding-top: 40px;
  font-size: 16px;
  color: #222;
  line-height: 2;
  font-weight: normal;
  text-transform: uppercase;
}

.m-link a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
  display: inline;
  position: relative;
}

.m-link a:hover {
  text-decoration: underline;
}

.faq-page .prodet-4 {
  padding-top: 30px;
}

.faq-page .prodet-4 .title {
  margin-bottom: 50px;
}

.prodet-page.faq-page {
  padding: 90px 130px 50px 90px;
}

.more-link {
  display: inline-block;
  width: 78px;
  height: 78px;
  background: url(../images/about-right.png) no-repeat;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.more-link:hover {
  background: url(../images/right-hid.png) no-repeat;
}

.pdf {
  display: inline-block;
  width: 78px;
  height: 78px;
  background: url(../images/pdf.png) no-repeat;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  margin-right: 20px;
}

.pdf:hover {
  background: url(../images/pdf-black.png) no-repeat;
}

/*.contact {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url(/chinabwh/2022/02/20/contact-1.png) no-repeat;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  margin-right: 14px;
}*/

.contact:hover {
  background: url(/chinabwh/2022/02/20/contactb.png) no-repeat;
}

.dwo {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url(/chinabwh/2022/02/20/contactb.png) no-repeat;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}

.dwo:hover {
  background: url(../images/right-hid.png) no-repeat;
}

@media screen and (max-width: 1600px) {
  .about-page {
    padding-top: 170px;
    /*background: url(../images/about-1-bg.png) no-repeat 0 120px;*/
  }

  .inner-page h3 {
    font-size: 45px;
  }

  .about-page .about-1 .left h3 span {
    font-size: 30px;
  }

  .about-page .about-1 {
    padding-left: 20px;
  }

  .about-page .about-1 .left p {
    font-size: 14px;
    line-height: 2;
  }

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

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

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

  .contact-page .contact-2 {
    padding: 100px 40px;
  }

  .contact-page .contact-2 ul li {
    padding-left: 0;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 290px;
  }

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

  .contact-page .contact-3 ul li img {
    width: 100px;
  }

  .contact-page .contact-3 ul li {
    padding-left: 80px;
  }

  .contact-page .contact-2 ul li .content p {
    font-size: 14px;
  }

  .contact-page .contact-4 {
    padding: 0 40px 100px 40px;
  }

  .project2-page .tips_title{
    font-size: 50px;
  }
}

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

  .contact-page .contact-1 {
    padding: 85px 15px;
  }

  .contact-page .contact-2 {
    padding: 50px 15px;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 230px;
  }

  .contact-page .contact-3 {
    padding: 0 15px;
  }

  .contact-page .contact-3 ul li .content .top h5 {
    font-size: 15px;
  }

  .contact-page .contact-3 ul li .content {
    padding: 20px;
  }

  .contact-page .contact-4 {
    padding: 0 15px 50px 15px;
  }

  .contact-page .contact-4 .left h4 {
    font-size: 30px;
    line-height: 1.6;
  }

  .contact-page .contact-4 .left p {
    font-size: 16px;
    line-height: 2;
  }

  .product-page .sidebox .sideright ul {
    margin: 0 -30px -30px 0;
  }
  .product-page .sidebox .sideright ul li {
    padding: 0 30px 30px 0;
  }
}

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

  .about-page .about-4 .top h4 {
    font-size: 30px;
  }

  .inner-page h3 {
    font-size: 24px;
    line-height: 44px;
  }

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

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

  .news-page .news-list .list li>a .right .content {
    padding: 20px 15px;
  }

  .news-page .news-list .list li>a .right .content .h4news {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 20px;
    min-height: 0;
  }

  .news-page .news-list .list li {
    margin-bottom: 40px;
  }

  .newdet-content h1 {
    font-size: 32px;
  }

  .m-link {
    font-size: 14px;
    line-height: 2;
  }

  .project-page .project-list .list li>a .content h4 {
    bottom: 20px;
    left: 20px;
    font-size: 24px;
  }

  .project-page .project-list .list li>a .content {
    padding: 20px;
  }

  .inner-page .side-list {
    padding-top: 40px;
  }

  .project-page {
    padding: 100px 15px 0 15px;
  }

  .prodet-page {
    padding: 100px 40px;
  }

  .prodet-page h4 {
    font-size: 30px;
  }

  .prodet-page .prodet-2 .right {
    padding-left: 30px;
    padding-top: 20px;
  }

  .prodet-page .prodet-2 .right .content p {
    font-size: 16px;
  }

  .prodet-page .prodet-2 .right .content {
    margin-bottom: 40px;
  }

  .prodet-page .prodet-2 .right ul li a {
    font-size: 14px;
  }

  .prodet-page .prodet-2 .right ul li {
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .inner-page .side-list .side-nav>li>a {
    font-size: 16px;
  }

  .inner-page .side-list .side-nav>li {
    padding: 0 20px;
  }

  .inner-page .side-list .side-nav {
    margin-bottom: 10px;
  }

  .prodet-page .prodet-3 .right ul li {
    font-size: 16px;
  }

  .prodet-page .prodet-3 .left img {
    width: 400px;
  }

  .prodet-page h5 {
    font-size: 20px;
  }

  .prodet-page .prodet-faq li h5 {
    padding: 20px 0 20px;
  }

  .prodet-page .prodet-faq li p {
    padding: 20px 15px;
  }

  .prodet-page p {
    font-size: 18px;
    line-height: 1.8;
  }

  .contact-page .contact-2 ul li .content h6 {
    width: 40px;
    height: 40px;
  }

  .contact-page .contact-2 ul li .content p {
    font-size: 16px;
    max-width: 200px;
    line-height: 2;
  }

  .contact-page .contact-3 ul li {
    width: 50%;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 160px;
  }

  .contact-page .contact-4 .left {
    margin-left: 0;
  }
}


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

  #advantages.init-2 .content .center .right ul li{
    padding: 0 5px;
  }
  #advantages.init-2 .content .center .right ul li span em{
    font-size: 60px;
  }

  .about-page .about-1 .left{
    width: 100%;
  }
  .about-page .about-1 .right{
    width: 100%;
    margin-top: 20px;
  }

  .about-page .about-2 .left{
    width: 100%;
  }
  .about-page .about-2 .right{
    width: 100%;
    padding: 0 16px;
    margin-top: 20px;
  }
  .contact-page .contact-4 .left{
    width: 100%;
  }
  .contact-page .contact-4 .right{
    width: 100%;
    margin-top: 40px;
  }
  .contact-page .contact-4 .right form{
    padding: 40px 20px;
  }

  .product-page {
    padding: 60px 0;
  }
  .product-page .sidebox .sideleft {
    display: none;
  }
  .product-page .sidebox .sideright {
    width: 100%;
  }
  .product-page .sidebox .sideright .top .left{
    max-width: 100%;
  }
  .product-page .sidebox .sideright .top .right{
    display: none;
  }

  .project2-page .tips_title{
    font-size: 40px;
  }
  .project2-page .content{
    padding: 30px 16px;
  }
  .project2-page .content .content_item .content_c .item_c{
    width: 33.33%;
  }

  .project3-page .project_cat_cont{
    display: none;
  }

}

@media screen and (max-width: 700px) {
  .about-page .about-2 .left .left-box:after {
    display: none;
  }

  .about-page {
    padding-top: 80px;
  }

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

  .about-page .about-1 .left {
    width: 100%;
    padding-right: 0;
  }

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

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


  .about-page .about-2 .right h3 {
    margin-bottom: 25px;
    margin-top: 30px;
  }

  .about-page .about-4 .exhibitionBox .navigation {
    display: none;
  }

  .about-page .about-4 .exhibitionBox {
    margin-top: 30px;
  }

  .news-page {
    padding: 80px 15px;
  }

  .inner-page .side-title {
    padding: 30px 0 30px;
  }

  .inner-page .side-title h4 {
    padding-left: 0;
    text-align: center;
  }

  .inner-page .side-list {
    padding-top: 30px;
  }

  .inner-page .side-list .side-nav {
    margin-bottom: 30px;
  }

  .inner-page .side-list .side-nav>li>a {
    font-size: 18px;
  }

  .inner-page .side-list .side-nav>li {
    padding: 0 5px;
  }

  .news-page .news-list .list li>a .left {
    width: 100%;
  }

  .news-page .news-list .list li>a .right {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }

  .newdet-content h1 {
    font-size: 20px;
    line-height: 36px;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .inner-page .side-title h4 {
    font-size: 20px;
  }

  .project-page .project-list .list li {
    width: 100%;
  }

  .inner-page .side-list .side-nav {
    flex-wrap: wrap;
  }

  .inner-page .side-list .side-nav>li {
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .product-page {
    padding: 30px 0;
  }
  .product-page .sidebox .sideright ul {
    margin: 0 -15px -15px 0;
  }
  .product-page .sidebox .sideright ul li {
    padding: 0 15px 15px 0;
  }
  .product-page .sidebox .sideright ul li .text {
    margin-top: 10px;
  }
  .product-page .sidebox .sideright ul li .text .tit {
    font-size: 18px;
  }
  .product-page .sidebox .sideright ul.active_list li{
    width: 100%;
  }
  .product-page .sidebox .sideright ul.active_list li .text{
    width: 100%;
    padding-left: 0;
  }

  .prodet-page {
    padding: 80px 15px;
  }

  .prodet-page .prodet-2 {
    padding: 40px 0;
  }

  .prodet-page .prodet-2 .left {
    width: 100%;
    text-align: center;
  }

  .prodet-page .prodet-2 .right {
    padding-left: 0;
    padding-top: 30px;
    width: 100%;
  }

  .prodet-page h4 {
    font-size: 24px;
    line-height: 44px;
  }

  .prodet-page .h4product {
    font-size: 18px;
    line-height: 32px;
    min-height: 8.4em;
  }

  .prodet-page .prodet-2 .right .content p {
    font-size: 12px;
  }

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

  .prodet-page .prodet-3 .right {
    padding-right: 0;
  }

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

  .prodet-page .prodet-3 .prodet-4 {
    margin-top: 10px;
    width: 100%;
  }

  .prodet-page .prodet-faq li h5 {
    padding: 25px 0 20px;
  }

  .prodet-page h5 {
    font-size: 16px;
    line-height: 30px;
  }

  .prodet-page .prodet-faq li p {
    padding: 10px;
  }

  .prodet-page p {
    font-size: 14px;
    line-height: 2;
  }

  .prodet-page .prodet-5 .prodet-faq {
    width: 100%;
  }

  .prodet-page .prodet-5 .prodet-faq li h5 {
    padding: 25px 0 20px;
  }

  .prodet-page .prodet-5 .prodet-faq li p {
    padding: 10px;
  }

  .prodet-page .title {
    text-align: center;
    padding-left: 0;
    padding-bottom: 40px;
  }

  .prodet-page .prodet-7 h5 {
    padding: 25px 0 20px;
  }

  .prodet-page .prodet-7 p.p {
    padding: 0;
    margin: 10px;
  }

  .prodet-page .prodet-7 .serviceBox {
    padding: 60px 0 0;
  }

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

  .contact-page .contact-2 ul li {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-page .contact-2 ul li .content p {
    max-width: 220px;
  }

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

  .contact-page .contact-3 ul li img {
    left: 0;
  }

  .contact-page .contact-3 ul li .content {
    padding: 10px;
  }

  .contact-page .contact-3 ul li img {
    width: 80px;
  }

  .contact-page .contact-3 ul li .content .bottom p {
    font-size: 12px;
  }

  .contact-page .contact-3 ul li .content .top h5 {
    font-size: 14px;
  }

  .contact-page .contact-4 {
    padding: 30px 15px;
  }

  .contact-page .contact-4 .left {
    padding-top: 0;
  }

  .contact-page .contact-4 .right {
    width: 100%;
    margin-top: 30px;
  }


  .prodet-page.faq-page {
    padding: 80px 15px 50px;
  }
  .news-page .news-list .list li {
    width: 100%;
    padding: 0;
  }

  .inner-page .side-title {
    display: none;
  }

  .prodet-page .prodet-5 .prodet-faq li {
    width: 100%;
  }

  .about-page .about-3 .about-3-img .content h6 {
    font-size: 24px;
  }

  .about-page .about-3 .about-3-img .content h5 {
    display: none;
  }

  .about-page .about-3 .about-3-img .content {
    max-width: 100%;
    margin-left: 0;
    padding: 40px 20px;
  }

  .about-page .about-3 .about-3-img .content .more a span {
    margin-right: 15px;
  }

  .about-page .about-3 .about-3-img .content .more a span {
    background-size: 100% 100%;
    width: 48px;
    height: 48px;
  }
  .about-page .about-3 .about-3-img img{
    height: 240px;
  }
  .about-page .about-3 .about-3-img .content .more {
    margin-top: 10px;
  }

  #advantages.init-2 {
    padding-top: 50px;
  }

  #advantages.init-2 .content .top {
    padding-left: 20px;
  }

  #advantages.init-2 h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  #advantages.init-2 .content .center {
    padding: 50px 15px;
  }

  #advantages.init-2 .content .center .left {
    width: 100%;
    padding-left: 0;
  }

  #advantages.init-2 .content .center .right {
    width: 100%;
    padding: 30px 0;
  }

  #advantages.init-2 .content .center .right ul li {
    width: 100%;
  }

  #advantages.init-2 .content .center .right ul li span em {
    font-size: 50px;
  }

  #advantages.init-2 .content .center .right ul li p {
    max-width: 100%;
  }

  #advantages.init-2 .content .center .right ul li {
    margin-bottom: 50px;
  }

  #advantages.init-2 .content .center .xian .xianBox {
    display: none;
  }

  .project-page.gallery-page .project-list .list li {
    width: 49%;
  }

  .project-page.environment-page .project-list .list li {
    width: 100%;
  }

  .project-page .project-list .list li>a .content h4 {
    font-size: 14px;
    font-family: 'Baskerville-Bold';
  }

  #advantages.init-2 .content .center .right ul li span {
    float: left;
    width: 40%;
  }

  #advantages.init-2 .content .center .right ul li span em {
    font-size: 36px;
    line-height: 1.2;
  }

  #advantages.init-2 .content .center .right ul li p {
    float: left;
    width: 58%;
    margin-top: -10px;
  }

  .about-page .about-4 {
    padding-top: 0;
  }

  .about-page .about-4 .exhibitionBox {
    padding-top: 0;
  }

  .about-page .about-5 {
    padding-bottom: 0;
  }

  .inner-page .side-list .side-nav,
  .faq-page .prodet-4 .title {
    display: none;
  }

  .prodet-page {
    padding-top: 40px;
  }

  .project-page {
    padding: 20px 15px 0;
  }

  .inner-page .m-page {
    margin-top: 20px;
  }

  .prodet-page.faq-page {
    padding: 20px 15px 50px;
  }

  .prodet-page .prodet-4 {
    padding-bottom: 40px;
  }

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

  .newdet-content {
    padding-bottom: 40px;
  }

}

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

  .mb-abst,
  #mb-footer {
    display: none !important;
  }
}

@media screen and (max-width:700px) {
  #mb-footer {
    display: block !important;
    padding: 35px 0 90px;
    background: #222222;
  }

  #mb-footer .f-top {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid #303030;
    padding-bottom: 25px;
    text-align: center;
  }

  #mb-footer .f-top img {
    width: auto;
    height: auto;
    max-width: 91px;
  }

  #mb-footer .f-top p {
    color: #bbbbbb;
    font-size: 12px;
    margin: 12px 0 15px;
  }

  #mb-footer .f-top .f-social a {
    margin: 0 6px;
    font-size: 12px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 1px solid #bbbbbb;
    color: #fff;
  }

  #mb-footer .f-copyright {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #303030;
  }

  #mb-footer .f-copyright p {
    color: #bbbbbb;
    font-size: 14px;
    transform: translate(0, 0) rotate(0) scale(0.8, 0.8) skew(0, 0) rotateX(0) rotateY(0);
    -webkit-transform: translate(0, 0) rotate(0) scale(0.8, 0.8) skew(0, 0) rotateX(0) rotateY(0);
    -moz-transform: translate(0, 0) rotate(0) scale(0.8, 0.8) skew(0, 0) rotateX(0) rotateY(0);
    -ms-transform: translate(0, 0) rotate(0) scale(0.8, 0.8) skew(0, 0) rotateX(0) rotateY(0);
    -o-transform: translate(0, 0) rotate(0) scale(0.8, 0.8) skew(0, 0) rotateX(0) rotateY(0);
  }

  #mb-footer .f-copyright a {
    display: inline-block;
    margin-top: 5px;
  }

  #mb-footer .f-copyright a img {
    max-height: 12px;
    width: auto;
  }

  .f-tool {
    padding-top: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 46px;
    background: #222222;
    left: 0;
    bottom: 0;
    z-index: 1001;
  }

  .f-tool a {
    float: left;
    width: 25%;
  }

  .f-tool a i,
  .f-tool a span {
    display: block;
    color: #dddddd;
    margin-top: 2px;
  }

  .f-tool a span {
    font-size: 14px;
  }

  .about-page {
    background: url(/template/en/images/about-1-bg.png) no-repeat 50px 80px;
    background-size: 300px;
  }

  #advantages.init-2 .content .center .right ul li {
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }

  .prodet-page .prodet-2 .left>a:after {
    display: none;
  }
}

@media screen and (max-width:500px) {
  .product-page .sidebox .sideright .top h1{
    font-size: 24px;
  }
  .project2-page .tips_title{
    font-size: 24px;
    margin-top: 40px;
  }
  .project2-page .content{
    margin-top: 30px;
  }
  .project2-page .content .content_item .tips{
    font-size: 20px;
    padding-bottom: 6px;
    margin-bottom: 0;
  }
  
  .project2-page .content .content_item .content_c .item_c{
    width: 50%;
  }
  .project3-page .container .content{
    padding: 0 30px;
    margin-top: 30px;
  }
  .project3-page .container .content .btn{
    width: 28px;
    height: 28px;
    line-height: 24px;
    
  }
  .project3-page .tips_title{
    font-size: 24px;
    margin-top: 60px;
  }

  .project3-page .cat_cont{
    margin-bottom: 40px;
  }
  
}

.button-group .button {
  background-color: #222 !important;
}

#mobile #menu-on .txt {
  position: absolute;
  top: 50%;
  left: 115%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #a68055;
  font-family: 'Baskerville-Bold';
}

.knowledgetext {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
  color: #222;
  font-weight: normal;
}

.hangyezhishi {
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
  color: #222;
  font-weight: normal;
}

.prodet2-page .form ul {
  margin: -17px;
}

.prodet2-page .form ul li {
  padding: 17px;
}


.prodet2-page .form ul li input,
.prodet2-page .form ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  font-size: 18px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: left;
}

.prodet2-page .form ul .phone{
  width: 100%;
}

.prodet2-page .form ul .phone .intl-tel-input .flag-dropdown{
  left: 20px;
}
.prodet2-page .form ul .phone input{
  padding-left: 70px;
}

.prodet2-page .form ul li input:focus,
.prodet2-page .form ul li textarea:focus {
  border-color: #a68055;
  background: rgba(130, 216, 205, 0.03);
}

.prodet2-page .form ul li input::-webkit-input-placeholder,
.prodet2-page .form ul li textarea::-webkit-input-placeholder {
  color: #898989;
}

.prodet2-page .form ul li input:-moz-placeholder,
.prodet2-page .form ul li textarea:-moz-placeholder {
  color: #898989;
}

.prodet2-page .form ul li input::-moz-placeholder,
.prodet2-page .form ul li textarea::-moz-placeholder {
  color: #898989;
}

.prodet2-page .form ul li input:-ms-input-placeholder,
.prodet2-page .form ul li textarea:-ms-input-placeholder {
  color: #898989;
}

.prodet2-page .form ul li input::placeholder,
.prodet2-page .form ul li textarea::placeholder {
  color: #898989;
}

.prodet2-page .form ul li.wid-100 {
  width: 100%;
}

.prodet2-page .form ul li textarea {
  height: 210px;
}

.prodet2-page .form ul li input[type="submit"] {
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 5px;
  background: #000;
  background: #a68055;
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  /*font-family: 'Baskerville-Bold';*/
  width: auto;
  border: none;
}

.prodet2-page .form ul li input[type="submit"]:hover {
  opacity: .7;
}

.inner-banner {
  padding: 50px 0 50px 0;
  border-bottom: 1px solid #373330;
  position: relative;
  margin-top: 140px;
}

.inner-banner .container3 {
  padding: 0 4.948%;
}

.inner-banner .container3 .grid-box .mbx {
  font-size: 18px;
  line-height: 2;
  margin-top: 10px;
}

.inner-banner:after {
  content: '';
  width: 0;
  height: 1px;
  top: 100%;
  background: #a68055;
  z-index: 1;
  position: absolute;
  -webkit-animation: wd 10s linear forwards;
  -moz-animation: wd 10s linear forwards;
  animation: wd 10s linear forwards;
}

.inner-banner .left {
  vertical-align: middle;
}

.inner-banner .left h2 {
  line-height: 2;
  font-size: 36px;
  font-family: 'Baskerville-Bold';
  color: #373330;
}

.inner-banner .left h2.pro{
  font-size: 28px;
}

.inner-banner .right {
  vertical-align: middle;
  text-align: right;
}

.inner-banner .right .text {
  max-width: 330px;
  text-align: left;
  display: block;
  margin-left: auto;
  font-weight: 300;
  font-size: 18px;
  color: #373330;
  line-height: 2;
}

.prodet2-page .prodet-1 {
  padding-top: 80px;
}

.prodet2-page .prodet-1 .box .left {
  width: 55%;
}

.prodet2-page .prodet-1 .box .left img {
  width: 100%;
}

.prodet2-page .prodet-1 .box .left .smallImg {
  width: 22.6%;
  float: left;
  position: relative;
}

.prodet2-page .prodet-1 .box .left .smallImg .btn{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  border: 1px solid #000;
  cursor: pointer;
  position: absolute;
  bottom: -40px;
  left: 45%;
  z-index: 2;
}

.prodet2-page .prodet-1 .box .left .smallImg .prev{
  top: -40px;
}

.prodet2-page .prodet-1 .box .left .smallImg ul {
  margin: -10px;
}

.prodet2-page .prodet-1 .box .left .smallImg ul li {
  padding: 10px;
}

.prodet2-page .prodet-1 .box .left .smallImg ul li a {
  display: block;
}

.prodet2-page .prodet-1 .box .left .smallImg ul li a img {
  display: block;
  width: 100%;
}

.prodet2-page .prodet-1 .box .left .bigImg {
  width: 77.4%;
  padding-left: 4%;
  display: inline-block;
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow {
  width: 40px;
  height: 40px;
  background-color: #fffef9;
  color: transparent;
  font-size: 0;
  border: none;
  opacity: .8;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow.slick-prev {
  left: 12px;
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow.slick-prev:after {
  background-image: url("../images/banner-btn-l.png");
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow.slick-next {
  right: 12px;
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow.slick-next:after {
  background-image: url("../images/banner-btn-r.png");
}

.prodet2-page .prodet-1 .box .left .bigImg .slick-arrow:hover {
  background: #a68055;
}

.prodet2-page .prodet-1 .box .right {
  width: 45%;
  padding-left: 5%;
  vertical-align: middle;
}

.prodet2-page .prodet-1 .box .right span.tag {
  display: block;
  font-size: 20px;
  color: #373330;
  text-transform: uppercase;
  line-height: 36px;
}

.prodet2-page .prodet-1 .box .right span.tag:before {
  content: '';
  width: 10%;
  height: 1px;
  margin-right: 2%;
  background: #a68055;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -3px;
}

.prodet2-page .prodet-1 .box .right h1 {
  font-size: 24px;
  color: #373330;
  line-height: 2;
  font-family: 'Baskerville-Bold';
  margin: 30px 0;
}

.prodet2-page .prodet-1 .box .right .rating {
  line-height: 1;
  letter-spacing: 3px;
}

.prodet2-page .prodet-1 .box .right .rating:after {
  font-family: "FontAwesome";
  color: #a68055;
  font-size: 18px;
}

.prodet2-page .prodet-1 .box .right .rating.one:after {
  content: "\f005 \f006 \f006 \f006 \f006";
}

.prodet2-page .prodet-1 .box .right .rating.two:after {
  content: "\f005 \f005 \f006 \f006 \f006";
}

.prodet2-page .prodet-1 .box .right .rating.three:after {
  content: "\f005 \f005 \f005 \f006 \f006";
}

.prodet2-page .prodet-1 .box .right .rating.four:after {
  content: "\f005 \f005 \f005 \f005 \f006";
}

.prodet2-page .prodet-1 .box .right .rating.five:after {
  content: "\f005 \f005 \f005 \f005 \f005";
}

.prodet2-page .prodet-1 .box .right .content {
  margin: 33px 0;
  font-size: 18px;
  color: #373330;
  line-height: 2;
  overflow-y: auto;
  padding-right: 4px;
}

.prodet2-page .prodet-1 .box .right .color {
  margin-bottom: 20px;
}

.prodet2-page .prodet-1 .box .right .color h6 {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: .5em;
  display: block;
}

.prodet2-page .prodet-1 .box .right .color ul {
  margin: -5px;
}

.prodet2-page .prodet-1 .box .right .color ul li {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
}

.prodet2-page .prodet-1 .box .right .color ul li span {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  border: 2px solid #fffbf3;
  cursor: pointer;
  cursor: hand;
}

.prodet2-page .prodet-1 .box .right .color ul li.active span {
  -o-box-shadow: 0 0 0 1px #000;
  -webkit-box-shadow: 0 0 0 1px #000;
  box-shadow: 0 0 0 1px #000;
}

.prodet2-page .prodet-1 .box .right .share ul li {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  margin-right: 10px;
  background: white;
  color: black;
  font-size: 18px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: #eee;
}

.prodet2-page .prodet-1 .box .right .share ul li a {
  display: block;
}

.prodet2-page .prodet-1 .box .right .share ul li:hover {
  background: #a68055;
}

.prodet2-page .prodet-1 .box .right a.more {
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  border-radius: 5px;
  background: #a68055;
  font-size: 16px;
  color: #fff;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: inline-block;
  margin-top: 45px;
}

.prodet2-page .prodet-1 .box .right a.more:hover {
  color: white;
  background: #222;
}

.prodet2-page .prodet-2 {
  padding: 90px 0;
}

.prodet2-page .prodet-2 .options ul {
  border-bottom: 1px solid #d2d2d2;
}

.prodet2-page .prodet-2 .options ul li {
  margin-right: 100px;
  font-size: 26px;
  color: #b7b7b7;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 0 10px 10px;
  cursor: pointer;
  font-family: 'Baskerville-Bold';
  line-height: 1.2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet2-page .prodet-2 .options ul li:after {
  content: '';
  height: 3px;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  background: #a68055;
}

.prodet2-page .prodet-2 .options ul li:hover,
.prodet2-page .prodet-2 .options ul li.active {
  color: #373330;
}

.prodet2-page .prodet-2 .options ul li:hover:after,
.prodet2-page .prodet-2 .options ul li.active:after {
  width: 100%;
}

.prodet2-page .prodet-2 .ret {
  margin-top: 50px;
}

.prodet2-page .prodet-2 .ret .content {
  font-size: 18px;
  line-height: 2;
}

.prodet2-page .prodet-2 .ret .content img{
  display: inline-block;
  padding: 15px;
  width: 100%;
}

.prodet2-page .prodet-2 .ret .content table tr td{
  min-width: 120px;
}

.prodet2-page .prodet-3 {
  padding-bottom: 40px;
}

.prodet2-page .prodet-3 h2 {
  font-family: 'Baskerville-Bold';
  font-size: 40px;
  color: #373330;
  line-height: 1.2;
}

.font-16 {
  line-height: 30px;
}

.prodet2-page .prodet-3 .list {
  margin-top: 40px;
  position: relative;
}

.prodet2-page .prodet-3 .list .btn{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  border: 1px solid #000;
  cursor: pointer;
  position: absolute;
  right: -60px;
  top: 45%;
  z-index: 2;
}
.prodet2-page .prodet-3 .list .prev{
  left: -60px;
}

.prodet2-page .prodet-3 .list ul {
  margin: -19px;
}

.prodet2-page .prodet-3 .list ul li {
  padding: 19px;
}

.prodet2-page .prodet-3 .list ul li a.img-box {
  display: block;
  position: relative;
}

.prodet2-page .prodet-3 .list ul li a.img-box img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.prodet2-page .prodet-3 .list ul li a.img-box img.i2{
  position: absolute;
  inset:0;
  opacity: 0;
}
.prodet2-page .prodet-3 .list ul li:hover a.img-box img.i2{
  opacity: 1;
}
.prodet2-page .prodet-3 .list ul li a.img-box span {
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 90%;
  position: absolute;
  bottom: 0;
  left: 5%;
  font-size: 16px;
  color: #373330;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}

.prodet2-page .prodet-3 .list ul li h6 {
  font-size: 20px;
  color: #373330;
  text-align: center;
  line-height: 2;
  margin-top: 10px;
  font-weight: normal;
  padding: 0 5%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.prodet2-page .prodet-3 .list ul li:hover a.img-box span {
  bottom: 5%;
  opacity: 1;
}

.prodet2-page .prodet-3 .list ul li:hover h6 {
  color: #a68055;
}

@media screen and (max-width: 1700px) {
  .inner-banner .left h2 {
    font-size: 90px;
  }

  .factory-page .navList ul li {
    font-size: 20px;
  }

  .prodet2-page .prodet-1 .box .right .content {
    font-size: 18px;
  }

  .prodet2-page .prodet-3 h2 {
    font-size: 32px;
  }

  .prodet2-page .prodet-3 .list ul li h6 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1500px) {
  .inner-banner .left h2 {
    font-size: 70px;
  }

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

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

  .inner-banner {
    padding: 60px 0;
  }

  .prodet2-page .prodet-1 .box .right h1 {
    font-size: 32px;
  }

  .prodet2-page .prodet-1 .box .right h1 {
    margin: 15px 0;
  }

  .prodet2-page .prodet-1 .box .right .share ul li {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }

  .prodet2-page .prodet-1 .box .right a.more {
    margin-top: 25px;
  }

  .prodet2-page .prodet-2 {
    padding: 70px 0;
  }

  .prodet2-page .prodet-2 .options ul li {
    font-size: 20px;
  }
}

@media screen and (max-width: 1250px) {
  .inner-banner .left h2 {
    font-size: 50px;
  }

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

  .inner-banner {
    padding: 20px 0;
    margin-top: 120px;
  }

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

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

  .prodet2-page .prodet-1 .box .right h1,
  .prodet2-page .prodet-3 h2 {
    font-size: 28px;
  }

  .prodet2-page .prodet-1 .box .right .content {
    font-size: 16px;
    margin: 15px 0;
  }

  .prodet2-page .prodet-1 .box .right span.tag {
    font-size: 16px;
  }

  .prodet2-page .prodet-1 .box .left .bigImg {
    padding-left: 2.5%;
  }

  .prodet2-page .prodet-3 .list ul li {
    padding: 10px;
  }

  .prodet2-page .prodet-3 .list ul {
    margin: -10px;
  }

}

@media screen and (max-width: 1000px) {
  .inner-banner{
    margin-top: 40px;
  }
  .inner-banner .left h2 {
    font-size: 36px;
  }

  .prodet2-page .prodet-1 .box .right h1,
  .prodet2-page .prodet-3 h2 {
    font-size: 24px;
  }

  .prodet2-page .prodet-1 .box .right {
    padding-left: 0;
    width: 100%;
    padding-top: 60px;
  }

  .prodet2-page .prodet-1 .box .left {
    width: 100%;
  }

  .prodet2-page .prodet-2 .options ul li {
    margin-right: 25px;
  }

  .prodet2-page .prodet-3 .list .btn{
    display: none !important;
  }

  .prodet2-page .prodet-1 .box .left .bigImg {
    padding-left: 4%;
  }

  .font-16 {
    line-height: 30px;
  }

  .prodet2-page .prodet-1 .box .left .bigImg {
    padding-left: 2%;
  }

  .prodet2-page .prodet-2 .options {
    display: none;
  }

  .prodet2-page .prodet-2 .ret .slide {
    display: block;
    margin-top: 30px;
  }

  .inner-banner .right {
    padding-top: 15px;
  }

  .inner-banner .left h2 {
    font-size: 22px!important;
    line-height: 2;
  }

  .prodet2-page .prodet-1 {
    padding-bottom: 50px;
  }





  .prodet2-page .prodet-2 {
    padding-top: 0;
  }

  .prodet2-page .prodet-2 .ret .content {
    font-size: 14px;
    line-height: 28px;
  }
}

@media screen and (max-width: 700px) {
  .contact-page .contact-4 .left ul li h6{
    width: 40px;
    height: 40px;
  }
  .contact-page .contact-4 .left ul li p{
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 500px) {
  .inner-page .m-page a{
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .inner-page .m-page span{
    width: 40px;
    line-height: 40px;
    height: 40px;
  }
  .inner-banner .right .text {
    max-width: none;
    display: none;
  }

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

  .prodet2-page .prodet-2 .ret .slide:first-child {
    margin-top: 0;
  }

  .project-page.gallery-page .project-list .list li{
    width: 100%;
    padding: 0;
  }

  .prodet2-page .prodet-2 .ret .content img{
    width: 100%;
    padding: 5px;
  }
  .prodet2-page .form ul .phone .intl-tel-input .country-list{
    left: -4px;
  }
}



.seoPublic .title {
    font-size: 32px;
    font-family: 'Baskerville-Bold';
    line-height: 1.4;
    margin-bottom: 2em;
}

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

.seoPublic>div:nth-child(odd) {
    background: #fafafa;
}

.seoPublic .Auxil-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.seoPublic .Auxil-about .box .left {
    width: 40%;
}

.seoPublic .Auxil-about .box .left .img {
    height: 100%;
    background-size: cover;
    background-position: center center;
    display: block;
}

.seoPublic .Auxil-about .box .left img {
    width: 100%;
    display: block;
}

.seoPublic .Auxil-about .box .right {
    width: 60%;
    padding-left: 5%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.seoPublic .Auxil-about .box .right div.h3 {
    font-size: 24px;
    font-family: 'Baskerville-Bold';
    line-height: 2;
    margin-bottom: 1em;
}

.seoPublic .Auxil-about .box .right .text {
    font-size: 16px;
    line-height: 2;
    color: #666;
    max-height: 400px;
    overflow: auto;
}

.seoPublic .Auxil-honor .list{
  position: relative;
}
.seoPublic .Auxil-honor .list .btn{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  border: 1px solid #000;
  cursor: pointer;
  position: absolute;
  right: -60px;
  top: 45%;
  z-index: 2;
}
.seoPublic .Auxil-honor .list .prev{
  left: -60px;
}
.seoPublic .Auxil-honor .list ul {
    margin: -10px;
}

.seoPublic .Auxil-honor .list ul li {
    padding: 10px;
}

.seoPublic .Auxil-honor .list ul li a {
    display: block;
}

.seoPublic .Auxil-honor .list ul li a img {
    width: 100%;
}

.seoPublic .Auxil-news .list .btn{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  border: 1px solid #000;
  cursor: pointer;
  position: absolute;
  right: -60px;
  top: 45%;
  z-index: 2;
}
.seoPublic .Auxil-news .list .prev{
  left: -60px;
}
.seoPublic .Auxil-news .list ul {
    margin: -13px;
}

.seoPublic .Auxil-news .list ul li {
    padding: 13px;
}

.seoPublic .Auxil-news .list ul li a.img-box {
    display: block;
    background-size: cover;
    background-position: center center;
}

.seoPublic .Auxil-news .list ul li a.img-box img {
    width: 100%;
}

.seoPublic .Auxil-news .list ul li .content div.h6 {
    font-size: 18px;
    line-height: 2;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    margin-top: 20px;
}

.seoPublic .Auxil-news .list ul li .content div.h6:hover {
    color: #a68055;
}

.seoPublic .Auxil-news .list ul li .content time {
    font-size: 14px;
    margin-top: .5em;
    display: block;
}

.seoPublic .Auxil-news .list ul li .content p {
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    margin: 1em 0;
}

.seoPublic .Auxil-news .list ul li .content a.link {
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.seoPublic .Auxil-news .list ul li .content a.link:hover {
    border-color: #a68055;
    color: #a68055;
}

.seoPublic .Auxil-form .form ul {
    margin: -10px;
}

.seoPublic .Auxil-form .form ul li {
    padding: 10px;
}

.seoPublic .Auxil-form .form ul li input,
.seoPublic .Auxil-form .form ul li textarea {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    font-size: 16px;
    padding: 8px 15px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-form .form ul li textarea {
    height: 100px;
}

.seoPublic .Auxil-form .form ul li input:focus,
.seoPublic .Auxil-form .form ul li textarea:focus {
    border-color: #a68055;
}

.seoPublic .Auxil-form .form ul li.wid-100 {
    width: 100%;
}

.seoPublic .Auxil-form .form ul li input[type="submit"] {
    width: auto;
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
    background: #a68055;
    color: whitesmoke;
    border: none;
}

.seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
    background: #222;
}

.seoPublic .seoIndustry .text {
    font-size: 16px;
    line-height: 2;
    color: #666;
}



.seoPublic .text a:hover {
    text-decoration: underline;
}

.seoPublic .Auxil-through {
    padding: 15px 0;
    background: none !important;
}

.seoPublic .Auxil-through a {
    display: inline-block;
    line-height: 40px;
    height: 40px;
    padding: 0 25px;
    font-size: 14px;
    color: black;
    border: 1px solid #eee;
    background: #f8f8f8;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-through a:hover {
    background: #a68055;
    color: white;
}

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

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

.seoPublic .Auxil-related .list ul li .box {
    display: block;
    background: white;
    -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
}

.seoPublic .Auxil-related .list ul li .box a.img-box {
    display: block;
}

.seoPublic .Auxil-related .list ul li .box .content {
    display: block;
    padding: 20px;
    text-align: center;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3 {
    font-size: 22px;
    color: #111;
    font-family: 'Baskerville-Bold';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
}

.seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
    color: #a68055;
}

.seoPublic .Auxil-related .list ul li .box .content p {
    display: block;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
    font-weight: 400;
    margin: .5em 0;
    height: 4.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.seoPublic .Auxil-related .list ul li .box .content a.more {
    display: inline-block;
    vertical-align: middle;
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #a68055;
    font-size: 16px;
    font-family: 'Baskerville-Bold';
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    color: #a68055;
}

.seoPublic .Auxil-related .list ul li .box .content a.more i {
    margin-left: 5px;
}

.seoPublic .Auxil-related .list ul li .box .content a.more:hover {
    color: white;
    background: #a68055;
}

@media screen and (max-width: 1400px) {
    .seoPublic .title {
        font-size: 28px;
        margin-bottom: 1.5em;
    }

    .seoPublic .Auxil-about .box .right div.title,
    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 20px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea,
    .seoPublic .Auxil-about .box .right .text,
    .seoPublic .Auxil-news .list ul li .content p,
    .seoPublic .seoIndustry .text,
    .seoPublic .Auxil-related .list ul li .box .content p {
        font-size: 14px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 18px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        font-size: 14px;
        line-height: 34px;
        height: 34px;
        padding: 0 15px;
    }

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

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

@media screen and (max-width: 1000px) {
    .seoPublic .title {
        font-size: 24px;
        margin-bottom: 1em;
    }
.Auxil-industry {
  display: none;
}
    .prodet2-page .prodet-3 .list .btn{
      display: none !important;
    }

    .seoPublic .Auxil-news .list .btn{
      display: none !important;
    }

    .seoPublic .Auxil-honor .list .btn{
      display: none !important;
    }

    #cp-Nav {
        display: block;
    }

    #cp-Nav .nav {
        padding: 0 15px;
    }

    #cp-Nav .nav div.title {
        font-size: 18px;
        font-family: 'Baskerville-Bold';
        padding: 8px 10px;
        background: #a68055;
        border-radius: 5px;
        color: white;
    }

    #cp-Nav .nav i.mask {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 230;
        background: rgba(0, 0, 0, 0.2);
    }

    #cp-Nav .nav>ul {
        display: none;
    }

    #cp-Nav .nav ul {
        position: fixed;
        top: 10%;
        max-height: 80%;
        left: 5%;
        width: 90%;
        padding: 20px;
        border-radius: 5px;
        background: white;
        z-index: 300;
        font-size: 16px;
        overflow: auto;
    }

    #cp-Nav .nav ul ul {
        padding: 0 10px;
        font-size: 14px;
        position: static;
        max-height: none;
        width: 100%;
        margin: 10px 0;
    }

    #cp-Nav .nav ul li a {
        display: block;
        padding: 5px 0;
        line-height: 28px;
    }

    .seoPublic .Auxil-about .box {
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 100%;
        padding: 0;
        margin-top: 20px;
    }

    .seoPublic .Auxil-about .box .left {
        width: 100%;
        padding: 0;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 300px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 18px;
    }

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

    .seoPublic .Auxil-about .box .right .text {
        max-height: none;
    }
}
.yxtianjianr h2 {
  font-size: 20px;
  color: #373330;
  line-height: 1.2;
  margin-bottom: 20px;
}
.yxchanpinyenr {
  font-size: 16px;
    line-height: 2;
    color: #666;
}
.yxchanpinyenr img {
  width: 30%!important;
float: left;
margin-right: 15px;
}
.hnyxshouye {
  display: inline;
}



.our-manufacturing-page {
  padding: 110px 0 75px;
}
.our-manufacturing-page .our-manufacturing-1 {
  text-align: center;
}
.our-manufacturing-page .our-manufacturing-1 .container {
  width: 938px;
}
.our-manufacturing-page .our-manufacturing-1 h3 {
  font-size: 46px;
  font-weight: 400;
  color: #000000;
  line-height: 1.19;
}
.our-manufacturing-page .our-manufacturing-1 p {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
}
.our-manufacturing-page .our-manufacturing-2 {
  padding: 120px 0 140px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali {
  margin-bottom: 102px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .left {
  width: 46.7%;
  vertical-align: middle;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .left .img-box {
  cursor: pointer;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .left .img-box img {
  border-radius: 150px 0px 0px 0px;
  background: #fff;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right {
  width: 53.3%;
  vertical-align: middle;
  padding-left: 90px;
  position: relative;
  z-index: 11;
  padding-top: 110px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right i {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-family: 'Baskerville-Bold';
  color: #E48683;
  line-height: 1;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right i::after {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 187px;
  height: 1px;
  background: #E48683;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right h4 {
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  margin: 43px 0 32px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right .cona {
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right .swiper-pagination {
  position: static;
  margin-top: 42px;
  width: auto;
  text-align: left;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right .swiper-pagination span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #E48683;
  border-radius: 50%;
  opacity: 0.2;
  margin: 0;
  margin-right: 9px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 1;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  background: #F8F8F8;
  z-index: -1;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .left {
  position: relative;
  left: 46.7%;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .left .img-box img {
  border-radius: 0px 150px 0px 0px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .right {
  position: relative;
  left: -53.3%;
  text-align: right;
  padding-left: 0;
  padding-right: 90px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .right i::after {
  left: 33px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .right .swiper-pagination {
  text-align: right;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .right .swiper-pagination span {
  margin: 0;
  margin-left: 9px;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:nth-child(even) .box .right::after {
  left: unset;
  right: 0;
}
.our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali:last-child {
  margin: 0;
}
.our-manufacturing-page .our-manufacturing-3 {
  position: relative;
}
.our-manufacturing-page .our-manufacturing-3 .swiper-button-prev,
.our-manufacturing-page .our-manufacturing-3 .swiper-button-next {
  width: 18px;
  height: 27px;
  background: url(../images/bann6.png) no-repeat center;
  opacity: 1;
  top: 69%;
}
.our-manufacturing-page .our-manufacturing-3 .swiper-button-prev {
  left: 4%;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.our-manufacturing-page .our-manufacturing-3 .swiper-button-next {
  right: 4%;
}
.our-manufacturing-page .our-manufacturing-3 .container {
  width: 1606px;
}
.our-manufacturing-page .our-manufacturing-3 h3 {
  font-size: 46px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  text-align: center;
}

.our-manufacturing-page .our-manufacturing-3 .cona {
  max-width: 1200px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;

}
.our-manufacturing-page .our-manufacturing-3 .list {
  margin-top: 75px;
}
.our-manufacturing-page .our-manufacturing-3 .list ul li .img {
  position: relative;
  z-index: 10;
}
.our-manufacturing-page .our-manufacturing-3 .list ul li .img h4 {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 24px;
  font-size: 24px;
  font-weight: 400;
  color: #E48683;
  line-height: 1.5;
  z-index: 11;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.our-manufacturing-page .our-manufacturing-3 .list ul li .img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FEF2F1;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.our-manufacturing-page .our-manufacturing-3 .list ul li:hover .img h4 {
  opacity: 1;
}
.our-manufacturing-page .our-manufacturing-3 .list ul li:hover .img::after {
  opacity: 1;
}
.our-design-page {
  padding: 110px 0 0;
}
.our-design-page .our-design-1 {
  text-align: center;
}
.our-design-page .our-design-1 .container {
  width: 1038px;
}
.our-design-page .our-design-1 h3 {
  font-size: 46px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.19;
}
.our-design-page .our-design-1 p {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
}
.our-design-page .our-design-2 {
  padding: 70px 0 110px;
}
.our-design-page .our-design-2 .top {
  position: relative;
}
/*.our-design-page .our-design-2 .top::after {
  content: '';
  position: absolute;
  right: 12%;
  bottom: -0;
  width: 280px;
  height: 277px;
  background: url(../images/flower.png) no-repeat center;
  z-index: -1;
}*/
.our-design-page .our-design-2 .top .left {
  width: 41.2%;
  vertical-align: middle;
}
.our-design-page .our-design-2 .top .left img {
  border-radius: 150px 0px 0px 0px;
}
.our-design-page .our-design-2 .top .right {
  width: 58.8%;
  margin-top: 3%;
  padding-left: 70px;
  vertical-align: middle
}
.our-design-page .our-design-2 .top .right .faq ul li {
  margin-bottom: 44px;
}
.our-design-page .our-design-2 .top .right .faq ul li .acc {
  padding-bottom: 30px;
  border-bottom: 1px solid #E4E8EB;
}
.our-design-page .our-design-2 .top .right .faq ul li .acc h4 {
  position: relative;
  font-size: 28px;
  font-family: 'Baskerville-Bold';
  color: #000000;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.our-design-page .our-design-2 .top .right .faq ul li .acc h4:hover {
  color: #E48683;
}
.our-design-page .our-design-2 .top .right .faq ul li .acc h4::after {
  content: '\f067';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  color: #E48683;
  font-family: "FontAwesome";
}

.our-design-page .our-design-2 .top .right .faq ul li .text {
  display: none;
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
  margin: 30px 0 10px;
}
.our-design-page .our-design-2 .top .right .faq ul li.active .text {
  display: block
}
.our-design-page .our-design-2 .top .right .faq ul li.active .acc h4::after {
  content: "\f068";
}
.our-design-page .our-design-2 .top .right .faq ul li:last-child {
  margin: 0;
}

.our-design-page .our-design-3 .container {
  width: 100% !important;
  padding: 0;
}
.our-design-page .our-design-3 .bot ul li .img {
  position: relative;
}
.our-design-page .our-design-3 .bot ul li .box h4 {
  position: absolute;
  left: 0%;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 75px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1;
  padding: 235px 0 115px;
}
.our-design-page .our-design-3 .top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  margin-left: auto;
  background: #FFFFFF;
  border-radius: 30px 0px 0px 0px;
  padding: 24px 45px 12px 25px;
}
.our-design-page .our-design-3 .top .swiper-button-prev,
.our-design-page .our-design-3 .top .swiper-button-next {
  width: 45px;
  height: 63px;
  margin: 0;
  background: url(../images/our-design-page-33.png) no-repeat center #000000;
  opacity: 1;
}
.our-design-page .our-design-3 .top .swiper-button-prev:hover,
.our-design-page .our-design-3 .top .swiper-button-next:hover {
  background-color: #E48683;
}
.our-design-page .our-design-3 .top .swiper-button-prev {
  position: absolute;
  left: unset;
  right: 0;
  bottom: unset;
  top: 0;
}
.our-design-page .our-design-3 .top .swiper-button-next {
  position: absolute;
  right: 0;
  top: unset;
  bottom: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.our-design-page .our-design-3 .top .list ul li .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-design-page .our-design-3 .top .list ul li .box .img {
  width: 162px;
height: 90px;
object-fit: cover;
}
.our-design-page .our-design-3 .top .list ul li .box img {
  border-radius: 20px 0px 0px 0px;
  width: 100%;
  height: 100%;
}
.our-design-page .our-design-3 .top .list ul li .box h4 {
  width: 40%;
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  line-height: 36px;
  padding-left: 10px;
}
.our-design-page .our-design-4 {
  padding: 110px 0;
}
.our-design-page .our-design-4 .title {
  text-align: center;
}
.our-design-page .our-design-4 .title h3 {
  font-size: 46px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
}
.our-design-page .our-design-4 .title p {
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
  max-width: 1020px;
  margin: 0 auto;
  margin-top: 40px;
}
.our-design-page .our-design-4 .top {
  position: relative;
  margin-top: 95px;
  padding: 0 22px;
}
.our-design-page .our-design-4 .top .acc {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
}
.our-design-page .our-design-4 .top .acc ul {
  position: relative;
  width: 100%;
  z-index: 11;
}
.our-design-page .our-design-4 .top .acc ul li {
  text-align: center;
}
.our-design-page .our-design-4 .top .acc ul li i {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #e48683;
  border-radius: 50%;
  margin: 0 auto;
  vertical-align: middle;
}
.our-design-page .our-design-4 .top .acc ul::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #E4E8EB;
  z-index: -1;
}
.our-design-page .our-design-4 .top .swiper-button-next,
.our-design-page .our-design-4 .top .swiper-button-prev {
  width: 31px;
  height: 31px;
  background: url(../images/our-design-page-42.png) no-repeat center;
  opacity: 1;
  margin: 0;
  top: 49.2%;
  z-index: 13;
}
.our-design-page .our-design-4 .top .swiper-button-next {
  right: 0;
}
.our-design-page .our-design-4 .top .swiper-button-prev {
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.our-design-page .our-design-4 .top .list {
  z-index: 12;
}
.our-design-page .our-design-4 .top .list ul li .box {
  text-align: center;
}
.our-design-page .our-design-4 .top .list ul li .box .img img {
  border-radius: 100px 0px 0px 0px;
}
.our-design-page .our-design-4 .top .list ul li.swiper-slide.swiper-slide-visible.swiper-slide-next .box .img img {
border-radius: 0
}
.our-design-page .our-design-4 .top .list ul li.swiper-slide.swiper-slide-visible.swiper-slide-next+li .box .img img {
  border-radius: 0px 100px 0px 0px;
}
.our-design-page .our-design-4 .top .list ul li .box h4 {
  font-size: 24px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  margin-top: 115px;
}
.our-design-page .our-design-4 .top .list ul li .box .cona {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 28px;
  margin-top: 30px;
  height: 120px;
  overflow: auto;
}
.our-design-page .our-design-4 .top .list ul li:nth-child(even) .box .img {
  margin-top: 115px;
}
.our-design-page .our-design-4 .top .list ul li:nth-child(even) .box h4 {
  margin-top: 65px;
}
.our-design-page .our-design-5 h3 {
  font-size: 46px;
  margin-top: 100px;
  font-family: 'Baskerville-Bold';
  color: #000000;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.our-design-page .our-design-5 .list {
  margin-top: 75px;
}
.our-design-page .our-design-5 .list h4 {
  font-size: 24px;
  font-family: 'Baskerville-Bold';
  color: #000000;
  line-height: 1.5;
  margin-top: 20px;
  text-transform: uppercase;
}
.our-design-page .our-design-6 {
  margin-top: 100px;
  background: url(../images/our-design-page-61.jpg) no-repeat center / cover;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;

}
.our-design-page .our-design-6 .tit {
  font-size: 60px;
  font-family: 'Baskerville-Bold';
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.our-design-page .our-design-6 .btn {
  margin-top: 40px;
}
.our-design-page .our-design-6 .btn .btna {
  color: #ffffff;
}
.our-design-page .our-design-6 .btn .btna::after {
  background: rgba(255, 255, 255, 0.6)
}

.our-design-page .our-design-6 .btn .btna::before {
  border: 1px solid #ffffff
}
.our-design-page .our-design-7 {
  padding: 110px 0;
}
.our-design-page .our-design-7 .top .left {
  width: 47.2%;
}
.our-design-page .our-design-7 .top .left .img {
  position: relative;
}
.our-design-page .our-design-7 .top .left .img img {
  border-radius: 150px 0px 0px 0px;
}
.our-design-page .our-design-7 .top .left .img .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 35px 45px;
  width: 100%;
}
.our-design-page .our-design-7 .top .left .img .mask span {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  color: #E85059;
  line-height: 1;
}
.our-design-page .our-design-7 .top .left .img .mask .tit {
  font-size: 36px;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  margin: 15px 0 30px;
}
.our-design-page .our-design-7 .top .left .img .mask p {
  font-size: 18px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
}
.our-design-page .our-design-7 .top .right {
  width: 52.8%;
  padding-left: 38px;
}
.our-design-page .our-design-7 .top .right .img img {
  border-radius: 0px 100px 0px 0px;
}
.our-design-page .our-design-7 .top .right p {
  font-size: 20px;
  font-weight: 300;
  color: #000000;
  line-height: 30px;
  margin-top: 30px;
}
.our-design-page .our-design-7 .top .right p:last-child {
  margin-top: 30px;
}
.our-design-page .our-design-7 .top .right .btn {
  margin-top: 20px;
}
@media screen and (max-width: 1420px) {
  .our-design-page .our-design-3 .top .list ul li .box h4 {
    line-height: 1.2
  }
  .our-manufacturing-page,
  .our-manufacturing-page .our-manufacturing-2,
  .our-design-page,
  .our-design-page .our-design-2,
  .our-design-page .our-design-4,
  .our-design-page .our-design-7 {
    padding: 90px 0;
  }

  .our-manufacturing-page .our-manufacturing-1 h3,
  .our-manufacturing-page .our-manufacturing-3 h3,
  .our-design-page .our-design-1 h3,
  .our-design-page .our-design-3 h3,
  .our-design-page .our-design-4 .title h3,
  .our-design-page .our-design-5 h3,
  .our-design-page .our-design-6 .tit{
    font-size: 42px;
  }

  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right h4 {
    margin: 15px 0;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right {
    padding-top: 30px;
    padding-left: 30px;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali {
    margin-bottom: 50px;
  }
  .our-design-page .our-design-2 .top .right {
    padding-left: 30px;
  }
  .our-design-page .our-design-2 .top .right .faq ul li .acc {
    padding-bottom: 15px;
  }
  .our-design-page .our-design-2 .top .right .faq ul li .text {
    margin: 15px 0;
  }
  .our-design-page .our-design-3 h3 {
    padding: 100px 0;
  }
  .our-design-page .our-design-3 .top .list ul li .box h4 {
    font-size: 18px;
  }
  .our-design-page .our-design-3 .top {
    width: 80%;
  }
  .our-design-page .our-design-6 {
    padding: 100px 0;
    margin-top: 90px;
  }
  .our-design-page .our-design-7 .top .left .img .mask {
    padding: 20px 30px;
  }
  .our-design-page .our-design-7 .top .left .img .mask .tit {
    font-size: 32px;
    margin: 15px 0;
  }
  .our-design-page .our-design-7 {
    padding-bottom: 0!important;
  }
}
@media screen and (max-width: 1100px) {
  .our-manufacturing-page .our-manufacturing-1 h3,
  .our-manufacturing-page .our-manufacturing-3 h3,
  .our-design-page .our-design-1 h3,
  .our-design-page .our-design-3 h3,
  .our-design-page .our-design-4 .title h3,
  .our-design-page .our-design-5 h3,
  .our-design-page .our-design-6 .tit, {
    font-size: 36px;
  }
 
  .our-manufacturing-page,
  .our-manufacturing-page .our-manufacturing-2,
  .our-design-page,
  .our-design-page .our-design-2,
  .our-design-page .our-design-4,
  .our-design-page .our-design-7 {
    padding: 70px 0;
  }
  .our-design-page .our-design-3 .top {
    width: 100%;
    position: relative;
    border-radius: 0
  }
  
  .our-manufacturing-page .our-manufacturing-1 p,
  .our-design-page .our-design-1 p,
  .our-design-page .our-design-4 .title p {
    margin-top: 15px;
  }
  .our-manufacturing-page .our-manufacturing-3 .list,
  .our-design-page .our-design-5 .list {
    margin-top: 30px;
  }
  .our-design-page .our-design-4 .top{
    margin-top: 40px;
  }
  .our-design-page .our-design-6 {
    margin-top: 70px;
  }
}
@media screen and (max-width: 972px) {
  .our-manufacturing-page .our-manufacturing-1 h3,
  .our-manufacturing-page .our-manufacturing-3 h3,
  .our-design-page .our-design-1 h3,
  .our-design-page .our-design-3 h3,
  .our-design-page .our-design-4 .title h3,
  .our-design-page .our-design-5 h3,
  .our-design-page .our-design-6 .tit {
    font-size: 32px;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .left {
    left: 0!important;
    width: 100%;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right {
    left: 0!important;
    width: 100%;
    padding: 0!important;
    margin-top: 20px;
    text-align: left!important;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right i::after,
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right::after {
    display: none;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right .swiper-pagination {
    margin-top: 15px;
  }
  .our-design-page .our-design-2 .top .left {
    width: 100%;
  }
  .our-design-page .our-design-2 .top .right {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
  .our-design-page .our-design-3 .top {
    width: 100%;
  }
  .our-design-page .our-design-7 .top .left {
    width: 100%;
  }
  .our-design-page .our-design-7 .top .left .img {
    max-width: 657px;
  }
  .our-design-page .our-design-7 .top .right {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
 
  .our-manufacturing-page,
  .our-manufacturing-page .our-manufacturing-2,
  .our-design-page,
  .our-design-page .our-design-2,
  .our-design-page .our-design-4,
  .our-design-page .our-design-7{
    padding: 50px 0;
  }
  .our-manufacturing-page .our-manufacturing-3 .swiper-button-prev,
  .our-manufacturing-page .our-manufacturing-3 .swiper-button-next {
    display: none;
  }
  .our-design-page .our-design-4 .top .acc {
    display: none;
  }
  .prodet-page .prodet-3 .list {
    padding-bottom: 0;
  }
  .our-design-page .our-design-5 .list {
    text-align: center;
  }
  .our-sustainability-page .our-sustainability-1 .options ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .our-design-page .our-design-2 .top .right .faq ul li .acc h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 450px) {
  .our-manufacturing-page .our-manufacturing-1 h3,
  .our-manufacturing-page .our-manufacturing-3 h3,
  .our-design-page .our-design-1 h3,
  .our-design-page .our-design-3 h3,
  .our-design-page .our-design-4 .title h3,
  .our-design-page .our-design-5 h3,
  .our-design-page .our-design-6 .tit,{
    font-size: 24px;
    line-height: 1.5 !important;
  }
  .our-manufacturing-page .our-manufacturing-2 .top ul.aul li.ali .box .right h4 {
    font-size: 24px;
  }
  .our-design-page .our-design-4 .top .list ul li .box .cona {
    height: auto;
  }
  .our-design-page .our-design-7 .top .left .img .mask {
    position: static;
    padding: 0;
    margin-top: 20px;
  }
  .our-design-page .our-design-7 .top .left .img .mask span {
    font-size: 20px;
  }
}
.btna {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-family: Poppins;
  font-weight: 400;
  color: #E48683;
  line-height: 1;
  padding: 19px 30px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btna::after {
  content: '';
  position: absolute;
  right: -3.5px;
  bottom: -3.5px;
  width: 100%;
  height: 100%;
  background: rgb(228 134 131 / 20%);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.btna::before {
  content: '';
  position: absolute;
  top: -3.5px;
  left: -3.5px;
  width: 100%;
  height: 100%;
  border: 1px solid #e48683;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.btna:hover::after {
  right: 0;
  bottom: 0;
}
.btna:hover::before {
  left: 0;
  top: 0;
}
.max-1420{
  max-width: 1420px;
}