@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-SemiBold.woff2') format('woff2'), url('../fonts/Poppins-SemiBold.woff') format('woff'), url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
.regular,
.Regular {
  font-weight: 400;
}
.semibold,
.semiBold,
.titl {
  font-weight: 600;
}

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

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

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

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

@-o-keyframes rotAni3 {
  0% {
    -o-transform: rotate(0);
    transform: rotate(0);
  }

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

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

  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#Pop_UpsBtn {
  display: none !important;
}
#ewm canvas,
#ewm img {
  width: 100%;
  display: block;
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from_s {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  width: 500px;
  max-width: 90%;
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 22;
  background: white;
  padding: 30px;
  overflow: auto;
}
#pups_from_s h4 {
  font-size: 18px;
  color: #222;
  text-transform: capitalize;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  padding: 15px 20px;
  background: #f5f5f5;
  -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
#pups_from_s form {
  margin-top: 40px;
}
#pups_from_s i.close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #eee;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from_s i.close::after,
#pups_from_s i.close::before {
  content: '';
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  width: 70%;
  height: 2px;
  margin-top: -1px;
  background: black;
  position: absolute;
  top: 50%;
  left: 15%;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pups_from_s i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from_s i.close:hover {
  background: var(--color);
}
#pups_from_s i.close:hover::before,
#pups_from_s i.close:hover::after {
  background: white;
}
#pups_from_s ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from_s ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from_s ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from_s ul li input,
#pups_from_s ul li textarea {
  width: 100%;
  line-height: 24px;
  padding: 6px 15px;
  border: 1px solid #eee;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
}
#pups_from_s ul li input:focus,
#pups_from_s ul li textarea:focus {
  border-color: var(--color);
}
#pups_from_s ul li textarea {
  height: 80px;
}
#pups_from_s ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: var(--color);
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from_s ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from_s ul li:last-child {
  margin-bottom: 0;
}
.right_nav_list {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
}
.right_nav_list ul li {
  margin-top: 2px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: var(--color);
  border: 1px solid #fff;
}
.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}
.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
}
.right_nav_list ul li .cont {
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: 16px;
  }
  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
}
iframe {
  display: block;
  width: 100%;
}
#Pop_UpsBtn {
  z-index: 20;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--color);
  color: white;
  right: 2%;
  bottom: 40%;
  font-size: 24px;
  -o-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  cursor: hand;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#Pop_UpsBtn:hover {
  background: #889aff;
}
*::-webkit-scrollbar-thumb {
  background-color: #222;
}
b,
strong {
  font-weight: bold;
}
html,
body {
  position: relative;
  max-width: 1920px;
  margin: auto;
  height: auto;
}
body {
  overflow-x: hidden;
  position: relative;
  font-family: 'Poppins';
  font-weight: 400;
  margin: 0 auto;
  color: #000000;
  font-size: 16px;
  --color: #eb6161;
  background-color: #f6f3ee;
}
#ewm img,
#ewm canvas {
  display: block;
  width: 100%;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100%;
  height: auto;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table tbody td,
