html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  overflow-y: scroll;
}
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
a:active {
  outline: none;
}
body {
  background-color: #F6F6F6;
}
.w100 {
  display: block;
  width: 100%;
}
.container {
  width: 1438px;
  margin: 0 auto;
  color: #111;
}
header {
  background-color: #FFF;
}
header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 88px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .container-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 44px;
  width: 1438px;
  margin: 0 auto;
}
header .container-head .image-container {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 9;
  width: 1438px;
  height: 572px;
  background-color: #fff;
}
header .container-head .image-container img {
  width: 1438px;
  height: 572px;
}
header .header-logo {
  width: 120px;
  height: 80px;
  overflow: hidden;
}
header .header-logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .header-menu li {
  margin-left: 120px;
}
header .header-menu a {
  font-size: 20px;
  color: #333;
}
header .header-menu a:hover {
  color: #FC6202;
}
header .header-menu2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header-menu2 li {
  margin-left: 0;
}
.copyright-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 70px 50px;
  background-color: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.copyright-wrap a {
  color: #999;
}
.copyright-wrap .inner-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 22px;
  color: #999;
}
.copyright-wrap .inner-left p {
  margin-bottom: 20px;
}
.copyright-wrap .inner-right {
  width: 140px;
}
.fixed-btns {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 2;
}
.text-toast {
  position: fixed;
  z-index: 1002;
  left: 0;
  display: block;
  word-break: break-all;
  padding: 10px 20px;
  opacity: 0;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border-radius: 3px;
  overflow: hidden;
  top: 50%;
  margin-top: -50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-transform: translateZ(0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-transform: translateY(-10000px);
          transform: translateY(-10000px);
}
@-webkit-keyframes text-toast-on {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  98% {
    opacity: 0.1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10000px);
            transform: translateY(-10000px);
  }
}
@keyframes text-toast-on {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  98% {
    opacity: 0.1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10000px);
            transform: translateY(-10000px);
  }
}
.text-toast-on {
  -webkit-animation-name: text-toast-on;
          animation-name: text-toast-on;
}
.dialog-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
.banner-wrap {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
}
.banner-wrap .swiper-pagination-bullet {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  opacity: 1;
  background-color: #FFF;
}
.banner-wrap .swiper-pagination-bullet-active {
  background-color: #FC6202;
}
.strength-wrap {
  background-color: #FFF;
}
.strength-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 123px 0;
}
.strength-wrap ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 1px solid #DEDEDE;
}
.strength-wrap ul li p {
  font-size: 56px;
}
.strength-wrap ul li span {
  font-size: 24px;
}
.strength-wrap ul li:last-child {
  border: 0;
}
.mtitle-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0 32px;
  width: 100%;
}
.mtitle-wrap h4 {
  position: relative;
  display: block;
}
.mtitle-wrap h4 p {
  position: relative;
  z-index: 3;
  font-size: 40px;
  line-height: 1em;
  color: #333;
}
.mtitle-wrap h4:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 88px;
  height: 16px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#FC6202), to(rgba(252, 98, 2, 0)));
  background-image: -webkit-linear-gradient(left, #FC6202 0%, rgba(252, 98, 2, 0) 100%);
  background-image: -o-linear-gradient(left, #FC6202 0%, rgba(252, 98, 2, 0) 100%);
  background-image: linear-gradient(-270deg, #FC6202 0%, rgba(252, 98, 2, 0) 100%);
}
.product-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.product-item {
  position: relative;
  width: 275px;
  margin: 0 15px 15px 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
}
.product-item:nth-child(5n) {
  margin-right: 0;
}
.product-item:hover {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product-item .item-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.product-item .item-img {
  width: 255px;
  height: 255px;
}
.product-item .item-img img {
  display: block;
  width: 100%;
}
.product-item .item-title {
  display: block;
  height: 42px;
  padding-top: 12px;
  margin-bottom: 6px;
  line-height: 21px;
  overflow: hidden;
  font-size: 14px;
  color: #333;
  display: -webkit-box;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-item .item-price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 10px;
  height: 20px;
  line-height: 20px;
  color: #333;
  overflow: visible;
}
.product-item .item-price-box .price-numb {
  font-size: 16px;
  color: #999;
}
.product-item .item-price-box .price-info {
  color: #f80046;
}
.product-item .item-price-box .price-info small {
  font-size: 14px;
}
.product-item .item-price-box .price-info span {
  font-size: 22px;
}
.product-item .item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.product-item .item-butie {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
  height: 30px;
  border: 1px dashed #f80046;
  font-size: 14px;
  color: #f80046;
}
.product-item .item-butie span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 30px;
  border-right: 1px dashed #f80046;
}
.product-item .item-butie em {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-item .item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 32px;
  width: 100%;
  background-color: #f80046;
  font-size: 16px;
  color: #FFF;
}
.more-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0 80px;
}
.more-wrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #f80046;
  border-radius: 4px;
  width: 400px;
  height: 50px;
  font-size: 20px;
  color: #f80046;
}
.partner-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #FFF;
}
.partner-wrap .partner-inner {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}
.about-wrap {
  padding: 40px 0 0;
}
.about-wrap .about-inner {
  width: 1270px;
  margin: 0 auto;
  padding-bottom: 80px;
  font-size: 22px;
  color: #999;
}
