@font-face {
    font-family: 'mic';
    src: url('../fonts/MicrogrammaD-BoldExte.eot');
    src: url('../fonts/MicrogrammaD-BoldExte.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MicrogrammaD-BoldExte.woff2') format('woff2'),
        url('../fonts/MicrogrammaD-BoldExte.woff') format('woff'),
        url('../fonts/MicrogrammaD-BoldExte.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'pop';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'pop';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'pop';
    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: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'pop';
    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-style: normal;
    font-display: swap;
}
#Pop_UpsBtn {
  display: none !important;
}
#ewm canvas,
#ewm img {
  width: 100%;
  display: block;
}
#pups_shadowHc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_fromHc {
  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_fromHc 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_fromHc form {
  margin-top: 40px;
}
#pups_fromHc 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_fromHc i.close::after,
#pups_fromHc 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_fromHc i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_fromHc i.close:hover {
  background: var(--color);
}
#pups_fromHc i.close:hover::before,
#pups_fromHc i.close:hover::after {
  background: white;
}
#pups_fromHc ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_fromHc ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_fromHc ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_fromHc ul li input,
#pups_fromHc 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_fromHc ul li input:focus,
#pups_fromHc ul li textarea:focus {
  border-color: var(--color);
}
#pups_fromHc ul li textarea {
  height: 80px;
}
#pups_fromHc 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_fromHc ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_fromHc 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;
  right: 100%;
  top: 0;
  width: auto;
  min-height: 100%;
  padding: 0 5px;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 1;
  -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;
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
}
.right_nav_list ul li .cont .phoneCont {
  padding: 10px;
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 46px;
    height: 46px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: 22px;
  }
  .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;
  --color: #ff0300;
}
body {
  overflow-x: hidden;
  position: relative;
  font-family: 'pop';
  font-weight: 400;
  margin: 0 auto;
  color: #000000;
  background-repeat: repeat;
}
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;
  min-width: 120px;
  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: #ff9800;
  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: #ff9800;
}
#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;
}
.img_bg {
  -o-background-size: contain;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.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;
}
.t_1 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#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;
  padding: 40px 0;
  border-bottom: 1px solid rgba(220, 220, 220, 0);
}
#header > .nav > .menu .menu-box {
  position: relative;
  z-index: 1;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1800px;
}
#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;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header > .nav > .menu .menu-box .menu_c {
  z-index: 2;
  text-align: center;
  position: relative;
  margin-left: auto;
}
#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: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
  display: inline-block;
  position: relative;
  margin: 0 2px;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  margin-left: 40px;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.menu-item-has-children > a::after {
  margin-left: 0;
  content: "\e768";
  position: relative;
  font-family: "iconfont" !important;
  top: 3px;
  left: 0;
  font-size: 20px;
  line-height: 0.4;
}
#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,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > a {
  color: #fff;
}
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item:hover > a::before,
#header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item.active > 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: 10px 0;
  text-align: left;
  line-height: 1.2;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  z-index: 2;
  color: rgba(255, 255, 255, 0.8);
}
#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: 6px;
  left: 0;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  z-index: 2;
  opacity: 0;
  background: #fff;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(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;
  margin-left: 60px;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont {
  text-transform: uppercase;
}
#header > .nav > .menu .menu-box .right .lang_cont .c_cont .list {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 400;
}
#header > .nav > .menu .menu-box .right .lang_cont .lang {
  padding-top: 5px;
}
#header > .nav > .menu .menu-box .right .h-search {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  margin-left: 14px;
  background: #fff;
}
#header > .nav > .menu .menu-box .right .h-search .img {
  width: 24px;
  height: 24px;
}
#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;
}
#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.inner_active > .nav {
  background: #333;
  padding: 10px 0;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#header.active > .nav > .menu .logoShadow,
#header.inner_active > .nav > .menu .logoShadow {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
  background: #333;
}
@-webkit-keyframes rotAni {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotAni {
  0% {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotAni {
  0% {
    -o-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotAni {
  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);
  }
}
.moreCont {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.moreCont .moreText {
  position: relative;
  font-size: 18px;
  color: #5e5e5e;
  padding: 0 30px;
  min-width: 210px;
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  border-radius: 26px;
  border: 1px solid #ececec;
  display: inline-block;
  font-weight: 300;
  text-transform: uppercase;
}
.moreCont .moreText span {
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.moreCont .moreText::after {
  content: attr(data-text);
  position: absolute;
  padding: 0 30px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #5e5e5e;
  font-size: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}
.moreCont .moreArrow {
  background-color: #1c1c1c;
  display: inline-block;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-left: -20px;
  z-index: 2;
  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;
}
.moreCont .moreArrow .moreImg {
  width: 18px;
  height: 18px;
}
.moreCont:hover .moreText span {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
.moreCont:hover .moreText::after {
  top: 0;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.moreCont:hover .moreArrow {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: var(--color);
}
#banner {
  overflow: hidden;
  position: relative;
}
#banner .swiper {
  z-index: 2;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#banner .swiper .swiper-wrapper {
  height: 100%;
}
#banner .swiper .swiper-wrapper .swiper-slide {
  -o-background-size: 100% auto;
  background-size: 100% auto;
  position: relative;
  width: 100%;
  height: 54vw;
  max-height: 960px;
  -o-background-size: cover;
  background-size: cover;
  z-index: 2;
}
#banner .swiper .swiper-wrapper .swiper-slide .container {
  height: 100%;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box {
  position: relative;
  width: 100%;
  color: #fff;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont {
  width: 52%;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title {
  opacity: 0;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title2 {
  opacity: 0;
  line-height: 1;
  font-family: 'mic';
  text-transform: uppercase;
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .des {
  opacity: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont {
  opacity: 0;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont .moreText {
  color: #fff;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont .moreText::after {
  color: #fff;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont .moreArrow {
  background-color: #fff;
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont:hover .moreArrow {
  background-color: var(--color);
}
#banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .moreCont:hover .moreArrow .moreImg {
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}
#banner .swiper .swiper-wrapper .swiper-slide .container .imgC {
  width: 52%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -70px;
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .title,
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .des,
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .moreCont {
  -webkit-animation: fadeInRight 1s linear forwards;
  -moz-animation: fadeInRight 1s linear forwards;
  -o-animation: fadeInRight 1s linear forwards;
  animation: fadeInRight 1s linear forwards;
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .title2,
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .moreCont {
  -webkit-animation: fadeInLeft 1s linear forwards;
  -moz-animation: fadeInLeft 1s linear forwards;
  -o-animation: fadeInLeft 1s linear forwards;
  animation: fadeInLeft 1s linear forwards;
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .img {
  -webkit-animation: fadeInUpSmall 1s linear;
  -moz-animation: fadeInUpSmall 1s linear;
  -o-animation: fadeInUpSmall 1s linear;
  animation: fadeInUpSmall 1s linear;
}
#banner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .imgC {
  -webkit-animation: zoomIn 1s linear forwards;
  -moz-animation: zoomIn 1s linear forwards;
  -o-animation: zoomIn 1s linear forwards;
  animation: zoomIn 1s linear forwards;
}
#banner .sPage {
  position: absolute;
  width: 100%;
  bottom: 40px;
  left: 0;
  text-align: center;
  z-index: 2;
}
#banner .sPage .swiper-pagination-bullet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  opacity: 1;
}
#banner .sPage .swiper-pagination-bullet svg {
  position: absolute;
  top: 0;
  left: 0;
}
#banner .sPage .swiper-pagination-bullet svg .progress-bar {
  opacity: 0;
}
@-webkit-keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}
#banner .sPage .swiper-pagination-bullet .sub {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
}
#banner .sPage .swiper-pagination-bullet.swiper-pagination-bullet-active svg .progress-bar {
  opacity: 1;
  -webkit-animation: progress 6s ease-out forwards;
  -moz-animation: progress 6s ease-out forwards;
  -o-animation: progress 6s ease-out forwards;
  animation: progress 6s ease-out forwards;
}
.slick-list .slick-track {
  margin-left: 0;
}
.container {
  width: 1460px;
}
.tipsTitleC .titleC .line {
  width: 40px;
  height: 1px;
  background-color: #000;
  margin-top: 14px;
}
.tipsTitleC .titleC .titleText {
  width: -webkit-calc(60%);
  width: -moz-calc(60%);
  width: calc(100% - 40px);
  padding-left: 20px;
  font-weight: 600;
}
.tipsTitleC .titleC2 {
  font-family: 'mic';
  line-height: 1;
  text-transform: uppercase;
}
#index-body .init-1 .container .left {
  position: -webkit-sticky;
  position: sticky;
  top: 160px;
  left: 0;
  width: 50%;
  z-index: 2;
  padding-bottom: 140px;
}
#index-body .init-1 .container .left video{
  display: block;
  width: 100%;
  max-width: 400px;
}
#index-body .init-1 .container .left .waves {
  position: absolute;
  height: 700px;
  bottom: 0;
  left: -40%;
  width: 120vw;
  z-index: -1;
}
#index-body .init-1 .container .left .shadow {
  position: absolute;
  width: 120vw;
  height: 100px;
  bottom: 0;
  left: -40%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}
