body {
  font-family: "Arial";
  max-width: 1920px;
  font-weight: normal;
  --base-color: rgba(53, 146, 255, 1);
  --color: rgba(53, 146, 255, 1);
  margin: 0 auto;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1560px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 30px;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  height: 70px;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
  width: 580px;
  height: 100%;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  padding: 0 25px;
  font-size: 18px;
  color: white;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li:first-child {
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
    color: #fff;
    background: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.more {
  font-size: 18px;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  overflow: hidden;
  height: 3em;
  line-height: 3em;
  padding-right: 3em;
  z-index: 3;
  letter-spacing: .1em;
  display: inline-block;
  transition: 0.3s all;
}
.more.black {
  color: black;
}
.more.black:hover {
  color: white;
}
.more:before {
  content: "";
  position: absolute;
  right: 0;
  background: var(--base-color);
  width: .7em;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
  top: 0;
  height: 100%;
  z-index: -1;
  transition: 0.3s all;
  transform-origin: right top;
}
.more:after {
  content:attr(data-text);
  position: absolute;
  right: 1.3em;
  width: 3.6em;
  height: 100%;
  top: 0;
  background: var(--base-color);
  z-index: -1;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
  transform-origin: right top;
  transition: 0.3s all;  
}
.more:hover {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
.more:hover:after,
.more:hover:before {
  width: 100%;
  right: 0;
  transform: skewX(0);
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: 0;
  width: 220px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5%;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .yuy {
  height: 100%;
  position: relative;
}
#header .nav .ui.menu .yuy span {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  color: white;
}
#header .nav .ui.menu .yuy span img {
  margin-right: 1em;
  display: block;
}
#header .nav .ui.menu .yuy span i {
  margin-left: .5em;
}
#header .nav .ui.menu .yuy ul {
  position: absolute;
  right: 0;
  top: 100%;
  width: 120px;
  background-color: white;
  display: none;
}
#header .nav .ui.menu .yuy ul li {
  border-top: 1px solid #eee;
}
#header .nav .ui.menu .yuy ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding: .5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .yuy ul li a img {
  max-width: 24px;
  margin-right: .5em;
}
#header .nav .ui.menu .yuy ul li a:hover {
  background-color: var(--color);
  color: white;
}
#header .nav .ui.menu .yuy:hover ul {
  display: block;
}
#header.active {
  top: 0;
  background-color: rgba(0, 0, 0, 0.31);
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
#header.active .ui.menu .menu-box ul.menu>li {
    /*color: #000;*/
}

#header.active .nav .ui.menu .yuy span{
   /*color: #000;*/
}
#header.active .nav .ui.menu .yuy span img {
    /*filter: grayscale(0) brightness(0);*/
}
#header.active .nav .ui.menu .h-search img {
  /*filter: grayscale(0) brightness(0);*/
}

