* {
  box-sizing: border-box;
  outline: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
div,
p,
span,
i,
em {
  white-space: inherit !important;
}
:root {
  --main-color: #ca1825;
  --sub-color: #ca1825;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: var(--main-color);
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #616161;
  outline: none;
}
html,
body {
  min-width: 1259px;
  position: relative;
  background: #fff;
}
html {
  font-size: 10px;
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px !important;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px!important;
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color);
}
::-webkit-scrollbar-thumb:active {
  background-color: var(--main-color);
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.dw {
  top: -10rem;
  width: 1px;
  z-index: -1;
  position: absolute;
}
.circle {
  width: 11rem;
  height: 11rem;
  display: inline-block;
  text-align: center;
  z-index: 2;
  margin: auto;
  border-radius: 50%;
  background: transparent;
}
.circle:after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 0s infinite;
  background-color: rgba(227, 185, 41, 0.5);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: rgba(227, 185, 41, 0.5);
  animation: ripple 2s ease-out 1s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  animation-name: fadeInDown3;
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow {
  animation-name: scrollArrow;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
/* 载入效果 */
@keyframes titFadeup1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}
@keyframes titFadeup1_1 {
  0% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 60px);
    transform: translate(-50%, 60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.titFadeup1 {
  animation: titFadeup1 1.1s ease-in-out both 0.1s;
}
.titFadeup2 {
  animation: titFadeup1 1.1s ease-in-out both 0.2s;
}
.fadeInup1 {
  animation: fadeInup 1.1s ease-in-out both 0.2s;
}
.fadeInup2 {
  animation: fadeInup 1.1s ease-in-out both 0.3s;
}
.fadeInup3 {
  animation: fadeInup 1.1s ease-in-out both 0.4s;
}
.fadeInUpimg {
  animation: imgScale 1.2s ease-in-out both 0.2s;
}
@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
.xuanzhuan2 {
  animation-name: xuanzhuan2;
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "微软雅黑", arial;
  word-wrap: normal;
}
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 160rem;
}
.header {
  background: #000;
  position: relative;
}
.header .listbox {
  
  display: flex;
  align-items: center;
  height: 10rem;
  justify-content: space-between;
}
.header .logo img {
  max-height: 6rem;
}
.header .logo .img2 {
  display: none;
}
.header .rightInfo {
  display: flex;
  align-items: center;
}
.header .searchBtn {
  z-index: 2;
  margin-left: 3rem;
  margin-right: 3rem;
  width: 4rem;
  height: 4rem;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}
.header .searchBtn:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.5s;
}
.header .searchBtn svg {
  fill: #fff;
  width: 3.2rem;
  height: 3.2rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.5s;
}
.header .searchBtn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background: var(--sub-color);
}
.header .searchBtn:hover svg {
  fill: #fff !important;
}
.header .language {
  color: #fff;
  position: relative;
}
.header .language a {
  color: #fff;
}
.header .language a:hover {
  text-decoration: underline;
}
.header .language img {
  margin-right: 1rem;
  max-height: 2.6rem;
}
.header .language::after {
  content: "";
  margin-left: 0.5rem;
  vertical-align: middle;
  display: inline-block;
  border-top: solid 0.6rem #fff;
  border-left: solid 0.4rem transparent;
  border-right: solid 0.4rem transparent;
}
.header .language2{
  margin-left: 0.5rem;
}
.header .language2::after {
  display:none;
}
.common-nav .listNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.common-nav .listNav > li.active > a {
  font-weight: 700;
  color: var(--main-color) !important;
}
.common-nav .listNav > li {
  margin: 0 4rem;
  text-align: center;
  /* position: relative; */
}
.common-nav .listNav > li .icon {
  margin-left: 0.5rem;
  vertical-align: top;
  margin-top: 0.8rem;
  width: 0.9rem;
  height: 0.9rem;
  transform: rotate(45deg);
  display: inline-block;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.common-nav .listNav > li > a {
  z-index: 1;
  color: #fff;
  font-size: 2rem;
  height: 10rem;
  line-height: 3rem;
  padding: 3.5rem 0;
  display: inline-block;
  /* position: relative; */
  vertical-align: middle;
}
.common-nav .listNav > li > a > span {
  display: inline-block;
  overflow: hidden;
  height: 3rem;
  line-height: 3rem;
  position: relative;
}
.common-nav .listNav > li > a .txt-1 {
  display: block;
  transition: 0.5s;
}
.common-nav .listNav > li > a .txt-2 {
  display: block;
  transform: translateY(100%);
  transition: 0.5s;
}
.common-nav .listNav > li:hover > a:after {
  left: 0;
  width: 100%;
  opacity: 1;
}
.common-nav .listNav > li:hover > a > span::after {
  width: 100%;
}
.common-nav .listNav > li:hover > a .txt-1 {
  transform: translateY(-100%);
}
.common-nav .listNav > li:hover > a .txt-2 {
  transform: translateY(-100%);
}
.common-nav .listNav > li:hover > a:hover:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.common-nav .listNav > li.active > a {
  color: var(--main-color);
}
.common-nav .listNav > li.active > a:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.common-nav .listNav > li:last-child > a span {
  padding-right: 0;
}
.common-nav .listNav > li > .child {
  display: block;
  min-width: 20rem;
  text-align: center;
  position: absolute;
  z-index: 999;
  top: 8rem;
  left: 50%;
  transform-origin: 0 0;
  transform: scaleY(0) translateX(-50%);
  transition: transform 0.2s;
  color: #333;
}
.common-nav .listNav > li > .child::before {
  content: "";
  top: -1rem;
  left: 50%;
  z-index: 3;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 1rem #fff;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
}
.common-nav .listNav > li > .child a {
  color: #666;
}
.common-nav .listNav > li > .child > .list {
  border-radius: 1rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}
.common-nav .listNav > li > .child > .list a {
  width: 100%;
  display: block;
  color: #666;
  height: auto;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.4rem;
  padding: 1rem 2rem;
  position: relative;
}
.common-nav .listNav > li > .child > .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child > .list-2 {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 2rem 6rem 2rem;
  background: #fafafa;
}
.common-nav .listNav > li > .child > .list-2 > li {
  width: 50%;
  padding: 0 6rem;
}
.common-nav .listNav > li > .child > .list-2 .title {
  font-size: 1.8rem;
  color: var(--main-color);
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.common-nav .listNav > li > .child > .list-2 .title a {
  color: var(--main-color);
  display: block;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a {
  color: #212121;
  font-size: 1.8rem;
  line-height: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child.child-2 {
  width: 80rem;
}
.common-nav .listNav > li > .child.child-2 > .list {
  display: flex;
  flex-wrap: wrap;
}
.common-nav .listNav > li > .child.child-2 > .list li {
  min-width: 50%;
}
.common-nav .listNav > li > .child.show {
  display: block;
  transform: scaleY(1) translateX(-50%);
}
.common-nav .listNav > li > .child .list {
  background: #fff;
}
.fixed {
  top: 0;
  left: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 9999;
  width: 100%;
  position: fixed;
}
.fixed .listbox {
  height: 100px;
}
.fixed .logo .img1 {
  display: none;
}
.fixed .logo .img2 {
  display: block;
}
.fixed .language a {
  color: #666;
}
.fixed .language::after {
  border-top: solid 0.6rem #666;
}
.fixed .searchBtn svg {
  fill: #666;
}
.fixed .common-nav .listNav > li > a {
  color: #231815;
}
.fixed .common-nav .listNav > li .icon {
  border-right: solid 1px #231815;
  border-bottom: solid 1px #231815;
}
.banner {
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .pc {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
}
.banner .pc img {
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  max-height: initial;
  max-width: initial;
  width: 100%;
  object-fit: cover;
}
.banner .ph {
  position: relative;
  display: none;
  text-align: center;
}
.banner .ph img {
  width: 100%;
  width: auto;
  height: auto;
}
.banner .ph:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .text {
  left: 0;
  width: 100%;
  color: #fff;
  top: 50%;
  z-index: 3;
  text-align: left;
  position: absolute;
  transform: translateY(-75%);
}

.banner .text.text-1,.banner .text.text-2 {
  left: auto;
  right:0;
  width: 50%;
}


.banner .title-1 {
  font-size: 6.4rem;
  line-height: 7rem;
  font-weight: 700;
  font-family: "宋体";
  text-shadow: 0.5rem 0 0.2rem rgba(0, 0, 0, 0.3);
}
.banner .common-buttton {
  margin-top: 7rem;
}
.banner .common-buttton a {
  letter-spacing: 0.5rem;
  font-size: 2rem;
  text-shadow: 0 0 1px #fff;
}
.banner .swiper-pagination {
  bottom: 5rem;
  width: 100%;
}
.banner .swiper-pagination-bullet {
  opacity: 1;
  position: relative;
  margin: 0 1.4rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
}
.banner .swiper-pagination-bullet:before {
  top: 50%;
  left: 50%;
  content: "";
  opacity: 0;
  width: 3rem;
  height: 3rem;
  position: absolute;
  border-radius: 50%;
  transition: all 500ms ease;
  transform: translate(-50%, -50%) rotate(-90deg);
  border: solid 1.5px rgba(255, 255, 255, 0.7);
  clip-path: ellipse(0% 0% at 90% 0%);
}
.banner .swiper-pagination-bullet::after {
  top: 50%;
  left: 50%;
  content: "";
  opacity: 0;
  width: 3rem;
  height: 3rem;
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  border: solid 1px rgba(255, 255, 255, 0.2);
}
.banner .swiper-pagination-bullet-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg);
  clip-path: ellipse(100% 100% at 90% 0%);
}
.banner .swiper-pagination-bullet-active::after {
  opacity: 1;
}
.banner .swiper-slide-active .title-1 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .common-buttton {
  animation: 1.5s fadeInDown2 ease;
}
.common-buttton a {
  color: #fff;
  overflow: hidden;
  position: relative;
  min-width: 20rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 3rem;
  text-align: center;
  display: inline-block;
  background: var(--main-color);
}
.common-buttton a::before {
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  width: 0%;
  height: 100%;
  position: absolute;
  transition: all 500ms ease;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.05);
}
.common-buttton span {
  z-index: 2;
  position: relative;
}
.common-buttton a:hover::before {
  width: 100%;
}
.common-title {
  color: #333;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 5rem;
  text-align: center;
}
.index-product .container {
  max-width: 192rem;
}
.index-product ul {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
}
.index-product li {
  width: 33.333%;
  padding: 1rem;
}
.index-product li .item {
  padding: 4rem;
  padding-bottom: 0;
  text-align: center;
  background: linear-gradient(to bottom, #eeeeee, #f6f6f6);
}
.index-product li .t-1 {
  color: #333;
  font-size: 2.4rem;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-product li .t-2 {
  color: #666;
  margin-top: 1rem;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-product li .t-3 {
  margin-top: 2.5rem;
  display: inline-block;
  height: 4rem;
  line-height: 3.8rem;
  min-width: 14rem;
  border-radius: 3rem;
  text-align: center;
  color: var(--main-color);
  border: solid 1px var(--main-color);
}
.index-product li .t-3 svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.2rem;
  margin-left: 0.5rem;
  fill: var(--main-color);
  vertical-align: middle;
  transform: rotate(-25deg);
}
.index-product li .pic {
  overflow: hidden;
  margin: 0 auto;
  max-width: 40rem;
  position: relative;
  margin-top: 4rem;
}
.index-product li .pic::after {
  content: "";
  display: block;
  padding-bottom: 67.5%;
}
.index-product li .pic img {
  transition: all 700ms ease;
}
@media (min-width: 1025px) {
  .index-product li:hover .pic img {
    transform: scale(1.05);
  }
  .index-product li:hover .t-1 {
    color: var(--main-color);
  }
  .index-product li:hover .t-3 {
    color: #fff;
    background: var(--main-color);
  }
  .index-product li:hover .t-3 svg {
    fill: #fff;
  }
}
.index-technology {
  padding-top: 6rem;
}
.index-technology .list {
  margin-top: 5rem;
  height: 75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-technology .list ul {
  display: flex;
  flex-wrap: wrap;
}
.index-technology .list li {
  color: #fff;
  position: relative;
  padding-top: 17rem;
  text-align: center;
  height: 75rem;
  width: 33.3333%;
}
.index-technology .list li::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 500ms linear;
  position: absolute;
  background: rgba(202, 24, 37, 0.8);
}
.index-technology .list li .item {
  z-index: 2;
  position: relative;
}
.index-technology .list li .item .icon {
  transition: all 500ms linear;
}
.index-technology .list li .item .icon img {
  max-height: 16rem;
  transition: all 500ms linear;
}
.index-technology .list li .t-1 {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  padding-top: 1rem;
  transition: all 500ms linear;
}
.index-technology .list li .t-2 {
  line-height: 3rem;
  padding-top: 2rem;
}
.index-technology .list li:hover::before {
  opacity: 1;
  height: 100%;
}
.index-technology .list li:hover .item .icon {
  transform: translateY(-1rem);
}
.index-technology .list li:hover .item .icon img {
  filter: brightness(0) invert(1);
}
.index-technology .list li:hover .item .t-1 {
  padding-top: 2rem;
}
.index-about {
  padding: 10rem 0;
  background: #f5f5f5;
}
.index-about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-about .left {
  min-height: 63.2rem;
  padding-top: 7rem;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-right: 7rem;
  position: relative;
  width: 50%;
}
.index-about .left .common-title {
  text-align: left;
}
.index-about .left .text {
  margin-top: 5rem;
  line-height: 3.6rem;
  font-size: 1.8rem;
}
.index-about .left .common-buttton {
  margin-top: 5rem;
}
.index-about .right {
  width: 50%;
}
.index-about .numlist {
  padding-top: 4rem;
}
.index-about .numlist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-about .numlist li {
  font-size: 1.8rem;
}
.index-about .numlist li .counter {
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 6.4rem;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--main-color);
}
.index-about .numlist li sup {
  padding-left: 0.5rem;
  font-weight: 700;
  font-size: 2.4rem;
  vertical-align: top;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--main-color);
}
.index-about .numlist li i {
  margin-left: -2rem;
  font-style: normal;
  font-weight: 700;
  position: relative;
}
.index-application {
  position: relative;
  overflow: hidden;
}
.index-application .bigimg .slick-active .item {
  animation: fadeInUp2 1.5s ease;
}
.index-application .bigimg .box {
  position: relative;
  height: 89.6rem;
  color: #fff;
  display: flex;
  align-items: center;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-application .bigimg .box::before {
  top: 0;
  left: 0;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
.index-application .bigimg .item {
  z-index: 3;
  position: relative;
  width: 58rem;
}
.index-application .bigimg .tit {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 6rem;
}
.index-application .bigimg .txt {
  margin-bottom: 9rem;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 9rem;
  margin-top: 8rem;
  line-height: 3rem;
}
.index-application .smallbox {
  right: 15rem;
  top: 0;
  z-index: 9;
  height: 89.6rem;
  width: 50rem;
  position: absolute;
  border-left: solid 1px rgba(255, 255, 255, 0.15);
  border-right: solid 1px rgba(255, 255, 255, 0.15);
}
.index-application .small .swiper-container {
  height: 89.6rem;
}
.index-application .small .swiper-slide-thumb-active {
  background: var(--main-color);
}
.index-application .small li {
  cursor: pointer;
  color: #fff;
  font-size: 2.4rem;
  justify-content: space-between;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}
.index-application .small li .icon img {
  max-height: 8.6rem;
}
.index-application .swiper-slide-active .item {
  animation: 1.5s fadeInLeft2 ease;
}
.index-news {
  padding: 10rem 0;
}
.index-news .box {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}
.index-news .list {
  width: 48.7%;
  position: relative;
}
.index-news .list .item {
  position: relative;
}
.index-news .list .item:hover .tit {
  text-decoration: underline;
}
.index-news .list .text {
  bottom: 0;
  left: 0;
  padding: 4rem;
  color: #fff;
  width: 100%;
  z-index: 6;
  position: absolute;
}
.index-news .list .tit {
  font-size: 2rem;
  font-weight: 700;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-news .list .time {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.index-news .list .time svg {
  fill: #fff;
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: top;
  margin-top: 0.3rem;
  margin-right: 0.5rem;
}
.index-news .list .swiper-pagination {
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
}
.index-news .list .swiper-pagination-bullet {
  display: block;
  background: #fff;
  opacity: 1;
  margin-top: 2rem;
}
.index-news .list .swiper-pagination-bullet-active {
  background: var(--main-color);
}
.index-news .list .swiper-pagination-bullet:first-child {
  margin-top: 0;
}
.index-news .list-2 {
  width: 48%;
}
.index-news .list-2 li {
  padding-top: 4rem;
}
.index-news .list-2 li:first-child {
  padding-top: 0;
}
.index-news .list-2 li:hover .pic img {
  transform: scale(1.1);
}
.index-news .list-2 li:hover .tit {
  color: var(--main-color);
}
.index-news .list-2 .item {
  display: flex;
  justify-content: space-between;
}
.index-news .list-2 .pic {
  width: 28.5%;
  overflow: hidden;
  position: relative;
}
.index-news .list-2 .pic:after {
  content: "";
  display: block;
  padding-bottom: 64.22018349%;
}
.index-news .list-2 .pic img {
  transition: all 700ms ease;
}
.index-news .list-2 .text {
  width: 69%;
  padding-bottom: 2rem;
  border-bottom: solid 1px #d9d9d9;
}
.index-news .list-2 .tit {
  transition: all 334ms ease;
  color: #333;
  font-weight: 700;
  height: 3rem;
  line-height: 3rem;
  font-size: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-news .list-2 .txt {
  color: #666;
  margin-top: 1rem;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-news .list-2 .time {
  display: flex;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  justify-content: space-between;
}
.index-news .list-2 .time span:first-child {
  color: #999;
  font-family: arial;
}
.index-news .list-2 .time span:last-child {
  font-size: 1.6rem;
}
.index-news .list-2 .time span:last-child svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.2rem;
  vertical-align: middle;
  margin-left: 0.5rem;
  transform: rotate(-35deg);
}
.index-news .list-2 .time svg {
  margin-right: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.3rem;
  vertical-align: top;
  fill: var(--main-color);
}
.index-contact {
  position: relative;
  height: 35rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-contact .text {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 9;
  text-align: center;
  position: absolute;
  transform: translateY(-65%);
}
.index-contact .title {
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  line-height: 5rem;
  letter-spacing: 1rem;
}
.index-contact .common-buttton {
  margin-top: 3rem;
}
.footer {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.footer .listTtop {
  display: flex;
  /* height: 13rem; */
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px rgba(255, 255, 255, 0.15);
  padding: 5rem 0;
}
.footer .logo img {
  max-height: 6rem;
}
.footer .listTtop .menu {
  /* width: 60%; */
  width: 100%;
}
.footer .listTtop .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  /* justify-content: space-between; */
}
.footer .listTtop .menu li {
  font-size: 1.8rem;
  width: 12%;
  line-height: 6rem;
  position:relative;
}

.footer .listTtop .menu li.tit{
	font-weight:700;
	font-size:2.4rem;
} 

.footer .listTtop .menu li.tit a{
	color: #fff!important;
} 

.footer .listTtop .menu li.tit:before {
	display: block;
	content: '';
	width: 2rem;
	height: 2rem;
	background: var(--main-color);
	position: absolute;
	left: -3px;
	top: 13px;
	z-index: 0;
	opacity: 0.7;
}

.footer .listTtop .menu li a {
  color: #fff;
  position:relative;
  z-index:2;
  transition: all 500ms ease;
}
.footer .listTtop .menu li a:hover {
  color: var(--main-color);
}
.footer .listBot {
  padding: 6rem 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
}
.footer .contact {
  width: 35%;
  padding-top:0;
}
.footer .contact .logo{
  padding-bottom:2rem;
}
.footer .contact a {
  color: #fff;
}
.footer .contact .t-1 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
}
.footer .contact .t-2 {
  font-size: 1.4rem;
  padding-top: 3rem;
}
.footer .contact .t-3 {
  font-weight: 700;
  font-size: 3.2rem;
  padding-bottom: 1rem;
  font-family: Arial, Helvetica, sans-serif;
}
.footer .contact .t-4 a {
  color: rgba(255, 255, 255, 0.7);
}
.footer .contact .t-4 a:hover {
  color: #fff;
}
.footer .contact .t-4,
.footer .contact .t-5 {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer .message {
  width: 60%;
  position: relative;
}
.footer .message ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.footer .message li {
  padding: 0 1.5rem;
  width: 33.333%;
  margin-top: 2rem;
}
.footer .message li .text-input,
.footer .message li .text-textarea {
  position: relative;
}
.footer .message li .text-input .tigs,
.footer .message li .text-textarea .tigs {
  left: 0;
  top: 2rem;
  position: absolute;
}
.footer .message li .text-select .tigs {
  display: block;
  margin-top: -1.5rem;
}
    .footer .message li .text-select select {
        padding-left: 1rem;
        height: 5.2rem;
        line-height: 5.1rem;
        background-color: #010101;
    }
.footer .message li .text-textarea {
  width: 100%;
}
.footer .message li .text-textarea .tigs {
  top: 0.2rem;
}
.footer .message li .text-textarea textarea {
  height: 8rem;
  line-height: 2.4rem;
}
.footer .message li select,
.footer .message li input[type="text"],
.footer .message li textarea {
  width: 100%;
  border: 0;
  color: #fff;
  height: 6rem;
  font-family: "微软雅黑";
  line-height: 5.9rem;
  font-size: 1.6rem;
  padding-left: 1.5rem;
  background: transparent;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.footer .message li input::-webkit-input-placeholder {
  color: #fff;
}
.footer .message li input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.footer .message li input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.footer .message li input:-ms-input-placeholder {
  color: #fff;
}
.footer .message li textarea::-webkit-input-placeholder {
  color: #fff;
}
.footer .message li textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.footer .message li textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.footer .message li textarea:-ms-input-placeholder {
  color: #fff;
}
.footer .message .li-w {
  width: 100%;
  margin-top: 3rem;
}
.footer .message .text-checkbox {
  margin-top: 2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  accent-color: var(--main-color);
}
.footer .share {
  margin-top: 4rem;
}
.footer .share span {
  position: relative;
  margin-right: 1rem;
}
.footer .share span a {
  transition: all 500ms ease;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
}
.footer .share span img {
  max-height: 4.2rem;
}
.footer .share span:hover a {
  background: var(--main-color);
}
.footer .share span:hover img {
  filter: brightness(0) invert(1);
}
.footer .share span:hover .ewm {
  display: block;
}
.footer .share .ewm {
  left: 50%;
  display: none;
  top: 5.5rem;
  width: 13rem;
  height: 13rem;
  background: #fff;
  transform: translateX(-50%);
  position: absolute;
}
.footer .share .ewm img {
  padding: 0.5rem;
  max-width: 13rem;
  max-height: 13rem;
  filter: initial !important;
}
.footer .share .ewm::before {
  content: "";
  top: -0.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 0.8rem #fff;
  border-left: solid 0.6rem transparent;
  border-right: solid 0.6rem transparent;
}
.footer .copy {
  padding: 2.5rem 0;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 1.4rem;
  border-top: solid 1px rgba(255, 255, 255, 0.15);
}
.common-banner {
  position: relative;
}
.common-banner .pic img {
  width: 100%;
}
.common-banner .text {
  top: 50%;
  left: 0;
  z-index: 9;
  width: 100%;
  color: #fff;
  position: absolute;
  transform: translateY(-70%);
}
.common-banner .title {
  font-size: 4.8rem;
  line-height: 5rem;
}
.common-banner .info {
  font-size: 1.8rem;
  padding-top: 2rem;
}
.common-box {
  position: relative;
}
.common-box .container {
  z-index: 4;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.common-box::before {
  z-index: 3;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  box-shadow: 0.3rem 0 0.7rem rgba(0, 0, 0, 0.1);
}
.common-box-2 {
  background: #f5f5f5;
}
.common-box-2 .common-current {
  width: 100%;
}
.common-box-2::before {
  display: none;
}
.common-box-3::before {
  display: none;
}
.common-box-3 .common-current {
  width: 100%;
}
.common-box-4 {
  color: #fff;
  z-index: 11;
  margin-top: -8rem;
  position: relative;
}
.common-box-4::before {
  display: none;
}
.common-box-4 a {
  color: #fff;
}
.common-box-4 .common-current {
  width: 100%;
}
.common-menu {
  width: 70%;
}
.common-menu ul {
  display: flex;
}
.common-menu li {
  padding-right: 1px;
  line-height: 8rem;
}
.common-menu li a {
  color: #333;
  font-size: 1.8rem;
  padding: 0 3rem;
  display: flex;
  align-items: center;
}
.common-menu li img {
  margin-right: 1rem;
  max-height: 3.4rem;
}
.common-menu li:hover a,
.common-menu .active a {
  color: #fff;
  background: var(--main-color);
}
.common-menu li:hover img,
.common-menu .active img {
  filter: brightness(0) invert(1);
}
.common-current {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  height: 8rem;
  line-height: 8rem;
  text-align: right;
  width: 30%;
}
.common-current svg {
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
  vertical-align: middle;
  fill: var(--main-color);
}
.common-current span {
  color: var(--main-color);
}
.common-current a:hover {
  color: var(--main-color);
}
@keyframes squares {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.common-warp {
  background: #f5f5f5;
}
.common-warp .common-box::before {
  display: none;
}
.common-warp .common-current {
  width: 100%;
}
.video-list {
  padding-bottom: 10rem;
  background-color: #f5f5f5;
  overflow: hidden;
}
.video-list .container {
  max-width: 120rem;
}
.video-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
  padding-top: 5rem;
}
.video-list li {
  width: 50%;
  padding: 2rem;
}
.video-list li .picbox {
  position: relative;
}
.video-list li .video {
  top: 50%;
  left: 50%;
  z-index: 8;
  position: absolute;
  transform: translate(-50%, -50%);
}
.video-list li .pic {
  position: relative;
}
.video-list li .pic::after {
  content: "";
  display: block;
  padding-bottom: 63.79310345%;
}
.video-list li .pic::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
}
.video-list li .arrowbox {
  top: 50%;
  left: 50%;
  z-index: 10;
  position: absolute;
  transform: translate(-50%, -50%);
}
.video-list li .arrow {
  top: 50%;
  left: 50%;
  margin-left: -6.5rem;
  margin-top: -6.5rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  background: rgba(202, 24, 37, 0.3);
  animation: squares 2.5s linear 0s infinite;
}
.video-list li .arrow-2 {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  margin-left: -4.5rem;
  margin-top: -4.5rem;
  background: rgba(202, 24, 37, 0.3);
  animation: squares 2s linear 0s infinite;
}
.video-list li .arrow-3 {
  border-radius: 50%;
  display: inline-block;
  width: 5rem;
  height: 5rem;
  position: relative;
  border: solid 0.2rem #fff;
}
.video-list li .arrow-3::before {
  content: "";
  top: 50%;
  left: 50%;
  z-index: 10;
  position: absolute;
  border-radius: 0.3rem;
  transform: translate(-45%, -50%);
  border-left: solid 1.8rem #fff;
  border-top: solid 1.2rem transparent;
  border-bottom: solid 1.2rem transparent;
}
.video-list li .tit {
  color: #333;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.video-list li:hover .arrow,
.video-list li:hover .arrow-2 {
  opacity: 1;
}
.news-list {
  padding-top: 3rem;
  background: #f5f5f5;
  padding-bottom: 10rem;
}
.news-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.news-list li {
  padding: 0 2rem;
  padding-top: 4rem;
  width: 33.333%;
}
.news-list li .text {
  padding: 3rem;
  background: #fff;
  padding-bottom: 4rem;
}
.news-list li .time {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
}
.news-list li .time svg {
  margin-right: 0.5rem;
  margin-bottom: 0.3rem;
  vertical-align: middle;
  width: 1.7rem;
  height: 1.7rem;
  fill: var(--main-color);
}
.news-list li .pic {
  overflow: hidden;
  position: relative;
}
.news-list li .pic img {
  transition: all 700ms ease;
}
.news-list li .pic::after {
  content: "";
  display: block;
  padding-bottom: 64.15841584%;
}
.news-list li .tit {
  margin-top: 2rem;
  color: #333;
  font-weight: 700;
  font-size: 2rem;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.news-list li .txt {
  color: #666;
  margin-top: 1rem;
  height: 6rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-list li .more {
  margin-top: 3rem;
  color: var(--main-color);
}
.news-list li .more svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.1rem;
  vertical-align: middle;
  margin-left: 1rem;
  fill: var(--main-color);
  transform: rotate(-25deg);
}
.news-list li:hover .pic img {
  transform: scale(1.05);
}
.news-list li:hover .tit {
  color: var(--main-color);
  text-decoration: underline;
}
.newsshow {
  padding-bottom: 10rem;
  background: #f5f5f5;
}
.newsshow .list {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.newsshow .leftbox {
  width: 66%;
  padding: 7rem;
  background: #fff;
}
.newsshow .leftbox h1 {
  color: #333;
  font-weight: normal;
  line-height: 5rem;
  font-size: 3.6rem;
  text-shadow: 0 0 1px #333;
}
.newsshow .leftbox .hezi {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
  justify-content: space-between;
  border-bottom: solid 1px #cdcccc;
}
.newsshow .leftbox .info {
  font-size: 1.4rem;
  font-family: Arial;
  color: #7a7a7a;
}
.newsshow .leftbox .info svg {
  margin-right: 0.5rem;
  margin-bottom: 0.2rem;
  vertical-align: middle;
  width: 1.6rem;
  height: 1.6rem;
  fill: #666;
}
.newsshow .leftbox .info span {
  padding-left: 5rem;
}
.newsshow .leftbox .share a {
  padding-left: 2rem;
  display: inline-block;
}
.newsshow .leftbox .share img {
  max-height: 3rem;
}
.newsshow .leftbox .text {
  font-size: 1.8rem;
  line-height: 3.6rem;
  padding-top: 4rem;
}
.newsshow .rightbox {
  width: 31.5%;
  background: #fff;
  padding: 3rem;
}
.newsshow .list-2 {
  left: 0;
  top: 12rem;
  position: sticky;
}
.newsshow .list-2 .title {
  color: #333;
  padding-left: 1rem;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 2rem;
  border-bottom: solid 1px #cdcccc;
}
.newsshow .list-2 .title::before {
  top: 0.8rem;
  left: 0;
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 2.4rem;
  background: var(--main-color);
}
.newsshow .list-2 ul {
  padding-top: 1rem;
}
.newsshow .list-2 li:first-child {
  border-top: 0;
}
.newsshow .list-2 li {
  padding: 2.5rem 0;
  border-top: solid 1px #cdcccc;
}
.newsshow .list-2 li .nr {
  display: flex;
  justify-content: space-between;
}
.newsshow .list-2 li .pic {
  width: 41%;
  overflow: hidden;
  position: relative;
}
.newsshow .list-2 li .pic img {
  transition: all 700ms ease;
}
.newsshow .list-2 li .pic:after {
  content: "";
  display: block;
  padding-bottom: 64.15841584%;
}
.newsshow .list-2 li .text {
  width: 59%;
  padding-left: 2rem;
}
.newsshow .list-2 li .tit {
  color: #333;
  margin-top: 0.5rem;
  font-weight: 700;
  height: 6rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.newsshow .list-2 li .time {
  color: #999;
  font-family: Arial;
  font-size: 1.4rem;
  margin-top: 2rem;
}
.newsshow .list-2 li .time svg {
  margin-right: 0.5rem;
  margin-bottom: 0.2rem;
  vertical-align: middle;
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--main-color);
}
.newsshow .list-2 li:hover .pic img {
  transform: scale(1.1);
}
.newsshow .list-2 li:hover .tit {
  color: var(--main-color);
}
.product {
  overflow: hidden;
  padding-bottom: 10rem;
  background: #f5f5f5;
}
.product .menu {
  background: #fff;
  padding: 0.2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.product .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 0.2rem;
  padding: 3rem 9rem;
  background: linear-gradient(to bottom, #f3f3f3, #fdfdfd);
}
.product .menu li {
  padding: 0.5rem 0;
}
.product .menu li a {
  color: #333;
  font-size: 1.8rem;
  transition: all 500ms ease;
}
    .product .menu li a:hover, .product .menu li.active a {
        color: var(--main-color);
        text-decoration: underline;
    }
.product .list {
  padding-top: 2rem;
}
.product .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.product .list li {
  width: 25%;
  padding: 0 2rem;
  padding-top: 4rem;
}
.product .list li .item {
  text-align: center;
  padding: 5rem;
  padding-top: 2rem;
  background-color: #fff;
}
.product .list li .item .pic {
  margin: 0 auto;
  position: relative;
  max-width: 24rem;
  overflow: hidden;
}
.product .list li .item .pic img {
  transition: all 700ms ease;
}
.product .list li .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product .list li .item .t-1 {
  margin-top: 1rem;
  color: #666666;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product .list li .item .t-2 {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product .list li .item .t-3 {
  margin-top: 2rem;
  display: inline-block;
  height: 4rem;
  line-height: 3.8rem;
  min-width: 14rem;
  border-radius: 3rem;
  text-align: center;
  color: var(--main-color);
  border: solid 1px var(--main-color);
}
.product .list li .item .t-3 svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.2rem;
  margin-left: 0.5rem;
  fill: var(--main-color);
  vertical-align: middle;
  transform: rotate(-25deg);
}
.product .list li:hover .pic img {
  transform: scale(1.05);
}
.product .list li:hover .t-2 {
  color: var(--main-color);
}
.product .list li:hover .t-3 {
  color: #fff;
  background: var(--main-color);
}
.product .list li:hover .t-3 svg {
  fill: #fff;
}
.proshow {
  min-height: 70rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.proshow .common-current {
  width: 100%;
}
.proshow .common-box-5 {
  text-align: right;
  color: #fff;
}
.proshow .common-box-5 a {
  color: #fff;
}
.proshow .list {
  padding-top: 2rem;
}
.proshow .list .container {
  padding: 6rem 11rem;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
}
.proshow .list .left {
  width: 47%;
}
.proshow .list .left .pic {
  max-width: 40rem;
  position: relative;
}
.proshow .list .left .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.proshow .list .right {
  font-size: 1.8rem;
  color: #fff;
  width: 53%;
}
.proshow .list .right .common-title {
  color: #fff;
  text-align: left;
}
.proshow .list .right .title-2 {
  font-size: 2.4rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.15);
}
.proshow .list .right .text {
  padding-top: 2rem;
}
.proshow .list .right .text p {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.proshow .list .right .text p::before {
  top: 1.2rem;
  left: 0;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  background: var(--main-color);
}
.proshow .list .right .button {
  display: flex;
  margin-top: 5rem;
}
.proshow .list .right .button a {
  margin-right: 2rem;
  height: 5.4rem;
  border-radius: 3rem;
  line-height: 5.2rem;
  min-width: 20rem;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  border: solid 1px var(--main-color);
}
.proshow .list .right .button img {
  margin-right: 1rem;
  max-height: 2.8rem;
  transition: all 500ms ease;
}
.proshow .list .right .button a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
}
.proshow .list .right .button a:hover img {
  filter: brightness(0) invert(1);
}
.proshow-2 {
  position: relative;
  padding: 10rem 0;
  background: #f5f5f5;
}
.proshow-2 .container {
  position: relative;
}
.proshow-2 .title {
  top: -3.5rem;
  left: 0;
  width: 100%;
  font-weight: 700;
  font-size: 11rem;
  line-height: 12rem;
  color: #ededed;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
}
.proshow-2 .menu {
  z-index: 99;
  position: relative;
}
.proshow-2 .menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.proshow-2 .menu li {
  padding: 0 4rem;
}
.proshow-2 .menu li a {
  color: #666;
  height: 5.4rem;
  line-height: 5.4rem;
  min-width: 20rem;
  font-size: 1.8rem;
  display: inline-flex;
  justify-content: center;
  background: #fff;
  border-radius: 3rem;
  text-align: center;
}
.proshow-2 .menu .active a {
  color: #fff;
  background: var(--main-color);
}
.proshow-2 .list-1 {
  padding-top: 6rem;
  position: relative;
}
.proshow-2 .list-1 .bt {
  color: #333;
  line-height: 4rem;
  font-size: 3.6rem;
}
.proshow-2 .list-1 .bt img {
  margin-right: 1rem;
  max-height: 4rem;
}
.proshow-2 .list-1 .table {
  margin-top: 4rem;
  padding: 6rem 10rem;
  background: #fff;
}
.proshow-2 .list-1 .table table {
  width: 100%;
  border-collapse: collapse;
}
.proshow-2 .list-1 .table th,
.proshow-2 .list-1 .table td {
  padding: 1.2rem 1.5rem;
  padding-left: 6rem;
  border: 3px solid #fff;
}
.proshow-2 .list-1 .table tr:nth-child(even) {
  background-color: #fff;
}
.proshow-2 .list-1 .table tr:nth-child(odd) {
  background-color: #f8f8f8;
}
.proshow-2 .list-1 .table td:nth-child(2),
.proshow-2 .list-1 .table td:nth-child(4) {
  color: #333;
}
.proshow-2 .list-2 .item {
  margin-top: 4rem;
  background-color: #fff;
  padding: 8rem;
  padding-top: 4rem;
}
.proshow-2 .list-2 .item ul {
  display: flex;
  flex-wrap: wrap;
}
.proshow-2 .list-2 .item li {
  display: flex;
  width: 33.333%;
  padding: 0 2rem;
  margin-top: 3rem;
}

.proshow-2 .list-2 .item .class-1 li {
  width: 100%;
}

.proshow-2 .list-2 .item .class-2 li {
  width: 50%;
}

.proshow-2 .list-2 .item li .pic {
  min-height: 100%;
  width: 100%;
      text-align: center;
  border: solid 1px #e1e1e1;
}
.proshow-2 .list-3 .text {
  padding-top: 1.5rem;
  color: #333333;
  font-size: 1.8rem;
}
.proshow-2 .list-3 .text p {
  padding-top: 2rem;
}
.proshow-2 .list-3 .text .red {
  font-weight: 700;
  color: var(--main-color);
}
.proshow-3 {
  padding: 4rem 0;
}
.proshow-3 ul {
  display: flex;
  justify-content: center;
}
.proshow-3 li {
  border-left: solid 1px #d9d9d9;
  color: #333;
  display: flex;
  font-weight: 700;
  font-size: 2rem;
  padding: 0 15rem;
}
.proshow-3 li img {
  margin-right: 2rem;
  max-height: 4rem;
}
.proshow-3 li a {
  color: #333;
  display: flex;
  align-items: center;
}
.proshow-3 li:hover a {
  color: var(--main-color);
}
.proshow-3 li:first-child {
  border-left: 0;
}
.dowland {
  background: #f5f5f5;
  padding-bottom: 10rem;
}
.dowland .item {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}
.dowland .title {
  color: #333;
  width: 50%;
  line-height: 5rem;
  font-size: 4.8rem;
  font-weight: 700;
}
.dowland .search {
  width: 50%;
  position: relative;
  height: 6rem;
  line-height: 6rem;
}
.dowland .search input {
  border: 0;
  color: #333;
  font-size: 1.4rem;
  padding: 0 6rem 0 3rem;
  font-family: "微软雅黑";
  width: 100%;
  height: 6rem;
  line-height: 6rem;
  background: #fff;
  border-radius: 3rem;
  transition: all 500ms ease;
}
.dowland .search input:focus {
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
}
.dowland .search .btn {
  right: 3rem;
  z-index: 3;
  top: 1rem;
  position: absolute;
}
.dowland .search .btn svg {
  width: 3.4rem;
  height: 3.4rem;
  fill: var(--main-color);
}
.dowland .list {
  margin-top: 6rem;
}
.dowland .list li:last-child {
  margin-bottom: 0;
}
.dowland .list li {
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 0.5rem;
  height: 8rem;
  display: flex;
  align-items: center;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.dowland .list li .box {
  padding: 0 4rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dowland .list li .left {
  color: #333;
  width: 60%;
  font-size: 2rem;
}
.dowland .list li .left img {
  margin-right: 1.5rem;
  max-height: 3.4rem;
}
.dowland .list li .right {
  width: 40%;
  color: #666;
  font-size: 1.4rem;
  text-align: right;
}
.dowland .list li .right img {
  margin-top: 0.1rem;
  margin-right: 0.5rem;
  max-height: 1.8rem;
}
.dowland .list li .right span {
  display: inline-block;
  margin-left: 3rem;
}
.dowland .list li .right .dow {
  transition: all 500ms ease;
  margin-left: 14rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4rem;
  min-width: 14rem;
  border: solid 1px #666;
  border-radius: 3rem;
}
.dowland .list li .right .dow img {
  margin-right: 0;
  margin-top: 1.2rem;
  margin-left: 0.8rem;
}
.dowland .list li:hover .left {
  color: var(--main-color);
}
.dowland .list li:hover .right .dow {
  color: #fff;
  border-color: var(--main-color);
  background: var(--main-color);
}
.dowland .list li:hover .right .dow img {
  filter: brightness(0) invert(1);
}
.application {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.application .app-card {
  overflow: hidden;
  position: relative;
}
.application .app-card .pic {
  width: 100%;
}
.application .app-card .text {
  left: 0;
  z-index: 9;
  width: 100%;
  bottom: 13rem;
  position: absolute;
}
.application .app-card .content {
  width: 38%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 3.2rem;
  background-color: rgba(202, 24, 37, 0.8);
  padding: 5rem;
  padding-top: 4.5rem;
  z-index: 2;
}
.application .app-card .t-1 {
  font-weight: 700;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.application .app-card .t-1 img {
  max-height: 6rem;
}
.application .app-card .t-2 {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.application .app-card:nth-child(2n) .content {
  float: right;
}
.contact {
  padding-top: 2rem;
  padding-bottom: 10rem;
}
.contact .container {
  display: flex;
  justify-content: space-between;
}
.contact .left {
  width: 47%;
}
.contact .left .title {
  color: #333;
  font-size: 4.8rem;
  line-height: 5rem;
}
.contact .left .title-2 {
  color: #333;
  padding-top: 4.5rem;
  line-height: 4rem;
  font-size: 3.2rem;
}
.contact .left .text {
  margin-top: 2.8rem;
}
.contact .left .text .t-2 {
  padding-top: 1rem;
  font-size: 2.2rem;
  color: #333;
}
.contact .left .text .t-2 a {
  color: #333;
}
.contact .left .text .red {
  font-weight: 700;
  font-size: 2.4rem;
  font-family: Arial;
  color: var(--main-color);
}
.contact .left .weixin {
  margin-top: 5rem;
}
.contact .left .weixin ul {
  display: flex;
  flex-wrap: wrap;
}
.contact .left .weixin li {
  padding-right: 6rem;
  text-align: center;
  font-size: 1.4rem;
}
.contact .left .weixin li .pic {
  margin-bottom: 1rem;
}
.contact .left .weixin li .pic img {
  max-height: 13rem;
}
.contact .right {
  width: 50%;
}
.about-1 {
  position: relative;
}
.about-1 .left {
  background-image: none !important;
  min-height: auto;
  padding-top: 0;
  position: relative;
}
.about-1 .left::before {
  content: "";
  left: -9rem;
  top: -7rem;
  width: 85rem;
  height: 55rem;
  position: absolute;
  background-image: url(../images/about-4.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.about-1 .left .text {
  font-size: 1.6rem;
  line-height: 3.2rem;
}
.about-2 {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.about-2 .container {
  position: relative;
}
.about-2 .text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 4rem;
  border: solid 1px rgba(255, 255, 255, 0.5);
  padding: 6rem 4rem;
  max-width: 54rem;
  z-index: 9;
  top: 17rem;
  left: 4.5rem;
  position: absolute;
}
.about-2 .text .t-1 {
  font-weight: 700;
  font-size: 4.8rem;
  text-align: center;
  padding-bottom: 4rem;
}
.about-2 .text .nr {
  z-index: 4;
  position: relative;
}
.about-2 .text::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  filter: blur(10px);
}
.about-3 {
  position: relative;
  overflow: hidden;
  min-height: 114.7rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.about-3 .container {
  position: relative;
}
.about-3 .common-title {
  top: 0;
  left: 0;
  position: absolute;
}
.about-3 .list-1 {
  margin-top: 13rem;
}
.about-3 .list-1 ul {
  margin: 0 -1.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.about-3 .list-1 li {
  width: 20%;
  position: relative;
  padding: 0 1.7rem;
}
.about-3 .list-1 li::after {
  content: "";
  bottom: -0.3rem;
  z-index: 1;
  right: -3rem;
  width: 5rem;
  height: 21.2rem;
  position: absolute;
  background-image: url(../images/honor-ty-2.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-3 .list-1 li .pic {
  position: relative;
}
.about-3 .list-2 {
  margin-top: 4rem;
}
.about-3 .list-2 ul {
  margin: 0 -1.7rem;
  display: flex;
  flex-wrap: wrap;
}
.about-3 .list-2 li {
  width: 15%;
  position: relative;
  padding: 0 1.7rem;
}
.about-3 .list-2 li::after {
  content: "";
  bottom: -0.3rem;
  z-index: 1;
  right: -3.8rem;
  width: 5.5rem;
  height: 30rem;
  position: absolute;
  background-image: url(../images/honor-ty.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-3 .list-2 li .pic {
  z-index: 3;
  position: relative;
}
.about-3 .list-3 {
  margin-top: 6rem;
}
.about-3 .list-3 ul {
  margin: 0 -1.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.about-3 .list-3 li {
  width: 15%;
  position: relative;
  padding: 0 1.7rem;
}
.about-3 .list-3 li::after {
  content: "";
  bottom: -0.3rem;
  z-index: 1;
  right: -3.8rem;
  width: 5.5rem;
  height: 30rem;
  position: absolute;
  background-image: url(../images/honor-ty.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-3 .list-3 li .pic {
  z-index: 3;
  position: relative;
}
.about-4 {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
}
.about-4 .container {
  max-width: 192rem;
}
.about-4 .common-title {
  padding-bottom: 4rem;
}
.about-4 .tempWrap {
  margin-top: 2rem;
}
.about-4 .partnerlist {
  height: 10.5rem;
}
.about-4 .partnerlist .item {
  transition: all 500ms ease;
  margin: 0 1rem;
  width: 25rem;
  height: 10.5rem;
  border-radius: 0.5rem;
  border: solid 1px #e1e1e1;
}
.about-4 .partnerlist .item:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
.about-4 .partnerlist .item:hover .pic img {
  opacity: 1;
  filter: grayscale(0);
}
.about-4 .partnerlist .pic {
  border-radius: 0.5rem;
  background: #fff;
}
.about-4 .partnerlist .pic img {
  opacity: 0.8;
  border-radius: 0.5rem;
  filter: grayscale(100%);
  transition: all 500ms ease;
}
.common-lable {
  color: #fff;
  margin-top: 8rem;
  font-size: 1.8rem;
  padding: 1.5rem 3rem;
  background: var(--main-color);
}
.common-lable a {
  color: #fff;
  padding-right: 1.5rem;
  display: inline-block;
}
.common-lable a:hover {
  text-decoration: underline;
}
.common-pagenews {
  position: relative;
  padding-top: 2.5rem;
  margin-top: 3rem;
  border-top: solid 1px #d9d9d9;
}
.common-pagenews ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.common-pagenews li {
  width: 44%;
}
.common-pagenews li .tag i {
  font-size: 1.8rem;
  color: #666;
  font-weight: 700;
  font-family: "宋体";
  display: inline-block;
  font-style: normal;
}
.common-pagenews li .tit {
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-pagenews li:first-child .tag i {
  margin-right: 1rem;
}
.common-pagenews li:last-child {
  text-align: right;
}
.common-pagenews li:last-child .tag i {
  margin-left: 1rem;
}
.common-pagenews .fanhui {
  left: 50%;
  width: 15%;
  top: 2.8rem;
  text-align: center;
  position: absolute;
  transform: translateX(-40%);
}
.common-pagenews .fanhui a {
  color: var(--main-color);
}
.common-pagenews .fanhui img {
  vertical-align: middle;
  margin-right: 1rem;
  max-height: 2.2rem;
}
.common-page {
  font-size: 1.4rem;
  text-align: center;
  padding-top: 6rem;
}
.common-page a {
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 3.8rem;
  border-radius: 100%;
  margin: 0 0.5rem;
  color: #666;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #ddd;
}
.common-page a:hover,
.common-page .cur {
  color: #fff;
  border-color: transparent;
  background: var(--main-color);
}
.common-page .prev,
.common-page .next {
  width: auto;
  min-width: 10.6rem;
  position: relative;
  border-radius: 30px;
}
.common-page .prev:before {
  content: "<";
  margin-right: 0.6rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.common-page .next:after {
  content: ">";
  margin-left: 0.6rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .common-page {
    padding-top: 40px;
  }
  .common-page .prev,
  .common-page .next {
    padding: 0 10px;
    width: auto;
    min-width: auto;
  }
  .common-page a {
    margin: 0;
    width: 24px;
    height: 24px;
    line-height: 22px;
  }
}
#searchPopup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
#searchPopup .searchBox {
  color: #fff;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 13rem;
  opacity: 0;
  padding-right: 0;
  position: absolute;
  transition: all 0.5s;
}
#searchPopup .searchBox.fadeIn {
  top: 10rem;
  opacity: 1;
  z-index: 999;
}
#searchPopup .searchBox .container {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  transform: translateX(0rem);
}
#searchPopup .searchBox input {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border: 1px #fff solid;
  background: #fff;
  color: #333;
  width: 30%;
  padding: 0 2.5rem;
  font-size: 1.6rem;
  height: 6rem;
  line-height: 5.8rem;
}
#searchPopup .searchBox input:focus {
  color: #333;
}
#searchPopup .searchBox .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  height: 6rem;
  width: 6rem;
  background: var(--main-color);
  text-align: center;
  display: inline-block;
}
#searchPopup .searchBox .btn svg {
  width: 3rem;
  height: 3rem;
  margin: 1.5rem;
}
#searchPopup .searchBox .btn .cls-1 {
  fill: #fff;
}
#searchPopup .searchBox .btn .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
#searchPopup .searchBox .btn:hover {
  background: var(--main-color);
}
#searchPopup .searchBox .close {
  display: none;
}
#searchPopup .searchBox2.fadeIn {
  top: 9.5rem;
}
@media screen and (max-width: 1024px) {
  #searchPopup .searchBox {
    top: 80px;
  }
  #searchPopup .searchBox .container {
    transform: translateX(0);
  }
  #searchPopup .searchBox input {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }
  #searchPopup .searchBox .btn {
    right: 15px;
    height: 36px;
    width: 36px;
  }
  #searchPopup .searchBox .btn svg {
    width: 20px;
    height: 20px;
    margin: 8px auto 0 auto;
  }
}
.videoWindow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000000;
  display: none;
}
.videoWindow video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132rem;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  max-height: 70%;
  max-width: 80%;
}
.videoWindow i {
  display: block;
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/onlineClose.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.popbox {
  top: 0;
  left: 0;
  display: none;
  z-index: 999999;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
}
.popbox .container {
  top: 50%;
  left: 50%;
  padding: 6rem 8rem;
  max-width: 100rem;
  background: #fff;
  position: absolute;
  background: url(../images/mess-bg.jpg) no-repeat top center;
  background-size: cover;
  border-top: solid 1rem var(--main-color);
  transform: translate(-50%, -50%);
}
.popbox .close {
  top: -0.5rem;
  right: -6rem;
  position: absolute;
}
.popbox .close img {
  max-height: 3.2rem;
}
.popbox .title {
  text-align: center;
}
.popbox .form-row {
  padding-top: 2.5rem;
}
.popbox .form-row ul {
  display: flex;
  flex-wrap: wrap;
}
.popbox .form-row li {
  padding: 0 1rem;
  padding-top: 2.5rem;
  width: 50%;
}
.popbox .form-row li .form-group {
  display: flex;
  position: relative;
  padding-bottom: 1rem;
  border-bottom: solid 1px #e1e1e1;
}
.popbox .form-row li .form-title {
  width: 35%;
  color: #333;
  display: flex;
  align-items: center;
  line-height: 4rem;
}
.popbox .form-row li .form-title em {
  color: #ff2626;
  font-style: normal;
}
.popbox .form-row li .form-title img {
  margin-right: 1rem;
  max-height: 1.6rem;
}
.popbox .form-row li .form-text,
.popbox .form-row li .form-select,
.popbox .form-row li .form-textarea {
  width: 65%;
  border: 0;
}
.popbox .form-row li .form-text input,
.popbox .form-row li .form-select input,
.popbox .form-row li .form-textarea input,
.popbox .form-row li .form-text select,
.popbox .form-row li .form-select select,
.popbox .form-row li .form-textarea select,
.popbox .form-row li .form-text textarea,
.popbox .form-row li .form-select textarea,
.popbox .form-row li .form-textarea textarea {
  width: 100%;
  border: 0;
  color: #333;
  font-size: 1.6rem;
  font-family: "微软雅黑";
  height: 4rem;
  line-height: 4rem;
  background-color: transparent;
}
.popbox .form-row li .form-text select,
.popbox .form-row li .form-select select,
.popbox .form-row li .form-textarea select {
  color: #999;
}
.popbox .form-row .li-1 {
  width: 100%;
  display: block;
}
.popbox .form-row .li-1 .form-group {
  display: block;
}
.popbox .form-row .li-1 .form-title,
.popbox .form-row .li-1 .form-textarea {
  width: 100%;
}
.popbox .form-row .li-1 .form-textarea textarea {
  height: 6rem;
  line-height: 2.4rem;
  padding: 0 2.4rem;
}
.popbox .form-row .common-buttton {
  text-align: center;
  margin-top: 4rem;
}
.floatRigth {
  position: fixed;
  z-index: 1000;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
.floatRigth li {
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1rem;
  position: relative;
}
.floatRigth li:nth-child(1) .hoverDiv {
  padding: 1rem;
  bottom: -5rem;
  border-radius: 0.5rem;
}
.floatRigth li:nth-child(2) .box:hover {
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
}
.floatRigth li:nth-child(2) .box:hover .hoverDiv {
  right: 100%;
  transform: scale(1);
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}
.floatRigth li:nth-child(3) .icon svg {
  width: 1.8rem;
  height: 1.8rem;
}
.floatRigth .box {
  display: block;
  cursor: pointer;
  border-radius: 50%;
  transition: all 500ms ease;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 0;
  right: 0;
}
.floatRigth .icon {
  line-height: 4rem;
  text-align: center;
  color: #fff;
  display: block;
  margin: auto;
  background-repeat: no-repeat;
  position: relative;
}
.floatRigth .icon svg {
  vertical-align: middle;
  width: 2.2rem;
  height: 2.2rem;
  fill: #fff;
}
.floatRigth .hoverDiv {
  cursor: initial;
  background: #fff;
  border-radius: 1rem;
  width: 13rem;
  color: #333;
  font-size: 1.6rem;
  position: absolute;
  z-index: -1;
  bottom: 0rem;
  right: 100%;
  border-radius: 0;
  transition: all 0.5s;
  transform-origin: bottom right;
  transform: scale(0);
}
.floatRigth .hoverDivC {
  padding-left: 0;
  text-align: center;
  position: relative;
}
.floatRigth .hoverTel {
  color: #fff;
  height: 4.4rem;
  line-height: 4.4rem;
  font-family: Arial;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--main-color) !important;
}
.floatRigth .ewm {
  width: 13rem;
  height: 13rem;
  text-align: left;
  padding: 0.5rem;
}
.floatRigth .box:hover {
  background: #b70411;
}
.floatRigth .box:hover .hoverDiv {
  right: 100%;
  transform: scale(1);
}
.floatRigth .returnTopBtn {
  opacity: 0;
  transition: opacity 0.5s;
}
.floatRigth .returnTopBtn.show {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .floatRigth {
    display: none;
  }
}


.nav ul li .subnav {
  width: 100%;
  background-color: #000;
  /* box-shadow: 0.2rem .3rem .7rem 0rem rgba(0, 0, 0, 0.1); */
  position: absolute;
  top: 100%;
  left: 0;
  margin-left: 0;
  padding: 2.4rem 2.4rem;
  display: none;
  text-align: center;
  z-index: 333;
  border-top:1px solid #404040;
}
.nav ul li .subnav ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.nav ul li .subnav ul li {
  margin: 0;
  width: 8%;
  padding: 0;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.nav ul li .subnav ul li a {
  font-size: 1.8rem;
  line-height: 4.6rem;
  height: auto;
  font-weight: normal;
  color: #ffff !important;
  margin: 0;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
  display: block;
  background: none;
}
.nav ul li .subnav ul li a:after {
  display: none;
}
.nav ul li .subnav ul li a .pic {
  width: 5.5rem;
  margin: 0 auto;
}

.nav ul li .subnav ul li a .pic:after {
  padding-bottom: 71.42857143%;
}
.nav ul li .subnav ul li a .bt {
  font-size: 1.6rem;
  line-height: 3.5rem;
  color: #fff;
  margin-top:10px;
}
@media (min-width: 1025px) {
  .nav ul li .subnav ul li:hover > a .bt {
    color: var(--main-color);
  }
	.nav ul li .subnav ul li:hover > a .pic {
	  filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(7483%) hue-rotate(359deg) brightness(102%) contrast(110%);
	}
}