#index-body .init-1 .container .left .des {
  color: #5e5e5e;
}
#index-body .init-1 .container .left .content ul li {
  opacity: 0.6;
  cursor: pointer;
}
#index-body .init-1 .container .left .content ul li .box .img {
  width: 30px;
  height: 30px;
  margin-top: 4px;
}
#index-body .init-1 .container .left .content ul li .box .text {
  width: -webkit-calc(60%);
  width: -moz-calc(60%);
  width: calc(100% - 40px);
  font-weight: 500;
}
#index-body .init-1 .container .left .content ul li .box .text span {
  display: inline-block;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
#index-body .init-1 .container .left .content ul li:hover,
#index-body .init-1 .container .left .content ul li.active {
  opacity: 1;
}
#index-body .init-1 .container .left .content ul li:hover .text span,
#index-body .init-1 .container .left .content ul li.active .text span {
  border-bottom: 1px solid #000;
}
#index-body .init-1 .container .right {
  position: relative;
  z-index: 2;
  width: 50%;
}
#index-body .init-1 .container .right ul li {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
#index-body .init-1 .container .right ul li .box img {
  width: 100%;
}
#index-body .init-1 .container .right ul li.active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
#index-body .init-2 {
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
#index-body .init-2 .shadow {
  position: absolute;
  width: 100%;
  height: 160px;
  top: 0;
  left: 0;
}
#index-body .init-2 .container .content .listC .tC .tipsTitleC {
  width: 50%;
}
#index-body .init-2 .container .content .listC .contC ul li {
  width: 25%;
  height: auto;
}
#index-body .init-2 .container .content .listC .contC ul li .box {
  padding: 14px;
  border: 2px solid #dadada;
  border-radius: 10px;
  height: 100%;
}
#index-body .init-2 .container .content .listC .contC ul li .box .img {
  display: block;
  padding: 20px;
}
#index-body .init-2 .container .content .listC .contC ul li .box .img img {
  width: 100%;
}
#index-body .init-2 .container .content .listC .contC ul li .box .titleC1 .text {
  width: -webkit-calc(50%);
  width: -moz-calc(50%);
  width: calc(100% - 50px);
}
#index-body .init-2 .container .content .listC .contC ul li .box .titleC1 .more {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #000;
}
#index-body .init-2 .container .content .listC .contC ul li .box .titleC1 .more .img2 {
  width: 12px;
  height: 12px;
  -webkit-filter: brightness(0);
  filter: brightness(0);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .init-2 .container .content .listC .contC ul li .box:hover {
  background-color: #ededed;
  border: 2px solid rgba(0, 0, 0, 0);
}
#index-body .init-2 .container .content .listC .contC ul li .box:hover .more {
  background-color: #000;
}
#index-body .init-2 .container .content .listC .contC ul li .box:hover .more .img2 {
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
#index-body .init-3 {
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}
#index-body .init-3 .shadow {
  width: 80px;
  position: absolute;
  height: 100%;
  top: 0;
  left: -30px;
  background-position: left;
}
#index-body .init-3 .play {
  position: absolute;
  bottom: 90px;
  right: 110px;
  z-index: 2;
  color: #fff;
  cursor: pointer;
}
#index-body .init-3 .play .playImgC {
  width: 180px;
  height: 180px;
}
#index-body .init-3 .play .playImgC .playImg {
  width: 100%;
  height: 100%;
  -webkit-animation: rotAni 10s linear infinite;
  -moz-animation: rotAni 10s linear infinite;
  -o-animation: rotAni 10s linear infinite;
  animation: rotAni 10s linear infinite;
}
#index-body .init-3 .play .cont {
  width: 76px;
  height: 76px;
  background-color: #ffffff;
  border-radius: 50%;
  font-size: 30px;
  position: relative;
  z-index: 2;
  color: #e91414;
}
#index-body .init-3 .play .cont i {
  margin-left: 4px;
}
#index-body .init-3 .play .line {
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-animation: ks 4.5s linear infinite;
  -moz-animation: ks 4.5s linear infinite;
  -o-animation: ks 4.5s linear infinite;
  animation: ks 4.5s linear infinite;
  width: 100%;
  height: 100%;
}
#index-body .init-3 .play .line:nth-child(4) {
  -webkit-animation-delay: -1.5s;
  -moz-animation-delay: -1.5s;
  -o-animation-delay: -1.5s;
  animation-delay: -1.5s;
}
#index-body .init-3 .play .line:nth-child(5) {
  -webkit-animation-delay: -3s;
  -moz-animation-delay: -3s;
  -o-animation-delay: -3s;
  animation-delay: -3s;
}
#index-body .init-3 .container .left {
  width: 50%;
  color: #fff;
}
#index-body .init-3 .container .left .tipsTitleC .titleC .line {
  background-color: #fff;
}
#index-body .init-3 .container .left .des {
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
}
#index-body .init-3 .container .left .moreCont .moreText {
  color: #fff;
}
#index-body .init-3 .container .left .moreCont .moreText::after {
  color: #fff;
}
#index-body .init-3 .container .left .moreCont .moreArrow {
  background-color: #fff;
}
#index-body .init-3 .container .left .moreCont:hover .moreArrow {
  background-color: var(--color);
}
#index-body .init-3 .container .left .moreCont:hover .moreArrow .moreImg {
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}
#index-body .init-3 .container .right {
  width: 50%;
  color: #fff;
}
#index-body .init-3 .container .right ul li .box .top {
  text-transform: uppercase;
}
#index-body .init-3 .container .right ul li .box .bottom {
  border-top: 1px solid #fff;
}
#index-body .init-3 .container .right ul li .box .bottom .num {
  font-family: 'mic';
  line-height: 1;
}
#index-body .init-3 .container .right ul li .box .bottom .text {
  width: 190px;
  padding-top: 10px;
}
#index-body .init-4 {
  background-color: #fafafa;
}
#index-body .init-4 .container .tipsTitleC .titleC2 {
  max-width: 520px;
  margin-left: 80px;
}
#index-body .init-4 .container .tipsTitleC .moreCont {
  margin-left: auto;
}
#index-body .init-4 .container .content ul li {
  width: 25%;
  padding-top: 24px;
  height: auto;
}
#index-body .init-4 .container .content ul li .box {
  border: 1px solid #b5b5b5;
  height: 100%;
  padding: 0 30px 40px;
  position: relative;
  z-index: 2;
}
#index-body .init-4 .container .content ul li .box .shadowC {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#index-body .init-4 .container .content ul li .box .shadowC .line {
  position: absolute;
  background-color: #000;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
#index-body .init-4 .container .content ul li .box .shadowC .line1 {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}
#index-body .init-4 .container .content ul li .box .shadowC .line2 {
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
#index-body .init-4 .container .content ul li .box .shadowC .line3 {
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-transform-origin: bottom;
  -moz-transform-origin: bottom;
  -ms-transform-origin: bottom;
  -o-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
  transform: scaleY(0);
}
#index-body .init-4 .container .content ul li .box .shadowC .line4 {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  -o-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
#index-body .init-4 .container .content ul li .box .num {
  background-color: var(--color);
  width: 46px;
  height: 50px;
  color: #fff;
  margin-top: -24px;
}
#index-body .init-4 .container .content ul li .box .img {
  height: 90px;
  background-position: left center;
}
#index-body .init-4 .container .content ul li .box .title {
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'mic';
}
#index-body .init-4 .container .content ul li .box .des {
  line-height: 2;
  color: #4d4d4d;
}
#index-body .init-4 .container .content ul li .box:hover .shadowC .line {
  opacity: 1;
}
#index-body .init-4 .container .content ul li .box:hover .shadowC .line1 {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
}
#index-body .init-4 .container .content ul li .box:hover .shadowC .line2 {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#index-body .init-4 .container .content ul li .box:hover .shadowC .line3 {
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  -ms-transform: scaleY(1);
  -o-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