#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
  background-size: 12px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #ccc;
  width: auto !important;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(even) {
  background: #eee;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  left: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 20;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  left: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
  line-height: 28px;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 14px;
  line-height: 28px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -o-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
.link {
  font-size: 17px;
  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;
  --color2: white;
  color: var(--color2);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.link em {
  border-bottom: 1px solid var(--color2);
  line-height: 1;
  margin-right: 1em;
}
.link i.iconfont {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  border: 1px solid var(--color2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.link:hover {
  --color2: var(--color);
}
.link:hover i.iconfont {
  background-color: var(--color);
  color: white;
}
#banner li {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner li img.video {
  opacity: 0;
}
#banner li video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#banner li.video:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle,#000 1px,transparent 1px);
    background-size: 2px 2px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: .1;
}
#banner li .content {
  position: absolute;
  left: 0;
  bottom: 5%;
  text-align: center;
  color: white;
  width: 100%;
}
#banner li .content span.h2 {
  font-size: 48px;
  line-height: 1.4;
  display: block;
  max-width: 12.95833333em;
  font-weight: 600;
  margin: 0 auto .5em;
}
span.tag {
  font-size: 18px;
  color: rgba(53, 146, 255, 1);
  display: block;
  line-height: 1.2;
}
span.h2 {
  font-size: 58px;
  font-weight: bold;
  line-height: 1.20689655;
  display: block;
}
.text {
  font-size: 18px;
  color: #222;
  line-height: 1.7;
}
.btn {
  font-size: 10px;
}
.btn div {
  width: 4.5em;
  height: 4.5em;
  background-color: rgba(0,0,0,0.4);
  margin-right: .3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.btn div i.iconfont {
  font-size: 1.8em;
}
.btn div:hover {
  background-color: var(--color);
}
#index-body .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .flex .title {
  max-width: 530px;
}
#index-body .flex .text {
  max-width: 660px;
}
#index-body .init-1 {
  padding: 110px 0;
}
#index-body .init-1 .box {
  margin-top: calc(4.1667vw + 20px);
  position: relative;
}
#index-body .init-1 .box ul {
  padding-right: 42%;
  overflow: hidden;
}
#index-body .init-1 .box ul .slick-list {
  overflow: unset;
}
#index-body .init-1 .box ul li {
  padding-right: 20px;
}
#index-body .init-1 .box ul li .img {
  height: 660px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#index-body .init-1 .box ul li .img:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  transition: .8s;
  z-index: -2;
}
#index-body .init-1 .box ul li .img:hover:after {
  transform: scale(1.1);
}
#index-body .init-1 .box ul li .img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background-image: -webkit-linear-gradient(bottom, black, transparent);
  background-image: -moz-linear-gradient(bottom, black, transparent);
  background-image: linear-gradient(to top, black, transparent);
  opacity: .5;
  z-index: -1;
}
#index-body .init-1 .box ul li .img .bottom {
  position: absolute;
  left: 0;
  bottom: 1em;
  width: 100%;
  font-size: 24px;
  padding: 0 5%;
  color: white;
  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;
}
#index-body .init-1 .box ul li .img .bottom span.h6 {
  margin-right: 20%;
  transition: .5s;
  max-width: 240px;
}
#index-body .init-1 .box ul li .img:hover .bottom span.h6 {
  margin-right: 15%;
}
#index-body .init-1 .box ul li .img .bottom span.h6:hover {
  text-decoration: underline;
}
#index-body .init-1 .box .btn {
  font-size: 12px;
}
#index-body .init-1 .box .btn .next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateX(60%) translateY(-50%);
  -moz-transform: translateX(60%) translateY(-50%);
  -ms-transform: translateX(60%) translateY(-50%);
  transform: translateX(60%) translateY(-50%);
}
#index-body .init-2 {
  height: 900px;
  position: relative;
  z-index: 1;
  background-color: white;
}
#index-body .init-2 .mask i {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-position: center left;
  z-index: -1;
  -webkit-transition: .5s .5s;
  -moz-transition: .5s .5s;
  transition: .5s .5s;
  background-size: cover;
}
#index-body .init-2 .mask i.active {
  width: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list {
  height: 100%;
}
#index-body .init-2 .list ul {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .init-2 .list ul li {
  height: 100%;
  padding: 3% 1%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-2 .list ul li span.sidebar {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 16px;
  width: 100%;
  padding: .7em 0;
  /*-webkit-writing-mode: tb;
  -ms-writing-mode: tb;
  writing-mode: tb;*/
  /*text-align: center;*/
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  /*justify-content: flex-start;*/
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /*min-height: 13.88888889em;*/
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-align: center;
  justify-content: center
}
#index-body .init-2 .list ul li .bottom {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
#index-body .init-2 .list ul li .bottom span.h6 {
  font-size: 32px;
  display: block;
  margin-bottom: calc(1.3vw + 20px);
}
#index-body .init-2 .list ul li .bottom .text {
  color: inherit;
  min-height: 6.8em;
  margin: 1em 0;
}
#index-body .init-2 .list ul li.active {
  background-color: rgba(0, 0, 0, 0.4);
}
#index-body .init-2 .list ul li.active span.sidebar {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
#index-body .init-2 .list ul li.active .bottom {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
#index-body .init-3 {
  padding: 112px 0 99px;
}
#index-body .init-3 .list {
  margin-top: 60px;
}
#index-body .init-3 .list ul {
  margin: -20px;
}
#index-body .init-3 .list ul li {
  padding: 20px;
}
#index-body .init-3 .list ul li .box {
  border-radius: 10px;
  background-color: #f1f2f4;
  overflow: hidden;
  display: block;
  position: relative;
}
#index-body .init-3 .list ul li .box a.img-box {
  display: block;
}
#index-body .init-3 .list ul li .box .content {
  padding: 10px 20px 0;
}
#index-body .init-3 .list ul li .box .content span.h6 {
  font-size: 20px;
  display: block;
  line-height: 1.2;
  margin-bottom: .5em;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-3 .list ul li .box .content span.h6:hover {
  color: var(--color);
}
#index-body .init-3 .list ul li .box .content .text {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-right: 12px;
  /*height:54px;*/
}
#index-body .init-3 .list ul li .box .content a.link {
  float: right;
  padding: 6px;
  border-top-left-radius: 50%;
  background-color: white;
  margin-right: -20px;
  position: relative;
  margin-top: -0.5em;
}
#index-body .init-3 .list ul li .box .content a.link i.iconfont {
  background-color: var(--color);
  border-color: var(--color);
}
#index-body .init-3 .list ul li .box .content a.link:before,
#index-body .init-3 .list ul li .box .content a.link:after {
  content: '';
  width: .6em;
  height: .6em;
  background: -webkit-radial-gradient(10% 10%, circle, transparent 70%, white 30%);
  background: -moz-radial-gradient(10% 10%, circle, transparent 70%, white 30%);
  background: radial-gradient(circle at 10% 10%, transparent 70%, white 30%);
  position: absolute;
}
#index-body .init-3 .list ul li .box .content a.link:after {
  bottom: 0;
  right: 100%;
}
#index-body .init-3 .list ul li .box .content a.link:before {
  bottom: 100%;
  right: 0;
}
#index-body .init-4 {
  padding: calc(4.1667vw + 20px) 0 240px;
  background-image: url("../images/init-04-bg.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}
#index-body .init-4 .box .left {
  padding-right: 15%;
  width: 48%;
}
#index-body .init-4 .box .left span.tag {
  color: inherit;
  margin-bottom: .8em;
}
#index-body .init-4 .box .left span.h3 {
  font-size: 36px;
  line-height: 1.38888889;
  margin-bottom: 6em;
  display: block;
}
#index-body .init-4 .box .left .play {
  text-align: center;
  cursor: pointer;
  cursor: hand;
}
#index-body .init-4 .box .right {
  width: 52%;
  margin-top: 2.5%;
}
#index-body .init-4 .box .right > .text {
  color: inherit;
  font-size: 17px;
}
#index-body .init-4 .box .right .list {
  margin-top: 140px;
  text-align: center;
}
#index-body .init-4 .box .right .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#index-body .init-4 .box .right .list ul li {
  width: auto;
}
#index-body .init-4 .box .right .list ul li span.h6 {
  font-size: 40px;
  display: block;
  line-height: 1;
  margin-bottom: .9em;
}
#index-body .init-4 .box .right .list ul li .text {
  color: inherit;
}
#index-body .init-5 {
  padding: 90px 0 140px;
}
#index-body .init-5 .box .left {
  width: 49%;
  padding-right: 6%;
  vertical-align: middle;
}
#index-body .init-5 .box .left .img {
  position: relative;
}
#index-body .init-5 .box .left .img a.link2 {
  font-size: 18px;
  height: 3.88888889em;
  padding-right: 3.33333333em;
  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;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: white;
  border-top-left-radius: .5em;
  color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#index-body .init-5 .box .left .img a.link2 i {
  padding: 0 2em;
  display: block;
  line-height: 1;
}
#index-body .init-5 .box .left .img a.link2 i:before {
  font-size: 2em;
}
#index-body .init-5 .box .left .img a.link2:before,
#index-body .init-5 .box .left .img a.link2:after {
  content: '';
  width: .6em;
  height: .6em;
  background: -webkit-radial-gradient(10% 10%, circle, transparent 70%, white 30%);
  background: -moz-radial-gradient(10% 10%, circle, transparent 70%, white 30%);
  background: radial-gradient(circle at 10% 10%, transparent 70%, white 30%);
  position: absolute;
}
#index-body .init-5 .box .left .img a.link2:after {
  bottom: 0;
  right: 100%;
}
#index-body .init-5 .box .left .img a.link2:before {
  bottom: 100%;
  right: 0;
}
#index-body .init-5 .box .left .img a.link2:hover {
  color: black;
}
#index-body .init-5 .box .right {
  width: 51%;
  position: relative;
  vertical-align: middle;
}
#index-body .init-5 .box .right i.mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
#index-body .init-5 .box .right span.tag {
  margin-bottom: .3em;
}
#index-body .init-5 .box .right .list {
  margin-top: 6em;
  font-size: 10px;
}
#index-body .init-5 .box .right .list ul li {
  margin-top: 4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .init-5 .box .right .list ul li > i {
  width: 6em;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  margin-right: 5em;
}
#index-body .init-5 .box .right .list ul li .content span.h6 {
  font-size: 18px;
  display: block;
  line-height: 30px;
  margin-bottom: .5em;
}
#index-body .init-5 .box .right .list ul li .content .text {
  font-size: 16px;
  color: #797979;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#index-body .init-5 .box .right .list ul li .content a.link {
  --color2: var(--color);
      padding: 0.5em 0;
}
#index-body .init-5 .box .right .list ul li:last-child {
  margin-top: 4.5em;
}
#index-body .init-6 {
  padding: 150px 0;
  background-color: var(--color);
  background-image: url("../images/init-6-bg.png");
  background-position: center left;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}
