* {
  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: #fcb813;
  --sub-color: #e1b461;
  --font-family-0: "HarmonyOS_Sans_SC_Regular", "Microsoft YaHei", "微软雅黑", Helvetica, "Hiragino Sans GB", Arial, sans-serif;
  --font-family-H-S-SC-L: 'HarmonyOS_Sans_SC_Light';
  --font-family-H-S-SC-R: 'HarmonyOS_Sans_SC_Regular';
  --font-family-H-S-SC-M: 'HarmonyOS_Sans_SC_Medium';
  --font-family-H-S-SC-B: 'HarmonyOS_Sans_SC_Bold';
  --font-family-R-B: 'Roboto-Bold_0';
  --font-family-1: 'Oswald-Bold';
}
a {
  color: #333;
  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 {
  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: -9rem;
  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(252, 184, 19, 0.7);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--main-color);
  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;
}
@font-face {
  font-family: "Oswald-Bold";
  src: url('../fonts/Oswald-Bold.eot');
  src: url('../fonts/Oswald-Bold.woff');
  src: url('../fonts/Oswald-Bold.woff2');
  src: url('../fonts/Oswald-Bold.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Light';
  src: url('../fonts/HarmonyOS_Sans_SC_Light.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Regular';
  src: url('../fonts/HarmonyOS_Sans_SC_Regular.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Medium';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Bold';
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.ttf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Bold_0";
  src: url('../fonts/Roboto-Bold_0.eot');
  src: url('../fonts/Roboto-Bold_0.woff');
  src: url('../fonts/Roboto-Bold_0.otf');
  src: url('../fonts/Roboto-Bold_0.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  color: #333;
  background: #fff;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.5;
  word-wrap: normal;
  font-family: var(--font-family-H-S-SC-R);
}
@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: 152rem;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px !important;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 640px !important;
    padding: 0 20px !important;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
  color: #fff;
}
.header .listbox {
  max-width: 178rem;
  position: relative;
  display: flex;
  align-items: center;
  height: 9rem;
  justify-content: space-between;
}
.header .logo img {
  max-height: 8rem;
}
.header .logo .img2 {
  display: none;
}
.header .rightInfo {
  font-size: 1.6rem;
  text-align: right;
}
.header .rightInfo .info-warp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header .rightInfo .lxwm a {
  color: #fff;
}
.header .language {
  margin-left: 3rem;
  margin-top: 0.2rem;
  display: inline-block;
  position: relative;
  vertical-align: top;
  font-family: var(--font-family-M-L);
}
.header .language::before {
  content: "";
  top: 50%;
  left: -1.5rem;
  width: 1px;
  margin-top: -1rem;
  position: absolute;
  height: 2rem;
  background: rgba(255, 255, 255, 0.3);
}
.header .language a {
  color: #fff;
}
.header .language svg {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  vertical-align: top;
  margin-top: 0.2rem;
  margin-right: 0.5rem;
}
.header .searchBtn {
  z-index: 2;
  width: 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: 2.4rem;
  height: 2.4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.5s;
}
.header .searchBtn:hover svg {
  fill: var(--main-color) !important;
}
@media (max-width: 1024px) {
  .header {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    position: fixed !important;
  }
  .header .listbox {
    height: 70px !important;
  }
  .header .rightInfo {
    display: none;
  }
  .header .logo img {
    max-height: 50px;
  }
  .header .logo .img1 {
    display: none !important;
  }
  .header .logo .img2 {
    display: block !important;
  }
}
.common-box {
  display: flex;
}
.common-nav {
  margin-right: 4rem;
}
.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-left: 8rem;
  text-align: center;
  position: relative;
}
.common-nav .listNav > li > a {
  z-index: 1;
  color: #fff;
  font-size: 1.8rem;
  height: 4rem;
  line-height: 4rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.common-nav .listNav > li > a > span {
  display: inline-block;
  overflow: hidden;
  height: 4rem;
  line-height: 4rem;
  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: 4rem;
  left: 50%;
  transform-origin: 0 0;
  transform: scaleY(0) translateX(-50%);
  transition: transform 0.2s;
  color: #333;
}
.common-nav .listNav > li > .child::before {
  display: none;
  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;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0.5rem 1rem;
  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;
}
.header-2,
.fixed {
  top: 0;
  left: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 9999;
  width: 100%;
}
.header-2 .logo .img1,
.fixed .logo .img1 {
  display: none;
}
.header-2 .logo .img2,
.fixed .logo .img2 {
  display: block;
}
.header-2 .language a,
.fixed .language a {
  color: #666;
}
.header-2 .language::after,
.fixed .language::after {
  border-top: solid 0.6rem #666;
}
.header-2 .language::before,
.fixed .language::before {
  background: linear-gradient(to bottom, #f8f8f8, #ddd, #f8f8f8);
}
.header-2 .language svg,
.fixed .language svg,
.header-2 .searchBtn svg,
.fixed .searchBtn svg {
  fill: #666;
}
.header-2 .rightInfo .lxwm a,
.fixed .rightInfo .lxwm a {
  color: #666;
}
.header-2 .common-nav .listNav > li > a,
.fixed .common-nav .listNav > li > a {
  color: #231815;
}
.header-2 .common-nav .listNav > li .icon,
.fixed .common-nav .listNav > li .icon {
  border-right: solid 1px #231815;
  border-bottom: solid 1px #231815;
}
.header-2 {
  top: auto;
  left: auto;
  position: relative;
  box-shadow: none;
}
.fixed {
  position: fixed;
}
.common-buttton {
  padding-top: 5rem;
}
.common-buttton a {
  font-size: 1.6rem;
  text-align: center;
  display: inline-block;
  min-width: 15rem;
  height: 4.8rem;
  line-height: 4.8rem;
  transition: all 500ms ease;
  background-color: var(--main-color);
  border-radius: 0.4rem;
}
.common-buttton a:hover {
  color: #333;
  background-color: #ffcd1d;
}
.common-title {
  text-align: center;
  font-weight: normal;
  font-size: 4.2rem;
  line-height: 5rem;
  position: relative;
  padding-bottom: 2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.common-title::after {
  content: "";
  bottom: 0;
  left: 50%;
  width: 8.8rem;
  height: 0.4rem;
  position: absolute;
  background: #ffcd00;
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .common-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.common-page {
  font-size: 12px;
  text-align: center;
  padding-top: 8rem;
}
.common-page a {
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 3.8rem;
  border-radius: 100%;
  margin: 0 0.5rem;
  color: #202020;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #e3ecf2;
}
.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;
  }
}
.banner {
  clear: both;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .video-box {
  position: relative;
}
.banner .video-box::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
}
.banner .video {
  border: none;
  box-shadow: none;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  width: 100%;
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .ph {
  display: none;
}
.banner .text-warp {
  left: 0;
  width: 100%;
  color: #fff;
  top: 50%;
  z-index: 3;
  text-align: left;
  position: absolute;
  transform: translateY(-60%);
}
.banner .text {
  color: var(--main-color);
  text-align: center;
}
.banner .t-1,
.banner .t-2 {
  font-size: 8.8rem;
  line-height: 8.8rem;
  font-family: var(--font-family-H-S-SC-B);
}
.banner .t-2 {
  padding-top: 3rem;
}
.banner .t-2 span {
  padding-left: 5rem;
}
.banner .swiper-slide-active .t-1 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-2 {
  animation: 1.5s fadeInDown2 ease;
}
@media (max-width: 1024px) {
  .banner {
    height: auto;
    margin-top: 70px;
  }
  .banner .t-1,
  .banner .t-2 {
    font-size: 40px;
    line-height: 50px;
  }
  .banner .t-2 {
    padding-top: 10px;
  }
  .banner .pc {
    display: none;
  }
  .banner .ph {
    display: block;
  }
  .banner .ph img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .banner .t-1,
  .banner .t-2 {
    font-size: 30px;
    line-height: 30px;
  }
}
.index-product {
  overflow: hidden;
  padding: 10rem 0 0 0;
}
.index-product .container {
  max-width: 192rem;
}
.index-product .list-warp {
  position: relative;
}
.index-product .list-warp .swiper-button-prev,
.index-product .list-warp .swiper-button-next {
  top: auto;
  opacity: 1;
  bottom: 10rem;
  margin-top: auto;
  border-radius: 50%;
  border: solid 1px #d0d0d0;
  line-height: 4.4rem;
  width: 4.6rem;
  height: 4.6rem;
}
.index-product .list-warp .swiper-button-prev:after,
.index-product .list-warp .swiper-button-next:after {
  color: #d0d0d0;
  font-size: 1.4rem;
}
.index-product .list-warp .swiper-button-prev:hover,
.index-product .list-warp .swiper-button-next:hover {
  border-color: var(--main-color);
}
.index-product .list-warp .swiper-button-prev:hover:after,
.index-product .list-warp .swiper-button-next:hover:after {
  color: var(--main-color);
}
.index-product .list-warp .swiper-button-prev {
  left: 106rem;
}
.index-product .list-warp .swiper-button-next {
  right: auto;
  left: 114rem;
}
.index-product .list-pic {
  margin-top: 5rem;
}
.index-product .list-pic .item {
  margin-left: -43.5rem;
  position: relative;
  clip-path: polygon(10% 0, 90% 0, 80% 100%, 0 100%);
}
.index-product .list-pic .pic {
  border-radius: 2rem;
  position: relative;
  height: 82rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-product .list-pic .pic::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  opacity: 0 !important;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.4);
  background-size: cover;
  transition: all 500ms ease;
  border-radius: 2.4rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: absolute;
  clip-path: polygon(10% 0, 90% 0, 80% 100%, 0 100%);
}
.index-product .list-pic .text-warp {
  left: 0;
  color: #fff;
  z-index: 10;
  top: 12rem;
  position: absolute;
}
.index-product .list-pic .text {
  width: 57rem;
  margin-left: 25rem;
}
.index-product .list-pic .text .t-1 {
  font-family: var(--font-family-H-S-SC-B);
  font-size: 4.2rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 6rem;
  letter-spacing: 0.2rem;
}
.index-product .list-pic .text .t-2 {
  margin-top: 2rem;
  line-height: 3.2rem;
  height: 9.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.index-product .list-pic .t-warp {
  margin: 0 -1rem;
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
}
.index-product .list-pic .t-warp dl {
  padding: 0 1rem;
  width: 33.333%;
  text-align: center;
}
.index-product .list-pic .t-warp dt {
  overflow: hidden;
  background: #fff;
  position: relative;
  border-radius: 0.8rem;
}
.index-product .list-pic .t-warp dt img {
  border-radius: 0.8rem;
  transition: all 700ms ease;
}
.index-product .list-pic .t-warp dt::after {
  content: "";
  display: block;
  padding-bottom: 61.36363636%;
}
.index-product .list-pic .t-warp dd {
  margin-top: 1.5rem;
}
.index-product .list-pic .swiper-container {
  overflow: inherit;
}
.index-product .list-pic .swiper-slide-active .pic::before {
  background: rgba(0, 0, 0, 0.2);
}
.index-product .list-pic .swiper-slide-active .text {
  margin-left: 63.5rem;
}
.index-product .list-menu {
  width: 100%;
  bottom: 6.5rem;
  position: absolute;
}
.index-product .list-menu .container {
  max-width: 152rem;
}
.index-product .list-menubox {
  margin-left: 20rem;
  max-width: 80rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.28);
}
.index-product .list-menubox .itemM {
  cursor: pointer;
  position: relative;
  transition: all 500ms ease;
  padding-bottom: 3rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 2.2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.index-product .list-menubox .itemM img {
  max-height: 6rem;
  margin-right: 2rem;
  filter: brightness(0) invert(1);
}
.index-product .list-menubox .itemM::before {
  content: "";
  left: 0;
  width: 100%;
  bottom: 0;
  height: 1px;
  position: absolute;
  transition: all 500ms ease;
  background: rgba(255, 255, 255, 0.28);
}
.index-product .list-menubox .itemM::after {
  opacity: 0;
  content: "";
  left: 0;
  width: 0;
  bottom: -1px;
  height: 0.3rem;
  position: absolute;
  transition: all 500ms ease;
  background: var(--main-color);
}
.index-product .list-menubox .swiper-slide-thumb-active .itemM {
  color: var(--main-color);
  opacity: 1;
}
.index-product .list-menubox .swiper-slide-thumb-active .itemM img {
  filter: brightness(1) invert(0);
}
.index-product .list-menubox .swiper-slide-thumb-active .itemM::after {
  opacity: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  .index-product {
    padding: 40px 0 0 0;
  }
  .index-product .list-pic .swiper-container {
    overflow: hidden;
  }
  .index-product .common-buttton {
    padding-top: 20px;
  }
  .index-product .list-pic .text-warp {
    top: 40px;
  }
  .index-product .list-pic .t-warp {
    display: none;
  }
  .index-product .list-pic .item {
    margin-left: 0;
    clip-path: inherit !important;
  }
  .index-product .list-pic .pic {
    clip-path: inherit !important;
    margin-left: 0;
    height: 400px;
    border-radius: 10px;
  }
  .index-product .list-pic .pic::before {
    border-radius: 10px;
  }
  .index-product .list-pic .text {
    width: 100%;
    padding: 0 30px;
    margin-left: 0 !important;
  }
  .index-product .list-pic .text .t-1 {
    font-size: 26px;
    line-height: 40px;
  }
  .index-product .list-menubox {
    padding: 0 20px;
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 550px) {
  .index-product .list-menubox .itemM {
    justify-content: center;
    text-align: center;
    font-size: 14px;
  }
  .index-product .list-menubox .itemM img {
    display: none;
    max-height: 30px;
  }
}
.index-technology {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 10rem 0 5rem 0;
}
.index-technology .swiperzhanhui {
  height: 69rem;
  overflow: hidden;
  position: relative;
  border-radius: 2rem;
  margin-top: 5rem;
}
.index-technology .zhihui1,
.index-technology .zhihui2,
.index-technology .zhihui3 {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 46rem;
  border-radius: 2rem;
  position: absolute;
}
.index-technology .zhihui1 .zhanhuiitem,
.index-technology .zhihui2 .zhanhuiitem,
.index-technology .zhihui3 .zhanhuiitem {
  position: relative;
}
.index-technology .zhihui1 .zhanhuiitem .bt,
.index-technology .zhihui2 .zhanhuiitem .bt,
.index-technology .zhihui3 .zhanhuiitem .bt {
  width: 100%;
  z-index: 13;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.index-technology .zhihui1 .zhanhuiitem .info,
.index-technology .zhihui2 .zhanhuiitem .info,
.index-technology .zhihui3 .zhanhuiitem .info {
  width: 100%;
  z-index: 3;
  position: relative;
}
.index-technology .zhihui1 {
  z-index: 3;
  top: 0;
}
.index-technology .zhihui2 {
  top: 6rem;
  top: 0;
  z-index: 2;
  border-radius: 2rem;
}
.index-technology .zhihui2.active{
  top: -8rem;
}
.index-technology .zhihui2 .bt::after {
  background-color: #fcb813 !important;
}
.index-technology .zhihui2 .bt span {
  color: #333 !important;
}
.index-technology .zhihui3 {
  top: 12rem;
  top: 6rem;
}
.index-technology .zhihui3 .zhanhuiitem .info {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.index-technology .zhihui3 .zhanhuiitem .list-box .pic {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.index-technology .zhihui3 .zhanhuiitem .list-box .pic img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.index-technology .zhihui3 .bt::after {
  background-color: #151517 !important;
}
.index-technology .zhihui3 .bt span {
  color: #fff !important;
}
.index-technology .zhihui1.active {
  top: -1.2rem;
  top: -15.2rem;
}
.index-technology .zhihui1.active .zhanhuiitem .bt::after {
  height: 7rem;
  top: -1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.index-technology .zhihui1.active .zhanhuiitem .bt span {
  margin-top: -0.5rem;
}
.index-technology .zhihui1.active .zhanhuiitem .info {
  border-radius: 0;
}
.index-technology .zhihui2.active .zhanhuiitem .list-box .pic {
  border-radius: 0;
}
.index-technology .zhihui2.active .zhanhuiitem .bt {
  display: none;
}
.index-technology .zhihui2.active .zhanhuiitem .list-box .pic img {
  border-radius: 0;
}
.index-technology .zhihui3.active {
  transform: translate(0) !important;
}
.index-technology .zhihui3.active .bt {
  display: none;
}
.index-technology .zhanhuiitem {
  border-radius: 2rem;
}
.index-technology .zhanhuiitem .bt {
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  height: 6rem;
  font-size: 3rem;
  color: #141414;
  padding: 0 7rem;
  font-family: var(--font-family-H-S-SC-B);
  border-radius: 2rem;
}
.index-technology .zhanhuiitem .bt::after {
  content: "";
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8rem;
  top: -2rem;
  background-color: #ffcd00;
  position: absolute;
}
.index-technology .zhanhuiitem .bt span {
  z-index: 4;
  margin-top: -1.5rem;
  position: relative;
  display: inline-block;
}
.index-technology .zhanhuiitem .info {
  z-index: 10;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}
.index-technology .zhanhuiitem .info .title {
  top: 8rem;
  left: 7rem;
  z-index: 9;
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
  position: absolute;
}
.index-technology .zhanhuiitem .list {
  top: 15rem;
  left: 7rem;
  z-index: 9;
  width: 40%;
  position: absolute;
}
.index-technology .zhanhuiitem .list .swiper-slide span {
  cursor: pointer;
  height: 4.2rem;
  line-height: 4rem;
  min-width: 14rem;
  display: inline-block;
  background: #fff;
  text-align: center;
  border-radius: 0.5rem;
  border: solid 1px #333;
}
.index-technology .zhanhuiitem .list .swiper-slide-thumb-active span {
  border-color: var(--main-color);
  background: var(--main-color);
}
.index-technology .zhanhuiitem .list-box {
  padding-left: 7rem;
  background: #f4f4f4;
  position: relative;
}
.index-technology .zhanhuiitem .list-box .item {
  display: flex;
  justify-content: space-between;
}
.index-technology .zhanhuiitem .list-box .item .left {
  width: 43%;
  height: 9rem;
  overflow: auto;
  background: #f4f4f4;
  line-height: 3rem;
  margin-top: 22rem;
}
.index-technology .zhanhuiitem .list-box .item .left .btn{
	position: absolute;
    margin-top: 4rem;
}
.index-technology .zhanhuiitem .list-box .item .left .btn .more{
	border: solid 1px #333;
	border-radius: 0.5rem;
	background: #fff;
	display: inline-block;
	height: 4.2rem;
    line-height: 4rem;
	padding: 0 1rem;
}
.index-technology .zhanhuiitem .list-box .item .right {
  width: 52.5%;
}
.index-technology .zhanhuiitem .list-box .pic {
  border-radius: 2rem;
}
.index-technology .zhanhuiitem .list-box .pic img {
  border-radius: 2rem;
  transition: all 700ms ease;
  width: 100%;
}
.index-technology .zhanhuiitem .list-box .pic:hover img{
  transform: scale(1.05);
}
.index-technology .swiper-button-prev,
.index-technology .swiper-button-next {
  top: auto;
  opacity: 1;
  bottom: 10rem;
  margin-top: auto;
  border-radius: 50%;
  border: solid 1px #d0d0d0;
  line-height: 4.4rem;
  width: 4.6rem;
  height: 4.6rem;
}
.index-technology .swiper-button-prev:after,
.index-technology .swiper-button-next:after {
  color: #d0d0d0;
  font-size: 1.4rem;
}
.index-technology .swiper-button-prev:hover,
.index-technology .swiper-button-next:hover {
  border-color: var(--main-color);
}
.index-technology .swiper-button-prev:hover:after,
.index-technology .swiper-button-next:hover:after {
  color: var(--main-color);
}
.index-technology .swiper-button-prev {
  left: 22rem;
}
.index-technology .swiper-button-next {
  right: auto;
  left: 30rem;
}
@media (max-width: 1024px) {
  .index-technology {
    padding: 40px 0;
  }
  .index-technology .swiper-button-prev,
  .index-technology .swiper-button-next {
    bottom: 0;
    border: solid 1px #333 !important;
  }
  .index-technology .swiper-button-prev::after,
  .index-technology .swiper-button-next::after {
    color: #333 !important;
  }
  .index-technology .swiperzhanhui {
    height: auto;
    margin-top: 10px;
  }
  .index-technology .zhihui1,
  .index-technology .zhihui2,
  .index-technology .zhihui3,
  .index-technology .zhihui4 {
    height: auto;
    margin-top: 30px;
    top: auto !important;
    left: auto !important;
    position: relative !important;
  }
  .index-technology .zhihui1 .zhanhuiitem .list-box .pic,
  .index-technology .zhihui2 .zhanhuiitem .list-box .pic,
  .index-technology .zhihui3 .zhanhuiitem .list-box .pic,
  .index-technology .zhihui4 .zhanhuiitem .list-box .pic {
    border-radius: 10px !important;
  }
  .index-technology .zhihui1 .zhanhuiitem .list-box .pic img,
  .index-technology .zhihui2 .zhanhuiitem .list-box .pic img,
  .index-technology .zhihui3 .zhanhuiitem .list-box .pic img,
  .index-technology .zhihui4 .zhanhuiitem .list-box .pic img {
    border-radius: 10px !important;
  }
  .index-technology .zhanhuiitem .bt {
    display: none;
    font-size: 18px;
    line-height: 24px;
    height: auto;
    padding: 20px 30px;
  }
  .index-technology .zhanhuiitem .list {
    padding: 20px 0;
  }
  .index-technology .zhanhuiitem .info {
    top: auto;
    left: auto;
    position: relative;
    border-radius: 0 0 2rem 2rem;
    padding-bottom: 40px;
  }
  .index-technology .zhanhuiitem .info .text {
    height: auto;
    margin-top: 20px;
    line-height: 24px;
  }
  .index-technology .zhanhuiitem .list .swiper-slide span {
    padding: 0 5px;
    height: 38px;
    line-height: 36px;
  }
  .index-technology .zhanhuiitem .list {
    left: auto;
    top: auto;
    width: 100%;
    position: relative;
  }
  .index-technology .zhanhuiitem .info {
    padding: 30px;
    border-radius: 10px !important;
    background: #f4f4f4;
  }
  .index-technology .zhanhuiitem .list-box .item .left {
    height: auto;
  }
  .index-technology .zhanhuiitem .info .title {
    left: auto;
    top: auto;
    position: relative;
  }
  .index-technology .zhanhuiitem .list-box {
    padding-left: 0px;
    padding-right: 0px;
    height: auto !important;
  }
  .index-technology .zhanhuiitem .list-box .item {
    display: block;
  }
  .index-technology .zhanhuiitem .list-box .item .left {
    width: 100%;
    margin-top: auto;
    line-height: 24px;
  }
  .index-technology .zhanhuiitem .list-box .item .right {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .index-technology .swiper-button-prev {
    left: 0;
  }
  .index-technology .swiper-button-next {
    left: 60px;
  }
  .index-technology .list .swiper-slide {
    margin-right: 10px !important;
    width: auto !important;
  }
}
.index-about {
  padding: 10rem 0;
  background: #f4f4f4;
}
.index-about .common-title {
  text-align: left;
}
.index-about .common-title::after {
  left: 0;
  transform: translateX(0);
}
.index-about .container {
  display: flex;
  justify-content: space-between;
}
.index-about .group-left {
  width: 53%;
  line-height: 3rem;
}
.index-about .group-left .text {
  padding-top: 1.5rem;
}
.index-about .group-left .text p:first-child {
  font-family: var(--font-family-H-S-SC-B);
}
.index-about .group-left .text p {
  padding-top: 1rem;
}
.index-about .group-right {
  width: 43%;
}
.index-about .numlist {
  overflow: hidden;
}
.index-about .numlist ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
  padding-top: 2rem;
}
.index-about .numlist li {
  padding: 2rem;
  padding-bottom: 0;
  width: 50%;
}
.index-about .numlist li .item {
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 8.8rem;
  background-color: #ffffff;
  border-radius: 4rem 0.2rem 4rem 0.2rem;
}
.index-about .numlist li .item p:first-child {
  width: 42%;
  color: var(--main-color);
  text-align: center;
  border-right: solid 1px #c7c7c8;
}
.index-about .numlist li .item p:first-child i,
.index-about .numlist li .item p:first-child em {
  font-style: normal;
}
.index-about .numlist li .item p:first-child em {
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.index-about .numlist li .item p:last-child {
  width: 58%;
  padding-left: 4rem;
}
.index-about .numlist li .item .counter,
.index-about .numlist li .item .counter-text {
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .index-about {
    padding: 40px 0;
  }
  .index-about .container {
    display: block;
  }
  .index-about .group-left {
    width: 100%;
    line-height: 24px;
  }
  .index-about .group-right {
    width: 100%;
    transform: scale(0.8);
  }
  .index-about .numlist li .item p:last-child {
    padding-left: 20px;
  }
  .index-about .common-buttton {
    display: none;
  }
}
@media (max-width: 540px) {
  .index-about .numlist li {
    width: 100%;
  }
}
.index-news {
  padding: 10rem 0;
}
.index-news .container {
  position: relative;
}
.index-news .common-button {
  right: 0;
  top: 0;
  position: absolute;
}
.index-news .common-button a {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  height: 5.9rem;
  transition: all 500ms ease;
  background-color: #fcb813;
  border-radius: 0.8rem;
}
.index-news .common-button svg {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 1rem;
  fill: #333;
  transition: all 500ms ease;
}
.index-news .common-button a:hover {
  background: #ffcd1d;
  color: #333;
}
.index-news .common-button a:hover svg {
  fill: #333;
}
.index-news .common-title {
  text-align: left;
}
.index-news .common-title::after {
  left: 0;
  transform: translateX(0);
}
.index-news .list {
  margin-top: 6rem;
}
.index-news .item {
  position: relative;
}
.index-news .item .pic {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}
.index-news .item .pic img {
  border-radius: 1rem;
  transition: all 700ms ease;
}
.index-news .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.71186441%;
}
.index-news .item .time {
  border: solid 0.4rem #f5f5eb;
  font-size: 1.6rem;
  padding: 0 1rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  font-family: var(--font-family-R-B);
  color: var(--main-color);
  background: rgba(22, 22, 23, 0.9);
  right: 4rem;
  top: 24.5rem;
  position: absolute;
}
.index-news .item .time span {
  display: block;
  text-align: center;
}
.index-news .item .time span:first-child {
  font-size: 3.8rem;
  line-height: 4rem;
}
.index-news .item .text {
  padding-top: 1rem;
}
.index-news .item .text .t-1 {
  color: #333;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.index-news .item .text .t-1 svg {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 0.5rem;
  fill: var(--main-color);
}
.index-news .item .text .t-2 {
  margin-top: 3rem;
  height: 7.2rem;
  line-height: 3.6rem;
  font-size: 2.4rem;
  color: #212121;
  font-weight: normal;
  transition: all 500ms ease;
  font-family: var(--font-family-H-S-SC-B);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-news .item .text .t-3 {
  font-size: 1.7rem;
  color: #4c4c4c;
  line-height: 3rem;
  height: 6rem;
  margin-top: 1.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-news .item .text .t-4 {
  margin-top: 3rem;
}
.index-news .item .text .t-4 span {
  text-align: center;
  color: #212121;
  font-size: 1.6rem;
  display: inline-block;
  line-height: 4.8rem;
  min-width: 15rem;
  border-radius: 0.5rem;
  background: var(--main-color);
  transition: all 500ms ease;
}
.index-news .item:hover .pic img {
  transform: scale(1.05);
}
.index-news .item:hover .text .t-2 {
  color: var(--main-color);
}
.index-news .item:hover .text .t-4 span {
  color: #333;
  background-color: #ffcd1d;
}
@media (max-width: 1024px) {
  .index-news {
    padding: 40px 0 60px 0;
  }
  .index-news .common-button {
    right: 20px;
  }
  .index-news .item .time {
    display: none;
  }
  .index-news .item .text {
    padding-top: 15px;
  }
}
.index-ad {
  display: flex;
  align-items: center;
  height: 18rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-ad .container {
  position: relative;
}
.index-ad .left {
  width: 60%;
  color: #141414;
}
.index-ad .left .t-1 {
  font-size: 4.4rem;
  line-height: 5rem;
  font-family: var(--font-family-H-S-SC-B);
}
.index-ad .left .t-2 {
  font-size: 1.6rem;
  padding-top: 1.5rem;
}
.index-ad .button {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
}
.index-ad .button a {
  color: #fff;
  height: 4.8rem;
  line-height: 4.8rem;
  text-align: center;
  min-width: 20rem;
  border-radius: 3rem;
  display: inline-block;
  background: #151517;
  transition: all 500ms ease;
}
.index-ad .button a:hover {
  color: #151517;
  background-color: #fafafa;
}
@media (max-width: 1024px) {
  .index-ad {
    height: 180px;
  }
  .index-ad .left .t-1 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 640px) {
  .index-ad {
    height: 180px;
    text-align: center;
  }
  .index-ad .left {
    width: 100%;
  }
  .index-ad .left .t-2 {
    display: none;
  }
  .index-ad .button {
    top: auto;
    right: auto;
    transform: translate(0);
    position: relative;
    margin-top: 30px;
  }
}
.footer {
  color: #666;
  padding-top: 7rem;
  background: #f5f5f5;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 20px 0;
  }
}
.footer-bottom {
  padding-bottom: 2rem;
}
.footer-bottom .footer-left {
  float: left;
  width: 27%;
}
.footer-bottom .footer-left .logo img {
  max-height: 7rem;
}
.footer-bottom .footer-left .info {
  margin-top: 2.5rem;
}
.footer-bottom .footer-left .info .t1:first-child svg {
  width: 2rem;
  height: 2rem;
}
.footer-bottom .footer-left .info .t1 {
  color: #212121;
  margin-top: 1rem;
  padding-left: 3rem;
  position: relative;
}
.footer-bottom .footer-left .info .t1 svg {
  top: 0.2rem;
  left: 0;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--main-color);
}
.footer-bottom .footer-left .info .t1 a {
  color: #212121;
}
.footer-bottom .chawk {
  position: relative;
  margin-top: 2.5rem;
}
.footer-bottom .chawk .button a {
  padding: 0 2rem;
  min-width: 24rem;
  height: 5.6rem;
  border-radius: 0.5rem;
  line-height: 5.6rem;
  font-size: 1.6rem;
  color: #212121;
  display: inline-block;
  transition: all 500ms ease;
  background: var(--main-color);
}
.footer-bottom .chawk .button .icon {
  float: right;
  padding-top: 0.4rem;
  vertical-align: top;
  font-style: normal;
}
.footer-bottom .chawk .button .icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: #333;
}
.footer-bottom .chawk .button:hover a {
  background: #ffcd1d;
}
.footer-bottom .chawk .chawk-drop {
  display: none;
  padding-top: 1rem;
  padding-bottom: 2rem;
  top: 5.6rem;
  left: 0;
  width: 100%;
  z-index: 9;
  padding-left: 2rem;
  font-size: 1.6rem;
  width: 24rem;
  background: #fff;
  position: absolute;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.footer-bottom .chawk .chawk-drop li {
  padding-top: 1rem;
}
.footer-bottom .chawk .chawk-drop li a {
  color: #666;
  display: block;
}
.footer-bottom .chawk .chawk-drop li a:hover {
  color: var(--main-color);
}
.footer-bottom .socialMedia {
  padding-top: 2.5rem;
  padding-bottom: 11rem;
}
.footer-bottom .socialMedia .list li {
  width: auto;
  border: 0;
  padding-top: 0;
  padding-left: 1rem;
  display: inline-block;
}
.footer-bottom .socialMedia .list li:first-child {
  padding-left: 0;
}
.footer-bottom .socialMedia .list .box {
  display: block;
  cursor: pointer;
  position: relative;
}
.footer-bottom .socialMedia .list .icon {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 3.6rem;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  transition: all 500ms ease;
}
.footer-bottom .socialMedia .list .icon img {
  max-height: 4.2rem;
}
.footer-bottom .socialMedia .list .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
  fill: var(--main-color);
}
.footer-bottom .socialMedia .list .icon:hover {
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom .socialMedia .list .down {
  display: none;
  color: #666;
  align-items: center;
  width: 12.2rem;
  cursor: initial;
  position: absolute;
  bottom: -12.5rem;
  left: 0;
  margin-left: -4rem;
}
.footer-bottom .socialMedia .list .down::after {
  content: "";
  left: 50%;
  top: -0.6rem;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 1rem #f0efeb;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
}
.footer-bottom .socialMedia .list .down .txt {
  margin-right: 1rem;
}
.footer-bottom .socialMedia .list .down .ewm {
  width: 11.4rem;
  position: relative;
}
.footer-bottom .socialMedia .list .down .ewm img {
  width: 100%;
  max-height: 12.4rem;
}
.footer-bottom .socialMedia .list .active .down {
  display: flex;
}
.footer-bottom .socialMedia .list .box:hover .icon {
  opacity: 1;
}
.footer-bottom .socialMedia .list .box:hover .down {
  display: flex;
}
.footer-bottom .socialMedia .list .cur .down {
  display: block;
}
.footer-bottom .footer-list {
  float: right;
  width: 65%;
}
.footer-bottom .footer-list ul {
  min-height: 19rem;
}
.footer-bottom .footer-list ul li {
  width: 17.3%;
  float: left;
}
.footer-bottom .footer-list ul li a {
  color: #333;
  display: block;
  padding-bottom: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.footer-bottom .footer-list ul li a:hover {
  color: var(--main-color);
}
.footer-bottom .footer-list ul li ul li {
  position: relative;
  width: 100% !important;
}
.footer-bottom .footer-list ul li ul li a {
  color: #666;
  display: block;
  padding-bottom: 1.3rem;
  font-family: var(--font-family-H-S-SC-R);
}
.footer-bottom .footer-list ul li:nth-child(2) {
  width: 18%;
}
.footer-bottom .footer-list ul li:nth-child(3) {
  width: 22%;
}
.footer-bottom .footer-list ul li:last-child {
  width: 8%;
}
@media (max-width: 1024px) {
  .footer-bottom {
    padding-top: 0;
    padding-left: 0px;
  }
  .footer-bottom .flogo img {
    max-height: 60px;
  }
  .footer-bottom .footer-left .f3 .t1 {
    font-size: 14px;
  }
  .footer-bottom .footer-left {
    width: 100%;
    font-size: 14px;
    float: none;
  }
  .footer-bottom .footer-left .f1 img,
  .footer-bottom .footer-left .f3 .t1 img {
    max-height: 16px;
    margin-right: 5px;
  }
  .footer-bottom .footer-left .wxbox dl {
    max-width: 80px;
  }
  .footer-bottom .footer-left .tel {
    font-size: 14px;
    padding-left: 65px;
  }
  .footer-bottom .footer-left .tel img {
    max-height: 54px;
  }
  .footer-bottom .footer-list {
    display: none;
  }
  .footer-bottom .socialMedia {
    padding-bottom: 20px;
  }
  .footer-bottom .socialMedia .list .icon {
    width: 40px;
    height: 40px;
    line-height: 34px;
  }
  .footer-bottom .socialMedia .list .icon svg {
    width: 24px;
    height: 24px;
  }
  .footer-bottom .socialMedia .list .icon img {
    max-height: 38px;
  }
}
.footer-copyright {
  font-size: 1.6rem;
}
.footer-copyright a {
  color: #666;
  padding-left: 2rem;
}
.footer-copyright a:first-child {
  padding-left: 0;
}
.footer-copyright a:hover {
  color: var(--main-color);
}
.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: solid 1px rgba(33, 33, 33, 0.28);
}
@media (max-width: 1024px) {
  .footer-copyright {
    font-size: 14px;
  }
  .footer-copyright .container {
    padding: 15px 20px !important;
    display: block;
  }
  .footer-copyright .container span {
    width: 100%;
    display: block;
  }
}
.common-banner {
  position: relative;
}
.common-banner .pc img {
  width: 100%;
}
.common-banner .ph {
  display: none;
}
.common-banner .text-warp {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 10;
  position: absolute;
  transform: translateY(-20%);
}
.common-banner .title {
  color: #fff;
  font-size: 4.8rem;
  line-height: 5rem;
  text-align: center;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .common-banner {
    margin-top: 70px;
  }
  .common-banner .text-warp {
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .common-banner .pc {
    display: none;
  }
  .common-banner .ph {
    display: block;
  }
  .common-banner .title {
    font-size: 26px;
  }
}
.common-row {
  font-size: 1.6rem;
  height: 6rem;
  line-height: 6rem;
  background: #f4f4f4;
}
.common-row .container {
  display: flex;
  justify-content: space-between;
}
.common-row .common-nav {
  width: 80%;
  margin-right: 0;
}
.common-row .common-nav ul {
  display: flex;
}
.common-row .common-nav li {
  padding-right: 7rem;
}
.common-row .common-nav li a {
  display: block;
  color: #454545;
}
.common-row .common-nav li:last-child {
  padding-right: 0;
}
.common-row .common-nav .active a,
.common-row .common-nav li:hover a {
  color: #000;
}
.common-row .common-current {
  width: 20%;
  text-align: right;
}
.common-row .common-current a {
  color: #454545;
}
.common-row .common-current a:hover {
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .common-row .common-nav {
    display: none;
  }
  .common-row .common-current {
    width: 100%;
    text-align: left;
  }
}
.common-row-2 .common-current {
  width: 100%;
  text-align: left;
}
.newslist {
  padding-top: 0;
  overflow: hidden;
}
.newslist .list {
  margin-top: 0;
}
.newslist .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.5rem;
}
.newslist .list li {
  padding: 0 2.5rem;
  margin-top: 9rem;
  width: 33.333%;
}
@media (max-width: 1024px) {
  .newslist .list ul {
    margin: 0 -10px;
  }
  .newslist .list li {
    width: 50%;
    padding: 0 10px;
    margin-top: 40px;
  }
  .newslist .list .item .time {
    display: none;
  }
}
@media (max-width: 420px) {
  .newslist .list li {
    width: 100%;
  }
  .newslist .list .item .time {
    display: none;
  }
}
.product-list {
  position: relative;
  padding: 10rem 0;
}
.product-list .row-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-list .row-1 .left-group {
  width: 44%;
}
.product-list .row-1 .left-group .title {
  padding-bottom: 2rem;
  position: relative;
  font-size: 4.2rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.product-list .row-1 .left-group .title::after {
  content: "";
  bottom: 0;
  left: 0;
  height: 0.4rem;
  width: 8.8rem;
  position: absolute;
  background: var(--main-color);
}
.product-list .row-1 .left-group .text {
  margin-bottom: 2rem;
  margin-top: 3rem;
  color: #4c4c4c;
  line-height: 3rem;
  height: 15rem;
  overflow: auto;
}
.product-list .row-1 .right-group {
  width: 48.5%;
}
.product-list .row-1 .right-group .pic {
  border-radius: 2rem;
}
.product-list .row-1 .right-group .pic img {
  border-radius: 2rem;
}
.product-list .row-2 {
  padding-top: 9rem;
}
.product-list .row-2 .title {
  font-size: 4.2rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.product-list .row-2 .box {
  margin-top: 6rem;
}
.product-list .row-2 .box .t-1 {
  color: #212121;
  font-size: 2.4rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.product-list .row-2 .box .t-2 {
  color: #4c4c4c;
  padding-top: 1rem;
}
.product-list .row-2 .list {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 3.5rem;
  border-top: solid 1px #e0e0e0;
}
.product-list .row-2 .list .pic {
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
  border-radius: 0.8rem;
}
.product-list .row-2 .list .pic::after {
  content: "";
  display: block;
  padding-bottom: 61.42857143%;
}
.product-list .row-2 .list .pic img {
  transition: all 700ms ease;
  border-radius: 0.8rem;
}
.product-list .row-2 .list .pic:hover img {
  transform: scale(1.05);
}
.product-list .row-2 .swiper-button-prev,
.product-list .row-2 .swiper-button-next {
  margin-top: 0;
  border-radius: 50%;
  border: solid 1px #d0d0d0;
  line-height: 3.6rem;
  width: 3.8rem;
  height: 3.8rem;
}
.product-list .row-2 .swiper-button-prev:after,
.product-list .row-2 .swiper-button-next:after {
  color: #d0d0d0;
  font-size: 1.4rem;
}
.product-list .row-2 .swiper-button-prev:hover,
.product-list .row-2 .swiper-button-next:hover {
  border-color: var(--main-color);
}
.product-list .row-2 .swiper-button-prev:hover:after,
.product-list .row-2 .swiper-button-next:hover:after {
  color: var(--main-color);
}
.product-list .row-2 .swiper-button-prev {
  left: -6rem;
}
.product-list .row-2 .swiper-button-next {
  right: -6rem;
}
@media (max-width: 1024px) {
  .product-list {
    padding: 40px 0;
  }
  .product-list .row-1 {
    display: block;
  }
  .product-list .row-1 .left-group {
    width: 100%;
  }
  .product-list .row-1 .left-group .title {
    font-size: 26px;
  }
  .product-list .row-1 .left-group .title::after {
    width: 46px;
  }
  .product-list .row-1 .left-group .text {
    height: auto;
    line-height: 24px;
  }
  .product-list .row-1 .left-group .common-buttton {
    text-align: center;
    padding-top: 30px;
  }
  .product-list .row-1 .right-group {
    width: 100%;
    margin-top: 40px;
  }
  .product-list .row-2 {
    padding-top: 40px;
  }
  .product-list .row-2 .title {
    font-size: 26px;
  }
  .product-list .row-2 .box {
    margin-top: 30px;
  }
  .product-list .row-2 .swiper-button-prev,
  .product-list .row-2 .swiper-button-next {
    background: #fff;
  }
  .product-list .row-2 .swiper-button-prev {
    left: 20px;
  }
  .product-list .row-2 .swiper-button-next {
    right: 20px;
  }
}
.hzsq {
  padding: 10rem 0;
}
.hzsq .row {
  margin-top: 4rem;
  background: #f6f6f6;
  display: flex;
  justify-content: space-between;
}
.hzsq .left-group {
  color: #fff;
  width: 30.5%;
  position: relative;
}
.hzsq .left-group .text-top {
  z-index: 3;
  top: 7rem;
  font-size: 2.4rem;
  font-family: var(--font-family-H-S-SC-B);
  padding: 0 4.5rem;
  position: absolute;
}
.hzsq .left-group .text-bot {
  z-index: 3;
  bottom: 4rem;
  padding: 0 4.5rem;
  position: absolute;
  font-family: var(--font-family-H-S-SC-M);
}
.hzsq .left-group .text-bot P {
  padding-top: 1rem;
}
.hzsq .right-group {
  width: 69.5%;
  padding: 6rem;
}
.hzsq .right-group .from ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
  padding-top: 1rem;
}
.hzsq .right-group .from li {
  width: 50%;
  padding: 0 1.5rem;
  margin-top: 2rem;
}
.hzsq .right-group .from li .text-input,
.hzsq .right-group .from li .text-textarea,
.hzsq .right-group .from li .text-file {
  position: relative;
}
.hzsq .right-group .from li .text-input input,
.hzsq .right-group .from li .text-textarea input,
.hzsq .right-group .from li .text-file input,
.hzsq .right-group .from li .text-input textarea,
.hzsq .right-group .from li .text-textarea textarea,
.hzsq .right-group .from li .text-file textarea {
  width: 100%;
  color: #4c4c4c;
  border: 0;
  font-size: 1.8rem;
  padding: 0 2.5rem;
  height: 6rem;
  line-height: 6rem;
  background: #fff;
  font-family: var(--font-family-H-S-SC-R);
}
.hzsq .right-group .from li .text-input input::-webkit-input-placeholder,
.hzsq .right-group .from li .text-textarea input::-webkit-input-placeholder,
.hzsq .right-group .from li .text-file input::-webkit-input-placeholder,
.hzsq .right-group .from li .text-input textarea::-webkit-input-placeholder,
.hzsq .right-group .from li .text-textarea textarea::-webkit-input-placeholder,
.hzsq .right-group .from li .text-file textarea::-webkit-input-placeholder {
  color: #4c4c4c;
}
.hzsq .right-group .from li .text-input input:-moz-placeholder,
.hzsq .right-group .from li .text-textarea input:-moz-placeholder,
.hzsq .right-group .from li .text-file input:-moz-placeholder,
.hzsq .right-group .from li .text-input textarea:-moz-placeholder,
.hzsq .right-group .from li .text-textarea textarea:-moz-placeholder,
.hzsq .right-group .from li .text-file textarea:-moz-placeholder {
  color: #4c4c4c;
  opacity: 1;
}
.hzsq .right-group .from li .text-input input::-moz-placeholder,
.hzsq .right-group .from li .text-textarea input::-moz-placeholder,
.hzsq .right-group .from li .text-file input::-moz-placeholder,
.hzsq .right-group .from li .text-input textarea::-moz-placeholder,
.hzsq .right-group .from li .text-textarea textarea::-moz-placeholder,
.hzsq .right-group .from li .text-file textarea::-moz-placeholder {
  color: #4c4c4c;
  opacity: 1;
}
.hzsq .right-group .from li .text-input input:-ms-input-placeholder,
.hzsq .right-group .from li .text-textarea input:-ms-input-placeholder,
.hzsq .right-group .from li .text-file input:-ms-input-placeholder,
.hzsq .right-group .from li .text-input textarea:-ms-input-placeholder,
.hzsq .right-group .from li .text-textarea textarea:-ms-input-placeholder,
.hzsq .right-group .from li .text-file textarea:-ms-input-placeholder {
  color: #4c4c4c;
}
.hzsq .right-group .from li .text-input .red,
.hzsq .right-group .from li .text-textarea .red,
.hzsq .right-group .from li .text-file .red {
  color: #f30;
  top: 2rem;
  left: 1.3rem;
  font-style: normal;
  position: absolute;
}
.hzsq .right-group .from li .text-textarea textarea,
.hzsq .right-group .from li .text-file textarea {
  padding-top: 1.5rem;
  line-height: 2.4rem;
  height: 11rem;
}
.hzsq .right-group .from .li-w {
  width: 100%;
}
.hzsq .right-group .from .li-w a {
  color: #666;
}
.hzsq .right-group .from .li-w a:hover {
  color: #333;
}
.hzsq .right-group .from .common-buttton {
  margin-top: 4rem;
}
.hzsq .right-group .from .common-buttton a {
  color: #333;
  min-width: 24rem;
}
@media (max-width: 1024px) {
  .hzsq {
    padding: 40px 0;
  }
  .hzsq .row {
    display: block;
  }
  .hzsq .left-group {
    display: none;
  }
  .hzsq .right-group {
    padding: 30px;
    float: none;
    width: 100%;
  }
  .hzsq .right-group .from li {
    width: 100% !important;
  }
  .hzsq .right-group .from .common-buttton a {
    width: 100%;
  }
}
.hzsq-2 {
  padding-top: 0;
}
.hzsq-2 .right-group .from li {
  width: 33.333%;
}
.hzsq-2 .right-group .from .text-file {
  position: relative;
  width: 100%;
}
.hzsq-2 .right-group .from .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.hzsq-2 .right-group .from .file-label {
  height: 11rem;
  display: flex;
  padding: 1.5rem 2.5rem;
  background-color: #fff;
  transition: all 0.2s ease;
  z-index: 1;
  pointer-events: none;
}
.hzsq-2 .right-group .from .file-name {
  font-size: 1.8rem;
  color: #4c4c4c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 1rem;
  flex: 1;
}
.engineering-1 {
  padding: 10rem 0;
  position: relative;
}
.engineering-1 .list li {
  margin-top: 6rem;
  padding: 2rem;
  border-radius: 2rem;
  background: #f4f4f4;
  align-items: center;
  display: flex;
}
.engineering-1 .list li .left-group {
  width: 48%;
  overflow: hidden;
  border-radius: 2rem;
}
.engineering-1 .list li .left-group img {
  transition: all 700ms ease;
  border-radius: 2rem;
}
.engineering-1 .list li .right-group {
  width: 52%;
  padding-right: 4rem;
  padding-left: 6rem;
}
.engineering-1 .list li .right-group .icon img {
  max-width: 5.2rem;
}
.engineering-1 .list li .right-group .title {
  margin-top: 2rem;
  color: #212120;
  font-size: 3rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.engineering-1 .list li .right-group .text {
  color: #474747;
  line-height: 3rem;
  height: 12rem;
  overflow: auto;
  margin-top: 2rem;
}
.engineering-1 .list li .right-group .common-buttton {
  padding-top: 3rem;
}
.engineering-1 .list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.engineering-1 .list li:nth-child(2n) .right-group {
  padding-left: 4rem;
  padding-right: 6rem;
}
.engineering-1 .list li:hover .left-group img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .engineering-1 {
    padding: 40px 0;
  }
  .engineering-1 .list li {
    margin-top: 30px;
    padding: 0;
    display: block;
    border-radius: 10px;
  }
  .engineering-1 .list li .left-group {
    width: 100%;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .engineering-1 .list li .left-group img {
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .engineering-1 .list li .right-group {
    width: 100%;
    padding: 30px !important;
  }
  .engineering-1 .list li .right-group .text {
    height: auto;
  }
}
.engineering-2 {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
  padding: 10rem 0;
}
.engineering-2 .container {
  max-width: 192rem;
}
.engineering-2 .text {
  margin: 0 auto;
  margin-top: 3rem;
  max-width: 152rem;
  color: #4c4c4c;
  line-height: 3.2rem;
  text-align: center;
}
.engineering-2 .text span {
  display: block;
}
.engineering-2 .list {
  margin-top: 6rem;
  width: 127.5%;
  margin-left: -26rem;
}
.engineering-2 .swiper-wrap {
  display: flex;
  position: relative;
  margin-top: 5rem;
  justify-content: center;
}
.engineering-2 .swiper-wrap::before {
  content: "";
  width: 0.2rem;
  height: 0.8rem;
  top: 1rem;
  left: 50%;
  z-index: 3;
  position: absolute;
  background: #838383;
}
.engineering-2 .swiper-arrow {
  width: 2.8rem;
  height: 4.9rem;
  position: relative;
  border-radius: 3rem;
  border: solid 0.2rem #999;
}
.engineering-2 .swiper-button-prev,
.engineering-2 .swiper-button-next {
  bottom: auto;
  left: auto;
  right: auto;
  margin-top: auto;
  vertical-align: top;
  color: #a4a4a4;
  width: 5rem;
  height: 5rem;
  position: relative;
}
.engineering-2 .swiper-button-prev::after,
.engineering-2 .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 700ms ease;
}
.engineering-2 .swiper-button-prev:hover,
.engineering-2 .swiper-button-next:hover {
  color: var(--main-color);
}
.engineering-2 .swiper-text {
  color: #616161;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 1024px) {
  .engineering-2 {
    padding: 40px 0;
  }
  .engineering-2 .text {
    max-width: 100%;
    line-height: 24px;
    text-align: left;
  }
  .engineering-2 .text span {
    display: inline;
  }
  .engineering-2 .list {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
  }
}
.engineering-3 {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 10rem 0;
}
.engineering-3 .text {
  color: #4c4c4c;
  line-height: 3.2rem;
  margin-top: 3rem;
  text-align: center;
}
.engineering-3 .text span {
  display: block;
}
.engineering-3 .list-row {
  padding-top: 8rem;
}
.engineering-3 .bt {
  color: #212121;
  font-size: 3.2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.engineering-3 .tabwarp {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.engineering-3 .tabnav {
  width: 53%;
}
.engineering-3 .tabnav li {
  cursor: pointer;
  position: relative;
  padding-top: 4rem;
  padding-right: 5rem;
  padding-left: 3rem;
  display: flex;
  justify-content: space-between;
}
.engineering-3 .tabnav li::before {
  content: "";
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  width: 0.3rem;
  position: absolute;
  background: #212121;
  transition: all 700ms ease;
}
.engineering-3 .tabnav li .icon {
  width: 17%;
  position: relative;
}
.engineering-3 .tabnav li .icon img {
  max-height: 7.8rem;
}
.engineering-3 .tabnav li .icon span {
  margin-top: -1rem;
  margin-left: -2rem;
  vertical-align: top;
  width: 4.3rem;
  height: 3.2rem;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 2rem;
  text-align: center;
  line-height: 3.2rem;
  display: inline-block;
  position: relative;
  background-color: #ffcd00;
}
.engineering-3 .tabnav li .icon span::after {
  content: "";
  bottom: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  border-top: solid 0.6rem #ffcd00;
  border-left: solid 0.6rem transparent;
  border-right: solid 0.6rem transparent;
}
.engineering-3 .tabnav li .text-warp {
  width: 83%;
}
.engineering-3 .tabnav li .text-warp .t-1 {
  margin-top: -1rem;
  position: relative;
  height: 10.5rem;
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  color: #212121;
  font-family: var(--font-family-H-S-SC-B);
}
.engineering-3 .tabnav li .text-warp .t-2 {
  display: none;
}
.engineering-3 .tabnav li .text-warp .t-2 p {
  padding-bottom: 1.5rem;
}
.engineering-3 .tabnav .active {
  height: 32rem;
  background: var(--main-color);
}
.engineering-3 .tabnav .active::before {
  opacity: 1;
  height: 100%;
}
.engineering-3 .tabnav .active .icon span {
  color: var(--main-color);
  background: #fff;
}
.engineering-3 .tabnav .active .text-warp .t-2 {
  display: block;
}
.engineering-3 .tabbox {
  width: 40%;
  margin-top: 1.2rem;
}
.engineering-3 .tabbox .tabcot {
  display: none;
  left: 1.6rem;
  width: 132%;
  position: relative;
}
.engineering-3 .tabbox .tabcot.show {
  display: block;
}
.engineering-3 .list-row-2 {
  overflow: hidden;
  padding-top: 14rem;
}
.engineering-3 .list-row-2 .bt {
  text-align: center;
}
.engineering-3 .list-row-2 .list {
  margin: 0 -8.5rem;
  display: flex;
  flex-wrap: wrap;
}
.engineering-3 .list-row-2 .list li {
  width: 50%;
  margin-top: 7rem;
  position: relative;
  padding: 0 8.5rem;
}
.engineering-3 .list-row-2 .list li .item {
  position: relative;
}
.engineering-3 .list-row-2 .list li .icon {
  top: 0;
  left: 0;
  position: absolute;
}
.engineering-3 .list-row-2 .list li .icon img {
  max-height: 6rem;
}
.engineering-3 .list-row-2 .list li .text-warp {
  padding-left: 8.6rem;
}
.engineering-3 .list-row-2 .list li .text-warp .t-1 {
  color: #212121;
  font-size: 2.4rem;
}
.engineering-3 .list-row-2 .list li .text-warp .t-2 {
  padding-top: 1rem;
  line-height: 3rem;
  color: #4d4d4d;
}
@media (max-width: 1024px) {
  .engineering-3 {
    padding: 40px 0;
  }
  .engineering-3 .bt {
    font-size: 24px;
    text-align: center !important;
  }
  .engineering-3 .text {
    line-height: 24px;
    text-align: left;
  }
  .engineering-3 .list-row {
    padding-top: 30px;
  }
  .engineering-3 .tabwarp {
    display: block;
  }
  .engineering-3 .tabnav {
    width: 100%;
  }
  .engineering-3 .tabnav .active {
    height: auto;
    padding-bottom: 30px;
  }
  .engineering-3 .tabbox {
    display: none;
  }
  .engineering-3 .list-row-2 {
    padding-top: 50px;
  }
  .engineering-3 .list-row-2 .list li {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 580px) {
  .engineering-3 .tabnav li .icon {
    width: 35%;
  }
  .engineering-3 .tabnav li .text-warp {
    width: 65%;
  }
}
.engineering-4 {
  position: relative;
  padding: 10rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.engineering-4 .common-title {
  color: #fff;
}
.engineering-4 .text {
  color: #fff;
  margin: 0 auto;
  margin-top: 3rem;
  line-height: 3rem;
  text-align: center;
  max-width: 97rem;
}
@media (max-width: 1024px) {
  .engineering-4 {
    padding: 40px 0;
  }
  .engineering-4 .text {
    line-height: 24px;
    text-align: left;
    max-width: 100%;
  }
}
.engineering-4 .home-bottom {
  margin-top: 6.5rem;
  padding: 8rem 0;
  background: #fff;
}
.engineering-4 .img {
  width: 38%;
  float: left;
  margin-left: -9rem;
}
.engineering-4 .info {
  padding: 3.4rem 0 10.6rem 0;
  position: relative;
  z-index: 1;
}
.engineering-4 .info:after {
  content: '';
  display: block;
  width: 97.3%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  background: rgba(255, 255, 255, 0.88);
}
.engineering-4 .nr {
  width: 62%;
  float: right;
  position: relative;
}
.engineering-4 .home-bottom {
  padding-right: 6rem;
  position: relative;
}
.engineering-4 .icon {
  width: 8.2rem;
}
.engineering-4 .swiper-prev,
.engineering-4 .swiper-next {
  background: none;
  width: auto;
  height: auto;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  bottom: 6.5rem;
  color: #333333;
  text-align: center;
}
.engineering-4 .swiper-prev .title-1,
.engineering-4 .swiper-next .title-1 {
  font-size: 2.8rem;
}
.engineering-4 .swiper-prev .title-2,
.engineering-4 .swiper-next .title-2 {
  font-size: 1.2rem;
}
.engineering-4 .swiper-prev span,
.engineering-4 .swiper-next span {
  display: block;
  margin-top: 9rem;
}
.engineering-4 .swiper-prev img,
.engineering-4 .swiper-next img {
  display: block;
  max-height: 2.6rem;
}
.engineering-4 .swiper-prev {
  left: 0;
  text-align: left;
}
.engineering-4 .swiper-next {
  right: 0;
  text-align: right;
}
.engineering-4 .swiper-container {
  padding-top: 3rem;
  position: relative;
}
.engineering-4 .swiper-container .swiper-slide {
  padding: 0 16rem;
  height: 41rem;
  text-align: center;
}
.engineering-4 .swiper-container .box {
  text-align: left;
  padding-top: 3rem;
}
.engineering-4 .swiper-container .num {
  font-weight: 700;
  font-size: 44.1rem;
  line-height: 27rem;
  color: #aeadad;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 15%;
  z-index: 1;
  text-align: center;
  font-family: var(--font-family-R-B);
}
.engineering-4 .swiper-container .title {
  font-family: var(--font-family-H-S-SC-B);
  color: #212121;
  font-size: 2.8rem;
  z-index: 2;
  position: relative;
}
.engineering-4 .swiper-container .span {
  color: var(--main-color);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}
.engineering-4 .swiper-container .p {
  z-index: 2;
  font-size: 1.7rem;
  color: #4c4c4c;
  line-height: 3rem;
  position: relative;
}
.engineering-4 .swiper-container .p p {
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .engineering-4 .img {
    display: none;
  }
  .engineering-4 .nr {
    position: static;
    float: none;
    width: 100%;
  }
  .engineering-4 .nr .txt {
    display: none;
  }
  .engineering-4 .home-bottom {
    padding: 30px;
  }
  .engineering-4 .swiper-prev,
  .engineering-4 .swiper-next {
    top: auto;
    display: inline-block;
    position: relative;
    height: auto;
    z-index: 9;
    bottom: auto;
    margin-top: 0;
  }
  .engineering-4 .swiper-prev img,
  .engineering-4 .swiper-next img {
    max-height: 2rem;
  }
  .engineering-4 .swiper-prev .icon,
  .engineering-4 .swiper-next .icon {
    margin-top: 0;
    vertical-align: top;
  }
  .engineering-4 .swiper-prev {
    left: auto;
  }
  .engineering-4 .swiper-next {
    right: auto;
    left: auto;
  }
  .engineering-4 .swiper-container .swiper-slide {
    height: auto;
  }
  .engineering-4 .swiper-container .span {
    font-size: 16px;
  }
  .engineering-4 .swiper-container .box {
    padding-top: 0;
  }
  .engineering-4 .swiper-container .num {
    display: none;
  }
  .engineering-4 .swiper-container .swiper-slide {
    padding: 0;
  }
  .engineering-4 .swiper-container .p {
    font-size: 14px;
    line-height: 24px;
    height: auto;
  }
}
.joblist {
  overflow: hidden;
  padding: 9rem 0 10rem 0;
}
.joblist .container {
  display: flex;
  justify-content: space-between;
  padding: 0 6rem;
}
.joblist .left-group {
  position: relative;
  width: 41%;
}
.joblist .left-group .text p {
  font-size: 2rem;
  padding-top: 1.2rem;
}
.joblist .left-group .text p:first-child {
  padding-top: 0;
}
.joblist .left-group .list {
  margin-top: 6rem;
}
.joblist .left-group .list .swiper-container {
  height: 54.3rem;
}
.joblist .left-group .list .swiper-warp {
  padding-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: solid 1px #cccccc;
}
.joblist .left-group .list .swiper-pagination,
.joblist .left-group .list .swiper-button-prev,
.joblist .left-group .list .swiper-button-next {
  top: auto;
  left: auto;
  right: auto;
  margin-top: auto;
  position: relative;
}
.joblist .left-group .list .swiper-pagination::after,
.joblist .left-group .list .swiper-button-prev::after,
.joblist .left-group .list .swiper-button-next::after {
  color: #000;
  font-size: 3rem;
}
.joblist .left-group .list .swiper-button-next {
  margin-left: 3rem;
}
.joblist .left-group .list .swiper-button-box {
  display: flex;
}
.joblist .left-group .list .swiper-pagination-bullet {
  margin-right: 0.8rem;
}
.joblist .left-group .list .swiper-pagination-bullet-active {
  background: #333;
}
.joblist .left-group .list .title {
  border-top: solid 1px #cccccc;
}
.joblist .left-group .list .title a {
  padding-right: 2.5rem;
  height: 9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.joblist .left-group .list .title span:first-child {
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.joblist .left-group .list .title span:last-child {
  padding-left: 2rem;
  color: var(--main-color);
}
.joblist .right-from {
  width: 41%;
}
.joblist .right-from li {
  font-size: 1.6rem;
  margin-top: 2rem;
  border-radius: 0.3rem;
  border: solid 1px #000;
  padding: 1.6rem 3.5rem;
}
.joblist .right-from li .tit {
  padding-bottom: 1rem;
}
.joblist .right-from li .text-input input {
  border: 0;
  width: 100%;
  color: #151517;
  font-size: 1.6rem;
  height: 3rem;
  line-height: 3rem;
  font-family: var(--font-family-H-S-SC-R);
}
.joblist .right-from li .text-input input::-webkit-input-placeholder {
  color: #151517;
}
.joblist .right-from li .text-input input:-moz-placeholder {
  color: #151517;
  opacity: 1;
}
.joblist .right-from li .text-input input::-moz-placeholder {
  color: #151517;
  opacity: 1;
}
.joblist .right-from li .text-input input:-ms-input-placeholder {
  color: #151517;
}
.joblist .right-from li .text-checkbox input[type="checkbox"] {
  accent-color: #fcb813;
}
.joblist .right-from li .text-file input[type="file"] {
  width: 100%;
  font-size: 1.6rem;
}
.joblist .right-from li:first-child {
  margin-top: 0;
}
.joblist .right-from .li-1 {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}
.joblist .right-from .layui-box {
  display: flex;
}
.joblist .right-from .layui-box .time {
  padding-right: 4rem;
}
.joblist .right-from .layui-box .input-form-xs {
  border: 0;
  padding-left: 3rem;
  background: url(../images/rili.jpg) no-repeat center left;
}
.joblist .right-from .common-buttton {
  border: 0;
  padding: 0;
}
.joblist .right-from .common-buttton a {
  height: 5.6rem;
  line-height: 5.6rem;
  min-width: 19.6rem;
}
@media (max-width: 1024px) {
  .joblist {
    padding: 40px 0;
  }
  .joblist .container {
    display: block;
  }
  .joblist .left-group,
  .joblist .right-from {
    width: 100%;
  }
  .joblist .left-group .list .title span:first-child,
  .joblist .right-from .list .title span:first-child {
    font-size: 18px;
  }
  .joblist .right-from {
    margin-top: 40px;
  }
}
.technology-1 {
  overflow: hidden;
  position: relative;
  padding: 10rem 0 15rem 0;
}
.technology-1 .container {
  z-index: 9;
  position: relative;
}
.technology-1 .list-row {
  text-align: center;
}
.technology-1 .list-row .t-1 {
  margin-top: 4rem;
  color: #212120;
  font-size: 3.8rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-1 .list-row .t-2 {
  padding-top: 1rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-1 .list-row .t-3 {
  color: #666;
  margin: 0 auto;
  max-width: 115rem;
  line-height: 3rem;
  padding-top: 4rem;
}
.technology-1 .waves {
  bottom: -4rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
@media (max-width: 1024px) {
  .technology-1 {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .technology-1 .list-row .t-1 {
    font-size: 24px;
  }
}
.technology-2 {
  padding-bottom: 10rem;
}
.technology-2 .container {
  position: relative;
}
.technology-2 .bt {
  font-family: var(--font-family-H-S-SC-B);
  font-size: 3rem;
  text-align: center;
}
.technology-2 .siderbox {
  position: relative;
  margin-bottom: 7rem;
}
.technology-2 .siderfor {
  position: relative;
  margin-top: 4.5rem;
}
.technology-2 .siderfor .item:hover .pic img {
  transform: scale(1.05);
}
.technology-2 .siderfor .swiper-slide {
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.technology-2 .siderfor .swiper-button-prev,
.technology-2 .siderfor .swiper-button-next {
  top: 15%;
  opacity: 0;
  margin-top: auto;
  width: 40px;
  height: 40px;
  color: #aaa;
  line-height: 38px;
  border-radius: 50px;
  border: solid 1px #eee;
  background-color: rgba(255, 255, 255, 0.87);
}
.technology-2 .siderfor .swiper-button-prev::after,
.technology-2 .siderfor .swiper-button-next::after {
  font-size: 12px;
}
.technology-2 .siderfor .item {
  position: relative;
}
.technology-2 .siderfor .item .pic {
  width: 56.2%;
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
}
.technology-2 .siderfor .item .pic:after {
  content: "";
  display: block;
  padding-bottom: 59.0747331%;
}
.technology-2 .siderfor .item .pic img {
  transition: all 1000ms ease;
}
.technology-2 .siderfor .item .text {
  width: 43.8%;
  float: right;
  background: #fff;
  z-index: 3;
  min-height: 47rem;
  margin-top: 7rem;
  width: calc(43.8% + 15rem);
  box-shadow: 0 0 2rem rgba(36, 49, 84, 0.1);
  position: relative;
  margin-left: -15rem;
  padding: 4rem 4rem 7rem 4rem;
}
.technology-2 .siderfor .item .text .title {
  height: 8rem;
  padding-left: 10rem;
  position: relative;
  margin-bottom: 3rem;
}
.technology-2 .siderfor .item .text .title .num {
  bottom: 0;
  left: 0;
  color: var(--main-color);
  font-size: 8rem;
  line-height: 8rem;
  width: 9rem;
  font-weight: 700;
  position: absolute;
  text-shadow: 0 0 1px var(--main-color);
}
.technology-2 .siderfor .item .text .title .num:before {
  top: 0;
  right: 2.4rem;
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  transform: rotate(35deg);
  border-left: solid 1px var(--main-color);
}
.technology-2 .siderfor .item .text .title .num:after {
  bottom: -1rem;
  left: 1rem;
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  transform: rotate(35deg);
  border-left: solid 1px var(--main-color);
}
.technology-2 .siderfor .item .text .title .cn {
  color: #333333;
  font-size: 3rem;
  padding-top: 1rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-2 .siderfor .item .text .title .en {
  color: #b0b0b0;
  font-size: 1.7rem;
}
.technology-2 .siderfor .item .text .info {
  line-height: 3.2rem;
  text-align: justify;
}
.technology-2 .siderfor .item .text .p-1 {
  color: #3e3a38;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}
.technology-2 .siderfor .item .text .p-1:before {
  content: "";
  top: 1.3rem;
  left: 0;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/arrow.jpg) no-repeat top center;
  background-size: cover;
}
@media (max-width: 1300px) {
  .technology-2 .siderfor .item .text {
    margin-top: 4.8rem;
  }
}
.technology-2 .sidernav {
  overflow: inherit;
  right: 7rem;
  width: 47%;
  z-index: 2;
  bottom: 8rem;
  position: absolute;
}
.technology-2 .sidernav .swiper-slide-thumb-active span {
  background: var(--main-color);
  border-color: var(--main-color);
}
.technology-2 .sidernav li {
  padding: 0 0.5rem;
  width: auto !important;
}
.technology-2 .sidernav li span {
  background: #fff;
  font-size: 1.4rem;
  text-align: center;
  min-width: Infinityrem;
  color: #333;
  height: 4rem;
  cursor: pointer;
  padding: 0 1.4rem;
  line-height: 3.8rem;
  border-radius: 3rem;
  display: inline-block;
  border: solid 1px #b8b8b8;
}
.technology-2 .swiper-slide-active .pic {
  animation: 2s fadeInLeft2 ease;
}
.technology-2 .swiper-slide-active .text {
  animation: 2s fadeInRight2 ease;
}
.technology-2 .list-row ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.technology-2 .list-row li {
  display: flex;
  padding: 0 2rem;
  margin-top: 4rem;
  width: 33.333%;
}
.technology-2 .list-row li .item {
  position: relative;
  padding: 6rem 4rem;
  padding-left: 13rem;
  background: #fff;
  min-width: 100%;
  height: 100%;
  box-shadow: 2px 6px 3rem 0px rgba(52, 104, 167, 0.2);
  border-radius: 6px;
}
.technology-2 .list-row li .icon {
  top: 6.4rem;
  left: 4rem;
  position: absolute;
}
.technology-2 .list-row li .icon img {
  transition: all 500ms ease;
  max-height: 5rem;
}
.technology-2 .list-row li .text .t-1 {
  color: #000;
  font-size: 2.6rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-2 .list-row li .text .t-2 {
  color: #666;
  margin-top: 2rem;
  line-height: 3rem;
}
.technology-2 .list-row li:hover .icon img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .technology-2 {
    padding-bottom: 40px;
  }
  .technology-2 .siderfor .swiper-button-prev,
  .technology-2 .siderfor .swiper-button-next {
    opacity: 1;
  }
  .technology-2 .siderfor .item .text .title {
    height: auto;
  }
  .technology-2 .siderfor .item .text .title .num {
    top: 0;
    bottom: auto;
  }
  .technology-2 .siderfor .item .text .title .cn {
    font-size: 18px;
  }
  .technology-2 .siderfor .item .text .title .en {
    font-size: 12px;
  }
  .technology-2 .siderbox {
    margin-bottom: 0;
    position: relative;
  }
  .technology-2 .siderfor .item .pic {
    width: 100%;
    float: none;
  }
  .technology-2 .siderfor .item .text {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    float: none;
    margin-left: 0;
    margin-top: 0;
    box-shadow: none;
    min-height: auto;
    padding-bottom: 0;
  }
  .technology-2 .siderfor .swiper-slide {
    padding-right: 0;
  }
  .technology-2 .sidernav {
    display: none;
    right: auto;
    bottom: auto;
    width: 100%;
    position: relative;
  }
  .technology-2 .list-row li {
    width: 100%;
  }
}
.technology-3 {
  padding: 10rem 0;
}
.technology-3 .container {
  display: flex;
  justify-content: space-between;
}
.technology-3 .left-group {
  width: 45%;
}
.technology-3 .left-group .bt {
  color: #212120;
  font-size: 3.8rem;
  margin-top: 5rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-3 .left-group .text {
  margin-top: 5rem;
  padding-left: 9rem;
  position: relative;
}
.technology-3 .left-group .text .icon {
  top: 0;
  left: 0;
  position: absolute;
}
.technology-3 .left-group .text .icon img {
  max-height: 7rem;
}
.technology-3 .left-group .text .t-1 {
  color: #474747;
  font-size: 2.4rem;
  line-height: 3.8rem;
  font-family: var(--font-family-H-S-SC-B);
}
.technology-3 .right-group {
  width: 46%;
}
.technology-3 .right-group .pic {
  border-radius: 3rem;
}
.technology-3 .right-group .pic img {
  border-radius: 3rem;
}
@media (max-width: 1024px) {
  .technology-3 {
    padding: 40px 0;
  }
  .technology-3 .container {
    display: block;
  }
  .technology-3 .left-group {
    width: 100%;
  }
  .technology-3 .left-group .bt {
    font-size: 24px;
    margin-top: 0;
  }
  .technology-3 .left-group .text {
    margin-top: 20px;
    padding-left: 0;
  }
  .technology-3 .left-group .text .icon {
    display: none;
  }
  .technology-3 .left-group .text .t-1 {
    font-size: 15px;
    line-height: 24px;
  }
  .technology-3 .right-group {
    width: 100%;
    margin-top: 30px;
  }
}
.contact {
  position: relative;
  padding: 10rem 0;
}
.contact .bt {
  font-size: 2.4rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.contact .row {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}
.contact .left-group {
  width: 40%;
}
.contact .left-group .info {
  margin-top: 2.5rem;
}
.contact .left-group .info .t1:first-child svg {
  width: 2rem;
  height: 2rem;
}
.contact .left-group .info .t1 {
  color: #212121;
  margin-top: 1.5rem;
  padding-left: 3rem;
  position: relative;
}
.contact .left-group .info .t1 svg {
  top: 0.2rem;
  left: 0;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--main-color);
}
.contact .left-group .info .t1 a {
  color: #212121;
}
.contact .left-group .socialMedia {
  padding-top: 2.5rem;
  padding-bottom: 11rem;
}
.contact .left-group .socialMedia .list li {
  width: auto;
  border: 0;
  padding-top: 0;
  padding-left: 1rem;
  display: inline-block;
}
.contact .left-group .socialMedia .list li:first-child {
  padding-left: 0;
}
.contact .left-group .socialMedia .list .box {
  display: block;
  cursor: pointer;
  position: relative;
}
.contact .left-group .socialMedia .list .icon {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 3.6rem;
  border-radius: 50%;
  border: solid 1px var(--main-color);
  transition: all 500ms ease;
}
.contact .left-group .socialMedia .list .icon img {
  max-height: 4.2rem;
}
.contact .left-group .socialMedia .list .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
  fill: var(--main-color);
}
.contact .left-group .socialMedia .list .icon:hover {
  background: rgba(255, 255, 255, 0.1);
}
.contact .left-group .socialMedia .list .down {
  display: none;
  color: #666;
  align-items: center;
  width: 12.2rem;
  cursor: initial;
  position: absolute;
  bottom: -12rem;
  left: 0;
  margin-left: -4rem;
}
.contact .left-group .socialMedia .list .down::after {
  content: "";
  left: 50%;
  top: -0.8rem;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 1rem #fff;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
}
.contact .left-group .socialMedia .list .down .txt {
  margin-right: 1rem;
}
.contact .left-group .socialMedia .list .down .ewm {
  width: 11.4rem;
  position: relative;
}
.contact .left-group .socialMedia .list .down .ewm img {
  width: 100%;
  max-height: 12.4rem;
}
.contact .left-group .socialMedia .list .active .down {
  display: flex;
}
.contact .left-group .socialMedia .list .box:hover .icon {
  opacity: 1;
}
.contact .left-group .socialMedia .list .box:hover .down {
  display: flex;
}
.contact .left-group .socialMedia .list .cur .down {
  display: block;
}
.contact .right-group {
  width: 45%;
}
.contact .right-group .from {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.contact .right-group .from li {
  width: 50%;
  padding: 0 1.5rem;
  padding-top: 2rem;
}
.contact .right-group .from li .text-name {
  padding-bottom: 1rem;
}
.contact .right-group .from li .text-name em {
  font-style: normal;
  color: #f30;
}
.contact .right-group .from li .text-input input,
.contact .right-group .from li .text-textarea input,
.contact .right-group .from li .text-input textarea,
.contact .right-group .from li .text-textarea textarea {
  color: #333;
  font-family: var(--font-family-H-S-SC-R);
  padding: 0 1.5rem;
  width: 100%;
  height: 4.2rem;
  line-height: 4rem;
  border-radius: 0.6rem;
  border: solid 1px #cccccc;
}
.contact .right-group .from li .text-input textarea,
.contact .right-group .from li .text-textarea textarea {
  height: 8rem;
  line-height: 3rem;
}
.contact .right-group .from .li-1 {
  width: 100%;
}
.contact .right-group .from .li-2 {
  color: #666;
  font-size: 1.6rem;
  padding-top: 1rem;
  font-family: var(--font-family-H-S-SC-L);
}
.contact .right-group .from .li-2 .text-checkbox {
  accent-color: var(--main-color);
}
.contact .right-group .from .li-2 a {
  color: #666;
  text-decoration: underline;
}
.contact .right-group .from .li-2 a:hover {
  color: #333;
}
.contact .right-group .from .common-buttton {
  text-align: center;
}
.contact .right-group .from .common-buttton a {
  min-width: 24rem;
}
@media (max-width: 1024px) {
  .contact {
    padding: 40px 0;
  }
  .contact .row {
    display: block;
  }
  .contact .left-group {
    width: 100%;
  }
  .contact .right-group {
    width: 100%;
  }
  .contact .right-group .from li {
    width: 100%;
  }
  .contact .right-group .from .common-buttton {
    text-align: left;
  }
  .contact .right-group .from .common-buttton a {
    min-width: 100%;
  }
}
.contact-buju {
  background: #fafafa;
}
.contact-buju .container {
  display: flex;
  justify-content: space-between;
  max-width: 192rem;
}
.contact-buju .map-warp {
  width: 67.5%;
  position: relative;
}
.contact-buju .map-warp .circle {
  width: 2rem;
  height: 2rem;
  position: relative;
}
.contact-buju .map-warp .add {
  position: absolute;
}
.contact-buju .map-warp .add-nr {
  top: 0;
  left: 0;
  display: none;
  position: absolute;
  color: #333;
  padding: 2rem;
  padding-top: 1.5rem;
  width: 33rem;
  background: var(--main-color);
}
.contact-buju .map-warp .add-nr::after {
  content: "";
  left: 50%;
  bottom: -1rem;
  position: absolute;
  transform: translateX(-50%);
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
  border-top: 1rem solid var(--main-color);
}
.contact-buju .map-warp .add-nr .en {
  font-size: 1.6rem;
}
.contact-buju .map-warp .add-nr .cn {
  margin-top: 1rem;
  font-family: var(--font-family-H-S-SC-B);
}
.contact-buju .map-warp .add-1 {
  top: 40.5rem;
  left: 49.3rem;
}
.contact-buju .map-warp .add-1 .add-nr {
  top: -11rem;
  left: -15.5rem;
}
.contact-buju .map-warp .add-2 {
  top: 53.8rem;
  left: 42.4rem;
}
.contact-buju .map-warp .add-2 .add-nr {
  top: 2.5rem;
  left: -15.5rem;
}
.contact-buju .map-warp .add-2 .add-nr::after {
  content: "";
  left: 50%;
  bottom: auto;
  top: -1rem;
  position: absolute;
  transform: translateX(-50%);
  border-top: 0;
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
  border-bottom: 1rem solid var(--main-color);
}
.contact-buju .map-warp .add-3 {
  top: 54.8rem;
  left: 43.4rem;
}
.contact-buju .map-warp .add-3 .add-nr {
  top: 2.5rem;
  left: -15.5rem;
}
.contact-buju .map-warp .add-3 .add-nr::after {
  content: "";
  left: 50%;
  bottom: auto;
  top: -1rem;
  position: absolute;
  transform: translateX(-50%);
  border-top: 0;
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
  border-bottom: 1rem solid var(--main-color);
}
.contact-buju .map-warp .add-4 {
  top: 34.8rem;
  left: 94rem;
}
.contact-buju .map-warp .add-4 .add-nr {
  top: -11rem;
  left: -10rem;
}
.contact-buju .map-warp .add-4 .add-nr::after {
  left: 31%;
  transform: translateX(0);
}
.contact-buju .map-warp .add-5 {
  top: 36.2rem;
  left: 94.8rem;
}
.contact-buju .map-warp .add-5 .add-nr {
  top: 2.5rem;
  left: -10rem;
}
.contact-buju .map-warp .add-5 .add-nr::after {
  content: "";
  left: 31%;
  bottom: auto;
  top: -1rem;
  position: absolute;
  transform: translateX(0%);
  border-top: 0;
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
  border-bottom: 1rem solid var(--main-color);
}
.contact-buju .map-warp .add-6 {
  top: 36.8rem;
  left: 98.7rem;
}
.contact-buju .map-warp .add-6 .add-nr {
  top: -10.5rem;
  left: -10rem;
}
.contact-buju .map-warp .add-6 .add-nr::after {
  content: "";
  left: 31%;
  bottom: -1rem;
  position: absolute;
  transform: translateX(0%);
  border-bottom: 0;
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
  border-top: 1rem solid var(--main-color);
}
.contact-buju .map-warp .add-7 {
  top: 47rem;
  left: 45rem;
}
.contact-buju .map-warp .add-7 .add-nr {
  top: -14rem;
  left: -15.5rem;
}
.contact-buju .map-warp .active .add-nr {
  display: block;
}
.contact-buju .map-content {
  padding: 0 5.5rem;
  padding-top: 8rem;
  width: 32.5%;
}
.contact-buju .map-content .common-title {
  text-align: left;
}
.contact-buju .map-content .common-title::after {
  left: 0;
  transform: translate(0);
}
.contact-buju .map-content .list {
  padding-top: 3rem;
}
.contact-buju .map-content .list dl:last-child {
  border-bottom: 0;
}
.contact-buju .map-content .list dl {
  cursor: pointer;
  padding: 2.5rem 0;
  position: relative;
  border-bottom: solid 1px #d9d9d9;
}
.contact-buju .map-content .list dl::after {
  content: "";
  top: 3rem;
  right: 4.5rem;
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  transform: rotate(45deg);
  border-right: solid 0.2rem #3d3d3d;
  border-bottom: solid 0.2rem #3d3d3d;
}
.contact-buju .map-content .list dt {
  color: #212121;
  font-size: 2.2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.contact-buju .map-content .list dd {
  height: 0;
  display: none;
  overflow: hidden;
  line-height: 3rem;
}
.contact-buju .map-content .list .cur::after {
  transform: rotate(225deg);
  border-right: solid 0.2rem var(--main-color);
  border-bottom: solid 0.2rem var(--main-color);
}
.contact-buju .map-content .list .cur dt {
  color: var(--main-color);
}
.contact-buju .map-content .list .cur dd {
  margin-top: 2rem;
  height: auto !important;
  display: block !important;
}
@media (max-width: 1024px) {
  .contact-buju .container {
    display: block;
  }
  .contact-buju .map-warp {
    display: none;
  }
  .contact-buju .map-content {
    width: 100%;
    padding: 50px 0;
  }
}
.why-haihe {
  background: #f4f4f4;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.why-haihe .nr {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.why-haihe .bt {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4rem;
  font-family: var(--font-family-H-S-SC-B);
}
.why-haihe .bt-2 {
  color: #4c4c4c;
  text-align: center;
  padding-top: 2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.why-haihe .left {
  width: 50%;
  min-height: 100%;
  position: relative;
}
.why-haihe .left img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.why-haihe .right {
  width: 50%;
  padding-left: 4rem;
}
.why-haihe .list li {
  padding-bottom: 1.8rem;
}
.why-haihe .list li:last-child {
  padding-bottom: 0;
}
.why-haihe .list .box {
  display: block;
  line-height: 2.8rem;
  background-color: #ffffff;
  border: solid 0.1rem #dddddd;
  position: relative;
  color: #333333;
  padding: 2.8rem 4rem 2.8rem 9.4rem;
}
.why-haihe .list .icon {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 3rem;
  left: 3rem;
}
.why-haihe .list .icon img {
  max-height: 4rem;
}
.why-haihe .nr-2 {
  padding-top: 10rem;
}
.why-haihe .nr-2 .list-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.why-haihe .nr-2 .list-2 li {
  padding: 0 1.5rem;
  margin-top: 3rem;
  width: 25%;
}
.why-haihe .nr-2 .list-2 li .item {
  background-color: #ffffff;
  border-radius: 2rem;
}
.why-haihe .nr-2 .list-2 li .pic {
  border-radius: 2rem 2rem 0px 0px;
}
.why-haihe .nr-2 .list-2 li .pic img {
  border-radius: 2rem 2rem 0px 0px;
}
.why-haihe .nr-2 .list-2 li .text {
  padding: 0 2.5rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.why-haihe .nr-2 .list-2 li .text .t-1 {
  font-size: 2.2rem;
  color: #212121;
  font-family: var(--font-family-H-S-SC-B);
}
.why-haihe .nr-2 .list-2 li .text .t-2 {
  height: 19rem;
  overflow: auto;
}
.why-haihe .nr-2 .list-2 li .text .t-2 p {
  line-height: 2.8rem;
  font-size: 1.7rem;
  color: #4d4d4d;
  padding-top: 1rem;
}
.why-haihe .nr-2 .list-2 li .text .t-2 span {
  color: var(--main-color);
}
.why-haihe .nr-3 {
  padding-top: 7.5rem;
}
.why-haihe .nr-3 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -5rem;
}
.why-haihe .nr-3 li {
  position: relative;
  display: flex;
  margin-top: 5rem;
  padding: 0 5rem;
  width: 20%;
}
.why-haihe .nr-3 li::before {
  left: -2.1rem;
  top: 50%;
  content: "";
  width: 4.2rem;
  height: 2rem;
  position: absolute;
  transform: translateY(-50%);
  background-image: url(../images/process-13.png);
  background-position: top left;
  background-size: 4.2rem 2rem;
}
.why-haihe .nr-3 li .item {
  position: relative;
  width: 100%;
  padding: 0.5rem;
  background: #fff;
  border-radius: 2rem;
  text-align: center;
  box-shadow: 0 0.6rem 3rem rgba(52, 104, 167, 0.2);
}
.why-haihe .nr-3 li .hezi {
  height: 25rem;
  font-size: 2rem;
  line-height: 3.4rem;
  padding: 4rem 0rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom, #f3f4fa, #ffffff);
}
.why-haihe .nr-3 li .t-1 {
  margin-top: 1rem;
}
.why-haihe .nr-3 li:first-child::before {
  display: none;
}
.why-haihe .nr-3 li:first-child .item::after {
  top: 0.5rem;
  left: 0.5rem;
  z-index: 3;
  content: "";
  width: 6.6rem;
  height: 6.6rem;
  position: absolute;
  background: url(../images/process-12.png) no-repeat top left;
  background-size: 6.6rem 6.6rem;
}
@media (max-width: 1024px) {
  .why-haihe {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .why-haihe .nr {
    margin-top: 30px;
  }
  .why-haihe .left {
    min-height: auto;
    width: 100%;
  }
  .why-haihe .left img {
    left: auto;
    top: auto;
    height: auto;
    position: relative;
    object-fit: inherit;
  }
  .why-haihe .right {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .why-haihe .list li {
    padding-bottom: 18px;
  }
  .why-haihe .list .box {
    border-radius: 3px;
    border: solid 1px #dddddd;
    padding: 20px 20px 20px 80px;
    font-size: 16px;
  }
  .why-haihe .list .icon {
    width: 48px;
    height: 48px;
    top: 18px;
    left: 15px;
  }
  .why-haihe .bt {
    font-size: 2.4rem;
  }
  .why-haihe .nr-2 {
    padding-top: 40px;
  }
  .why-haihe .nr-2 .list-2 li {
    width: 50%;
  }
  .why-haihe .nr-3 {
    padding-top: 40px;
  }
  .why-haihe .nr-3 ul {
    margin: 0 -3rem;
  }
  .why-haihe .nr-3 li {
    padding: 0 3rem;
    margin-top: 3rem;
    width: 33.333%;
  }
  .why-haihe .nr-3 li:nth-child(4)::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .why-haihe .nr-2 .list-2 li {
    width: 100%;
  }
  .why-haihe .nr-2 .list-2 li .text .t-2 {
    height: auto;
  }
  .why-haihe .nr-3 li {
    margin-top: 50px;
    width: 50%;
  }
  .why-haihe .nr-3 li .hezi {
    line-height: 20px;
    font-size: 12px;
  }
  .why-haihe .nr-3 li:nth-child(4)::before {
    display: block;
  }
  .why-haihe .nr-3 li:nth-child(4) {
    order: 0;
  }
  .why-haihe .nr-3 li:nth-child(4)::before {
    left: 90%;
    transform: translateY(-50%) rotate(180deg);
  }
  .why-haihe .nr-3 li:nth-child(3) {
    order: 1;
  }
  .why-haihe .nr-3 li:nth-child(3)::before {
    top: -10px;
    left: 40%;
    transform: rotate(90deg) translateX(-50%);
  }
  .why-haihe .nr-3 li:nth-child(5) {
    order: 2;
  }
  .why-haihe .nr-3 li:nth-child(5)::before {
    top: -10px;
    left: 40%;
    transform: rotate(90deg) translateX(-50%);
  }
}
.bottom-core {
  padding: 0 7rem;
  margin-top: 9rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding-top: 8rem;
  padding-bottom: 8rem;
  letter-spacing: 0rem;
}
.bottom-core .left {
  width: 40%;
}
.bottom-core .right {
  width: 60%;
  font-size: 2rem;
  line-height: 3.8rem;
  padding-left: 12rem;
}
.bottom-core .title {
  font-family: var(--font-family-H-S-SC-B);
  padding-left: 6rem;
  font-size: 4.8rem;
  line-height: 6.8rem;
  margin-top: -1rem;
  position: relative;
}
.bottom-core .title::before {
  content: "— ";
  position: absolute;
  top: 0;
  left: 0;
}
.bottom-core .title .span-1 {
  display: block;
}
.bottom-core .p-1 {
  font-family: var(--font-family-H-S-SC-B);
  font-size: 2.2rem;
  margin-top: 3.5rem;
}
.bottom-core .btnDiv {
  padding-top: 2.5rem;
}
@media (max-width: 1024px) {
  .bottom-core {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 20px;
    margin-top: 40px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .bottom-core .left {
    width: 100%;
  }
  .bottom-core .right {
    width: 100%;
    padding-left: 0;
  }
  .bottom-core .title {
    padding-left: 40px;
    font-size: 24px;
    line-height: 1.5;
    margin-top: 0;
  }
  .bottom-core .p-1 {
    font-size: 20px;
    margin-top: 20px;
  }
  .bottom-core .btnDiv {
    padding-top: 20px;
  }
}
.about01 {
  position: relative;
}
.about01 .group-left .text {
  padding-top: 2rem;
}
.about01 .numlist ul {
  padding-top: 3rem;
}
.about02 {
  height: 80.4rem;
  padding: 9rem 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.about02 .info {
  text-align: center;
  margin-top: 2rem;
}
.about02 .list {
  padding: 0 14rem;
  margin-top: 5rem;
}
.about02 .list .swiper-slide {
  width: auto;
}

.about02 .list .pic {
    position: relative;
	overflow:hidden;
}

.about02 .list .pic:after {
    content: "";
    display: block;
    padding-bottom: 97.375%;
}

@media (max-width: 1024px) {
  .about02 {
    height: auto;
    padding: 40px 0;
    background-image: none !important;
    background: linear-gradient(to bottom, #ffffff, #fafafa) !important;
  }
  .about02 .list {
    padding: 0;
  }
  .about02 .list .swiper-wrapper {
    align-items: center;
  }
  .about02 .list .swiper-slide {
    width: inherit;
    text-align: center;
  }
}
.about03 {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 0 0;
}
.about03 .container {
  max-width: 192rem;
}
.about03 .list-warp {
  position: relative;
  overflow: hidden;
  height: 66rem;
  margin-top: 5rem;
}
.about03 .list-warp ul {
  display: flex;
  flex-wrap: wrap;
}
.about03 .list-warp li {
  width: 18%;
  transition: all 700ms ease;
}
.about03 .list-warp li .item {
  display: block;
  position: relative;
  height: 66rem;
}
.about03 .list-warp li .pic {
  margin-left: -12rem;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 66rem;
  backface-visibility: hidden;
  clip-path: polygon(12rem 0%, 100% 0%, 100% 100%, 0% 100%);
}
.about03 .list-warp li .pic:before {
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 3;
  position: absolute;
  transition: all 334ms ease-in-out;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.9));
}
.about03 .list-warp li:first-child .box-default {
  padding-left: 6rem;
}
.about03 .list-warp li:nth-child(2) {
  position: relative;
}
.about03 .list-warp .box-default {
  left: 0;
  z-index: 4;
  width: 100%;
  color: #fff;
  min-height: 16rem;
  bottom: 0rem;
  position: absolute;
  transform: translateX(-4rem);
}
.about03 .list-warp .box-default .icon img {
  max-height: 5rem;
}
.about03 .list-warp .box-default .tit {
  margin-top: 2rem;
  font-size: 3.6rem;
  font-family: var(--font-family-H-S-SC-B);
}
.about03 .list-warp .box-default .txt {
  display: none;
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 3.2rem;
}
.about03 .list-warp .active {
  width: 46%;
}
.about03 .list-warp .active .tit {
  font-size: 3rem;
}
.about03 .list-warp .active .txt {
  display: block;
}
.about03 .list-warp .active .box-default {
  padding-left: 0rem;
  padding-right: 15rem;
  bottom: 6rem;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .about03 {
    padding-top: 40px;
  }
  .about03 .list-warp {
    width: 100%;
    margin-left: 0;
    height: auto;
  }
  .about03 .list-warp li {
    margin-top: 20px;
    width: 100% !important;
  }
  .about03 .list-warp li .item {
    height: auto;
  }
  .about03 .list-warp li .tit {
    margin-top: 0 !important;
    font-size: 18px !important;
    height: auto !important;
  }
  .about03 .list-warp li .pic {
    margin-left: 0;
    transform: skewX(0) translateZ(0);
    height: 300px;
    clip-path: inherit !important;
  }
  .about03 .list-warp li .pic:before {
    height: 70%;
  }
  .about03 .list-warp li .icon {
    display: none !important;
  }
  .about03 .list-warp li .box-default {
    transform: translate(0) !important;
    padding: 20px !important;
    bottom: 0px !important;
    height: auto !important;
  }
  .about03 .list-warp li .box-default .txt {
    display: block;
    font-size: 12px;
    line-height: 20px;
    margin-top: 10px;
  }
  .about03 .list-warp li:first-child {
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .about03 .list-warp li .pic {
    height: 200px !important;
  }
}
.about04 {
  overflow: hidden;
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.about04 .history-bottom {
  position: relative;
}
.about04 .history-bottom .swiper-button-next,
.about04 .history-bottom .swiper-button-prev {
  width: 4.6rem;
  height: 4.6rem;
  opacity: 1;
  transition: all 500ms ease;
  background-size: 100%;
  border-radius: 50%;
  margin-top: -4rem;
  left: 0;
  z-index: 89;
  z-index: 55;
}
.about04 .history-bottom .swiper-button-next:after,
.about04 .history-bottom .swiper-button-prev:after {
  font-size: 0;
  color: #999999;
}
@media (min-width: 1025px) {
  .about04 .history-bottom .swiper-button-next:hover,
  .about04 .history-bottom .swiper-button-prev:hover {
    background-size: 100%;
  }
  .about04 .history-bottom .swiper-button-next:hover:after,
  .about04 .history-bottom .swiper-button-prev:hover:after {
    color: #fff;
  }
}
.about04 .history-bottom .swiper-button-prev {
  background: url(../images/prev.png) no-repeat center center #e9e9e9;
  background-size: 4.6rem 4.6rem;
}
.about04 .history-bottom .swiper-button-prev:hover {
  background-color: #ddd;
}
.about04 .history-bottom .swiper-button-next {
  background: url(../images/next.png) no-repeat center center #e9e9e9;
  background-size: 4.6rem 4.6rem;
}
.about04 .history-bottom .swiper-button-next:hover {
  background-color: #ddd;
}
.about04 .history-bottom .swiper-button-next {
  left: auto;
  right: 0;
}
.about04 .history-info {
  margin-top: 7rem;
  position: relative;
  overflow: hidden;
}
.about04 .swiper-history {
  width: 100%;
  margin: 0 auto;
  margin-top: 8.1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about04 .swiper-history:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
  position: absolute;
  top: 1.4rem;
  left: 0;
  z-index: -1;
}
.about04 .swiper-history .swiper-slide {
  text-align: center;
  cursor: pointer;
  background: url('../images/da1.png') no-repeat top center;
  background-size: 2.9rem;
  padding-top: 3.1rem;
  z-index: 5;
  position: relative;
}
.about04 .swiper-history .swiper-slide .bt {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #333;
  font-family: var(--font-family-R-B);
}
.about04 .swiper-history .swiper-slide-thumb-active {
  background: url('../images/da1h.png') no-repeat top center;
  background-size: 2.9rem;
}
.about04 .swiper-history .swiper-slide-thumb-active .bt {
  color: var(--main-color);
}
.about04 .swiper-xiangqing .box {
  position: relative;
  overflow: hidden;
}
.about04 .swiper-xiangqing .box .pic {
  border-radius: 3rem;
  position: relative;
  float: left;
  width: 42%;
}
.about04 .swiper-xiangqing .box .pic:after {
  content: "";
  display: block;
  padding-bottom: 59.375%;
}
.about04 .swiper-xiangqing .box .pic img {
  border-radius: 3rem;
}
.about04 .swiper-xiangqing .box .text {
  float: right;
  width: 48%;
}
.about04 .swiper-xiangqing .box .text .num {
  font-size: 18.4rem;
  line-height: 18.4rem;
  letter-spacing: 0.4rem;
  color: #f0f0f0;
  position: absolute;
  top: -2rem;
  left: 48%;
  width: 50%;
  z-index: 1;
  text-align: left;
  filter: blur(4px);
  font-family: var(--font-family-R-B);
}
.about04 .swiper-xiangqing .box .text .bt {
  margin-top: 2rem;
  color: var(--main-color);
  font-size: 4.2rem;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 5;
  font-family: var(--font-family-R-B);
}
.about04 .swiper-xiangqing .box .text .p {
  font-size: 2.2rem;
  color: #333;
  line-height: 3rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .about04 {
    padding: 40px 0;
  }
  .about04 .history-info {
    margin-top: 30px;
  }
  .about04 .swiper-xiangqing .box {
    align-items: center;
    display: flex;
    padding: 0;
  }
  .about04 .swiper-xiangqing .box .text {
    padding-left: 30px;
    padding-top: 0;
  }
  .about04 .swiper-xiangqing .box .text p {
    font-size: 14px;
    line-height: 26px;
  }
  .about04 .swiper-xiangqing .box .pic {
    border-radius: 10px;
  }
  .about04 .swiper-xiangqing .box .pic img {
    border-radius: 10px;
  }
  .about04 .swiper-xiangqing .box .text {
    text-align: center;
  }
  .about04 .swiper-xiangqing .box .text .bt {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .about04 .swiper-history {
    width: 70%;
  }
  .about04 .swiper-xiangqing .box {
    display: block;
  }
  .about04 .swiper-xiangqing .box .pic {
    width: 100%;
    float: none;
  }
  .about04 .swiper-xiangqing .box .text {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .about04 .swiper-xiangqing .box .text .num {
    display: none;
  }
}
.newsshow {
  padding-bottom: 10rem;
}
.newsshow .list {
  display: flex;
  justify-content: space-between;
}
.newsshow .leftbox {
  width: 65%;
  color: #4c4c4c;
  line-height: 3rem;
  padding: 7rem 0 0 0;
  background: #fff;
}
.newsshow .leftbox h1 {
  color: #212121;
  line-height: 6rem;
  font-size: 4.2rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.newsshow .leftbox .hezi {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  color: #7a7a7a;
  padding-top: 2rem;
  padding-bottom: 5rem;
  border-bottom: solid 1px #cdcccc;
}
.newsshow .leftbox .info {
  font-size: 1.6rem;
}
.newsshow .leftbox .info span {
  padding-left: 4rem;
}
.newsshow .leftbox .share {
  display: flex;
  align-items: center;
}
.newsshow .leftbox .share a {
  padding: 0 1rem;
  display: inline-block;
}
.newsshow .leftbox .share svg {
  height: 2.6rem;
  width: 2.6rem;
  fill: #999;
  vertical-align: middle;
}
.newsshow .leftbox .box {
  padding-top: 3rem;
}
.newsshow .leftbox .label {
  margin-top: 7rem;
  padding: 1.5rem 0;
  border-top: solid 1px #dfdfdf;
  border-bottom: solid 1px #dfdfdf;
  color: #9c9d9d;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
}
.newsshow .leftbox .label .bt {
  margin-right: 1rem;
}
.newsshow .leftbox .label a {
  display: inline-block;
  border: 1px #9c9d9d solid;
  border-radius: 0.3rem;
  color: #9c9d9d;
  line-height: 2.8rem;
  padding: 0 1rem;
  font-size: 1.6rem;
  margin-right: 1.6rem;
}
.newsshow .leftbox .label a:hover {
  color: #212121;
}
.newsshow .rightbox {
  width: 25%;
  background: #fff;
  padding: 7rem 0 0 0;
}
.newsshow .list-2 {
  left: 0;
  top: 4rem;
  position: sticky;
}
.newsshow .list-2 .title {
  font-family: var(--font-family-H-S-SC-B);
  color: #212121;
  font-size: 2.8rem;
  padding-bottom: 2rem;
  border-bottom: solid 1px #cdcccc;
}
.newsshow .list-2 ul {
  padding-top: 1rem;
}
.newsshow .list-2 li:first-child {
  border-top: 0;
  padding-top: 2rem;
}
.newsshow .list-2 li {
  padding: 2.5rem 0;
  border-top: solid 1px #e0e0e0;
}
.newsshow .list-2 li .box {
  display: flex;
  justify-content: space-between;
}
.newsshow .list-2 li .box:hover .pic img {
  transform: scale(1.05);
}
.newsshow .list-2 li .box:hover .tit {
  color: var(--main-color);
}
.newsshow .list-2 li .pic {
  width: 44%;
  position: relative;
  overflow: hidden;
}
.newsshow .list-2 li .pic:after {
  content: '';
  display: block;
  padding-bottom: 66.07929515%;
}
.newsshow .list-2 li .pic img {
  transition: 0.5s;
}
.newsshow .list-2 li .text {
  width: 56%;
  padding-left: 1.5rem;
}
.newsshow .list-2 li .time {
  display: flex;
  align-items: center;
  color: #7a7a7a;
  font-size: 1.4rem;
}
.newsshow .list-2 li .time img {
  margin-right: 0.5rem;
  max-height: 1.6rem;
}
.newsshow .list-2 li .tit {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  font-family: var(--font-family-H-S-SC-B);
  font-size: 1.6rem;
  line-height: 2.4rem;
  height: 7.2rem;
  color: #212121;
  margin-top: 1rem;
}
@media (max-width: 1024px) {
  .newsshow {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .newsshow .list {
    margin-top: 0;
    display: block;
  }
  .newsshow .leftbox,
  .newsshow .rightbox {
    width: 100%;
  }
  .newsshow .rightbox {
    padding: 30px 0 0 0;
  }
  .newsshow .leftbox {
    padding-top: 0;
  }
  .newsshow .leftbox h1 {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
  }
  .newsshow .leftbox .info {
    padding-top: 0;
  }
  .newsshow .leftbox .picbox {
    padding-top: 30px;
  }
  .newsshow .leftbox .hezi {
    display: block;
    font-size: 14px;
    padding-top: 20px;
  }
  .newsshow .leftbox .share {
    margin-top: 10px;
    line-height: 30px;
  }
  .newsshow .leftbox .share img {
    max-height: 30px;
  }
  .newsshow .list-2 .title {
    font-size: 16px;
  }
  .newsshow .list-2 ul {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .newsshow .list-2 li {
    border: 0;
    padding: 10px 0 !important;
    width: 49%;
  }
  .newsshow .list-2 li .text {
    padding-top: 0px;
  }
  .newsshow .list-2 li .nr {
    align-items: center;
  }
  .newsshow .list-2 li .time {
    font-size: 12px;
  }
  .newsshow .list-2 li .title {
    font-size: 15px;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .newsshow .list-2 li .txt {
    font-size: 14px;
    height: 24px;
    line-height: 24px;
  }
}
@media (max-width: 480px) {
  .newsshow .list-2 li {
    width: 100%;
  }
}
.prev-next-return {
  color: #1b1a1a;
  font-size: 1.4rem;
  line-height: 2.4rem;
  padding-top: 3rem;
}
.prev-next-return a {
  color: #616161;
}
.prev-next-return .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.prev-next-return .list li {
  width: 50%;
}
.prev-next-return .list a {
  display: block;
}
.prev-next-return .list .bt {
  display: block;
  color: #1b1a1a;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.prev-next-return .list .bt::after {
  content: "";
  display: block;
  width: 5.6rem;
  height: 1.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.prev-next-return .list div {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.prev-next-return .prev .bt {
  padding-left: 2.8rem;
}
.prev-next-return .prev .bt::after {
  background: url(../images/left-1.svg) no-repeat left bottom;
  background-size: cover;
}
.prev-next-return .prev div {
  padding-left: 2.8rem;
}
.prev-next-return .next {
  text-align: right;
}
.prev-next-return .next .bt {
  padding-right: 2.5rem;
}
.prev-next-return .next .bt::after {
  background: url(../images/right-1.svg) no-repeat right bottom;
  background-size: cover;
  right: 0;
  left: initial;
}
@media screen and (max-width: 1024px) {
  .prev-next-return {
    font-size: 14px;
    padding-top: 40px;
  }
  .prev-next-return .list .bt {
    margin-bottom: 0;
  }
  .prev-next-return .list .bt::after {
    width: 56px;
    height: 12px;
  }
  .prev-next-return .prev .bt {
    padding-left: 28px;
  }
  .prev-next-return .next .bt {
    padding-right: 28px;
  }
}
@media screen and (max-width: 768px) {
  .prev-next-return .list div {
    display: none;
  }
}
#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: 12rem;
  opacity: 0;
  padding-right: 0;
  position: absolute;
  transition: all 0.5s;
}
#searchPopup .searchBox.fadeIn {
  top: 12rem;
  opacity: 1;
  z-index: 999;
}
#searchPopup .searchBox .container {
  width: 100%;
  max-width: 178rem;
  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;
}
@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;
}
.navPhoneBtn {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  padding-top: 7px;
  border: solid 1px #666;
  display: inline-block;
  cursor: pointer;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  margin: 0 auto;
  display: block;
  width: 18px;
  height: 3px;
  margin-bottom: 3px;
  position: relative;
  background: #666;
  border-radius: 0px;
  z-index: 1;
  transform-origin: 20px;
  animation: fadeIn2 1.8s linear infinite;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width 0.5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .navPhoneBtn {
    display: block;
    right: 20px !important;
    margin-right: 0px;
    position: absolute;
  }
}
.common-navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}
.common-navM .navMCon {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  background-color: #fff;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 9999999;
  top: 0;
  bottom: 0;
  right: auto;
  right: -100%;
  transition: all 0.5s;
}
.common-navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
}
.common-navM.open .transparent {
  display: block;
}
.common-navM.open .closeBtn {
  display: block;
}
.common-navM.open .navMCon {
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM.open .navMCon {
    left: auto;
    right: 0;
  }
}
.common-navM .mSearch {
  margin-top: 40px;
}
.common-navM .closeBtn {
  opacity: 1 !important;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #666 !important;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 20px;
}
.common-navM .closeBtn:before,
.common-navM .closeBtn:after {
  content: "";
  display: block;
  background: #666;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.common-navM .closeBtn:before {
  width: 20px;
  height: 1px;
}
.common-navM .closeBtn:after {
  width: 1px;
  height: 20px;
}
.common-navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.common-navM .navMWrap > .list {
  padding-top: 10rem;
}
.common-navM .navMWrap > .list em {
  font-style: initial;
}
.common-navM .navMWrap > .list .title {
  padding: 5px 0 5px 10px;
  text-indent: 0;
  position: relative;
}
.common-navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}
.common-navM .navMWrap > .list .title .icon:before,
.common-navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
  transition: all 0.3s ease;
}
.common-navM .navMWrap > .list .title .icon:before {
  height: 10px;
  width: 10px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
}
.common-navM .navMWrap > .list .title em {
  font-style: initial;
}
.common-navM .navMWrap > .list .has .title .icon {
  display: block;
}
.common-navM .navMWrap > .list .active > .title .icon:before {
  transform: rotate(90deg);
}
.common-navM .navMWrap > .list > li > .title {
  font-size: 18px;
}
.common-navM .navMWrap > .list > li > .title a {
  color: #333;
}
.common-navM .navMWrap > .list > li > .child > .list > li {
  text-indent: 15px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .child .title {
  padding-left: 20px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title {
  padding-left: 20px;
  position: relative;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  top: 12px !important;
  left: 10px;
}
.common-navM .navMWrap > .list .tb {
  width: 20px;
  height: 20px;
  display: inline-flex;
  position: absolute;
  top: 7px;
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM .navMWrap > .list {
    padding-top: 20px;
  }
}
.common-navM .child {
  padding: 0 0 20px 0;
  display: none;
  position: relative;
}
.common-navM .child a {
  font-size: 15px;
  color: #666;
  display: block;
  line-height: 20px;
  padding: 5px 0;
  transition: all 0.5s;
  position: relative;
}
.common-navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.common-navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  display: none;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.common-navM .mSearch .btn {
  width: 26px;
  height: 26px;
  font-size: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.common-navM .mSearch .btn .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: top;
}
.common-navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 40px 5px 15px;
  border-radius: 2px;
  font-size: 14px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .common-navM .mSearch {
    display: flex;
  }
}
.common-navM .other {
  padding: 10px;
}
.common-navM .read {
  padding-top: 10px;
  padding-bottom: 10px;
}
.common-navM .read .btn-1 {
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(to right, #bf2d32, #a61f24);
  color: #fff;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.common-navM .read .btn-1 .icon-1 {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.common-navM .read .btn-1 .icon-2 {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #fff url(../images/arrow-right-1.png) no-repeat center center;
  background-size: 20px;
  margin-left: 20px;
}
.common-navM .list > li > .child > .list {
  padding-top: 20px;
  font-family: var(--font-famil-2);
}
.common-navM .list > li > .child > .list > li > .title {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
}
.common-navM .list > li > .child > .list > li > .title::before {
  top: 18px !important;
}
.common-navM .languageBtn {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  display: none;
}
.common-navM .languageBtn > div {
  width: auto;
}
.common-navM .languageBtn .col-2 {
  width: 50%;
}
.common-navM .languageBtn .col-3 {
  width: 33.33333333%;
}
.common-navM .languageBtn .col-4 {
  width: 25%;
}
.common-navM .languageBtn .col-5 {
  width: 20%;
}
.common-navM .languageBtn .col-6 {
  width: 16.66666667%;
}
.common-navM .languageBtn a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  text-align: center;
  border: 1px #eee solid;
  margin-right: -1px;
  margin-top: -1px;
  background: #fff;
}
@media (max-width: 1024px) {
  .common-navM .languageBtn {
    display: flex;
  }
}
#menu1 {
  position: absolute;
  top: 50%;
  right: 7rem;
  color: #fff;
  z-index: 444;
  font-family: var(--font-family-M-L);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#menu1 li {
  position: relative;
  margin-top: 2rem;
  text-align: right;
}
#menu1 li a {
  font-size: 0;
  height: 2.4rem;
  line-height: 2.4rem;
  color: #fff;
  display: block;
  position: relative;
  padding-right: 4rem;
  transition: all 500ms ease;
}
#menu1 li a::after {
  z-index: 2;
  right: 0;
  top: 0.3rem;
  position: absolute;
  content: "";
  opacity: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transform: scale(0);
  border: solid 1px #fff;
  transition: all 500ms ease;
}
#menu1 li a::before {
  z-index: 3;
  right: 0.6rem;
  top: 0.9rem;
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fff;
}
#menu1 li img {
  max-height: 2.2rem;
  animation: fadeInUp2 ease 2s infinite;
}
#menu1 .active a {
  font-size: 1.6rem;
  opacity: 1;
}
#menu1 .active a::after {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 1024px) {
  #menu1 {
    right: 10px;
  }
  #menu1 li a {
    font-size: 0 !important;
  }
}
.transparent {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 888;
}
.transparent.active {
  display: block;
}
#dingyue {
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  background: rgba(255, 255, 255, 0.85);
  background-size: 100%;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  width: 50rem;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6555;
  padding: 3rem 5rem;
  padding-bottom: 4rem;
}
#dingyue .close {
  top: 0;
  right: 0;
  cursor: pointer;
  right: 4rem;
  top: 4rem;
  text-align: center;
  line-height: 2.4rem;
  vertical-align: middle;
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: solid 1px #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#dingyue .close svg {
  vertical-align: middle;
  width: 2.4rem;
  height: 2.4rem;
  fill: #666;
}
#dingyue .bt {
  color: #000;
  font-size: 3.6rem;
  text-align: left;
  font-family: var(--font-family-H-S-SC-B);
  padding-bottom: 1.4rem;
  text-transform: uppercase;
}
#dingyue .p {
  font-size: 1.6rem;
  line-height: 3.6rem;
  color: #adadad;
  padding-bottom: 1.9rem;
  text-align: center;
}
#dingyue .input {
  position: relative;
}
#dingyue .input .li {
  position: relative;
}
#dingyue .input .li font {
  position: absolute;
  color: #f00;
  top: 1rem;
  left: 1.5rem;
}
#dingyue .input input {
  width: 100%;
  height: 4.4rem;
  border-radius: 0.5rem;
  padding: 0 1.2rem 0 2.2rem;
  background: none;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  border: solid 1px #fff;
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--font-family-H-S-SC-L);
}
#dingyue .input input:focus {
  border-color: var(--main-color);
}
#dingyue .input a {
  width: 14.1rem;
  line-height: 4.2rem;
  background: #f4a319;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  display: block;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1025px) {
  #dingyue .input a:hover {
    background: var(--main-color);
  }
}