#index-body .init-4 .container .content ul li .box:hover .shadowC .line4 {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
#index-body .init-5 .container {
  width: 100%;
  padding: 0;
}
#index-body .init-5 .container .tipsTitleC {
  max-width: 640px;
  margin: auto;
}
#index-body .init-5 .container .tipsTitleC .titleC .titleText {
  color: #4c4c4c;
}
#index-body .init-5 .container .tipsTitleC .titleC2 {
  text-align: center;
}
#index-body .init-5 .container .content ul li {
  width: 50%;
}
#index-body .init-5 .container .content ul li .box {
  height: 770px;
  -o-background-size: cover;
  background-size: cover;
}
#index-body .init-5 .container .content ul li .box .cont {
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 50px;
  color: #fff;
}
#index-body .init-5 .container .content ul li .box .cont .left {
  width: -webkit-calc(30%);
  width: -moz-calc(30%);
  width: calc(100% - 70px);
}
#index-body .init-5 .container .content ul li .box .cont .left .title {
  text-transform: uppercase;
  font-family: 'mic';
}
#index-body .init-5 .container .content ul li .box .cont .more {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #fff;
}
#index-body .init-5 .container .content ul li .box .cont .more .moreImg {
  width: 18px;
  height: 18px;
  -webkit-filter: grayscale(1) brightness(5);
  filter: grayscale(1) brightness(5);
}
#index-body .init-5 .container .content ul li .box .cont .more:hover {
  background-color: var(--color);
  color: #fff;
  border: 1px solid var(--color);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#index-body .init-6 ul li{
  width: 25%;
}
#footer {
  position: relative;
  z-index: 1;
  -o-background-size: cover;
  background-size: cover;
  background-color: #1b1b1b;
}
#footer .fTop .container {
  color: #fff;
}
#footer .fTop .container .tips {
  font-weight: bold;
}
#footer .fTop .container form input {
  background-color: #303031;
  border: none;
  padding: 24px 16px;
  border-radius: 10px;
  text-transform: uppercase;
  width: 220px;
}
#footer .fTop .container form .content {
  width: 490px;
}
#footer .fTop .container form .submit {
  background-color: var(--color);
  font-weight: bold;
  padding: 17px 10px;
}
#footer .fTop .container form .submit:hover {
  background-color: #fff;
  color: var(--color);
}
#footer .fMiddle .container {
  padding-top: 40px;
}
#footer .fMiddle .container .listCont .first {
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
#footer .fMiddle .container .listCont .lineC {
  width: 230px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  position: relative;
}
#footer .fMiddle .container .listCont .lineC .line2 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #fff;
}
#footer .fMiddle .container .listCont .list {
  color: #fff;
  font-weight: 300;
}
#footer .fMiddle .container .listCont .share ul li {
  margin: 0 6px;
}
#footer .fMiddle .container .listCont .share ul li a {
  color: #454545;
  font-size: 18px;
  width: 50px;
  height: 50px;
  border: 1px solid #454545;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .fMiddle .container .listCont .share ul li a:hover {
  background-color: var(--color);
  border: 1px solid #fff;
  color: #fff;
}
#footer .fMiddle .container .listCont .list2 a {
  color: rgba(255, 255, 255, 0.55);
}
#footer .fMiddle .container .listCont .list2 a:hover {
  color: #fff;
}
#footer .fMiddle .container .listCont #ewm {
  width: 170px;
  height: 170px;
  background-color: #fff;
  padding: 5px;
}
#footer .fMiddle .container .listCont .ewmCont{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .fMiddle .container .listCont .ewmCont .list{
  width: 48%;
}
#footer .fMiddle .container .listCont .ewmCont .list .ewmText{
  font-weight: 600;
}
#footer .fMiddle .container .listCont .ewmCont .tips2{
  color: #fff;
  font-size: 16px;
  width: 100%;
} 
#footer .fMiddle .container .listCont .ewmCont .line{
  width: 100%;
  height: 1px;
  background: #666;
  margin: 20px 0;
}
#footer .fMiddle .container .listCont1 {
  width: 320px;
}
#footer .fMiddle .container .listCont2 {
  width: 200px;
}
#footer .fMiddle .container .listCont2 .lineC {
  width: 190px;
}
#footer .fMiddle .container .listCont3 {
  width: 210px;
}
#footer .fMiddle .container .listCont3 .lineC {
  width: 190px;
}
#footer .fMiddle .container .listCont4 {
  width: 260px;
}
#footer .fMiddle .container .listCont4 .lineC {
  width: 190px;
}
#footer .fMiddle .container .listCont4 .list2 a {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#footer .fMiddle .container .listCont5 {
  width: 300px;
}
#footer .fMiddle .container .listCont5 .lineC {
  width: 190px;
}
#footer .fMiddle .container .listCont5 .list2 a {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#footer .copyright {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  z-index: 2;
  margin-top: 40px;
}
#footer .copyright .container {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}
#footer .copyright .container svg {
  height: 30px;
  width: auto;
  fill: #fff;
  position: relative;
  top: 4px;
}
#footer .copyright .container a {
  margin: 0 5px;
}
#footer .copyright .container a img {
  margin-top: 8px;
  height: 16px;
}
@media (max-width: 1700px) {
  #header > .nav > .menu .menu-box {
    width: 1400px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
    font-size: 18px;
  }
  #header > .nav > .menu .menu-box .right {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
    margin-top: -30px;
  }
  #header > .nav .lang_cont,
  #header > .nav > .menu .menu-box .right .h-search {
    pointer-events: all;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .container .box {
    position: relative;
    z-index: 1;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .container .imgC {
    right: 0;
  }
  .tipsTitleC .titleC .line {
    margin-top: 12px;
  }
  #index-body .init-5 .container .content ul li .box {
    height: 40vw;
  }
  #footer .fTop .container form .content {
    width: 440px;
  }
}
@media (max-width: 1450px) {
  #header > .nav > .menu .menu-box {
    width: 1200px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item {
    margin-left: 20px;
  }
  #header > .nav > .menu .menu-box .menu_c .menu-menu-container > .menu > .menu-item > a {
    font-size: 16px;
  }
}
@media (max-width: 1250px) {
  #header {
    display: none;
  }
  .tipsTitleC .titleC .line {
    margin-top: 9px;
  }
  #index-body .init-3 .play {
    bottom: 60px;
  }
  #footer .fTop .container form .content {
    width: 260px;
  }
  #footer .fMiddle .container .listCont1 {
    width: 270px;
  }
}
@media (max-width: 1000px) {
  .phone_hide {
    display: none;
  }
  #banner .sPage {
    bottom: 5px;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .container .box .cont {
    width: 100%;
  }
  #index-body .init-2 .container .content .listC .tC .tipsTitleC {
    width: 100%;
  }
  .tipsTitleC .titleC .line {
    width: 20px;
  }
  .tipsTitleC .titleC .titleText {
    width: -webkit-calc(80%);
    width: -moz-calc(80%);
    width: calc(100% - 20px);
    padding-left: 10px;
  }
  #index-body .init-3 .container .left {
    width: 100%;
  }
  
  #index-body .init-3 .container .right{
    margin-top: 40px;
    justify-content: flex-start;
    width: 100%;
  }
  #index-body .init-4 .container .tipsTitleC .titleC2 {
    margin-top: 10px;
    margin-left: 0;
  }
  #index-body .init-4 .container .tipsTitleC .moreCont {
    margin-left: 0;
  }
  #index-body .init-5 .container .tipsTitleC {
    padding: 0 15px;
  }
  #footer .fTop .container form .content {
    width: 440px;
  }
  #footer .fTop .container form .submit {
    padding: 22px 10px;
  }
  #footer .fMiddle .container .listCont {
    width: 100%;
  }
  #footer .fMiddle .container .listCont5{
    width: 220px;
  }
}
@media (max-width: 700px) {
  #banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .title {
    display: none;
  }
  #banner .swiper .swiper-wrapper .swiper-slide .container .box .cont .des {
    display: none;
  }
  #index-body .init-3 .play{
    display: none;
  }
  #index-body .init-5 .container .content ul li .box .cont {
    padding: 20px 10px;
  }
  #footer .fTop .container form input {
    width: 100%;
  }
  #footer .fTop .container form .content {
    width: 100%;
  }
  #footer .fTop .container form input {
    padding: 14px 10px;
  }
  #footer .fTop .container form .submit {
    padding: 14px 10px;
  }
}
@media (max-width: 500px) {
  #banner .swiper .swiper-wrapper .swiper-slide {
    height: 280px;
  }

  .moreCont .moreText {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    min-width: 170px;
  }
  .moreCont .moreArrow {
    width: 40px;
    height: 40px;
  }
  #index-body .init-3 .container .right ul li .box .bottom .text{
    width: 100%;
    margin-left: 0;
  }
  #index-body .init-5 .container .content ul li .box {
    padding: 0 16px 20px;
    height: 80vw;
  }
  #index-body .init-5 .container .content ul li .box .cont .left {
    width: -webkit-calc(50%);
    width: -moz-calc(50%);
    width: calc(100% - 50px);
  }
  #index-body .init-5 .container .content ul li .box .cont .more {
    width: 40px;
    height: 40px;
  }
  #footer .fMiddle .container .listCont #ewm {
    width: 100px;
    height: 100px;
  }
}