#index-body .init-6 span.tag {
  color: inherit;
}
#index-body .init-6 a.link {
  margin-top: 1em;
}
#index-body .init-6 a.link:hover {
  --color: black;
}
#index-body .init-6 .right {
  position: relative;
}
#index-body .init-6 .right .box2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
#index-body .init-6 .right .box2 ul {
  margin: -10px;
  width: 100%;
}
#index-body .init-6 .right .box2 ul li {
  padding: 10px;
}
#index-body .init-6 .right .box2 ul li a {
  height: 220px;
  border-radius: 10px;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10%;
}
#index-body .init-6 .right .box2 ul li a img {
  max-height: 100%;
}
#index-body .init-6 .right .box2 ul:nth-child(1) {
  -webkit-animation: td 30s linear infinite;
  -moz-animation: td 30s linear infinite;
  animation: td 30s linear infinite;
}
#index-body .init-6 .right .box2 ul:nth-child(2) {
  animation: td 30s linear infinite reverse;
}
#index-body .init-7 {
  padding: 66px 0 96px;
  background: rgba(249, 249, 249, 1);
}
#index-body .init-7 .box .left {
  width: 42%;
  padding-right: 5%;
}
#index-body .init-7 .box .left span.tag {
  margin-bottom: .5em;
}
#index-body .init-7 .box .left .list {
  margin-top: 35px;
}
#index-body .init-7 .box .left .list ul li time {
  display: block;
  font-size: 15px;
  color: #727272;
  line-height: 1.2;
  margin-bottom: .6em;
}
#index-body .init-7 .box .left .list ul li span.h6 {
  font-size: 20px;
  display: block;
  line-height: 1.6;
}
#index-body .init-7 .box .left .list ul li .text {
  font-size: 15px;
  color: #2b2b2b;
  margin: 1em 0 2em;
  line-height: 30px;
}
#index-body .init-7 .box .left .list ul li a.link {
  --color2: var(--color);
}
#index-body .init-7 .box .left .btn {
  margin-top: 3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#index-body .init-7 .box .right {
  width: 58%;
}
#index-body .init-7 .box .right .list ul {
  margin: -15px;
}
#index-body .init-7 .box .right .list ul li {
  padding: 15px;
}
#index-body .init-7 .box .right .list ul li a.img-box {
  display: block;
}
#index-body .init-7 .box .right .list ul li .content {
  padding: 0 10px;
}
#index-body .init-7 .box .right .list ul li .content span.h6 {
  font-size: 18px;
  font-weight: bold;
  margin: .4em 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
}
#index-body .init-7 .box .right .list ul li .content span.h6:hover {
  color: var(--color);
}
#index-body .init-7 .box .right .list ul li .content time {
  display: block;
  font-size: 15px;
  color: #727272;
}
@-webkit-keyframes td {
  from {
    -webkit-transform: translateY(-33.33%);
    transform: translateY(-33.33%);
  }
  to {
    -webkit-transform: translateY(-66.66%);
    transform: translateY(-66.66%);
  }
}
@-moz-keyframes td {
  from {
    -moz-transform: translateY(-33.33%);
    transform: translateY(-33.33%);
  }
  to {
    -moz-transform: translateY(-66.66%);
    transform: translateY(-66.66%);
  }
}
@keyframes td {
  from {
    -webkit-transform: translateY(-33.33%);
    -moz-transform: translateY(-33.33%);
    transform: translateY(-33.33%);
  }
  to {
    -webkit-transform: translateY(-66.66%);
    -moz-transform: translateY(-66.66%);
    transform: translateY(-66.66%);
  }
}
#footer {
  background-image: url("../images/footer-bg.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}
#footer .footer-top {
  padding: 70px 0 70px;
  text-align: center;
}
#footer .footer-top .ui.container {
  max-width: 870px;
}
#footer .footer-top span.h3 {
  font-size: 24px;
  line-height: 1.5;
  display: block;
  margin-bottom: .8em;
}
#footer .footer-top .form ul {
  font-size: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
