.jz {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fd:hover,
.fd:focus {
  -webkit-animation: fd 1s;
  animation: fd 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
@-webkit-keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes menu1 {
  0% {
    opacity: 0;
    transform: translateX(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes myfirst {
  0%,
  100% {
    -webkit-transform: translate(0, -5px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@-webkit-keyframes myfirst1 {
  0%,
  100% {
    -webkit-transform: translate(0, -10px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@keyframes myfirst2 {
  0%,
  100% {
    -webkit-transform: translate(-5px, 0);
  }
  50% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes msClock {
  0%,
  70%,
  100% {
    transform: rotate(0) scale(1);
  }
  10%,
  30% {
    transform: rotate(-15deg) scale(1.1);
  }
  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }
}
.button.dark {
  --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}
.button.white {
  --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
  --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}
.button {
  --text: #fff;
  --font-size: 16px;
  --duration: 0.5s;
  --move-hover: -4px;
  font-family: 'Roboto';
  line-height: var(--font-size);
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-size);
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
  transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.button span {
  text-align: center;
}
.button span i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
}
.button span i:nth-child(1) {
  --d: 0.05s;
}
.button span i:nth-child(2) {
  --d: 0.1s;
}
.button span i:nth-child(3) {
  --d: 0.15s;
}
.button span i:nth-child(4) {
  --d: 0.2s;
}
.button span i:nth-child(5) {
  --d: 0.25s;
}
.button span i:nth-child(6) {
  --d: 0.3s;
}
.button span i:nth-child(7) {
  --d: 0.35s;
}
.button span i:nth-child(8) {
  --d: 0.4s;
}
.button span i:nth-child(9) {
  --d: 0.45s;
}
.button span i:nth-child(10) {
  --d: 0.5s;
}
.button span i:nth-child(11) {
  --d: 0.55s;
}
.button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -4px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, 0.2);
}
.button:hover i {
  -webkit-animation: move var(--duration) linear var(--d);
  animation: move var(--duration) linear var(--d);
}
.button.smoke {
  --move: 12px;
  --move-y: -8px;
  --blur: 4px;
}
.button.smoke:hover i {
  --duration: 1s;
  -webkit-animation: smoke var(--duration) linear var(--d);
  animation: smoke var(--duration) linear var(--d);
}
.button.drive {
  --move: 16px;
  --skew: 25deg;
  --skew-fast: 40deg;
  --skew-bounce: -12px;
}
.button.drive:hover i {
  --duration: 1s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: drive var(--duration) linear var(--d);
  animation: drive var(--duration) linear var(--d);
}
.btnstyle1 {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}
.btnstyle1::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #e80816;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #e80816;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle1:hover::before {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.6s, color 0.3s;
  transition: background-color 0.6s, color 0.3s;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}
.btnstyle2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #e80816;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transform: scale3d(0.6, 0.6, 1);
  transform: scale3d(0.6, 0.6, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle2:hover {
  color: #333;
  background-color: #fff;
}
.btnstyle2:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
@-webkit-keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@-webkit-keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@-webkit-keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes movec {
  0%,
  100% {
    clip: rect(0, 300px, 5px, 0);
  }
  25% {
    clip: rect(0, 300px, 210px, 295px);
  }
  50% {
    clip: rect(205px, 300px, 210px, 0);
  }
  75% {
    clip: rect(0, 5px, 210px, 0px);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 125, 178, 0.1), 0 0 0 10px #187db2;
  }
  100% {
    box-shadow: 0 0 0 10px #187db2, 0 0 0 15px rgba(24, 125, 178, 0);
  }
}
@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 67, 0.1), 0 0 0 10px #ffcc43;
  }
  100% {
    box-shadow: 0 0 0 10px #ffcc43, 0 0 0 15px rgba(255, 204, 67, 0);
  }
}
@keyframes tra1 {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes tra2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0);
  }
  50% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.1), 0 0 0 10px rgba(51, 51, 51, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.1), 0 0 0 15px rgba(51, 51, 51, 0);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
/* banner */
.banner {
  width: 100%;
  position: relative;
}
.banner .prev1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat left center;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 100px;
  z-index: 999;
  transform: translateY(-25px);
}
.banner .next1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat right center;
  transition: 0.5s;
  transform: translateY(-25px);
  position: absolute;
  top: 50%;
  right: 100px;
  z-index: 999;
}
.swiper-banner {
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-slide a,
.swiper-banner .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-pagination-bullets {
  bottom: 30px !important;
}
.swiper-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255);
  opacity: 0.8;
}
.swiper-banner .swiper-pagination-bullet-active {
  background: #e80816;
}
.search {
  width: 100%;
  height: 80px;
  background-color: #eeeeee;
  padding-top: 15px;
  box-sizing: border-box;
}
.search .topxunpan {
  position: relative;
  line-height: 50px;
  float: left;
  box-sizing: border-box;
  padding-left: 36px;
  background: url("../images/lb.png") no-repeat left center;
  font-size: 16px;
  color: #333;
}
.search .topxunpan .xp {
  position: relative;
  cursor: pointer;
}
.search .topxunpan .xp i {
  font-size: 20px;
  color: #e80816;
}
.search .topxunpan .xp img {
  margin-right: 2px;
  margin-right: 5px;
  vertical-align: baseline;
}
.search .topxunpan a {
  line-height: 34px;
  color: #333;
  float: right;
  font-size: 14px;
  display: inline-block;
  transition: 0.7s;
}
.search .topxunpan .topxunpan a:hover {
  color: #999;
}
.search .topxunpan .topxunpan a::after {
  content: '|';
  margin-left: 5px;
  margin-right: 5px;
  color: #aaaaaa;
}
.search .topxunpan .xp #xunpantip {
  z-index: 999999999999999999999;
  position: absolute;
  top: 40px;
  left: 50% !important;
  width: 180px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #333;
  font-size: 14px;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  background-color: #fff;
  border-radius: 4px;
  opacity: 0;
}
.search .topxunpan .xp #xunpantip::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
.search .topxunpan .xp #xunpantip.xunpantextactive {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  font-size: 14px;
  z-index: 999999999999999999999;
}
.search .topxunpan .xp #xunpantip {
  z-index: 999999999999999999999;
  position: absolute;
  top: 45px;
  left: 0;
  width: 180px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  background-color: #e80816;
  border-radius: 4px;
  opacity: 0;
}
.search .topxunpan .xp #xunpantip::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #e80816;
}
.search .topxunpan .xp #xunpantip.xunpantextactive {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 999999999999999999999;
}
.search .box {
  width: 500px;
  height: 50px;
  background-color: #eeeeee;
  border-radius: 4px;
  border: solid 1px rgba(232, 8, 22, 0.2);
  float: right;
}
.search .box input {
  float: left;
  width: 400px;
  background: transparent;
  height: 50px;
  line-height: 50px;
  color: #999999;
  box-sizing: border-box;
  padding: 0 20px;
}
.search .box .sss {
  float: right;
  cursor: pointer;
  width: 64px;
  height: 50px;
  background: url("../images/ss.png") no-repeat center;
}
.biaoti {
  width: 100%;
  text-align: center;
  position: relative;
  transition: 1s;
  padding-top: 15px;
  box-sizing: border-box;
  height: 83px;
  z-index: 999;
  background: url(../images/bt1.png) no-repeat center 52px;
}
.biaoti img {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.biaoti h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #e80816;
}
.biaoti h3 a {
  color: #e80816;
}
.biaoti p {
  color: #666666;
  margin-top: 24px;
  font-size: 14px;
  line-height: 14px;
}
.product {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fafafa;
}
.product .classify {
  width: 100%;
  margin: 60px 0 22px;
  height: 60px;
}
.product .classify .ti {
  float: left;
  width: 160px;
  height: 60px;
  background: url("../images/box1.png") no-repeat center;
  border-radius: 4px;
  text-align: center;
  line-height: 60px;
  font-size: 16px;
  color: #fff;
}
.product .classify ul {
  float: right;
  width: 1120px;
  height: 60px;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  padding-left: 20px;
  line-height: 60px;
    display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product .classify ul li:last-child {
  margin-right: 0;
}
.product .classify ul li:hover {
  transform: translateX(5px);
}
.product .classify ul li:hover a {
  color: #e80816;
}
.product .classify ul li {
  float: left;
  transition: 0.3s;
  font-size: 16px;
  /*margin-right: 25px;*/
}
.product .classify ul li a {
  color: #333;
  transition: 0.3s;
}
.product .list {
  width: 100%;
}
.product .list li:nth-child(4n) {
  margin-right: 0;
}
.product .list li:hover .tu img {
  transform: scale(1.2);
}
.product .list li:hover .ti {
  color: #e80816;
  background: url("../images/p2.png") no-repeat right center;
}
.product .list li {
  width: 300px;
  height: 275px;
  background-color: #ffffff;
  margin-top: 33px;
  box-sizing: border-box;
  padding: 10px;
  float: left;
  margin-right: 33px;
}
.product .list li .tu {
  display: block;
  height: 210px;
  background-color: #dedede;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.product .list li .tu img {
  max-width: 100%;
  max-height: 100%;
  transition: 1s;
  object-fit: cover;
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.product .list li .ti {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  position: relative;
  box-sizing: border-box;
  padding-right: 70px;
  background: url("../images/p1.png") no-repeat right center;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
}
.product .list li .ti::before {
  content: '';
  display: block;
  transition: 0.7s;
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #f1c102;
  z-index: 99;
}
.product .list li .ti:hover:before {
  width: 100%;
}
.reason {
  width: 100%;
  height: 1206px;
  background-color: #ffffff;
  overflow: hidden;
  padding-top: 47px;
  box-sizing: border-box;
}
.reason .biao {
  width: 420px;
  height: 47px;
  margin: 0 auto;
  transition: 1s;
  text-align: right;
  box-sizing: border-box;
  padding-right: 10px;
  background: url("../images/a.dvantage.png") no-repeat center;
}
.reason .biao h3 {
  line-height: 47px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.reason .biao h3 span {
  font-size: 48px;
  font-weight: bold;
  color: #e80816;
  line-height: 43px;
}
.reason ul {
  width: 100%;
  height: 940px;
  position: relative;
  margin-top: 60px;
  padding-top: 50px;
  box-sizing: border-box;
}
.reason ul .pic1 {
  position: absolute;
  top: 0px;
  left: 650px;
  transition: 1s;
}
.reason ul .pic2 {
  position: absolute;
  bottom: 0px;
  right: 650px;
  transition: 1s;
}
.reason ul li:nth-child(3) {
  margin-top: 100px;
}
.reason ul li:nth-child(3),
.reason ul li:nth-child(4) {
  margin-left: 720px;
}
.reason ul li.on .ti i {
  background: url("../images/box3.png") no-repeat center;
}
.reason ul li {
  height: 200px;
  width: 580px;
  position: relative;
  z-index: 99;
}
.reason ul li .ti {
  width: 100%;
  height: 56px;
  position: relative;
  box-sizing: border-box;
  padding-left: 75px;
  padding-top: 5px;
  font-size: 20px;
  line-height: 20px;
  color: #333;
  font-weight: bold;
}
.reason ul li .ti p {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #999;
  line-height: 10px;
  margin-top: 13px;
  font-weight: normal;
}
.reason ul li .ti i {
  display: block;
  width: 63px;
  height: 56px;
  text-align: center;
  line-height: 52px;
  background: url("../images/box2.png") no-repeat center;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  font-family: simsun;
  transition: 0.3s;
  box-sizing: border-box;
  padding-right: 5px;
}
.reason ul li .jie {
  width: 100%;
  line-height: 30px;
  letter-spacing: 0px;
  color: #999999;
  font-size: 15px;
  margin-top: 32px;
}
.case {
  width: 100%;
  height: 780px;
  padding-top: 80px;
  box-sizing: border-box;
  background-color: #fafafa;
  overflow: hidden;
}
.case .picScroll-left {
  width: 100%;
  margin-top: 60px;
}
.case .picScroll-left .bd {
  overflow: hidden;
}
.case .picScroll-left li:hover {
  background: #ffffff url(../images/mo2.png) no-repeat center 436px;
}
.case .picScroll-left li:hover .tu img {
  transform: scale(1.2);
}
.case .picScroll-left li:hover .ti {
  font-weight: bold;
  color: #e80816;
  background: url("../images/c2.png") no-repeat right center;
}
.case .picScroll-left li {
  width: 410px !important;
  height: 476px;
  background: #ffffff url(../images/mo1.png) no-repeat center 436px;
  box-sizing: border-box;
  padding: 20px;
  float: left;
  transition: 0.5s;
  margin-right: 35px;
}
.case .picScroll-left li .tu {
  display: block;
  height: 280px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.case .picScroll-left li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.case .picScroll-left li .ti {
  display: block;
  width: 100%;
  height: 43px;
  line-height: 43px;
  box-sizing: border-box;
  padding-right: 40px;
  background: url("../images/c1.png") no-repeat right center;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
  margin-top: 18px;
}
.case .picScroll-left li .jie {
  width: 100%;
  line-height: 26px;
  letter-spacing: 0px;
  color: #999999;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.briefs {
  width: 100%;
  height: 300px;
  background: url("../images/bg1.jpg") no-repeat center;
  padding-top: 68px;
  box-sizing: border-box;
  overflow: hidden;
}
.briefs h3 {
  line-height: 47px;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 30px;
}
.briefs h3 span {
  letter-spacing: 2.4px;
  font-size: 48px;
}
.briefs p {
  color: #ffffff;
  opacity: 0.5;
  font-size: 15px;
  line-height: 15px;
  margin: 30px 0;
}
.briefs ul {
  width: 480px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.briefs ul li {
  width: 100px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 38px;
  color: #ffffff;
  opacity: 0.8;
  font-size: 16px;
}
.news {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fafafa;
  overflow: hidden;
}
.news .slideTxtBox {
  width: 100%;
  position: relative;
}
.news .slideTxtBox .biao {
  width: 190px;
  height: 47px;
  transition: 1s;
  text-align: right;
  position: absolute;
  top: 0px;
  left: 0px;
  background: url("../images/N.EWS.png") no-repeat center;
  padding-top: 16px;
  box-sizing: border-box;
}
.news .slideTxtBox .biao h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #333;
}
.news .slideTxtBox .biao h3 a {
  color: #333;
}
.news .slideTxtBox .hd {
  position: absolute;
  top: 57px;
  left: 0px;
  z-index: 999;
  width: 200px;
}
.news .slideTxtBox .hd li.on a {
  background: url("../images/xw2.png") no-repeat left center;
}
.news .slideTxtBox .hd li {
  width: 100%;
  height: 50px;
  margin-top: 50px;
}
.news .slideTxtBox .hd li a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 5px 0 0 60px;
  background: url("../images/xw1.png") no-repeat left center;
  transition: 0.5s;
  font-size: 18px;
  line-height: 18px;
  color: #333;
}
.news .slideTxtBox .hd li a p {
  font-size: 12px;
  line-height: 12px;
  color: #999;
  margin-top: 10px;
}
.news .slideTxtBox .to {
  width: 1080px;
  float: right;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .slideTxtBox .to li:hover .tu img {
  transform: scale(1.2);
}
.news .slideTxtBox .to li:hover .shi {
  color: #e80816;
}
.news .slideTxtBox .to li:hover .mo {
  background: url("../images/m2.png") no-repeat center;
}
.news .slideTxtBox .to li:hover .ti {
  color: #e80816;
}
.news .slideTxtBox .to li {
  width: 340px;
  height: 422px;
  background-color: #fafafa;
  border: solid 1px #dedede;
  box-sizing: border-box;
  padding: 19px;
}
.news .slideTxtBox .to li .tu {
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 30px;
}
.news .slideTxtBox .to li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.news .slideTxtBox .to li .shi {
  float: left;
  line-height: 24px;
  height: 24px;
  font-weight: bold;
  font-family: simsun;
  font-size: 12px;
  color: #999999;
  transition: 0.3s;
}
.news .slideTxtBox .to li .shi span {
  font-size: 30px;
  font-weight: bold;
  font-family: simsun;
}
.news .slideTxtBox .to li .mo {
  display: block;
  float: right;
  height: 24px;
  background: url("../images/m1.png") no-repeat center;
  width: 168px;
  transition: 0.3s;
}
.news .slideTxtBox .to li .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  line-height: 16px;
  color: #333;
  height: 17px;
  margin: 28px 0 14px;
}
.news .slideTxtBox .to li .jie {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  letter-spacing: 0px;
  color: #999999;
  font-size: 14px;
}
.news .slideTxtBox .bo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .slideTxtBox .bo li:hover .tu img {
  transform: scale(1.2);
}
.news .slideTxtBox .bo li:hover .zi .ti {
  color: #e80816;
}
.news .slideTxtBox .bo li {
  width: 635px;
  height: 160px;
  background-color: #fafafa;
  border: solid 1px #dedede;
  box-sizing: border-box;
  padding: 19px;
  margin-top: 30px;
}
.news .slideTxtBox .bo li .tu {
  display: block;
  float: left;
  overflow: hidden;
  width: 180px;
  height: 120px;
}
.news .slideTxtBox .bo li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.news .slideTxtBox .bo li .zi {
  float: left;
  margin: 22px 0 0 20px;
  width: 380px;
}
.news .slideTxtBox .bo li .zi .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 16px;
  color: #333;
  transition: 0.3s;
}
.news .slideTxtBox .bo li .zi .shi {
  color: #999999;
  font-size: 12px;
  line-height: 9px;
  margin: 15px 0 20px;
}
.news .slideTxtBox .bo li .zi .jie {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #999999;
  font-size: 14px;
  line-height: 14px;
}
.about {
  width: 100%;
  height: 1277px;
  padding-top: 160px;
  box-sizing: border-box;
  overflow: hidden;
  background: #fafafa url(../images/bg2.jpg) no-repeat center top;
}
.about .left {
  width: 460px;
  margin-left: 60px;
}
.about .left .biao {
  width: 100%;
  height: 47px;
  transition: 1s;
  text-align: left;
  background: url("../images/A.BOUTUS.png") no-repeat left center;
  padding-top: 16px;
  box-sizing: border-box;
  padding-left: 66px;
}
.about .left .biao h3 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: #333;
}
.about .left .biao h3 a {
  color: #333;
}
.about .left img {
  width: 460px;
  height: 610px;
  display: block;
  margin-top: 60px;
}
.about .right {
  width: 720px;
  margin-top: 33px;
}
.about .right .tit {
  color: #999999;
  font-size: 14px;
  line-height: 14px;
}
.about .right .tis {
  margin: 62px 0 10px;
  line-height: 24px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.about .right .tis a {
  color: #333;
}
.about .right .tis span {
  font-weight: normal;
  font-size: 14px;
  color: #999;
}
.about .right em {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #f1c102;
}
.about .right .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #999999;
  font-size: 15px;
  margin: 40px 0 48px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  height: 144px;
}
.about .right .jie a {
  color: #e80816;
}
.about .right .slideTxtBox {
  width: 100%;
  position: relative;
}
.about .right .slideTxtBox .hd {
  width: 410px;
  height: 153px;
}
.about .right .slideTxtBox .hd ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .right .slideTxtBox .hd ul li.on i {
  background: #e80816 url(../images/g11.png) no-repeat center;
}
.about .right .slideTxtBox .hd ul li:nth-child(2) i {
  background: #ffffff url(../images/g2.png) no-repeat center;
}
.about .right .slideTxtBox .hd ul li:nth-child(2).on i {
  background: #e80816 url(../images/g21.png) no-repeat center;
}
.about .right .slideTxtBox .hd ul li:nth-child(3) i {
  background: #ffffff url(../images/g3.png) no-repeat center;
}
.about .right .slideTxtBox .hd ul li:nth-child(3).on i {
  background: #e80816 url(../images/g31.png) no-repeat center;
}
.about .right .slideTxtBox .hd ul li {
  transition: 0.5s;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
.about .right .slideTxtBox .hd ul li i {
  display: block;
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  background: #ffffff url(../images/g1.png) no-repeat center;
  border-radius: 50%;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.03);
  transition: 0.5s;
}
.about .right .slideTxtBox .picScroll-left2 {
  width: 100%;
  position: relative;
}
.about .right .slideTxtBox .picScroll-left2 .arrow {
  width: 170px;
  height: 60px;
  position: absolute;
  top: -130px;
  right: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 99;
}
.about .right .slideTxtBox .picScroll-left2 .arrow a {
  display: block;
  width: 60px;
  height: 60px;
  background: url("../images/jt1.png") no-repeat center;
}
.about .right .slideTxtBox .picScroll-left2 .arrow .next2 {
  background: url("../images/jt2.png") no-repeat center;
}
.about .right .slideTxtBox .picScroll-left2 li:hover .tu img {
  transform: scale(1.2);
}
.about .right .slideTxtBox .picScroll-left2 li:hover .ti {
  color: #e80816;
}
.about .right .slideTxtBox .picScroll-left2 li {
  float: left;
  margin-right: 30px;
  width: 220px;
}
.about .right .slideTxtBox .picScroll-left2 li .tu {
  width: 100%;
  height: 160px;
  background: url("../images/yy.png") no-repeat center;
  box-sizing: border-box;
  padding: 10px;
}
.about .right .slideTxtBox .picScroll-left2 li .tu a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about .right .slideTxtBox .picScroll-left2 li .tu a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.about .right .slideTxtBox .picScroll-left2 li .ti {
  display: block;
  width: 100%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  line-height: 16px;
  margin-top: 11px;
  transition: 0.3s;
}
.about .ly {
  width: 100%;
  height: 50px;
  margin-top: 60px;
  box-sizing: border-box;
  padding-left: 60px;
}
.about .ly #tel {
  margin-left: 10px;
  background: url(../images/l2.png) no-repeat 10px center;
}
.about .ly input {
  width: 200px;
  height: 50px;
  background: url(../images/l1.png) no-repeat 10px center;
  line-height: 50px;
  box-sizing: border-box;
  padding-left: 40px;
  color: #999;
  padding-right: 10px;
  border: solid 1px #eee;
  float: left;
}
.about .ly input::placeholder {
  font-size: 14px;
  line-height: 50px;
  letter-spacing: 0px;
  color: #999;
}
.about .ly .yzm {
  position: relative;
  width: 300px;
  height: 50px;
  line-height: 50px;
  float: left;
  margin-left: 10px;
}
.about .ly .yzm #codeText {
  width: 100%;
  height: 50px;
  background: url(../images/l4.png) no-repeat 10px center;
  line-height: 50px;
  box-sizing: border-box;
  padding-left: 40px;
  color: #999;
  padding-right: 10px;
}
.about .ly .yzm #imgCode {
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 90px;
  height: 36px;
  color: #999;
  background-color: #ccc;
}
.about .ly #btn {
  width: 120px;
  height: 50px;
  background-color: #e80816;
  border-radius: 2px;
  color: #fff;
  line-height: 50px;
  display: block;
  cursor: pointer;
  font-size: 16px;
  float: right;
  text-align: center;
}
.about .ly #contant {
  width: 380px;
  height: 50px;
  background: url(../images/l3.png) no-repeat 10px center;
  line-height: 48px;
  border: solid 1px #eee;
  box-sizing: border-box;
  padding-left: 40px;
  color: #999;
  padding-right: 10px;
  float: left;
  display: block;
  margin-left: 10px;
}
.about .ly #contant::placeholder {
  font-size: 14px;
  letter-spacing: 0px;
  color: #999;
}
.about .lian {
  width: 100%;
  height: 100px;
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about .lian li:nth-child(2) {
  background: #ffffff url(../images/li2.png) no-repeat 50px center;
}
.about .lian li:nth-child(3) {
  background: #ffffff url(../images/li3.png) no-repeat 50px center;
}
.about .lian li {
  width: 410px;
  height: 100px;
  background: #ffffff url(../images/li1.png) no-repeat 50px center;
  box-sizing: border-box;
  padding: 29px 0 0 108px;
  font-size: 14px;
  line-height: 14px;
  color: #ccc;
}
.about .lian li p {
  font-size: 16px;
  line-height: 14px;
  margin-top: 12px;
  color: #333;
}
.yqlj {
  width: 100%;
  height: 80px;
  background-color: #ffffff;
  padding-top: 22px;
  box-sizing: border-box;
}
.yqlj .ti {
  float: left;
  width: 105px;
  height: 36px;
  background: url("../images/LINKS.png") no-repeat left center;
  letter-spacing: 1.6px;
  color: #e80816;
  box-sizing: border-box;
  padding: 4px 0 0 16px;
}
.yqlj li:hover {
  transform: translateX(5px);
}
.yqlj li:hover a {
  color: #e80816;
}
.yqlj li {
  font-size: 16px;
  line-height: 16px;
  color: #333;
  transition: 0.3s;
  padding-top: 20px;
  box-sizing: border-box;
  float: left;
}
.yqlj li a {
  color: #333;
  transition: 0.3s;
}
.yqlj p:last-child {
  display: none;
}
.yqlj p {
  float: left;
  color: #333;
  font-size: 16px;
  line-height: 16px;
  margin: 20px 20px 0;
}