/*inner-page*/


#index-body .i-advantage {
  padding-bottom: 130px;
  padding-top: 90px;
  position: relative;
}
#index-body .i-advantage .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fafafa;
  width: 71%;
  height: 70%;
  z-index: -1;
}
#index-body .i-advantage .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 184px;
}
#index-body .i-advantage .top .i-title {
  width: 40%;
  margin-left: 55px;
}
#index-body .i-advantage .top .more_btn {
  position: absolute;
  right: 0;
}
#index-body .i-advantage .top .more_btn .more {
  border-color: rgba(0, 0, 0, 0.1);
}
#index-body .i-advantage .top .more_btn .more::after {
  color: black;
}
#index-body .i-advantage .list {
  padding-left: 230px;
}
#index-body .i-advantage ul {
  margin: -25px;
}
#index-body .i-advantage ul .slick-list {
  padding-top: 20px;
}
#index-body .i-advantage ul li {
  padding: 25px;
  width: 33.33%;
}
#index-body .i-advantage ul li .box {
  border: 1px solid #b5b5b5;
  position: relative;
  padding: 70px 35px;
  background: white;
}
#index-body .i-advantage ul li .box .num {
  font-size: 18px;
  width: 48px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  background: var(--color);
  color: white;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
#index-body .i-advantage ul li .box .h5 {
  font-size: 24px;
  font-weight: bold;
  margin: 66px 0 15px;
}
#index-body .i-advantage ul li .box .des {
  font-size: 16px;
  line-height: 2;
  color: #4d4d4d;
  min-height: 96px;
}
#index-body .i-advantage ul li .box .border i {
  position: absolute;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  transition: .2s;
  background: #000;
}
#index-body .i-advantage ul li .box .border i:nth-child(1) {
  left: -1px;
  top: 0;
  width: 1px;
  height: 0;
}
#index-body .i-advantage ul li .box .border i:nth-child(2) {
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
}
#index-body .i-advantage ul li .box .border i:nth-child(3) {
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 0;
}
#index-body .i-advantage ul li .box .border i:nth-child(4) {
  right: 0;
  top: -1px;
  width: 0;
  height: 1px;
}
#index-body .i-advantage ul li .box:hover .border i:nth-child(1) {
  height: 100%;
}
#index-body .i-advantage ul li .box:hover .border i:nth-child(2) {
  width: 100%;
  -webkit-transition-delay: .2s;
  -moz-transition-delay: .2s;
  transition-delay: .2s;
}
#index-body .i-advantage ul li .box:hover .border i:nth-child(3) {
  height: 100%;
  -webkit-transition-delay: .4s;
  -moz-transition-delay: .4s;
  transition-delay: .4s;
}
#index-body .i-advantage ul li .box:hover .border i:nth-child(4) {
  width: 100%;
  -webkit-transition-delay: .6s;
  -moz-transition-delay: .6s;
  transition-delay: .6s;
}