#footer .footer-top .form ul li {
  width: 25%;
}
#footer .footer-top .form ul li input {
  display: block;
  width: 100%;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 1em;
  height: 4em;
}
#footer .footer-top .form ul li input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}
#footer .footer-top .form ul li input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}
#footer .footer-top .form ul li input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}
#footer .footer-top .form ul li input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}
#footer .footer-top .form ul li input::placeholder {
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
}
#footer .footer-top .form ul li .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-top .form ul li .flex button {
  width: 4em;
  background-color: white;
  border: none;
  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;
  color: #000;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-top .form ul li .flex button i.iconfont {
  font-size: 2em;
}
#footer .footer-top .form ul li .flex button:hover {
  background-color: black;
  color: white;
}
#footer .footer-top .form ul li:last-child {
  width: 50%;
}
#footer .footer-center {
  padding-bottom: 40px;
}
#footer .footer-center .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
#footer .footer-center .flex .slide span.h6 {
  font-size: 24px;
  display: block;
  line-height: 1.2;
  margin-bottom: .8em;
}
#footer .footer-center .flex .slide p {
  font-size: 15px;
  line-height: 30px;
}
#footer .footer-center .box .left {
  width: 35%;
  padding-right: 7%;
}
#footer .footer-center .box .left .flex {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer .footer-center .box .left .flex .slide {
  margin-bottom: 15px;
}
/*#footer .footer-center .box .left .flex .slide:nth-child(1),
#footer .footer-center .box .left .flex .slide:nth-child(2) {
  width: 48%;
}*/
#footer .footer-center .box .left .flex .slide:last-child {
  margin-bottom: 0;
}
#footer .footer-center .box .right {
  width: 65%;
}
#footer .footer-center .box .right .flex {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-center .box .right .flex span.h6 {
  margin-bottom: .8em;
}
#footer .footer-center .box .right .flex .nav {
  font-size: 15px;
  line-height: 1.8;
}
#footer .footer-center .box .right .flex .nav ul li a:before {
  content: '\e6ac';
  font-family: "iconfont";
  margin-right: .5em;
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#footer .footer-center .box .right .flex .nav ul li a:hover:before {
  left: .5em;
}
#footer .footer-center .box .right .flex #ewm {
  width: 113px;
  border: 4px solid white;
}
#footer .footer-center .box .right .flex .share {
  font-size: 14px;
  margin-top: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-bottom {
  font-size: 16px;
  padding: 1.6em 0;
}
#footer .footer-bottom .coy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#footer .footer-bottom .coy p {
  margin: 0 .5em;
}
#footer .footer-bottom .coy svg {
  max-height: 1.625em;
  width: auto;
  display: block;
  fill: white;
}
@media screen and (max-width: 1700px) {
  .ui.container {
    width: 1400px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li,
  span.tag,
  .text,
  #index-body .init-2 .list ul li span.sidebar,
  #index-body .init-5 .box .left .img a.link2 {
    font-size: 16px;
  }
  #header .nav .ui.menu .logo img {
    max-height: 40px;
  }
  #header .nav .ui.menu {
    height: 60px;
  }
  #header {
    top: 10px;
  }
  #banner li .content span.h2 {
    font-size: 36px;
  }
  span.h2 {
    font-size: 48px;
  }
  #index-body .init-1,
  #index-body .init-3,
  #index-body .init-5,
  #index-body .init-7 {
    padding: 80px 0;
  }
  #index-body .init-1 .box {
    margin-top: 60px;
  }
  #index-body .init-1 .box ul li .img {
    height: 420px;
  }
  #index-body .init-1 .box ul li .img .bottom {
    font-size: 20px;
  }
  #index-body .init-2 {
    height: 700px;
  }
  #index-body .init-2 .list ul li .bottom span.h6 {
    font-size: 24px;
  }
  .link,
  #index-body .init-4 .box .right > .text {
    font-size: 15px;
  }
  #index-body .init-3 .list ul li .box .content span.h6 {
    font-size: 18px;
  }
  #index-body .init-3 .list ul li .box .content .text {
    font-size: 14px;
  }
  #index-body .init-4 .box .left span.h3 {
    font-size: 28px;
  }
  #index-body .init-4 .box .left .play img {
    max-height: 60px;
  }
  #index-body .init-4 .box .right {
    margin-top: 3%;
  }
  #index-body .init-4 .box .right .list {
    margin-top: 50px;
  }
  #index-body .init-4 .box .right .list ul li span.h6 {
    font-size: 28px;
  }
  #index-body .init-4 {
    padding: 70px 0 180px;
  }
  #index-body .init-5 .box .right .list {
    font-size: 8px;
  }
  #index-body .init-6 .right .box2 {
    width: 80%;
  }
  #index-body .init-6 .right .box2 ul li a {
    height: 140px;
  }
  #footer .footer-top {
    padding: 50px 0;
  }
  #footer .footer-center .flex .slide span.h6 {
    font-size: 20px;
  }
  #footer .footer-center .flex .slide p {
    font-size: 14px;
  }
  #footer .footer-center {
    padding-bottom: 0;
  }
  #footer .footer-bottom {
    font-size: 14px;
  }
}
@media screen and (max-width: 1450px) {
  .ui.container {
    width: 1200px;
  }
  #banner li .content span.h2 {
    font-size: 28px;
  }
  span.h2 {
    font-size: 36px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li,
  span.tag,
  .text,
  #index-body .init-2 .list ul li span.sidebar,
  #index-body .init-5 .box .left .img a.link2 {
    font-size: 14px;
  }
  #index-body .init-1 .box ul li .img .bottom {
    font-size: 18px;
  }
  #index-body .init-1 .box ul li .img {
    height: 380px;
  }
  #index-body .init-2 {
    height: 600px;
  }
  #index-body .init-2 .list ul li .bottom span.h6 {
    font-size: 20px;
  }
  #index-body .init-5 .box .right .list {
    font-size: 6px;
  }
  #index-body .init-5 .box .right .list ul li .content .text,
  #index-body .init-7 .box .left .list ul li time,
  #index-body .init-7 .box .right .list ul li .content time {
    font-size: 14px;
  }
  #index-body .init-5 .box .right .list ul li .content span.h6 {
    font-size: 16px;
  }
  #index-body .init-6 {
    padding: calc(4.1667vw + 20px) 0;
  }
  #index-body .init-7 .box .left .list ul li .text {
    font-size: 14px;
  }
  #index-body .init-7 .box .left .list ul li span.h6 {
    font-size: 18px;
  }
  #index-body .init-7 .box .right .list ul li .content span.h6 {
    font-size: 16px;
  }
}
@media screen and (max-width: 1250px) {
  .ui.container {
    width: 970px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block;
  }
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
  #banner li .content span.h2 {
    font-size: 24px;
  }
  #index-body .flex .text {
    max-width: 50%;
  }
  #index-body .flex .title {
    max-width: 45%;
  }
  span.h2 {
    font-size: 28px;
  }
  #index-body .init-1 .box ul li .img {
    height: 300px;
  }
  #index-body .init-1 .box .btn {
    font-size: 9px;
  }
  #index-body .init-2 .list ul li .bottom span.h6 {
    font-size: 18px;
  }
  #index-body .init-2 .mask i {
    background-size: cover;
  }
  #index-body .init-3 .list ul li {
    padding: 10px;
  }
  #index-body .init-3 .list ul {
    margin: -10px;
  }
  #index-body .init-4 .box .left span.h3 {
    font-size: 24px;
  }
  #index-body .init-4 .box .left {
    padding-right: 8%;
  }
  #index-body .init-5 .box .right .list ul li {
    margin-top: 2em;
  }
  #index-body .init-5 .box .left {
    padding-right: 2%;
  }
  #index-body .init-5 .box .right .list {
    margin-top: 4em;
  }
  #index-body .init-5 .box .left .img a.link2 i {
    padding: 0 1em;
  }
  #index-body .init-5 .box .left .img a.link2 {
    padding-right: 2em;
  }
  #index-body .init-6 .right .box2 ul li a {
    height: calc(4.1667vw + 20px);
  }
  #index-body .init-6 {
    background-size: contain;
  }
  #footer .footer-center .box .left {
    width: 100%;
    padding-right: 0;
  }
  #footer .footer-center .box .right {
    display: none;
  }
  #footer .footer-center .box .left .flex .slide {
    width: 48%;
  }
  #footer .footer-center .box .left .flex {
    gap: 4%;
  }
  #footer .footer-center .flex .slide span.h6 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #banner li .content span.h2 {
    font-size: 20px;
  }
  span.h2 {
    font-size: 24px;
  }
  #index-body .flex .title {
    max-width: none;
  }
  #index-body .flex .text {
    max-width: none;
    margin-top: 1em;
        line-height: 28px;
  }
  #index-body .flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-1,
  #index-body .init-3,
  #index-body .init-5,
  #index-body .init-7 {
    padding: 50px 0;
  }
  #index-body .init-1 .box {
    margin-top: 30px;
  }
  #index-body .init-1 .box ul li .img {
    height: 240px;
  }
  #index-body .init-1 .box ul li .img .bottom {
    font-size: 14px;
  }
  #index-body .init-2 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #index-body .init-2 .list ul li {
    width: 33.33%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  #index-body .init-2 .list ul li .bottom {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  #index-body .init-2 .list ul li span.sidebar {
    display: none;
  }
  #index-body .init-2 {
    height: auto;
  }
  #index-body .init-2 .list ul li .bottom .text {
    min-height: auto;
  }
  #index-body .init-3 .list {
    margin-top: 30px;
  }
  #index-body .init-4 .box .left {
    padding-right: 0;
    width: 100%;
  }
  #index-body .init-4 .box .right {
    width: 100%;
    padding-left: 0;
  }
  #index-body .init-4 .box .left span.h3 {
    margin-bottom: 1em;
  }
  #index-body .init-4 {
    padding: 70px 0;
  }
  #index-body .init-5 .box .left {
    display: none;
  }
  #index-body .init-5 .box .right {
    width: 100%;
  }
  #index-body .init-7 .box .left {
    width: 100%;
    padding-right: 0;
  }
  #index-body .init-7 .box .right {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #index-body .init-1 .box ul li .img {
    height: 200px;
  }
  #index-body .init-2 .list ul li {
    width: 50%;
    padding: 3%;
  }
  #index-body .init-6 .right .box2 {
    width: 100%;
  }
  #index-body .init-6 .right .box2 ul li a {
    height: 70px;
  }
  #index-body .init-6 {
    padding: 70px 0;
  }
  .btn {
    font-size: 8px;
  }
}
@media screen and (max-width: 500px) {
  #footer .footer-top .form ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-top .form ul li {
    width: 100% !important;
  }
  #index-body .init-4 .box .left span.h3 {
    font-size: 20px;
  }
  #index-body .init-6 .right {
    display: none;
  }
  #footer .footer-top span.h3 {
    font-size: 20px;
  }
  #footer .footer-center .box .left .flex .slide {
    width: 100%;
  }
  #footer .footer-bottom .coy {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-bottom .coy p {
    margin: 0;
  }
  #footer .footer-bottom .coy p.footsen {
    display: none !important;
}
  #index-body .init-2 .list ul li {
    width: 100%;
  }
  .link,
  #index-body .init-4 .box .right > .text {
    font-size: 14px;
  }
  .link i.iconfont {
    width: 1.8em;
    height: 1.8em;
  }
  span.h2 {
    font-size: 22px;
  }
}


/*设计师*/
 @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

#header .nav .ui.menu .logo img {
    filter: grayscale(100%) brightness(1000%);
}

#header.active .nav .ui.menu .logo img {
    filter: none;
}
#index-body .init-4 .box .right .link.more {
    margin-top: 30px;
}
#index-body .init-5 .box .right .list ul li .content:hover a.link {
    background: var(--color);
    color: #fff;
    padding: 0.5em 1em 0.5em 2em;
    border-radius: 3em;
}
#index-body .init-5 .box .right .list ul li:hover img {
    transform: rotateY(360deg);
      transition: 1s 0s;
}

#index-body .init-5 .box .right .list ul li img{
   transition: 1s 0s;
}



#index-body .init-4 .box .right>.text p {
    text-align: justify;
}

#index-body .init-5 .box .right .list ul li .content .text p {
    text-align: justify;
}

