@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans.eot');
  src: url('../fonts/OpenSans.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans.woff2') format('woff2'), url('../fonts/OpenSans.woff') format('woff'), url('../fonts/OpenSans.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Bold.eot');
  src: url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Bold.woff2') format('woff2'), url('../fonts/OpenSans-Bold.woff') format('woff'), url('../fonts/OpenSans-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'MODERNIZ';
  src: url('../fonts/MODERNIZ.eot');
  src: url('../fonts/MODERNIZ.eot?#iefix') format('embedded-opentype'), url('../fonts/MODERNIZ.woff2') format('woff2'), url('../fonts/MODERNIZ.woff') format('woff'), url('../fonts/MODERNIZ.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
body {
  font-family: "OpenSans";
  max-width: 1920px;
  --color: #de751e;
  --font: 'MODERNIZ';
  font-weight: normal;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 1700px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.font1 {
  font-family: var(--font);
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 20px;
  left: 0;
}
#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: 3.5em;
  border-radius: 1.75em;
  border: 1px solid #FFFFFF;
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
}

#header.inner .nav .ui.menu {
  box-shadow: 0 0 10px #ccc;
}

#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: 0;
  margin-right: auto;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  height: 100%;
  margin-left: 0;
  margin-right: auto;
}
#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 {
  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;
  /*margin: 0 1em;*/
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li.active {
  color: #FFFFFF;
}
#header .nav .ui.menu .menu-box ul.menu > li.active > a::before {
  opacity: 1;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
  line-height: 2.33333333em;
  padding: 0 2em;
  border-radius: 1.16666667em;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li > a::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  opacity: 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: 1em;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  width: 2.1em;
  height: 2.1em;
  line-height: 2.1em;
  border-radius: 50%;
  text-align: center;
  background-color: #FFFFFF;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .ui.menu .msg {
  color: #FFFFFF;
  line-height: 2.1em;
  border-radius: 1.05em;
  position: relative;
  cursor: pointer;
}
#header .nav .ui.menu .msg::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  background-color: #172346;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#172346), to(#28416e));
  background-image: -webkit-linear-gradient(bottom, #172346, #28416e);
  background-image: -moz-linear-gradient(bottom, #172346, #28416e);
  background-image: linear-gradient(to top, #172346, #28416e);
}
.search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
.search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
.search-box form input {
  background: none;
  outline: none;
  border: none;
}
.search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
.search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
.search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
html[lang=sa] .search-box form input[type="submit"] {
  right: auto;
  left: 15px;
}
.search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 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;
  right: 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;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 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 {
  -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;
}
html[lang=sa] #mobile .menu-content .mob-search form input[type="submit"] {
  right: auto;
  left: 0;
}
html[lang=sa] #mobile.white .menu-content .mob-search form input[type="submit"] {
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-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;
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner .img {
  font-size: 0;
  height: 100vh;
}
#banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/banner-mask.png);
  background-size: auto 100%;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 75%;
}
#banner .yuan {
  width: 1.56em;
  height: 1.56em;
  left: 0;
  top: 0;
}
#banner h2 {
  line-height: 1.5;
  color: #FFFFFF;
}
#banner p {
  color: #FFFFFF;
}
#banner .btns {
  right: 0;
  top: 0;
}
#banner .btns a {
  display: block;
  width: 2.8em;
  height: 2.8em;
  line-height: 2.8em;
  text-align: center;
  border-radius: 50%;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  color: #FFFFFF;
}
.yuy {
  height: auto;
}
.yuy > span {
  width: 2.1em;
  height: 2.1em;
  line-height: 2.1em;
  border-radius: 50%;
  text-align: center;
  background-color: #FFFFFF;
}
.baseTag {
  min-width: 7em;
  padding: 0 1em;
  height: 2em;
  border-radius: 1em;
  border: 1px solid #dcdcdc;
}
.baseTag::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
}
.home-1 .Tit span {
  background: -webkit-linear-gradient(58deg, #db4e31 40%, #e7953d 60%);
  background: -moz-linear-gradient(58deg, #db4e31 40%, #e7953d 60%);
  background: linear-gradient(32deg, #db4e31 40%, #e7953d 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* 兜底 */
}
.home-1 .text {
  line-height: 1.66666667;
}
.home-1 .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/home1-mask.png);
  background-size: auto 100%;
}
.home-1 .list {
  left: 5%;
  bottom: 5%;
}
.home-1 .list li {
  color: #FFFFFF;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-1 .list li:hover {
  color: #e75d36;
}
.home-2::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 120%;
  background-color: #f0f0f0;
  left: 0;
  top: -20%;
}
.home-2 .tit {
  background: -webkit-linear-gradient(58deg, #e7953d, #db4e31);
  background: -moz-linear-gradient(58deg, #e7953d, #db4e31);
  background: linear-gradient(32deg, #e7953d, #db4e31);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-2 .right .tit {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-2 .right > ul li ul {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-2 .right .slick-slide.slick-current .tit {
  opacity: 1;
  -webkit-transition-delay: .8s;
  -moz-transition-delay: .8s;
  transition-delay: .8s;
}
.home-2 .right .slick-slide.slick-current li ul {
  opacity: 1;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  transition-delay: 1s;
}
.home-2 .right .icon {
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5em;
  background-color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  transition: background-color .5s;
}
.home-2 .right .icon img {
  display: inline-block;
  width: 2em;
  vertical-align: middle;
  transition: .5s;
}
.home-2 .right .txt li:hover .icon {
  background-color: var(--color);
}
.home-2 .right .txt li:hover .icon img {
  filter: brightness(0) invert(1);
}
.home-2 .right .cont {
  padding-left: 4em;
}
.home-2 .right .cont p {
  color: #999999;
}
.home-2 .left ul.slick .slick-list {
  overflow: unset;
}
.home-2 .left ul.slick .slick-list .slick-slide {
  opacity: .3 !important;
  -webkit-transform: translateY(5%) scale(0.9);
  -moz-transform: translateY(5%) scale(0.9);
  -ms-transform: translateY(5%) scale(0.9);
  transform: translateY(5%) scale(0.9);
  -webkit-transition: 1.5s!important;
  -moz-transition: 1.5s!important;
  transition: 1.5s!important;
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
.home-2 .left ul.slick .slick-list .slick-slide ~ .slick-slide {
  opacity: .6 !important;
  -webkit-transform: translateY(2.5%) scale(0.95);
  -moz-transform: translateY(2.5%) scale(0.95);
  -ms-transform: translateY(2.5%) scale(0.95);
  transform: translateY(2.5%) scale(0.95);
}
.home-2 .left ul.slick .slick-list .slick-slide.slick-current {
  opacity: 1 !important;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.home-2 .left ul.slick .slick-list .slick-slide.slick-current + div {
  opacity: .6 !important;
  -webkit-transform: translateY(2.5%) scale(0.95);
  -moz-transform: translateY(2.5%) scale(0.95);
  -ms-transform: translateY(2.5%) scale(0.95);
  transform: translateY(2.5%) scale(0.95);
}
.home-2 .left ul.slick .slick-list .slick-slide.slick-current + div ~ div {
  opacity: .3 !important;
  -webkit-transform: translateY(5%) scale(0.9);
  -moz-transform: translateY(5%) scale(0.9);
  -ms-transform: translateY(5%) scale(0.9);
  transform: translateY(5%) scale(0.9);
}
.home-3::before {
  content: "";
  position: absolute;
  left: 2%;
  bottom: 0;
  -webkit-transform: translateY(60%);
  -moz-transform: translateY(60%);
  -ms-transform: translateY(60%);
  transform: translateY(60%);
  width: 96%;
  padding-top: 40%;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #e7953d), color-stop(45%, transparent));
  background-image: -webkit-linear-gradient(#e7953d 15%, transparent 45%);
  background-image: -moz-linear-gradient(#e7953d 15%, transparent 45%);
  background-image: linear-gradient(#e7953d 15%, transparent 45%);
}
.home-3 .masktit {
  font-size: 6.96vw;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(30%);
  -moz-transform: translateY(30%);
  -ms-transform: translateY(30%);
  transform: translateY(30%);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(transparent));
  background: -webkit-linear-gradient(#FFFFFF, transparent);
  background: -moz-linear-gradient(#FFFFFF, transparent);
  background: linear-gradient(#FFFFFF, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-3 .left .name {
  background: -webkit-linear-gradient(58deg, #e7953d, #db4e31);
  background: -moz-linear-gradient(58deg, #e7953d, #db4e31);
  background: linear-gradient(32deg, #e7953d, #db4e31);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-3 .right li > div {
  aspect-ratio: 1;
  background-color: #FFFFFF;
  position: relative;
  border-radius: 13px;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}
.home-3 .right li > div::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background-color: #FFFFFF;
  border-radius: 11px;
}
.home-3 .right li > div::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  border-radius: 13px;
  opacity: 0;
}
.home-3 .right .slick-current li > div::before {
  opacity: 1;
}
.home-3 .list .img {
  margin-left: 23%;
}
.home-3 .slickBtn div {
  width: 2.8em;
  height: 2.8em;
  background-color: #f0f0f0;
  color: var(--color);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.home-3 .slickBtn div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}
.home-3 .slickBtn div:hover {
  color: #FFFFFF;
}
.home-3 .slickBtn div:hover::before {
  opacity: 1;
}
.home-3 .slickBtn.pos div.prev {
  right: auto;
  left: 10%;
}
.home-3 .slickBtn.pos div.next {
  left: auto;
  right: 10%;
}
.home-4 .Tit span {
  background: -webkit-linear-gradient(95deg, #db4e31 40%, #e7953d 60%);
  background: -moz-linear-gradient(95deg, #db4e31 40%, #e7953d 60%);
  background: linear-gradient(-5deg, #db4e31 40%, #e7953d 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* 兜底 */
}
.home-4 .list li .box {
  padding: .2em .3em;
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-4 .list li .box .num {
  line-height: 1;
  color: #f0f0f0;
  left: .3em;
  top: .2em;
}
.home-4 .list li .box .num span {
  display: block;
  font-size: .6em;
}
.home-4 .list li .box .img {
  position: relative;
  margin-bottom: 20px;
}
.home-4 .list li .box .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-4 .list li .box .icon {
  font-size: 0;
}
.home-4 .list li .box h5 {
  font-size: .2em;
  line-height: 1.5;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
@media (min-width: 1251px) {
  .home-4 .list li .box {
    margin: .85em 0;
    width: 2.85em;
    height: 4.3em;
  }
  .home-4 .list li .box .img {
    margin-top: .8em;
    margin-bottom: auto;
    /*min-height: 2.25em;*/
    /*opacity: 0;*/
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
  }
  .home-4 .list li .box p {
    max-height: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .home-4 .list li .box:hover {
    margin: 0;
    width: 4.4em;
    height: 6em;
    -webkit-box-shadow: 0 0 57px rgba(227, 124, 54, 0.11);
    box-shadow: 0 0 57px rgba(227, 124, 54, 0.11);
  }
  .home-4 .list li .box:hover .img {
    margin-top: 0;
    opacity: 1;
  }
  .home-4 .list li .box:hover h5 {
    font-size: .3em;
  }
  .home-4 .list li .box:hover p {
    height: 12em;
    max-height: 10.5em;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.home-5 {
  min-height: 100vh;
}
.home-5 .left {
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  -webkit-backdrop-filter: blur(11.1px);
  backdrop-filter: blur(11.1px);
}
.home-5 .list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.home-5 .list li .name {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.home-5 .list li .cont {
  color: #999999;
}
.home-5 .list li.active {
  border-color: #ffffff;
}
.home-5 .list li.active .name {
  color: var(--color);
}

@-webkit-keyframes image-animate-left-in {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-moz-keyframes image-animate-left-in {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes image-animate-left-in {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes image-animate-left-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}
@-moz-keyframes image-animate-left-out {
  0% {
    -moz-transform: scale(1);
    transform: scale(1);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes image-animate-left-out {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}

.home-5 .creative-showcase-image-box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
  -webkit-animation: image-animate-left-out 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: image-animate-left-out 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: image-animate-left-out 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}
.home-5 .creative-showcase-image-box.creative-showcase-img-active {
  -webkit-animation: image-animate-left-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  -moz-animation: image-animate-left-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  animation: image-animate-left-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
}


.home-6 .list .img,
.home-6 .list .name {
  grid-column: 1;
  grid-row: 1;
}

.home-6 .list .img {
  background-color: #000000;
}

.home-6 .list .img img {
  opacity: .2;
  transition: opacity 1.5s;
}

.home-6 .list .def {
  width: 100%;
  top: 15%;
  left: 0;
}
.home-6 .list .def > div {
  text-align: center;
}
.home-6 .list .name {
  opacity: 0;
  color: #FFFFFF;
  -webkit-backdrop-filter: blur(37.4px);
  backdrop-filter: blur(37.4px);
  -webkit-transition: opacity 1.5s;
  -moz-transition: opacity 1.5s;
  transition: opacity 1.5s;
}
.home-6 .list .slick-list {
  overflow: visible;
}
.home-6 .list .box {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  transition: 1.5s;
}
.home-6 .list .slick-center .box {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.home-6 .list .slick-center .img img {
  opacity: 1;
}
.home-6 .list .slick-center .name {
  opacity: 1;
}
.home-6 .list .prev0 .def > div {
  text-align: right;
}
.home-6 .list .prev0 .box {
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.home-6 .list .next0 .def > div {
  text-align: left;
}
.home-6 .list .next0 .box {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.home-6 .slickBtn div {
  top: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  width: 2.8em;
  height: 2.8em;
  background-color: #999999;
  color: #FFFFFF;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.home-6 .slickBtn div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}
.home-6 .slickBtn div:hover {
  color: #FFFFFF;
}
.home-6 .slickBtn div:hover::before {
  opacity: 1;
}
.home-6 .slickDots ul li {
  width: 14em;
  height: 2px;
  border-radius: 0;
  margin: 0 1.5em;
  border: 0;
  background-color: #cecece;
}
.home-6 .slickDots ul li.slick-active {
  background-color: #243b66;
}
.home-6 .slickBtn.pos div.prev {
  right: 85%;
}
.home-6 .slickBtn.pos div.next {
  left: 85%;
}
.home-7 .left .img,
.home-7 .left .cont {
  grid-column: 1;
  grid-row: 1;
}
.home-7 .left .name {
  color: #FFFFFF;
}
.home-7 .left .btns {
  right: 0;
  bottom: 0;
}
.home-7 .left .btns a {
  width: 2.8em;
  height: 2.8em;
  line-height: 2.8em;
  text-align: center;
  color: #FFFFFF;
  background-color: #db4e31;
  background-image: linear-gradient(to top, #172346, #28416e, #db4e31, #e7953d);
  background-size: 200% 400%;
  border-radius: 50%;
  transition: .5s;
}
.home-7 .left .btns a:hover {
  background-position: 100% 100%;
}
.home-7 .left .img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url(../images/home7-mask.png);
  background-size: auto 100%;
}
.home-7 .right li + li {
  border-top: 1px solid #999999;
}
.home-7 .right .date {
  color: #b7b7b7;
}
.home-8 {
  color: #FFFFFF;
}
.home-8 .form ul {
  margin: -5px;
}
.home-8 .form li {
  padding: 5px;
}
.home-8 .form input,
.home-8 .form textarea {
  width: 100%;
  border-radius: 10px;
  border: 0;
  background-color: #FFFFFF;
  color: #000000;
  padding: 14px;
}
.home-8 .form button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  border: 0;
}
.home-8 .img {
  width: 60%;
  left: 50%;
  top: -70%;
}
#footer {
  background-color: #000000;
  color: #FFFFFF;
}
#footer .footer-top {
  border-bottom: 1px solid #FFFFFF;
}
#footer .footer-top .Tit {
  background: -webkit-linear-gradient(58deg, #db4e31 40%, #e7953d 60%);
  background: -moz-linear-gradient(58deg, #db4e31 40%, #e7953d 60%);
  background: linear-gradient(32deg, #db4e31 40%, #e7953d 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* 兜底 */
}
#footer .footer-top .share {
  position: relative;
  z-index: 1;
}
#footer .footer-top .share a {
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  background-color: #000000;
  text-align: center;
  position: relative;
  border-radius: 6px;
}
#footer .footer-top .share a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  background-color: #db4e31;
  /* 浏览器不支持时显示 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  transition: opacity .5s;
}
#footer .footer-top .share a:hover::before {
  opacity: 1;
}
#footer .footer-top .share a + a {
  margin-left: 15px;
}
#footer .footer-center .footer-block {
  margin-right: auto;
}
#footer .footer-center .footer-block:last-child {
  margin-right: 0;
  margin-left: auto;
}
#footer .footer-center .footer-block:first-child ul li:nth-of-type(2) {
  grid-row: span 2;
}
#footer .footer-center .footer-block ul li a {
  opacity: .4;
}
#footer .footer-center .footer-block ul li a:hover {
  opacity: 1;
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li > a {
    padding: 0 1.5em;
  }
}
@media (max-width: 1450px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin: 0;
  }
  #banner .content {
    top: 70%;
  }
  .home-8 .left {
    width: 50%;
  }
  .home-8 .img {
    top: -40%;
  }
}
@media (max-width: 1450px) and (min-width: 1251px) {
  .home-4 .list li .box {
    margin: 1em 0;
    width: 2.5em;
    height: 4em;
    padding: .15em;
  }
  .home-4 .list li .box .num {
    left: .15em;
    top: .15em;
  }
}
@media (max-width: 1250px) {
  #banner .content {
    top: 55%;
  }
  .home-4 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px;
  }
  .home-4 .list li {
    width: 50%;
    padding: 10px;
  }
  .home-4 .list li .box h5 {
    font-size: .3em;
  }
  .home-8 .left {
    width: 100%;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 1000px) {
  #banner .img::after {
    background-image: none;
    background-color: rgba(0, 0, 0, 0.5);
  }
  #banner .content {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #banner .btns {
    position: static;
  }
  .home-1 .list {
    position: static;
    width: 100%;
  }
  .home-1 .list li {
    color: #000000;
    padding: 10px;
    -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-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .home-1 .list li p {
    margin-left: 0;
  }
  .home-3 .list .img {
    width: 100%;
    margin-left: 0;
  }
  .home-3 .slickBtn.pos div.prev {
    left: 0;
  }
  .home-3 .slickBtn.pos div.next {
    right: 0;
  }
  .home-5 {
    min-height: auto;
  }
  .home-6 .list .def {
    display: none;
  }
  .home-6 .list .box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .home-6 .slickBtn div {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .home-6 .slickBtn.pos div.prev {
    right: 95%;
  }
  .home-6 .slickBtn.pos div.next {
    left: 95%;
  }
  #footer img.login {
    height: 16px;
  }
  .hide-1000 {
    display: none;
  }
}
@media (max-width: 700px) {
  #banner .img {
    height: 400px;
  }
  #banner .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-4 .list li .box h5 {
    font-size: 20px;
  }
  .home-5 .left > div {
    padding-left: 15px;
    padding-right: 15px;
  }
  .home-8 .form input,
  .home-8 .form textarea {
    padding: 10px;
    border-radius: 5px;
  }
}
@media (max-width: 500px) {
  .home-1 .list li {
    width: 50%;
  }
  .home-4 .list li {
    width: 100%;
  }
  .home-8 .form li {
    width: 100%;
  }
}



.more {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 2.1em;
  padding: 0 1.5em;
  border-radius: 2em;
  color: #FFFFFF;
  background-color: var(--color);
  backdrop-filter: blur(5px);
  transition: 0.5s ease;
}

.more:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  left: 0;
  top: 0;
  background-color: #db4e31;
  background-image: linear-gradient(to top, #172346, #28416e, #db4e31, #e7953d);
  background-size: 200% 400%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease;
}

.more:hover:before {
  background-position: 100% 100%;
}


.i-top .right {
  width: 52%;
  margin-left: 19%;
  position: relative;
}
.i-top .right::before {
  content: "";
  position: absolute;
  width: 480px;
  left: -30%;
  top: -30px;
  height: 1px;
  background-color: #e6e6e6;
}
.i-top .right::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 150px;
  background-color: #e6e6e6;
  left: -25px;
  top: -65px;
}

.inner-banner {
  padding-top: 99px;
}
.inner-banner img {
  border-radius: 20px;
}
.font-120 {
  font-size: 120px;
}
.lh-13 {
  line-height: 2;
}
.about-page .about-1 .img{
  border-radius: 20px;
  overflow: hidden;
}
.about-page .about-1 .img img {
  border-radius: 20px;
}
.about-page .about-1 .img .play_btn {
  cursor: pointer;
}
.about-page .about-1 .img video{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.about-page .about-1 .des {
  line-height: 2;
  text-shadow: 0.3px 0 black;
}
.about-page .about-1 .des img{
  vertical-align: middle;
}
.about-page .about-1 .des em {
  color: var(--color);
  text-decoration: underline;
  text-shadow: 0.3px 0 var(--color);
}
.about-page .about-1 .left {
  width: 30%;
}
.about-page .about-1 .center {
  width: 38%;
      line-height: 2;
}
.about-page .about-1 .right {
  width: 19%;
}
.about-page .about-2 {
  background-color: #ececec;
}
.about-page .about-2 .left {
  width: 40%;
}
.about-page .about-2 .right {
  width: 60%;
  
}
.about-page .about-2 .right > .flex{
  border-bottom: 1px solid #a9a9a9;
}
.about-page .about-2 .right .h4 {
  width: 35%;
}
.about-page .about-2 .right .txt {
  width: 65%;
}
.about-page .about-3 ul li .num {
  color: var(--color);
}
.about-page .about-3 ul li .num em {
  line-height: inherit;
}
.about-page .about-3 ul li .bg {
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 250px;
  opacity: 0.05;
  z-index: -1;
}
/*.about-page .about-3 ul li:nth-child(1) {
  width: 30%;
}
.about-page .about-3 ul li:nth-child(2) {
  width: 61%;
}*/
.about-page .about-3 ul li:nth-child(3) {
  width: 50%;
}
.about-page .about-3 ul li:nth-child(4) {
  width: 50%;
}
.about-page .about-4 {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 1;
  background-color: var(--color);
}
.about-page .about-4 i.bg {
  position: relative;
  background-color: white;
  z-index: -1;
}
.about-page .about-4 i.bg em {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: white;
  z-index: 1;
}
.about-page .about-4 span.h2 {
  color: white;
}
.about-page .about-4 span.h2 em {
  color: #5a5a5a;
  border-bottom: 3px solid #5a5a5a;
  line-height: 1;
  display: inline-block;
  vertical-align: text-top;
}
.about-page .about-4 .left {
  position: -webkit-sticky;
  position: sticky;
  top: 165px;
}
.about-page .about-4 .left ul li{
  /*position: absolute;
  left: 0;
  top: 0;*/
  opacity: 0;
  display: none;
}
.about-page .about-4 .left ul li.active{
  opacity: 1;
  display: block;
}
.about-page .about-4 .right li {
  margin-bottom: 2em;
  position: relative;
}
.about-page .about-4 .right li i {
  width: 3.625em;
  height: 3.625em;
  margin-right: 3.5em;
  border-radius: 0 20px 0 20px;
  color: #767676;
  background-color: white;
}
.about-page .about-4 .right li .content {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 6%;
  border-radius: 10px;
  min-height: 260px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  color: white;
}
.about-page .about-4 .right li .content .h6 {
  line-height: 1.2;
}
.about-page .about-4 .right li .content .h4 {
  margin-top: -18px;
}
.about-page .about-4 .right li:last-child {
  margin-bottom: 0;
}
.about-page .about-4 .right li::before {
  content: '';
  width: 1px;
  height: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  left: 1.8125em;
  background-color: white;
  position: absolute;
  top: 0;
  z-index: -1;
}
.about-page .about-4 .right li.active::before {
  height: 100%;
}
.about-page .about-4 .right li.active .content {
  background-color: white;
  color: black;
}
.about-page .about-5 {
  background-color: #f6f6f7;
}
.about-page .about-5 ul li {
  width: 16%;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.about-page .about-5 ul li .ig {
  border: solid 1px var(--color);
  padding: 50px 60px 37px;
  height: 480px;
}
.about-page .about-5 ul li .ig .tit {
  position: absolute;
  -webkit-transform: rotate(90deg) translate(-50px, 50%);
  -moz-transform: rotate(90deg) translate(-50px, 50%);
  -ms-transform: rotate(90deg) translate(-50px, 50%);
  transform: rotate(90deg) translate(-50px, 50%);
  -webkit-transform-origin: 0 100%;
  -moz-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  bottom: auto;
  left: 50%;
  line-height: 36px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  white-space: nowrap;
}
.about-page .about-5 ul li .ig .box {
  line-height: 1.8;
  opacity: 0;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  transition: all .3s linear;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  transform: translateX(50px);
}
.about-page .about-5 ul li .ig .box .t1 {
  font-weight: bold;
  line-height: 1.2;
}
.about-page .about-5 ul li .ig .box .cont {
  margin-top: 30px;
  line-height: 1.6;
  color: #666666;
}
.about-page .about-5 ul li .ig .num {
  position: absolute;
  bottom: 30px;
  right: 35px;
  color: #666666;
}
.about-page .about-5 ul li.active {
  width: 50%;
}
.about-page .about-5 ul li.active .ig{
  background: var(--color);
  color: white;
}
.about-page .about-5 ul li.active .ig .box .cont{
  color: white;
} 
.about-page .about-5 ul li.active .tit {
  opacity: 0;
}
.about-page .about-5 ul li.active .box {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.about-page .about-5 ul li.active .ig .num{
  color: white;
}
.factory-page .factory-1 .slickBtn div {
  border-radius: 0;
  background-color: transparent;
  color: black;
  border: 1px solid #a7a7a7;
}
.factory-page .factory-1 .slickBtn div:hover {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.factory-page .factory-1 .list ul li .box {
  background-color: #f6f6f7;
  padding: 33px 22px;
}
.factory-page .factory-1 .list ul li .box .icon {
  width: 175px;
  height: 175px;
  background-color: white;
  border-radius: 10px;
  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;
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.factory-page .factory-2 {
  background-color: #fefbf7;
}
.factory-page .factory-2 .txt {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
.factory-page .factory-2 ul li img {
  border-radius: 20px;
}
.factory-page .factory-3 {
  background-color: var(--color);
}
.factory-page .factory-3 ul li .box {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid white;
  color: white;
}
.factory-page .factory-4 {
  background-color: #f6f6f7;
}
.factory-page .factory-4 .slickDots ul li {
  background-color: #a7a7a7;
  border: none;
}
.factory-page .factory-4 .slickDots ul li.slick-active {
  background-color: var(--color);
}

.service-page .service-1 .ui.container {
  max-width: 100%;
  padding: 0;
}
.service-page .service-1 .left {
  width: 58%;
}
.service-page .service-1 .right {
  width: 42%;
}
.service-page .service-2 ul li {
  margin-bottom: 30px;
}
.service-page .service-2 ul li .box {
  padding: 38px 45px;
  background-color: #f6f6f7;
  min-height: 250px;
}
.service-page .service-2 ul li .box .icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -moz-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 245px;
  padding-left: 40px;
}
.service-page .service-2 ul li .box .h5 em {
  color: var(--color);
  font-weight: normal;
}
.service-page .service-2 ul li .box .num {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: #FFFFFF;
  line-height: 0.5;
}
.service-page .service-3 .top ul li {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  padding: 6px 0;
}
.service-page .service-3 .top ul li .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.service-page .service-3 .top ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #898989;
}
.service-page .service-3 .top ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  z-index: 3;
}
.service-page .service-3 .top ul li:hover {
  color: var(--color);
}
.service-page .service-3 .top ul li:hover::after {
  width: 100%;
}

.service-page .service-3 .bottom .left {
  width: 43%;
}
.service-page .service-3 .bottom .left{
  position: sticky;
  top: 150px;
}
.service-page .service-3 .bottom .right {
  width: 57%;
}
.service-page .service-3 .bottom ul li .h5 {
  border-bottom: 1px solid black;
  padding-bottom: 6px;
  transition: .5s;
}
.service-page .service-3 .bottom ul li.active .h5 {
  color: var(--color);
}
.service-page .service-3 .bottom ul li .txt {
  margin-top: 14px;
}
.service-page .service-3 .bottom ul li:last-child {
  margin-bottom: 0;
}
@-webkit-keyframes scroll_Up {
  0% {
    -webkit-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -webkit-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
@-moz-keyframes scroll_Up {
  0% {
    -moz-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -moz-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
@keyframes scroll_Up {
  0% {
    -webkit-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    -moz-transform: translateY(0) rotate3d(1, 0, 0, 15deg);
    transform: translateY(0) rotate3d(1, 0, 0, 15deg);
  }
  100% {
    -webkit-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    -moz-transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
    transform: translateY(-100%) rotate3d(1, 0, 0, 15deg);
  }
}
.production-page {
  background-color: #f6f6f7;
}
.production-page .production-1 .h5 {
  line-height: 2;
}
.production-page .production-1 .txt {
  text-shadow: 0 0 black;
}
.production-page .production-1 .txt em {
  color: var(--color);
}
.production-page .production-1 .txt p:last-child {
  margin-bottom: 0;
}
.production-page .production-2 {
  overflow: hidden;
}
.production-page .production-2 .title {
  position: relative;
  z-index: 2;
  max-width: 1160px;
}
.production-page .production-2 .title i {
  font-size: 384px;
  color: #e7e7e7;
  line-height: 1;
  position: absolute;
  left: -90px;
  top: -41px;
  z-index: -1;
  font-style: italic;
}
.production-page .production-2 ul .slick-list {
  padding-bottom: 40px;
}
.production-page .production-2 ul li .box {
  background-color: white;
  padding: 30px 35px 55px;
  position: relative;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.production-page .production-2 ul li .box .num {
  position: absolute;
  right: 13px;
  line-height: 1;
  bottom: 0;
  opacity: 0.04;
}
.production-page .production-2 ul li:hover .box {
  background-color: var(--color);
}
.production-page .production-2 ul li:hover .box .h5,
.production-page .production-2 ul li:hover .box .txt {
  color: white;
}
.production-page .production-2 ul li:hover .box .num {
  opacity: 0.17;
  color: #f6f6f7;
}
.production-page .production-2 ul .slick-slide:nth-child(even) li {
  margin-top: 40px;
}
.production-page .production-3 {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  height: 500px;
}
.production-page .production-3 .list {
  -webkit-transform: rotate3d(1, 0, 0, 15deg);
  -moz-transform: rotate3d(1, 0, 0, 15deg);
  transform: rotate3d(1, 0, 0, 15deg);
  width: 100%;
  height: 100%;
}
.production-page .production-3 ul {
  -webkit-animation: scroll_Up 20s linear infinite;
  -moz-animation: scroll_Up 20s linear infinite;
  animation: scroll_Up 20s linear infinite;
}
.production-page .production-3 ul .slick-slide > div {
  height: unset !important;
}
.production-page .production-3 ul li {
  margin-bottom: 20px;
}
.production-page .production-3 ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  border-radius: 10px;
  -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;
  height: 130px;
  -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);
}
.production-page .production-3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 250px;
  background: -webkit-gradient(linear, left top, left bottom, from(#f6f6f7), to(transparent));
  background: -webkit-linear-gradient(top, #f6f6f7, transparent);
  background: -moz-linear-gradient(top, #f6f6f7, transparent);
  background: linear-gradient(to bottom, #f6f6f7, transparent);
}

.download-page .download-1 .top {
  width: 62%;
}
.download-page .download-1 ul li {
  border-top: 1px solid #898989;
}
.download-page .download-1 ul li .img2 {
  margin-left: auto;
}
.download-page .download-1 ul li:last-child {
  border-bottom: 1px solid #898989;
}
.download-page .download-2 .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: 70px 65px;
  max-width: 1375px;
  margin: auto;
  border-radius: 20px;
  position: relative;
}
.download-page .download-2 .box i{
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}
.download-page .download-2 .box .left {
  width: 61%;
}
.download-page .download-2 .box .right {
  width: 39%;
}
.download-page .download-2 .box ul li input,
.download-page .download-2 .box ul li textarea {
  width: 100%;
  font-size: 16px;
  background-color: #e7e5e2;
  border: none;
  height: 50px;
  padding: 0 15px;
}
.download-page .download-2 .box ul li textarea {
  height: 100px;
  padding: 10px 15px;
}
.download-page .download-2 .box ul li input[type="submit"] {
  width: 220px;
  background-color: var(--color);
  border: 1px solid var(--color);
}
.download-page .download-2 .box ul li input[type="submit"]:hover {
  background-color: transparent;
}


.prodet-page .prodet-1 img {
  background-color: #cccac9;
}

.prodet-page .prodet-1 .right .desc {
  color: #686868;
  position: relative;
  padding-left: 20px;
}
.prodet-page .prodet-1 .right .desc::after {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--color);
  border-radius: 3px;
}
.prodet-page .prodet-1 .right h1 {
  line-height: 1.2;
}
.prodet-page .prodet-1 .right .txt {
  max-height: 9em;
  overflow-y: auto;
}
.prodet-page .prodet-1 .right .line {
  width: 100%;
  height: 1px;
  background-color: #b0b0b0;
}

.prodet-page .prodet-1 .right .Auxil-through {
  max-width: 450px;
}
.prodet-page .prodet-1 .right .Auxil-through a {
  display: block;
  background-color: #e9e9e9;
  padding: 7px 12px 3px;
  margin-bottom: 9px;
  color: #6e6e6e;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.prodet-page .prodet-1 .right .Auxil-through a:hover {
  background-color: var(--color);
  color: white;
}

.prodet-page .prodet-1 .gallery .prev,
.prodet-page .prodet-1 .gallery .next {
  width: 100%;
  height: 36px;
  background-color: #f0f0f1;
  text-align: center;
  line-height: 36px;
  font-size: 20px;
  cursor: pointer;
}

.prodet-page .prodet-1 .gallery ul li a {
  display: block;
  background-color: white;
}
.prodet-page .prodet-1 .gallery .slick-track {
  width: 100% !important;
}

.prodet-page .prodet-1 .big a {
  display: block;
  background-color: white;
}
.prodet-page .prodet-1 .big ul,
.prodet-page .prodet-1 .big li {
  width: 100%;
}
.prodet-page .prodet-2 ul.option {
  border-bottom: 1px solid #767676;
}
.prodet-page .prodet-2 ul.option em {
  font-weight: normal;
  color: var(--color);
  margin-right: 15px;
}
.prodet-page .prodet-2 ul.option li {
  position: relative;
  cursor: pointer;
}
.prodet-page .prodet-2 ul.option li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 6px;
  background-color: var(--color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.prodet-page .prodet-2 ul.option li.active::after {
  width: 100%;
}
.prodet-page .prodet-2 ul.option li:last-child {
  margin-right: 0;
}
.prodet-page .prodet-2 .box .item {
  line-height: 34px;
}
.m-page {
  text-align: center;
}
.m-page a,
.m-page span {
  font-size: 18px;
  color: white;
  display: inline-block;
  width: 37px;
  height: 37px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0 10px 0 10px;
  text-align: center;
  line-height: 44px;
  font-weight: bold;
  background: black;
  margin: 0 5px;
}
.m-page a:hover,
.m-page span {
  background-color: var(--color);
}

.news-page .news-1 .left {
  width: 23%;
}
.news-page .news-1 .left ul li.active{
  color: var(--color);
}
.news-page .news-1 .right {
  width: 77%;
}
.news-page .news-1 .right ul li {
  overflow: hidden;
}
.news-page .news-1 .right ul li .content {
  height: 100%;
  background: #eee;
  border-radius: 20px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.news-page .news-1 .right ul li .content:hover {
  background-color: var(--color);
  color: #FFFFFF;
  border-radius: 10%;
}
.news-page .news-1 .right ul li span {
  background: #fef7f1;
  color: #666;
}
.news-page .news-1 .right ul li .more {
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.news-page .news-1 .right ul li:hover .more {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 1700px) {
  .about-page .about-3 ul li .bg {
    font-size: 184px;
  }
  .font-120 {
    font-size: 100px;
  }
  .factory-page .factory-3 ul li .box {
    width: 285px;
    height: 285px;
  }
  .service-page .service-2 ul li .box .icon {
    width: 190px;
  }
}
@media screen and (max-width: 1450px) {
  .about-page .about-3 ul li .bg {
    font-size: 150px;
  }
  .font-120 {
    font-size: 78px;
  }
  .factory-page .factory-3 ul li .box {
    width: 245px;
    height: 245px;
  }
  .service-page .service-2 ul li .box .icon {
    width: 120px;
    padding-left: 0;
  }
  .download-page .download-1 .top {
    width: 70%;
  }
}
@media screen and (max-width: 1250px) {
  #innerMobileBanner{
    padding-top: 60px;
  }
  .about-page .about-3 ul li .bg {
    font-size: 120px;
  }
  .about-page .about-1{
    padding-top: 50px;
  }
  .font-120 {
    font-size: 60px;
  }
  .inner-banner {
    padding-top: 20px;
  }
  .about-page .about-1 .center {
    width: 47%;
  }
  .about-page .about-4 .left {
    top: 120px;
  }
  .about-page .about-5 ul li .ig {
    padding: 40px 20px 35px;
  }
  .factory-page .factory-1 .list ul li .box .icon {
    width: 100px;
    height: 100px;
  }
  .factory-page .factory-3 ul li .box {
    width: 200px;
    height: 200px;
  }
  .production-page .production-3 ul li a {
    height: 100px;
  }
  .download-page .download-2 .box {
    padding: 40px 30px;
  }
  .prodet-page .prodet-1 .right .line {
    margin: 20px 0;
  }

  .prodet-page .prodet-1,
  .download-page .download-1,
  .production-page .production-1,
  .service-page .service-1 {
    padding-top: 50px;
  }

}
@media screen and (max-width: 1000px) {
  .about-page .about-1 .right {
    display: none;
  }
  .about-page .about-1 .left {
    width: 50%;
  }
  .about-page .about-2 .left {
    display: none;
  }
  .about-page .about-2 .right {
    width: 100%;
  }
  .about-page .about-3 ul li .bg {
    font-size: 100px;
  }
  .font-120 {
    font-size: 50px;
  }
  .about-page .about-3 ul li:nth-child(3) {
    padding: 0;
  }
  .about-page .about-4 .left {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
  .about-page .about-4 .right {
    width: 100%;
  }
  .about-page .about-4 .right li .content .h4 {
    margin-top: 0;
  }
  .factory-page .factory-1 .left {
    width: 100%;
    padding: 0;
  }
  .factory-page .factory-1 .right {
    width: 100%;
    margin-top: 30px;
  }
  .factory-page .factory-3 ul li .box {
    width: 160px;
    height: 160px;
  }
  .factory-page .factory-3 ul li .box .icon img {
    max-height: 40px;
  }
  .service-page .service-1 .left {
    width: 100%;
    padding: 0;
  }
  .service-page .service-1 .right {
    width: 100%;
    margin-top: 20px;
  }
  .service-page .service-1 .ui.container {
    padding: 0 20px;
  }
  .service-page .service-2 ul li .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .service-page .service-2 ul li .box .icon {
    margin-bottom: 20px;
  }
  .service-page .service-3 .top ul li {
    padding-right: 60px;
  }
  .download-page .download-1 .top {
    width: 100%;
  }
  .download-page .download-2 .box .right {
    display: none;
  }
  .download-page .download-2 .box .left {
    width: 100%;
  }

  .news-page .news-1 .right {
    width: 100%;
  }
  .news-page .news-1 .left {
    display: none;
  }
  .news-page .news-1 .right ul li .more {
    min-width: 150px;
  }
  .news-page .news-1 .right ul li {
    width: 50%;
  }

}
@media screen and (max-width: 700px) {
  .about-page .about-1 .img .play_btn {
    width: 70px;
  }

  .about-page .about-1 .des {
    text-shadow: unset;
  }
  .about-page .about-1 .left {
    width: 100%;
  }
  .about-page .about-1 .center {
    width: 100%;
    margin-top: 20px;
  }
  .about-page .about-3 ul {
    padding: 0;
  }
  .about-page .about-3 ul li .bg {
    font-size: 70px;
  }
  .font-120 {
    font-size: 36px;
    line-height: 1.4 !important;
  }
  .about-page .about-3 ul li:nth-child(4) {
    text-align: left;
  }
  .about-page .about-5 ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-5 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .about-page .about-5 ul li .ig {
    height: auto;
  }
  .about-page .about-5 ul li .ig .tit {
    display: none;
  }
  .about-page .about-5 ul li .ig .box {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-transition-delay: 0.4s;
    -moz-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
  }
  .about-page .about-5 ul li.active {
    width: 100%;
  }
  .factory-page .factory-3 ul li {
    width: 50%;
    margin-bottom: 20px;
  }
  .service-page .service-2 ul li {
    width: 100%;
  }
  .service-page .service-3 .bottom .left {
    width: 100%;
    padding: 0;
  }
  .service-page .service-3 .bottom .left{
    position: relative;
    top: 0;
  }
  .service-page .service-3 .bottom .right {
    width: 100%;
    margin-top: 30px;
  }
  .production-page .production-3 ul li a {
    height: 78px;
  }
  .production-page .production-3 {
    height: 300px;
  }
  .production-page .production-2 .title i {
    font-size: 256px;
    left: -48px;
  }
  .download-page .download-1 ul li a > div {
    width: 100%;
    padding: 0;
  }
  .download-page .download-1 ul li a > div:nth-of-type(2) {
    margin: 15px 0;
  }
  .news-page .news-1 .right ul li {
    width: 100%;
  }
  .news-page .news-1 .right ul li .more {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

}
@media screen and (max-width: 500px) {
  .about-page .about-2 .right {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about-page .about-2 .right .h4,
  .about-page .about-2 .right .txt {
    width: 100%;
  }
  .about-page .about-3 {
    padding: 40px 0;
  }
  .about-page .about-3 ul li {
    width: 100% !important;
    margin-bottom: 30px;
  }
  .about-page .about-4 .right li i {
    margin-right: 1.5em;
  }
  .about-page .about-5 ul li .ig .num {
    right: 19px;
    bottom: 8px;
  }
  .factory-page .factory-1 .list ul li .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .factory-page .factory-1 .list ul li .box .icon {
    width: 100%;
  }
  .factory-page .factory-1 .list ul li .box .content {
    width: 100%;
    padding: 0;
    margin-top: 30px;
  }
  .service-page .service-2 ul li .box {
    padding: 20px 15px;
  }
  .download-page .download-2 .box ul li {
    width: 100%;
  }
  .download-page .download-2 .box {
    padding: 30px 14px;
  }

  .download-page .download-1 ul li a {
    padding-left: 0;
    padding-right: 0;
  }

 
  .prodet-page .prodet-1 .gallery .prev,
  .prodet-page .prodet-1 .gallery .next {
    height: 22px;
    line-height: 22px;
  }
  .prodet-page .prodet-2 ul.option em {
    margin-right: 5px;
  }
  .prodet-page .prodet-2 ul.option {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .prodet-page .prodet-2 ul.option li {
    width: 100%;
    margin-bottom: 12px;
  }
}



.product-page .init-1 .containerC .cateCont {
  width: 440px;
  background-color: #f7f7f7;
  padding: 70px 20px 70px 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
}
.product-page .init-1 .containerC .cateCont .tipsTitle {
  font-weight: bold;
  margin-bottom: 30px;
}
.product-page .init-1 .containerC .cateCont ul li {
  padding: 10px 0;
}
.product-page .init-1 .containerC .cateCont ul li + li {
  border-top: 1px solid #000000;
}
.product-page .init-1 .containerC .cateCont ul li .first {
  position: relative;
  color: #343639;
  display: block;
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  padding-right: 30px;
}
.product-page .init-1 .containerC .cateCont ul li .first span {
  position: relative;
}
/*.product-page .init-1 .containerC .cateCont ul li .first span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 10px;
  left: 0;
  background-color: var(--color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}*/
.product-page .init-1 .containerC .cateCont ul li .first i {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
.product-page .init-1 .containerC .cateCont ul li .first i.active {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.product-page .init-1 .containerC .cateCont ul li .first:hover {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li .first.active span::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.product-page .init-1 .containerC .cateCont ul li ul {
  display: none;
}
.product-page .init-1 .containerC .cateCont ul li.active ul{
  display: block;
}
.product-page .init-1 .containerC .cateCont ul li ul li {
  padding-left: 10px;
    font-size: 16px;
    border-top: 0;
}
.product-page .init-1 .containerC .cateCont ul li ul li a {
  color: #838383;
  font-size: 16px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a em{
  width: 20px;
  height: 20px;
  border: 1px solid #eee;
  text-align: center;
  line-height: 19px;
  display: inline-block;
  margin-right: 3px;
}
.product-page .init-1 .containerC .cateCont ul li ul li a em i{
  opacity: 0;
}
.product-page .init-1 .containerC .cateCont ul li ul li a:hover,
.product-page .init-1 .containerC .cateCont ul li ul li a.active {
  color: var(--color);
}
.product-page .init-1 .containerC .cateCont ul li ul li a.active em i{
  opacity: 1;
}
.product-page .init-1 .containerC .cateCont ul li ul li:last-child {
  margin-bottom: 24px;
}

.product-page .init-1 .containerC .listContC {
  width: -webkit-calc(-340%);
  width: -moz-calc(-340%);
  width: calc(100% - 440px);
  padding-left: 70px;
}
.product-page .init-1 .containerC .listContC .titleC {
  border-bottom: 1px solid #cfcfcf;
}
.product-page .init-1 .containerC .listContC .titleC .cat {
  font-weight: bold;
  padding-right: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: -50px;
}
.product-page .init-1 .containerC .listContC .titleC form .text {
  width: 350px;
  background-color: #e9e9e9;
  border: none;
  padding: 10px 16px;
}
.product-page .init-1 .containerC .listContC .titleC form .submit {
  background-color: var(--color);
  color: #fff;
  border: none;
  width: 140px;
  margin-left: 10px;
  transition: all .5s;
}
.product-page .init-1 .containerC .listContC .titleC form .submit:hover{
  background: var(--color);
}
.product-page .init-1 .containerC .listContC .content {
  padding-top: 20px;
}
.product-page .init-1 .containerC .listContC .content ul.slick li {
  height: 100%;
}
.product-page .init-1 .containerC .listContC .content ul li .box {
  height: 100%;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC {
  height: 100%;
  background-color: #f7f7f7;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.product-page .init-1 .containerC .listContC .content ul li .box .topC .img span {
  /*width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #db4e31;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#db4e31), to(#e7953d));
  background-image: -webkit-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: -moz-linear-gradient(bottom, #db4e31, #e7953d);
  background-image: linear-gradient(to top, #db4e31, #e7953d);
  color: #FFFFFF;
  border-radius: 50%;*/
  opacity: 0;
  transition: opacity .5s;
}

.product-page .init-1 .containerC .listContC .content ul li .box:hover .topC .img span {
  opacity: 1;
}

.product-page .init-1 .containerC .listContC .content ul li .box .topC .img img {
  width: auto;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont {
  padding: 10px 30px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .type {
  font-weight: bold;
  color: var(--color);
}
.product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title {
  display: block;
  font-weight: bold;
}

.product-page .init-1 .containerC .listContC .content ul li .box .bottomC {
  padding: 6px 0 6px 30px;
  background-color: #f7f7f7;
}
.product-page .init-1 .containerC .listContC .content ul li .box .more {
  font-size: 14px;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop {
  width: 100px;
  margin-left: auto;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop .shopImg {
  width: 24px;
  height: 22px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .shop:hover .shopImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see {
  width: 100px;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  padding: 16px 0;
  cursor: pointer;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see .seeImg {
  width: 24px;
  height: 17px;
  -webkit-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
  background-size: contain;
    background-repeat: no-repeat;
}
.product-page .init-1 .containerC .listContC .content ul li .box .bottomC .see:hover .seeImg {
  -webkit-filter: grayscale(0) brightness(1);
  filter: grayscale(0) brightness(1);
}
.product-page .init-1 .containerC .catDes {
  line-height: 2;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
}

@media (max-width: 1450px) {
  .product-page .init-1 .containerC .listContC .titleC form {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-left: auto;
  }
  .product-page .init-1 .containerC .listContC .titleC .cat {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 10px;
    font-size: 18px;
line-height: 1.8;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 50%;
  }
}
@media (max-width: 1250px){
   .product-page .init-1 .containerC .cateCont {
    display: none;
  }
  .product-page .init-1 .containerC .listContC {
    width: 100%;
    padding-left: 30px;
  } 
}
@media (max-width: 1000px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 26px;
  } 
  .product-page .init-1 .containerC .listContC .content ul li .box .topC .cont .title{
    min-height: auto;
    font-size: 18px;
line-height: 1.8;
  }

}

@media (max-width: 700px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 22px;
  } 
}
@media (max-width: 500px) {
  .product-page .init-1 .containerC .listContC {
    padding-left: 16px;
  }
  .product-page .init-1 .containerC .listContC .content ul li {
    width: 100%;
  } 
}


.agent-page .agent-1 ul {
  margin: 80px -20px 0;
}
.agent-page .agent-1 ul li {
  padding: 40px 20px;
}
.agent-page .agent-1 ul li .box {
  text-align: center;
}
.agent-page .agent-1 ul li .box .img {
  width: 200px;
  height: 200px;
  /*border-radius: 50%;*/
  background-color: var(--color);
  position: relative;
  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;
  margin: 0 auto;
}
.agent-page .agent-1 ul li .box .img::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  /*border-radius: 50%;*/
  border: 1px dashed var(--color);
}
.agent-page .agent-1 ul li .box h4 {
  color: var(--color);
}
.agent-page .trusted-page .trusted-1 {
  padding: 80px 0 40px;
}
.agent-page .trusted-page .trusted-1 .img {
  margin: 20px auto 0;
  text-align: center;
}
.agent-page .trusted-page .bottom {
  height: 265px;
  background-color: var(--color);
  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;
}
.agent-page .trusted-page .bottom .more2 {
  background-color: #000;
}
.agent-page .agent-2 {
  padding-top: 80px;
}
.agent-page .agent-2 ul {
  margin-top: 60px;
}
.agent-page .agent-2 ul li {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agent-page .agent-2 ul li .img {
  width: 50%;
}
.agent-page .agent-2 ul li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.agent-page .agent-2 ul li .text {
  width: 50%;
  padding-left: 35px;
}
.agent-page .agent-2 ul li .text h4 {
  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: var(--color);
  margin-top: 35px;
}
.agent-page .agent-2 ul li .text h4::before {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--color);
  display: block;
  margin-right: 10px;
}
.agent-page .agent-2 ul .slick-dots {
  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;
}
.agent-page .agent-2 ul .slick-dots li {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #e1e1e1;
  margin: 0 8px;
}
.agent-page .agent-2 ul .slick-dots li.slick-active {
  background-color: var(--color);
}
.agent-page .agent-2 ul .slick-dots li button {
  display: none;
}
@media (max-width: 1000px){
   .agent-page .trusted-page .bottom h3 {
    font-size: 24px;
  }
  .agent-page .agent-2 ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .agent-page .agent-2 ul li .img {
    width: 100%;
  }
  .agent-page .agent-2 ul li .text {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 700px){
   .agent-page .trusted-page .bottom .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .agent-page .trusted-page .bottom .container h3 {
    margin-bottom: 30px;
  }
}



.i-form {
  background: url(../images/form-bg.png) no-repeat right;
}
.i-form .i-top .right {
  margin-left: 30%;
}
.i-form .wrap {
  width: 66%;
}
.i-form .wrap form li {
  position: relative;
}
.i-form .wrap form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  height: 45px;
  font-size: 16px;
}
.i-form .wrap form em {
  position: absolute;
  right: 40px;
  color: var(--color);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 22px;
}
.i-form .wrap form input[type="submit"] {
  border: none;
  width: auto;
  min-width: 220px;
  text-align: center;
  border: 1px solid transparent;
  height: 58px;
}
.i-form .wrap form input[type="submit"]:hover {
  border-color: var(--color);
  color: var(--color);
}
.i-form .wrap form p {
  color: #161616;
  opacity: 0.35;
}

@media screen and (max-width: 1250px) {
  .i-form {
    background-size: contain;
  }
}

@media screen and (max-width: 1000px) {
  .i-form {
    background: white;
  }
  .i-form .wrap {
    width: 100%;
  }
  .i-form .i-top .right {
    margin-left: 42%;
  }
}

@media screen and (max-width: 700px) {
  .i-form .i-top .right {
    margin-left: 0;
  }
}

@media screen and (max-width: 500px) {
  .i-form .wrap form li {
    width: 100%;
  }
  .i-form .wrap form em {
    right: 20px;
  }
}



.seoPublic .title {
  font-family: var(--font);
  font-weight: normal;
}


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



.product-page .init-1 .containerC .listContC .content ul li .box > i {
  position: absolute;
  z-index: 1;
  background: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  width: 0;
  height: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box > i.ie1 {
  width: 2px;
  top: 0;
  left: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box > i.ie2 {
  width: 2px;
  bottom: 0;
  right: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box > i.ie3 {
  height: 2px;
  top: 0;
  right: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box > i.ie4 {
  height: 2px;
  bottom: 0;
  left: 0;
}

.product-page .init-1 .containerC .listContC .content ul li .box:hover > i.ie1 {
  height: 100%;
  bottom: 0;
  top: auto;
}
.product-page .init-1 .containerC .listContC .content ul li .box:hover > i.ie2 {
  height: 100%;
  top: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box:hover > i.ie3 {
  width: 100%;
  left: 0;
}
.product-page .init-1 .containerC .listContC .content ul li .box:hover > i.ie4 {
  width: 100%;
  right: 0;
  left: auto;
}



.prodet-page .prodet-2 .box .item .seoPublic > div {
  background: transparent;
  padding: 0;
}



.project-page .init-1 {
  padding-top: 210px;
  position: relative;
  z-index: 2;
}
.project-page .init-1 .subText {
  font-size: 300px;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-weight: bold;
  z-index: -1;
  color: #f3f3f3;
}
.project-page .init-1 .container .tipsTitle {
  position: relative;
  text-align: center;
}
.project-page .init-1 .container .tipsDes {
  position: relative;
  margin: auto;
  max-width: 1300px;
  text-align: center;
}
.project-page .init-1 .container .imgSub {
  display: block;
  margin: -10% auto 0;
  position: relative;
  z-index: -2;
}
.project-page .init-1 .container .desC {
  overflow: hidden;
  border-radius: 20px;
  -o-background-size: cover;
  background-size: cover;
  text-align: left;
  min-height: 500px;
  color: #fff;
  padding: 10px 90px;
}
.project-page .init-1 .container .desC .title {
  font-weight: bold;
}
.project-page .init-1 .container .desC .des {
  margin-top: 24px;
}

.project-page .init-3 {
  -o-background-size: cover;
  background-size: cover;
}
.project-page .init-3 .container .left {
  width: 36%;
}
.project-page .init-3 .container .left .des {
  color: #666666;
  margin-top: 20px;
  text-indent: 36px;
}
.project-page .init-3 .container .right {
  width: 60%;
  margin-left: auto;
}
.project-page .init-3 .container .right .rightL {
  width: 49%;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.project-page .init-3 .container .right .rightL img {
  display: block;
  max-width: unset;
}
.project-page .init-3 .container .right .rightR {
  width: 45%;
  margin-left: auto;
}
.project-page .init-3 .container .right .rightR .img1 {
  overflow: hidden;
  border-radius: 10px;
  height: 290px;
  border-bottom-left-radius: 0;
}
.project-page .init-3 .container .right .rightR .img1 img {
  height: 100%;
  max-width: unset;
  display: block;
}
.project-page .init-3 .container .right .rightR .img2 {
  margin-top: 50px;
  height: 290px;
  border-radius: 10px;
  overflow: hidden;
  border-top-left-radius: 0;
}
.project-page .init-3 .container .right .rightR .img2 img {
  height: 100%;
  display: block;
  max-width: unset;
}
.project-page .init-4 .container .tipsTitle {
  text-align: center;
  position: relative;
  z-index: 2;
}
.project-page .init-4 .container .content {
  margin-top: 90px;
}
.project-page .init-4 .container .content ul {
  margin: 0 -45px;
}
.project-page .init-4 .container .content ul li {
  width: 25%;
  padding: 0 45px;
}
.project-page .init-4 .container .content ul li .box {
  -webkit-perspective: 600px;
  -moz-perspective: 600px;
  perspective: 600px;
}
.project-page .init-4 .container .content ul li .box .img {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 270px;
  margin: auto;
  display: block;
  margin-top: -110px;
}
.project-page .init-4 .container .content ul li .box .img2 {
  display: block;
  width: 52px;
  margin: auto;
  position: relative;
  z-index: 2;
  -webkit-box-reflect: below 0px linear-gradient(transparent, rgba(0, 0, 0, 0));
}
.project-page .init-4 .container .content ul li .box .title {
  margin-top: -40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.project-page .init-4 .container .content ul li .box .des {
  margin-top: 20px;
  color: #666666;
  text-align: center;
}
.project-page .init-4 .container .content ul li .box:hover .img2 {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-box-reflect: below 4px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
}
.project-page .init-4 .container .content ul li .box:hover .img {
  -webkit-transform: rotateX(36deg);
  -moz-transform: rotateX(36deg);
  transform: rotateX(36deg);
}
.project-page .init-5 .container .cont {
  border-radius: 20px;
  background-color: #f5f5f5;
  padding: 70px 80px;
}
.project-page .init-5 .container .cont .tips {
  text-align: center;
}
.project-page .init-5 .container .cont .content {
  margin-top: 20px;
}
.project-page .init-5 .container .cont .content form {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.project-page .init-5 .container .cont .content form .list {
  padding: 0 6px;
  margin-top: 12px;
  width: 33.33%;
}
.project-page .init-5 .container .cont .content form .list input,
.project-page .init-5 .container .cont .content form .list textarea {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 16px 24px;
}
.project-page .init-5 .container .cont .content form .w-66 {
  width: 66.66%;
}
.project-page .init-5 .container .cont .content form .w-100 {
  width: 100%;
}
.project-page .init-5 .container .cont .content form .btn {
  max-width: 100%;
  margin: 20px auto 0;
  width: 310px;
  background-color: var(--color);
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  cursor: pointer;
}
.project-page .init-5 .container .cont .content form .btn:hover {
  background-color: #000;
}
@media (max-width: 1800px) {
  .project-page .init-1 {
    padding-top: 140px;
  }
  .project-page .init-1 .subText {
    font-size: 200px;
  }
}
@media (max-width: 1250px) {
  .project-page .init-1 .subText {
    font-size: 100px;
  }
  .project-page .init-4 .container .content ul li {
    width: 50%;
    margin-top: 60px;
  }
}
@media (max-width: 1000px) {
  .project-page .init-1 {
    padding-top: 40px;
  }
  .project-page .init-1 .subText {
    display: none;
  }
  .project-page .init-1 .container .tipsDes {
    padding-top: 40px;
  }
  .project-page .init-1 .container .desC {
    padding: 10px 20px;
  }

  .project-page .init-3 .container .left {
    width: 100%;
  }
  .project-page .init-3 .container .right {
    width: 100%;
    margin-top: 20px;
  }
  .project-page .init-4 .container .content ul {
    margin: 0 -16px;
  }
  .project-page .init-4 .container .content ul li {
    padding: 0 16px;
  }
  .project-page .init-5 .container .cont {
    padding: 60px 16px;
  }
}
@media (max-width: 700px) {
  .project-page .init-4 .container .content ul li {
    width: 100%;
  }
  .project-page .init-5 .container .cont .content form .list {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .project-page .init-1 .container .tipsDes {
    padding-top: 20px;
  }
  .project-page .init-3 .container .right .rightL {
    width: 100%;
  }
  .project-page .init-3 .container .right .rightR {
    width: 100%;
    margin-top: 10px;
  }
  .project-page .init-3 .container .right .rightR .img2 {
    margin-top: 10px;
    height: auto;
  }
  .project-page .init-3 .container .right .rightL img {
    max-width: 100%;
  }
  .project-page .init-3 .container .right .rightR .img1 {
    height: auto;
  }
  .project-page .init-3 .container .right .rightR .img1 img {
    max-width: 100%;
  }
  .project-page .init-3 .container .right .rightR .img2 img {
    width: 100%;
  }
  .project-page .init-4 .container .content {
    margin-top: 20px;
  }
  .project-page .init-5 .container .cont {
    padding: 40px 16px;
  }
  .project-page .init-5 .container .cont .content form .list input,
  .project-page .init-5 .container .cont .content form .list textarea {
    padding: 8px 10px;
  }
  .project-page .init-5 .container .cont .content form .btn {
    padding: 4px 10px;
  }
}




.project-page .init-2 {
  padding-top: 60px;
}
.project-page .init-2 .container .content ul {
  margin: 0 -20px;
}
.project-page .init-2 .container .content ul > p {
  font-size: 16px;
  letter-spacing: 0;
  margin: 20px;
}
.project-page .init-2 .container .content ul li {
  padding: 0 20px;
  margin-top: 60px;
}
.project-page .init-2 .container .content ul li .box {
  height: 100%;
}
.project-page .init-2 .container .content ul li .box .boxC {
  padding-bottom: 50px;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 10px rgba(222, 117, 30, 0.1);
  box-shadow: 0 0 20px 10px rgba(222, 117, 30, 0.1);
}
.project-page .init-2 .container .content ul li .box .boxC .img {
  display: block;
}
.project-page .init-2 .container .content ul li .box .boxC .title {
  text-align: center;
  display: block;
  padding: 0 10px;
  margin-top: 24px;
}
.project-page .init-2 .container .content ul li .box .boxC .title:hover {
  color: var(--color);
}
.project-page .init-2 .container .content ul li .box .more2 {
  background-color: #111111;
  margin: auto;
  margin-top: -34px;
  width: 68px;
  height: 68px;
  border-radius: 68px;
  position: relative;
}
.project-page .init-2 .container .content ul li .box .more2 .moreText {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 74px;
  left: 40px;
  color: #fff;
  opacity: 0;
}
.project-page .init-2 .container .content ul li .box .more2 .moreImg {
  width: 14px;
  height: 14px;
  margin-left: auto;
  margin-right: 28px;
}
.project-page .init-2 .container .content ul li .box .more2:hover {
  width: 186px;
  background-color: var(--color);
}
.project-page .init-2 .container .content ul li .box .more2:hover .moreText {
  opacity: 1;
}
.project-page .init-2 .container .content ul li .box .more2:hover .moreImg {
  margin-right: 46px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.appdet-page .init-1 .container {
  border-bottom: 1px solid #bababa;
}
.appdet-page .init-1 .container .content {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 1200px;
  margin: auto;
  color: #666666;
}
.appdet-page .init-1 .container .content .list {
  padding: 0 10px;
  width: 200px;
  margin-top: 10px;
  text-align: center;
  position: relative;
}
.appdet-page .init-1 .container .content .list::before {
  content: '/';
  position: absolute;
  font-weight: 400;
  top: 0;
  right: 0;
}
.appdet-page .init-1 .container .content .list:hover {
  color: var(--color);
  font-weight: bold;
}
.appdet-page .init-1 .container .content .list:hover::before {
  color: #666666;
}
.appdet-page .init-1 .container .content .list:last-child::before {
  display: none;
}
.appdet-page .init-2 {
  padding-top: 20px;
}
.appdet-page .init-2 .container .img {
  width: 38%;
  text-align: center;
}
.appdet-page .init-2 .container .right {
  width: 62%;
  padding-left: 100px;
}
.appdet-page .init-2 .container .right .title {
  color: var(--color);
}
.appdet-page .init-2 .container .right .des {
  margin-top: 30px;
  color: #666666;
  text-indent: 36px;
}
.appdet-page .init-2 .container .right .listC {
  overflow: hidden;
  margin-top: 80px;
}
.appdet-page .init-2 .container .right .listC ul {
  margin-right: -4px;
  margin-top: -4px;
  margin-bottom: -4px;
}
.appdet-page .init-2 .container .right .listC ul li {
  position: relative;
  width: 25%;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.appdet-page .init-2 .container .right .listC ul li .box {
  padding: 20px 16px;
  text-align: center;
}
.appdet-page .init-2 .container .right .listC ul li::before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--color);
  top: -4px;
  right: -4px;
  border-radius: 50%;
}
.appdet-page .init-3 {
  background-color: #f5f5f5;
}
.appdet-page .init-3 .container .tipsTitle {
  text-align: center;
}
.appdet-page .init-3 .container .content {
  padding: 0 100px;
  margin-top: 40px;
  position: relative;
}
.appdet-page .init-3 .container .content .btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #929292;
  color: #929292;
  text-align: center;
  line-height: 50px;
  font-size: 26px;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.appdet-page .init-3 .container .content .btn:hover {
  background-color: var(--color);
  color: #fff;
  border: 1px solid var(--color);
}
.appdet-page .init-3 .container .content .prev {
  right: unset;
  left: 0;
}
.appdet-page .init-3 .container .content .swiper {
  padding: 64px 0;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box {
  position: relative;
  opacity: 0.6;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box .img1 {
  width: 100%;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box .play {
  width: 48px;
  height: 48px;
  position: absolute;
  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%);
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box .play .ling {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--color);
  border-radius: 50%;
  -webkit-animation: ks 3s linear infinite;
  -moz-animation: ks 3s linear infinite;
  -o-animation: ks 3s linear infinite;
  animation: ks 3s linear infinite;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box .play .ling:first-child {
  -webkit-animation-delay: -1.5s;
  -moz-animation-delay: -1.5s;
  -o-animation-delay: -1.5s;
  animation-delay: -1.5s;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide .box .play .img2 {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
}
.appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide-active .box {
  opacity: 1;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 2;
}
.appdet-page .init-3 .container .content2 {
  padding: 0 100px;
}
.appdet-page .init-3 .container .content2 .swiper .swiper-slide .box {
  text-align: center;
}
.appdet-page .init-3 .container .content2 .swiper .swiper-slide .box .title {
  margin-top: 40px;
}
.appdet-page .init-3 .container .content2 .swiper .swiper-slide .box .des {
  margin-top: 16px;
  color: #777777;
}
.appdet-page .relatedProduct .content .swiper .swiper-slide .box {
  background-color: #efefef;
}
.appdet-page .relatedProduct .content .swiper .swiper-slide .box:hover {
  background-color: #e6effe;
}
@media (max-width: 1000px) {
  .project-page .init-2 .container .content ul {
    margin: 0 -10px;
  }
  .project-page .init-2 .container .content ul li {
    padding: 0 10px;
  }
  .appdet-page .init-1 {
    display: none;
  }
  .appdet-page .init-2 {
    padding-top: 40px;
  }
  .appdet-page .init-2 .container .img {
    width: 100%;
    text-align: left;
  }
  .appdet-page .init-2 .container .right {
    width: 100%;
    padding-left: 0;
  }
  .appdet-page .init-3 .container .content .swiper {
    padding: 0;
  }
  .appdet-page .init-3 .container .content .swiper .swiper-wrapper .swiper-slide-active .box {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@media (max-width: 700px) {
  .appdet-page .init-3 .container .content {
    padding: 0 25px;
  }
  .appdet-page .init-3 .container .content .btn {
    background-color: #fff;
  }
  .appdet-page .init-3 .container .content2 {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .project-page .init-2 {
    padding-top: 20px;
  }
  .project-page .init-2 .container .content ul li {
    margin-top: 40px;
  }
  .appdet-page .init-2 .container .right .des {
    margin-top: 10px;
    text-indent: 32px;
  }
  .appdet-page .init-2 .container .right .listC {
    margin-top: 20px;
  }
  .appdet-page .init-2 .container .right .listC ul li {
    width: 33.33%;
  }
  .appdet-page .init-2 .container .right .listC ul li .box {
    padding: 10px 5px;
  }
  .appdet-page .init-3 .container .content {
    padding: 0 12px;
    margin-top: 20px;
  }
  .appdet-page .init-3 .container .content .btn {
    width: 38px;
    height: 38px;
    line-height: 36px;
  }
  .appdet-page .init-3 .container .content2 .swiper .swiper-slide .box .title {
    margin-top: 20px;
  }
}

.t_1 {
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}





.contact-page .contact-1 .header .con {
  font-size: 20px;
  line-height: 30px;
  max-width: 820px;
  color: #4B4B4B;
}

.contact-page .contact-1 .content ul {
  margin: -15px;
}
.contact-page .contact-1 .content ul li {
  padding: 15px;
}
.contact-page .contact-1 .content ul li .ig {
  background-color: var(--color);
  position: relative;
  cursor: pointer;
  font-size: 20px;
  height: 100%;
  line-height: 1.6;
  border-radius: 15px;
  min-height: 250px;
  padding: 0 30px 0 40px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  
}
.contact-page .contact-1 .content ul li .ig .info {
  padding: 35px 0 100px;
  font-size: 20px;
  word-break: break-word;
  color: #fff;
}
.contact-page .contact-1 .content ul li .ig .tit {
  position: absolute;
  bottom: 30px;
  left: 40px;
  font-size: 32px;
  line-height: 60px;
  height: 60px;
  font-weight: 600;
  color: #fff;
}
.contact-page .contact-1 .content ul li .ig::after {
  content: "\e678";
  display: block;
  background: #FFFFFF;
  color: var(--color);
  font-family: "iconfont";
  background-size: 100%;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.contact-page .contact-1 .content ul li .ig:hover {
  /*background: var(--color);
  color: #fff;*/
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
/*.contact-page .contact-1 .content ul li .ig:hover::after {
  background-color: #ff8430;
}*/
.contact-page .contact-1 .content ul li:nth-child(2) .ig::after {
  content: "\e7d3";
}
.contact-page .contact-1 .content ul li:nth-child(3) .ig::after {
  content: "\e7bd";
}
.contact-page .contact-2 {
  padding-top: 6%;
  background: #f7f7f7;
}
.contact-page .contact-2 .box {
  background: var(--color);
  padding: 50px;
  border-radius: 20px;
}
.contact-page .contact-2 .box .i-title {
color: #fff;
}
.contact-page .contact-2 .box .form {
  margin-top: 42px;
}
.contact-page .contact-2 .box .form ul {
  margin: -13px -25px;
}
.contact-page .contact-2 .box .form ul li {
  padding: 13px 25px;
}
.contact-page .contact-2 .box .form ul li label {
  display: block;
  line-height: 2;
  font-size: 20px;
  margin-bottom: 6px;
}
.contact-page .contact-2 .box .form ul li input,
.contact-page .contact-2 .box .form ul li textarea {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #fdf7f1;
  font-size: 14px;
  line-height: 2;
  border: 0;
  padding: 4px 3% 4px 3%;
}
.contact-page .contact-2 .box .form ul li input[type="submit"] {
  line-height: 48px;
  font-family: var(--font);
  width: auto;
}
.contact-page .contact-2 .box .form ul li textarea {
  padding: 10px 1.5% 10px 1.5%;
  height: 150px;
}

.contact-page .contact-2 .box .form ul li.wid-100 {
  width: 100%;
}
.contact-page .contact-2 .box .form .moreCont{
  border: 1px solid var(--color);
}
.contact-page .contact-3 {
  padding-top: 6%;
}
.contact-page .contact-3 iframe {
  display: block;
  border: 0;
}

@media screen and (max-width: 1250px) {
  .contact-page .contact-1 .content ul li .ig .tit {
    font-size: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .contact-page .contact-1 .header .con {
    max-width: 300px;
  }
  .contact-page .contact-1 .content {
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul li {
    width: 50%;
  }
  .contact-page .contact-1 .content ul li .ig {
    padding: 0 20px;
  }
  .contact-page .contact-1 .content ul li .ig .tit {
    left: 20px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    right: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 30px;
  }
  .contact-page .contact-3 iframe {
    height: 400px;
  }
}

@media screen and (max-width: 700px) {
  .contact-page .contact-1 .header .con {
    max-width: 100%;
    margin-top: 20px;
  }
  .contact-page .contact-1 .content ul {
    margin: -7px;
  }
  .contact-page .contact-1 .content ul li {
    padding: 7px;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 300px;
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-page .contact-1 .content ul li .ig .tit {
    font-size: 22px;
    bottom: 16px;
    height: 50px;
    line-height: 50px;
  }
  .contact-page .contact-1 .content ul li .ig::after {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 20px 15px;
  }
  .contact-page .contact-2 .box .form {
    margin-top: 30px;
  }
  .contact-page .contact-2 .box .form ul {
    margin: -6px -12px;
  }
  .contact-page .contact-2 .box .form ul li {
    padding: 6px 12px;
  }
}


@media screen and (max-width: 500px) {
  .contact-page .contact-1 .content ul li {
    width: 100%;
  }
  .contact-page .contact-1 .content ul li .ig {
    min-height: 160px;
  }
  .contact-page .contact-2 .form ul li textarea {
    height: 130px;
  }
  .contact-page .contact-3 iframe {
    height: 300px;
  }
}



.about-page .about-6 .list {
  color: var(--color);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}


/*.backBtn .link {
    padding: .1em .5em;
    border: 2px solid var(--color);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    cursor: pointer;
    cursor: hand;
}*/
.backBtn .link i {
  display: inline-block;
    line-height: .75;
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.backBtn a:not([class]) {
    color: var(--color);
}

/*.backBtn:hover .link {
    background-color: var(--color);
    color: #FFFFFF;
}*/