table tbody th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
}
table tbody tr {
  width: auto !important;
  height: auto !important;
}
table tbody tr:nth-child(even) {
  background: #eee;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
  -o-object-fit: contain;
  object-fit: contain;
  width: 220px;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content .h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content .h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  border: 1px solid #fff;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  -o-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  -o-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
.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;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 18;
}
#header a {
  display: block;
}
#header img {
  display: block;
  width: 100%;
}
#header > .nav {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background-color: transparent;
  border-bottom: 1px solid rgba(220, 220, 220, 0);
}
#header > .nav > .menu {
  padding: 30px 0 30px;
}
#header > .nav > .menu .menu-box {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header > .nav > .menu .menu-box .left {
  position: relative;
}
#header > .nav > .menu .menu-box .left .logo {
  position: relative;
  display: block;
  z-index: 1;
}
#header > .nav > .menu .menu-box .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#header > .nav > .menu .menu-box .menu_c {
  text-align: center;
  z-index: 2;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container {
  z-index: 2;
  width: 100%;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu {
  width: 100%;
  padding: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
  display: inline-block;
  position: relative;
  margin-left: 54px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:first-child {
  margin-left: 0;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > .sub-menu {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  padding: 4px 0 4px 0;
  text-align: left;
  line-height: 1.2;
  position: relative;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a i {
  font-size: 12px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2px;
  left: 0;
  background-color: #fff;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  width: auto;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  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;
  -o-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;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-radius: 2px;
  background-color: #f7f7f7;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item {
  color: #000;
  position: relative;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item a {
  white-space: nowrap;
  font-size: 16px;
  padding: 8px 12px;
  text-align: left;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(189, 189, 189, 0);
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover > a {
  background-color: #000;
  color: #fff;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item .sub-menu {
  left: 100%;
  top: 0;
  min-width: 120px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item .sub-menu .menu-item:hover .sub-menu {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
#header > .nav > .menu .menu-box .right {
  position: relative;
  z-index: 1;
}
#header > .nav > .menu .menu-box .right .search {
  cursor: pointer;
  width: 22px;
  height: 22px;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont {
  border-radius: 50%;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC {
  color: #fff;
  text-transform: capitalize;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC .img {
  width: 27px;
  height: 27px;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC .text {
  margin: 4px 0 0 10px;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .textC img {
  margin-left: 3px;
  width: auto;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .open_btn {
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  text-align: center;
  color: #fff;
  margin-left: 26px;
  background-color: #c10015;
  min-width: 150px;
  padding: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn p {
  position: relative;
}
#header > .nav > .menu .menu-box .right .open_btn .img {
  width: 19px;
  height: 19px;
  margin-left: 10px;
}
#header > .nav > .menu .menu-box .right .open_btn:hover {
  background-color: #000;
}
#header > .nav .lang_cont {
  display: inline-block;
  position: relative;
  cursor: pointer;
  z-index: 2;
}
#header > .nav .lang_cont:hover .lang {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
#header > .nav .lang_cont .lang {
  overflow-y: auto;
  max-height: 400px;
  width: 150px;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-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, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  border-bottom: 3px solid #333333;
}
#header > .nav .lang_cont .lang li a {
  display: block;
  background: #f7f7f7;
  padding: 5px 10px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  text-align: left;
}
#header > .nav .lang_cont .lang li a:hover {
  background-color: #000;
  color: #fff;
}
#header > .nav .lang_cont .lang li a:hover em {
  color: #fff;
}
#header > .nav .lang_cont .lang li a img {
  display: inline;
  width: 20%;
  margin-top: 4px;
}
#header > .nav .lang_cont .lang li a em {
  display: inline;
  font-size: 16px;
  margin-left: 10px;
  color: #000;
}
#header.active > .nav,
#header.innerNav > .nav {
  border-bottom: 1px solid rgba(220, 220, 220, 0.4);
  background-color: #333;
}
@keyframes ks2 {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -o-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
}
.container {
  width: 1630px;
  padding: 0 15px;
}
.Hbtn {
  display: inline-block;
  cursor: pointer;
  border-radius: 22px;
  border: solid 1px #ffffff;
  padding: 12px 22px;
  position: relative;
  z-index: 2;
}
.Hbtn span {
  position: relative;
  z-index: 2;
}
.Hbtn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color);
  opacity: 0;
  border-radius: 22px;
  z-index: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.Hbtn:hover::after {
  width: 100%;
  opacity: 1;
}
#banner .swiper ul li .container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#banner .swiper ul li .container .semiBold {
  line-height: 1.36;
  width: 50%;
}
#banner .swiper ul li.swiper-slide-active .semiBold {
  -webkit-animation: fadeInLeftSmall 1s linear;
  -moz-animation: fadeInLeftSmall 1s linear;
  -o-animation: fadeInLeftSmall 1s linear;
  animation: fadeInLeftSmall 1s linear;
}
#banner .swiper ul li.swiper-slide-active .Hbtn {
  -webkit-animation: fadeInRightSmall 1s linear;
  -moz-animation: fadeInRightSmall 1s linear;
  -o-animation: fadeInRightSmall 1s linear;
  animation: fadeInRightSmall 1s linear;
}
#index-body {
  position: relative;
  z-index: 2;
}
#index-body .init-1 {
  background-color: #f6f3ee;
}
#index-body .init-1 .container {
  position: static;
}
#index-body .init-1 .container .leftImg {
  width: 60%;
  margin-left: -11%;
}
#index-body .init-1 .container .right {
  width: 46.5%;
  margin-left: auto;
}
#index-body .init-1 .container .right h1 {
  line-height: 1.5;
  color: #818181;
}
#index-body .init-2 {
  background-color: #efece8;
}
#index-body .init-2 .swiper {
  width: 100%;
}
#index-body .init-2 .swiper ul li .titl {
  display: inline-block;
}
#index-body .init-2 .swiper ul li .titl:hover {
  color: var(--color);
}
#index-body .init-3 {
  background-color: #f6f3ee;
}
#index-body .init-3 .container .titl {
  line-height: 1.5;
}
#index-body .init-3 .container .regular {
  line-height: 1.5;
  color: #818181;
}
#index-body .init-3 .container .rightImg {
  width: 60.1%;
  margin-right: -11%;
}
#index-body .init-4 {
  background-color: #efece8;
}
#index-body .init-4 .container {
  z-index: 2;
}
#index-body .init-4 ul li {
  height: 100%;
}
#index-body .init-4 ul li .list {
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 30px 30px 45px;
}
#index-body .init-4 ul li .list .icon {
  width: 80px;
  height: 80px;
  background-color: #efece8;
  border-radius: 50%;
}
#index-body .init-4 ul li .list .txt {
  line-height: 1.5;
}
#index-body .init-4 ul li .list:hover {
  background-color: var(--color);
}
#index-body .init-4 ul li .list:hover .titl,
#index-body .init-4 ul li .list:hover .txt {
  color: #fff;
}
#index-body .init-4 .img1 {
  top: 0;
  right: 0;
  z-index: 0;
  width: 21.2vw;
}
#index-body .init-4 .img2 {
  left: 0;
  bottom: 0;
  z-index: 0;
  width: 23vw;
}
#index-body .init-5 .slickBox li {
  height: 100%;
}
#index-body .init-5 .slickBox li .list {
  width: 100%;
  height: 100%;
}
#index-body .init-5 .slickBox li .list .titl {
  line-height: 1.5;
}
#index-body .init-5 .slickBox li .list .titl:hover {
  color: var(--color);
}
#index-body .init-5 .slickBox li .list .txt {
  line-height: 1.5;
  color: #666666;
}
#footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -o-background-size: cover;
  background-size: cover;
  background-color: #efece8;
}
#footer .ftop {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#footer .ftop form {
  width: 100%;
}
#footer .ftop form input {
  background-color: transparent;
  border: 1px solid #cdcdcd;
  color: #000;
  width: 19%;
  padding: 9px 0 9px 20px;
  font-size: 16px;
}
#footer .ftop form input::placeholder {
  font-size: 16px;
  line-height: 1;
  color: #666;
}
#footer .ftop form input.textarea {
  width: 25%;
}
#footer .ftop form input.inquery {
  width: auto;
  background-color: var(--color);
  border: none;
  color: #fff;
  padding: 9px 62px;
}
#footer .ftop form input.inquery:hover {
  background-color: #000;
}
#footer ul.fCont {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#footer ul.fCont li.list .minTitl img,
#footer ul.fCont li.list .minTitl span {
  display: inline-block;
}
#footer ul.fCont li.list p.navP a:hover {
  color: var(--color);
}
#footer ul.fCont li.list2 .minTitl img {
  margin-top: -3px;
}
#footer ul.fCont li.list3 {
  max-width: 410px;
}
#footer ul.fCont li.list3 .minTitl img {
  margin-top: -2px;
}
#footer ul.fCont li.list3 p.semibold {
  text-decoration: underline;
  text-underline-offset: 9px;
}
#footer ul.fCont li.list3 p.add {
  line-height: 1.33;
}
#footer ul.fCont li.list4 .cont {
  width: 128px;
  height: 128px;
  background-color: #fff;
  padding: 9px;
}
#footer .copyright {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
}
#footer .copyright .container {
  padding-top: 12px;
  padding-bottom: 12px;
}
#footer .copyright .container svg {
  height: 26px;
  width: auto;
  fill: rgba(0, 0, 0, 0.6);
  position: relative;
  top: 0;
}
#footer .copyright .container a {
  margin: 0 5px;
}
#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}
#footer .copyright .container .left {
  width: 100%;
  position: relative;
  top: 0;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 10px;
}
@media screen and (max-width: 1450px) {
  #banner .swiper ul li .container .semiBold {
    width: 55%;
  }
  #footer .ftop form input {
    padding-left: 9px;
  }
}
@media (max-width: 1250px) {
  #banner .swiper ul li .container .semiBold {
    width: 60%;
  }
  #footer .ftop form input {
    width: 49.5%;
    margin-bottom: 15px;
  }
  #footer .ftop form input.textarea {
    width: 49.5%;
  }
  #footer ul.fCont li.list2 {
    display: none;
  }
}
@media (max-width: 1000px) {
  #banner .swiper ul li .container .semiBold {
    width: 70%;
  }
  #index-body .init-1 .container .leftImg {
    margin-left: 0;
  }
  #index-body .init-3 .container .left {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #footer ul.fCont li.list {
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  #banner .swiper ul li .container .semiBold {
    width: 100%;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  #banner .swiper ul li .container .Hbtn {
    margin-bottom: 20px;
  }
  #footer .ftop form input {
    width: 100%;
  }
  #footer .ftop form input.textarea {
    width: 100%;
  }
}
@media (max-width: 500px) {
  #banner .swiper ul li img.img {
    min-height: 300px;
    object-fit: cover;
    object-position: center;
  }
  #index-body .init-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/*inner*/