#footer .footer-center .flex .slide p span {
    padding-left: 35px;
}




 .backtop {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: var(--base-color);
  color: #fff;
  right: 25px;
  bottom: 120px;
  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: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 999;
}
.backtop:hover {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  background: #000;
}
.mb-nav {
  position: relative;
  padding: 20px;
  display: none;
}
.mb-nav h5 {
  font-size: 24px;
  font-weight: bold;
  background: #7bc21f;
  color: #222;
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.mb-nav h5:hover {
  color: #fff;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.mb-nav .catebox {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: 99;
  background: #fff;
  display: none;
}
.mb-nav .catebox i {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  z-index: 9999;
  font-size: 20px;
  padding: 20px;
}
.mb-nav .catebox i:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #7bc21f;
}
.mb-nav .catebox ul.catelist > li {
  margin: 5px 0;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}
.mb-nav .catebox ul.catelist > li ul.sub-menu {
  width: 100%;
}
.mb-nav .catebox ul.catelist > li ul.sub-menu li li {
  padding-left: 20px;
  margin: 5px;
  font-size: 14px;
  color: #000;
}
.mb-nav .catebox ul.catelist > li li a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.mb-nav .catebox ul.catelist > li li a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: #7bc21f;
}
img[src=""],
img:not([src]) {
  opacity: 0;
}
.seo_title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
#seo_about ._box {
  margin: -15px;
}
#seo_about ._left,
#seo_about ._right {
  padding: 15px;
}
#honor_list ul {
  margin: -15px;
}
#honor_list ul li {
  padding: 15px;
}
#news_list ul {
  margin: -15px;
}
#news_list ul li {
  padding: 15px;
}
#news_list ._time span {
  display: inline-block;
  padding: 5px;
}
#news_list ._time span._cate {
  color: #FFFFFF;
  background-color: #000000;
}
#news_list ._time span._date {
  background-color: #CCCCCC;
}
#news_list ._table {
  padding: 20px;
  border: 2px solid #CCCCCC;
}


.i-title {
  font-family:"mic";
  line-height: 1.3;
}

