* {
  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: #023f64;
  --sub-color: #d5c700;
  --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-1: 'Oswald-Bold';
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: var(--main-color);
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  width: auto;
  height: auto;
}
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;
  scroll-behavior: smooth;
  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;
  }
}
@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;
}
::-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: -15rem;
  width: 1px;
  z-index: -1;
  position: absolute;
}
.circle {
  width: 11rem;
  height: 11rem;
  display: inline-block;
  text-align: center;
  z-index: 2;
  margin: auto;
  border-radius: 50%;
  background: transparent;
}
.circle:after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 0s infinite;
  background-color: rgba(227, 185, 41, 0.5);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: rgba(227, 185, 41, 0.5);
  animation: ripple 2s ease-out 1s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@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.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
.xuanzhuan2 {
  animation-name: xuanzhuan2;
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: "微软雅黑", arial;
  font-family: var(--font-family-H-S-SC-R);
  word-wrap: normal;
}
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.button-common a,
.button-common span {
  color: #fff;
  border-radius: 3rem;
  background: var(--sub-color);
  text-align: center;
  padding: 0 1rem;
  position: relative;
  transition: all 500ms ease;
  font-family: "Ubuntu-Bold";
  font-size: 1.8rem;
  text-transform: uppercase;
  min-width: 16rem;
  height: 5rem;
  line-height: 5rem;
  display: inline-block;
  transition: all 500ms ease-in-out;
}
.button-common a:before,
.button-common span:before {
  left: 0;
  top: 0;
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  border-radius: 3rem;
  transition: all 500ms ease-in-out;
  background: var(--main-color);
}
.button-common img {
  margin-bottom: 0.4rem;
  margin-left: 1rem;
  max-height: 1.6rem;
  vertical-align: middle;
  animation: 1.5s fadeInLeft linear infinite;
}
.button-common i {
  z-index: 4;
  position: relative;
  font-style: normal;
}
.button-common:hover {
  border-color: var(--main-color);
}
.button-common:hover a,
.button-common:hover span {
  background: #ffffff;
}
.button-common:hover a:before,
.button-common:hover span:before {
  width: 100%;
}
.title-common {
  text-align: center;
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 700;
  color: var(--main-color);
}
.text-common {
  color: #252525;
  text-align: center;
  padding-top: 1rem;
  font-size: 4rem;
}
@media (max-width: 1024px) {
  .text-common {
    font-size: 18px;
    line-height: 20px;
    padding-top: 10px;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 120rem;
}
@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 {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
  background-color: var(--main-color);
  transition: all 500ms linear;
}
.header .listbox {
  max-width: 180rem;
  height: 8rem;
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  color: #fff;
}
.header .logo img {
  max-height: 6rem;
  margin-right: 1rem;
}
.header .logo .img2 {
  display: none;
}
.header .logo .item {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 2rem;
}
.header .logo .t-1 {
  display: block;
  font-size: 2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.header .logo .t-2 {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.6rem;
}
.header .rightInfo {
  display: flex;
  align-items: center;
}
.header .searchBtn {
  z-index: 2;
  margin-right: 2rem;
  width: 4rem;
  height: 4rem;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}
.header .searchBtn:before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.5s;
}
.header .searchBtn svg {
  fill: #080404;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.5s;
}
.header .searchBtn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background: var(--sub-color);
}
.header .searchBtn:hover svg {
  fill: #fff !important;
}
.header .button a {
  color: #fff;
  padding: 0 2rem;
  min-width: 10rem;
  text-align: center;
  line-height: 4rem;
  display: inline-block;
  border-radius: 3rem;
  background: var(--sub-color);
  transition: all 500ms ease;
}
.header .button a:hover {
  background: var(--main-color);
}
@media (max-width: 1024px) {
  .header {
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 60px !important;
    z-index: 999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff !important;
    padding-top: 0 !important;
    position: fixed !important;
  }
  .header .rightInfo {
    display: none;
  }
  .header .listbox {
    flex-direction: row;
    height: 60px !important;
  }
  .header .logo img {
    max-height: 50px;
  }
  .header .logo .img1 {
    display: none;
  }
  .header .logo .img2 {
    display: block;
  }
  .header .logo .t-1 {
    color: #333;
  }
  .header .logo .t-2 {
    color: #666;
  }
}
.fixed {
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  position: fixed;
}
.common-nav .listNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.common-nav .listNav > li:first-child {
  margin-left: 0;
}
.common-nav .listNav > li {
  margin: 0 3.5rem;
  text-align: center;
  font-family: var(--font-family-H-S-SC-B);
}
.common-nav .listNav > li .icon {
  margin-left: 0.5rem;
  vertical-align: top;
  margin-top: 0.8rem;
  width: 0.9rem;
  height: 0.9rem;
  transform: rotate(45deg);
  display: inline-block;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.common-nav .listNav > li > a {
  z-index: 1;
  color: #fff;
  height: 8rem;
  line-height: 3rem;
  padding: 2.5rem 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.common-nav .listNav > li > a > span {
  display: inline-block;
  overflow: hidden;
  height: 3rem;
  line-height: 3rem;
  position: relative;
}
.common-nav .listNav > li > a .txt-1 {
  display: block;
  transition: 0.5s;
}
.common-nav .listNav > li > a .txt-2 {
  display: block;
  transform: translateY(100%);
  transition: 0.5s;
}
.common-nav .listNav > li > a:after {
  left: 50%;
  content: "";
  width: 0;
  height: 0.2rem;
  bottom: 1rem;
  position: absolute;
  background: var(--main-color);
  transition: all 500ms ease;
}
.common-nav .listNav > li:hover > a,.common-nav .listNav > li.active > a {
  color: var(--sub-color);
}
.common-nav .listNav > li.active > a:after {
  left: 0;
  width: 100%;
  opacity: 1;
}
.common-nav .listNav > li.active > a > span::after {
  width: 100%;
}
.common-nav .listNav > li.active > a .txt-1 {
  transform: translateY(-100%);
}
.common-nav .listNav > li.active > a .txt-2 {
  transform: translateY(-100%);
}
.common-nav .listNav > li.active > a:hover:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.common-nav .listNav > li.active > a {
  color: var(--sub-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:hover > .child {
  display: block;
}
.common-nav .listNav > li > .child {
  width: 100%;
  left: 0;
  display: none;
  text-align: left;
  position: absolute;
  z-index: 999;
  top: 8rem;
  padding: 3rem 0 5rem 0;
  transform-origin: 0 0;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  font-family: var(--font-family-H-S-SC-R);
  background: rgba(2, 63, 100, 0.94);
  transition: transform 0.2s;
  color: #333;
}
.common-nav .listNav > li > .child .container {
  max-width: 180rem;
}
.common-nav .listNav > li > .child .list {
  position: relative;
}
.common-nav .listNav > li > .child .list li.title {
  color: #fff;
  font-size: 2.4rem;
  padding-bottom: 2.5rem;
  padding-left: 0rem;
  font-family: var(--font-family-H-S-SC-B);
}
.common-nav .listNav > li > .child .list li.title a {
  color: #fff;
}
.common-nav .listNav > li > .child .list li.title a:after {
  display: none;
}
.common-nav .listNav > li > .child .list li.title svg {
  margin-left: 1.5rem;
  width: 2rem;
  height: 2rem;
  fill: #fff;
}
.common-nav .listNav > li > .child .list li.title a:hover svg {
  fill: var(--sub-color);
}
.common-nav .listNav > li > .child .list li {
  width: 19%;
  padding: 1rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.common-nav .listNav > li > .child .list li > a {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  position: relative;
  padding: 0 3rem;
}
.common-nav .listNav > li > .child .list li > a::after {
  content: "";
  top: 1rem;
  right: 2rem;
  transform: rotate(45deg);
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  border-top: solid 1px rgba(255, 255, 255, 0.52);
  border-right: solid 1px rgba(255, 255, 255, 0.52);
}
.common-nav .listNav > li > .child .list li > a:hover {
  font-family: var(--font-family-H-S-SC-B);
  color: var(--sub-color);
}
.common-nav .listNav > li > .child .list li > a:hover::after {
  border-top: solid 1px var(--sub-color);
  border-right: solid 1px var(--sub-color);
}
.common-nav .listNav > li > .child .list li .drop {
  top: 0;
  left: 19%;
  width: 22%;
  display: none;
  height: 100%;
  padding-left: 7rem;
  position: absolute;
}
.common-nav .listNav > li > .child .list li .drop .bt {
  font-size: 2.4rem;
  padding-left: 0rem;
}
.common-nav .listNav > li > .child .list li .drop .bt a {
  display: block;
  padding-left: 3rem;
  padding-bottom: 2.5rem;
}
.common-nav .listNav > li > .child .list li .drop .bt a::after {
  display: none;
}
.common-nav .listNav > li > .child .list li .drop .bt a:hover svg {
  fill: var(--sub-color);
}
.common-nav .listNav > li > .child .list li .drop .bt svg {
  margin-left: 1.5rem;
  width: 2rem;
  height: 2rem;
  fill: #fff;
}
.common-nav .listNav > li > .child .list li .drop a {
  display: block;
  color: #fff;
  position: relative;
  padding: 1rem 3rem;
  padding-right: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.common-nav .listNav > li > .child .list li .drop a::after {
  display: none;
  content: "";
  top: 2rem;
  right: 2rem;
  transform: rotate(45deg);
  width: 1rem;
  height: 1rem;
  position: absolute;
  border-top: solid 1px rgba(255, 255, 255, 0.52);
  border-right: solid 1px rgba(255, 255, 255, 0.52);
}
.common-nav .listNav > li > .child .list li .drop a:hover {
  color: var(--sub-color);
}
.common-nav .listNav > li > .child .list li .drop a:hover::after {
  border-top: solid 1px var(--sub-color);
  border-right: solid 1px var(--sub-color);
}
.common-nav .listNav > li > .child .list li:hover > a {
  color: var(--sub-color);
  font-family: var(--font-family-H-S-SC-B);
}
.common-nav .listNav > li > .child .list li:hover > a::after {
  border-top: solid 1px var(--sub-color);
  border-right: solid 1px var(--sub-color);
}
.common-nav .listNav > li > .child .list li:hover .drop {
  display: block;
}
.common-nav .listNav > li > .child.show {
  display: block;
}
@media screen and (max-width: 1024px) {
  .common-nav {
    display: none;
  }
}
.banner {
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .pc {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
}
.banner .pc img {
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  max-height: initial;
  max-width: initial;
  width: 100%;
  object-fit: cover;
}
.banner .ph {
  position: relative;
  display: none;
  text-align: center;
}
.banner .ph img {
  width: 100%;
  width: auto;
  height: auto;
}
.banner .ph:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .container {
  max-width: 160rem;
}
.banner .text {
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 3;
  text-align: left;
  position: absolute;
}
.banner .text-1 {
  top: 42rem;
}
.banner .text-3 {
  top: 39rem;
}
.banner .text-3 .t-2 {
  max-width: 100%;
  letter-spacing: -2px;
}
.banner .t-1 {
  font-size: 5.4rem;
  line-height: 7rem;
  font-family: var(--font-family-H-S-SC-B);
}
.banner .t-1 span {
  display: block;
}
.banner .t-2 {
  max-width: 57rem;
  font-size: 2.2rem;
  margin-top: 2rem;
}
.banner .t-2 em {
  margin: 0 0.4rem;
  height: 1px;
  width: 2rem;
  vertical-align: middle;
  background: #fff;
  font-style: normal;
  display: inline-block;
}
.banner .button {
  margin-top: 5rem;
}
.banner .button a {
  color: var(--sub-color);
  text-align: center;
  line-height: 4.8rem;
  display: flex;
  align-items: center;
  width: 15rem;
  height: 5.2rem;
  justify-content: center;
  transition: all 500ms ease;
  border: solid 0.2rem var(--sub-color);
}
.banner .button a:hover {
  color: #fff;
  line-height: 5rem;
  border: solid 1px #d5c700;
  background: rgba(213, 199, 0, 0.7);
}
.banner .button a:hover svg {
  fill: #fff;
}
.banner .button svg {
  margin-left: 1rem;
  width: 2rem;
  height: 2rem;
  fill: var(--sub-color);
}
.banner .button-1 a {
  color: #fff;
  padding: 0 2rem;
  display: flex;
  min-width: 16rem;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  height: 5.4rem;
  line-height: 5.4rem;
  font-family: var(--font-family-H-S-SC-B);
  background-color: var(--main-color);
}
.banner .button-1 a:hover {
  background-color: #333333;
}
.banner .button-1 svg {
  fill: #fff;
  margin-right: 1.5rem;
  width: 2.2rem;
  height: 2.2rem;
}
.banner .searchBtn {
  cursor: pointer;
  width: 5.4rem;
  height: 5.4rem;
  line-height: 5rem;
  text-align: center;
  margin-right: 0.5rem;
  background-color: var(--main-color);
}
.banner .searchBtn svg {
  fill: #fff;
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
}
.banner .searchBtn:hover {
  background-color: #333333;
}
.banner .swiper-box {
  width: 100%;
  left: 0;
  z-index: 10;
  bottom: 3rem;
  position: absolute;
}
.banner .swiper-box .container {
  padding-right: 24rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.banner .swiper-hezi {
  display: flex;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  top: auto;
  left: auto;
  right: auto;
  margin-top: auto;
  margin-left: 0.5rem;
  width: 5.4rem;
  height: 5.4rem;
  line-height: 5.4rem;
  position: relative;
  text-align: center;
  transition: all 500ms ease;
  background-color: var(--sub-color);
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  color: #fff;
  font-size: 1.8rem;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background-color: #333333;
}
.banner .swiper-slide-active .t-1 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-2 {
  animation: 1.6s fadeInDown2 ease;
}
.banner .swiper-slide-active .t-3 {
  animation: 1.7s fadeInDown2 ease;
}
.banner .swiper-box-ph {
  display: none;
}
@media (max-width: 1024px) {
  .banner {
    padding-top: 0;
    margin-top: 60px;
    height: auto;
  }
  .banner .text {
    top: 50% !important;
    transform: translateY(-40%);
  }
  .banner .swiper-box .container {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .banner .pc {
    display: none;
  }
  .banner .ph {
    display: block;
    position: relative;
  }
  .banner .ph::before {
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 2;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5));
  }
  .banner .text {
    padding: 0 20px;
    top: 40% !important;
  }
  .banner .t-1 {
    font-size: 24px;
    line-height: 30px;
  }
  .banner .t-2 {
    font-size: 15px;
    margin-top: 0px;
  }
  .banner .t-2 span {
    display: block;
  }
  .banner .button {
    display: none;
  }
  .banner .swiper-hezi {
    padding-left: 20px;
  }
  .banner .swiper-hezi .searchBtn,
  .banner .swiper-hezi .button-1 {
    vertical-align: top;
    display: inline-block;
  }
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    bottom: 15rem;
    position: absolute;
    background: transparent !important;
  }
  .banner .swiper-button-prev::after,
  .banner .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--sub-color);
  }
  .banner .swiper-button-prev {
    left: 0px;
    margin-left: 0;
    margin-right: 0;
  }
  .banner .swiper-button-next {
    right: 0px;
    margin-left: 0;
    margin-right: 0;
  }
  .banner .swiper-box-ph {
    margin: 0 auto;
    padding-left: 40px;
    max-width: 640px;
    text-align: left;
    z-index: 9999 !important;
    top: 0px;
    right: 0;
    opacity: 0;
    position: absolute;
    display: block;
  }
  .banner .swiper-box-ph .searchBtn,
  .banner .swiper-box-ph .button-1 {
    vertical-align: top;
    display: inline-block;
  }
  .banner .fixed-2 {
    opacity: 1;
    z-index: 9999 !important;
    margin-top: 0;
    display: block;
    top: 60px !important;
    right: 20px !important;
  }
  .banner .fixed-2 .button-1 a {
    font-size: 0;
    min-width: auto;
  }
  .banner .fixed-2 .button-1 svg {
    margin-right: 0;
  }
}
.banner .fixed-2 {
  z-index: 999;
  right: 0;
  top: 80px;
  right: 50px;
  position: fixed;
}
.banner .fixed-2 .searchBtn,
.banner .fixed-2 .button-1 a {
  background: var(--sub-color);
}
.banner .fixed-2 .searchBtn,
.banner .fixed-2 .button-1 {
  display: inline-block;
}
.index-news {
  padding: 10rem 0;
}
.index-news .container {
  padding: 0 1.5rem;
  max-width: 192rem;
}
.index-news .swiper-button-prev,
.index-news .swiper-button-next {
  top: auto;
  position: relative;
  margin-top: auto;
  width: 5.4rem;
  height: 5.4rem;
  text-align: center;
  line-height: 5.4rem;
  transition: all 336ms ease;
  background-color: #bfbfbf;
}
.index-news .swiper-button-prev::after,
.index-news .swiper-button-next::after {
  color: #fff;
  font-size: 1.8rem;
}
.index-news .swiper-button-prev:hover,
.index-news .swiper-button-next:hover {
  background: var(--sub-color);
}
.index-news .swiper-box {
  display: flex;
  margin-top: 3rem;
  justify-content: flex-end;
  padding-right: 34.4rem;
}
.index-news .swiper-button-prev {
  left: auto;
}
.index-news .swiper-button-next {
  right: auto;
  margin-left: 0.3rem;
}
.index-news .list {
  position: relative;
}
.index-news .item {
  height: 60rem;
  border-bottom: solid 0.5rem #eceded;
  position: relative;
}
.index-news .item::after {
  content: "";
  width: 0;
  left: 0;
  bottom: -0.5rem;
  z-index: 2;
  height: 0.5rem;
  position: absolute;
  background: var(--sub-color);
  transition: all 500ms linear;
}
.index-news .item .pic {
  overflow: hidden;
  position: relative;
}
.index-news .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 55.70175439%;
}
.index-news .item .pic img {
  transition: all 700ms ease;
}
.index-news .item .text {
  padding: 4rem 2.5rem;
}
.index-news .item .t-1 {
  color: #212121;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.index-news .item .t-2 {
  font-weight: normal;
  margin-top: 1.5rem;
  color: #212121;
  font-size: 2.8rem;
  max-height: 7.2rem;
  line-height: 3.6rem;
  transition: all 336ms ease;
  font-family: var(--font-family-H-S-SC-M);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-news .item .t-3 {
  font-weight: normal;
  color: #4d4d4d;
  margin-top: 2rem;
  height: 6rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (min-width: 1025px) {
  .index-news .item:hover::after {
    width: 100%;
  }
  .index-news .item:hover .pic img {
    transform: scale(1.05);
  }
  .index-news .item:hover .t-2 {
    color: var(--sub-color);
  }
}
@media (max-width: 1024px) {
  .index-news {
    padding: 40px 0;
  }
  .index-news .item {
    height: 400px;
  }
  .index-news .swiper-box {
    padding-right: 0;
    justify-content: center;
  }
  .index-news .swiper-button-prev,
  .index-news .swiper-button-next {
    margin: 0 10px;
  }
}
.common-title {
  color: #212121;
  font-size: 4.4rem;
  line-height: 5rem;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0.2rem;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .common-title {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0;
  }
}
@media (max-width: 640px) {
  .common-title {
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0;
  }
}
.common-title-2 {
  color: #fff;
  padding-top: 1rem;
  font-size: 4.2rem;
  line-height: 5rem;
  font-weight: normal;
  font-stretch: normal;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .common-title-2 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0;
  }
}
@media (max-width: 640px) {
  .common-title-2 {
    font-size: 26px;
    line-height: 30px;
    text-shadow: 0 0 5px #000000;
  }
}
.common-text {
  color: #333;
  font-size: 2.2rem;
  line-height: 3.6rem;
  padding-top: 1.5rem;
}
@media (max-width: 640px) {
  .common-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 10px;
  }
}
.index-solutions {
  padding: 10rem 0;
  background-color: #eceded;
}
.index-solutions .text-1,
.index-solutions .text-2 {
  color: #333;
  font-size: 2.2rem;
  line-height: 3.6rem;
}
.index-solutions .text-1 {
  font-family: var(--font-family-H-S-SC-B);
}
.index-solutions .text-2 {
  padding-top: 2rem;
}
.index-solutions .list {
  position: relative;
  margin-top: 4rem;
}
.index-solutions .item {
  background-color: #13181d;
  position: relative;
}
.index-solutions .item .pic {
  opacity: 0.4;
  overflow: hidden;
  position: relative;
  transition: all 700ms ease;
}
.index-solutions .item .pic img {
  transition: all 700ms ease;
}
.index-solutions .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.index-solutions .item .text {
  top: 50%;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 2rem 0.5rem;
  position: absolute;
  transform: translateY(-50%);
}
.index-solutions .item .t-1 {
  color: #fff;
  text-align: center;
  line-height: 3rem;
  font-size: 3rem;
  height: 6rem;
  font-weight: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-solutions .swiper-button-prev,
.index-solutions .swiper-button-next {
  width: 5.4rem;
  height: 5.4rem;
  text-align: center;
  line-height: 5.4rem;
  transition: all 336ms ease;
  background-color: #bfbfbf;
}
.index-solutions .swiper-button-prev::after,
.index-solutions .swiper-button-next::after {
  color: #fff;
  font-size: 1.8rem;
}
.index-solutions .swiper-button-prev:hover,
.index-solutions .swiper-button-next:hover {
  background: var(--sub-color);
}
.index-solutions .swiper-button-prev {
  left: -9rem;
}
.index-solutions .swiper-button-next {
  right: -9rem;
}
@media (min-width: 1025px) {
  .index-solutions .item:hover .pic {
    opacity: 0.7;
  }
  .index-solutions .item:hover .pic img {
    transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  .index-solutions {
    padding: 40px 0;
  }
  .index-solutions .item .text {
    padding: 0 50px;
  }
  .index-solutions .item .text .t-1 {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .index-solutions .swiper-button-prev {
    left: 0;
  }
  .index-solutions .swiper-button-next {
    right: 0;
  }
}
.index-product {
  padding: 10rem 0;
}
.index-product .pic {
  margin-top: 4rem;
}
.index-product .text {
  color: #212121;
  line-height: 3rem;
  padding-top: 4.5rem;
}
.index-product .button {
  padding-top: 2rem;
}
.index-product .button a {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: var(--sub-color);
}
.index-product .button svg {
  width: 2rem;
  height: 2rem;
  margin-left: 0.5rem;
  fill: var(--sub-color);
}
.index-product .button a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .index-product {
    padding: 40px 0;
  }
  .index-product .pic {
    margin-top: 20px;
  }
  .index-product .text {
    line-height: 24px;
    padding-top: 20px;
  }
  .index-product .button a {
    font-size: 16px;
  }
}


/*.index-product .swiper-button-prev,
.index-product .swiper-button-next {
  top: auto;
  position: relative;
  margin-top: auto;
  width: 5.4rem;
  height: 5.4rem;
  text-align: center;
  line-height: 5.4rem;
  transition: all 336ms ease;
  background-color: #bfbfbf;
}
.index-product .swiper-button-prev::after,
.index-product .swiper-button-next::after {
  color: #fff;
  font-size: 1.8rem;
}
.index-product .swiper-button-prev:hover,
.index-product .swiper-button-next:hover {
  background: var(--sub-color);
}
.index-product .swiper-box {
  display: flex;
  margin-top: 3rem;
  justify-content: flex-end;
  padding-right: 34.4rem;
}
.index-product .swiper-button-prev {
  left: auto;
}
.index-product .swiper-button-next {
  right: auto;
  margin-left: 0.3rem;
}*/
.index-product .list {
  position: relative;
}
.index-product .item {
  height: 45rem;
  border-bottom: solid 0.5rem #eceded;
  position: relative;
}
.index-product .item::after {
  content: "";
  width: 0;
  left: 0;
  bottom: -0.5rem;
  z-index: 2;
  height: 0.5rem;
  position: absolute;
  background: var(--sub-color);
  transition: all 500ms linear;
}
.index-product .item .pic {
  overflow: hidden;
  position: relative;
}
.index-product .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 70.70175439%;
}
.index-product .item .pic img {
	transition: all 700ms ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-product .item .text {
  padding: 4rem 2.5rem;
}

.index-product .item .t-2 {
  font-weight: normal;
  margin-top: 1.5rem;
  color: #212121;
  font-size: 2.4rem;
  max-height: 7.2rem;
  line-height: 3.6rem;
  transition: all 336ms ease;
  font-family: var(--font-family-H-S-SC-M);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.index-product .item .t-3 {
  font-weight: normal;
  color: #4d4d4d;
  margin-top: 2rem;
  height: 6rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (min-width: 1025px) {
  .index-product .item:hover::after {
    width: 100%;
  }
  .index-product .item:hover .pic img {
    transform: scale(1.05);
  }
  .index-product .item:hover .t-2 {
    color: var(--sub-color);
  }
}
@media (max-width: 1024px) {
  .index-product .item {
    height: 400px;
  }
  .index-product .swiper-box {
    padding-right: 0;
    justify-content: center;
  }
  .index-product .swiper-button-prev,
  .index-product .swiper-button-next {
    margin: 0 10px;
  }
}



.index-hzhb {
  padding: 7rem 0;
  background-color: #eceded;
}
.index-hzhb .list {
  margin-top: 2rem;
}
.index-hzhb .pic {
  overflow: hidden;
  background: #fff;
  position: relative;
}
.index-hzhb .pic::after {
  content: "";
  display: block;
  padding-bottom: 43.47826087%;
}
.index-hzhb .pic img {
  transition: all 700ms ease;
}
.index-hzhb .pic:hover img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .index-hzhb {
    padding: 40px 0;
  }
}
.index-message {
  color: #fff;
  position: relative;
  padding: 10rem 0;
  background-color: #023f64;
}
.index-message .container {
  display: flex;
}
.index-message .common-title,
.index-message .common-text {
  color: #fff;
}
.index-message .common-text {
  padding-top: 1rem;
}
.index-message .pic {
  width: 18%;
}
.index-message .pic img {
  max-height: 14.2rem;
}
.index-message .form {
  width: 82%;
  padding-right: 3rem;
}
.index-message .form li {
  padding-top: 1.6rem;
  /* 当checkbox选中时 */
  /* 添加勾选标记（可选） */
  /* 隐藏原生复选框 */
  /* 自定义复选框样式 */
  /* 复选框选中状态 */
  /* 选中后的勾号 */
}
.index-message .form li .item {
  line-height: 2rem;
  padding: 0.5rem 1.6rem;
  border: solid 0.2rem rgba(255, 255, 255, 0.4);
}
.index-message .form li .item label {
  font-size: 1.3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.index-message .form li .item label i {
  color: #f30;
  font-style: normal;
}
.index-message .form li .item .text-select {
  position: relative;
}
.index-message .form li .item .text-select select {
  border: 0;
  width: 100%;
  color: #fff;
  appearance: none;
  font-size: 1.6rem;
  font-family: var(--font-family-H-S-SC-R);
  background-color: var(--main-color);
}
.index-message .form li .item .text-select::after {
  content: "";
  top: 0rem;
  right: 1rem;
  position: absolute;
  border-left: solid 0.4rem transparent;
  border-right: solid 0.4rem transparent;
  border-top: solid 0.6rem rgba(255, 255, 255, 0.3);
}
.index-message .form li .item .text-input input {
  border: 0;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  background: transparent;
  font-family: var(--font-family-H-S-SC-R);
}
.index-message .form li .item .text-textarea textarea {
  height: 8rem;
  border: 0;
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  background: transparent;
  font-family: var(--font-family-H-S-SC-R);
}
.index-message .form li .custom-checkbox {
  z-index: 1;
  top: 0;
  left: 0;
  z-index: 3;
  position: absolute;
}
.index-message .form li .custom-checkbox + .checkmark {
  z-index: 4;
  position: relative;
  cursor: pointer;
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 1rem;
  vertical-align: middle;
  border: solid 0.2rem rgba(255, 255, 255, 0.4);
  background-color: #023f64;
  display: inline-block;
}
.index-message .form li .custom-checkbox:checked + .checkmark {
  background-color: #2196F3;
}
.index-message .form li .custom-checkbox:checked + .checkmark:after {
  content: '✓';
  position: absolute;
  display: block;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.index-message .form li .checkbox-item {
  color: #fff;
  position: relative;
}
.index-message .form li .checkbox-label {
  font-size: 1.2em;
  font-weight: 500;
  cursor: pointer;
  color: #34495e;
  user-select: none;
}
.index-message .form li .custom-checkbox {
  display: none;
}
.index-message .form li .custom-checkbox + label:before {
  content: '';
  display: inline-block;
  height: 1.8rem;
  width: 1.8rem;
  margin-right: 1rem;
  vertical-align: middle;
  border: solid 0.2rem rgba(255, 255, 255, 0.4);
  background-color: #023f64;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.index-message .form li .custom-checkbox:checked + label:before {
  background: var(--sub-color);
  border-color: var(--sub-color);
}
.index-message .form li .custom-checkbox:checked + label:after {
  content: '✓';
  top: 0.2rem;
  position: absolute;
  left: 0.3rem;
  font-size: "宋体";
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
}
.index-message .form li.li1 {
  display: flex;
  justify-content: space-between;
}
.index-message .form li.li1 .item {
  width: 49%;
}
.index-message .form li.tigs {
  font-size: 1.3rem;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.8);
}
.index-message .form li.tigs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.index-message .form li.tigs a:hover {
  color: #fff;
}
.index-message .form li.button {
  padding-top: 5rem;
}
.index-message .form li.button a {
  font-size: 1.6rem;
  color: var(--sub-color);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  width: 15.1rem;
  height: 5.3rem;
  line-height: 4.9rem;
  transition: all 500ms ease;
  border: solid 0.2rem #d5c700;
  justify-content: space-between;
}
.index-message .form li.button a:hover {
  color: #fff;
  line-height: 5.2rem;
  border: solid 1px #d5c700;
  background: rgba(213, 199, 0, 0.7);
}
.index-message .form li.button a:hover svg {
  fill: #fff;
}
.index-message .form li.button svg {
  width: 2rem;
  height: 2rem;
  fill: var(--sub-color);
}
@media (max-width: 1024px) {
  .index-message {
    padding: 40px 0;
  }
  .index-message .container {
    display: block;
  }
  .index-message .pic {
    display: none;
  }
  .index-message .form {
    width: 100%;
    padding-right: 0;
  }
  .index-message .form li.tigs {
    font-size: 14px;
  }
  .index-message .form li .item label {
    font-size: 13px;
  }
  .index-message .form li .custom-checkbox + .checkmark {
    margin-top: -4px;
  }
  .index-message .form li .item .text-select select {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .index-message .form li.li1 {
    display: block;
  }
  .index-message .form li.li1 .item {
    width: 100%;
  }
  .index-message .form li.li1 .item:first-child {
    margin-bottom: 1.6rem;
  }
}
.footer {
  overflow: hidden;
  background: #eceded;
}
.footer .list {
  color: #616161;
  margin: 0 -5rem;
  padding: 6rem 0;
  display: flex;
  flex-wrap: wrap;
}
.footer .list .item {
  padding: 0 5rem;
  width: 32%;
}
.footer .list .item li {
  height: 5rem;
  line-height: 4.9rem;
  border-top: solid 1px #dbdcdd;
}
.footer .list .item li a {
  color: #212121;
  display: block;
  transition: all 334ms ease;
}
.footer .list .item li a:hover {
  color: var(--sub-color);
  text-decoration: underline;
}
.footer .list .item-2 {
  width: 30%;
}
.footer .list .item-2 .t-1 {
  color: #212121;
  font-family: var(--font-family-H-S-SC-B);
}
.footer .list .item-2 .t-2 {
  line-height: 3.4rem;
  padding-top: 2rem;
}
.footer .list .item-2 .t-3 {
  margin-top: 2rem;
}
.footer .list .item-2 .t-3 a {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  color: var(--sub-color);
  letter-spacing: 1px;
  transition: all 334ms ease;
}
.footer .list .item-2 .t-3 a:hover {
  text-decoration: underline;
}
.footer .list .item-2 svg {
  width: 2rem;
  height: 2rem;
  fill: var(--sub-color);
}
.footer .list .item-3 {
  width: 38%;
}
.footer .list .item-3 .t-1 {
  padding-bottom: 2rem;
  color: #212121;
  font-family: var(--font-family-H-S-SC-B);
}
.footer .list .item-3 .t-2 span {
  display: block;
  padding-left: 7.5rem;
}
.footer .list .item-3 .share {
  margin-top: 2rem;
}
.footer .list .item-3 .share a {
  width: 3.8rem;
  height: 3.8rem;
  margin-right: 1rem;
  display: inline-block;
  background: var(--sub-color);
  transition: all 336ms ease;
}
.footer .list .item-3 .share a:hover {
  background-color: #333;
}
.footer .list .item-3 .share a:hover img {
  filter: brightness(0) invert(1);
}
.footer .list .item-3 .share img {
  max-height: 3.8rem;
}
.footer .copy {
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
  background-color: #023f64;
}
.footer .copy span {
  padding: 0 1rem;
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer .list .item-1,
  .footer .list .item-2 {
    display: none;
  }
  .footer .list .item-3 {
    width: 100%;
  }
  .footer .list .item-3 .t-1 {
    font-size: 20px;
  }
  .footer .list .item-3 .share a {
    width: 38px;
    height: 38px;
  }
  .footer .list .item-3 .share img {
    max-height: 38px;
  }
}
.common-banner {
  position: relative;
}
.common-banner .pc img {
  width: 100%;
}
.common-banner .ph {
  display: none;
}
.common-banner .text {
  left: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  bottom: 4rem;
  position: absolute;
}
.common-banner .container {
  max-width: 160rem;
  position: relative;
}
.common-banner .swiper-box {
  display: flex;
  right: 25rem;
  bottom: -1rem;
  align-items: center;
  position: absolute;
}
.common-banner .swiper-box-ph {
  display: none;
}
.common-banner .button-1 a {
  color: #fff;
  display: flex;
  justify-content: center;
  min-width: 16rem;
  padding: 0 2rem;
  align-items: center;
  font-size: 1.6rem;
  height: 5.4rem;
  line-height: 5.4rem;
  font-family: var(--font-family-H-S-SC-B);
  background-color: var(--main-color);
}
.common-banner .button-1 a:hover {
  background-color: var(--sub-color) !important;
}
.common-banner .button-1 svg {
  fill: #fff;
  margin-right: 1.5rem;
  width: 2.4rem;
  height: 2.4rem;
}
.common-banner .searchBtn {
  cursor: pointer;
  width: 5.4rem;
  height: 5.4rem;
  line-height: 5rem;
  text-align: center;
  margin-right: 0.5rem;
  background-color: var(--main-color);
}
.common-banner .searchBtn svg {
  fill: #fff;
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
}
.common-banner .searchBtn:hover {
  background-color: var(--sub-color) !important;
}
@media (max-width: 1024px) {
  .common-banner {
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .common-banner .pc {
    display: none;
  }
  .common-banner .ph {
    display: block;
  }
  .common-banner .text {
    top: 40%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    bottom: auto;
  }
  .common-banner .swiper-box {
    display: none;
  }
  .common-banner .swiper-box-ph {
    margin-top: -70px;
    position: relative;
    display: block;
    text-align: center;
  }
  .common-banner .swiper-box-ph .searchBtn,
  .common-banner .swiper-box-ph .button-1 {
    vertical-align: top;
    display: inline-block;
  }
  .common-banner .fixed-2 {
    top: 60px !important;
    right: 20px !important;
  }
  .common-banner .fixed-2 .button-1 a {
    font-size: 0;
    min-width: auto;
  }
  .common-banner .fixed-2 .button-1 svg {
    margin-right: 0;
  }
}
.common-banner .fixed-2 {
  margin-top: 0;
  position: fixed;
  right: 50px;
  top: 80px;
  z-index: 9;
  display: block;
}
.common-banner .fixed-2 .searchBtn,
.common-banner .fixed-2 .button-1 {
  vertical-align: top;
  display: inline-block;
}
.common-banner .fixed-2 .searchBtn,
.common-banner .fixed-2 .button-1 a {
  background: var(--sub-color);
}
.common-current {
  color: #fff;
  font-size: 1.4rem;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-current a {
  color: #fff;
}
.common-current a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .common-current {
    display: none;
  }
}
.newslist {
  padding-top: 6rem;
}
.newslist .container {
  max-width: 120rem;
}
.newslist .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.newslist .list li {
  padding: 0 2rem;
  padding-top: 4rem;
  width: 33.333%;
}
.newslist .list li .item {
  height: 49rem;
}
.newslist .list li .t-3 {
  margin-top: 1rem;
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .newslist {
    padding: 10px 0 40px 0;
  }
  .newslist .list ul {
    margin: 0 -10px;
  }
  .newslist .list li {
    width: 50%;
    padding: 0 10px;
    padding-top: 20px;
  }
  .newslist .list li .item {
    height: 380px;
  }
}
@media (max-width: 480px) {
  .newslist .list li {
    padding-top: 30px;
    width: 100%;
  }
  .newslist .list li .item {
    height: auto;
  }
}
.news-show {
  color: #333;
  line-height: 3rem;
  padding: 4rem 0 8rem 0;
}
.news-show .common-current {
  color: #212121;
}
.news-show .common-current a {
  color: #212121;
}
.news-show .nr {
  padding-top: 9rem;
}
.news-show .nr .title {
  font-size: 4.2rem;
  line-height: 5.8rem;
  font-weight: normal;
  font-family: var(--font-family-H-S-SC-B);
}
.news-show .nr .time {
  padding: 4rem 0;
  font-size: 2.4rem;
}
.news-show .nr .f-24 {
  font-size: 2.4rem;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .news-show {
    line-height: 24px;
    padding: 40px 0;
  }
  .news-show .nr {
    padding-top: 0;
  }
  .news-show .nr .title {
    font-size: 22px;
    line-height: 30px;
  }
  .news-show .nr .time {
    font-size: 16px;
    padding: 20px 0;
  }
  .news-show .nr p {
    text-indent: 0 !important;
  }
}
.newspage {
  font-size: 1.6rem;
  position: relative;
  padding-top: 5rem;
  padding-bottom: 10rem;
  border-bottom: solid 0.4rem #eee;
}
.newspage ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newspage li {
  width: 44%;
}
.newspage li .tag {
  color: #666;
}
.newspage li .tag i {
  color: #666;
  font-weight: 700;
  font-family: "宋体";
  display: inline-block;
  font-style: normal;
}
.newspage li .tit {
  font-size: 2.2rem;
  height: 4rem;
  line-height: 4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.newspage li .tit a {
  color: #333;
  transition: all 334ms ease;
}
.newspage li:hover .tit a {
  color: var(--sub-color);
}
.newspage li:first-child .tag i {
  margin-right: 1rem;
}
.newspage li:last-child {
  text-align: right;
}
.newspage li:last-child .tag i {
  margin-left: 1rem;
}
.newspage .fanhui {
  left: 50%;
  width: 10%;
  line-height: 2.4rem;
  font-size: 2.2rem;
  top: 6.5rem;
  text-align: center;
  position: absolute;
  transform: translateX(-40%);
}
.newspage .fanhui a {
  color: var(--sub-color);
}
.newspage .fanhui img {
  max-height: 1.7rem;
}
@media (max-width: 1024px) {
  .newspage {
    font-size: 14px;
    padding: 0 0 20px 0;
  }
  .newspage ul {
    display: block;
  }
  .newspage li {
    width: 100%;
    padding-top: 15px;
    text-align: left!important;
  }
  .newspage li .tag i {
    display: none;
  }
  .newspage li .tit {
    height: 30px;
    line-height: 30px;
  }
  .newspage .fanhui {
    display: none;
    left: auto;
    width: 100%;
    top: auto;
    font-size: 14px;
    text-align: left;
    margin-top: 20px;
    transform: translateX(0);
    position: relative;
  }
}
.news-xg {
  padding-top: 0;
}
.news-xg .container {
  padding: 0;
  max-width: 120rem;
}
.news-xg .bt {
  font-size: 3.8rem;
  color: #212121;
}
.news-xg .item {
  margin-top: 5rem;
  height: 49rem;
}
.news-xg .item .t-3 {
  font-size: 1.8rem;
}
@media (max-width: 1024px) {
  .news-xg .item {
    margin-top: 20px;
  }
}
.hzkh {
  padding: 9.4rem 0;
}
.hzkh ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.7rem;
}
.hzkh li {
  padding: 0.7rem;
  width: 20%;
}
.hzkh li .pic {
  overflow: hidden;
  background-color: #fff;
  position: relative;
  box-shadow: -4px 3px 16px 0px rgba(74, 77, 79, 0.12);
}
.hzkh li .pic::after {
  content: "";
  display: block;
  padding-bottom: 43.47826087%;
}
.hzkh li .pic img {
  transition: all 700ms ease;
}
.hzkh li:hover .pic img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .hzkh {
    padding: 34px 0;
  }
}
@media (max-width: 640px) {
  .hzkh li {
    width: 33.333%;
  }
}
.video {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
.video ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.video li {
  width: 50%;
  padding: 0 2rem;
  padding-top: 4rem;
}
.video li .picbox {
  background: #012033;
  position: relative;
}
.video li .pic {
  opacity: 0.9;
  overflow: hidden;
  position: relative;
}
.video li .pic::after {
  content: "";
  display: block;
  padding-bottom: 56.20689655%;
}
.video li .pic img {
  transition: all 700ms ease;
}
.video li .vbtn {
  top: 50%;
  left: 50%;
  z-index: 2;
  position: absolute;
  transform: translate(-50%, -50%);
}
.video li .vbtn img {
  max-height: 11.4rem;
  transition: all 700ms ease;
}
.video li .title {
  color: #212121;
  font-size: 2.4rem;
  font-weight: normal;
  text-align: center;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 334ms ease;
  border-bottom: solid 0.2rem #eceded;
}
.video li:hover .vbtn img {
  transform: scale(1.1);
}
.video li:hover .title {
  color: var(--sub-color);
  border-color: var(--sub-color);
}
@media (max-width: 1024px) {
  .video {
    padding: 20px 0 40px 0;
  }
}
@media (max-width: 480px) {
  .video li {
    width: 100%;
  }
}
.solutions {
  background-color: #fff;
}
.solutions .list {
  margin-top: 2rem;
}
.solutions .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.solutions .list li {
  width: 33.333%;
  padding: 0 2rem;
  padding-top: 4rem;
}
@media (max-width: 1024px) {
  .solutions .list ul {
    margin: 0 -10px;
  }
  .solutions .list li {
    padding: 0 10px;
    padding-top: 20px;
    width: 50%;
  }
  .solutions .list li .item .text {
    padding: 0 15px;
  }
}
@media (max-width: 420px) {
  .solutions .list li {
    width: 100%;
  }
}
.solutions-2 {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
.solutions-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.3rem;
}
.solutions-2 li {
  width: 25%;
  padding: 0 1.3rem;
  padding-top: 4rem;
}
.solutions-2 li .pic {
  overflow: hidden;
  position: relative;
}
.solutions-2 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 59.28571429%;
}
.solutions-2 li .pic img {
  transition: all 700ms ease;
}
.solutions-2 li .text {
  padding-top: 1.5rem;
  height: 11.5rem;
  text-align: center;
  transition: all 500ms ease;
  border-bottom: solid 0.2rem #eceded;
}
.solutions-2 li .title {
  color: #212121;
  font-size: 2rem;
  font-weight: normal;
  line-height: 3.2rem;
  height: 6.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (min-width: 1025px) {
  .solutions-2 li:hover .pic img {
    transform: scale(1.05);
  }
  .solutions-2 li:hover .text {
    background: var(--main-color);
  }
  .solutions-2 li:hover .title {
    color: #fff;
  }
}
@media (max-width: 1024px) {
  .solutions-2 {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .solutions-2 li {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .solutions-2 li {
    width: 100%;
  }
}
.solutions-show {
  padding: 4rem 0 10rem 0;
}
.solutions-show .common-current {
  color: #212121;
}
.solutions-show .common-current a {
  color: #212121;
}
.solutions-show .list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border-bottom: solid 0.2rem #eceded; */
}
.solutions-show .list li .text,
.solutions-show .list li .text-2 {
  color: #333;
  width: 55%;
  line-height: 3rem;
}
.solutions-show .list li .text .title,
.solutions-show .list li .text-2 .title {
  font-size: 4.2rem;
  line-height: 5.8rem;
  color: #212121;
  font-weight: normal;
  padding-bottom: 2rem;
  font-family: var(--font-family-H-S-SC-B);
}
.solutions-show .list li .text .title-2,
.solutions-show .list li .text-2 .title-2 {
  line-height: 4rem;
  font-size: 3.8rem;
  font-weight: normal;
  color: #212121;
  padding-bottom: 2rem;
}
.solutions-show .list li .text .t-1,
.solutions-show .list li .text-2 .t-1 {
  padding-left: 2rem;
  position: relative;
  margin-top: 1rem;
}
.solutions-show .list li .text .t-1 span,
.solutions-show .list li .text-2 .t-1 span {
  top: 0;
  left: 0;
  position: absolute;
  color: var(--sub-color);
}
.solutions-show .list li .text-2 {
  width: 100%;
}
.solutions-show .list li .pic {
  width: 37%;
}


.solutions-show .list li .hx .hxa {
  width: 12.5%;
  height: 2px;
  background: #d5c700;
  float: left;
}

.solutions-show .list li .hx .hxb {
  width: 87.5%;
  height: 2px;
  background: #000000;
  float: left;
}

.solutions-show .list .li1 {
  padding: 9rem 0;
}
.solutions-show .list .li2 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  display:block;
}
.solutions-show .list-2 {
  color: #212121;
  padding-top: 7rem;
}
.solutions-show .list-2 .bt {
  font-size: 3.8rem;
  font-weight: normal;
}
.solutions-show .list-2 li {
  margin-top: 3rem;
  align-items: center;
  display: flex;
}
.solutions-show .list-2 li .pic {
  width: 20%;
}
.solutions-show .list-2 li .text {
  width: 80%;
  padding-left: 4rem;
}
.solutions-show .list-2 li .text .t-1 {
  font-weight: normal;
  font-size: 2.4rem;
  padding-bottom: 0.5rem;
}
.solutions-show .list-2 li .text .t-2 {
  position: relative;
  margin-top: 0.5rem;
  color: #333;
}
.solutions-show .list-2 li .text .t-2 span {
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .solutions-show {
    padding-bottom: 40px;
  }
  .solutions-show .list li .text-2 .title-2 {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 10px;
  }
  .solutions-show .list .li1 {
    padding: 30px 0;
    display: block;
  }
  .solutions-show .list .li1 .text {
    width: 100%;
    line-height: 24px;
  }
  .solutions-show .list .li1 .text .title {
    font-size: 26px;
    line-height: 40px;
  }
  .solutions-show .list .li1 .pic {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  .solutions-show .list .li2 {
    padding: 30px 0;
  }
  .solutions-show .list-2 {
    padding-top: 30px;
  }
}
@media (max-width: 640px) {
  .solutions-show .list-2 li .pic {
    width: 40%;
  }
  .solutions-show .list-2 li .text {
    width: 60%;
    padding-left: 20px;
  }
}
@media (max-width: 420px) {
  .solutions-show .list-2 li {
    display: block;
  }
  .solutions-show .list-2 li .pic {
    width: 100%;
  }
  .solutions-show .list-2 li .pic img {
    width: 100%;
    object-fit: cover;
  }
  .solutions-show .list-2 li .text {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
}
.product-show .list .li2 .box {
  margin: 0 -2rem;
  display: flex;
  flex-wrap: wrap;
}
.product-show .list .li2 .box .tu {
  width: 50%;
  padding: 0 2rem;
  padding-top: 2rem;
}
.product-show .list .li3 {
  display: block;
}
.product-show .table {
  color: #212121;
  margin-top: 1rem;
}
.product-show .table td,
.product-show .table th {
  padding: 1.5rem;
  text-align: center;
  padding-left: 5.5rem;
}
.product-show .table th {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.product-show .table td {
  border: solid 2px #fff;
  background: #f0f0f0;
}
.product-show .table td:first-child,
.product-show .table th:first-child {
  text-align: left;
}
.product-show .table td:first-child {
  background: #e6e6e6;
  font-family: var(--font-family-H-S-SC-M);
}
.product-show .table th {
  font-size: 2rem;
  font-weight: normal;
}
.product-show .table .td1 {
  width: auto;
  padding-left: 0;
  text-align: left;
  background: #e6e6e6;
  padding-left: 3.5rem;
  font-family: var(--font-family-H-S-SC-R) !important;
}
.product-show .tigs {
  color: #333;
  font-size: 1.6rem;
  margin-top: 2rem;
}
.product-show .list-2 li .pic {
  width: 17%;
  overflow: hidden;
  position: relative;
}
.product-show .list-2 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 71.42857143%;
}
.product-show .list-2 li .pic img {
  transition: all 700ms linear;
}
.product-show .list-2 li .text {
  width: 83%;
}
.product-show .list-2 li .text .t-1 {
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.product-show .list-2 li .text .t-1 a {
  color: #212121;
}
.product-show .list-2 li .text .t-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  height: 6rem;
  margin-top: 1rem;
  line-height: 3rem;
}
.product-show .list-2 li:hover .pic img {
  transform: scale(1.05);
}
.product-show .list-2 li:hover .text .t-1 a {
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .product-show .table {
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    overflow-x: auto;
  }
  .product-show .table table {
    width: 1200px;
  }
  .product-show .tigs {
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .product-show .list-2 li {
    display: flex !important;
  }
  .product-show .list-2 li .pic {
    width: 40%;
  }
  .product-show .list-2 li .text {
    width: 60%;
    padding-top: 0 !important;
    padding-left: 20px;
  }
  .product-show .list .li2 .box {
    display: block;
  }
  .product-show .list .li2 .box .tu {
    width: 100%;
  }
}
.honor-1 {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
.honor-1 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.3rem;
}
.honor-1 li {
  width: 25%;
  padding: 0 1.3rem;
  padding-top: 4rem;
}
.honor-1 li .pic {
  background: linear-gradient(to right, #dbdde4, #ffffff, #dbdde4);
  overflow: hidden;
  position: relative;
}
.honor-1 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.honor-1 li .pic img {
  transition: all 700ms ease;
}
.honor-1 li .text {
  padding-top: 2.5rem;
  height: 11.5rem;
  text-align: center;
  transition: all 500ms ease;
  border-bottom: solid 0.2rem #eceded;
}
.honor-1 li .title {
  color: #212121;
  font-size: 2rem;
  font-weight: normal;
  line-height: 3.2rem;
  height: 6.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (min-width: 1025px) {
  .honor-1 li:hover .pic img {
    transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  .honor-1 {
    padding: 20px 0 40px 0;
  }
  .honor-1 li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .honor-1 li .title {
    font-size: 12px;
  }
}
.honor-2 {
  padding-top: 7rem;
}
.honor-2 li {
  padding-top: 3rem;
}
.honor-2 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 128.57142857%;
}
@media (max-width: 1024px) {
  .honor-2 {
    padding-top: 20px;
  }
}
.honor-3 {
  padding-top: 7rem;
}
.honor-3 li {
  padding-top: 3rem;
}
.honor-3 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 128.57142857%;
}
.honor-3 li .text {
  height: 9.5rem;
}
@media (max-width: 1024px) {
  .honor-3 {
    padding-top: 10px;
  }
  .honor-3 li .title {
    font-size: 14px;
  }
}
.xmhz {
  padding: 10rem 0;
}
.xmhz .container {
  max-width: 160rem;
}
.xmhz .common-title {
  text-align: center;
}
.xmhz .common-text {
  padding-top: 4rem;
  text-align: center;
}
.xmhz .list {
  padding-top: 2rem;
}
.xmhz .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.7rem;
}
.xmhz .list li {
  width: 25%;
  padding: 0 1.7rem;
  padding-top: 3.4rem;
}
.xmhz .list li .item {
  text-align: center;
}
.xmhz .list li .item .tit {
  color: #fff;
  height: 8.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: var(--main-color);
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .xmhz {
    padding: 40px 0;
  }
  .xmhz .common-text {
    text-align: left;
  }
  .xmhz .list li {
    width: 50%;
  }
  .xmhz .list li .item .tit {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .xmhz {
    padding: 40px 0;
  }
  .xmhz .list {
    padding-top: 0;
  }
  .xmhz .list li {
    width: 100%;
  }
}
.product-1 dl {
  display: flex;
  align-items: center;
}
.product-1 dt {
  width: 40%;
}
.product-1 dd {
  width: 60%;
  color: #333;
  line-height: 3rem;
  padding-left: 4rem;
}
.product-1 dd .t-1 {
  font-size: 3.2rem;
  font-weight: normal;
  padding-bottom: 2.5rem;
  font-family: var(--font-family-H-S-SC-B);
}
.product-1 li .item {
  position: relative;
}
.product-1 li .item::after {
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 334ms ease;
  background: var(--sub-color);
}
.product-1 li .title {
  transition: all 334ms ease;
}
@media (min-width: 1025px) {
  .product-1 li:hover .title {
    color: #fff;
  }
  .product-1 li:hover .item {
    background: var(--main-color);
  }
  .product-1 li:hover .item::after {
    border-color: var(--main-color);
  }
}
@media (max-width: 1024px) {
  .product-1 dl {
    display: block;
  }
  .product-1 dt {
    width: 100%;
    text-align: center;
  }
  .product-1 dd {
    width: 100%;
    padding-top: 20px;
    padding-left: 0;
    line-height: 24px;
  }
}
.dowland {
  color: #222;
  padding-top: 8rem;
  padding-bottom: 10rem;
}
.dowland .bt {
  overflow: hidden;
  color: #fff;
  font-weight: 600;
  padding: 0 4rem;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  background: var(--sub-color);
  border-bottom: dotted 2px #b5d1dd;
}
.dowland .bt span {
  width: 25%;
  float: left;
  display: block;
  text-align: center;
}
.dowland .bt span:first-child {
  width: 35%;
  text-align: left;
  padding-left: 5rem;
}
.dowland .bt span:last-child {
  width: 15%;
}
.dowland .tit {
  padding: 3.3rem 0;
  font-size: 2rem;
  border-top: solid 0.4rem #fff;
  padding-left: 6rem;
  background: #f9f9f9;
  cursor: pointer;
  position: relative;
}
.dowland .tit span {
  color: #555;
  right: 6rem;
  width: 12rem;
  height: 4rem;
  top: 2.8rem;
  display: flex;
  align-items: center;
  position: absolute;
  text-align: center;
  justify-content: center;
  line-height: 3.8rem;
  color: var(--sub-color);
  border: solid 1px var(--sub-color);
}
.dowland .tit svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: var(--sub-color);
}
.dowland .txt {
  display: none;
  padding: 0 4rem;
  background: #f3fafd;
  padding-bottom: 5.5rem;
}
.dowland .txt .t1 {
  color: #999;
  font-size: 1.4rem;
  font-family: arial;
  font-weight: lighter;
  padding-bottom: 3rem;
  border-bottom: solid 0.2rem #e1eefd;
}
.dowland .txt .t1 span {
  padding-left: 17rem;
  display: inline-block;
}
.dowland .txt .t2 {
  border-top: dotted 0.2rem #b5d1dd;
}
.dowland .txt .t3 {
  padding: 0 2.5rem;
  margin-top: 3rem;
  background: #fff;
  height: 10.8rem;
  line-height: 10.6rem;
  position: relative;
  overflow: hidden;
  font-family: var(--font-family-H-S-SC-L);
  border: solid 1px #e1eefd;
}
.dowland .txt .t3 a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dowland .txt .t3 svg {
  margin-right: 0.5rem;
  width: 2.8rem;
  height: 2.8rem;
  fill: #fff;
}
.dowland .txt .t3 span {
  width: 25%;
  float: left;
  display: block;
  text-align: center;
}
.dowland .txt .t3 span:last-child {
  width: 15%;
}
.dowland .txt .t3 span:first-child {
  width: 35%;
  text-align: left;
}
.dowland .txt .t3 span:first-child img {
  max-height: 7rem;
  margin: 1.8rem 2rem 0 0;
}
.dowland .txt .t3 span:nth-child(2),
.dowland .txt .t3 span:nth-child(3) {
  font-size: 1.6rem;
  color: #888888;
}
.dowland .txt .t3 span:last-child {
  right: 2.5rem;
  width: 12rem;
  height: 4rem;
  top: 3.4rem;
  color: #fff;
  position: absolute;
  text-align: center;
  line-height: 3.8rem;
  background: var(--sub-color);
}
.dowland .txt .t3 span:last-child a {
  color: #fff;
}
.dowland .active {
  padding-left: 4rem;
  border-color: #f3fafd;
  font-size: 2.4rem;
  background: #f3fafd;
  font-family: var(--font-family-H-S-SC-B);
}
.dowland .active span {
  display: none;
}
.dowland .txt .t3 span:last-child a {
  color: #fff;
}
@media (max-width: 1024px) {
  .dowland {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .dowland .bt {
    overflow: hidden;
    height: auto;
    padding: 15px 0;
    line-height: 30px;
    font-size: 16px;
  }
  .dowland .bt span {
    width: 20%;
  }
  .dowland .bt span:first-child {
    width: 80%;
    padding-left: 30px;
  }
  .dowland .bt span:nth-child(2),
  .dowland .bt span:nth-child(3) {
    display: none;
  }
  .dowland .active {
    font-size: 16px;
  }
  .dowland .tit {
    padding-left: 20px;
    font-size: 14px;
  }
  .dowland .txt .t1 {
    font-size: 14px;
  }
  .dowland .txt .t1 span {
    padding-left: 30px;
  }
  .dowland .txt {
    padding: 0 20px;
    padding-bottom: 20px;
  }
  .dowland .txt .t3 {
    font-size: 14px;
    height: auto;
    line-height: 30px;
  }
  .dowland .txt .t3 span:nth-child(2),
  .dowland .txt .t3 span:nth-child(3) {
    display: none;
  }
  .dowland .txt .t3 span:nth-child(1) {
    width: 70%;
    line-height: 40px;
    padding: 10px 0;
  }
  .dowland .txt .t3 span:first-child img {
    max-height: 40px;
    margin: 0;
    margin-right: 10px;
  }
  .dowland .tit {
    padding-right: 140px;
  }
  .dowland .tit span {
    width: 80px;
    height: 36px;
    line-height: 34px;
    right: 20px;
  }
  .dowland .txt .t3 {
    padding-left: 10px;
  }
  .dowland .txt .t3 span:last-child {
    top: 10px;
    right: 10px;
    width: 80px;
    height: 36px;
    line-height: 34px;
  }
}
.about-1 {
  color: #333;
  padding: 10rem 0;
}
.about-1 .text {
  font-size: 2.2rem;
  line-height: 3.6rem;
}
.about-1 .text p {
  margin-top: 2.5rem;
}
.about-1 .text p:first-child {
  font-family: var(--font-family-H-S-SC-B);
  margin-top: 3.5rem;
}
.about-1 .numlist ul {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 10.5rem;
  justify-content: space-between;
}
.about-1 .numlist li {
  font-size: 2rem;
}
.about-1 .numlist li .t-1 {
  font-size: 6.6rem;
  line-height: 6.6rem;
  font-family: var(--font-family-H-S-SC-B);
  color: var(--sub-color);
}
.about-1 .numlist li .t-2 {
  padding-top: 0.5rem;
}
@media (max-width: 1024px) {
  .about-1 {
    padding: 40px 0;
  }
  .about-1 .text {
    font-size: 15px;
    line-height: 24px;
  }
  .about-1 .numlist ul {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .about-1 .numlist ul {
    padding: 30px 0;
    margin: 0 -5px;
  }
  .about-1 .numlist li {
    font-size: 13px;
    padding: 0 5px;
  }
  .about-1 .numlist li .t-1 {
    font-size: 30px;
    line-height: 30px;
  }
}
.about-2 {
  padding: 0 0 10rem 0;
}
.about-2 .common-title {
  padding-top: 8rem;
  border-top: solid 0.5rem #eceded;
}
.about-2 .list {
  margin-top: 3rem;
}
.about-2 .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.1rem;
  overflow: hidden;
  height: 43.2rem;
}
.about-2 .list li {
  width: 21%;
  transition: all 700ms ease;
  padding: 0 1.1rem;
}
.about-2 .list li .item {
  height: 43.2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}
.about-2 .list li .text {
  left: 0;
  color: #fff;
  z-index: 3;
  bottom: 3.5rem;
  width: 100%;
  padding: 0 3rem;
  position: absolute;
}
.about-2 .list li .text .t-1 {
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.about-2 .list li .text .t-2 {
  font-size: 2.2rem;
  padding-top: 0.5rem;
  display: none;
}
.about-2 .list .active {
  width: 37%;
}
.about-2 .list .active .text .t-2 {
  display: block;
}
@media (max-width: 1024px) {
  .about-2 {
    padding-bottom: 40px;
  }
  .about-2 .common-title {
    padding-top: 40px;
  }
  .about-2 .list {
    margin-top: 10px;
  }
  .about-2 .list ul {
    height: auto;
  }
  .about-2 .list li {
    width: 50% !important;
    margin-top: 2rem;
  }
  .about-2 .list li .item {
    height: 240px !important;
  }
  .about-2 .list li .text .t-2 {
    font-size: 14px !important;
    display: block !important;
  }
}
@media (max-width: 420px) {
  .about-2 .list li {
    width: 100% !important;
  }
  .about-2 .list li .item {
    height: 180px !important;
    position: relative;
  }
  .about-2 .list li .item::after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.7));
  }
}
.about-3 {
  padding: 0 0 10rem 0;
}
.about-3 .common-title {
  padding-top: 8rem;
  border-top: solid 0.5rem #eceded;
}
@media (max-width: 1024px) {
  .about-3 {
    padding-bottom: 40px;
  }
  .about-3 .common-title {
    padding-top: 40px;
  }
}
.service-1 {
  padding: 10rem 0 0 0;
}
.service-1 .common-title {
  text-align: center;
}
.service-1 .list {
  margin-top: 5rem;
  height: 61rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.service-1 .item {
  color: #333;
  width: 47rem;
  height: 61rem;
  padding: 3rem;
  font-size: 2rem;
  background: var(--sub-color);
}
.service-1 .box {
  padding-top: 1.5rem;
}
.service-1 .box .t-1 {
  font-size: 2.8rem;
}
.service-1 .box .t-2 {
  width: 115%;
  padding-top: 1rem;
  line-height: 3.6rem;
  display: flex;
  flex-wrap: wrap;
}
.service-1 .box .t-2 span {
  width: 33.333%;
}
@media (max-width: 1024px) {
  .service-1 {
    padding: 40px 0;
  }
  .service-1 .list {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .service-1 .list {
    height: 400px;
  }
  .service-1 .item {
    width: 100%;
    height: 400px;
    font-size: 18px;
    padding: 20px;
  }
  .service-1 .box .t-2 {
    font-size: 13px;
    line-height: 20px;
    width: 100%;
  }
}
.service-2 {
  padding: 10rem 0;
}
.service-2 .common-title {
  text-align: center;
}
.service-2 li {
  display: flex;
  margin-top: 5rem;
  border: solid 1px var(--main-color);
  border-radius: 1.6rem;
  background-color: #f0f8fc;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.service-2 li .pic {
  width: 50%;
  overflow: hidden;
  border-top-right-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
}
.service-2 li .pic img {
  transition: all 700ms ease;
  border-top-right-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
}
.service-2 li .text {
  width: 50%;
  border-right: solid 1px var(--main-color);
  padding: 0 4rem;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.service-2 li .text .t-1 {
  color: #212121;
  font-size: 3rem;
  display: flex;
  line-height: 5rem;
  justify-content: space-between;
}
.service-2 li .text .t-1 span:last-child {
  font-size: 4.8rem;
  font-style: italic;
  color: var(--sub-color);
}
.service-2 li .text .t-2 {
  padding-right: 2.5rem;
  margin-top: 3rem;
  font-size: 2.2rem;
  line-height: 3.4rem;
  color: #474747;
}
.service-2 li:hover .pic img {
  transform: scale(1.05);
}
.service-2 li:nth-child(2n) {
  flex-direction: row;
}
.service-2 li:nth-child(2n) .text {
  border-right: 0;
  border-left: solid 1px var(--main-color);
}
.service-2 li:nth-child(2n) .pic {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 1.6rem;
  border-bottom-left-radius: 1.6rem;
}
.service-2 li:nth-child(2n) .pic img {
  transition: all 700ms ease;
  border-top-left-radius: 1.6rem;
  border-bottom-left-radius: 1.6rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.service-2 li:last-child .text .t-1 span {
  padding-right: 3rem;
}
@media (max-width: 1024px) {
  .service-2 {
    padding: 0 0 40px 0;
  }
  .service-2 li {
    display: block;
    margin-top: 30px;
    flex-direction: row !important;
  }
  .service-2 li .pic {
    width: 100%;
    border-top-right-radius: 1.6rem !important;
    border-top-left-radius: 1.6rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .service-2 li .pic img {
    border-top-right-radius: 1.6rem !important;
    border-top-left-radius: 1.6rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .service-2 li .text {
    width: 100%;
    padding-bottom: 30px;
    border: 0!important;
  }
  .service-2 li .text .t-2 {
    margin-top: 10px;
    padding-right: 0;
    font-size: 15px;
    line-height: 24px;
  }
}
.contact-1 {
  padding: 10rem 0;
}
.contact-1 .list {
  display: flex;
  justify-content: space-between;
}
.contact-1 .left {
  width: 48%;
  padding-top: 2rem;
}
.contact-1 .left .text {
  padding-top: 3rem;
}
.contact-1 .left .text .t-1 {
  line-height: 4.2rem;
  margin-top: 1rem;
  color: #333;
  display: flex;
  position: relative;
}
.contact-1 .left .text .t-1 .icon {
  margin-right: 1rem;
  text-align: center;
  line-height: 4rem;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  background: #f0f4f6;
}
.contact-1 .left .text .t-1 svg {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  fill: var(--sub-color);
}
.contact-1 .left .text .t-1 a {
  color: #333;
}
.contact-1 .left .text .t-1 a:hover {
  text-decoration: underline;
}
.contact-1 .left .share {
  padding-top: 3rem;
}
.contact-1 .left .share ul {
  display: flex;
  flex-wrap: wrap;
}
.contact-1 .left .share li {
  position: relative;
  padding-right: 3rem;
  text-align: center;
}
.contact-1 .left .share li span {
  display: block;
  margin-top: 0.5rem;
}
.contact-1 .left .share li img {
  max-height: 7.2rem;
}
.contact-1 .left .share li .ewm {
  top: -22rem;
  left: 50%;
  display: none;
  transform: translateX(-50%);
  position: absolute;
}
.contact-1 .left .share li .ewm img {
  max-width: inherit;
  max-height: 20rem;
}
.contact-1 .left .share li .ewm::before {
  content: "";
  left: 50%;
  bottom: -1rem;
  transform: translateX(-90%);
  position: absolute;
  border-top: solid 1rem #eee;
  border-left: solid 0.8rem transparent;
  border-right: solid 0.8rem transparent;
}
.contact-1 .left .share li:hover .ewm {
  display: block;
}
.contact-1 .left .share li:last-child {
  padding-right: 0;
}
.contact-1 .right {
  width: 50%;
}
@media (max-width: 1024px) {
  .contact-1 {
    padding: 40px 0;
  }
  .contact-1 .list {
    display: block;
  }
  .contact-1 .list .left {
    width: 100%;
    padding-top: 0;
  }
  .contact-1 .list .left .text .t-1 {
    align-items: center;
    display: flex;
    min-height: 40px;
    margin-bottom: 10px;
    line-height: 26px;
    padding-left: 60px;
    position: relative;
  }
  .contact-1 .list .left .text .t-1 .icon {
    top: 0;
    left: 0;
    position: absolute;
    width: 40px;
    height: 40px;
  }
  .contact-1 .list .left .text .t-1 .icon img {
    max-width: 40px;
  }
  .contact-1 .list .right {
    width: 100%;
    margin-top: 30px;
  }
}
.dlpp {
  padding: 10rem 0;
}
.dlpp .common-title {
  text-align: center;
}
.dlpp .list {
  margin-top: 2rem;
  height: 38rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.dlpp .list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.dlpp .list li {
  width: 42%;
  text-align: center;
}
.dlpp .list li .pic img {
  max-height: 16rem;
}
.dlpp .list li .tit {
  margin-top: 2rem;
  color: #212121;
  font-size: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
@media (max-width: 1024px) {
  .dlpp {
    padding: 40px 0;
  }
  .dlpp .list {
    height: 150px;
    border-radius: 20px;
    background-size: contain;
  }
  .dlpp .list li {
    width: 40%;
  }
  .dlpp .list li .tit {
    margin-top: 0;
    font-size: 16px;
  }
  .dlpp .list li .pic img {
    max-height: 50px;
  }
}
@media (max-width: 420px) {
  .dlpp .list {
    height: 120px;
    background-size: contain;
  }
}
.dlz {
  min-height: 70rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 7rem 0;
}
.dlz .common-title {
  text-align: center;
}
.dlz .list {
  margin-top: 5rem;
}
.dlz .list ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 7rem;
}
.dlz .list li {
  padding: 0 2.5rem;
  width: 33.333%;
}
.dlz .list li .item {
  padding: 1rem;
  background: #fff;
}
@media (max-width: 1024px) {
  .dlz {
    padding: 40px 0 60px 0;
    min-height: auto;
  }
  .dlz .list ul {
    padding: 0;
  }
  .dlz .list li {
    padding: 0 5px;
  }
}
.dlfs {
  padding: 10rem 0;
}
.dlfs .common-title {
  text-align: center;
}
.dlfs .list {
  margin-top: 4.5rem;
  border-radius: 3rem;
  height: 35.2rem;
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.dlfs .list ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.dlfs .list li {
  width: 30%;
  text-align: center;
}
.dlfs .list li .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22rem;
  height: 22rem;
  margin: 0 auto;
}
.dlfs .list li .item > div {
  z-index: 3;
  position: relative;
}
.dlfs .list li .item::before {
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50%;
  position: absolute;
  background: var(--sub-color);
  transition: all 700ms ease;
}
.dlfs .list li .item .icon img {
  max-height: 8rem;
}
.dlfs .list li .item .tit {
  margin-top: 1rem;
  font-size: 2.6rem;
  color: var(--main-color);
  font-family: var(--font-family-H-S-SC-B);
}
.dlfs .list li:hover .item::before {
  transform: scale(1.04);
  background: rgba(213, 199, 0, 0.75);
}
@media (max-width: 1024px) {
  .dlfs {
    padding: 40px 0;
  }
  .dlfs .list li {
    width: 33.333%;
  }
  .dlfs .list li .item {
    width: 130px;
    height: 130px;
  }
  .dlfs .list li .item .icon img {
    max-height: 40px;
  }
  .dlfs .list li .item .tit {
    font-size: 13px;
    margin-top: 0;
  }
}
@media (max-width: 420px) {
  .dlfs {
    padding: 40px 0;
  }
  .dlfs .list li {
    width: 33.333%;
  }
  .dlfs .list li .item {
    width: 100px;
    height: 100px;
  }
  .dlfs .list li .item .tit {
    font-size: 12px;
  }
}
.yzdz {
  padding: 10rem 0;
}
.yzdz .common-title {
  text-align: center;
}
.yzdz .text {
  color: #333;
  padding-top: 3rem;
  text-align: center;
  font-size: 2.2rem;
  line-height: 3.6rem;
}
.yzdz .text span {
  display: block;
}
.yzdz .pic {
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .yzdz {
    padding: 40px 0;
  }
  .yzdz .text {
    line-height: 24px;
    font-size: 15px;
    text-align: left;
  }
  .yzdz .text span {
    display: inline;
  }
}
.yflc {
  background: #eceded;
  padding: 10rem 0;
}
.yflc .container {
  max-width: 160rem;
}
.yflc .common-title {
  text-align: center;
}
.yflc .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.yflc .list li {
  width: 12.5%;
  margin-top: 7rem;
  padding: 0 1.5rem;
}
.yflc .list li .item {
  width: 75%;
  text-align: center;
}
.yflc .list li .item .nr {
  position: relative;
}
.yflc .list li .item .nr::before {
  content: "";
  top: 2rem;
  left: 0;
  border-radius: 0.8rem;
  width: 12.6rem;
  height: 12.6rem;
  position: absolute;
  transform: rotate(45deg);
  background-color: #bdcad2;
}
.yflc .list li .item .nr::after {
  content: "";
  top: 0;
  left: 0;
  border-radius: 0.8rem;
  width: 12.6rem;
  height: 12.6rem;
  position: absolute;
  transform: rotate(45deg);
  background-color: var(--main-color);
}
.yflc .list li .item span {
  z-index: 3;
  position: relative;
  display: block;
}
.yflc .list li .item .num {
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 50%;
  color: var(--main-color);
  background: var(--sub-color);
  font-family: var(--font-family-H-S-SC-B);
}
.yflc .list li .item .icon {
  margin-top: 1.5rem;
}
.yflc .list li .item .icon img {
  max-height: 5.2rem;
  transition: all 700ms ease;
}
.yflc .list li .item .tit {
  position: relative;
  padding-top: 1.5rem;
  margin-top: 10rem;
  color: #212121;
  font-size: 2.4rem;
  font-family: var(--font-family-H-S-SC-B);
}
.yflc .list li .item .tit::before {
  top: 0;
  left: 50%;
  content: "";
  height: 1px;
  width: 12.8rem;
  position: absolute;
  transform: translateX(-50%);
  background: var(--main-color);
}
.yflc .list li .item .tit::after {
  top: 0;
  opacity: 0;
  left: 50%;
  content: "";
  height: 1px;
  width: 0;
  position: absolute;
  transform: translateX(-50%);
  background: var(--sub-color);
  transition: all 500ms ease;
}
.yflc .list li:nth-child(7) .item .tit {
  width: 120%;
}
.yflc .list li:hover .item .tit::after {
  opacity: 1;
  width: 12.8rem;
}
@media (max-width: 1024px) {
  .yflc {
    margin-bottom: 40px;
    padding: 40px 0;
  }
  .yflc .list li:nth-child(7) .item .tit {
    width: 100 !important;
  }
  .yflc .list li {
    width: 25%;
  }
  .yflc .list li .item .tit {
    font-size: 15px;
  }
}
@media (max-width: 640px) {
  .yflc .list ul {
    margin: 0;
    padding-left: 30px;
  }
  .yflc .list li {
    width: 33.33333333%;
  }
}
@media (max-width: 500px) {
  .yflc .list li {
    width: 50%;
  }
}
.yzdz-2 li {
  align-items: center;
}
.yzdz-2 li .text {
  padding: 4rem;
  border: 0;
}
.yzdz-2 li .text .t-2 {
  color: #474747;
  line-height: 4rem;
  font-size: 2.4rem;
  padding-right: 0;
  margin-top: 0;
}
.yzdz-2 li .pic {
  border-left: solid 1px var(--main-color);
}
@media (max-width: 1024px) {
  .yzdz-2 li .text {
    padding: 20px;
  }
  .yzdz-2 li .text .t-2 {
    font-size: 15px;
    line-height: 24px;
  }
}
.dzbz {
  padding: 0 0 10rem 0;
}
.dzbz .common-title {
  text-align: center;
}
.dzbz .common-text {
  padding: 0 2rem;
  padding-top: 2.5rem;
  text-align: center;
}
.dzbz .pic {
  margin-top: 4rem;
}
@media (max-width: 1024px) {
  .dzbz {
    padding-bottom: 40px;
  }
  .dzbz .common-text {
    padding: 0;
    padding-top: 20px;
  }
}
.jszc-1 {
  padding: 10rem 0;
}
.jszc-1 .common-title {
  text-align: center;
}
.jszc-1 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.jszc-1 .list li {
  padding: 0 3rem;
  padding-top: 6rem;
  width: 33.333%;
  text-align: center;
}
.jszc-1 .list li .item {
  height: 30rem;
  padding-top: 6rem;
  background-color: #fdffff;
  font-family: var(--font-family-H-S-SC-B);
  transition: all 500ms ease;
  box-shadow: -1px 0px 4.3rem 0.8rem rgba(2, 63, 100, 0.09);
}
.jszc-1 .list li .icon {
  margin-bottom: 2.5rem;
}
.jszc-1 .list li .icon img {
  max-height: 8rem;
  transition: all 700ms ease;
}
.jszc-1 .list li .t-1 {
  font-size: 2.8rem;
  color: var(--sub-color);
}
.jszc-1 .list li .t-2 {
  color: #212121;
  font-size: 2.2rem;
}
.jszc-1 .list li:hover .icon img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .jszc-1 {
    padding: 40px 0;
  }
  .jszc-1 .list ul {
    display: block;
  }
  .jszc-1 .list li {
    width: 100%;
    padding-top: 20px;
  }
  .jszc-1 .list li .item {
    padding: 30px;
    height: auto;
  }
}
.jszc-2 {
  background: #eceded;
  padding: 10rem 0;
}
.jszc-2 .container {
  max-width: 160rem;
}
.jszc-2 .common-title {
  text-align: center;
}
.jszc-2 .common-text {
  padding-top: 3rem;
  text-align: center;
}
.jszc-2 .common-text span {
  display: block;
}
.jszc-2 .list {
  margin-top: 6rem;
}
.jszc-2 .list ul {
  display: flex;
  flex-wrap: wrap;
}
.jszc-2 .list li {
  color: #fff;
  background: var(--main-color);
  width: 33.333%;
  display: flex;
  flex-wrap: wrap;
}
.jszc-2 .list li .pic {
  width: 50%;
  overflow: hidden;
}
.jszc-2 .list li .pic img {
  transition: all 700ms linear;
}
.jszc-2 .list li .text {
  width: 50%;
  padding: 2.2rem;
  font-size: 2.4rem;
  padding-top: 5rem;
}
.jszc-2 .list li .arrow {
  display: inline-block;
  border-top: solid 0.8rem transparent;
  border-bottom: solid 0.8rem transparent;
  border-right: solid 1.3rem var(--sub-color);
}
.jszc-2 .list li .tit {
  margin-top: 0.5rem;
}
.jszc-2 .list li .tit span {
  display: block;
}
.jszc-2 .list .li1 {
  flex-direction: row-reverse;
}
.jszc-2 .list .li1 .arrow {
  border-right: 0;
  border-left: solid 1.3rem var(--sub-color);
}
.jszc-2 .list .li1 .text {
  text-align: right;
}
@media (min-width: 1025px) {
  .jszc-2 li:hover .pic img {
    transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  .jszc-2 {
    padding: 40px 0;
  }
  .jszc-2 .common-text {
    text-align: left;
  }
  .jszc-2 .common-text span {
    display: inline-block;
  }
  .jszc-2 .list li {
    width: 50%;
    border: solid 1px #fff;
    align-items: center;
  }
  .jszc-2 .list li .text {
    text-align: left !important;
    font-size: 16px;
    padding: 0 20px;
  }
  .jszc-2 .list li .text span {
    display: inline;
  }
  .jszc-2 .list li .arrow {
    border-left: 0 !important;
    border-top: solid 0.8rem transparent !important;
    border-bottom: solid 0.8rem transparent !important;
    border-right: solid 1.3rem var(--sub-color) !important;
  }
  .jszc-2 .list li {
    flex-direction: row!important;
  }
  .jszc-2 .list li:nth-child(2n) {
    flex-direction: row-reverse !important;
  }
  .jszc-2 .list li:nth-child(2n) .text {
    text-align: right !important;
  }
  .jszc-2 .list li:nth-child(2n) .arrow {
    text-align: right;
    border-right: 0 !important;
    border-top: solid 0.8rem transparent !important;
    border-bottom: solid 0.8rem transparent !important;
    border-left: solid 1.3rem var(--sub-color) !important;
  }
}
@media (max-width: 640px) {
  .jszc-2 .list li {
    border: 0;
    width: 100%;
  }
}
.jszc-3 {
  padding: 10rem 0;
}
.jszc-3 .common-title {
  text-align: center;
}
.jszc-3 .list {
  display: flex;
  padding: 5rem;
  margin-top: 4rem;
  flex-direction: row-reverse;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: -1px 0px 4.3rem 0.8rem rgba(2, 63, 100, 0.09);
}
.jszc-3 .left {
  width: 57%;
  border-radius: 1rem;
  position: relative;
}
.jszc-3 .left .pic {
  border-radius: 1rem;
}
.jszc-3 .left .pic img {
  border-radius: 1rem;
}
.jszc-3 .left .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 1rem;
  height: 1rem;
}
.jszc-3 .left .swiper-pagination-bullet-active {
  background: var(--sub-color);
}
.jszc-3 .right {
  width: 40%;
  padding-top: 3rem;
}
.jszc-3 .right .t-1 {
  color: #333;
  margin-top: 1rem;
  font-size: 2.4rem;
}
.jszc-3 .right .t-1 span {
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .jszc-3 {
    padding: 40px 0;
  }
  .jszc-3 .list {
    padding: 20px;
    display: block;
    border-radius: 10px;
  }
  .jszc-3 .left {
    width: 100%;
  }
  .jszc-3 .right {
    width: 100%;
  }
  .jszc-3 .right .t-1 {
    font-size: 15px;
  }
}
.fzlc {
  padding: 10rem 0;
}
.fzlc ul {
  padding-bottom: 10rem;
  position: relative;
  background-size: cover;
  background-repeat: repeat-y;
  background-position: top center;
}
.fzlc ul::before {
  top: 0;
  left: 50%;
  content: "";
  z-index: 1;
  width: 4.4rem;
  height: 4.3rem;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
  background-color: #d5c700;
}
.fzlc ul::after {
  content: "";
  left: 35%;
  top: 0;
  width: 30rem;
  height: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/fzlc-line.png);
  background-size: cover;
}
.fzlc li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fzlc li .item {
  width: 50%;
}
.fzlc li .item:first-child {
  text-align: right;
}
.fzlc li .item:first-child .t-1 {
  display: block;
  text-align: right;
}
.fzlc li .item:first-child .t-1 i {
  top: 0;
  position: absolute;
}
.fzlc li .item:last-child {
  margin-top: 5rem;
      padding-right: 10rem;
}
.fzlc li .time {
  color: #210121;
  font-size: 4.4rem;
  line-height: 5rem;
  font-family: var(--font-family-H-S-SC-B);
}
.fzlc li .t-1 {
  display: flex;
  align-items: flex-start;
  margin-top: 1.5rem;
  line-height: 2.4rem;
  position: relative;
  font-size: 2rem;
  color: #333;
}
.fzlc li .t-1 i {
  margin-top: 1.5rem;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sub-color);
  top: 0;
  position: absolute;
}
.fzlc li .t-1 span {
  padding-left: 1.5rem;
}
.fzlc li:nth-child(1) {
  padding-bottom: 8rem;
}
.fzlc li:nth-child(1) .item:last-child {
  margin-top: 0;
  padding-left: 8rem;
}
.fzlc li:nth-child(2) .item:first-child {
  margin-top: -2rem;
  position: relative;
  padding-right: 0rem;
}
.fzlc li:nth-child(2) .item:last-child {
  padding-left: 16rem;
}
.fzlc li:nth-child(3) .item:first-child {
  position: relative;
  margin-top: -3rem;
  padding-right: 5rem;
}
.fzlc li:nth-child(3) .item:last-child {
  padding-top: 3rem;
  padding-left: 10rem;
  padding-right: 3rem;
}
.fzlc li:nth-child(4) .item:first-child {
  padding-top: 4rem;
  padding-right: 20rem;
}
.fzlc li:nth-child(4) .item:last-child {
  padding-top: 11rem;
  padding-left: 6rem;
}
.fzlc li:nth-child(5) .item:first-child {
  padding-top: 2rem;
  padding-right: 17rem;
}
.fzlc li:nth-child(5) .item:last-child {
  left: 0;
  position: relative;
  padding-top: 14rem;
  padding-left: 0rem;
}
.fzlc li:nth-child(6) .item:first-child {
  padding-right: 20rem;
}
.fzlc li:nth-child(6) .item:last-child {
  left: -3rem;
  position: relative;
  padding-top: 12rem;
  padding-right: 4rem;
}
.fzlc li:nth-child(7) .item:first-child {
  padding-top: 5rem;
  padding-right: 15rem;
}
.fzlc li:nth-child(7) .item:last-child {
  padding-left: 5rem;
  padding-right: 0;
  padding-top: 18.5rem;
}
.fzlc li:nth-child(8) .item:first-child {
  padding-top: 5rem;
  padding-right: 15rem;
}
.fzlc li:nth-child(8) .item:last-child {
  padding-left: 9rem;
  padding-right: 0;
  padding-top: 19rem;
}
.fzlc li:nth-child(9) .item:first-child {
  margin-top: -5rem;
  position: relative;
  padding-right: 5rem;
}
.fzlc li:nth-child(9) .item:last-child {
	margin-top: 10rem;
    position: relative;
	padding-right: 0;
    padding-left: 15rem;
}

.fzlc li:nth-child(10) .item:first-child {
  position: relative;
  padding-right: 5rem;
}
.fzlc li:nth-child(10) .item:last-child {
	margin-top: 10rem;
    position: relative;
	padding-right: 0;
    padding-left: 15rem;
}

@media (max-width: 1024px) {
  .fzlc {
    padding: 40px 0;
  }
  .fzlc ul {
    padding-bottom: 0;
    padding-left: 40px;
  }
  .fzlc ul::before {
    display: none;
  }
  .fzlc ul::after {
    width: 1px;
    left: 9px;
    top: 20px;
    background: var(--sub-color);
  }
  .fzlc li:first-child .item {
    padding-top: 0 !important;
  }
  .fzlc li {
    padding-bottom: 0 !important;
    display: block;
  }
  .fzlc li .item {
    left: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-top: 30px !important;
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .fzlc li .time {
    font-size: 24px;
    position: relative;
  }
  .fzlc li .time::before {
    left: -37px;
    top: 12px;
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    transform: translate(0);
    background: var(--sub-color);
  }
  .fzlc li .t-1 {
    line-height: 24px;
    font-size: 15px !important;
    position: relative;
    padding-left: 12px !important;
    text-align: left !important;
    display: block  !important;
    justify-content: flex-start !important;
  }
  .fzlc li .t-1 i {
    margin: 0!important;
    top: 10px !important;
    left: 0;
    width: 5px;
    height: 5px;
    position: absolute;
    background: var(--main-color);
  }
  .fzlc li .t-1 span {
    padding-left: 0;
  }
}
.join {
  overflow: hidden;
  padding: 4rem 0 10rem 0;
}
.join .part {
  padding-top: 6rem;
}
.join .part .common-title {
  margin-bottom: 3rem;
}
.join .checkboxDiv {
  cursor: pointer;
  position: relative;
  color: #666666;
  font-size: 1.6rem;
  line-height: 2.2rem;
  display: inline-flex;
  vertical-align: top;
  align-items: center;
  z-index: 9;
}
.join .checkboxDiv > i {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.4rem;
  border-width: 0.1rem;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  text-align: center;
  border: 0.1rem solid #999;
  background-color: #fff;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  margin-right: 0.5rem;
  position: relative;
}
.join .checkboxDiv > i::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon/check.svg) center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff"  viewBox="0 0 16 16"><path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.join .checkboxDiv input[type="checkbox"] {
  display: none !important;
}
.join .checkboxDiv input[type="checkbox"]:checked + i {
  background-color: var(--sub-color);
  border-color: var(--sub-color);
}
.join .checkboxDiv input[type="checkbox"]:checked + i ~ span {
  color: rgba(0, 0, 0, 0.8);
}
.join .radioDiv {
  cursor: pointer;
  position: relative;
  color: #666666;
  font-size: 1.6rem;
  line-height: 2.2rem;
  display: inline-flex;
  margin-right: 4rem;
  align-items: center;
  z-index: 9;
}
.join .radioDiv:last-child {
  margin-right: 0;
}
.join .radioDiv > i {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.4rem;
  border-width: 0.1rem;
  font-size: 1.2rem;
  border-radius: 50%;
  text-align: center;
  border: 0.1rem solid #999;
  background-color: #fff;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  margin-right: 0.5rem;
  position: relative;
}
.join .radioDiv > i::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url(../images/check.svg) center;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23ffffff"  viewBox="0 0 16 16"><path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425a.267.267 0 0 1 .02-.022z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.join .radioDiv input[type="radio"] {
  display: none !important;
}
.join .radioDiv input[type="radio"]:checked + i {
  background-color: var(--sub-color);
  border-color: var(--sub-color);
}
.join .radioDiv input[type="radio"]:checked + i ~ span {
  color: rgba(0, 0, 0, 0.8);
}
.join .list-form {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1rem;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
.join .list-form li {
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 3rem;
}
.join .list-form .col-2 {
  width: 50%;
}
.join .list-form .col-3 {
  width: 33.33333333%;
}
.join .list-form .text-bt {
  padding-bottom: 1rem;
  color: #212121;
  font-size: 1.8rem;
}
.join .list-form .text-bt i {
  font-style: normal;
  color: #ff0000;
}
.join .list-form .text-checkbox {
  display: flex;
  flex-wrap: wrap;
}
.join .list-form .gwal .txtShm {
  flex: 1;
}
.join .list-form .gwal .text-input {
  display: flex;
  flex-wrap: wrap;
}
.join .list-form .text-input select,
.join .list-form .text-select select,
.join .list-form .text-input input[type="text"],
.join .list-form .text-select input[type="text"] {
  color: #333;
  padding: 0 2rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  width: 100%;
  height: 5rem;
  line-height: 4.8rem;
  border: solid 1px #d4d4d4;
  background: transparent;
  font-family: var(--font-family-H-S-SC-R);
}
.join .list-form .text-input input[type="text"]:focus {
  border-color: var(--sub-color);
}
.join .list-form .text-select select {
  color: #999;
}
.join .list-form .text-checkbox .checkboxDiv {
  margin-right: 4rem;
}
.join .list-form .text-checkbox .checkboxDiv:last-child {
  margin-right: 0;
}
.join .list-form .other-input {
  flex: 1;
  border: none;
  border-bottom: 1px #eee solid;
}
.join .list-form .txtShm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #666666;
  padding: 0 2rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  min-width: 19rem;
  height: 5rem;
  line-height: 4.8rem;
  border: solid 1px #d4d4d4;
  background: transparent;
  position: relative;
  margin-right: 1rem;
}
.join .list-form .file-form {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #666666;
  padding: 0 2rem;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  min-width: 19rem;
  height: 5rem;
  line-height: 4.8rem;
  border: solid 1px #d4d4d4;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.join .list-form .file-form:hover {
  border-color: var(--sub-color);
}
.join .list-form .file-form input[type="file"] {
  width: 200%;
  height: 200%;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.join .list-form .file-form .icon {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
}
.join .list-form .file-form .icon::before,
.join .list-form .file-form .icon::after {
  content: "";
  display: block;
  background: #666666;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.join .list-form .file-form .icon::before {
  width: 1.4rem;
  height: 0.2rem;
}
.join .list-form .file-form .icon::after {
  width: 0.2rem;
  height: 1.4rem;
}
.join .list-form textarea {
  color: #333;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  width: 100%;
  height: 12rem;
  line-height: 3rem;
  border: solid 1px #d4d4d4;
  background: transparent;
  font-family: var(--font-family-H-S-SC-R);
}
.join .list-form textarea:focus {
  border-color: var(--sub-color);
}
.join .submitBtn {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  min-width: 15rem;
  line-height: 5rem;
  background: var(--sub-color);
  color: #fff;
  padding: 0 2rem;
}
.join .submitBtn svg {
  fill: #fff;
  width: 2rem;
  height: 2rem;
}
.join .ys {
  padding-top: 2rem;
  font-size: 1.6rem;
}
.join .ymm-btn {
  padding-top: 3rem;
}
.join .ymm-btn .box {
  display: flex;
  flex-wrap: wrap;
}
.join .verify {
  font-size: 1.6rem;
  height: 5rem;
  background-color: #ebebeb;
  position: relative;
}
.join .verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 5rem;
  height: 5rem;
  border: 0.1rem #e5e5e5 solid;
  background: #fff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 2rem 2rem;
  z-index: 2;
  cursor: move;
}
.join .verify .suc-drag-btn {
  background: #fff url(../images/drag-success.svg) no-repeat center center;
  background-size: 3rem;
}
.join .verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 5rem;
  line-height: 5rem;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
}
.join .verify .fix-tips,
.join .verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #999999;
  z-index: 1;
  line-height: 5rem;
  padding-left: 5rem;
  text-align: center;
}
.join .verify .verify-msg {
  padding-left: 0;
  padding-right: 5rem;
}
.join .verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.join .verifyDiv {
  width: 30%;
  vertical-align: middle;
  margin-right: 2rem;
  position: relative;
}
@media (max-width: 1024px) {
  .join {
    padding: 40px 0 100px 0;
  }
  .join .part {
    padding-top: 20px;
  }
  .join .part .common-title {
    margin-bottom: 30px;
  }
  .join .checkboxDiv {
    font-size: 16px;
    line-height: 22px;
  }
  .join .checkboxDiv > i {
    width: 16px;
    height: 16px;
    line-height: 14px;
    border-width: 1px;
    font-size: 12px;
    border-radius: 3px;
    border: 1px solid #666666;
    margin-right: 5px;
  }
  .join .checkboxDiv > i::before {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
  .join .radioDiv {
    font-size: 16px;
    line-height: 22px;
    margin-right: 40px;
  }
  .join .radioDiv > i {
    width: 16px;
    height: 16px;
    line-height: 14px;
    border-width: 1px;
    font-size: 12px;
    border: 1px solid #666666;
    margin-right: 5px;
  }
  .join .radioDiv > i::before {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
  .join .list-form {
    padding-top: 10px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .join .list-form li {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .join .list-form .text-bt {
    padding-bottom: 10px;
    font-size: 18px;
  }
  .join .list-form .text-input select,
  .join .list-form .text-select select,
  .join .list-form .text-input input[type="text"],
  .join .list-form .text-select input[type="text"] {
    padding: 0 20px;
    font-size: 16px;
    border-radius: 5px;
    height: 50px;
    line-height: 48px;
  }
  .join .list-form .text-checkbox .checkboxDiv {
    margin-right: 40px;
  }
  .join .list-form .other-input {
    border-bottom: 1px #eee solid;
  }
  .join .list-form .txtShm {
    padding: 0 20px;
    font-size: 16px;
    border-radius: 5px;
    min-width: 190px;
    height: 50px;
    line-height: 24px;
    border: solid 1px #d4d4d4;
    margin-right: 10px;
  }
  .join .list-form .file-form {
    padding: 0 20px;
    font-size: 14px;
    border-radius: 5px;
    min-width: 190px;
    height: 50px;
    line-height: 48px;
    border: solid 1px #d4d4d4;
  }
  .join .list-form .file-form .icon {
    width: 14px;
    height: 14px;
  }
  .join .list-form .file-form .icon::before {
    width: 14px;
    height: 2px;
  }
  .join .list-form .file-form .icon::after {
    width: 2px;
    height: 14px;
  }
  .join .list-form textarea {
    padding: 10px 20px;
    font-size: 16px;
    width: 100%;
    height: 120px;
    line-height: 30px;
    border: solid 1px #d4d4d4;
  }
  .join .submitBtn {
    min-width: 100px;
    line-height: 50px;
    padding: 0 10px;
  }
  .join .submitBtn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
  }
  .join .ys {
    padding-top: 0;
    font-size: 16px;
  }
  .join .ymm-btn {
    padding-top: 30px;
  }
  .join .verify {
    font-size: 16px;
    height: 50px;
  }
  .join .verify .drag-btn {
    width: 50px;
    height: 50px;
    border: 1px #e5e5e5 solid;
    background-size: 20px 20px;
  }
  .join .verify .suc-drag-btn {
    background-size: 30px;
  }
  .join .verify .drag-progress {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }
  .join .verify .fix-tips,
  .join .verify .verify-msg {
    line-height: 50px;
    padding-left: 50px;
    font-size: 14px;
  }
  .join .verify .verify-msg {
    padding-right: 50px;
  }
  .join .verifyDiv {
    width: auto;
    flex: 1;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .join .list-form .col-2 {
    width: 100%;
  }
  .join .list-form .col-3 {
    width: 100%;
  }
  .join .list-form .text-checkbox .checkboxDiv {
    margin-right: 10px;
  }
  .join .list-form .txtShm {
    margin-bottom: 10px;
    margin-right: 0;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .join .list-form .file-form {
    width: 100%;
  }
}
.common-page {
  font-size: 1.4rem;
  text-align: center;
  padding-top: 8rem;
}
.common-page a {
  color: #000;
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 3.8rem;
  margin: 0 0.5rem;
  font-size: 1.4rem;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #b5b5b5;
}
.common-page a:hover,
.common-page .cur {
  color: #fff;
  border-color: var(--sub-color);
  background: var(--sub-color);
}
.common-page .prev,
.common-page .next {
  margin: 0 4rem;
  position: relative;
}
.common-page .prev:before {
  content: "<";
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.common-page .next:after {
  content: ">";
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.common-page span {
  padding-left: 2rem;
  font-size: 1.4rem;
}
.common-page span input {
  color: #666;
  width: 6rem;
  padding: 0 1rem;
  height: 2.4rem;
  text-align: center;
  font-family: arial;
}
@media (max-width: 1024px) {
  .common-page {
    padding: 40px 0 0 0;
  }
  .common-page .prev,
  .common-page .next {
    width: auto;
    margin: 0;
    border-radius: 0;
  }
  .common-page a {
    width: auto;
    height: auto;
    padding: 0 10px;
    border-radius: 0;
    margin: 0;
  }
  .common-page span {
    display: none;
  }
}
#searchPopup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
#searchPopup .transparent {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
}
#searchPopup .searchBox {
  color: #fff;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 0;
  opacity: 0;
  padding-right: 0;
  position: absolute;
  transition: all 0.5s;
}
#searchPopup .searchBox.fadeIn {
  top: 0;
  opacity: 1;
  z-index: 999;
}
#searchPopup .searchBox .container {
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  transform: translateX(0rem);
}
#searchPopup .searchBox input {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border: 1px #fff solid;
  background: #fff;
  color: #333;
  width: 100%;
  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(--sub-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 .close {
  display: none;
}
#searchPopup .searchBox2.fadeIn {
  top: 9.5rem;
}
@media screen and (max-width: 1024px) {
  #searchPopup .searchBox {
    top: 80px;
  }
  #searchPopup .searchBox .container {
    transform: translateX(0);
  }
  #searchPopup .searchBox input {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }
  #searchPopup .searchBox .btn {
    right: 15px;
    height: 36px;
    width: 36px;
  }
  #searchPopup .searchBox .btn svg {
    width: 20px;
    height: 20px;
    margin: 8px auto 0 auto;
  }
}
.verifyDiv {
  width: 30%;
  vertical-align: middle;
  position: relative;
}
.verify {
  height: 5rem;
  background-color: #e8e8e8;
  position: relative;
}
.verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 5rem;
  height: 5rem;
  border: 1px #e5e5e5 solid;
  background: #fff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 2rem 2rem;
  z-index: 2;
  cursor: move;
}
.verify .suc-drag-btn {
  background: #fff url(../images/drag-success.svg) no-repeat center center;
  background-size: 2rem 2rem;
}
.verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5rem;
  line-height: 4.8rem;
  background-color: #7ac23c;
  color: #fff;
  text-align: center;
}
.verify .fix-tips,
.verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #666;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 4.8rem;
  padding-left: 5rem;
  text-align: center;
}
.verify .verify-msg {
  padding-left: 0;
  padding-right: 5rem;
}
.verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.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;
  object-fit: cover;
  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 {
  display: inline-block;
  width: 32px;
  height: 32px;
  padding-top: 7px;
  border-radius: 5px;
  border: solid 1px var(--main-color);
  cursor: pointer;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  margin: 0 auto;
  display: block;
  width: 18px;
  height: 3px;
  margin-bottom: 3px;
  position: relative;
  background: var(--main-color);
  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:nth-last-child(2) {
  transform: rotate(0);
  transition: width 0.5s ease;
}
.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 .caidan {
  padding-bottom: 15px;
  padding-left: 5px;
}
.common-navM .navMWrap > .list .caidan a {
  color: #999;
  font-size: 13px;
  line-height: 16px;
}
.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: 0px;
  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;
  }
}
.inside-map {
  padding: 7rem 0;
}
.inside-map li {
  padding: 1.5rem 0;
}
.inside-map h3 {
  padding-bottom: 1.5rem;
}
.inside-map .drop a {
  padding-right: 2rem;
  display: inline-block;
}
.popbox {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.popbox .close {
  top: 3rem;
  right: 4rem;
  position: absolute;
}
.popbox .close svg {
  width: 3.4rem;
  height: 3.4rem;
  fill: #666;
}
.popbox .close:hover svg {
  fill: var(--main-color);
}
.popbox .nr {
  width: 100%;
  top: 50%;
  left: 50%;
  position: absolute;
  max-width: 100rem;
  padding: 5rem;
  background: #fff;
  border-radius: 1rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}
.popbox .nr .title {
  color: #0f0f0f;
  font-size: 2.4rem;
}
.popbox .nr .info {
  padding-top: 2rem;
  padding-bottom: 5rem;
  border-bottom: solid 1px #cacaca;
  display: flex;
  flex-wrap: wrap;
}
.popbox .nr .info span {
  width: 35%;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
.popbox .nr .info img {
  margin-right: 0.5rem;
  max-height: 2rem;
}
.popbox .nr .text {
  overflow: auto;
  height: 35rem;
  padding-right: 1rem;
  line-height: 3.2rem;
}
.popbox .nr .text .t-1 {
  color: #000;
  font-size: 2rem;
  padding-top: 3rem;
}
.popbox .button {
  margin-top: 6rem;
  text-align: center;
}
.popbox .button a {
  color: #fff;
  line-height: 4.8rem;
  display: inline-block;
  height: 4.8rem;
  min-width: 16rem;
  border-radius: 3rem;
  background: var(--main-color);
  transition: all 500ms ease;
}
.popbox .button img {
  margin-bottom: 0.1rem;
  vertical-align: middle;
  max-height: 2rem;
  margin-right: 1rem;
}
.popbox .button a:hover {
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .popbox .nr {
    border-radius: 0;
    max-width: 100%;
  }
  .popbox .nr .info span {
    width: 100%;
  }
}
.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: 1.3rem;
  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: var(--sub-color);
  border-radius: 2.1rem;
  font-size: 1.6rem;
  display: block;
  color: #fff;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1025px) {
  #dingyue .input a:hover {
    background: #8229c5;
  }
}
.floatbox {
  bottom: 5rem;
  right: 1.5rem;
  z-index: 100;
  position: fixed;
  transform: translateY(-50%);
}
.floatbox li {
  padding-top: 1rem;
}
.floatbox li a {
  font-size: 1.2rem;
  width: 5.5rem;
  height: 5.2rem;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  text-align: center;
  justify-content: center;
}
.floatbox li span {
  display: block;
  background: var(--sub-color);
  background-clip: text;
  color: transparent;
}
.floatbox li:first-child a {
  background: var(--sub-color);
}
.floatbox .returnTopBtn {
  position: relative;
}
.floatbox .returnTopBtn:before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-left: solid 1px #333;
  border-top: solid 1px #333;
  transform: rotate(45deg);
}
@media (max-width: 1024px) {
  .floatbox {
    display: none;
  }
}
.floatbox .returnTopBtn {
  opacity: 0;
  transition: opacity 0.5s;
}
.floatbox .returnTopBtn.show {
  opacity: 1;
}