.more_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.more_btn .more {
  position: relative;
  font-size: 18px;
  font-weight: 300;
  color: black;
  padding: 0 30px;
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  border-radius: 27px;
  border: 1px solid black;
  display: inline-block;
}
.more_btn .more span {
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  display: block;
}
.more_btn .more::after {
  content: attr(data-text);
  text-align: center;
  position: absolute;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100%;
  color: white;
  font-size: inherit;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
}
.more_btn .arrow {
  background-color: black;
  display: inline-block;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  margin-left: -20px;
  z-index: 2;
  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;
}
.more_btn .arrow img {
  vertical-align: middle;
  -webkit-filter: invert(1);
  filter: invert(1);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.more_btn:hover span {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
.more_btn:hover .more::after {
  top: 0%;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.more_btn:hover .arrow {
  background-color: var(--color);
}
.more_btn:hover .arrow img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.i-tag {
  font-size: 20px;
  font-weight: 600;
  color: var(--color);
}
.i-tag i {
  display: inline-block;
  vertical-align: middle;
  background-color: var(--color);
  width: 40px;
  height: 1px;
  margin-right: 20px;
}
.inner-banner {
  position: relative;
  margin-top: 130px;
}
.inner-banner .ui.container {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 1460px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.inner-banner .ui.container h2 {
  font-size: 42px;
  line-height: 1.4;
  font-weight: bold;
  color: white;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.inner-banner .ui.container .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 0 45px;
}
.inner-banner .ui.container .box .moreCont{
  margin-top: 10px;
}
.inner-banner .ui.container .box .mbx {
  font-size: 18px;
  color: white;
}
.inner-banner .ui.container .box .mbx a {
  position: relative;
  padding-right: 15px;
}
.inner-banner .ui.container .box .mbx a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--color);
}
.inner-banner .ui.container .box .moreCont .moreText {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.inner-banner .ui.container .box .moreCont .moreText::after{
  color: #fff;
}
.inner-banner .ui.container .box .moreCont .moreArrow {
  background: var(--color);
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes 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);
  }
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.about-page .about-1 {
  padding-top: 110px;
}
.about-page .about-1 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 100px;
}
.about-page .about-1 .top .i-title {
  margin-left: 40px;
}
.about-page .about-1 .box {
  position: relative;
  background: -webkit-gradient(linear, right top, left top, color-stop(66%, #fafafa), color-stop(66%, transparent));
  background: -webkit-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
  background: -moz-linear-gradient(right, #fafafa 66%, transparent 66% 100%);
  background: linear-gradient(to left, #fafafa 66%, transparent 66% 100%);
  padding: 100px 0;
  margin-top: 65px;
}
.about-page .about-1 .box ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
}
.about-page .about-1 .box ul li {
  width: 30%;
  background: #1a1a1a;
  margin: 0 10px;
  color: white;
  padding: 25px 20px 60px;
}
.about-page .about-1 .box ul li .h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin: 34px 0 3px;
}
.about-page .about-1 .box ul li .h3 em {
  font-size: 49px;
}
.about-page .about-1 .box ul li p {
  font-size: 16px;
}
.about-page .about-1 .box ul li:first-child {
  background: var(--color);
}
.about-page .about-1 .box .play {
  width: 165px;
  height: 165px;
  border-radius: 100%;
  text-align: center;
  line-height: 165px;
  position: relative;
  cursor: pointer;
  position: absolute;
  right: 250px;
  top: -110px;
}
.about-page .about-1 .box .play img {
  vertical-align: middle;
}
.about-page .about-1 .box .play::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/about-page-circle.png) no-repeat;
  -webkit-animation: 20s 0.3s rotate linear infinite;
  -moz-animation: 20s 0.3s rotate linear infinite;
  animation: 20s 0.3s rotate linear infinite;
}
.about-page .about-1 .box .wrap .left {
  width: 40%;
}
.about-page .about-1 .box .wrap .right {
  width: 60%;
  padding-left: 50px;
  padding-right: 260px;
}
.about-page .about-1 .box .wrap .right .content {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.73;
}
.about-page .about-2 {
  background: url(../images/factory-bg.jpg) center;
  background-size: cover;
  color: white;
  padding-top: 130px;
  padding-bottom: 80px;
}
.about-page .about-2 .top {
  position: relative;
  margin-bottom: 80px;
}
.about-page .about-2 .top .i-tag {
  padding-top: 20px;
}
.about-page .about-2 .top .i-title {
  width: 45%;
  margin-left: 40px;
}
.about-page .about-2 .top .more_btn {
  position: absolute;
  right: 0;
}
.about-page .about-2 .top .more_btn .arrow {
  background: white;
}
.about-page .about-2 .top .more_btn .arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.about-page .about-2 .top .more_btn .more {
  border-color: white;
  color: white;
}
.about-page .about-2 .list {
  padding-left: 230px;
}
.about-page .about-2 .list ul {
  margin: -11px;
}
.about-page .about-2 .list ul .slick-list {
  padding-right: 30%;
}
.about-page .about-2 .list ul li {
  padding: 11px;
}
.about-page .about-2 .list ul li .box {
  position: relative;
  border-bottom: 2px solid var(--color);
}
.about-page .about-2 .list ul li .box .h4 {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px 80px 20px 10px;
}
.about-page .about-2 .list ul li .box .arrow {
  width: 55px;
  height: 55px;
  text-align: center;
  line-height: 55px;
  border-radius: 100%;
  display: inline-block;
  background: white;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.about-page .about-2 .list ul li .box .arrow img {
  vertical-align: middle;
  display: inline-block;
}
.about-page .about-2 .list .btn {
  margin-top: 20px;
}
.about-page .about-2 .list .btn span {
  width: 60px;
  height: 60px;
  display: inline-block;
  text-align: center;
  line-height: 60px;
  background: white;
  margin-right: 15px;
  cursor: pointer;
}
.about-page .about-2 .list .btn span img {
  vertical-align: middle;
}
.about-page .about-2 .list .btn span.prev img {
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.about-page .about-2 .list .btn span.next img {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.about-page #index-body .i-advantage {
  background: url(/rubbermachine/2025/08/08/about-page-3-bg-3.png) no-repeat right top;
}
.about-page #index-body .i-advantage.honor {
  background: white;
}
.about-page #index-body .i-advantage.honor .bg {
  height: 75%;
  width: 100%;
  top: 0;
  z-index: 0;
}
.about-page #index-body .i-advantage.honor .top {
  margin-bottom: 45px;
}
.about-page .about-3 {
  padding-bottom: 130px;
}
.about-page .about-3 .left {
  width: 20%;
  padding-top: 30px;
}
.about-page .about-3 .right {
  width: 80%;
}
.about-page .about-3 .right ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 30px 0;
  padding-right: 270px;
}
.about-page .about-3 .right ul li .h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-3 .right ul li p {
  font-size: 16px;
  line-height: 25px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: #5e5e5e;
}
.about-page .about-3 .right ul li .time {
  font-size: 20px;
  background: var(--color);
  color: white;
  height: 40px;
  line-height: 44px;
  border-radius: 20px;
  position: absolute;
  right: 50px;
  top: 40px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0 50px;
}
.about-page .about-3 .right ul li:first-child {
  padding-top: 0;
}
.about-page .about-3 .right ul li:hover .h3,
.about-page .about-3 .right ul li.active .h3 {
  font-size: 45px;
}
.about-page .about-3 .right ul li:hover p,
.about-page .about-3 .right ul li.active p {
  font-size: 20px;
}
.about-page .about-3 .right ul li:hover .time,
.about-page .about-3 .right ul li.active .time {
  opacity: 0;
}
.about-page .about-num {
  padding: 75px 0 90px;
}
.about-page .about-num ul {
  margin: -25px;
}
.about-page .about-num ul li {
  padding: 25px;
}
.about-page .about-num ul li p {
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
  margin-bottom: 17px;
}
.about-page .about-num ul li .h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--color);
  line-height: 1;
}
.about-page .about-num ul li .h2 em {
  font-size: 50px;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-moz-keyframes fade-in-left {
  0% {
    -moz-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-moz-keyframes fade-in-right {
  0% {
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.product-yd-page {
  padding: 150px 0 120px;
}
.product-yd-page .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 120px;
}
.product-yd-page .item .content {
  width: 50%;
}
.product-yd-page .item .content .i-title {
  margin: 19px 0 13px;
}
.product-yd-page .item .content .txt {
  font-size: 20px;
  line-height: 1.8;
  color: #5e5e5e;
  margin-bottom: 55px;
}
.product-yd-page .item .content ul {
  margin: -10px;
  margin-bottom: 70px;
}
.product-yd-page .item .content ul li {
  padding: 10px;
  text-align: center;
}
.product-yd-page .item .content ul li .img-box {
  position: relative;
}
.product-yd-page .item .content ul li .img-box img {
  max-width: 150px;
  margin: 30px auto 0;
}
.product-yd-page .item .content ul li .img-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #f6f6f6;
  z-index: -1;
}
.product-yd-page .item .content ul li h6 {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}
.product-yd-page .item .content .more_btn .more::after {
  color: black;
}
.product-yd-page .item .img {
  width: 50%;
  position: relative;
}
.product-yd-page .item .img .small-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.product-yd-page .item:last-child {
  margin-bottom: 0;
}
.product-yd-page .item:nth-child(2n-1) .content {
  padding: 0 40px 0 260px;
}
.product-yd-page .item:nth-child(2n-1) .img .big-img img {
  margin-left: auto;
  display: block;
}
.product-yd-page .item:nth-child(2n-1) .img .small-img {
  left: 0;
}
.product-yd-page .item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.product-yd-page .item:nth-child(2n) .content {
  padding: 0 260px 0 40px;
}
.product-yd-page .item:nth-child(2n) .img .big-img img {
  display: block;
}
.product-yd-page .item:nth-child(2n) .img .small-img {
  right: 0;
}
.m-page {
  text-align: center;
  margin-top: 50px;
}
.m-page a,
.m-page span {
  width: 50px;
  height: 50px;
  background: #dfdfdf;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  color: white;
  border-radius: 100%;
  display: inline-block;
  margin: 0 12px;
  cursor: pointer;
  line-height: 50px;
  font-size: 18px;
}
.m-page a:hover,
.m-page span {
  background: var(--color);
}
.product-page {
  padding-top: 100px;
}
.product-page .sideLeft {
  width: 30% !important;
}
.product-page .sideLeft .top {
  background: #292929;
  padding: 35px 0 50px;
  margin-bottom: 20px;
}
.product-page .sideLeft .top .form {
  padding: 0 15px;
}
.product-page .sideLeft .top .form form {
  position: relative;
  height: 70px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px;
}
.product-page .sideLeft .top .form input {
  width: 100%;
  height: 100%;
  background: transparent;
  color: white;
  font-size: 18px;
  border: none;
  padding: 0 20px;
}
.product-page .sideLeft .top .form input[type="submit"] {
  position: absolute;
  right: 5px;
  border-radius: 100%;
  width: 58px;
  height: 58px;
  background: url(../images/search.png) no-repeat center var(--color);
  padding: 0;
}
.product-page .sideLeft .top .nav .font-30 {
  color: white;
  line-height: 1.1;
  padding: 0 15px;
  margin: 30px 0;
}
.product-page .sideLeft .top .nav ul li{
  margin-top: 10px;
}
.product-page .sideLeft .top .nav ul li > a {
  position: relative;
  padding: 15px 15px;
  color: white;
  font-size: 24px;
  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 rgba(255, 255, 255, 0.1);

  background: -webkit-gradient(linear, left top, right top, from(var(--color)), to(transparent));
  background: -webkit-linear-gradient(left, var(--color), transparent);
  background: -moz-linear-gradient(left, var(--color), transparent);
  background: linear-gradient(to right, var(--color), transparent);
}
.product-page .sideLeft .top .nav ul li>a img{
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-page .sideLeft .top .nav ul li >a img.active{
   -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .sideLeft .top .nav ul li > a::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 100%;
  border-left: 0px solid transparent;
  border-bottom: 0px solid #a48b00;
  border-right: 9px solid #a48b00;
  border-top: 9px solid transparent;
  opacity: 1;
}
.product-page .sideLeft .top .nav ul li > a::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--color);
  opacity: 1;
}
.product-page .sideLeft .top .nav ul li:hover > a,
.product-page .sideLeft .top .nav ul li.active > a {
  background: -webkit-gradient(linear, left top, right top, from(var(--color)), to(transparent));
  background: -webkit-linear-gradient(left, var(--color), transparent);
  background: -moz-linear-gradient(left, var(--color), transparent);
  background: linear-gradient(to right, var(--color), transparent);
}
.product-page .sideLeft .top .nav ul li:hover > a::before,
.product-page .sideLeft .top .nav ul li.active > a::before,
.product-page .sideLeft .top .nav ul li:hover > a::after,
.product-page .sideLeft .top .nav ul li.active > a::after {
  opacity: 1;
}
.product-page .sideLeft .top .nav ul li ul li a{
  font-size: 18px;
  padding-left: 30px;
  line-height: 1.8;
  background: transparent;
}
.product-page .sideLeft .top .nav ul li ul li > a::after{
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li ul li > a::before{
  opacity: 0;
}
.product-page .sideLeft .top .nav ul li ul li:nth-child(1) a::before{
  content: none;
}
.product-page .sideLeft .top .nav ul li.active > ul{
  display: block;
}
.product-page .sideLeft .bottom {
  background: url(../images/product-side-bg.jpg) no-repeat;
  background-size: cover;
  padding: 365px 15px 20px;
}
.product-page .sideLeft .bottom p {
  font-size: 19px;
  line-height: 1.8;
  color: white;
  font-weight: bold;
  text-align: center;
}
.product-page .sideRight {
  width: 70% !important;
  padding-left: 75px;
}
.product-page .sideRight .Auxil-catdes {
  line-height: 30px;
  opacity: 0.51;
  margin: 20px 0 45px;
}
.product-page .sideRight ul {
  margin: 30px -10px 0;
}
.product-page .sideRight ul li {
  padding: 10px;
  text-align: center;
}
.product-page .sideRight ul li .box{
  border: 1px solid #f2f2f2;
  padding: 10px;
  height: 100%;
}

.product-page .sideRight ul li .img-box {
  border-radius: 10px;
  background: #f5f5f5;
  /*padding: 36px 50px;*/
}
.product-page .sideRight ul li p {
  font-size: 16px;
  line-height: 2;
  color: #6d6d6d;
  margin: 15px 0 30px;
}
.prodet-page .prodet-1 {
  padding: 130px 0 80px;
}
.prodet-page .prodet-1 .left {
  width: 35%;
}
.prodet-page .prodet-1 .left a {
  background: #f5f5f5;
  border-radius: 10px;
  display: block;
  text-align: center;
  padding: 77px 50px;
}
.prodet-page .prodet-1 .right {
  width: 65%;
  padding-left: 48px;
  position: relative;
}
.prodet-page .prodet-1 .right h1{
  padding-right: 260px;
}
.prodet-page .prodet-1 .right .content {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.51;
  margin: 25px 0 60px;
}
.prodet-page .prodet-1 .right .gallery {
  margin-bottom: 40px;
}
.prodet-page .prodet-1 .right .gallery ul {
  margin: -10px;
}
.prodet-page .prodet-1 .right .gallery ul .slick-track{
  margin-left: 0;
}
.prodet-page .prodet-1 .right .gallery ul li {
  padding: 10px;
}
.prodet-page .prodet-1 .right .gallery ul li a {
  border-radius: 10px;
  display: block;
  background: #f5f5f5;
  padding: 10px 20px;
}
.prodet-page .prodet-1 .right .gallery ul li a img {
  width: auto;
  margin: auto;
}
.prodet-page .prodet-1 .right .more_btn{
  position: absolute;
  right: 0;
  top: 0;
}
.prodet-page .prodet-1 .right .more_btn .more::after {
  color: black;
}
.prodet-page .prodet-2 ul.options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  background: #f6f6f6;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prodet-page .prodet-2 ul.options li {
  font-size: 18px;
  padding: 20px 60px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0 0 50px 0;
  position: relative;
}
.prodet-page .prodet-2 ul.options li a {
  position: relative;
}
.prodet-page .prodet-2 ul.options li a::after {
  content: "";
  position: absolute;
  left: -17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--color);
}
.prodet-page .prodet-2 ul.options li.active {
  background: var(--color);
  color: white;
}
.prodet-page .prodet-2 ul.options li.active a::after {
  background: white;
}
.prodet-page .prodet-2 .box {
  padding: 70px 0;
}
.prodet-page .prodet-2 .box .content {
  font-size: 18px;
}
.prodet-page .prodet-2 .list {
  padding: 70px 0;
}
.prodet-page .prodet-2 .list ul {
  margin: -15px;
}
.prodet-page .prodet-2 .list ul li {
  padding: 15px;
  text-align: center;
}
.prodet-page .prodet-2 .list ul li .img-box {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 50px;
}
.prodet-page .prodet-2 .list ul li p {
  font-size: 18px;
  line-height: 2;
  margin-top: 15px;
  opacity: 0.51;
}
.w-100 {
  width: 100%;
}
.hose-page .hose-1 {
  padding-top: 160px;
}
.hose-page .hose-1 .left {
  width: 30%;
  padding-top: 20px;
}
.hose-page .hose-1 .left .img2{
  padding-right: 20px;
}
.hose-page .hose-1 .right {
  width: 70%;
}
.hose-page .hose-1 .content {
  font-size: 18px;
  width: 100%;
  line-height: 2;
  color: #5e5e5e;
  margin-top: 45px;
}
.hose-page .hose-2 {
  padding-top: 90px;
}
.hose-page .hose-2 .h2 {
  position: absolute;
  font-size: 60px;
  line-height: 1;
  left: 43px;
  bottom: -22px;
  z-index: 11;
}
.hose-page .hose-3 {
  padding-top: 150px;
  padding-bottom: 110px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(35%, #f5f5f5), color-stop(35%, transparent));
  background: -webkit-linear-gradient(bottom, #f5f5f5 35%, transparent 35% 100%);
  background: -moz-linear-gradient(bottom, #f5f5f5 35%, transparent 35% 100%);
  background: linear-gradient(to top, #f5f5f5 35%, transparent 35% 100%);
}
.hose-page .hose-3 .left {
  width: 30%;
}
.hose-page .hose-3 .right {
  width: 70%;
}
.hose-page .hose-3 .right .txt {
  font-size: 18px;
  line-height: 2;
  color: #5e5e5e;
  margin-bottom: 100px;
}
.hose-page .hose-3 ul {
  margin: -10px;
}
.hose-page .hose-3 ul li {
  padding: 10px;
}
.hose-page .hose-3 ul li .content {
  background: white;
  padding: 30px 30px 50px;
}
.hose-page .hose-3 ul li .content .des {
  font-size: 18px;
  line-height: 2;
  color: #5e5e5e;
  margin-top: 10px;
}
.hose-page .hose-4 .left {
  vertical-align: middle;
}
.hose-page .hose-4 .right {
  padding: 0 260px 0 130px;
  vertical-align: middle;
}
.hose-page .hose-4 .right .i-title {
  margin: 18px 0 20px;
}
.hose-page .hose-4 .right .txt {
  font-size: 18px;
  line-height: 25px;
  color: #5e5e5e;
}
.hose-page .hose-4 .right ul li {
  border-top: 1px solid #eee;
  position: relative;
  padding-left: 112px;
  padding-top: 60px;
  padding-bottom: 47px;
}
.hose-page .hose-4 .right ul li .h5 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.hose-page .hose-4 .right ul li p {
  font-size: 20px;
  line-height: 1.8;
  color: #5e5e5e;
  margin-top: 12px;
}
.hose-page .hose-4 .right ul li:first-child {
  border-top: none;
}
.hose-page .hose-4 .right ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 100%;
  /*background: url(../images/icon.png) no-repeat left center;*/
}
.hose-page .hose-4 .right ul li:nth-child(1)::after{
  background: url(../images/a-a.png) no-repeat left center;
}
.hose-page .hose-4 .right ul li:nth-child(2)::after{
  background: url(../images/b-b.png) no-repeat left center;
}
.hose-page .hose-5 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(83%, #111111), color-stop(83%, white));
  background: -webkit-linear-gradient(top, #111111 83%, white 83% 100%);
  background: -moz-linear-gradient(top, #111111 83%, white 83% 100%);
  background: linear-gradient(to bottom, #111111 83%, white 83% 100%);
  padding-top: 110px;
}
.hose-page .hose-5 .top {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  margin-bottom: 65px;
}
.hose-page .hose-5 .top .i-tag {
  padding-top: 20px;
  margin-right: 40px;
}
.hose-page .hose-5 .top .more_btn {
  position: absolute;
  right: 0;
  top: 15px;
}
.hose-page .hose-5 .top .more_btn .more {
  border-color: white;
  color: white;
}
.hose-page .hose-5 .top .more_btn .arrow {
  background: white;
}
.hose-page .hose-5 .top .more_btn .arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}
.hose-page .hose-5 ul .slick-list {
  padding-bottom: 110px;
}
.hose-page .hose-5 ul li {
  position: relative;
}
.hose-page .hose-5 ul li .content {
  position: absolute;
  left: 0;
  top: 53%;
  width: 35%;
  border-bottom: 3px solid #fccf15;
  background: white;
  padding: 120px 45px 45px;
}
.hose-page .hose-5 ul li .content .h4 {
  font-size: 37px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 90px;
}
.hose-page .hose-5 ul li .content .more_btn .more::after {
  color: black;
}
.hose-page .hose-5 ul .slick-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
.hose-page .hose-5 ul .slick-dots li {
  width: 50%;
  margin: 0 10px;
  height: 1px;
  background: #acacac;
  position: relative;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.hose-page .hose-5 ul .slick-dots li button {
  position: absolute;
  left: 0;
  bottom: 5px;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  color: var(--color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
.hose-page .hose-5 ul .slick-dots li.slick-active {
  background: var(--color);
}
.hose-page .hose-5 ul .slick-dots li.slick-active button {
  opacity: 1;
}
.hose-page .hose-6 {
  padding: 100px 0 200px;
  background: url(/rubbermachine/2025/08/08/hose-form-bg-1.png) no-repeat left bottom;
}
.hose-page .hose-6 .top {
  width: 50%;
  margin-bottom: 30px;
}
.hose-page .hose-6 .top .i-title {
  margin: 25px 0 12px;
}
.hose-page .hose-6 .top .txt {
  font-size: 20px;
  line-height: 1.8;
  color: #5e5e5e;
}
.hose-page .hose-6 .form {
  padding-right: 310px;
  position: relative;
}
.hose-page .hose-6 .form form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hose-page .hose-6 .form form input {
  width: 48%;
  font-size: 18px;
  border: none;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  height: 50px;
}
.hose-page .hose-6 .form form input[name="content"] {
  width: 100%;
}
.hose-page .hose-6 .form form .more_btn {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.hose-page .hose-6 .form form .more_btn .more::after {
  color: black;
}
.elementor-widget-container {
  margin: 80px 0 0;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline:before {
  content: "";
  width: 1px;
  height: -webkit-calc(100% - 5px);
  height: -moz-calc(100% - 5px);
  height: calc(100% - 5px);
  background-color: #dfe1e7;
  position: absolute;
  top: 5px;
  left: -webkit-calc(50% + 50px);
  left: -moz-calc(50% + 50px);
  left: calc(50% + 50px);
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-content-image {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-basis: -webkit-calc(50% - 60px);
  -ms-flex-preferred-size: calc(50% - 60px);
  flex-basis: -moz-calc(50% - 60px);
  flex-basis: calc(50% - 60px);
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-list {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item {
  padding: 0 0 37px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: -webkit-calc(50% - 60px);
  width: -moz-calc(50% - 60px);
  width: calc(50% - 60px);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image img {
  /*height: 100%;*/
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  opacity: 0;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  will-change: transform;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-image img,
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-info {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-number {
  margin-right: 50px;
  margin-top: 5px;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-number {
  height: 60px;
  line-height: 60px;
  width: 60px;
  -webkit-box-shadow: 0 0 0 1px #dfe1e7;
  box-shadow: 0 0 0 1px #dfe1e7;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #fff;
  color: var(--text);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .timeline-number {
  -webkit-box-shadow: 0 0 0 1px var(--color);
  box-shadow: 0 0 0 1px var(--color);
}
.elementor-widget-rebuilto-scroll-timeline .timeline-number span {
  opacity: .2;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .timeline-number span {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-info .scroll-timeline-desc {
  font-size: 16px;
  line-height: 2;
  color: #5e5e5e;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-image img,
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-info {
  opacity: 1;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-subheading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text_light);
  margin-bottom: 7px;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.8;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-line {
  width: 1px;
  background-color: var(--color);
  position: absolute;
  top: 5px;
  left: -webkit-calc(50% + 50px);
  left: -moz-calc(50% + 50px);
  left: calc(50% + 50px);
  overflow: hidden;
  z-index: -1;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item.timeline-active .scroll-timeline-image {
  -webkit-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: auto;
  z-index: 4;
}
.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item.timeline-active .scroll-timeline-image * {
  opacity: 1;
  z-index: 10;
  -webkit-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.43s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.elementor-widget-rebuilto-scroll-timeline .timeline-active .timeline-number {
  -webkit-box-shadow: 0 0 0 1px var(--color);
  box-shadow: 0 0 0 1px var(--color);
}
.contact-page .contact-2 ul {
  padding: 70px 0;
  border-radius: 0 0 50px 50px;
}
.contact-page .contact-2 ul li {
  text-align: center;
}
.contact-page .contact-2 ul li .des{
  text-align: left;
}
.contact-page .contact-2 ul li .h4 {
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.contact-page .contact-2 ul li p {
  font-size: 18px;
  line-height: 2;
  padding-top: 26px;
}
.contact-page .contact-2 ul .li1{
  width: 20%;
}
.contact-page .contact-2 ul .li3{
  width: 24%;
}
.faq-page {
  padding: 100px 0;
}
.faq-page .left {
  width: 25% !important;
}
.faq-page .right {
  width: 75% !important;
}
.faq-page .right .i-title {
  margin-bottom: 60px;
}
.faq-page .right ul li {
  border: 1px solid #d5d8dc;
  padding: 20px;
  margin-bottom: 20px;
}
.faq-page .right ul li .h4 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
  position: relative;
}
.faq-page .right ul li .h4 .fa {
  position: absolute;
  right: 0;
}
.faq-page .right ul li .content {
  font-size: 18px;
  line-height: 2;
  margin-top: 20px;
  display: none;
}
.news-page {
  padding: 100px 0;
}
.news-page ul {
  margin: -15px;
}
.news-page ul li {
  padding: 15px;
}
.news-page ul li .box {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 20px 50px;
  border-radius: 12px;
}
.news-page ul li .box .time {
  font-size: 18px;
  opacity: 0.8;
}
.news-page ul li .box .h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 12px 0 20px;
  min-height: 165px;
  line-height: 1.8;
}
.news-page ul li .box .content {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}
.news-page ul li .box .more_btn .more{
  font-size: 16px;
}
.news-page ul li .box .more_btn .more::after {
  color: black;
}
.newdet-page {
  padding: 100px 0;
}
.newdet-page .newdet-1 {
  text-align: center;
}
.newdet-page .newdet-1 h1 {
  font-size: 45px;
  font-weight: bold;
}
.newdet-page .newdet-1 .time {
  font-size: 18px;
  opacity: 0.8;
  margin: 20px 0;
}
.newdet-page .newdet-1 .content {
  font-size: 18px;
  line-height: 2;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}
.newdet-page .newdet-1 .m-link{
  text-align: left;
}
.gallery-page {
  padding: 100px 0;
}
.gallery-page .cat_cont{
  position: relative;
  z-index: 2;
}
.gallery-page .cat_cont a{
  padding: 6px 20px;
  border: 1px solid #333;
  margin: 2px 10px;
  border-radius: 5px;
}
.gallery-page .cat_cont a:hover,
.gallery-page .cat_cont a.active{
  background: var(--color);
  border: 1px solid var(--color);
  color: #fff;
}
.gallery-page ul{
  margin: -15px;
}
.gallery-page ul li{
  padding: 15px;
}
.gallery-page ul li p{
  font-size: 18px;
  text-align: center;
  margin-top: 12px;
}
@media screen and (max-width: 1600px) {
  .about-page .about-1 .box .wrap .right {
    padding-right: 120px;
  }
  .about-page .about-1 .box ul li {
    width: 40%;
  }
  .about-page .about-2 .list {
    padding-left: 90px;
  }
  .product-yd-page .item:nth-child(2n-1) .content {
    padding-left: 70px;
  }
  .product-yd-page .item:nth-child(2n) .content {
    padding-right: 70px;
  }
  .hose-page .hose-4 .right{
    padding: 0 50px;
  }
  .hose-page .hose-5 ul li .content .h4{
    font-size: 31px;
  }
}
@media screen and (max-width: 1450px) {
  #index-body .i-advantage ul {
    margin: -13px;
  }
  #index-body .i-advantage ul li {
    padding: 13px;
  }
  #index-body .i-advantage .list {
    padding-left: 80px;
  }
  .inner-banner .ui.container h2{
    font-size: 38px;
  }
  .about-page .about-1 .box ul li .h3 em {
    font-size: 30px;
  }
  .about-page .about-1 .box .play {
    right: 150px;
  }
  .about-page .about-3 .right ul li:hover .h3,
  .about-page .about-3 .right ul li.active .h3 {
    font-size: 34px;
  }
  .product-yd-page .item .content ul li .img-box img {
    max-width: 110px;
  }
  .hose-page .hose-5 ul li .content{
    padding: 50px 30px 45px;
  }
  .hose-page .hose-5 ul li .content .h4{
    margin-bottom: 45px;
  }
  .prodet-page .prodet-1 .left a{
    padding: 0;
  }
  .prodet-page .prodet-1 .right .more_btn{
    position: relative;
    left: 0;
  }
  .prodet-page .prodet-1 .right h1{
    padding-right: 0;
  }
}
@media screen and (max-width: 1250px) {
  .inner-banner{
    margin-top: 40px;
  }
  .inner-banner .ui.container h2 {
    font-size: 30px;
  }
  .about-page .about-1 .box .wrap .right {
    padding-right: 60px;
  }
  .about-page .about-2 .list ul li .box .h4 {
    font-size: 20px;
  }
  .product-yd-page .item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .product-yd-page .item .img .small-img {
    width: 48%;
  }
  .product-yd-page .item .content .txt {
    margin-bottom: 20px;
  }
  .product-yd-page .item .content ul {
    margin-bottom: 30px;
  }

  .hose-page .hose-2 .h2{
    font-size: 43px;
  }
  .hose-page .hose-3 .right .txt{
    margin-top: 15px;
  }
  .hose-page .hose-4 .right ul li .h5{
    font-size: 24px;
  }
  .news-page ul li{
    width: 50% !important;
  }
  .seoNews.news-page ul li{
    width: auto !important;
  }
  .contact-page .contact-2 ul .li2{
    width: 42%;
  } 
}
@media screen and (max-width: 1000px) {
  #index-body .i-advantage .top .more_btn {
    position: relative;
  }
  #index-body .i-advantage .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .i-advantage .top .i-title {
    width: 100%;
    margin-left: 0;
    margin: 20px 0;
    line-height: 1.8;
  }
  #index-body .i-advantage .list {
    padding: 0 15px;
  }
  .inner-banner{
    background: #000;
    padding: 40px 0;
  }
  .inner-banner > img{
    display: none;
  }
  .inner-banner .ui.container{
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
  }
  .inner-banner .ui.container .box{
    padding-bottom: 0;
  }

  .about-page .about-1 .box .wrap .left {
    width: 100%;
  }
  .about-page .about-1 .box .wrap .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-1 .top {
    padding-left: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-1 .top .i-title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    line-height: 2;
  }
  .inner-banner .ui.container h2 {
    font-size: 26px;
  }
  .inner-banner .ui.container .box .mbx{
    font-size: 15px;
  }
  .about-page .about-1 .box ul {
    width: 75%;
  }
  .about-page .about-1 .box .play {
    right: 35px;
  }
  .about-page .about-2 .list {
    padding-left: 20px;
  }
  .about-page .about-2 .top .more_btn {
    position: relative;
    left: 0;
    top: 30px;
  }
  .about-page .about-2 .top {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .top .i-title {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .about-page .about-3 .left {
    width: 100%;
    padding-top: 0;
  }
  .about-page .about-3 .right {
    width: 100%;
    margin-top: 30px;
  }
  .about-page .about-3 .right ul li .h3 {
    font-size: 24px;
  }
  .about-page .about-3 .right ul li:hover .h3,
  .about-page .about-3 .right ul li.active .h3 {
    font-size: 25px;
  }
  .about-page .about-3 .right ul li:hover p,
  .about-page .about-3 .right ul li.active p {
    font-size: 16px;
  }
  .about-page .about-2 .list ul .slick-list {
    padding-right: 0;
  }
  .product-yd-page .item .img {
    display: none;
  }
  .product-yd-page .item .content {
    width: 100%;
  }
  .product-page .sideLeft {
    display: none;
  }
  .product-page .sideRight {
    width: 100% !important;
    padding-left: 0;
  }
  .prodet-page .prodet-1 .left{
    width: 100%;
  }
  .prodet-page .prodet-1 .right{
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
  .hose-page .hose-1 .left{
    width: 100%;
  }
  .hose-page .hose-1 .right{
    margin-top: 20px;
    width: 100%;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image,
  .elementor-widget-rebuilto-scroll-timeline .timeline-content-image{
    display: none;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline:before,
  .elementor-widget-rebuilto-scroll-timeline .timeline-line{
    left: 30px;
  }
  .hose-page .hose-1 .left .img2{
    padding-right: 0;
  }
  .hose-page .hose-4 .left,
  .hose-page .hose-3 .left{
    width: 100%;
  }
  .hose-page .hose-3 .right{
    width: 100%;
  }
  .hose-page .hose-4 .right{
    width: 100%;
    padding: 0 15px;
    margin-top: 20px;
  }
  .hose-page .hose-5 .top{
        -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hose-page .hose-5 .top .more_btn{
    position: relative;
    left: 0;
    top: 0;
  }
  .hose-page .hose-5 ul li .content{
    width: 45%;
  }
  .hose-page .hose-5 ul li .content .h4{
    font-size: 24px;
    line-height: 1.2;
  }
  .hose-page .hose-6 .top{
    width: 100%;
  }
  .hose-page .hose-6{
    background: white;
    padding-bottom: 50px;
  }
  .newdet-page .newdet-1 h1{
    font-size: 34px;
  }
  .contact-page .contact-2 ul{
    flex-wrap: wrap;
  }
  .contact-page .contact-2 ul li{
    text-align: left;
    margin-top: 20px;
    width: 100%;
  }
  .contact-page .contact-2 ul .li1,
  .contact-page .contact-2 ul .li2,
  .contact-page .contact-2 ul .li3{
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  #index-body .i-advantage .top {
    margin-bottom: 66px;
  }
  .inner-banner > img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .inner-banner .ui.container .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .inner-banner .ui.container .box .mbx {
    margin-bottom: 20px;
    line-height: 2;
  }
  .newdet-page{padding: 40px 0;}
  .newdet-page .newdet-1 h1{
    font-size: 26px;
    line-height: 1.3;
  }
  .about-page .about-1 .box ul {
    width: 100%;
  }
  .about-page .about-1 .box .play {
    top: 25%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: none;
  }
  .about-page .about-1 .box .wrap .right {
    padding: 0 15px;
  }
  .about-page .about-3 .right ul li {
    padding-right: 0;
  }
  .about-page .about-3 .right ul li .time {
    position: relative;
    left: 0;
    display: inline-block;
    top: 12px;
  }
  .hose-page .hose-1{
    padding-top: 55px;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-number{
    margin-right: 25px;
  }
  .hose-page .hose-2 .h2{
    font-size: 30px;
  }
  .hose-page .hose-6 .form{
    padding-right: 0;
  }
  .hose-page .hose-6 .form form .more_btn{
    position: relative;
    top: 0;
        -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  .hose-page .hose-5 ul li .content{
    position: relative;
    width: 100%;
  }
  .hose-page .hose-5 .top .more_btn{
    margin-top: 20px;
  }
  .news-page ul li{
    width: 100% !important;
  }
  .news-page ul li .box .h3{
    min-height: auto;
  }
  .faq-page .left,
  .faq-page .right{
    width: 100% !important;
  }
  .faq-page .right ul li .h4{
    font-size: 20px;
  }
  .faq-page .right ul li .content{
    font-size: 16px;
  }
  .contact-page .contact-2 ul{
    padding-top: 0;
  }
  .contact-page .contact-2 ul li{
    width: 100%;
    margin-top: 20px;
  }
  .prodet-page .prodet-2 ul.options li{
    width: 100%;
  }
  .seoPublic .Auxil-form .form ul li{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .inner-banner .ui.container h2 {
    font-size: 20px;
  }
  .about-page .about-1 .box ul{
    flex-wrap: wrap;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 40px;
  }
  .about-page .about-1 .box ul li{
    width: 100%;
  }
  .product-yd-page .item .content {
    padding: 0 15px !important;
  }
  .product-yd-page .item .content ul li .img-box img {
    max-width: 74%;
  }
  .product-yd-page {
    padding: 70px 0;
  }
  .hose-page .hose-6 .form form{
        -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .hose-page .hose-6 .form form input{
    width: 100%;
  }
}


.factory-page .cat_img{
  display: block;
  width: 100%;
}
.factory-page .catCont .tips .line{
  width: 4px;
  height: 24px;
  background: var(--color);
  margin-top: 6px;
}
.factory-page .catCont .tips .text{
  width: calc(100% - 4px);
  padding-left: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

@media screen and (max-width: 1450px) {
  .factory-page .catCont .tips .line{
    margin-top: 0;
  }
}

@media screen and (max-width: 1000px) {
  .factory-page .catCont .tips .line{
    height: 16px;
    margin-top: 2px;
  }
  .factory-page .catCont .content li{
    width: 33.33%;
  }
}

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

}

@media screen and (max-width: 500px) {
  .factory-page .catCont .tips .text{
    padding-left: 4px;
  }
  .factory-page .catCont .content li{
    width: 50%;
  }
}