.inner-banner {
  position: relative;
  /*margin-top: 110px;*/
}
.inner-banner .ui.container {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.inner-banner .ui.container h2 {
  font-size: 52px;
  font-weight: bold;
  color: white;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  line-height: 1.5;
}
.inner-banner .ui.container .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 25px 0 45px;
}
.inner-banner .ui.container .box .mbx {
  font-size: 18px;
  color: white;
  line-height: 1.8;
}
.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(--base-color);
}
.inner-banner .ui.container .box .more_btn .more {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.inner-banner .ui.container .box .more_btn .arrow {
  background: var(--base-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: calc(4.1667vw + 20px);
}
.about-page .about-1 .top .i-title {
  width: 40%;
  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: calc(4.1667vw + 20px) 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;
  display: block;
}
.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(--base-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.6;
  opacity: 0.73;
}
.about-page .about-2 {
  background: #0d0d0d;
  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(--base-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(../images/about-page-3-bg.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: 100%;
  padding-top: 30px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
}
.about-page .about-3 .left .i-title{
  margin-left: 40px;
}
.about-page .about-3 .right {
  width: 100%;
}
.about-page .about-3 .right ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 30px 0;
  padding-right: 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-page .about-3 .right ul li .lefts{
  width: 70%
}
.about-page .about-3 .right ul li .imgs{
  width: 30%;
  max-width: 300px;
  margin-top: 30px;
}
.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(--base-color);
  color: white;
  /*height: 40px;
  line-height: 44px;*/
  border-radius: 20px;
  position: absolute;
  right: 50px;
  top: 15px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  padding: 0 0px;
}
.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-3 .right ul li .imgs{
width: 300px;
margin-top: 20px;
}*/
.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(--base-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: 25px;
  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: 21px;
  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(--base-color);
}
.product-page {
  padding-top: calc(4.1667vw + 20px);
  padding-bottom: calc(4.1667vw + 20px);
}
.product-page .sideLeft {
  width: 30% !important;
}
.product-page .sideLeft .top {
  background: #191919;
  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: 10px;
  border-radius: 100%;
  width: 58px;
  height: 58px;
  background: url(../images/search.png) no-repeat center var(--base-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 > a {
  position: relative;
  padding: 15px 15px;
  color: white;
  font-size: 20px;
  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);
  line-height: 1;
}
.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: 0;
}
.product-page .sideLeft .top .nav ul li{
  position: relative;
}
.product-page .sideLeft .top .nav ul li img.dec{
  position: absolute;
  right: 5px;
  top: 20px;
  z-index: 9;
  cursor: pointer;
}
.product-page .sideLeft .top .nav ul li > a::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 9px;
  height: 100%;
  background: var(--base-color);
  opacity: 0;
}
.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(--base-color)), to(transparent));
  background: -webkit-linear-gradient(left, var(--base-color), transparent);
  background: -moz-linear-gradient(left, var(--base-color), transparent);
  background: linear-gradient(to right, var(--base-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.active a,
.product-page .sideLeft .top .nav ul li ul li:hover a{
  color: var(--base-color);
}*/
.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;
  color: white;
  font-weight: bold;
  text-align: center;
  font-family: 'mic';
}
.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: -10px;
}
.product-page .sideRight ul li {
  padding: 10px;
  text-align: center;
}
.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: 150px 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;
}
.prodet-page .prodet-1 .right .content {
  font-size: 18px;
  line-height: 1.6;
  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: 30px 50px;
}
.prodet-page .prodet-1 .right .gallery ul li a img {
  width: auto;
  margin: auto;
}
.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;
  background: #f6f6f6;
  height: 96px;
  -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: 0 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(--base-color);
}
.prodet-page .prodet-2 ul.options li.active {
  background: var(--base-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;
  line-height: 1.6;
}
.prodet-page .prodet-2 .box .content ul li{
  list-style-type: disc;
}
.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: 1.6;
  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 .right {
  width: 70%;
}
.hose-page .hose-1 .right .content {
  font-size: 18px;
  line-height: 26px;
  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: 26px;
  color: #5e5e5e;
  margin-bottom: calc(4.1667vw + 20px);
}
.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: 26px;
  color: #5e5e5e;
  margin-top: 10px;
}
.hose-page .hose-4 .right {
  vertical-align: middle;
}
.hose-page .hose-4 .left {
  padding: 0 140px 0 84px;
  vertical-align: middle;
}
.hose-page .hose-4 .left .i-title {
  margin: 18px 0 20px;
}
.hose-page .hose-4 .left .txt {
  font-size: 18px;
  line-height: 25px;
  color: #5e5e5e;
}
.hose-page .hose-4 .left ul li {
  border-top: 1px solid #eee;
  position: relative;
  padding-left: 90px;
  padding-top: 60px;
  padding-bottom: 47px;
}
.hose-page .hose-4 .left ul li .h5 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.hose-page .hose-4 .left ul li p {
  font-size: 20px;
  line-height: 25px;
  color: #5e5e5e;
  margin-top: 12px;
}
.hose-page .hose-4 .left ul li:first-child {
  border-top: none;
}
.hose-page .hose-4 .left ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background: url(../images/icon.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(--base-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(--base-color);
}
.hose-page .hose-5 ul .slick-dots li.slick-active button {
  opacity: 1;
}
.hose-page .hose-6 {
  padding: calc(4.1667vw + 20px) 0;
  background: url(../images/hose-form-bg.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: 25px;
  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(--base-color);
  box-shadow: 0 0 0 1px var(--base-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: 26px;
  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;
}
.elementor-widget-rebuilto-scroll-timeline .timeline-line {
  width: 1px;
  background-color: var(--base-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(--base-color);
  box-shadow: 0 0 0 1px var(--base-color);
}
.contact-page .contact-2 ul {
  margin: 0 -70px;
  padding: 70px 0;
  border-radius: 0 0 50px 50px;
}
.contact-page .contact-2 ul li {
  padding: 0 70px;
  text-align: center;
}
.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: 32px;
  padding-top: 26px;
}
.faq-page {
  padding: calc(4.1667vw + 20px) 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.2;
  position: relative;
}
.faq-page .right ul li .h4 .fa {
  position: absolute;
  right: 0;
}
.faq-page .right ul li .content {
  font-size: 18px;
  line-height: 26px;
  margin-top: 20px;
  display: none;
}
.news-page {
  padding: calc(4.1667vw + 20px) 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;
 line-height: 1.5;
 display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-page ul li .box .content {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.news-page ul li .box .more_btn .more::after {
  color: black;
}
.newdet-page {
  padding: calc(4.1667vw + 20px) 0;
}
.newdet-page .newdet-1 {
  text-align: center;
}
.newdet-page .newdet-1 h1 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.4;
}
.newdet-page .newdet-1 .time {
  font-size: 18px;
  opacity: 0.8;
  margin: 20px 0;
}
.newdet-page .newdet-1 .content {
  font-size: 18px;
  line-height: 1.6;
  border-top: 1px dashed rgba(0, 0, 0, 0.2);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  padding: 30px 0;
  text-align: left;
}
.newdet-page .newdet-1 .m-link{
  text-align: left;
  line-height: 1.6;
}
.gallery-page {
  padding: calc(4.1667vw + 20px) 0;
}
.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: 1400px) {
  #index-body .i-advantage .top .more_btn{
    position: relative;
  }
  .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;
  }
  .about-page #index-body .i-advantage.honor .top{
    flex-wrap: wrap;
  }
   #index-body .i-advantage .top .i-title{
    width: 100%;
     margin: 20px 0;
    margin-left: 0;
   
  }
}
@media screen and (max-width: 1200px) {
  .about-page #index-body .i-advantage.honor .top{
    flex-wrap: wrap;
  }
  .inner-banner .ui.container h2 {
    font-size: 42px;
  }
  .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;
  }
  #index-body .i-advantage .top .i-title{
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 1000px) {
  .font-45 {
    font-size: 24px;
}
.gardentools{
  display: none!important;
}
.product-page {
  padding-top: 10px;
  padding-bottom: calc(4.1667vw + 20px);
}

.newdet-page .newdet-1 .m-link{
  text-align: left;
  line-height: 2;
}

element.style {
}
.seoIndustry.Auxil-industry {
    display: none !important;
}
.font-48 {
    font-size: 24px;
}
.about-page .about-3 .left{
  flex-wrap: wrap;
}
.about-page .about-1 .box .wrap .right .content{
  font-size: 14px;
  line-height: 2;
}
  .about-page #index-body .i-advantage{
    background: #fff;
  }
  .inner-banner{
    margin-top: 40px;
  }
  .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;
  }
  .inner-banner .ui.container h2 {
    font-size: 38px;
  }
  .about-page .about-1 .box ul {
    width: 75%;
  }
  .about-page .about-1 .box .play {
    right: 35px;
    display: none;
  }
  .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;
  }
  .hose-page .hose-1 .left{
    width: 100%;
  }
  .hose-page .hose-1 .right{
    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-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%;
  }
  .news-page ul li{
     width: 50%!important;
  }
  .newdet-page .newdet-1 h1{
    font-size: 28px;
  }
  .prodet-page .prodet-1 .left{
    width: 100%;
  }
  .prodet-page .prodet-1 .right{
    width: 100%;
    padding-left: 0;
    padding-top:20px; 
  }
  .prodet-page .prodet-1 .right .gallery ul li a{
    padding: 10px;
  }
  .prodet-page .prodet-2 ul.options{
    height: 80px;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 ul.options li{
    padding:8px 25px;
    font-size: 14px;
    border-bottom-right-radius: 8px;
  }
}
@media screen and (max-width: 700px) {
  .font-30 {
    font-size: 24px;
}
   .news-page ul li{
    width: 100%!important;
  }
  .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;
  }
  .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%);
  }
  .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;
  }
   .newdet-page .newdet-1 h1{
    font-size: 22px;
  }
}
@media screen and (max-width: 500px) {
  .prodet-page .prodet-2 ul.options {
    height: auto;
    flex-wrap: wrap;
}
  .inner-banner .ui.container h2 {
    font-size: 22px;
  }
  .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%;
  }
}
.i-tag {
    font-size: 20px;
    font-weight: 600;
    color: var(--base-color);
}
.i-tag i {
    display: inline-block;
    vertical-align: middle;
    background-color: var(--base-color);
    width: 40px;
    height: 1px;
    margin-right: 20px;
}
.prodet-page .prodet-2 .box .content input {
  width: 46%;
  font-size: 18px;
  font-weight: 300;
  border: none;
  border-bottom: 1px solid #dbdbdb;
  height: 63px;
  margin-bottom: 30px;
}
.prodet-page .prodet-2 .box .content p {
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 20px;
}
.prodet-page .prodet-2 .box .content textarea {
  width: 100%;
  height: 177px;
  font-size: 18px;
  padding: 18px 8px;
  border: 1px solid #dbdbdb;
}
.prodet-page .prodet-2 .box .content input[type="submit"] {
  background:var(--color);
  color: white;
  border: none;
  width: 186px;
  height: 57px;
  margin-top: 45px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.prodet-page .prodet-2 .box .content input[type="submit"]:hover {
  background: #000;
}

    .seoPublic .title {
        font-size: 32px;
        font-weight: bold;
        line-height: 1.4;
        margin-bottom: 2em;
    }

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

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

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

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

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

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

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 24px;
        font-weight: normal;
        line-height: 1;
        margin-bottom: 1em;
    }

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

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

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

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

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

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

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

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

    .seoPublic .Auxil-news .list ul li .content {
        margin-top: 30px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 22px;
        line-height: 1.7;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

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

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

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

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

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

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

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

    .seoPublic .Auxil-form .form ul li textarea {
        height: calc(4.1667vw + 20px);
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

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

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

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

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

    .seoPublic .text a {
        color: #666;
    }

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

    .seoPublic .Auxil-through {
        padding: 15px 0;
        background: none !important;
        display: flex;
        justify-content: space-between;
    }

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

    .seoPublic .Auxil-through a:hover {
        background: var(--color);
        color: white;
    }

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

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

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

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

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

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

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

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

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

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

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

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

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

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

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

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

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

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

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

        .seoPublic .title {
            font-size: 24px;
            margin-bottom: 1em;
        }
         .seoPublic .Auxil-about .box .right .text {
        line-height: 2;
        color: #666;
        max-height: 400px;
        overflow: auto;
    }


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

        #cp-Nav {
            display: block;
        }

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

        #cp-Nav .nav div.title {
            font-size: 18px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
        }

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

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

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

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

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

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

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

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

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

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

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
    h1.nichacha {
    font-family: sans-serif;
    font-weight: 400;
}

.industry {
 font-size: 16px;
    line-height: 2;
    padding: 0 200px calc(4.1667vw + 20px);
    position: relative;
    }

    .industry h2 {
      font-size: 30px;
    font-weight: 700;
    padding-bottom: 30px;
    line-height: 1;    
    text-align:center; 
     }
     .industry h3{
font-size: 20px;
line-height: 1.5;
     }