.inner-banner {
  margin-top: 90px;
  min-height: 400px;
  padding: 10px 0;
  -o-background-size: cover;
  background-size: cover;
}
.inner-banner .container .catNmae {
  font-weight: bold;
  color: #424242;
  line-height: 1.6;
}
.inner-banner .container .mbx {
  color: #666666;
  line-height: 2;
}
.inner-banner .container .mbx a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.inner-banner .container .mbx a:hover {
  color: var(--color);
}

.m-page a,
.m-page span {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e9e9e9;
  line-height: 46px;
  text-align: center;
  font-weight: 500;
  margin: 5px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.m-page a:hover,
.m-page span:hover {
  border: 1px solid var(--color);
  color: #fff;
  background-color: var(--color);
}
.m-page .current {
  border: 1px solid var(--color);
  color: #fff;
  background-color: var(--color);
}

.product-page .init-2 .fl-list {
  display: inline-block;
  position: relative;
  width: 370px;
  margin-top: 10px;
  border: solid 1px #474747;
  text-align: left;
  padding: 20px 40px 20px 28px;
  cursor: pointer;
  color: #474747;
  font-weight: 600;
}
.product-page .init-2 .fl-list span {
  display: block;
  position: relative;
}
.product-page .init-2 .fl-list span em {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-page .init-2 .fl-list span i {
  position: absolute;
  line-height: 1;
  font-size: 30px;
  top: -4px;
  right: -20px;
}
.product-page .init-2 .fl-list ul {
  background-color: #fff;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  opacity: 0;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.product-page .init-2 .fl-list ul li {
  font-size: 14px;
  padding: 10px;
  line-height: 2;
}
.product-page .init-2 .fl-list ul li a {
  display: block;
}
.product-page .init-2 .fl-list ul li a:hover {
  color: var(--color);
}
.product-page .init-2 .fl-list:hover ul {
  opacity: 1;
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
.product-page .init-2 .product-search {
  margin-left: 70px;
}
.product-page .init-2 .product-search form {
  height: 64px;
  position: relative;
  font-weight: 700;
  margin-top: 10px;
}
.product-page .init-2 .product-search form .list {
  width: 360px;
  padding: 20px 40px 20px 28px;
  border: solid 1px #474747;
  position: relative;
}
.product-page .init-2 .product-search form .btn {
  width: 75px;
  background-color: var(--color);
  border: none;
  border-radius: 0;
  -o-background-size: 24px;
  background-size: 24px;
}
.product-page .init-3 .container .tipsTitle {
  font-weight: bold;
  text-align: center;
}
.product-page .init-3 .container .content ul {
  margin: 0 -15px;
}
.product-page .init-3 .container .content ul li {
  margin-top: 20px;
  padding: 0 15px;
}
.product-page .init-3 .container .content ul li .box .img {
  display: block;
  border: solid 1px #e9e9e9;
  position: relative;
}
.product-page .init-3 .container .content ul li .box .img img {
  width: 100%;
  transition: all .5s;
}
.product-page .init-3 .container .content ul li .box .img .img2{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .5s;
}
.product-page .init-3 .container .content ul li .box .title {
  display: block;
  font-weight: 500;
  line-height: 1.8;
  min-height: 3.5rem;
}
.product-page .init-3 .container .content ul li .box:hover .img1{
  opacity: 0;
}
.product-page .init-3 .container .content ul li .box:hover .img2{
  opacity: 1;
}
.product-page .init-3 .container .content ul li .box .moreC .more {
  text-transform: uppercase;
  line-height: 1;
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreText {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreImg {
  background-color: var(--color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.product-page .init-3 .container .content ul li .box .moreC .more .moreImg .moreImg2 {
  width: 14px;
  height: 8px;
  display: block;
}
.product-page .init-3 .container .content ul li .box:hover .title {
  color: var(--color);
}
.product-page .init-3 .container .content ul li .box:hover .moreC .more .moreText {
  border-bottom: 1px solid var(--color);
  color: var(--color);
}
.product-page .init-3 .container .content ul li .box:hover .moreC .more .moreImg {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: var(--color);
}
.product-page .init-3 .container .catDes {
  color: #666666;
  max-height: 166px;
  overflow-y: auto;
  padding-right: 6px;
  line-height: 30px;
}

.publicPro .init-1 .container .left {
  width: 58%;
}

.publicPro .init-1 .container .left .play {
  z-index: 3;
  width: 104px;
  height: 104px;
  position: absolute;
  top: -50px;
  right: -50px;
  cursor: pointer;
}

.publicPro .init-1 .container .left .play .playImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.publicPro .init-1 .container .left .play .playImg2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-animation: rotAni3 10s linear infinite;
  -moz-animation: rotAni3 10s linear infinite;
  -o-animation: rotAni3 10s linear infinite;
  animation: rotAni3 10s linear infinite;
}

.publicPro .init-1 .container .left .play .playImg2 .playImg3 {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-filter: grayscale(1) brightness(10);
  filter: grayscale(1) brightness(10);
}

.publicPro .init-1 .container .left .play i {
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-left: 8px;
}

.publicPro .init-1 .container .left .img {
  width: 100%;
}

.publicPro .init-1 .container .left .cont {
  padding: 0 20px 0 50px;
}

.publicPro .init-1 .container .left .cont .title {
  font-weight: bold;
  
  line-height: 1.6;
}

.publicPro .init-1 .container .left .cont .des {
  color: #666666;
  line-height: 1.8;
}

.publicPro .init-1 .container .right {
  margin-top: 190px;
  width: 38%;
}

.publicPro .init-1 .container .right .img {
  width: 100%;
}

.publicPro .init-2 {
  background-color: #f0efeb;
}

.publicPro .init-2 .container .tipsTitle {
  font-weight: bold;
  
  text-align: center;
}

.publicPro .init-2 .container .content ul li {
  width: 25%;
}

.publicPro .init-3 .container .tipsTitle {
  text-align: center;
  font-weight: bold;
  
}

.publicPro .init-3 .container .content ul li .box .title .cir {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color);
  margin-top: 6px;
}

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

.publicPro .init-3 .container .content ul li .box .title .titleText {
  width: -webkit-calc(70%);
  width: -moz-calc(70%);
  width: calc(100% - 30px);
  margin-left: auto;
  font-weight: 700;
  
  line-height: 1.8;
}

.publicPro .init-3 .container .content ul li .box .des {
  color: #666666;
  /*overflow: hidden;*/
  -o-text-overflow: ellipsis;
  /*text-overflow: ellipsis;*/
  display: -webkit-box;
  /*-webkit-line-clamp: 3;*/
  -webkit-box-orient: vertical;
  line-height: 30px;
}

.publicPro .init-3 .container .content ul li .box .moreC {
  padding-top: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.publicPro .init-3 .container .content ul li .box .moreC .more {
  text-transform: uppercase;
  margin-top: 10px;
  width: 190px;
  padding: 10px;
  text-align: center;
  background-color: var(--color);
  color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.publicPro .init-3 .container .content ul li .box .moreC .more:hover {
  background-color: #000;
}

.publicPro .init-3 .container .content ul li .box .moreC .time {
  
  color: var(--color);
  line-height: 28px;
}

.publicPro .init-4 {
  background-color: #f0efeb;
}

.publicPro .init-4 .container .tipsTitle {
  font-weight: bold;
  
}

.publicPro .init-4 .container form input {
  padding: 10px 10px;
  border: 1px solid #f2f2f2;
  width: 49%;
  margin-top: 20px;
}

.publicPro .init-4 .container form textarea {
  width: 100%;
  border: 1px solid #f2f2f2;
  margin-top: 20px;
  padding: 10px 10px;
}

.publicPro .init-4 .container form .btn {
  text-transform: uppercase;
  padding: 10px 30px;
  cursor: pointer;
  background-color: var(--color);
  color: #fff;
  margin-top: 20px;
}

.publicPro .init-4 .container form .btn:hover {
  background-color: #000;
}

.publicPro .init-5 .container .tipsTitle {
  font-weight: bold;
  
}

.publicPro .init-5 .container .text {
  color: #666;
}

.product-page .pro_init_1 {
  padding-top: 90px;
}

.product-page .pro_init_1 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-page .pro_init_1 .container .left {
  width: 49%;
  overflow: hidden;
}

.product-page .pro_init_1 .container .left .smallImg {
  width: 22.6%;
  float: left;
}

.product-page .pro_init_1 .container .left .smallImg ul {
  margin: -10px;
}

.product-page .pro_init_1 .container .left .smallImg ul .slick-track {
  display: block;
}

.product-page .pro_init_1 .container .left .smallImg ul li {
  padding: 10px;
}

.product-page .pro_init_1 .container .left .smallImg ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-page .pro_init_1 .container .left .smallImg ul li a img {
  display: block;
  border: 1px solid #dcdcdc;
}

.product-page .pro_init_1 .container .left .bigImg {
  width: 77.4%;
  padding-left: 4%;
  display: inline-block;
}

.product-page .pro_init_1 .container .left .bigImg img {
  width: 100%;
}

.product-page .pro_init_1 .container .left .bigImg ul li {
  padding: 1px;

}

.product-page .pro_init_1 .container .left .bigImg ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.product-page .pro_init_1 .container .left .bigImg img {
  border: 1px solid #dcdcdc;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow {
  width: 40px;
  height: 40px;
  background: #fffef9;
  color: transparent;
  font-size: 0;
  border: none;
  opacity: .8;
  cursor: pointer;
  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;
}

.product-page .pro_init_1 .container .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;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev {
  left: 12px;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-prev:after {
  background-image: url("../images/banner-btn-l.png");
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next {
  right: 12px;
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow.slick-next:after {
  background-image: url("../images/banner-btn-r.png");
}

.product-page .pro_init_1 .container .left .bigImg .slick-arrow:hover {
  background: var(--color);
}

.product-page .pro_init_1 .container .left .big_img {
  width: 100%;
  display: block;
}

.product-page .pro_init_1 .container .left .big_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-page .pro_init_1 .container .right .share ul li {
  width: 45px;
  text-align: center;
  margin-right: 10px;
  background: white;
  color: black;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.product-page .pro_init_1 .container .right .share ul li a {
  display: block;
}

.product-page .pro_init_1 .container .right .share ul li:hover {
  background: var(--color);
}

.product-page .pro_init_1 .container .shangxia {
  width: 100%;
  justify-content: space-between;
}

.product-page .pro_init_1 .container .shangxia a {
  display: block;
  padding-right: 10px;
  margin-top: 10px;
}



.product-page .pro_init_1 .container .left .swiper {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
  height: 115px;
  display: block;
}

.product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-page .pro_init_1 .container .right {
  width: 43%;
}

.product-page .pro_init_1 .container .right .sub_img {
  width: 36px;
  margin-bottom: 15px;
}

.product-page .pro_init_1 .container .right .text_1 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 32px;
  color: #a8a8a8;
  font-weight: 500;
}

.product-page .pro_init_1 .container .right .text_2 {
  font-size: 36px;
  line-height: 1.4;
  color: #4a4a4a;
  font-weight: bold;
  justify-content: space-between;
  
}

.product-page .pro_init_1 .container .right .text_2 .text1 {
  margin-top: 10px;
  /*width: calc(100% - 160px);*/
}

.product-page .pro_init_1 .container .right .text_2 .img2 {
  width: 150px;
  margin-left: 10px;
  margin-top: 10px;
}

.product-page .pro_init_1 .container .right .shangxia a {
  display: block;
}

.product-page .pro_init_1 .container .right .cont_list {
  margin-top: 20px;
}

.product-page .pro_init_1 .container .right .cont_list .list {
  position: relative;
}

.product-page .pro_init_1 .container .right .cont_list .list .title {
  font-size: 18px;
  padding: 25px 0;
  padding-right: 30px;
  border-top: 1px solid #d6d6d6;
  border-bottom: 1px solid #d6d6d6;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .title span {
  color: #4a4a4a;
  font-weight: bold;
  text-transform: uppercase;
}

.product-page .pro_init_1 .container .right .cont_list .list .title i {
  width: 20px;
  position: absolute;
  top: 22px;
  right: 0;
  font-size: 30px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.product-page .pro_init_1 .container .right .cont_list .list .content {
  /*padding: 40px 0 0;*/
  font-size: 16px;
  color: #3f3f3f;
  line-height: 2;
  /*display: none;*/
  max-height: 510px;
  overflow: auto;
  padding-right: 10px;
}

.product-page .pro_init_1 .container .right .cont_list .list .content table {
  width: 100% !important;
}

.product-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar {
  background: var(--color);
  height: 2px;
  width: 2px;
}

.product-page .pro_init_1 .container .right .cont_list .list .content table::-webkit-scrollbar-thumb {
  background: var(--color);
  height: 2px;
}

.product-page .pro_init_1 .container .right .cont_list .list .content::-webkit-scrollbar-thumb {
  background: var(--color);
  height: 2px;
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list.active .title i {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.product-page .pro_init_1 .container .right .cont_list .list:last-child .title {
  border-bottom: 1px solid #d6d6d6;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 17px;
  line-height: 1.6;
}

.product-page .pro_init_1 .container .right .cont_list .list .content ul li:last-child {
  margin-bottom: 0;
}

.product-page .pro_init_1 .container .right .btn {
  min-width: 210px;
  text-align: center;
  background: var(--color);
  display: inline-block;
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 10px;
  transition: all .5s;
}

.product-page .pro_init_1 .container .right .btn:hover {
  border-radius: 10px;
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}

.product-page .pro_init_1 .container .right .more {
  margin-top: 30px;
}

.product-page .pro_init_1 .container .right .more_cont {
  margin-top: 55px;
  border-color: #000;
  color: #000;
}

.product-page .pro_init_1 .container .right .editCont {
  justify-content: space-between;
}

.product-page .pro_init_1 .container .right .editCont .list {
  margin-top: 20px;
  cursor: pointer;
}

.product-page .pro_init_1 .container .right .editCont .list .img {
  width: 30px;
  height: 30px;
  filter: grayscale(1);
  transition: all .5s;
}

.product-page .pro_init_1 .container .right .editCont .list .text {
  width: calc(100% - 30px);
  padding-left: 10px;
  font-size: 18px;
}

.product-page .pro_init_1 .container .right .editCont .list .text span {
  border-bottom: 1px solid rgba(235, 99, 12, 0);
  transition: all .5s;
}

.product-page .pro_init_1 .container .right .editCont .list:hover .img {
  filter: grayscale(0);
}

.product-page .pro_init_1 .container .right .editCont .list:hover .text span {
  border-bottom: 1px solid rgba(235, 99, 12, 1);
  color: rgba(235, 99, 12, 1);
}

.product-page .pro_init_1 .container .left .colorCont {
  text-align: left;
}

.product-page .pro_init_1 .container .left .colorCont .tips {
  font-weight: bold;
}

.product-page .pro_init_1 .container .left .colorCont ul {
  margin: 0 -8px;
}

.product-page .pro_init_1 .container .left .colorCont ul li {
  padding: 0 8px;
  margin-top: 10px;
}

.product-page .pro_init_1 .container .left .colorCont ul li .box .img {
  height: 60px;
  background-size: cover;
}

.product-page .pro_init_1 .container .left .colorCont ul li .box .text {
  text-align: center;
  margin-top: 10px;
}

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

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

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

.product-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: var(--color);
}

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

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

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

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

.product-page .prodet-2 .ret .content dl dd {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #eee;
  background: #f8f8f8;
}

.product-page .prodet-2 .ret .content dl dd h4 {
  font-size: 20px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-page .prodet-2 .ret .content dl dd .con {
  padding-top: 10px;
  border-top: 1px solid #eee;
  font-size: 18px;
  line-height: 1.8;
}


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

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

.product-page .form ul li input,
.product-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;
}

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

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

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

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

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

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

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

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

.product-page .form ul li input[type="submit"] {
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 5px;
  background: #000;
  background: var(--color);
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  width: auto;
  border: none;
}

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

.releted-product .tipsTitle {
  text-align: center;
  
  font-weight: bold;
}

.releted-product .content ul {
  margin: 0 -15px;
}

.releted-product .content ul li {
  padding: 0 15px;
}

.releted-product .content ul li .img a {
  border: 1px solid #dadada;
  background: #fff;
}

.releted-product .content ul li .img a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.releted-product .content ul li .text {
  margin-top: 20px;
  color: #000;
  line-height: 1.8;
  min-height: 5rem;
}

.releted-product .content ul li .text:hover {
  color: var(--color);
}
@media screen and (max-width: 1800px) {

  .product-page .form ul li input,
  .product-page .form ul li textarea {
    padding: 15px;
  }
}
@media screen and (max-width: 1500px) {
  .product-page .pro_init_1 .container .right .share ul li {
    width: 35px;
    height: 35px;
    line-height: 36px;
  }

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

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

  .product-page .form ul li input,
  .product-page .form ul li textarea {
    font-size: 16px;
  }
}
@media (max-width: 1450px) {
  .publicPro .init-3 .container .content ul li .box .title .cir {
    margin-top: 4px;
  }
}
@media (max-width: 1250px) {
  #innerMobileBanner .banner2 {
    background-image: -webkit-linear-gradient(250deg, var(--color), rgba(0, 0, 0, .05));
    background-image: -moz-linear-gradient(250deg,var(--color),rgba(0,0,0,.05));
    background-image: linear-gradient(-160deg, var(--color), rgba(0, 0, 0, .05));
  }
  .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 2.5%;
  }

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

  .product-page .form ul {
    margin: -10px;
  }
  .releted-product .content ul li .img a {
    height: auto;
  }
}
@media (max-width: 1000px) {
  .product-page .init-3 .container .content ul li {
    width: 33.33%;
  }
    .publicPro .init-1 .container .left {
    width: 100%;
  }

  .publicPro .init-1 .container .left .cont {
    padding: 0;
  }

  .publicPro .init-1 .container .right {
    margin-top: 20px;
    width: 100%;
  }
  .publicPro .init-1 .container .left .play {
    right: 0;
  }
  .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 4%;
  }

  .product-page .pro_init_1 .container .left .bigImg {
    padding-left: 2%;
  }

  .product-page .pro_init_1 .container .left .smallImg {
    display: none;
  }

  .product-page .pro_init_1 .container .left .bigImg {
    width: 100%;
    padding-left: 0;
  }

  .product-page .pro_init_1 .container .left {
    width: 100%;
  }

  .product-page .pro_init_1 .container .right {
    width: 100%;
    margin-top: 30px;
  }

  .product-page .pro_init_1 .container .right {
    text-align: left;
  }

  .product-page .pro_init_1 .container .right .sub_img {
    display: block;
    margin: auto;
  }

  .product-page .pro_init_1 .container .right .more {
    margin: auto;
    margin-top: 40px;
  }


  .product-page .pro_init_1 {
    margin-top: 40px;
    padding-top: 40px;
  }

  .product-page .pro_init_1 .container .left .swiper .swiper-wrapper .swiper-slide {
    height: 90vw;
  }

  .product-page .pro_init_1 .container .right .text_1 {
    margin-top: 10px;
    font-size: 16px;
  }

  .product-page .pro_init_1 .container .right .text_2 {
    font-size: 22px;
    line-height: 40px;
    margin-top: 10px;
  }

  .product-page .pro_init_1 .container .right .cont_list {
    margin-top: 20px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title {
    padding: 15px 0;
    font-size: 18px;
    padding-right: 25px;
    padding-bottom: 5px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .title i {
    top: 16px;
    font-size: 24px;
  }

  .product-page .pro_init_1 .container .right .cont_list .list .content {
    padding: 20px 0;
  }

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

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

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

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

  .product-page .prodet-2 .ret .content {
    font-size: 14px;
    line-height: 2;
    margin-top: 20px;
  }

  .product-page .prodet-2 .ret .det {
    overflow-x: auto;
  }

  .product-page .prodet-2 .ret .det table {
    table-layout: auto;
  }

  .product-page .prodet-2 .ret .det table td {
    min-width: 200px;
    width: auto;
    font-size: 14px;
    line-height: 28px;

  }

  .product-page .form ul li input,
  .product-page .form ul li textarea {
    padding: 10px;
  }

  .product-page .form ul li input[type="submit"] {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
  }
  .product-page .pro_init_1 .container .left .colorCont ul li {
    width: 20%;
  }
}
@media (max-width: 700px){
  .product-page .init-3 .container .content ul li {
    width: 50%;
  }
    .publicPro .init-4 .container form input {
    width: 100%;
  }
  .product-page .init-2 .product-search {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .product-page .init-2 .product-search {
    width: 100%;
  }
  .product-page .init-2 .fl-list {
    width: 100%;
  }
  .product-page .init-3 .container .content ul li {
    width: 100%;
  }
  .product-page .init-2 .product-search form .list {
    padding: 20px 15px;
    width: calc(100% - 60px);
  }
  .product-page .init-2 .product-search form .btn{
    width: 60px;
  }
  .product-page .pro_init_1 .container .left .colorCont ul li {
    width: 50%;
  }

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

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

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

  .product-page .form ul li input,
  .product-page .form ul li textarea {
    width: 100%;
  }
  .product-page .init-3 .container .content ul li .box .title {
    font-size: 16px;
  }
}
/*about*/

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

.about-page .init-1 .sub {
  width: 1600px;
  height: 360px;
  position: absolute;
  top: 90px;
  right: -60px;
  background-position: right center;
}

.about-page .init-1 .container .content {
  position: relative;
  padding-right: 110px;
}

.about-page .init-1 .container .content .tipsTitle {
  font-weight: bold;
  
}

.about-page .init-1 .container .content .des {
  color: #666666;
  line-height: 30px;
}

.about-page .init-1 .container .listCont {
  width: 100%;
}

.about-page .init-1 .container .listCont ul {
  padding-top: 30px;
}

.about-page .init-1 .container .listCont ul li {
  padding: 0 30px;
  margin-top: 20px;
}

.about-page .init-1 .container .listCont ul li .box {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.about-page .init-1 .container .listCont ul li .box .top {
  line-height: 1;
}

.about-page .init-1 .container .listCont ul li .box .top .num {
  text-transform: uppercase;
  font-weight: bold;
  
  color: var(--color);
  position: relative;
}

.about-page .init-1 .container .listCont ul li .box .top .num .sub2 {
  position: relative;
  z-index: 2;
}

.about-page .init-1 .container .listCont ul li .box .top .num .sub1 {
  position: absolute;
  top: 4px;
  left: 2px;
  z-index: 1;
  color: #fff;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: var(--color);
}

.about-page .init-1 .container .listCont ul li .box .top .sub3 {
  font-size: 30px;
  font-weight: bold;
  position: relative;
  top: -10px;
}

.about-page .init-1 .container .listCont ul li .box .bottom {
  color: #7c7c7c;
  margin-top: 10px;
  line-height: 28px;
}

.about-page .init-1 .container .listCont ul li .box:hover {
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.about-page .init-2 .container {
  max-width: 1510px;
}

.about-page .init-2 .container .left {
  width: 58%;
}

.about-page .init-2 .container .left .play {
  z-index: 3;
  width: 104px;
  height: 104px;
  position: absolute;
  top: -50px;
  right: -50px;
  cursor: pointer;
}

.about-page .init-2 .container .left .play .playImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-page .init-2 .container .left .play .playImg2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-animation: rotAni3 10s linear infinite;
  -moz-animation: rotAni3 10s linear infinite;
  -o-animation: rotAni3 10s linear infinite;
  animation: rotAni3 10s linear infinite;
}

.about-page .init-2 .container .left .play .playImg2 .playImg3 {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  -webkit-filter: grayscale(1) brightness(10);
  filter: grayscale(1) brightness(10);
}

.about-page .init-2 .container .left .play i {
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-left: 8px;
}

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

.about-page .init-2 .container .left .cont {
  padding: 0 20px 0 50px;
}

.about-page .init-2 .container .left .cont .title {
  font-weight: bold;
  
}

.about-page .init-2 .container .left .cont .des {
  color: #666666;
  line-height: 1.8;
}

.about-page .init-2 .container .right {
  margin-top: 190px;
  width: 38%;
}

.about-page .init-2 .container .right .img {
  width: 100%;
}

.about-page .init-3 {
  position: relative;
  z-index: 2;
}

.about-page .init-3 .shadow {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--color);
}

.about-page .init-3 .container .left {
  width: 60%;
}

.about-page .init-3 .container .left img {
  max-width: 2000px;
  width: -webkit-calc(200%);
  width: -moz-calc(200%);
  width: calc(100% + 100px);
  position: relative;
  left: -100px;
}

.about-page .init-3 .container .right {
  width: 40%;
  padding: 40px 0 30px 60px;
  color: #fff;
}

.about-page .init-3 .container .right .tipsTitle {
  font-weight: bold;
  
}

.about-page .init-4 .container .content {
  position: relative;
  max-width: 840px;
  margin: auto;
  text-align: center;
}

.about-page .init-4 .container .content img {
  display: block;
  margin: auto;
}

.about-page .init-4 .container .content .cont {
  max-width: 570px;
  margin: auto;
}

.about-page .init-4 .container .content .title {
  font-weight: bold;
  
}

.about-page .init-4 .container .content .title2 {
  font-weight: bold;
  color: var(--color);
}

.about-page .init-4 .container .content .des {
  color: var(--color);
  text-transform: uppercase;
  
  font-style: italic;
}

.about-page .init-4 .container .content .slickBtn div {
  position: absolute;
  width: 28px;
  height: 20px;
  bottom: 10px;
  right: 110px;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0.5;
}

.about-page .init-4 .container .content .slickBtn div:hover {
  opacity: 1;
}

.about-page .init-4 .container .content .slickBtn .prev {
  left: 110px;
  right: unset;
}

.about-page .init-5 .container .titleC .left {
  max-width: 870px;
}

.about-page .init-5 .container .titleC .left .tipsTitle {
  font-weight: bold;
  
}

.about-page .init-5 .container .titleC .left .des {
  color: #666666;
  line-height: 1.8;
}

.about-page .init-5 .container .titleC .more {
  border: 2px solid #000;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 6px 20px;
}

.about-page .init-5 .container .titleC .more .moreImg {
  width: 18px;
  height: 18px;
  margin-left: 12px;
}

.about-page .init-5 .container .titleC .more:hover {
  background-color: var(--color);
  color: #fff;
}

.about-page .init-5 .container .titleC .more:hover .moreImg {
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}

.about-page .init-6 {
  position: relative;
}

.about-page .init-6 .container {
  max-width: 1450px;
}

.about-page .init-6 .container .img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 16%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-page .init-6 .container .content {
  padding: 120px 0;
}

.about-page .init-6 .container .content .left {
  position: relative;
  width: 52%;
  z-index: 2;
}

.about-page .init-6 .container .content .left .sub {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -60px;
  right: -60px;
  border: 2px solid var(--color);
  z-index: -1;
}

.about-page .init-6 .container .content .left .cont {
  background-color: var(--color);
  color: #fff;
  padding: 70px 50px;
  z-index: 2;
}

.about-page .init-6 .container .content .left .tipsTitle {
  font-weight: bold;
  
}

.about-page .init-6 .container .content .right {
  width: 48%;
  position: relative;
  z-index: 3;
}

.about-page .init-6 .container .content .right .more {
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.about-page .init-6 .container .content .right .more .sub {
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.about-page .init-6 .container .content .right .more:hover {
  letter-spacing: 4px;
}

.about-page .init-6 .container .content .right .more:hover .sub {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
@media (max-width: 1450px){
  .about-page .init-1 .sub {
    width: 100vw;
    height: 300px;
  }
}
@media (max-width: 1000px) {
  .about-page .init-2 .container .left .play {
    right: 0;
  }

  .about-page .init-1 .sub{
    display: none;
  }
  .about-page .init-1 .container .content {
    padding: 0;
  }

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

  .about-page .init-2 .container .left .cont {
    padding: 0;
  }

  .about-page .init-2 .container .right {
    width: 100%;
    margin-top: 20px;
  }

  .about-page .init-3 {
    padding: 20px 0;
  }

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

  .about-page .init-3 .container .left {
    width: 100%;
  }

  .about-page .init-3 .container .left img {
    width: 100%;
    left: 0;
  }

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

  .about-page .init-4 .container .content .slickBtn {
    height: 40px;
  }

  .about-page .init-4 .container .content .slickBtn div {
    right: 0;
  }

  .about-page .init-4 .container .content .slickBtn .prev {
    left: 0;
  }

  .about-page .init-6 .container .img1 {
    width: 100%;
    left: 0;
    height: auto;
    position: relative;
  }

  .about-page .init-6 .container .content {
    padding: 0;
    width: 100%;
  }

  .about-page .init-6 .container .content .left {
    width: 100%;
  }

  .about-page .init-6 .container .content .left .sub {
    display: none;
  }

  .about-page .init-6 .container .content .left .cont {
    padding: 20px 10px;
  }

  .about-page .init-6 .container .content .right {
    width: 100%;
  }

  .about-page .init-6 .container .content .right .more {
    color: #000;
  }

  .about-page .init-6 .container .content .right .more .sub {
    background: #000;
    margin-top: 10px;
  }

  .about-page .init-6 .container .content .right .more:hover {
    letter-spacing: 1px;
  }
}

.gallery-page .init-1 .container .cont {
  border-bottom: 1px solid #d2d2d2;
}

.gallery-page .init-1 .container .cont li {
  margin-right: 40px;
}

.gallery-page .init-1 .container .cont li:last-child {
  margin-right: 0;
}

.gallery-page .init-1 .container .cont li .box a {
  padding: 8px 20px;
  font-size: 20px;
  display: block;
  position: relative;
  font-weight: 600;
}

.gallery-page .init-1 .container .cont li .box a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--color);
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}

.gallery-page .init-1 .container .cont li .box a.active::before,
.gallery-page .init-1 .container .cont li .box a:hover::before {
  opacity: 1;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}

.gallery-page .init-2 {
  padding-top: 30px;
}

.gallery-page .init-2 .container ul {
  margin: 0 -25px;
}

.gallery-page .init-2 .container ul>p {
  font-size: 16px;
  letter-spacing: 0;
  margin: 20px;
}

.gallery-page .init-2 .container ul li {
  margin-top: 50px;
  padding: 0 25px;
}

.gallery-page .init-2 .container ul li .box video {
  display: block;
  width: 100%;
}

.gallery-page .init-2 .container ul li .box .title {
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

.gallery-page .init-2 .container ul li .box .img {
  position: relative;
  display: block;
}

.gallery-page .init-2 .container ul li .box .img img {
  width: 100%;
}

.gallery-page .init-2 .container ul li .box .img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
}

.gallery-page .init-2 .container ul li .box:hover .img::before {
  -webkit-animation: circle 0.75s;
  -moz-animation: circle 0.75s;
  -o-animation: circle 0.75s;
  animation: circle 0.75s;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3 sease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@keyframes circle {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@media (max-width: 1000px) {
  .gallery-page .init-1 {
    display: none;
  }

  .gallery-page .init-2 {
    padding-top: 0;
  }
}

@media (max-width: 500px) {
  .gallery-page .init-2 .container ul li {
    margin-top: 20px;
  }
}

.faq-page .faq-1 .list ul li {
  border: 1px solid #dcdcdc;
  padding: 1em 2.3em;
}

.faq-page .faq-1 .list ul li .h6 {
  font-weight: bold;
  
  line-height: 1.8;
}

.faq-page .faq-1 .list ul li i {
  cursor: pointer;
  cursor: hand;
  font-size: 1.2em;
  line-height: 1;
}

.faq-page .faq-1 .list ul li .text {
  line-height: 2;
}

.faq-page .faq-1 .list ul li.active {
  background-color: var(--color);
  color: white;
}

.faq-page .faq-1 .list ul li.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-page .faq-2 .form form {
  height: 4.375em;
  border-radius: 2.1875em;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 3em;
  padding: .8em 2em .8em 3em;
  border: 1px solid #dcdcdc;
  background-color: transparent;
}

.faq-page .faq-2 .form form .logo2 {
  max-width: 60px;
}

.faq-page .faq-2 .form form .logo2 a {
  height: 100%;
}

.faq-page .faq-2 .form form .logo2 a img {
  height: inherit;
}

.faq-page .faq-2 .form form .logo2,
.faq-page .faq-2 .form form button {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq-page .faq-2 .form form button {
  width: 4.375em;
  height: 4.375em;
  border: none;
  color: var(--color);
  background-color: transparent;
}

.faq-page .faq-2 .form form button i {
  font-size: 2em;
}

.faq-page .faq-2 .form form ul {
  width: 100%;
  padding: 0 .5%;
}

.faq-page .faq-2 .form form ul li {
  width: 100%;
}

.faq-page .faq-2 .form form ul li input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: .4em 1.2em;
  border-left: 1px solid #d2d2d2;
}

.faq-page .faq-2 .form form ul li:first-child input {
  border-left: none;
}

.faq-page .faq-2 .text a {
  color: var(--color);
  text-decoration: underline;
}

@media screen and (max-width: 700px) {
  .faq-page .faq-2 .form form {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
  }

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

  .faq-page .faq-2 .form form ul li {
    width: 100%;
    margin: .5em 0;
  }

  .faq-page .faq-2 .form form ul li:first-child input {
    border-left: 1px solid #d2d2d2;
  }

  .faq-page .faq-2 .form form button {
    height: 3em;
    width: 3em;
  }

  .faq-page .faq-2 .form form {
    padding: 1em;
    border-radius: .5em;
  }
}

@media screen and (max-width: 500px) {
  .faq-page .faq-1 .list ul li {
    padding: 5%;
  }
}

.news-page .news-1 .box {
  padding: 3% 5%;
  background-color: var(--color);
  color: white;
}

.news-page .news-1 .box form {
  height: 3.75em;
  border: 1px solid white;
}

.news-page .news-1 .box form input {
  width: 100%;
  border: none;
  background-color: transparent;
  padding: 0 1.8em;
}

.news-page .news-1 .box form input::-webkit-input-placeholder {
  color: white;
}

.news-page .news-1 .box form input:-moz-placeholder {
  color: white;
}

.news-page .news-1 .box form input::-moz-placeholder {
  color: white;
}

.news-page .news-1 .box form input:-ms-input-placeholder {
  color: white;
}

.news-page .news-1 .box form input::placeholder {
  color: white;
}

.news-page .news-1 .box form button {
  width: 5.625em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: none;
  background-color: transparent;
}

.news-page .news-1 .box form button i {
  font-size: 2em;
}

.news-page .news-2 ul {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
}

.news-page .news-2 ul li {
  padding: 6% 10%;
  border: 1px solid #ccc;
  background-color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
}

.news-page .news-2 ul li:hover {
  -webkit-transform: translate(10px, -10px);
  -moz-transform: translate(10px, -10px);
  -ms-transform: translate(10px, -10px);
  transform: translate(10px, -10px);
  z-index: 1;
}
.news-page .news-2 ul li .Hbtn {
  background-color: rgba(223, 92, 92,.5);
  color: #fff;
}

.inner-page .sidebarLeft {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.inner-page .sidebarLeft .slide span.h6 {
  padding: 2% 4%;
  border: 1px solid #b1b1b1;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.inner-page .sidebarLeft .slide span.h6.active i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.inner-page .sidebarLeft .slide ul {
  padding: 6% 4%;
  border: 1px solid #b1b1b1;
  color: #9e9e9e;
  margin: -1px 0;
}

.inner-page .sidebarLeft .slide ul li {
  margin-bottom: 1.2em;
}

.inner-page .sidebarLeft .slide ul li i {
  width: 1.42857143em;
  height: 1.42857143em;
  border-radius: 3px;
  border: 1px solid #9e9e9e;
  margin-right: .5em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.inner-page .sidebarLeft .slide ul li i:before {
  font-size: 1.4em;
  opacity: 0;
}

.inner-page .sidebarLeft .slide ul li.active i:before {
  opacity: 1;
}

.inner-page .sidebarLeft .info {
  background-color: #f0f0f0;
  padding: 15% 10%;
}

.inner-page .sidebarLeft .nav {
  border: 1px solid #bebebe;
}

.inner-page .sidebarLeft .nav span.h6 {
  background-color: var(--color);
  color: white;
  padding: 10px 20px;
  line-height: 1.2;
}

.inner-page .sidebarLeft .nav ul li {
  border-top: 1px solid #bebebe;
}

.inner-page .sidebarLeft .nav ul li:first-child {
  border-top: none;
}

.inner-page .sidebarLeft .nav ul li a {
  padding: .8em 20px;
  display: block;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.inner-page .sidebarLeft .nav ul li a:hover {
  background-color: var(--color);
  color: white;
}

@media screen and (max-width: 1000px) {
  .news-page .news-1 .box i img {
    max-height: 40px;
  }

  .inner-page .sidebarLeft {
    display: none;
  }
}

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

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

.contact-page .contact-1 .left form ul li .box {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d1d0c8;
}

.contact-page .contact-1 .left form ul li .box input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 25px;
  font-size: 16px;
  line-height: 30px;
  color: rgba(0, 0, 0, .5);
}

.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::-ms-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 0 13px 36px;
  font-size: 16px;
  line-height: 30px;
  color: #7b7b7b;
}

.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea::-ms-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box textarea::placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box i {
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 20px;
}

.contact-page .contact-1 .left form ul li .box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.contact-page .contact-1 .left form ul li .more {
  font-weight: 500;
  cursor: pointer;
  color: #fff;
  line-height: 1.3;
  padding: 12px 24px;
  background-color: var(--color);
}

.contact-page .contact-1 .left form ul li .more p {
  color: #fff;
  font-size: 20px;
  margin-left: 0;
  padding-left: 0;
}

.contact-page .contact-1 .left form ul li .more .img {
  width: 14px;
  height: 14px;
  margin-left: 12px;
}

.contact-page .contact-1 .left form ul li .more i {
  margin-right: 6px;
  display: inline-block;
}

.contact-page .contact-1 .left form ul li .more:hover {
  background: #000;
}

.contact-page .contact-1 .left form ul li .more:hover .img {
  transform: rotate(45deg);
}

.contact-page .contact-1 .left form ul li .more input[type="submit"] {
  background: transparent;
  border: none;
  width: 100%;
  padding: 0 40px;
}

.contact-page .contact-1 .left form ul li p {
  display: inline-block;
  vertical-align: middle;
  padding-left: 26px;
  font-size: 14px;
  line-height: 28px;
  color: #83827f;
}

.contact-page .contact-1 .left form ul li p span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

.contact-page .contact-1 .left form ul li:hover .box::before {
  width: 100%;
}

.contact-page .contact-1 .left form ul li.active .box::before {
  width: 100%;
}

.contact-page .contact-1 .left form ul li.wid-100 {
  width: 100% !important;
}

.contact-page .contact-1 .right {
  padding-left: 7.65%;
}

.contact-page .contact-1 .right .tipsTitle2 {
  font-weight: bold;
  
}

.contact-page .contact-1 .right .title {
  line-height: 1.2;
}

.contact-page .contact-1 .right p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: #83827f;
  margin-top: 7px;
}

.contact-page .contact-1 .right .list {
  margin-top: 22px;
}

.contact-page .contact-1 .right .list ul li {
  color: rgba(0, 0, 0, .5);
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 10px;
}

.contact-page .contact-1 .right .list ul li i {
  display: inline-block;
  vertical-align: top;
  color: var(--color);
  font-size: 20px;
  width: 20px;
  text-align: center;
  margin-top: 5px;
}

.contact-page .contact-1 .right .list ul li span {
  display: inline-block;
  vertical-align: top;
  width: 90%;
  font-size: 16px;
  font-weight: 500;
  padding-left: 10px;
}

.contact-page .contact-1 .right .list ul li:last-child {
  margin-bottom: 0;
}

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

.contact-page .contact-2 #mapContainer {
  height: 520px;
}

.contact-page .contact-1 .left form ul li .box input::-webkit-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-webkit-input-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input::-moz-placeholder,
.contact-page .contact-1 .left form ul li .box textarea::-moz-placeholder {
  color: #83827f;
}

.contact-page .contact-1 .left form ul li .box input:-ms-input-placeholder,
.contact-page .contact-1 .left form ul li .box textarea:-ms-input-placeholder {
  color: #83827f;
}

@media (max-width: 1250px) {
  .contact-page .contact-1 .right {
    padding-left: 5.65%;
  }
}

@media (max-width: 1000px) {
  .contact-page {
    padding-top: 30px;
  }

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

  .contact-page .contact-1 .right {
    width: 100%;
    padding: 30px 0 0 0;
  }

  .contact-page .contact-2 {
    padding-top: 60px;
  }

  .contact-page .contact-2 #mapContainer {
    height: 360px;
  }
}

@media (max-width: 500px) {
  .contact-page .contact-1 .left form ul li .more {
    padding: 6px 12px;
  }

  .contact-page .contact-1 .left form ul li p {
    display: block;
  }

  .contact-page .contact-1 .left form ul {
    margin-bottom: -20px;
  }

  .contact-page .contact-1 .left form ul li {
    padding-bottom: 20px;
  }

  .contact-page .contact-1 .left form ul li .box input,
  .contact-page .contact-1 .left form ul li .box textarea {
    padding: 10px 0 10px 36px;
  }

  .contact-page .contact-1 .right p {
    font-size: 16px;
    line-height: 30px;
  }

  .contact-page .contact-1 .right .list ul li {
    font-size: 16px;
  }

  .contact-page .contact-2 #mapContainer {
    height: 260px;
  }

  .contact-page .contact-1 .left form ul li {
    width: 100%;
  }
}