/*2025/2/18  css add */

     .faq-page .right ul li{
       cursor: pointer;
     }
     #footer .wrap .share a{
       display: inline-flex;
       justify-content: center;
       align-items: center
     }
     #footer .wrap .share a img{
       max-width: 14px;
     }
@media screen and (max-width: 1250px) {
     #banner .bannerbox ul.bannerlist li .content .more {
       display: none !important;
     }
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-2 ul li {
    padding: 15px;
  }
  .contact-page .contact-2 ul {
    margin: -15px;
  }
  .contact-page .contact-2 ul li .icon img {
    max-height: 60px;
  }
  .contact-page .contact-2 ul li .h4 {
    font-size: 24px;
  }
  .hose-page .hose-6 .form {
    padding-right: 0;
  }
  .hose-page .hose-6 .form form input {
    font-size: 16px;
  }
  .inner-banner .ui.container .box {
    padding-bottom: 10px;
    padding-top: 15px;
  }
  .inner-banner .ui.container .box .mbx {
    font-size: 14px;
  }
  .more {
    font-size: 14px;
  }
  .news-page ul li .box .content {
    font-size: 16px;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item {
    align-items: center;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-heading {
    font-size: 20px;
  }
  .hose-page .hose-1 {
    padding-top: calc(4.1667vw + 20px);
  }
  .faq-page .right ul li .h4 {
    font-size: 20px;
  }
  /*.faq-page .right ul li.active .content {
    font-size: 15px;
    display: block !important
  }
    .faq-page .right ul li .content {
    font-size: 15px;
    display: block !important
  }*/
  .faq-page .right {
    width: 100% !important;
    padding-left: 0;
  }
  .faq-page .left {
    display: none;
  }
  .inner-banner .ui.container h2 {
    font-size: 24px;
  }
  #banner .bannerbox ul.bannerlist li .content span.h2 {
    font-size: 40px;
  }
  #banner .bannerbox ul.bannerlist li .content .left> img {
    max-width: 50%;
  }
  #banner .bannerbox ul.bannerlist li .content .right img {
    max-height: 60px;
  }
  #banner .bannerbox ul.bannerlist li .content .more {
    font-size: 14px;
  }
  #banner .slick-arrow {
    display: none;
  }
  .gxs-1 .left .productbox .cateitem ul li .item .imgbox img {
    max-height: 250px;
    margin-left: auto;
    margin-right: 0;
  }
  .gxs-2 .ui.container .videobox {
    position: relative;
    transform: unset;
    left: 0;
    margin: 30px auto 0;
  }
  .gxs-3 .ui.container .main a.more:before, .gxs-3 .ui.container .main a.more:after {
    background-color: var(--color);
  }
  .gxs-3 .bgimg {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  #banner .bannerbox ul.bannerlist li .content span.h2 {
    font-size: 28px;
  }
  #banner .bannerbox ul.bannerlist li .content .left {
    width: 100%;
  }
  #banner .bannerbox ul.bannerlist li .content .right {
    display: none;
  }
  .gxs-1 {
    padding-bottom: 80px;
  }
  .gxs-2 .ui.container .left .content {
    margin-bottom: 50px;
  }
  .gxs-2 .ui.container .right ul.datalist li {
    margin-bottom: 30px;
  }
  .gxs-2 .ui.container .videobox {
    margin-top: 50px;
  }
  .gxs-2 .ui.container .right {
    padding-left: 0;
  }
  .seoPublic .Auxil-through a {
    font-size: 14px;
  }
  .seoPublic .Auxil-through {
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 .box .content,.prodet-page .prodet-2 .box .content p,.prodet-page .prodet-1 .right .content {
    font-size: 15px;
  }
  .about-page .about-1 .box ul {
    position: static;
    margin-bottom: 30px;
  }
  .about-page .about-1 .box ul li {
    padding: 15px;
  }
  .about-page .about-1 .box ul li .h3 {
    margin-top: 20px;
  }
  .about-page .about-2 .top{
    margin-bottom: 30px;
  }
  .about-page .about-1{
    padding-top: 45px;
  }
.about-page .about-1 .box{
  padding: 35px 0;
  margin-top: 24px;
}
  .about-page .about-2 {
    padding: 40px 0 40px;
  }
  .about-page .about-2 .list .btn span {
    zoom: .7;
  }
  #index-body .i-advantage .top {
    margin-top: 0;
  }
  .i-contact ul li {
    padding-left: 0 !important;
  }
  .i-contact ul li i {
    display: none;
  }
  .font-36 {
    font-size: 24px;
  }
  .prodet-page .prodet-2 .box .content input {
    font-size: 16px;
    width: 100%;
  }
  .prodet-page .prodet-1 {
    padding: calc(3.5667vw + 20px) 0;
  }
  .newdet-page .newdet-1 .content {
    font-size: 16px;
  }
  .newdet-page .newdet-1 .content span {
    font-size: 18px !important;
  }
  .contact-page .contact-2 ul li .h4 {
    font-size: 20px;
    margin-top: .5em;
  }
  #banner .bannerbox ul.bannerlist li .content .more,#banner .slick-arrow {
    display: none !important;
  }
  #banner .bannerbox ul.bannerlist li .content span.h2 {
    font-size: 20px;
  }
  #banner .bannerbox ul.bannerlist li .content {
    top: 55%;
  }
  .gxs-1 .left {
    width: 70%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .gxs-1 .right {
    width: 30%;
  }
  .gxs-1 .right ul.catelist li .item .imgbox {
    width: 80%;
    margin-top: 0;
  }
  .gxs-1 .right ul.catelist li .item .font-34 {
    font-size: 14px;
  }
  .gxs-1 .right ul.catelist li .item a.font-14 {
    display: none;
  }
  .gxs-1 .right ul.catelist li .item {
    padding: 10px;
    height: 160px;
  }
  .gxs-1 .right ul.catelist li {
    padding-bottom: 20px;
  }
  .gxs-1 .left .productbox .cateitem ul li .item .text .pname {
    font-size: 14px;
  }
  .gxs-1 {
    padding-bottom: 40px;
  }
  .gxs-1 .left .productbox .cateitem .slick-dots,.gxs-3 .ui.container .main>a.more,.gxs-4 .top a.more {
    display: none !important;
  }
  .gxs-3 .ui.container .main .right ul li .box {
    text-align: left;
  }
  .gxs-3 .ui.container .main .right ul li .box .top {
    flex-direction: row;
  }
  .gxs-3 .ui.container .main .right ul li .box .top .h4 {
    margin-left: 5px;
    margin-right: 0;
  }
  .gxs-3 .ui.container {
    max-width: none;
    width: 100%;
  }
  /*.elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image {
    display: block;
    position: static;
    width: 100%;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item {
    flex-wrap: wrap;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-number {
    display: none;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-item:first-of-type .scroll-timeline-info {
    margin-top: 20px;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-heading {
    margin-top: 20px;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline:before,.elementor-widget-rebuilto-scroll-timeline .timeline-line {
    display: none;
  }
  .elementor-widget-rebuilto-scroll-timeline .scroll-timeline-image img {
    opacity: 1 !important;
  }*/
  .wap {
    display: block;
  }
  .elementor-widget-container {
    margin-top: 30px;
  }
  .hose-page .hose-1 .right .content {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .hose-page .hose-6 .form form input[type="submit"] {
    background-color: #eee;
  }
  .gxs-1 .left .productbox .cateitem ul li .item .text {
    position: static;
    margin-bottom: 15px;
  }
  .gxs-1 .left .productbox .cateitem ul li .item {
    padding-top: 0;
    padding-bottom: 10px;
  }
  .gxs-3 .ui.container .main .right {
    margin-top: 60px;
  }
  .gxs-3 .ui.container .main .right ul li .box .top .h4 {
    text-align: left;
  }
}


.fadeInLeft h1{
  display: inline;
  font: inherit;
  color: inherit;
}

.gardentools{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 399px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 3px 5px;
}
#top {
  color: black !important;
}
#top:hover {
  color: white !important;
}

 #index-body .i-advantage .top .more_btn a.more:after{
   -webkit-transform: translateY(-60px) skewX(0) ;
  -moz-transform: translateY(-60px) skewX(0);
  -ms-transform: translateY(-60px) skewX(0) ;
  transform: translateY(-60px) skewX(0);
}
#index-body .i-advantage .top .more_btn:hover a.more:after{
   -webkit-transform: translateY(-0px) skewX(0) ;
  -moz-transform: translateY(-0px) skewX(0);
  -ms-transform: translateY(-60px) skewX(0) ;
  transform: translateY(-0px) skewX(0);
}
#index-body .i-advantage {
  padding-bottom: calc(4.1667vw + 20px);
  padding-top: calc(4.1667vw + 20px);
  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: 50px 0 80px;
  justify-content: space-between;
  align-items: center;
}
#index-body .i-advantage .top .i-title {
  width: 60%;
  margin-left: 55px;
}
#index-body .i-advantage .top .more_btn {
  position: absolute;
  right: 0;
}
#index-body .i-advantage .top .more_btn a.more:before{
  display: none;
}
#index-body .i-advantage .top .more_btn a.more:after{
  background: transparent;
}
#index-body .i-advantage .top .more_btn a.more{
  color: #000;
}
#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: 0px;
}
#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;
}
#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: #3592ff;
  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;
  line-height: 1.5;
}
#index-body .i-advantage ul li .box .des {
  font-size: 16px;
  line-height: 2;
  color: #4d4d4d;
  height: 96px;
  overflow-y: auto;
}
#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;
}
@media screen and (max-width: 1600px) {

   #index-body .i-advantage ul {
    margin: -13px;
  }
  #index-body .i-advantage ul li {
    padding: 13px;
  }

  #index-body .i-advantage .list {
    padding-left: 80px;
  }}
  @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;
  }
    #index-body .i-advantage .list {
    padding: 0 15px;
  }
  }
   @media screen and (max-width: 700px){
        #index-body .i-advantage .top {
    margin-bottom: 66px;
  }
  }
  .gxs-4 {
  position: relative;
  padding-top: 10px;
  padding-bottom: 185px;
}
.gxs-4 .main {
  margin-top: 120px;
}
.gxs-4 .main ul.newslist {
  margin: 0 -35px;
}
.gxs-4 .main ul.newslist li {
  padding: 0 35px;
}
.gxs-4 .main ul.newslist li .item {
  padding-top: 25px;
  border-top: 2px solid #000;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-4 .main ul.newslist li .item:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  border-color: var(--base-color);
}
.gxs-4 .main ul.newslist li .item .cat {
  color: #000;
  font-size: 19px;
}
.gxs-4 .main ul.newslist li .item span.time {
  color: var(--base-color);
  display: block;
  font-size: 19px;
}
.gxs-4 .main ul.newslist li .item .h6 {
  margin: 1.4em 0 1.4em;
  line-height: 1.5;
}
.gxs-4 .main ul.newslist li .item .h6 a {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.gxs-4 .main ul.newslist li .item .h6 a:hover {
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  color: var(--base-color);
}
.gxs-4 .main ul.newslist li .item p {
  font-size: 19px;
  text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
line-height: 1.6;
}
.gxs-4 .waves {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 600px;
}
.gxs-4 .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gxs-4 .top a.more {
  color: #000!important;
  text-transform: uppercase;
}
@media (max-width: 700px) {
    .gxs-4 {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .gxs-4 .main {
    margin-top: 40px;
  }
}
@media (max-width:500px){
    .gxs-4 .main ul.newslist li .item p {
    font-size: 16px;
  }
}
#Pop_UpsBtn {
  display: none !important;
}
#ewm canvas,
#ewm img {
  width: 100%;
  display: block;
}
#pups_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
  z-index: 21;
  display: none;
}
#pups_from1 {
  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_from1 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_from1 form {
  margin-top: 40px;
}
#pups_from1 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_from1 i.close::after,
#pups_from1 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_from1 i.close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#pups_from1 i.close:hover {
  background: #6076f1;
}
#pups_from1 i.close:hover::before,
#pups_from1 i.close:hover::after {
  background: white;
}
#pups_from1 ul li {
  margin-bottom: 10px;
  position: relative;
}
#pups_from1 ul li label {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
#pups_from1 ul li label em {
  color: red;
  margin-right: 2px;
}
#pups_from1 ul li input,
#pups_from1 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_from1 ul li input:focus,
#pups_from1 ul li textarea:focus {
  border-color: #6076f1;
}
#pups_from1 ul li textarea {
  height: 80px;
}
#pups_from1 ul li input[type="submit"] {
  width: auto;
  padding: 6px 40px;
  display: inline-block;
  background: #6076f1;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
#pups_from1 ul li input[type="submit"]:hover {
  opacity: 0.7;
}
#pups_from1 ul li:last-child {
  margin-bottom: 0;
}
.right_nav_list {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 10;
}
.right_nav_list ul li {
  margin-top: 2px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  padding: 0;
  position: relative;
  color: #fff;
  background: var(--color);
  border: 1px solid #fff;
}
.right_nav_list ul li .iImg {
  width: 24px;
  height: 32px;
}
.right_nav_list ul li .text {
  padding: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 24px;
}
.right_nav_list ul li .cont {
  position: absolute;
  left: -150px;
  top: 0;
  width: 150px;
  min-height: 100%;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -o-transition: opacity 0.3s, -o-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  overflow: hidden;
  -webkit-transform-origin: top;
  -moz-transform-origin: top;
  -ms-transform-origin: top;
  -o-transform-origin: top;
  transform-origin: top;
}
.right_nav_list ul li .cont #ewm {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
  border: 1px solid #ccc;
}
.right_nav_list ul li:hover {
  background-color: #000;
}
.right_nav_list ul li:hover .cont {
  transform: rotate3d(0, 0, 0, -90deg);
  -webkit-transform: rotate3d(0, 0, 0, -90deg);
  -moz-transform: rotate3d(0, 0, 0, -90deg);
  -ms-transform: rotate3d(0, 0, 0, -90deg);
  -o-transform: rotate3d(0, 0, 0, -90deg);
  opacity: 1;
}
@media (max-width: 500px) {
  .right_nav_list {
    right: 5px;
    bottom: 150px;
  }
  .right_nav_list ul li {
    width: 38px;
    height: 38px;
    margin-top: 5px;
  }
  .right_nav_list ul li .more_cont {
    font-size: 16px;
  }
  .right_nav_list ul li .iImg {
    width: 16px;
    height: 24px;
  }
}
iframe {
  display: block;
  width: 100%;
}
#Pop_UpsBtn {
  z-index: 20;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: fixed;
  border-radius: 100%;
  background: #6076f1;
  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;
}
@media (max-width: 1000px) {
  .hose-page .hose-6,
  .contact-page .contact-2 ul{
    padding: 50px 0;
  }
  
}
@media (max-width: 700px) {
  .hose-page .hose-6,
  .contact-page .contact-2 ul{
    padding: 30px 0;
  }
}
#mobile{
  display: none !important;
}