* {
  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: #0c2a46;
  --sub-color: #02d4f1;
  --font-family-0: "方正细圆简体";
  --font-family-B-S-B: 'BrandingSF-Bold';
  --font-family-B-S-L: 'BrandingSF-Light';
  --font-family-B-S-M: 'BrandingSF-Medium';
}
@font-face {
  font-family: '方正细圆简体';
  src: url('../fonts/方正细圆简体.TTF');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BrandingSF-Bold';
  src: url('../fonts/BrandingSF-Bold.otf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BrandingSF-Light';
  src: url('../fonts/BrandingSF-Light.otf');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BrandingSF-Medium';
  src: url('../fonts/BrandingSF-Medium.otf');
  font-style: normal;
  font-display: swap;
}
a {
  color: #0c2a46;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: var(--main-color);
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #616161;
  outline: none;
}
html,
body {
  position: relative;
  background: #fff;
}
html {
  font-size: 10px;
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px !important;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px !important;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  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: -11rem;
  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(0, 168, 197, 0.7);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: var(--sub-color);
  animation: ripple 2s ease-out 1s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  animation-name: fadeInDown3;
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow {
  animation-name: scrollArrow;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
/* 载入效果 */
@keyframes titFadeup1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}
@keyframes titFadeup1_1 {
  0% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 60px);
    transform: translate(-50%, 60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.titFadeup1 {
  animation: titFadeup1 1.1s ease-in-out both 0.1s;
}
.titFadeup2 {
  animation: titFadeup1 1.1s ease-in-out both 0.2s;
}
.fadeInup1 {
  animation: fadeInup 1.1s ease-in-out both 0.2s;
}
.fadeInup2 {
  animation: fadeInup 1.1s ease-in-out both 0.3s;
}
.fadeInup3 {
  animation: fadeInup 1.1s ease-in-out both 0.4s;
}
.fadeInUpimg {
  animation: imgScale 1.2s ease-in-out both 0.2s;
}
@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
.xuanzhuan2 {
  animation-name: xuanzhuan2;
}
body {
  color: #0c2a46;
  background: #fff;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.5;
  word-wrap: normal;
  letter-spacing: 0.2rem;
  font-family: var(--font-family-B-S-L),var(--font-family-0);
}
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 177rem;
}
@media (max-width: 1024px) {
  .container {
    max-width: 640px !important;
    padding: 0 20px !important;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.header-info {
  color: #fff;
  background: var(--main-color);
}
.header-info .container {
  height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-info .left-group {
  display: flex;
}
.header-info .left-group span {
  padding-top: 0.8rem;
  position: relative;
  margin-right: 3rem;
}
.header-info .left-group span svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #fff;
}
.header-info .left-group span:last-child svg {
  width: 2rem;
  height: 2rem;
}
.header-info .left-group span:hover .ewm-hover {
  display: block;
}
.header-info .left-group .ewm-hover {
  display: none;
  top: 4.4rem;
  left: -4rem;
  z-index: 3;
  width: 10rem;
  height: 10rem;
  position: absolute;
}
.header-info .left-group .ewm-hover::before {
  content: "";
  top: -0.6rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 0.6rem #fff;
  border-left: solid 0.4rem transparent;
  border-right: solid 0.4rem transparent;
}
.header-info .left-group .ewm-hover img {
  max-height: 10rem;
}
.header-info .right-group {
  display: flex;
  align-items: center;
}
.header-info .searchBtn {
  z-index: 2;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
  padding-top: 0.4rem;
}
.header-info .searchBtn svg {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  z-index: 1;
  transition: 0.5s;
}
.header-info .searchBtn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  background: var(--sub-color);
}
.header-info .searchBtn:hover svg {
  fill: #fff !important;
}
.header-info .member {
  padding: 0 2rem;
  padding-top: 0.4rem;
}
.header-info .member a {
  color: #fff;
}
.header-info .member svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: #fff;
}
.header-info .language {
  padding-top: 0.4rem;
}
.header-info .language a {
  color: #fff;
  font-size: 1.2rem;
}
.header-info .language svg {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  margin-right: 0.5rem;
}
.header-info .language i {
  margin-left: 0.5rem;
  margin-top: 1rem;
  vertical-align: top;
  display: inline-block;
  border-top: solid 0.4rem #fff;
  border-left: solid 0.4rem transparent;
  border-right: solid 0.4rem transparent;
}
@media (max-width: 1024px) {
  .header-info {
    display: none;
  }
}
.header .listbox {
  padding: 0 7rem;
  max-width: 192rem;
  position: relative;
  display: flex;
  align-items: center;
  height: 11rem;
  justify-content: space-between;
}
.header .logo img {
  max-height: 6.4rem;
}
.header .member-ph {
  display: none;
}
.header .button a {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.6rem;
  text-align: center;
  display: inline-block;
  min-width: 15rem;
  height: 4rem;
  line-height: 4rem;
  transition: all 500ms ease;
  background-color: #092845;
  border-radius: 2rem;
}
.header .button:hover a {
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .header {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    position: fixed !important;
  }
  .header .listbox {
    height: 60px !important;
  }
  .header .common-nav,
  .header .button {
    display: none;
  }
  .header .member-ph {
    margin-top: 0.8rem;
    margin-right: 8rem;
    display: block;
  }
  .header .member-ph svg {
    fill: #666;
    width: 3rem;
    height: 3rem;
  }
  .header .logo img {
    max-height: 40px;
  }
}
.common-nav .listNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.common-nav .listNav > li.active > a {
  font-weight: 700;
  color: var(--main-color) !important;
}
.common-nav .listNav > li {
  padding: 0 5rem;
  text-align: center;
  position: relative;
}
.common-nav .listNav > li > a {
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.35rem;
  color: var(--main-color);
  font-size: 2.2rem;
  height: 11rem;
  line-height: 4rem;
  padding: 3.5rem 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.common-nav .listNav > li > a > span {
  display: inline-block;
  overflow: hidden;
  height: 4rem;
  line-height: 4rem;
  position: relative;
}
.common-nav .listNav > li > a .txt-1 {
  display: block;
  transition: 0.5s;
}
.common-nav .listNav > li > a .txt-2 {
  display: block;
  transform: translateY(100%);
  transition: 0.5s;
}
.common-nav .listNav > li:hover > a:after {
  left: 0;
  width: 100%;
  opacity: 1;
}
.common-nav .listNav > li:hover > a > span::after {
  width: 100%;
}
.common-nav .listNav > li:hover > a .txt-1 {
  transform: translateY(-100%);
}
.common-nav .listNav > li:hover > a .txt-2 {
  transform: translateY(-100%);
}
.common-nav .listNav > li:hover > a:hover:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.common-nav .listNav > li.active > a {
  color: var(--main-color);
}
.common-nav .listNav > li.active > a:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.common-nav .listNav > li:last-child > a span {
  padding-right: 0;
}
.common-nav .listNav > li > .child {
  display: block;
  min-width: 20rem;
  text-align: center;
  position: absolute;
  z-index: 9999;
  top: 11rem;
  left: 50%;
  transform-origin: 0 0;
  transform: scaleY(0) translateX(-50%);
  transition: transform 0.2s;
  color: #333;
}
.common-nav .listNav > li > .child::before {
  display: none;
  content: "";
  top: -1rem;
  left: 50%;
  z-index: 3;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 1rem #fff;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
}
.common-nav .listNav > li > .child a {
  color: #666;
}
.common-nav .listNav > li > .child > .list {
  border-radius: 1rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}
.common-nav .listNav > li > .child > .list a {
  width: 100%;
  display: block;
  color: #666;
  height: auto;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0.5rem 1rem;
  position: relative;
}
.common-nav .listNav > li > .child > .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child > .list-2 {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 2rem 6rem 2rem;
  background: #fafafa;
}
.common-nav .listNav > li > .child > .list-2 > li {
  width: 50%;
  padding: 0 6rem;
}
.common-nav .listNav > li > .child > .list-2 .title {
  font-size: 1.8rem;
  color: var(--main-color);
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.common-nav .listNav > li > .child > .list-2 .title a {
  color: var(--main-color);
  display: block;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a {
  color: #212121;
  font-size: 1.8rem;
  line-height: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child.child-2 {
  width: 80rem;
}
.common-nav .listNav > li > .child.child-2 > .list {
  display: flex;
  flex-wrap: wrap;
}
.common-nav .listNav > li > .child.child-2 > .list li {
  min-width: 50%;
}
.common-nav .listNav > li > .child.show {
  display: block;
  transform: scaleY(1) translateX(-50%);
}
.common-nav .listNav > li > .child.child-pro {
  min-width: 100%;
  background: #f9f9fa;
}
.common-nav .listNav > li > .child.child-pro .container {
  padding-top: 3.5rem;
  padding-bottom: 9rem;
  display: flex;
  max-width: 152rem;
  justify-content: space-between;
}
.common-nav .listNav > li > .child.child-pro .left-pro {
  width: 20%;
}
.common-nav .listNav > li > .child.child-pro .left-pro li {
  transition: all 500ms ease;
  font-size: 2rem;
  text-align: center;
  border-radius: 4px;
  height: 5.7rem;
  display: flex;
  align-items: center;
}
.common-nav .listNav > li > .child.child-pro .left-pro li a {
  width: 100%;
  text-align: left;
  padding: 0 2.5rem;
  display: block;
}
.common-nav .listNav > li > .child.child-pro .left-pro li:hover,
.common-nav .listNav > li > .child.child-pro .left-pro .active {
  background: #fff;
}
.common-nav .listNav > li > .child.child-pro .right-box {
  width: 77%;
  padding-left: 10.7rem;
  border-left: solid 1px #e4e8e8;
}
.common-nav .listNav > li > .child.child-pro .right-cot {
  display: none;
}
.common-nav .listNav > li > .child.child-pro .right-cot.show {
  display: block;
}
.common-nav .listNav > li > .child.child-pro .right-cot ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  margin-top: -4rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot li {
  padding: 0 1rem;
  margin-top: 4rem;
  width: 33.333%;
}
.common-nav .listNav > li > .child.child-pro .right-cot li .item {
  transition: all 500ms ease;
  padding: 1rem 4rem;
  display: block;
  background: #fff;
  height: 31rem;
  border-radius: 0.8rem;
  border: solid 1px #e4e8e8;
}
.common-nav .listNav > li > .child.child-pro .right-cot li .item .pic {
  overflow: hidden;
  position: relative;
}
.common-nav .listNav > li > .child.child-pro .right-cot li .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 75.75%;
}
.common-nav .listNav > li > .child.child-pro .right-cot li .item .pic img {
	transition: all 500ms ease;
	/*width: 100%;
	height: 100%;
	object-fit: cover;*/
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-case li .item .pic img {
	transition: all 500ms ease;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.common-nav .listNav > li > .child.child-pro .right-cot li .item .tit {
  margin-top: 2rem;
  color: var(--main-color);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  height: 6.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.common-nav .listNav > li > .child.child-pro .right-cot li:hover .item {
  border-color: var(--main-color);
}
.common-nav .listNav > li > .child.child-pro .right-cot li:hover .item .pic img {
  transform: scale(1.1);
}
.header-2,
.fixed {
  top: 0;
  left: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 9999;
  width: 100%;
}
.header-2 .logo .img1,
.fixed .logo .img1 {
  display: none;
}
.header-2 .logo .img2,
.fixed .logo .img2 {
  display: block;
}
.header-2 .language a,
.fixed .language a {
  color: #666;
}
.header-2 .language::after,
.fixed .language::after {
  border-top: solid 0.6rem #666;
}
.header-2 .language::before,
.fixed .language::before {
  background: linear-gradient(to bottom, #f8f8f8, #ddd, #f8f8f8);
}
.header-2 .language svg,
.fixed .language svg,
.header-2 .searchBtn svg,
.fixed .searchBtn svg {
  fill: #666;
}
.header-2 .rightInfo .lxwm a,
.fixed .rightInfo .lxwm a {
  color: #666;
}
.header-2 .common-nav .listNav > li > a,
.fixed .common-nav .listNav > li > a {
  color: #231815;
}
.header-2 .common-nav .listNav > li .icon,
.fixed .common-nav .listNav > li .icon {
  border-right: solid 1px #231815;
  border-bottom: solid 1px #231815;
}
.header-2 {
  top: auto;
  left: auto;
  position: relative;
  box-shadow: none;
}
.fixed {
  position: fixed;
}
.common-name {
  letter-spacing: 0;
  font-family: var(--font-family-B-S-L);
}
.common-button a {
  font-weight: 700;
  color: var(--main-color);
  transition: all 500ms ease;
  padding: 0 2.4rem;
  display: inline-block;
  min-width: 18.2rem;
  height: 5.4rem;
  line-height: 5.4rem;
  letter-spacing: 0.18rem;
  background-color: var(--sub-color);
  border-radius: 3rem;
}
.common-button a span {
  float: right;
}
.common-button svg {
  width: 3rem !important;
  height: 3rem !important;
}
.common-button a:hover {
  color: #fff;
  background: var(--main-color);
}
.common-title {
  font-size: 4.6rem;
  line-height: 5rem;
  letter-spacing: 0.74rem;
  color: var(--main-color);
}
.common-title span {
  letter-spacing: 0;
  font-family: var(--font-family-B-S-L);
}
.common-title i {
  font-style: normal;
  font-weight: lighter;
}
@media (max-width: 1024px) {
  .common-title {
    letter-spacing: 2px;
    font-size: 24px;
    line-height: 30px;
  }
}
.common-page {
  font-size: 12px;
  text-align: center;
  padding-top: 8rem;
}
.common-page a {
  width: 4rem;
  height: 4rem;
  text-align: center;
  line-height: 3.8rem;
  border-radius: 100%;
  margin: 0 0.5rem;
  color: #202020;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #e3ecf2;
}
.common-page a:hover,
.common-page .cur {
  color: #fff;
  border-color: transparent;
  background: var(--main-color);
}
.common-page .prev,
.common-page .next {
  width: auto;
  min-width: 10.6rem;
  position: relative;
  border-radius: 30px;
}
.common-page .prev:before {
  content: "<";
  margin-right: 0.6rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.common-page .next:after {
  content: ">";
  margin-left: 0.6rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .common-page {
    padding-top: 40px;
  }
  .common-page .prev,
  .common-page .next {
    padding: 0 10px;
    width: auto;
    min-width: auto;
  }
  .common-page a {
    margin: 0;
    width: 24px;
    height: 24px;
    line-height: 22px;
  }
}
.banner {
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .video-box {
  position: relative;
}
.banner .video-box::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0));
}
.banner .video {
  border: none;
  box-shadow: none;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  object-fit: cover;
  outline: none;
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .ph {
  display: none;
}
.banner .text-warp {
  left: 0;
  width: 100%;
  color: #fff;
  top: 50%;
  z-index: 3;
  text-align: left;
  position: absolute;
  transform: translateY(-60%);
}
.banner .text {
  text-align: center;
}
.banner .title {
  color: #fff;
  font-size: 4.6rem;
  line-height: 10rem;
  letter-spacing: 0.74rem;
}
@media (max-width: 1024px) {
  .banner {
    height: auto;
    margin-top: 60px;
  }
  .banner .title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 1px;
  }
  .banner .pc {
    display: none;
  }
  .banner .ph {
    display: block;
  }
  .banner .ph img {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .banner .title {
    font-size: 18px;
    line-height: 30px;
  }
}
.banner .video-box {
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.banner .pcimg {
  transition: 0.5s;
}
.banner .video-box {
  transition: 0.5s;
}
.banner .text-warp {
  transition: 1s;
}
.banner .pcimg.hide {
  opacity: 0;
}
.banner .video-box.show {
  opacity: 1;
}
.banner .text-warp.hide {
  opacity: 0;
  margin-top: -40px;
}
.index-warp {
  padding-top: 13rem;
  padding-bottom: 15rem;
}
.index-warp .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.3rem;
}
.index-warp .list li {
  padding: 0 2.3rem;
  margin-top: 4.5rem;
  width: 25%;
}
.index-warp .list li .item {
  position: relative;
  background-color: #dff1f5;
  border-radius: 2.4rem;
}
.index-warp .list li .pic {
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
  overflow: hidden;
  position: relative;
}
.index-warp .list li .pic img {
  transition: all 700ms ease;
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
}
.index-warp .list li .pic::after {
  content: "";
  display: block;
  padding-bottom: 95.12195122%;
}
.index-warp .list li .text {
  padding: 4rem;
  font-weight: 400;
  position: relative;
  padding-right: 1rem;
  padding-bottom: 5rem;
}
.index-warp .list li .text::before {
  content: "";
  top: -4rem;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 4rem;
  position: absolute;
  background: url(../images/index-line.png) no-repeat;
  background-size: cover;
}
.index-warp .list li .text .t-1 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.2rem;
  letter-spacing: 0.42rem;
  color: var(--main-color);
}
.index-warp .list li .text .t-2 {
  margin-top: 3rem;
  letter-spacing: 0.18rem;
  line-height: 3.2rem;
  height: 9.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.index-warp .list li .text .t-3 {
  letter-spacing: 0.18rem;
  color: var(--main-color);
  transition: all 500ms ease;
  margin-top: 2rem;
  padding: 0 2.4rem;
  display: inline-block;
  min-width: 18.2rem;
  height: 5.4rem;
  line-height: 5.2rem;
  border: solid 1px var(--main-color);
  border-radius: 3rem;
}
.index-warp .list li .text .t-3 span {
  float: right;
}
.index-warp .list li:hover .pic img {
  transform: scale(1.05);
}
.index-warp .list li:hover .text .t-3 {
  color: #fff;
  background-color: var(--main-color);
}
@media (max-width: 1024px) {
  .index-warp {
    padding: 50px 0;
  }
  .index-warp .list ul {
    margin: 0 -10px;
    margin-top: 10px;
  }
  .index-warp .list li {
    padding: 0 10px;
    margin-top: 20px;
    width: 50%;
  }
  .index-warp .list li .text .t-2 {
    letter-spacing: 0;
  }
}
@media (max-width: 480px) {
  .index-warp .list li {
    width: 100%;
  }
}
.index-yczb {
  color: #fff;
  height: 61.8rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-yczb .text {
  z-index: 9;
  position: relative;
  padding-top: 11rem;
}
.index-yczb .text .t-1 {
  letter-spacing: 0.18rem;
}
.index-yczb .text .t-2 {
  font-size: 4.6rem;
  font-weight: bold;
  font-stretch: normal;
  line-height: 6rem;
  padding-top: 1.5rem;
  letter-spacing: 0.7rem;
}
.index-yczb .text .t-3 {
  padding-top: 4rem;
  line-height: 3.2rem;
}
.index-yczb .text .t-4 {
  margin-top: 6rem;
}
.index-yczb .text .t-4 a {
  letter-spacing: 0.18rem;
  color: var(--main-color);
  transition: all 500ms ease;
  padding: 0 2.4rem;
  display: inline-block;
  min-width: 18.2rem;
  height: 5.4rem;
  line-height: 5.4rem;
  background-color: #dff1f5;
  border-radius: 3rem;
}
.index-yczb .text .t-4 a span {
  float: right;
}
.index-yczb .text .t-4 a:hover {
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .index-yczb {
    height: auto;
  }
  .index-yczb .text {
    padding: 60px 0;
  }
  .index-yczb .text .t-2 {
    letter-spacing: 1px;
    font-size: 24px;
    line-height: 30px;
  }
  .index-yczb .text .t-3 {
    width: 60%;
    text-shadow: 0 0 1px #000;
  }
}
.index-video {
  margin-top: 16rem;
  position: relative;
}
.index-video .pic {
  position: relative;
  overflow: hidden;
}
.index-video .pic img {
  transition: all 700ms linear;
}
.index-video .pic img.hide {
  opacity: 0;
}
.index-video .pic video {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.index-video .pic video.show {
  opacity: 1;
}
.index-video .pic img,
.index-video .pic video {
  width: 100%;
  min-width: 72rem;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  vertical-align: top;
}
.index-video .playBtn {
  top: 50%;
  left: 50%;
  z-index: 2;
  line-height: 8.8rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(9, 40, 69, 0.7);
}
.index-video .playBtn svg {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  vertical-align: middle;
}
.index-video .videoClick {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .index-video {
    margin-top: 20px;
  }
}
.index-about {
  overflow: hidden;
  padding: 15rem 0;
}
.index-about .container {
  display: flex;
  position: relative;
  justify-content: space-between;
}
.index-about .swiper-button-prev,
.index-about .swiper-button-next {
  opacity: 1;
  bottom: 0;
  top: auto;
  vertical-align: top;
  transition: all 500ms ease;
  border-radius: 50%;
  margin-top: auto;
  width: 5.2rem;
  height: 5.2rem;
  line-height: 5rem;
  border: solid 0.2rem #c1c7c8;
}
.index-about .swiper-button-prev::after,
.index-about .swiper-button-next::after {
  content: "→";
  vertical-align: middle;
  font-size: 1.9rem;
  color: #c1c7c9;
  transition: all 500ms ease;
}
.index-about .swiper-button-prev:hover,
.index-about .swiper-button-next:hover {
  border-color: var(--main-color);
}
.index-about .swiper-button-prev:hover::after,
.index-about .swiper-button-next:hover::after {
  color: var(--main-color);
}
.index-about .swiper-button-prev {
  left: 0;
}
.index-about .swiper-button-prev::after {
  transform: rotateY(180deg);
}
.index-about .swiper-button-next {
  left: 6.4rem;
  right: auto;
}
.index-about .left-group {
  width: 39%;
}
.index-about .left-group .t-1 {
  letter-spacing: 0.18rem;
  padding-left: 2rem;
  position: relative;
}
.index-about .left-group .t-1::before {
  content: "";
  top: 0.5rem;
  left: 0;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 5rem;
  display: inline-block;
  background: var(--main-color);
}
.index-about .left-group .t-2 {
  font-size: 4.6rem;
  font-weight: bold;
  margin-top: 1rem;
  line-height: 6rem;
  letter-spacing: 0.7rem;
}
.index-about .left-group .t-3 {
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  padding-top: 2.5rem;
}
.index-about .left-group .common-button {
  margin-top: 4rem;
}
.index-about .right-group {
  width: 61%;
}
.index-about .list {
  width: 134%;
}
.index-about .list .item {
  color: #fff;
  height: 58.8rem;
  display: flex;
  align-items: flex-end;
  background-color: #092845;
  border-radius: 1.4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-about .list .item .text {
  padding: 4.8rem 3rem;
  text-align: justify;
  /* padding-right: 1rem; */
}
.index-about .list .item .icon img {
  max-height: 4rem;
}
.index-about .list .item .t-1 {
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: 0.4rem;
  margin-top: 3rem;
}
.index-about .list .item .t-2 {
  margin-top: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.2rem;
}
.index-about .list .item .common-button {
  margin-top: 4rem;
}
.index-about .list .item .common-button a {
  min-width: 16rem;
  text-align: center;
  background: #fff;
}
.index-about .list .item .common-button a:hover {
  color: var(--main-color);
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .index-about {
    padding: 50px 0;
  }
  .index-about .container {
    display: block;
  }
  .index-about .left-group {
    width: 100%;
  }
  .index-about .left-group .t-2 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 1px;
  }
  .index-about .right-group {
    width: 100%;
    margin-top: 40px;
  }
  .index-about .list {
    position: relative;
    width: 100%;
  }
  .index-about .list .item {
    height: 400px;
  }
  .index-about .list .item .t-1 {
    font-size: 18px;
  }
  .index-about .swiper-button-prev,
  .index-about .swiper-button-next {
    top: -10rem;
    margin-top: 0;
    bottom: auto;
  }
  .index-about .swiper-button-prev {
    left: auto;
    right: 6rem;
  }
  .index-about .swiper-button-next {
    right: 0;
    left: auto;
  }
}
.index-honor {
  padding-bottom: 14rem;
  overflow: hidden;
}
.index-honor .container {
  max-width: 144rem;
}
.index-honor .common-title,
.index-honor .info {
  text-align: center;
}
.index-honor .info {
  line-height: 3.2rem;
  padding-top: 4rem;
}
.index-honor .common-button {
  margin-top: 5.4rem;
  text-align: center;
}
.index-honor .common-button a {
  text-align: left;
  min-width: 22rem;
}
.index-honor .list {
  position: relative;
  margin-top: 8rem;
}
.index-honor .list .pic {
  text-align: center;
}
.index-honor .list::before,
.index-honor .list::after {
  filter: blur(30px);
  z-index: 3;
  top: 35%;
  content: "";
  width: 45%;
  height: 30%;
  position: absolute;
  background: var(--main-color);
}
.index-honor .list::before {
  left: -57%;
}
.index-honor .list::after {
  right: -57%;
}
.index-honor .swiper-container {
  overflow: inherit;
}
@media (max-width: 1024px) {
  .index-honor {
    padding-bottom: 50px;
  }
  .index-honor .swiper-container {
    overflow: hidden;
  }
}
.footer .container {
  position: relative;
}
.footer .returnTopBtn {
  right: 0;
  bottom: 4rem;
  position: absolute;
  width: 4.6rem;
  height: 4.6rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 0.5rem;
  background: #154470;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .footer .returnTopBtn {
    display: none;
  }
}
.footer .returnTopBtn:hover {
  background: var(--sub-color);
  color: #fff;
}
.footer .returnTopBtn .icon {
  display: block;
}
.footer .returnTopBtn svg {
  width: 1.8rem;
  height: 1.8rem;
}
.footer {
  color: #fff;
  font-size: 1.6rem;
  padding-top: 7rem;
  background: var(--main-color);
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 20px 0;
  }
}
.footer-bottom {
  padding-bottom: 2rem;
}
.footer-bottom .footer-left {
  float: left;
  width: 27%;
}
.footer-bottom .footer-left .logo img {
  max-height: 6.4rem;
}
.footer-bottom .footer-left .info {
  margin-top: 5rem;
}
.footer-bottom .footer-left .info .t1:first-child svg {
  width: 1.6rem;
  height: 1.6rem;
}
.footer-bottom .footer-left .info .t1 {
  color: #c3c3c3;
  padding-left: 2.4rem;
  position: relative;
  letter-spacing: 0.2rem;
}
.footer-bottom .footer-left .info .t1 svg {
  top: 0.4rem;
  left: 0;
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  fill: #c3c3c3;
}
.footer-bottom .footer-left .info .t2 {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-family-B-S-B);
  font-size: 3.2rem;
  letter-spacing: 0.32rem;
}
.footer-bottom .footer-left .info .t2 a {
  color: #fff;
}
.footer-bottom .socialMedia {
  padding-top: 2.5rem;
  padding-bottom: 11rem;
}
.footer-bottom .socialMedia .list li {
  width: auto;
  border: 0;
  padding-top: 0;
  padding-left: 1.5rem;
  display: inline-block;
}
.footer-bottom .socialMedia .list li:first-child {
  padding-left: 0;
}
.footer-bottom .socialMedia .list li:nth-child(2) .icon svg {
  width: 2rem;
  height: 2rem;
}
.footer-bottom .socialMedia .list .box {
  display: block;
  cursor: pointer;
  position: relative;
}
.footer-bottom .socialMedia .list .icon {
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  line-height: 4rem;
  border-radius: 50%;
  background-color: #154470;
  transition: all 500ms ease;
}
.footer-bottom .socialMedia .list .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  vertical-align: middle;
  fill: #fff;
}
.footer-bottom .socialMedia .list .icon:hover {
  background: rgba(255, 255, 255, 0.1);
}
.footer-bottom .socialMedia .list .down {
  display: none;
  color: #666;
  align-items: center;
  width: 12.2rem;
  cursor: initial;
  position: absolute;
  bottom: -12.5rem;
  left: 0;
  margin-left: -4rem;
}
.footer-bottom .socialMedia .list .down::after {
  content: "";
  left: 50%;
  top: -0.6rem;
  position: absolute;
  transform: translateX(-50%);
  border-bottom: solid 1rem #f0efeb;
  border-left: solid 1rem transparent;
  border-right: solid 1rem transparent;
}
.footer-bottom .socialMedia .list .down .txt {
  margin-right: 1rem;
}
.footer-bottom .socialMedia .list .down .ewm {
  width: 11.4rem;
  position: relative;
}
.footer-bottom .socialMedia .list .down .ewm img {
  width: 100%;
  max-height: 12.4rem;
}
.footer-bottom .socialMedia .list .active .down {
  display: flex;
}
.footer-bottom .socialMedia .list .box:hover .icon {
  opacity: 1;
}
.footer-bottom .socialMedia .list .box:hover .down {
  display: flex;
}
.footer-bottom .socialMedia .list .cur .down {
  display: block;
}
.footer-bottom .footer-list {
  padding-top: 3rem;
  float: right;
  width: 65%;
}
.footer-bottom .footer-list ul {
  min-height: 19rem;
}
.footer-bottom .footer-list ul li {
  width: 17%;
  float: left;
}
.footer-bottom .footer-list ul li h3 {
  font-size: 2rem;
  letter-spacing: 0.16rem;
}
.footer-bottom .footer-list ul li a {
  color: #fff;
  display: block;
  padding-bottom: 3rem;
  font-family: var(--font-family-H-S-SC-B);
}
.footer-bottom .footer-list ul li a:hover {
  color: var(--sub-color);
}
.footer-bottom .footer-list ul li ul li {
  position: relative;
  width: 100% !important;
}
.footer-bottom .footer-list ul li ul li a {
  color: #fff;
  display: block;
  letter-spacing: 0.16rem;
  padding-bottom: 2rem;
}
.footer-bottom .footer-list ul li:nth-child(2) {
  width: 41%;
}
.footer-bottom .footer-list ul li:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
}
.footer-bottom .footer-list ul li:last-child {
  width: 8%;
}
@media (max-width: 1024px) {
  .footer-bottom {
    padding-top: 0;
    padding-left: 0px;
  }
  .footer-bottom .flogo img {
    max-height: 60px;
  }
  .footer-bottom .footer-left .f3 .t1 {
    font-size: 14px;
  }
  .footer-bottom .footer-left {
    width: 100%;
    font-size: 14px;
    float: none;
  }
  .footer-bottom .footer-left .f1 img,
  .footer-bottom .footer-left .f3 .t1 img {
    max-height: 16px;
    margin-right: 5px;
  }
  .footer-bottom .footer-left .wxbox dl {
    max-width: 80px;
  }
  .footer-bottom .footer-left .tel {
    font-size: 14px;
    padding-left: 65px;
  }
  .footer-bottom .footer-left .tel img {
    max-height: 54px;
  }
  .footer-bottom .footer-list {
    display: none;
  }
  .footer-bottom .socialMedia {
    padding-bottom: 20px;
  }
  .footer-bottom .socialMedia .list .icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  .footer-bottom .socialMedia .list .icon svg {
    width: 24px;
    height: 24px;
  }
  .footer-bottom .socialMedia .list li:nth-child(2) .icon svg {
    width: 20px;
    height: 20px;
  }
}
.footer-copyright {
  letter-spacing: 0.16rem;
  font-size: 1.6rem;
}
.footer-copyright a {
  color: #fff;
}
.footer-copyright a:hover {
  color: var(--sub-color);
}
.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: solid 1px #2263a0;
}
.footer-copyright .container span {
  padding-left: 8rem;
}
@media (max-width: 1024px) {
  .footer-copyright {
    letter-spacing: 0;
    font-size: 14px;
  }
  .footer-copyright .container {
    border-top: 0;
  }
  .footer-copyright .container {
    padding: 15px 20px !important;
    display: block;
  }
  .footer-copyright .container span {
    padding-left: 0;
    display: block;
  }
  .footer-copyright .container div {
    width: 100%;
    display: block;
  }
}
.common-banner {
  overflow: hidden;
  position: relative;
}
.common-banner .toggle-btn {
  border: 0;
  background: transparent;
  right: 7.5rem;
  z-index: 10;
  bottom: 20rem;
  position: absolute;
}
.common-banner .toggle-btn span {
  font-size: 0;
}
.common-banner .fas {
  display: inline-block;
  border-radius: 50%;
  width: 6.6rem;
  height: 6.6rem;
  background-color: rgba(9, 40, 69, 0.7);
}
.common-banner .fa-pause {
  width: 6.6rem;
  height: 6.6rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/bofang.png);
  background-size: cover;
}
.common-banner .fa-play {
  width: 6.6rem;
  height: 6.6rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/zanting.png);
  background-size: cover;
}
.common-banner .pc img {
  width: 100%;
}
.common-banner .ph {
  display: none;
}
.common-banner .text-warp {
  left: 0;
  width: 100%;
  z-index: 4;
  color: #ffffff;
  bottom: 32rem;
  position: absolute;
}
@media (min-width: 1025px) {
	.common-banner .text-warp.text-warp-no{
		display:none;
	}
}
.common-banner .text {
  width: 45rem;
}
.common-banner .text .title {
  font-size: 4.7rem;
  line-height: 5rem;
  font-weight: bold;
  letter-spacing: 0.47rem;
}
.common-banner .text .title-2 {
  padding-top: 5rem;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
.common-banner .text-warp-2 {
  bottom: 11rem;
}
.common-banner .text-warp-2 .text {
  width: 65rem;
  padding-left: 20rem;
  position: relative;
}
.common-banner .text-warp-2 .text .icon {
  top: 0;
  left: 0;
  position: absolute;
}
.common-banner .text-warp-2 .text .icon img {
  max-height: 16rem;
}
@media (max-width: 1024px) {
  .common-banner {
    margin-top: 60px;
  }
  .common-banner .pc {
    display: none;
  }
  .common-banner .ph {
    display: block;
  }
  .common-banner .text-warp {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
  .common-banner .text-warp-2 {
    bottom: auto;
  }
  .common-banner .text-warp-2 .text {
    width: 100%;
    padding-left: 0;
  }
  .common-banner .text-warp-2 .icon {
    display: none;
  }
  .common-banner .text {
    width: 100%;
  }
  .common-banner .text .title-2 {
    padding-top: 20px;
  }
}
@media (max-width: 640px) {
  .common-banner .text .title {
    font-size: 24px;
    line-height: 30px;
    text-align: center;
  }
  .common-banner .text .title-2 {
    display: none;
  }
}
.common-warp {
  z-index: 99;
  overflow: hidden;
  min-height: 30rem;
  margin-top: -2rem;
  position: relative;
  background: #fff;
  border-radius: 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media (max-width: 1024px) {
  .common-warp {
    border-radius: 0;
    margin-top: 0;
  }
}
.about-wrap {
  padding-top: 15rem;
}
.about-wrap .container {
  max-width: 145rem;
}
.about-wrap .list dl {
  display: flex;
  justify-content: space-between;
}
.about-wrap .list dt {
  width: 37%;
}
.about-wrap .list dt .common-title {
  font-size: 4.3rem;
}
.about-wrap .list dt .text {
  padding-top: 7rem;
}
.about-wrap .list dt .text .t-1 {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.19rem;
}
.about-wrap .list dt .text .t-2 {
  padding-top: 1.5rem;
  line-height: 3.6rem;
  letter-spacing: 0.46rem;
  text-align: justify;
}
.about-wrap .list dd {
  width: 55.5%;
  border-radius: 1rem;
}
.about-wrap .list dd img {
  border-radius: 1rem;
}
.about-wrap .list-2 {
  margin-top: 11rem;
  background-color: #dff1f5;
  border-radius: 1.2rem;
  padding: 6.5rem 10.5rem;
  position: relative;
}
.about-wrap .list-2 .title {
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.48rem;
}
.about-wrap .list-2 .text {
  letter-spacing: 0.46rem;
}
.about-wrap .list-2 .text p {
  position: relative;
  padding-left: 5rem;
  margin-top: 3rem;
}
.about-wrap .list-2 .text p img {
  top: 0;
  left: 0;
  position: absolute;
  max-height: 3rem;
}
.about-wrap .list-2 .text strong {
  letter-spacing: 0;
}
.about-wrap .list-3 {
  margin: 0 auto;
  max-width: 88rem;
  line-height: 3.6rem;
  letter-spacing: 0.46rem;
  margin-top: 10rem;
  position: relative;
}
.about-wrap .list-3 .title {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 3.6rem;
  letter-spacing: 0.48rem;
}
.about-wrap .list-3 .item dl {
  display: flex;
}
.about-wrap .list-3 .item dt {
  width: 47%;
  border-radius: 1rem;
}
.about-wrap .list-3 .item dt img {
  border-radius: 1rem;
}
.about-wrap .list-3 .item dd {
  width: 53%;
  padding-left: 4rem;
}
.about-wrap .list-3 .item dd .text {
  padding-top: 1.5rem;
  text-align: justify;
}
.about-wrap .list-3 .item-2 {
  margin-top: 11rem;
}
.about-wrap .list-3 .item-2 .text {
  padding-top: 1.5rem;
  text-align: justify;
}
.about-wrap .list-3 .item-3 {
  margin-top: 6rem;
}
.about-wrap .list-3 .item-3 dl {
  display: flex;
}
.about-wrap .list-3 .item-3 dl dt {
  width: 47%;
}
.about-wrap .list-3 .item-3 dl dd {
  width: 53%;
  padding-left: 4rem;
}
.about-wrap .list-3 .item-3 dl dd .text {
  padding-top: 1.5rem;
}
.about-wrap .list-4 {
  max-width: 100%;
}
.about-wrap .list-4 .item dl {
  align-items: center;
}
.about-wrap .list-4 .item dt {
  width: 49%;
  border-radius: 1rem;
}
.about-wrap .list-4 .item dt img {
  border-radius: 1rem;
}
.about-wrap .list-4 .item dd {
  width: 51%;
  padding-right: 6rem;
  padding-left: 11rem;
}
.about-wrap .list-4 .item dd .text {
  padding-top: 1.5rem;
}
.about-wrap .list-5 {
  margin-top: 12rem;
}
.about-wrap .list-5 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.about-wrap .list-5 li {
  width: 50%;
  padding: 0 2rem;
}
.about-wrap .list-5 li .pic {
  border-radius: 1rem;
}
.about-wrap .list-5 li .pic img {
  border-radius: 1rem;
}
.about-wrap .list-6 {
  margin-top: 0;
}
.about-wrap .list-6 .item-2 {
  margin-top: 7rem;
}
@media (max-width: 1024px) {
  .about-wrap {
    padding-top: 50px;
  }
  .about-wrap .list dl {
    display: block;
  }
  .about-wrap .list dt,
  .about-wrap .list dd {
    width: 100%;
  }
  .about-wrap .list dt .text {
    padding-top: 30px;
  }
  .about-wrap .list dt .common-title {
    font-size: 24px;
  }
  .about-wrap .list dd {
    margin-top: 30px;
  }
  .about-wrap .list-2 {
    margin-top: 40px;
    padding: 30px;
  }
  .about-wrap .list-3 {
    max-width: 100%;
    margin-top: 40px;
  }
  .about-wrap .list-3 .title {
    font-size: 24px;
    line-height: 30px;
  }
  .about-wrap .list-3 .item dl {
    display: block;
  }
  .about-wrap .list-3 .item dt {
    width: 100%;
    border-radius: 1rem;
  }
  .about-wrap .list-3 .item dt img {
    border-radius: 1rem;
  }
  .about-wrap .list-3 .item dd {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
  }
  .about-wrap .list-3 .item-2 {
    margin-top: 30px;
  }
  .about-wrap .list-5 {
    margin-top: 40px;
  }
}
.about-wrap-2 {
  margin-top: 6rem;
}
.about-wrap-2 .list {
  border-radius: 1rem;
  padding: 11rem;
  background: #f9f9fb;
  display: flex;
  justify-content: space-between;
}
.about-wrap-2 .list .left {
  width: 31%;
}
.about-wrap-2 .list .left .t-1 {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.about-wrap-2 .list .left .t-1::before {
  content: "";
  top: 0.6rem;
  left: 0;
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  background: var(--main-color);
}
.about-wrap-2 .list .left .t-2 {
  margin-top: 2rem;
  letter-spacing: 0.25rem;
}
.about-wrap-2 .list .left .common-button {
  margin-top: 6.5rem;
}
.about-wrap-2 .list .left .common-button a {
  padding: 0 3rem;
  border-radius: 6rem;
  height: 6.6rem;
  line-height: 6.6rem;
  min-width: 25rem;
}
.about-wrap-2 .list .left .common-button a span {
  font-size: 3rem;
}
.about-wrap-2 .list .right {
  width: 62%;
}
.about-wrap-2 .list .right .pic {
  border-radius: 1rem;
}
.about-wrap-2 .list .right .pic img {
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .about-wrap-2 .list {
    padding: 30px;
    display: block;
  }
  .about-wrap-2 .list .left {
    width: 100%;
  }
  .about-wrap-2 .list .left .common-button {
    margin-top: 30px;
  }
  .about-wrap-2 .list .right {
    width: 100%;
    margin-top: 30px;
  }
}
.contact-warp {
  margin-bottom: 11rem;
  margin-top: 15rem;
  background-color: #f9f9fb;
  position: relative;
}
.contact-warp .container {
  display: flex;
  max-width: 192rem;
}
.contact-warp .left {
  width: 52%;
}
.contact-warp .right {
  width: 48%;
  padding: 0 13rem;
  padding-top: 11rem;
  padding-bottom: 4rem;
}
.contact-warp .right .info {
  padding-right: 9rem;
  padding-bottom: 7rem;
  line-height: 3.8rem;
  margin-top: 3rem;
  letter-spacing: 0.29rem;
}
.contact-warp .form li {
  margin-top: 3.5rem;
}
.contact-warp .form li.double-item {
  display: flex;
  justify-content: space-between;
}
.contact-warp .form li.double-item .item-left {
  width: 48%;
}
.contact-warp .form li.double-item .item-right {
  width: 48%;
}
.contact-warp .form li.btn-item {
  margin-top: 4.5rem;
  padding-top: 1rem;
}
.contact-warp .form li .text-name {
  letter-spacing: 0.16rem;
  padding-bottom: 1.5rem;
  font-weight: 500;
}
.contact-warp .form li .desc-tip {
  font-size: 1.4rem;
  color: #666;
  margin: -1rem 0 1rem 0;
  letter-spacing: 0.14rem;
}
.contact-warp .form li .text-input {
  width: 100%;
  border: 0;
  color: #333;
  font-size: 1.8rem;
  padding: 0 2rem;
  min-height: 7.6rem;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  background-color: #f9f9fb;
  border-radius: 1.2rem;
  border: solid 1px #465d73;
  letter-spacing: 0.18rem;
  font-family: var(--font-family-0);
}
.contact-warp .form li .text-input:focus {
  border-color: var(--main-color);
  outline: none;
}
.contact-warp .form li .text-area {
  width: 100%;
  border: 0;
  color: #333;
  font-size: 1.8rem;
  padding: 2rem;
  min-height: 18rem;
  resize: vertical;
  transition: all 500ms ease;
  background-color: #f9f9fb;
  border-radius: 1.2rem;
  border: solid 1px #465d73;
  letter-spacing: 0.18rem;
  font-family: var(--font-family-0);
  box-sizing: border-box;
}
.contact-warp .form li .text-area:focus {
  border-color: var(--main-color);
  outline: none;
}
.contact-warp .form li .consult-btn {
  width: 100%;
  height: 7.6rem;
  background-color: #00d2cb;
  color: #fff;
  border: 0;
  border-radius: 1.2rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background-color 300ms ease;
}
.contact-warp .form li .consult-btn:hover {
  background-color: #00b8b2;
}
.contact-warp .form li .consult-btn::after {
  content: "→";
  font-size: 2rem;
}
@media (max-width: 1024px) {
  .contact-warp {
    margin: 50px 0 0 0;
  }
  .contact-warp .container {
    display: block;
  }
  .contact-warp .left,
  .contact-warp .right {
    width: 100%;
  }
  .contact-warp .right {
    padding: 30px 0 50px 0;
  }
  .contact-warp .right .info {
    padding-bottom: 30px;
    padding-right: 0;
  }
}
.contact-warp-2 {
  margin-top: 12rem;
}
.contact-warp-2 .right {
  padding: 0 12rem;
  padding-top: 11rem;
}
.contact-warp-2 .right .common-button {
  margin-top: 7rem;
}
.contact-warp-2 .right .common-button a {
  padding: 0 3.8rem;
  height: 6.6rem;
  line-height: 6.6rem;
  min-width: 22.6rem;
  border-radius: 6rem;
}
.contact-warp-2 .right .common-button a:hover svg {
  fill: #fff;
}
.contact-warp-2 .right .common-button svg {
  width: 3rem;
  height: 3rem;
  vertical-align: top;
  margin-top: 1.9rem;
}
.contact-warp-2 .right .info {
  padding-bottom: 4rem;
}
@media (max-width: 1024px) {
  .contact-warp-2 {
    padding-bottom: 50px;
    margin-top: 50px;
  }
  .contact-warp-2 .right {
    padding: 0;
    padding-top: 40px;
  }
  .contact-warp-2 .right .common-button {
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .contact-warp-2 .form li.double-item {
    display: block;
  }
  .contact-warp-2 .form li.double-item .item-left,
  .contact-warp-2 .form li.double-item .item-right {
    width: 100%;
  }
  .contact-warp-2 .form li.double-item .item-right {
    margin-top: 3.5rem;
  }
}
.common-current {
  letter-spacing: 0.18rem;
  height: 3rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-current a:hover {
  color: var(--sub-color);
}
.common-current .first {
  /* text-decoration: underline; */
}
.search-warp {
  padding-bottom: 15rem;
  padding-top: 4rem;
  background: #f9f9fa;
}
.search-warp .title {
  margin-left: -2rem;
  padding-top: 8rem;
  font-size: 3.6rem;
  line-height: 4rem;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0.58rem;
}
.search-warp .title span {
  letter-spacing: 0;
  font-family: var(--font-family-B-S-L);
}
.search-warp .title-1 {
  margin-left: 0;
}
.search-warp .info {
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  padding-top: 1.5rem;
}
.search-warp .menu {
  margin-top: 2rem;
}
.search-warp .menu ul {
  height: 8.6rem;
  padding: 1.2rem;
  display: inline-block;
  border-radius: 4.273rem;
  border: solid 1px var(--main-color);
}
.search-warp .menu li {
  display: inline-block;
}
.search-warp .menu li a {
  position: relative;
  height: 6.2rem;
  padding: 0 3.5rem;
  display: inline-block;
  line-height: 6.2rem;
  border-radius: 3.024rem;
  letter-spacing: 0.18rem;
}
.search-warp .menu li a::before {
  content: "";
  margin-top: 2.5rem;
  vertical-align: top;
  margin-right: 1.5rem;
  width: 1rem;
  height: 1rem;
  display: none;
  border-radius: 50%;
  background: var(--sub-color);
}
.search-warp .menu .active a {
  color: #fff;
  background: var(--main-color);
}
.search-warp .menu .active a::before {
  display: inline-block;
}
@media (max-width: 1024px) {
  .search-warp {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .search-warp .title {
    margin-left: 0;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 30px;
  }
}
.prodcut-warp .title {
  margin-left: 0;
}
.prodcut-warp .miaoshu {
  padding-top: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
.prodcut-warp .miaoshu span {
  letter-spacing: 0;
  font-family: var(--font-family-B-S-L);
}
.prodcut-warp .pro-scroll,
.prodcut-warp .common-button {
  text-align: center;
}
.prodcut-warp .pro-scroll {
  font-weight: bold;
  margin-top: 10rem;
  letter-spacing: 0.18rem;
}
.prodcut-warp .pro-scroll .line {
  margin: 0 auto;
  position: relative;
  margin-top: 1.5rem;
  width: 33.4rem;
  height: 0.3rem;
  background-color: #ccd3d3;
  border-radius: 0.15rem;
}
.prodcut-warp .pro-scroll .active {
  top: 0;
  left: 0;
  z-index: 2;
  width: 33.333%;
  position: absolute;
  height: 0.3rem;
  background-color: #00ceee;
  border-radius: 0.15rem;
}
.prodcut-warp .common-button {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .prodcut-warp .pro-scroll {
    margin-top: 50px;
  }
}
.product-list {
  padding-top: 4rem;
  overflow: hidden;
}
.product-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.product-list li {
  width: 25%;
  margin-top: 5rem;
  padding: 0 1rem;
}
.product-list li .item {
  position: relative;
  padding: 2.5rem;
  /* padding-top: 8rem; */
  padding-bottom: 3rem;
  background: #fff;
  background-color: #ffffff;
  border-radius: 0.8rem;
  border: solid 1px #e4e8e8;
  transition: all 700ms ease;
}
.product-list li .new {
  top: 1rem;
  left: 1rem;
  z-index: 3;
  position: absolute;
}
.product-list li .new span {
  color: #fff;
  line-height: 3.4rem;
  display: inline-block;
  letter-spacing: 0.14rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  width: 6.1rem;
  height: 3.4rem;
  background-color: #062542;
  border-radius: 0.4rem;
}
.product-list li .pic {
  margin: 0 auto;
  max-width: 32rem;
  position: relative;
}
.product-list li .pic::after {
  content: "";
  display: block;
  padding-bottom: 95.625%;
}
.product-list li .pic img {
  transition: all 700ms ease;
}
.product-list li:hover .pic img{
	transform: scale(1.05);
}
.product-list li .tit {
  height: 6rem;
  font-size: 2rem;
  font-weight: bold;
  font-stretch: normal;
  line-height: 3rem;
  letter-spacing: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.product-list li .tit span {
  display: block;
}
.product-list li .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  margin-top: 5rem;
  margin-bottom: 1rem;
  line-height: 3rem;
  height: 3rem;
  letter-spacing: 0.18rem;
  color: #6a6e6e;
}
.product-list li .more {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  color: #777b7b;
}
.product-list li .arrow {
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  width: 4.9rem;
  height: 4.9rem;
  line-height: 4.7rem;
  border-radius: 5rem;
  border: solid 1px #062542;
}
.product-list li:hover .item {
  border-color: var(--main-color);
}
@media (max-width: 1024px) {
  .product-list li {
    width: 50%;
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  .product-list li {
    width: 100%;
  }
}
.search-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.search-list li {
  width: 25%;
  padding: 0 2rem;
  margin-top: 4rem;
}
.search-list li .item{
	background: #fff;
	padding: 0 2rem;
}
.search-list li .item .pic {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.search-list li .item .pic img {
  border-radius: 1rem;
  transition: all 700ms ease;
}
.search-list li .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 67.02508961%;
}
.search-list li .text {
  padding-top: 2rem;
}
.search-list li .text .tag span {
  display: inline-block;
  min-width: 12.6rem;
  height: 4.5rem;
  padding: 0 1rem;
  text-align: center;
  line-height: 4.3rem;
  border-radius: 0.4rem;
  border: solid 1px #ebeeef;
}
.search-list li .text .tit {
  margin-top: 2.5rem;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 3rem;
  height: 6rem;
  letter-spacing: 0.24rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.search-list li .text .txt {
  margin-top: 2.4rem;
  height: 6rem;
  line-height: 3rem;
  letter-spacing: 0.18rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.search-list li:hover .item .pic img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .search-list li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .search-list li {
    width: 100%;
  }
}
.search-list-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.search-list-2 li {
  width: 13%;
  padding: 0 2rem;
  margin-top: 5rem;
}
.search-list-2 li .pic {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.search-list-2 li .pic img {
  border-radius: 1rem;
  transition: all 700ms ease;
}
.search-list-2 li .pic::after {
  content: "";
  display: block;
  padding-bottom: 67.02508961%;
}
.search-list-2 li .tit {
  padding-top: 1.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.38rem;
}
@media (max-width: 1024px) {
  .search-list-2 li {
    width: 25%;
  }
  .search-list-2 li .tit {
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .search-list-2 li {
    width: 50%;
  }
}
.search-list-3 {
  margin-top: 14rem;
}
.search-list-3 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.search-list-3 li {
  padding: 0 2rem;
  display: flex;
  width: 33.333%;
}
.search-list-3 li .item {
  min-width: 100%;
  padding: 4rem;
  padding-right: 2rem;
  min-height: 100%;
  background-color: #ffffff;
  border-radius: 1.2rem;
  border: solid 1px #757978;
}
.search-list-3 li .item .tit {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.2rem;
  letter-spacing: 0.42rem;
}
.search-list-3 li .item .txt {
  padding-top: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
@media (max-width: 1024px) {
  .search-list-3 {
    margin-top: 30px;
  }
  .search-list-3 li {
    width: 100%;
    margin-top: 20px;
  }
}
.fzlc-warp {
  background: #f9f9fb;
}
.fzlc-warp2{
	background: #fff;
	padding-top: 2rem;
}
.fzlc-warp .container {
  max-width: 145rem;
}
.fzlc-warp .title {
  text-align: center;
  padding-top: 6rem;
  font-size: 5.4rem;
  line-height: 6rem;
  font-weight: bold;
  letter-spacing: 0.54rem;
  color: #183450;
}
.fzlc-warp .list .year {
  text-align: center;
  font-size: 4.4rem;
  line-height: 5rem;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0.09rem;
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list .info {
  padding-top: 3rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: normal;
  font-stretch: normal;
  line-height: 4.8rem;
  letter-spacing: 0.38rem;
}
.fzlc-warp .list .info span {
  letter-spacing: 0;
  /* font-style: italic; */
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list li {
  display: flex;
  padding-top: 11rem;
}
.fzlc-warp .list li .left {
  width: 49%;
}
.fzlc-warp .list li .left .pic {
  border-radius: 1.2rem;
}
.fzlc-warp .list li .left .pic img {
  border-radius: 1.2rem;
}
.fzlc-warp .list li .right {
  width: 51%;
  padding-top: 9rem;
  padding-left: 12.6rem;
}
.fzlc-warp .list li .right .t-1 {
  line-height: 5rem;
  font-family: var(--font-family-B-S-M);
  font-size: 4.4rem;
  letter-spacing: 0.09rem;
}
.fzlc-warp .list li .right .t-2 {
  padding-top: 3rem;
  font-size: 2.4rem;
  line-height: 4.8rem;
  letter-spacing: 0.38rem;
}
.fzlc-warp .list li .right .t-2 span {
  letter-spacing: 0;
  /* font-style: italic; */
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.fzlc-warp .list li:nth-child(2n) .right {
  padding-left: 0;
  padding-right: 20rem;
}
.fzlc-warp .list li:first-child {
  padding-top: 7rem;
}
.fzlc-warp .list-2 {
  margin-top: 10rem;
}
.fzlc-warp .list-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.fzlc-warp .list-2 li {
  width: 50%;
  padding: 0 2rem;
  padding-bottom: 4rem;
}
.fzlc-warp .list-2 li .pic {
  border-radius: 1.2rem;
}
.fzlc-warp .list-2 li .pic img {
  border-radius: 1.2rem;
}
.fzlc-warp .list-2 li .tit {
  letter-spacing: 0.18rem;
  padding-left: 1.8rem;
  position: relative;
  margin-top: 3rem;
  color: #7c7f81;
}
.fzlc-warp .list-2 li .tit span {
  font-family: var(--font-family-B-S-L);
}
.fzlc-warp .list-2 li .tit::before {
  content: "";
  top: 1.2rem;
  left: 0;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #707476;
}
.fzlc-warp .list-3 {
  margin-top: 11rem;
}
.fzlc-warp .list-4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 113.6rem;
}
.fzlc-warp .list-4 li {
  width: 100%;
  padding-bottom: 0;
}
.fzlc-warp .list-5,
.fzlc-warp .list-6,
.fzlc-warp .list-7 {
  margin-top: 9rem;
}
.fzlc-warp .list-5 .info span,
.fzlc-warp .list-6 .info span,
.fzlc-warp .list-7 .info span {
  letter-spacing: 0;
  /* font-style: italic; */
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list-5 li .right,
.fzlc-warp .list-6 li .right,
.fzlc-warp .list-7 li .right {
  padding-top: 0;
}
.fzlc-warp .list-5 li .right .t-2 span,
.fzlc-warp .list-6 li .right .t-2 span,
.fzlc-warp .list-7 li .right .t-2 span {
  letter-spacing: 0;
  /* font-style: italic; */
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list-5 li .right .t-2 span {
  letter-spacing: 0;
  /* font-style: italic; */
  font-family: var(--font-family-B-S-M);
}
.fzlc-warp .list-6 {
  margin-top: 6rem;
}
.fzlc-warp .list-7 li .right {
  padding-top: 9rem;
}
.fzlc-warp .list-8 li {
  padding-top: 2rem;
  flex-direction: row !important;
}
.fzlc-warp .list-8 li .right {
  padding-top: 3rem;
  padding-left: 12.6rem !important;
  padding-right: 0 !important;
}
.fzlc-warp .list-8 li .right .t-2 span {
  padding-left: 0.5rem;
  padding-right: 1rem;
}
.fzlc-warp .list-9 {
  margin-top: 6rem;
  padding-bottom: 9rem;
}
.fzlc-warp .list-9 .txt {
  text-align: center;
  font-size: 2.3rem;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0.37rem;
}
@media (max-width: 1024px) {
  .fzlc-warp {
    padding-top: 120px;
  }
  .fzlc-warp .title {
    padding-top: 0;
    font-size: 30px;
    line-height: 30px;
  }
  .fzlc-warp .list .info {
    font-size: 16px;
    line-height: 24px;
  }
  .fzlc-warp .list .year {
    text-align: center !important;
  }
  .fzlc-warp .list li {
    padding-top: 40px;
    display: block;
  }
  .fzlc-warp .list li .left {
    width: 100%;
  }
  .fzlc-warp .list li .right {
    padding: 0 !important;
    padding-top: 30px !important;
    width: 100%;
  }
  .fzlc-warp .list li .right .t-1 {
    text-align: center;
  }
  .fzlc-warp .list li .right .t-2 {
    text-align: center;
    padding-top: 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .fzlc-warp .list li:first-child {
    padding-top: 40px;
  }
  .fzlc-warp .list-7 {
    margin-top: 40px;
  }
  .fzlc-warp .list-9 .txt {
    font-size: 16px;
  }
}
.service-warp {
  overflow: hidden;
  padding-bottom: 7rem;
  padding-top: 10rem;
  background: #f9f9fb;
  margin-top: -2rem;
  border-radius: 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.service-warp .title {
  text-align: center;
  font-size: 5.4rem;
  line-height: 6rem;
  letter-spacing: 0.54rem;
  color: #183450;
}
.service-warp .menu {
  z-index: 999;
  top: 11rem;
  background: #f9f9fb;
  left: 0;
  width: 100%;
  position: sticky;
  text-align: center;
  margin-top: 3rem;
}
.service-warp .menu ul {
  padding: 1.2rem;
  display: inline-block;
  border-radius: 4.273rem;
  border: solid 1px var(--main-color);
}
.service-warp .menu li {
  display: inline-block;
}
.service-warp .menu li a {
  position: relative;
  height: 6.2rem;
  padding: 0 3.5rem;
  font-size: 2.4rem;
  display: inline-block;
  font-weight: bold;
  line-height: 6.2rem;
  transition: all 500sm ease;
  border-radius: 3.024rem;
  letter-spacing: 0.42rem;
}
.service-warp .menu li a::before {
  content: "";
  opacity: 0;
  display: inline-block;
  margin-top: 2.5rem;
  vertical-align: top;
  margin-right: 1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--sub-color);
}
.service-warp .menu li:hover a,
.service-warp .menu .active a {
  color: #fff;
  background: var(--main-color);
}
.service-warp .menu li:hover a::before,
.service-warp .menu .active a::before {
  opacity: 1;
}
.service-warp .list {
  position: relative;
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-warp .list .left {
  width: 54%;
}
.service-warp .list .right {
  width: 46%;
  padding-right: 15rem;
  padding-left: 15rem;
}
.service-warp .list .right .bt {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.8rem;
  letter-spacing: 0.42rem;
}
.service-warp .list .right .text {
  margin-top: 3rem;
}
.service-warp .list .right .text .t-4 {
  padding-left: 11rem;
}
.service-warp .list .right .text .t-1 {
  position: relative;
}
.service-warp .list .right .text .t-1 .p-1 span {
  letter-spacing: 0.16rem;
  font-weight: bold;
  padding: 0 1.4rem;
  display: inline-block;
  text-align: center;
  line-height: 4.3rem;
  min-width: 12rem;
  height: 4.5rem;
  border-radius: 0.4rem;
  border: solid 1px #e3e3e3;
}
.service-warp .list .right .text .t-1 .p-2 {
  letter-spacing: 0.18rem;
  padding: 1rem 0;
}
.service-warp .list .right .text .t-1 img {
  top: 0;
  left: 0;
  position: absolute;
  max-height: 8rem;
}
.service-warp .list .right .text .t-2 {
  line-height: 3.2rem;
  letter-spacing: 0.25rem;
  margin-top: 1rem;
}
.service-warp .list .right .text .t-3 {
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  color: #8d8d8d;
}
.service-warp .list .right .text .t-3 .p-1 {
  position: relative;
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.service-warp .list .right .text .t-3 .p-1::before {
  top: 1.5rem;
  left: 0;
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #8d8d8d;
}
.service-warp .list-2 {
  position: relative;
  margin-top: 8.5rem;
  padding: 10rem 10.8rem;
  padding-top: 3rem;
  background-color: #dff1f5;
  border-radius: 1.6rem;
}
.service-warp .list-2 .tu {
  margin-left: -8rem;
}
.service-warp .list-2 .t-1 {
  margin-top: 3rem;
  text-align: center;
}
.service-warp .list-2 .t-1 span {
  padding: 0 1.2rem;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: bold;
  font-stretch: normal;
  letter-spacing: 0.24rem;
  min-width: 19.2rem;
  height: 4.5rem;
  line-height: 4.3rem;
  border-radius: 0.4rem;
  border: solid 1px #cad8db;
}
.service-warp .list-2 .t-2 {
  margin-top: 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  line-height: 3rem;
  letter-spacing: 0.2rem;
}
.service-warp .list-2 .t-3 {
  margin-top: 5rem;
  border-radius: 1.2rem;
}
.service-warp .list-2 .t-3 img {
  border-radius: 1.2rem;
}
.service-warp .list-3 {
  position: relative;
  flex-direction: row-reverse;
}
.service-warp .list-3 .left {
  width: 61.5%;
}
.service-warp .list-3 .right {
  width: 38.5%;
  padding-left: 0;
}
.service-warp .list-3 .right .info {
  padding-left: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  position: relative;
}
.service-warp .list-3 .right .info::before {
  top: 0.5rem;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  background-color: var(--main-color);
}
.service-warp .list-3 .right .bt {
  margin-top: 2rem;
  font-size: 4.2rem;
  line-height: 5rem;
  letter-spacing: 0.67rem;
}
.service-warp .list-4 {
  position: relative;
  border-radius: 1.6rem;
  padding: 3rem;
  background: #dff1f5;
}
.service-warp .list-4 .right .bt {
  font-size: 4.2rem;
  line-height: 5rem;
  font-stretch: normal;
  letter-spacing: 0.67rem;
}
.service-warp .list-5 {
  width: 100%;
  position: relative;
  margin-top: 10rem;
}
.service-warp .list-5 .info {
  width: 50%;
  padding-left: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  position: relative;
}
.service-warp .list-5 .info::before {
  top: 0.5rem;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  background-color: var(--main-color);
}
.service-warp .list-5 .bt {
  width: 50%;
  font-size: 4.2rem;
  padding-top: 2rem;
  line-height: 5rem;
  font-stretch: normal;
  letter-spacing: 0.67rem;
  margin-bottom: 5rem;
}
.service-warp .list-5 .item .icon {
  opacity: 0;
  transition: all 500ms ease;
  margin-left: 5.5rem;
  margin-top: -13rem;
  position: relative;
}
.service-warp .list-5 .item .t-1 {
  margin-top: 10.5rem;
}
.service-warp .list-5 .item .t-1 span {
  letter-spacing: 0.24rem;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 0 1.2rem;
  display: inline-block;
  min-width: 18.1rem;
  height: 4.6rem;
  line-height: 4.6rem;
  border-radius: 0.4rem;
  border: solid 1px #d5d6d8;
}
.service-warp .list-5 .item .t-2 {
  margin-top: 1rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.service-warp .list-5 .swiper-slide {
  width: 21.25%;
  transition: width 0.3s;
}
.service-warp .list-5 .swiper-slide .item{
	position: relative;
}
.service-warp .list-5 .swiper-slide .pic {
  height: 77rem;
  border-radius: 1.2rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.service-warp .list-5 .swiper-slide-active {
  width: 57.5% !important;
}
.service-warp .list-5 .swiper-slide-active .item .icon {
  opacity: 1;
}
.service-warp .list-5 .swiper-button-prev,
.service-warp .list-5 .swiper-button-next {
  top: 3rem;
  opacity: 1;
  margin-top: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 0.2rem #c1c7c8;
}
.service-warp .list-5 .swiper-button-prev::after,
.service-warp .list-5 .swiper-button-next::after {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 4rem 4rem;
}
.service-warp .list-5 .swiper-button-prev:hover,
.service-warp .list-5 .swiper-button-next:hover {
  border-color: var(--main-color);
}
.service-warp .list-5 .swiper-button-prev {
  left: auto;
  right: 14rem;
}
.service-warp .list-5 .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.service-warp .list-5 .swiper-button-prev:hover::after {
  transform: rotate(180deg);
  background-image: url(../images/next.png);
}
.service-warp .list-5 .swiper-button-next {
  right: 7rem;
}
.service-warp .list-5 .swiper-button-next::after {
  transform: rotate(180deg);
  background-image: url(../images/prev.png);
}
.service-warp .list-5 .swiper-button-next:hover::after {
  transform: rotate(0deg);
  background-image: url(../images/next.png);
}
@media (max-width: 1024px) {
  .service-warp {
    padding-top: 50px;
  }
  .service-warp .menu li a {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 15px;
  }
  .service-warp .menu li a::before {
    margin-top: 15px;
    margin-right: 5px;
  }
  .service-warp .title {
    font-size: 24px;
    line-height: 30px;
  }
  .service-warp .list {
    margin-top: 30px;
    display: block;
  }
  .service-warp .list .left {
    width: 100%;
  }
  .service-warp .list .right {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
  .service-warp .list-2 {
    padding: 30px;
    margin-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .service-warp .list-2 .tu {
    margin-left: 0px;
    text-align: center;
    margin-bottom: 30px;
  }
  .service-warp .list-4 .right .bt {
    font-size: 24px;
    line-height: 30px;
  }
  .service-warp .list-5 {
    width: 100%;
    margin-top: 50px;
  }
  .service-warp .list-5 .item .t-1 {
    margin-top: 60px;
  }
  .service-warp .list-5 .item .t-2 {
    margin-top: 20px;
  }
  .service-warp .list-5 .item .icon img {
    max-height: 8rem;
  }
  .service-warp .list-5 .info {
    width: 100%;
    font-size: 12px;
  }
  .service-warp .list-5 .bt {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }
  .service-warp .list-5 .swiper-slide {
    width: 100% !important;
  }
  .service-warp .list-5 .swiper-slide .pic {
    height: 300px;
  }
  .service-warp .list-5 .swiper-button-prev,
  .service-warp .list-5 .swiper-button-next {
    top: 4rem;
  }
  .service-warp .list-5 .swiper-slide-active {
    width: 100% !important;
  }
}
@media (max-width: 640px) {
  .service-warp .menu {
    display: none;
    top: auto;
    position: relative;
  }
  .service-warp .menu ul {
    display: flex;
    flex-wrap: wrap;
    border-radius: 60px;
  }
  .service-warp .menu li {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .service-warp-2 {
    padding-bottom: 50px;
    padding-top: 120px;
  }
  .service-warp-2 .menu {
    display: none;
  }
}
.sevice-shfu {
  padding: 9rem 0;
  background: #f9f9fb;
}
.sevice-shfu .container {
  max-width: 145rem;
}
.sevice-shfu .title,
.sevice-shfu .text,
.sevice-shfu .text-2 {
  margin: 0 auto;
  max-width: 106rem;
}
.sevice-shfu .title {
  font-size: 5rem;
  line-height: 5rem;
  letter-spacing: 0.5rem;
}
.sevice-shfu .text {
  margin-top: 3.5rem;
  line-height: 3.2rem;
  letter-spacing: 0.39rem;
}
.sevice-shfu .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.sevice-shfu .list li {
  padding: 0 2rem;
  padding-top: 6rem;
  width: 33.333%;
}
.sevice-shfu .list li .pic {
  border-radius: 1rem;
}
.sevice-shfu .list li .pic img {
  border-radius: 1rem;
}
.sevice-shfu .list-2 {
  margin-top: 10rem;
}
.sevice-shfu .list-2 .text {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding-bottom: 2rem;
}
.sevice-shfu .list-2 .text-2 {
  letter-spacing: 0.39rem;
  padding-left: 1.5rem;
  color: #6a6c6d;
  position: relative;
  line-height: 3.8rem;
}
.sevice-shfu .list-2 .text-2::before {
  left: 0;
  top: 1.8rem;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #6b6d6f;
  position: absolute;
}
.sevice-shfu .list-2 ul {
  margin-top: 11rem;
}
.sevice-shfu .list-2 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sevice-shfu .list-2 ul li .left {
  width: 49%;
}
.sevice-shfu .list-2 ul li .left .pic {
  border-radius: 1rem;
}
.sevice-shfu .list-2 ul li .left .pic img {
  border-radius: 1rem;
}
.sevice-shfu .list-2 ul li .right {
  width: 51%;
  padding-right: 4rem;
  padding-left: 12.6rem;
}
.sevice-shfu .list-2 ul li .right .t-1 {
  font-size: 2rem;
  line-height: 2.9rem;
  letter-spacing: 0.2rem;
  margin-top: 3rem;
  padding-bottom: 2rem;
}
.sevice-shfu .list-2 ul li .right .t-2 {
  padding-left: 1.5rem;
  position: relative;
  line-height: 2.9rem;
  letter-spacing: 0.39rem;
  color: #6a6c6d;
}
.sevice-shfu .list-2 ul li .right .t-2::before {
  left: 0;
  top: 1.2rem;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #6b6d6f;
  position: absolute;
}
@media (max-width: 1024px) {
  .sevice-shfu {
    padding: 50px 0;
  }
  .sevice-shfu .title {
    font-size: 24px;
    line-height: 30px;
  }
  .sevice-shfu .text {
    margin-top: 20px;
  }
  .sevice-shfu .list ul {
    margin: 0 -10px;
  }
  .sevice-shfu .list li {
    padding: 0 10px;
    padding-top: 30px;
  }
  .sevice-shfu .list-2 {
    margin-top: 40px;
  }
  .sevice-shfu .list-2 ul {
    margin-top: 40px;
  }
  .sevice-shfu .list-2 ul li {
    display: block;
  }
  .sevice-shfu .list-2 ul li .left {
    width: 100%;
  }
  .sevice-shfu .list-2 ul li .right {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
}
.service-section {
  display: flex;
  align-items: center;
  padding-bottom: 10.6rem;
  padding-top: 19rem;
}
.service-section .service-image {
  width: 48%;
  border-radius: 1.2rem;
}
.service-section .service-image img {
  border-radius: 1.2rem;
}
.service-section .service-content {
  padding-left: 22rem;
  padding-right: 15rem;
  width: 52%;
}
.service-section .service-content p {
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 0.32rem;
  padding-top: 4rem;
}
.service-section .service-content span {
  display: inline-block;
}
.service-section .service-content .common-button {
  margin-top: 9rem;
}
.service-section .service-content .common-button a {
  padding: 0 4rem;
  height: 6.6rem;
  min-width: 22.6rem;
  line-height: 6.6rem;
  border-radius: 6rem;
}
.service-section .service-content .common-button a:hover svg {
  fill: #fff;
}
.service-section .service-content .common-button svg {
  width: 3rem;
  height: 3rem;
  vertical-align: top;
  margin-top: 1.9rem;
}
@media (max-width: 1024px) {
  .service-section {
    display: block;
    padding: 50px 0;
  }
  .service-section .service-image {
    width: 100%;
  }
  .service-section .service-content {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
  .service-section .service-content p {
    padding-top: 20px;
  }
  .service-section .service-content .common-button {
    margin-top: 30px;
    text-align: center;
  }
}
.service-yczb {
  padding: 9rem;
  background: #f9f9f9;
}
.service-yczb .common-title {
  text-align: center;
  font-size: 5.2rem;
  line-height: 8rem;
  letter-spacing: 0.52rem;
}
.service-yczb .info {
  padding-top: 2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 4rem;
  letter-spacing: 0.32rem;
}
.service-yczb .common-button {
  text-align: center;
  margin-top: 7rem;
}
.service-yczb .common-button a {
  color: #fff;
  text-align: left;
  padding: 0 4rem;
  height: 6.6rem;
  min-width: 22.6rem;
  line-height: 6.6rem;
  border-radius: 6rem;
  background: var(--main-color);
}
.service-yczb .common-button a:hover {
  color: var(--main-color);
  background: var(--sub-color);
}
.service-yczb .common-button a:hover svg {
  fill: var(--main-color);
}
.service-yczb .common-button svg {
  width: 3rem;
  height: 3rem;
  vertical-align: top;
  margin-top: 1.9rem;
}
.service-yczb .picbox {
  margin-top: 5.2rem;
  position: relative;
}
.service-yczb .picbox .tishi {
  color: #fff;
  line-height: 3rem;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
  top: 6rem;
  left: 6.6rem;
  position: absolute;
}
.service-yczb .pic {
  border-radius: 1rem;
}
.service-yczb .pic img {
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .service-yczb {
    padding: 40px 30px;
  }
  .service-yczb .common-title {
    font-size: 22px;
    line-height: 30px;
  }
  .service-yczb .common-button {
    margin-top: 30px;
  }
  .service-yczb .picbox .tishi {
    left: 30px;
    top: 30px;
    text-shadow: 0 0 1px #000;
  }
}
.service-fwlc {
  margin-top: 15rem;
  position: relative;
}
.service-fwlc .common-title {
  text-align: center;
  font-size: 5.2rem;
  line-height: 6rem;
  letter-spacing: 0.62rem;
}
.service-fwlc .common-button {
  text-align: center;
  margin-top: 5rem;
}
.service-fwlc .common-button svg {
  width: 3rem;
  height: 3rem;
  vertical-align: top;
  margin-top: 1.9rem;
}
.service-fwlc .common-button a {
  color: var(--main-color);
  text-align: left;
  padding: 0 4rem;
  height: 6.6rem;
  min-width: 22.6rem;
  line-height: 6.6rem;
  border-radius: 6rem;
  background: var(--sub-color);
}
.service-fwlc .common-button a:hover {
  color: #fff;
  background: var(--main-color);
}
.service-fwlc .common-button a:hover svg {
  fill: #fff;
}
.service-fwlc ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: 7rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  max-width: 141rem;
  height: 34rem;
}
.service-fwlc li {
  width: 20%;
  text-align: center;
}
.service-fwlc li .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-fwlc li .icon img {
  max-height: 16rem;
}
.service-fwlc li .tit {
  padding: 0 6rem;
  padding-top: 4.2rem;
  padding-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: bold;
  font-family: var(--main-color);
  line-height: 4rem;
  letter-spacing: 0.42rem;
}
.service-fwlc li:first-child .icon,
.service-fwlc li:nth-child(3) .icon,
.service-fwlc li:nth-child(4) .icon {
  order: 1;
}
.service-fwlc li:first-child .tit,
.service-fwlc li:nth-child(3) .tit,
.service-fwlc li:nth-child(4) .tit {
  order: 0;
}
.service-fwlc li:nth-child(2),
.service-fwlc li:nth-child(5) {
  transform: translateX(-2rem);
}
.service-fwlc li:nth-child(2) .icon,
.service-fwlc li:nth-child(5) .icon {
  margin-top: 10rem;
}
.service-fwlc li:nth-child(2) .tit,
.service-fwlc li:nth-child(5) .tit {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.service-fwlc li:nth-child(3) {
  transform: translateX(-5rem);
}
.service-fwlc li:nth-child(4) {
  transform: translateX(9rem);
}
.service-fwlc li:nth-child(4) .tit {
  padding-top: 0;
}
.service-fwlc li:nth-child(5) {
  transform: translateX(6rem);
}
@media (max-width: 1024px) {
  .service-fwlc {
    margin-top: 50px;
  }
  .service-fwlc .common-title {
    font-size: 24px;
    line-height: 30px;
  }
  .service-fwlc .common-button {
    margin-top: 30px;
  }
  .service-fwlc ul {
    height: auto;
    max-width: 100%;
    margin-top: 40px;
    background-image: none !important;
  }
  .service-fwlc li {
    transform: translate(0) !important;
    width: 20%;
  }
  .service-fwlc li .item {
    display: block;
  }
  .service-fwlc li .icon {
    margin: 0 !important;
  }
  .service-fwlc li .icon img {
    max-height: 70px;
  }
  .service-fwlc li .tit {
    font-size: 14px;
    line-height: 20px;
    padding: 0 !important;
    padding-top: 10px !important;
  }
}
@media (max-width: 1024px) {
  .service-fwlc ul {
    margin-top: 0;
  }
  .service-fwlc li {
    width: 33.333%;
    margin-top: 30px;
  }
}
.service-qa {
  position: relative;
  margin-top: 15rem;
}
.service-qa .common-button {
  top: 0;
  right: 17rem;
  position: absolute;
}
.service-qa .common-button a {
  min-width: 23.2rem;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  border: solid 1px var(--main-color);
}
.service-qa .common-button a:hover {
  background: var(--main-color);
}
.service-qa .list {
  width: 243%;
  margin: 0 -124rem;
  margin-top: 4.5rem;
}
@media(max-width:1279px){
	.service-qa .list{
		margin: 0;
        width: 100%;
	}
}
.service-qa .list .item {
  padding: 3.6rem 0;
  padding-right: 3.6rem;
  margin: 2.2rem 0;
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  box-shadow: -0.26rem 0.15rem 1.4rem 0rem rgba(0, 0, 0, 0.35);
  border-radius: 2.4rem;
}
.service-qa .list .item .left {
  width: 50%;
  padding-left: 8rem;
  padding-right: 7rem;
  padding-top: 6rem;
}
.service-qa .list .item .left .t-1 {
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.service-qa .list .item .left .t-1::before {
  content: "";
  top: 0.6rem;
  left: 0;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #df1d14;
}
.service-qa .list .item .left .t-2 {
  font-weight: normal;
  margin-top: 2rem;
  font-size: 3.6rem;
  line-height: 6rem;
  letter-spacing: 0.29rem;
  /* font-family: BrandingSF-Bold; */
	font-weight: bold;
}
.service-qa .list .item .left .t-3 {
  margin-top: 2rem;
  flex-wrap: wrap;
  display: flex;
}
.service-qa .list .item .left .t-3 span {
  padding: 0 1.7rem;
  margin-top: 1rem;
  margin-right: 0.9rem;
  display: inline-block;
  min-width: 11.7rem;
  height: 4.9rem;
  line-height: 4.7rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 0.4rem;
  border: solid 1px #c8cece;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.18rem;
  color: var(--main-color);
}
.service-qa .list .item .left .t-4 {
  margin-top: 4rem;
  line-height: 2.873rem;
  letter-spacing: 0.25rem;
}
.service-qa .list .item .left .t-6 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 4.6rem;
  letter-spacing: 0.19rem;
}
.service-qa .list .item .right {
  width: 50%;
}
.service-qa .list .item .right .pic {
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem;
}
.service-qa .list .item .right .pic img {
  border-radius: 1.5rem;
}
.service-qa .list .item .right .pic::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.service-qa .list .swiper-container {
  overflow: inherit;
}
.service-qa .list .swiper-slide {
  transition: all 700ms ease;
  transform: scale(0.95);
}
.service-qa .list .swiper-slide-active {
  transform: scale(1);
}
.service-qa .list .swiper-button-prev,
.service-qa .list .swiper-button-next {
  top: 0;
  opacity: 1;
  margin-top: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 0.2rem #c1c7c8;
}
.service-qa .list .swiper-button-prev::after,
.service-qa .list .swiper-button-next::after {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 4rem 4rem;
}
.service-qa .list .swiper-button-prev:hover,
.service-qa .list .swiper-button-next:hover {
  border-color: var(--main-color);
}
.service-qa .list .swiper-button-prev {
  left: auto;
  right: 7rem;
}
.service-qa .list .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.service-qa .list .swiper-button-prev:hover::after {
  transform: rotate(180deg);
  background-image: url(../images/next.png);
}
.service-qa .list .swiper-button-next {
  right: 0;
}
.service-qa .list .swiper-button-next::after {
  transform: rotate(180deg);
  background-image: url(../images/prev.png);
}
.service-qa .list .swiper-button-next:hover::after {
  transform: rotate(0deg);
  background-image: url(../images/next.png);
}
@media (max-width: 1024px) {
  .service-qa {
    margin-top: 50px;
  }
  .service-qa .list {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .service-qa .list .item {
    margin: 0;
    padding: 0;
    box-shadow: none;
    display: block;
  }
  .service-qa .list .item .left {
    padding: 0px;
    width: 100%;
  }
  .service-qa .list .item .left .t-1 {
    font-size: 14px;
  }
  .service-qa .list .item .right {
    width: 100%;
    padding: 0px;
    margin-top: 30px;
  }
  .service-qa .list .swiper-slide {
    transform: scale(1);
  }
  .service-qa .list .swiper-container {
    overflow: hidden;
  }
  .service-qa .common-button {
    top: auto;
    right: auto;
    display: none;
    margin-top: 30px;
    position: relative;
  }
}
.service-dowland {
  overflow: hidden;
  position: relative;
  padding-top: 9rem;
  padding-bottom: 20rem;
}
.service-dowland .container {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.service-dowland .left {
  width: 28%;
}
.service-dowland .left .t-1 {
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.service-dowland .left .t-1::before {
  top: 0.5rem;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  background-color: #082744;
}
.service-dowland .left .t-2 {
  line-height: 2.873rem;
  margin-top: 2rem;
  letter-spacing: 0.25rem;
}
.service-dowland .left .common-title {
  margin-top: 2rem;
}
.service-dowland .left .common-button {
  margin-top: 6rem;
}
.service-dowland .left .common-button svg {
  width: 3rem;
  height: 3rem;
  vertical-align: top;
  margin-top: 1.9rem;
}
.service-dowland .left .common-button a {
  color: var(--main-color);
  text-align: left;
  padding: 0 4rem;
  height: 6.6rem;
  min-width: 22.6rem;
  line-height: 6.6rem;
  border-radius: 6rem;
  background: var(--sub-color);
}
.service-dowland .left .common-button a:hover {
  color: #fff;
  background: var(--main-color);
}
.service-dowland .left .common-button a:hover svg {
  fill: #fff;
}
.service-dowland .right {
  width: 66%;
}
.service-dowland .right .list {
  width: 127%;
}
.service-dowland .right .list .item .pic {
  border-radius: 1.6rem;
}
.service-dowland .right .list .item .pic img {
  border-radius: 1.6rem;
}
.service-dowland .right .list .item .text {
  margin-top: 3rem;
}
.service-dowland .right .list .item .text .t-1 {
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.service-dowland .right .list .item .text .t-1::before {
  top: 0.5rem;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  background-color: #082744;
}
.service-dowland .right .list .item .text .t-2 {
  margin-top: 2rem;
  font-size: 3rem;
  font-weight: bold;
  font-stretch: normal;
  line-height: 3.8rem;
  height: 7.6rem;
  letter-spacing: 0.48rem;
  color: var(--main-color);
}
.service-dowland .right .list .item .text .common-button {
  margin-top: 8rem;
}
.service-dowland .right .list .item .text .common-button a {
  font-weight: 700;
  min-width: 14rem;
  text-align: center;
  background-color: #fff;
  border: var(--main-color) 1px solid;
}
.service-dowland .right .list .item .text .common-button a:hover {
  background: var(--main-color);
}
.service-dowland .swiper-button-prev,
.service-dowland .swiper-button-next {
  bottom: 0;
  top: auto;
  margin-top: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 0.2rem #c1c7c8;
}
.service-dowland .swiper-button-prev::after,
.service-dowland .swiper-button-next::after {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 4rem 4rem;
}
.service-dowland .swiper-button-prev:hover,
.service-dowland .swiper-button-next:hover {
  border-color: var(--main-color);
}
.service-dowland .swiper-button-prev {
  left: 0;
}
.service-dowland .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.service-dowland .swiper-button-prev:hover::after {
  transform: rotate(180deg);
  background-image: url(../images/next.png);
}
.service-dowland .swiper-button-next {
  left: 7rem;
  right: auto;
}
.service-dowland .swiper-button-next::after {
  transform: rotate(180deg);
  background-image: url(../images/prev.png);
}
.service-dowland .swiper-button-next:hover::after {
  transform: rotate(0deg);
  background-image: url(../images/next.png);
}
@media (max-width: 1024px) {
  .service-dowland {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .service-dowland .container {
    display: block;
  }
  .service-dowland .left,
  .service-dowland .right {
    width: 100%;
  }
  .service-dowland .left .common-button,
  .service-dowland .right .common-button {
    margin-top: 30px;
  }
  .service-dowland .right {
    margin-top: 40px;
  }
  .service-dowland .right .list .item .text .t-2 {
    font-size: 18px;
    line-height: 30px;
  }
  .service-dowland .right .list {
    width: 100%;
  }
  .service-dowland .right .list .item .text .common-button {
    margin-top: 30px;
  }
  .service-dowland .swiper-button-prev,
  .service-dowland .swiper-button-next {
    left: auto;
    top: 0;
    right: 0;
    bottom: auto;
    position: absolute;
  }
  .service-dowland .swiper-button-prev {
    right: 70px;
  }
  .service-dowland .swiper-button-next {
    right: 20px;
  }
}
.common-button-c {
  text-align: center;
}
.common-button-c a {
  font-size: 2.2rem;
  letter-spacing: 0.22rem;
  padding: 0 3rem;
  text-align: left;
  min-width: 25.5rem;
  height: 6.6rem;
  line-height: 6.4rem;
  border-radius: 6rem;
}
.common-button-c svg {
  margin-top: 1.7rem;
}
.case-1 {
  margin-top: 7.5rem;
  position: relative;
}
.case-1 .container {
  background: #fff;
  padding: 11rem 0;
  border-radius: 1.2rem;
}
.case-1 .title {
  line-height: 8rem;
}
.case-1 .text {
  padding-top: 2rem;
  text-align: center;
  font-size: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.2rem;
}
.case-1 .common-button-c {
  margin-top: 4rem;
}
.case-1 .pic {
  margin-top: 5rem;
  text-align: center;
  border-radius: 1rem;
}
.case-1 .pic img {
  border-radius: 1rem;
}
@media (max-width: 1024px) {
  .case-1 {
    margin-top: 40px;
  }
  .case-1 .title {
    line-height: 30px;
    padding-top: 50px;
  }
}
/* 容器样式：相对定位，固定宽高 */
.compare-container {
  position: relative;
  max-width: 156rem;
  margin: 0 auto;
  height: 75.8rem;
  margin-top: 5rem;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 1rem;
}
.compare-container .c-before,
.compare-container .c-after {
  z-index: 9;
  text-align: center;
  letter-spacing: 0.18rem;
  border-radius: 1rem;
  min-width: 12rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #fff;
}
.compare-container .c-before {
  left: 3.5rem;
  bottom: 3.5rem;
  position: absolute;
}
.compare-container .c-after {
  right: 3.5rem;
  bottom: 3.5rem;
  position: absolute;
}
@media (max-width: 1024px) {
  .compare-container {
    margin-top: 40px;
    height: 300px;
  }
}
.compare-img {
  position: absolute;
  top: 0;
  height: 100%;
  object-fit: cover;
}
.img-before {
  left: 0;
  width: 50%;
  z-index: 1;
  border-right: solid 0.4rem #fff;
}
.img-after {
  left: 0;
  width: 100%;
  z-index: 0;
  border-left: solid 0.4rem #fff;
}
.drag-slider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12rem;
  height: 5.4rem;
  cursor: grab;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: url(../images/gundong.png) no-repeat center center;
  background-size: cover;
}
.dragging {
  cursor: grabbing;
}
.case-2 {
  position: relative;
  padding: 11rem 0;
}
.case-2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.case-2 .left {
  width: 50.3%;
}
.case-2 .left .pic {
  border-radius: 1rem;
}
.case-2 .left .pic img {
  border-radius: 1rem;
}
.case-2 .right {
  width: 49.7%;
  padding-left: 18.8rem;
}
.case-2 .right .t-1 {
  font-size: 3.2rem;
  font-weight: bold;
  font-stretch: normal;
  line-height: 4rem;
  letter-spacing: 0.32rem;
}
.case-2 .right .t-2 {
  margin-top: 3rem;
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 0.32rem;
}
.case-2 .right .common-button-c {
  text-align: left;
  margin-top: 10rem;
}
@media (max-width: 1024px) {
  .case-2 {
    padding: 50px 0;
  }
  .case-2 .container {
    display: block;
  }
  .case-2 .left {
    width: 100%;
  }
  .case-2 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .case-2 .right .common-button-c {
    margin-top: 30px;
  }
}
.case-3 {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.case-3 .container {
  flex-direction: row-reverse;
}
.case-3 .right {
  padding-left: 0;
  padding-right: 28rem;
}
.case-3 .left .pic {
  width: 108%;
  border-radius: 0;
}
.case-3 .left .pic img {
  border-radius: 0;
}
@media (max-width: 1024px) {
  .case-3 .left .pic {
    width: 100%;
    border-radius: 1rem;
  }
  .case-3 .left .pic img {
    border-radius: 1rem;
  }
  .case-3 .right {
    padding-right: 0;
  }
}
.case-4 {
  position: relative;
  overflow: hidden;
}
.case-4 .container {
  flex-direction: row-reverse;
}
.case-4 .right {
  padding-left: 0;
  padding-right: 28rem;
}
@media (max-width: 1024px) {
  .case-4 .right {
    padding-right: 0;
  }
}
.case-5 {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
  overflow: hidden;
}
.case-5 .right {
  padding-right: 12rem;
}
.case-5 .left {
  margin-left: -6.8rem;
}
.case-5 .left .pic {
  width: 108%;
  border-radius: 0;
}
.case-5 .left .pic img {
  border-radius: 0;
}
@media (max-width: 1024px) {
  .case-5 {
    padding: 50px 0;
  }
  .case-5 .left {
    margin-left: 0;
  }
  .case-5 .left .pic {
    border-radius: 1rem;
  }
  .case-5 .left .pic img {
    border-radius: 1rem;
  }
  .case-5 .right {
    padding-right: 0;
  }
}
.case-6 {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 14rem;
  height: 83.6rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.case-6 .card {
  float: right;
  background: #ffffff;
  border-radius: 1rem;
  padding: 9rem 8rem;
  max-width: 69rem;
  width: 100%;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}
.case-6 .sub-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.18rem;
}
.case-6 .sub-title::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--main-color);
  margin-right: 1rem;
}
.case-6 .main-title {
  font-size: 4.6rem;
  font-weight: bold;
  font-stretch: normal;
  line-height: 6rem;
  letter-spacing: 0.74rem;
}
.case-6 .desc {
  margin-bottom: 6rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  margin-top: 3rem;
}
.case-6 .search-box {
  position: relative;
  max-width: 60rem;
}
.case-6 .search-input {
  width: 100%;
  height: 6.2rem;
  padding: 0 2.7rem;
  background-color: #ffffff;
  border: solid 1px #465d73;
  border-radius: 0.4rem;
  font-size: 1.8rem;
  color: var(--main-color);
}
.case-6 .search-input::placeholder {
  color: var(--main-color);
  font-family: var(--font-family-B-S-L), var(--font-family-0);
}
.case-6 .search-btn {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #333333;
  cursor: pointer;
}
.case-6 .search-btn svg {
  width: 3rem;
  height: 3em;
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .case-6 {
    margin-top: 0;
    height: auto;
    padding: 50px 0;
  }
  .case-6 .card {
    float: none;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .case-6 .card {
    padding: 40px 30px;
  }
  .case-6 .main-title {
    font-size: 24px;
    line-height: 30px;
  }
  .case-6 .desc {
    margin-bottom: 30px;
  }
}
.case-7 {
  position: relative;
  padding: 15rem 0;
  background: #fff;
}
.case-7 .t-1,
.case-7 .t-2,
.case-7 .common-title {
  text-align: center;
}
.case-7 .t-1 {
  margin-bottom: 2rem;
  letter-spacing: 0.18rem;
}
.case-7 .t-1::before {
  content: "";
  margin-right: 1rem;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: var(--main-color);
}
.case-7 .t-2 {
  margin-top: 3rem;
  letter-spacing: 0.18rem;
}
.case-7 .card {
  position: relative;
  max-width: 106rem;
  margin: 0 auto;
  margin-top: 6rem;
}
.case-7 .card li {
  flex-wrap: wrap;
  display: flex;
}
.case-7 .card li .item {
  padding: 0 2rem;
  margin-top: 2rem;
  width: 50%;
}
.case-7 .card li .item a {
  letter-spacing: 0.2rem;
  font-size: 2rem;
  padding-left: 3rem;
  padding-right: 4rem;
  border-radius: 6rem;
  justify-content: space-between;
  display: flex;
  width: 100%;
  height: 7.4rem;
  align-items: center;
  border: solid 1px #092845;
}
.case-7 .card li .item span:last-child {
  font-size: 2.4rem;
}
.case-7 .card li .item:hover a {
  color: #fff;
  background: var(--main-color);
}
.case-7 .card .swiper-pagination {
  text-align: center;
  position: relative;
  margin-top: 4rem;
}
.case-7 .card .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  background: transparent;
  border: solid 0.1rem #082744;
}
.case-7 .card .swiper-pagination-bullet-active {
  background: var(--main-color);
}
@media (max-width: 1024px) {
  .case-7 {
    padding: 50px 0;
  }
  .case-7 .card {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .case-7 {
    padding: 50px 0;
  }
  .case-7 .card li .item {
    width: 100%;
  }
}
.case-8 {
  position: relative;
  display: flex;
  align-items: center;
  height: 98rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.case-8 .card {
  background-color: #fff;
  height: 85.6rem;
  padding: 16rem;
  display: flex;
  align-items: center;
  width: 85.7rem;
  border-radius: 1.4rem;
}
.case-8 .common-title {
  line-height: 7rem;
  font-weight: 700;
}
.case-8 .desc {
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  margin-top: 4rem;
}
.case-8 .common-button {
  text-align: left;
  margin-top: 5rem;
}
.case-8 .common-button svg {
  width: 2.4rem !important;
  height: 2.4rem !important;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .case-8 {
    height: auto;
    padding: 50px 0;
  }
  .case-8 .card {
    height: auto;
    width: 100%;
    padding: 50px;
  }
  .case-8 .common-title {
    line-height: 30px;
  }
  .case-8 .desc {
    margin-top: 20px;
  }
}
.caseshow-1 {
  padding-top: 7rem;
  display: flex;
  justify-content: space-between;
}
.caseshow-1 .case-header {
  width: 40%;
}
.caseshow-1 .case-header .sub-title {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  letter-spacing: 0.16rem;
}
.caseshow-1 .case-header .sub-title::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--main-color);
  margin-right: 1rem;
}
.caseshow-1 .case-header .main-title {
  font-size: 5.4rem;
  font-weight: bold;
  line-height: 6.027rem;
  letter-spacing: 0.86rem;
}
.caseshow-1 .case-content {
  width: 50%;
  font-size: 20px;
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 0.28rem;
  color: #0c2a46;
}
@media (max-width: 1024px) {
  .caseshow-1 {
    display: block;
  }
  .caseshow-1 .case-header {
    width: 100%;
  }
  .caseshow-1 .case-header .main-title {
    font-size: 24px;
    line-height: 30px;
  }
  .caseshow-1 .case-content {
    width: 100%;
    padding-top: 30px;
  }
}
.caseshow-2 {
  padding-bottom: 15rem;
  overflow: hidden;
}
.caseshow-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.caseshow-2 li {
  width: 50%;
  padding: 0 2rem;
  margin-top: 10rem;
}
.caseshow-2 li:first-child {
  width: 100%;
}
.caseshow-2 li:first-child .case-card {
  display: flex;
}
.caseshow-2 li:first-child .case-img {
  width: 66.5%;
  border-radius: 1rem;
}
.caseshow-2 li:first-child .case-info {
  width: 32.5%;
  padding-left: 4.4rem;
}

.caseshow-2 li .case-img{
	overflow: hidden;
    position: relative;
}

.caseshow-2 li .case-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caseshow-2 li .case-img:after {
    content: "";
    display: block;
    padding-bottom: 57%;
}

.caseshow-2 .case-img img {
  border-radius: 1rem;
  object-fit: cover;
}
.caseshow-2 .case-location {
  margin-top: 2rem;
  font-weight: bold;
  letter-spacing: 0.18rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}
.caseshow-2 .case-location img {
  margin-right: 0.5rem;
  max-height: 3rem;
}
.caseshow-2 .case-title {
  font-size: 3.6rem;
  line-height: 4.6rem;
  margin-top: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.58rem;
}
.caseshow-2 .case-desc {
  height: 6rem;
  overflow: auto;
  line-height: 3rem;
  letter-spacing: 0.18rem;
  margin-top: 2.5rem;
}
.caseshow-2 .case-meta {
  margin-top: 3rem;
  letter-spacing: 0.18rem;
  border-top: 0.1rem solid #e4e8e8;
}
.caseshow-2 .case-meta-item {
  padding: 1rem 0;
  border-bottom: 0.1rem solid #e4e8e8;
}
.caseshow-2 .pro-scroll,
.caseshow-2 .common-button {
  text-align: center;
}
.caseshow-2 .pro-scroll {
  font-weight: bold;
  margin-top: 10rem;
  letter-spacing: 0.18rem;
}
.caseshow-2 .pro-scroll .line {
  margin: 0 auto;
  position: relative;
  margin-top: 1.5rem;
  width: 33.4rem;
  height: 0.3rem;
  background-color: #ccd3d3;
  border-radius: 0.15rem;
}
.caseshow-2 .pro-scroll .active {
  top: 0;
  left: 0;
  z-index: 2;
  width: 33.333%;
  position: absolute;
  height: 0.3rem;
  background-color: #00ceee;
  border-radius: 0.15rem;
}
.caseshow-2 .common-button {
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .caseshow-2 {
    padding-bottom: 60px;
  }
  .caseshow-2 li:first-child .case-card {
    display: block;
  }
  .caseshow-2 li:first-child .case-img {
    width: 100%;
  }
  .caseshow-2 li:first-child .case-info {
    width: 100%;
    padding-left: 0;
  }
  .caseshow-2 li {
    margin-top: 50px;
    width: 100%;
  }
  .caseshow-2 li .case-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.experience-1 {
  position: relative;
  color: #fff;
  height: 120.8rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.experience-1 .container {
  position: relative;
}
.experience-1 .common-title {
  top: 10rem;
  left: 0;
  color: #fff;
  position: absolute;
}
.experience-1 .info {
  left: 0;
  top: 21rem;
  position: absolute;
  width: 44.1rem;
  font-weight: bold;
  line-height: 3rem;
  letter-spacing: 0.25rem;
}
.experience-1 .ditu {
  text-align: center;
  position: relative;
  max-width: 103.2rem;
  margin: 0 auto;
}
.experience-1 .ditu-2 {
  bottom: 0;
  right: 0;
  position: absolute;
}
.experience-1 .circle {
  z-index: 3;
  width: 2rem;
  height: 2rem;
  position: relative;
}
.experience-1 .add {
  position: absolute;
  cursor: pointer;
}
.experience-1 .add:hover .item {
  display: flex;
}
.experience-1 .add-beijing {
	top: 42rem;
	left: 67rem;
}
.experience-1 .add-heibei {
	top: 42.5rem;
	left: 70.5rem;
}
.experience-1 .add-shanghai {
  top: 57.8rem;
  left: 78.4rem;
}
.experience-1 .add-sichuan-cd {
  top: 62rem;
  left: 48rem;
}
.experience-1 .add-sichuan-lz {
  top: 65.2rem;
  left: 48.5rem;
}
.experience-1 .add-sichuan-ls {
    top: 63.5rem;
    left: 46.5rem;
}
.experience-1 .add-chongqing {
  top: 64.1rem;
  left: 51rem;
}
.experience-1 .add-chongqing-2 {
  top: 64.5rem;
  left: 52rem;
}
.experience-1 .add-yunan-km {
	top: 73.5rem;
	left: 44.3rem;
}
.experience-1 .add-guiyang {
  top: 69.5rem;
  left: 52.3rem;
}
.experience-1 .add-changsha {
  top: 66.5rem;
  left: 62.5rem;
}
.experience-1 .add-wubei-wh {
    top: 61.4rem;
    left: 65.1rem;
}
.experience-1 .add-guangdong {
  top: 77.2rem;
  left: 65rem;
}
.experience-1 .add-guangdong2 {
    top: 75.5rem;
    left: 65rem;
}
.experience-1 .add-shenzhen {
	top: 77rem;
	left: 67rem;
}
.experience-1 .add-jinhua {
  top: 63rem;
  left: 76rem;
}
.experience-1 .add-suzhou {
	top: 57.7rem;
	left: 76.2rem;
}
.experience-1 .add-changzhou {
	top: 56.4rem;
	left: 75rem;
}
.experience-1 .add-nantong {
	top: 56.3rem;
	left: 77.5rem;
}
.experience-1 .add-yangzhou {
  top: 56rem;
  left: 75.7rem;
}
.experience-1 .add-shandong {
  top: 46.7rem;
  left: 76.1rem;
}
.experience-1 .item {
  z-index: 99;
  top: -2rem;
  left: 2rem;
  align-items: center;
  font-size: 1.8rem;
  display: none;
  padding: 1rem;
  width: 60rem;
  position: absolute;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
}
.experience-1 .item .pic {
  width: 20%;
  border-radius: 0.5rem;
}
.experience-1 .item .pic img {
  border-radius: 0.5rem;
}
.experience-1 .item .nr {
  width: 72%;
  letter-spacing: 0.14rem;
  text-align: left;
  padding-left: 1rem;
}
.experience-1 .item .nr .t-1 {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .experience-1 {
    padding: 60px 0;
    height: auto;
  }
  .experience-1 .common-title,
  .experience-1 .info {
    top: auto;
    position: relative;
  }
  .experience-1 .info {
    margin-top: 20px;
  }
  .experience-1 .ditu,
  .experience-1 .ditu-2 {
    display: none;
  }
}
.solution-1 {
  padding-top: 15rem;
  display: flex;
  justify-content: space-between;
}
.solution-1 .left {
  width: 50%;
  height: 16rem;
  font-size: 6rem;
  font-weight: bold;
  line-height: 10rem;
  letter-spacing: 1.08rem;
  color: var(--main-color);
}
.solution-1 .right {
  width: 35%;
}
.solution-1 .right .text {
  font-size: 2rem;
  line-height: 3.6rem;
  letter-spacing: 0.51rem;
  color: var(--main-color);
}
.solution-1 .right .text-2 {
  margin: 0 -1rem;
  padding-top: 6rem;
  padding-right: 6rem;
  display: flex;
  flex-wrap: wrap;
}
.solution-1 .right .text-2 .common-button {
  padding: 0 1rem;
  margin-top: 2rem;
  width: 50%;
}
.solution-1 .right .text-2 .common-button svg {
  margin-top: 1.7rem;
  vertical-align: top;
}
.solution-1 .right .text-2 .common-button a {
  height: 6.6rem;
  border-radius: 6rem;
  line-height: 6.4rem;
  min-width: 100%;
  background: #fff;
  color: var(--main-color);
  border: solid 1px var(--main-color);
}
.solution-1 .right .text-2 .common-button a:hover {
  border-color: var(--sub-color);
  color: var(--main-color);
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .solution-1 {
    padding-top: 0px;
    display: block;
  }
  .solution-1 .left,
  .solution-1 .right {
    width: 100%;
    height: auto;
  }
  .solution-1 .left {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 2px;
  }
  .solution-1 .right {
    margin-top: 20px;
  }
  .solution-1 .right .text-2 {
    padding-top: 30px;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .solution-1 .right .text-2 .common-button {
    width: 100%;
  }
}
.solution-2{
	position: relative;
}
.solution-2 .list-5 {
  margin-top: 27rem;
}
.solution-2 .list-5 .bt i {
  vertical-align: top;
  font-size: 3rem;
  line-height: 3.4rem;
  font-style: normal;
}
.solution-2 .list-5 .item .text {
  padding-top: 4rem;
  padding-top: 0;
  position: absolute;
  bottom: 15rem;
  left: 5rem;
  color: #fff;
}
.solution-2 .list-5 .item .t-3 {
  font-size: 3.441rem;
  line-height: 4rem;
  font-family: var(--font-family-B-S-B);
}
.solution-2 .list-5 .item .t-4 {
  padding-top: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3rem;
  letter-spacing: 0.38rem;
}
.solution-2 .list-5 .item .common-button {
  margin-top: 7rem;
  margin-top: auto;
  position: absolute;
  bottom: 5rem;
  left: 5rem;
}
.solution-2 .list-5 .item .common-button a {
  text-align: center;
  min-width: 14rem;
  height: 5.2rem;
  background: #fff;
  line-height: 5rem;
  /*border: solid 1px var(--main-color);*/
}
.solution-2 .list-5 .item .common-button a:hover {
  color: #fff;
  background: var(--main-color);
}
@media (max-width: 1024px) {
  .solution-2 .list-5 {
    margin-top: 50px;
  }
  .solution-2 .list-5 .bt {
    font-size: 24px;
    line-height: 30px;
    width: 60%;
  }
  .solution-2 .list-5 .item .common-button {
    margin-top: 30px;
    margin-bottom: 1px;
  }
}
.solution-3 {
  overflow: hidden;
  position: relative;
}
.solution-3 .container {
  position: relative;
}
.solution-3 .list {
  max-width: none;
}
.solution-3 .list .item .left .t-3 span {
  height: 4.6rem;
  line-height: 4.4rem;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.solution-3 .list .item .left .t-4 {
  margin-top: 4.5rem;
}
.solution-3 .list .item .left .t-5 {
  padding-left: 1rem;
  position: relative;
  line-height: 2.873rem;
  letter-spacing: 0.29rem;
  color: #6c6e6d;
}
.solution-3 .list .item .left .t-5::before {
  content: "";
  width: 2px;
  height: 2px;
  top: 1.5rem;
  left: 0;
  background: #666;
  position: absolute;
}
.solution-3 .list .item .left .t-6 {
  padding: 1rem 0;
}
@media (max-width: 640px) {
  .solution-3 .common-title {
    width: 58%;
  }
  .solution-3 .list .swiper-button-prev {
    right: 80px;
  }
  .solution-3 .list .swiper-button-next {
    right: 20px;
  }
}
.solution-4 {
  margin-top: 15rem;
  overflow: hidden;
  position: relative;
}
.solution-4 .info {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.16rem;
}
.solution-4 .info::before {
  top: 0.6rem;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  position: absolute;
  background-color: #082744;
}
.solution-4 .list {
  margin-top: 5.5rem;
}
.solution-4 .list .item .pic {
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.solution-4 .list .item .pic img {
  border-radius: 1rem;
}
.solution-4 .list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.solution-4 .list .item .t-1 {
  margin-top: 3rem;
  font-size: 3rem;
  font-weight: bold;
  line-height: 4rem;
  height: 4rem;
  letter-spacing: 0.48rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.solution-4 .list .item .t-1 span {
  letter-spacing: 0;
  font-weight: normal;
  font-family: var(--font-family-B-S-B);
}
.solution-4 .list .item .t-1 i {
  font-style: normal;
  font-family: var(--font-family-B-S-L);
}
.solution-4 .list .item .t-2 {
  margin-top: 1.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  height: 8rem;
  line-height: 4rem;
  letter-spacing: 0.38rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.solution-4 .list .item .common-button {
  margin-top: 4rem;
}
.solution-4 .list .item .common-button a {
  min-width: 14rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .solution-4 {
    margin-top: 50px;
  }
  .solution-4 .list .item .t-1 {
    font-size: 20px;
  }
  .solution-4 .list .item .t-2 {
    font-size: 16px;
    margin-top: 0;
  }
}
.solution-5 {
  padding: 12rem 0;
  overflow: hidden;
  position: relative;
}
.solution-5 .common-title {
  text-align: center;
}
.solution-5 .list {
  margin: 0 auto;
  margin-top: 3rem;
  max-width: 97rem;
  flex-wrap: wrap;
  display: flex;
}
.solution-5 .list .common-button {
  padding: 0 2.3rem;
  margin-top: 2.3rem;
  width: 50%;
}
.solution-5 .list .common-button svg {
  margin-top: 1.7rem;
  vertical-align: top;
}
.solution-5 .list .common-button a {
  letter-spacing: 0.2rem;
  padding: 0 4.5rem;
  height: 7.4rem;
  font-size: 2rem;
  border-radius: 6rem;
  line-height: 7.2rem;
  min-width: 100%;
  background: #fff;
  color: var(--main-color);
  border: solid 1px var(--main-color);
}
.solution-5 .list .common-button a:hover {
  border-color: var(--sub-color);
  color: var(--main-color);
  background: var(--sub-color);
}
@media (max-width: 1024px) {
  .solution-5 {
    padding: 50px 0;
  }
}
@media (max-width: 500px) {
  .solution-5 .list {
    margin-top: 10px;
    max-width: 100%;
  }
  .solution-5 .list .common-button {
    width: 100%;
  }
}
.solution-6 {
  position: relative;
  padding: 7rem 0;
  min-height: 89rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.solution-6 .form {
  color: #fff;
  border-radius: 2rem;
  padding-left: 12rem;
  padding-right: 12rem;
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: var(--main-color);
  max-width: 80rem;
}
.solution-6 .form .common-title {
  color: #fff;
  line-height: 8rem;
}
.solution-6 .form .text {
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  padding-top: 3rem;
}
.solution-6 .form .list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.solution-6 .form .list li {
  width: 50%;
  padding: 0 1rem;
  margin-top: 3rem;
}
.solution-6 .form .list li .text-name {
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
.solution-6 .form .list li .text-input {
  margin-top: 1.5rem;
}
.solution-6 .form .list li .text-input input {
  font-size: 1.8rem;
  padding: 0 1.7rem;
  width: 100%;
  height: 7.6rem;
  letter-spacing: 0.18rem;
  font-family: var(--font-family-0);
  background: transparent !important;
  line-height: 7.4rem;
  border-radius: 1.2rem;
  border: solid 1px #ffffff;
  color:#ffffff;
}
.solution-6 .form .list li .text-input input::-webkit-input-placeholder {
  color: #fff;
}
.solution-6 .form .list li .text-input input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.solution-6 .form .list li .text-input input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.solution-6 .form .list li .text-input input:-ms-input-placeholder {
  color: #fff;
}
.solution-6 .form .list li .text-input input::-webkit-credentials-auto-fill-button{
	background-color: transparent !important;
}
.solution-6 .form .list li .text-input input:focus{
	background-color: transparent !important;
}
.solution-6 .form .list li .text-input input:-webkit-autofill,
.solution-6 .form .list li .text-input input:-webkit-autofill:hover,
.solution-6 .form .list li .text-input input:-webkit-autofill:focus,
.solution-6 .form .list li .text-input input:-webkit-autofill:active{
	-webkit-background-clip: text;
	-webkit-text-fill-color: #fff; /* 文字颜色 */
	transition: background-color 99999s ease-in-out 99999s;
}
.solution-6 .form .list .common-button {
  margin-top: 7.6rem;
}
.solution-6 .form .list .common-button svg {
  vertical-align: top;
  margin-top: 1.8rem;
}
.solution-6 .form .list .common-button a {
  padding: 0 4rem;
  min-width: 25.7rem;
  height: 6.6rem;
  line-height: 6.6rem;
  background-color: #ffffff;
  border-radius: 3.3rem;
}
.solution-6 .form .list .common-button a:hover {
  color: var(--main-color);
  background: var(--sub-color);
}
.solution-6 .form .list .common-button a:hover svg {
  fill: var(--main-color);
}
@media (max-width: 1024px) {
  .solution-6 {
    min-height: auto;
  }
  .solution-6 .form {
    max-width: 100%;
    padding: 40px;
  }
  .solution-6 .form .common-title {
    line-height: 30px;
  }
  .solution-6 .form .list .common-button {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .solution-6 .form .list {
    display: block;
  }
  .solution-6 .form .list li {
    width: 100%;
  }
  .solution-6 .form .list .common-button a {
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .experience-top {
    margin-top: 60px;
  }
}
.proshow-warp .title {
  margin-left: 0;
}
.proshow-warp .title a {
  margin-left: 8rem;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 3.2rem;
  letter-spacing: 0.24rem;
  text-decoration: underline;
}
.proshow-warp .title a:hover {
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .proshow-warp .title a {
    display: block;
    margin-left: 0;
    font-size: 16px;
  }
}
.product-show {
  padding: 9rem 6rem;
  background: #fff;
  margin-top: 9rem;
  display: flex;
  justify-content: space-between;
}
.product-show .left {
  position: relative;
  width: 58.4%;
}
.product-show .left .fullBtn {
  right: 0;
  cursor: pointer;
  bottom: 20rem;
  position: absolute;
}
.product-show .left .fullBtn img {
  max-height: 6rem;
  transition: all 700ms ease;
  border-radius:50%;
}
.product-show .left .fullBtn img:hover {
    box-shadow: 0 0 1rem rgba(12, 42, 70, 0.5);
}
.product-show .left .mySwiper .pic,
.product-show .left .mySwiper2 .pic {
  position: relative;
  border-radius: 0.8rem;
}
.product-show .left .mySwiper .pic img,
.product-show .left .mySwiper2 .pic img {
  border-radius: 0.8rem;
  transition: all 700ms ease;
}
.product-show .left .mySwiper .pic::after,
.product-show .left .mySwiper2 .pic::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-show .left .mySwiper2 .pic img:hover{
	transform: scale(1.1);
}
.product-show .left .mySwiper {
  margin-top: 1rem;
}
.product-show .left .mySwiper .pic {
  border: solid 1px #6a6e6e;
}
.product-show .left .mySwiper2 .pic {
  margin: 0 auto;
  max-width: 68rem;
}
.product-show .left .swiper-button-prev,
.product-show .left .swiper-button-next {
  opacity: 1;
  vertical-align: top;
  transition: all 500ms ease;
  border-radius: 50%;
  width: 5.2rem;
  height: 5.2rem;
  line-height: 4.8rem;
  border: solid 0.2rem #c1c7c8;
}
.product-show .left .swiper-button-prev::after,
.product-show .left .swiper-button-next::after {
  content: "→";
  vertical-align: top;
  font-size: 1.9rem;
  color: #c1c7c9;
  transition: all 500ms ease;
}
.product-show .left .swiper-button-prev:hover,
.product-show .left .swiper-button-next:hover {
  border-color: var(--main-color);
}
.product-show .left .swiper-button-prev:hover::after,
.product-show .left .swiper-button-next:hover::after {
  color: var(--main-color);
}
.product-show .left .swiper-button-prev {
  left: 0;
}
.product-show .left .swiper-button-prev::after {
  transform: rotateY(180deg);
}
.product-show .left .swiper-button-next {
  right: 0;
}
.product-show .right {
  width: 38%;
}
.product-show .right .bt {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 0.58rem;
}
.product-show .right .text {
  margin-top: 4rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
.product-show .right .text span {
  font-weight: bold;
}
.product-show .right .chawk-tit {
  margin-top: 2rem;
  font-weight: bold;
  letter-spacing: 0.18rem;
}
.product-show .right .chawk {
  width: 41.7rem;
  position: relative;
  margin-top: 1.5rem;
}
.product-show .right .chawk .button {
  position: relative;
}
.product-show .right .chawk .button a {
  padding: 0 2.8rem;
  display: inline-block;
  min-width: 41.7rem;
  height: 6.2rem;
  line-height: 6rem;
  background-color: #ffffff;
  border-radius: 0.4rem;
  border: solid 1px #465d73;
}
.product-show .right .chawk .button .icon {
  top: 0;
  right: 2.8rem;
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-block;
  transform: rotate(-135deg);
  border-left: solid 1px #092845;
  border-top: solid 1px #092845;
}
.product-show .right .chawk .button:hover .icon {
  transform: rotate(45deg) translateY(0.8rem);
}
.product-show .right .chawk .chawk-drop {
  background: #fff;
  border: solid 1px #465d73;
  border-top: 0;
  display: none;
  padding-top: 1rem;
  padding-bottom: 2rem;
  top: 5.8rem;
  left: 0;
  z-index: 9;
  padding-left: 2rem;
  font-size: 1.6rem;
  width: 100%;
  position: absolute;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.product-show .right .chawk .chawk-drop li {
  padding-top: 1rem;
}
.product-show .right .chawk .chawk-drop li a {
  color: #666;
  display: block;
}
.product-show .right .chawk .chawk-drop li a:hover {
  color: var(--main-color);
}
.product-show .right .button-link {
  margin-top: 4rem;
  padding: 3rem;
  background-color: #e0f1f5;
  border-radius: 0.8rem;
}
.product-show .right .button-link a {
  letter-spacing: 0.38rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-show .right .button-link img {
  margin-right: 1rem;
  max-height: 4rem;
}
.product-show .right .button-link span:first-child {
  font-size: 2.4rem;
  display: flex;
  align-items: center;
}
.product-show .right .button-link span:last-child {
  text-decoration: underline;
}
.product-show .right .hxys {
  margin-top: 4rem;
}
.product-show .right .hxys .t-1 {
  font-size: 2.4rem;
  padding-bottom: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.38rem;
}
.product-show .right .hxys .t-2 {
  padding-left: 3.5rem;
  margin-top: 1rem;
  position: relative;
}
.product-show .right .hxys .t-2 img {
  top: 0.3rem;
  left: 0;
  position: absolute;
  max-height: 2.4rem;
  letter-spacing: 0.18rem;
}
.product-show .right .menu-row {
  margin-top: 6rem;
}
.product-show .right .menu-row ul {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-show .right .menu-row li a {
  font-weight: bold;
  letter-spacing: 0.18rem;
  text-decoration: underline;
}
.product-show .right .menu-row li a:hover {
  color: var(--sub-color);
}
.product-show .right .common-button {
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .product-show {
    padding: 30px;
    padding-bottom: 40px;
    margin-top: 40px;
    display: block;
  }
  .product-show .left,
  .product-show .right {
    width: 100%;
  }
  .product-show .left .mySwiper .pic {
    margin-top: 1px;
  }
  .product-show .left .mySwiper2 .pic {
    max-width: 100%;
  }
  .product-show .right {
    margin-top: 40px;
  }
  .product-show .right .bt {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 2px;
  }
  .product-show .right .text {
    margin-top: 20px;
  }
  .product-show .right .chawk {
    width: 100%;
  }
  .product-show .right .chawk .button a {
    min-width: 100%;
  }
  .product-show .right .menu-row {
    margin-top: 30px;
  }
}
.zoom {
  z-index: -9;
  opacity: 0;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.zoom.show {
  z-index: 9999;
  opacity: 1;
}
.zoom .closeBtn {
  cursor: pointer;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #000;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: absolute;
  z-index: 9999;
  right: 2rem;
  top: 2rem;
}
.zoom .closeBtn:before,
.zoom .closeBtn:after {
  content: "";
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.zoom .closeBtn:before {
  width: 1.8rem;
  height: 0.2rem;
}
.zoom .closeBtn:after {
  width: 0.2rem;
  height: 1.8rem;
}
.zoom .closeBtn:hover {
  background: var(--main-color);
}
.zoom .swiper-scrollbar {
  z-index: 9;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0rem;
  width: 2px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.zoom .swiper-scrollbar .swiper-scrollbar-drag {
  background: #000 !important;
}
.zoom .swiper-container {
  height: 100%;
}
.zoom .large {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
}
.zoom .large img {
  width: initial;
  height: initial;
  display: inline-block;
}
.zoom .large .box {
  height: 100%;
  position: relative;
}
.zoom .large .box::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.zoom .large .box img {
  border-radius: 2rem;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  text-align: center;
  margin: auto;
  transition: all 700ms ease;
}
.zoom .large .box img:hover{
	transform: scale(1.1);
}
.zoom .small {
  width: 5rem;
  position: absolute;
  z-index: 9;
  top: 50%;
  right: 2rem;
  transform: translateY(-49%);
}
.zoom .small li {
  padding: 0.5rem 0.1rem;
  height: auto;
}
.zoom .small .box {
  border: solid 1px #fff;
  border-radius: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  max-height: 9rem;
  position: relative;
}
.zoom .small .box::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.zoom .small .box img {
  border-radius: 0.5rem;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  text-align: center;
  margin: auto;
}
.zoom .small .box:hover {
  opacity: 1;
}
.zoom .small .swiper-slide-thumb-active .box {
  opacity: 1;
  border-color: var(--main-color);
}
@media (max-width: 1024px) {
  .zoom {
    display: none;
  }
}
.proshow-1 {
  padding-top: 15rem;
}
.proshow-1 .menu {
  text-align: center;
}
.proshow-1 .menu li a {
  padding: 0 5rem;
}
.proshow-1 .tabbox {
  margin: 0 auto;
  margin-top: 6rem;
  max-width: 121rem;
}
.proshow-1 .tabcot {
  display: none;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
.proshow-1 .tabcot.show {
  display: block;
}
@media (max-width: 1024px) {
  .proshow-1 {
    padding-top: 50px;
  }
  .proshow-1 .menu ul {
    height: auto;
  }
  .proshow-1 .menu li a {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
  }
  .proshow-1 .menu li a::before {
    margin-right: 5px;
    margin-top: 15px;
  }
  .proshow-1 .tabbox {
    max-width: 100%;
  }
}
.proshow-2 {
  margin-top: 14rem;
}
.proshow-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2.8rem;
}
.proshow-2 li {
  width: 50%;
  padding: 0 2.8rem;
  margin-top: 6rem;
}
.proshow-2 li .item {
  position: relative;
}
.proshow-2 li .pic {
  border-radius: 1rem;
}
.proshow-2 li .pic img {
  border-radius: 1rem;
}
.proshow-2 li .playBtn {
  top: 50%;
  left: 50%;
  z-index: 2;
  line-height: 8.8rem;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  background: rgba(9, 40, 69, 0.7);
}
.proshow-2 li .playBtn svg {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .proshow-2 {
    margin-top: 50px;
  }
  .proshow-2 ul {
    margin: 0 -14px;
  }
  .proshow-2 li {
    padding: 0 14px;
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .proshow-2 li {
    width: 100%;
  }
}
.proshow-3 .list {
  position: relative;
}
.proshow-3 ul {
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
}
.proshow-3 li {
  padding-left: 0;
  padding-right: 0;
  width: auto;
}
.proshow-3 .swiper-button-prev,
.proshow-3 .swiper-button-next {
  top: -6rem;
  opacity: 1;
  margin-top: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 0.2rem #c1c7c8;
}
.proshow-3 .swiper-button-prev::after,
.proshow-3 .swiper-button-next::after {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 4rem 4rem;
}
.proshow-3 .swiper-button-prev:hover,
.proshow-3 .swiper-button-next:hover {
  border-color: var(--main-color);
}
.proshow-3 .swiper-button-prev {
  left: auto;
  right: 7rem;
}
.proshow-3 .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.proshow-3 .swiper-button-prev:hover::after {
  transform: rotate(180deg);
  background-image: url(../images/next.png);
}
.proshow-3 .swiper-button-next {
  right: 0;
}
.proshow-3 .swiper-button-next::after {
  transform: rotate(180deg);
  background-image: url(../images/prev.png);
}
.proshow-3 .swiper-button-next:hover::after {
  transform: rotate(0deg);
  background-image: url(../images/next.png);
}
.proshow-4 {
  margin-top: 15rem;
}
.proshow-4 .row {
  display: flex;
  justify-content: space-between;
}
.proshow-4 .left {
  width: 44%;
}
.proshow-4 .left .common-title {
  padding-bottom: 3rem;
}
.proshow-4 .left .text {
  padding-top: 4rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
}
.proshow-4 .left .text .t-1 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 3rem;
  letter-spacing: 0.38rem;
}
.proshow-4 .left .text .t-2 {
  padding-top: 1.5rem;
}
.proshow-4 .right {
  width: 55.4%;
}
.proshow-4 .right .pic {
  border-radius: 1rem;
}
.proshow-4 .right .pic img {
  border-radius: 1rem;
}
.proshow-4 .right .tit {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.18rem;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .proshow-4 {
    margin-top: 50px;
  }
  .proshow-4 .row {
    display: block;
  }
  .proshow-4 .left,
  .proshow-4 .right {
    width: 100%;
  }
  .proshow-4 .right {
    margin-top: 40px;
  }
}
.proshow-5 {
  position: relative;
  padding-top: 14rem;
}
.proshow-5 .container-box {
  display: flex;
  justify-content: space-between;
}
.proshow-5 .container-box .title {
  font-size: 5.6rem;
  font-stretch: normal;
  line-height: 6.027rem;
  letter-spacing: 0.9rem;
}
.proshow-5 .container-box .menu {
  width: 35%;
}
.proshow-5 .container-box .menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.proshow-5 .container-box .menu li a {
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: 0.24rem;
  text-decoration: underline;
}
.proshow-5 .container-box .menu li a:hover {
  color: var(--sub-color);
}
@media (max-width: 1024px) {
  .proshow-5 {
    padding-top: 50px;
  }
  .proshow-5 .container-box {
    display: block;
  }
  .proshow-5 .container-box .title {
    font-size: 26px;
    line-height: 30px;
  }
  .proshow-5 .container-box .menu {
    padding-top: 10px;
    width: 100%;
  }
  .proshow-5 .container-box .menu ul {
    justify-content: flex-start;
  }
  .proshow-5 .container-box .menu li {
    padding-right: 10px;
  }
}
.pronr-1 {
  position: relative;
  padding-top: 7rem;
}
.pronr-1 .table {
  letter-spacing: 0.18rem;
  margin-top: 5rem;
  padding: 3rem 5.5rem;
  padding-bottom: 1rem;
  background-color: #f9f9fa;
}
.pronr-1 .table th {
  text-align: left;
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
  padding-bottom: 2rem;
}
.pronr-1 .table tr {
  border-top: solid 1px #282828;
}
.pronr-1 .table tr:first-child {
  border-top: 0;
}
.pronr-1 .table td {
	width: 33.333%;
	padding: 2rem 0;
	font-family: var(--font-family-B-S-M), var(--font-family-0);
}
@media (max-width: 1024px) {
  .pronr-1 {
    padding-top: 50px;
  }
  .pronr-1 .table {
    margin-top: 20px;
    padding: 20px;
    overflow-x: scroll;
  }
  .pronr-1 .table table {
    width: 640px;
  }
}
.pronr-2 {
  position: relative;
  padding: 15rem 0;
}
.pronr-2 ul {
  margin-top: 5rem;
}
.pronr-2 li {
  background-color: #f9f9fa;
  padding: 2rem 6rem;
}
.pronr-2 li .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pronr-2 li .item .t-1 {
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
.pronr-2 li .item .t-2 {
  padding: 0 2.4rem;
  display: inline-block;
  min-width: 18.2rem;
  height: 5.4rem;
  line-height: 5.4rem;
  background-color: #02d4f1;
  border-radius: 2.7rem;
}
.pronr-2 li .item .t-2 span {
  float: right;
}
.pronr-2 li .item .t-2 svg {
  width: 3rem;
  height: 3rem;
}
@media (max-width: 1024px) {
  .pronr-2 {
    padding: 50px 0;
  }
  .pronr-2 li {
    padding: 20px;
  }
}
.pronr-3 {
  padding: 15rem 0;
  background: #f9f9fa;
  position: relative;
}
.pronr-3 .row {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
}
.pronr-3 .left {
  position: relative;
  width: 33%;
}
.pronr-3 .left .fangda {
  bottom: 0rem;
  right: 0%;
  position: absolute;
}
.pronr-3 .left .fangda img {
  max-height: 6rem;
  transition: all 700ms ease;
  border-radius: 50%;
}
.pronr-3 .left .fangda img:hover {
    box-shadow: 0 0 1rem rgba(12, 42, 70, 0.5);
}
.pronr-3 .right {
  width: 60%;
}
.pronr-3 .table {
  padding-right: 2rem;
  height: 64rem;
  overflow: auto;
  margin-top: 4rem;
}
.pronr-3 .table tr {
  border-bottom: solid 1px #092845;
}
.pronr-3 .table th {
  text-align: left;
  padding-bottom: 1rem;
  font-size: 2.4rem;
  letter-spacing: 0.38rem;
}
.pronr-3 .table td {
  font-weight: 700;
  letter-spacing: 0.18rem;
  padding: 3.4rem 0;
}
.pronr-3 .table td:first-child,
.pronr-3 .table th:first-child {
  width: 12%;
}
.pronr-3 .table td:nth-child(2),
.pronr-3 .table th:nth-child(2) {
  width: 68%;
}
.pronr-3 .table td:nth-child(3),
.pronr-3 .table th:nth-child(3) {
  width: 10%;
}
.pronr-3 .table td:nth-child(4),
.pronr-3 .table th:nth-child(4) {
  width: 10%;
  text-align: center;
}
.pronr-3 .table a {
	letter-spacing: 0;
	font-family: var(--font-family-B-S-L);
}
.pronr-3 .table a:hover {
  /*color: var(--sub-color);*/
}
@media (max-width: 1024px) {
  .pronr-3 {
    padding: 50px 0;
  }
  .pronr-3 .row {
    display: block;
  }
  .pronr-3 .left,
  .pronr-3 .right {
    width: 100%;
  }
  .pronr-3 .left .table,
  .pronr-3 .right .table {
    height: auto;
    overflow-x: scroll;
  }
  .pronr-3 .left .table table,
  .pronr-3 .right .table table {
    width: 640px;
  }
}
.pronr-4 {
  background: #f9f9fa;
  position: relative;
  padding-bottom: 15rem;
}
.pronr-4 .container {
  position: relative;
}
.pronr-4 .list {
  margin-top: 7rem;
}
.pronr-4 .list ul {
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
}
.pronr-4 .list li {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}
.pronr-4 .swiper-button-prev,
.pronr-4 .swiper-button-next {
  top: -1rem;
  opacity: 1;
  margin-top: auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 0.2rem #c1c7c8;
}
.pronr-4 .swiper-button-prev::after,
.pronr-4 .swiper-button-next::after {
  font-size: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 4rem 4rem;
}
.pronr-4 .swiper-button-prev:hover,
.pronr-4 .swiper-button-next:hover {
  border-color: var(--main-color);
}
.pronr-4 .swiper-button-prev {
  left: auto;
  right: 7rem;
}
.pronr-4 .swiper-button-prev::after {
  background-image: url(../images/prev.png);
}
.pronr-4 .swiper-button-prev:hover::after {
  transform: rotate(180deg);
  background-image: url(../images/next.png);
}
.pronr-4 .swiper-button-next {
  right: 0;
}
.pronr-4 .swiper-button-next::after {
  transform: rotate(180deg);
  background-image: url(../images/prev.png);
}
.pronr-4 .swiper-button-next:hover::after {
  transform: rotate(0deg);
  background-image: url(../images/next.png);
}
@media (max-width: 1024px) {
  .pronr-4 {
    padding-bottom: 50px;
  }
  .pronr-4 .list {
    margin-top: 30px;
  }
  .pronr-4 .swiper-button-prev {
    right: 80px;
  }
  .pronr-4 .swiper-button-next {
    right: 20px;
  }
}
.pronr-5 {
  position: relative;
  background: #f9f9fa;
}
.pronr-5 .container {
  display: flex;
  justify-content: space-between;
  padding: 15rem 7rem;
  padding-top: 14rem;
  background-color: #fff;
}
.pronr-5 .left {
  width: 40%;
}
.pronr-5 .left .common-title {
  line-height: 7rem;
}
.pronr-5 .left .common-button {
  margin-top: 4rem;
}
.pronr-5 .left .common-button a {
  min-width: 28.6rem;
}
.pronr-5 .right {
  width: 60%;
}
.pronr-5 .list dl {
  margin-top: 1.7rem;
}
.pronr-5 .list dl:first-child {
  margin-top: 0;
}
.pronr-5 .list dt {
  position: relative;
  cursor: pointer;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  padding: 3rem;
  padding-right: 7rem;
  height: 10rem;
  display: flex;
  align-items: center;
  background-color: #f9f9fa;
  border-radius: 0.8rem;
}
.pronr-5 .list dt::after {
  top: 50%;
  right: 3rem;
  position: absolute;
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  transform: translateY(-50%);
  border: solid 1px var(--main-color);
}
.pronr-5 .list dt::before {
  top: 42%;
  right: 4.8rem;
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  transform: rotate(135deg);
  border-right: solid 1px var(--main-color);
  border-top: solid 1px var(--main-color);
}
.pronr-5 .list dd {
  height: 0;
  overflow: hidden;
  letter-spacing: 0.18rem;
  background-color: #f9f9fa;
  padding: 0 3rem;
}
.pronr-5 .list dd .text {
  padding-bottom: 4rem;
}
.pronr-5 .list .cur dt:before {
  top: 47%;
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .pronr-5 .container {
    margin-bottom: 50px;
    display: block;
  }
  .pronr-5 .left,
  .pronr-5 .right {
    margin-top: 40px;
    width: 100%;
  }
  .pronr-5 .left .common-title,
  .pronr-5 .right .common-title {
    line-height: 30px;
  }
}
#searchPopup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
}
#searchPopup .searchBox {
  color: #fff;
  left: 0;
  width: 100%;
  z-index: -1;
  top: 12rem;
  opacity: 0;
  padding-right: 0;
  position: absolute;
  transition: all 0.5s;
}
#searchPopup .searchBox.fadeIn {
  top: 4.6rem;
  opacity: 1;
  z-index: 999;
}
#searchPopup .searchBox .container {
  width: 100%;
  max-width: 178rem;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  transform: translateX(0rem);
}
#searchPopup .searchBox input {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border: 1px #fff solid;
  background: #fff;
  color: #333;
  width: 30%;
  padding: 0 2.5rem;
  font-size: 1.6rem;
  height: 6rem;
  line-height: 5.8rem;
}
#searchPopup .searchBox input:focus {
  color: #333;
}
#searchPopup .searchBox .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  height: 6rem;
  width: 6rem;
  background: var(--main-color);
  text-align: center;
  display: inline-block;
}
#searchPopup .searchBox .btn svg {
  width: 3rem;
  height: 3rem;
  margin: 1.5rem;
}
#searchPopup .searchBox .btn .cls-1 {
  fill: #fff;
}
#searchPopup .searchBox .btn .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
#searchPopup .searchBox .btn:hover {
  background: var(--main-color);
}
#searchPopup .searchBox .close {
  display: none;
}
@media screen and (max-width: 1024px) {
  #searchPopup .searchBox {
    top: 80px;
  }
  #searchPopup .searchBox .container {
    transform: translateX(0);
  }
  #searchPopup .searchBox input {
    width: 100%;
    padding: 0 10px;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
  }
  #searchPopup .searchBox .btn {
    right: 15px;
    height: 36px;
    width: 36px;
  }
  #searchPopup .searchBox .btn svg {
    width: 20px;
    height: 20px;
    margin: 8px auto 0 auto;
  }
}
.map-list {
  padding: 4rem 0 0 0;
}
.map-list li {
  padding-top: 3rem;
}
.map-list .list {
  flex-wrap: wrap;
  display: flex;
}
.map-list .list li {
  padding-right: 1.5rem;
}
.videoPopup {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
}
.videoPopup.show {
  display: block;
}
.videoPopup .maskPopup {
  display: block;
  position: fixed;
  z-index: 9;
  top: 0;
  margin: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.videoPopup .videoPopupCon {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  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;
}
.videoPopup .videoPopupWrap {
  width: auto;
  max-width: 90vw;
  max-height: 90vh;
  padding: 0;
  margin: auto;
  vertical-align: top;
}
.videoPopup .con {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 100;
}
.videoPopup iframe {
  width: 100% !important;
  height: 100% !important;
}
.videoPopup video {
  width: 100%;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  vertical-align: top;
}
.videoPopup .closeBtn {
  cursor: pointer;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--main-color);
  color: #fff;
  position: absolute;
  z-index: 9999;
  right: 0;
  top: 0;
}
.videoPopup .closeBtn:before,
.videoPopup .closeBtn:after {
  content: "";
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.videoPopup .closeBtn:before {
  width: 25px;
  height: 1px;
}
.videoPopup .closeBtn:after {
  width: 1px;
  height: 25px;
}
@media screen and (max-width: 1024px) {
  .videoPopup .videoPopupWrap {
    width: 100%;
  }
  .videoPopup .closeBtn {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
  }
  .videoPopup .closeBtn:before {
    width: 17px;
    height: 1px;
  }
  .videoPopup .closeBtn:after {
    width: 1px;
    height: 17px;
  }
}
.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: 50%;
  height: auto;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
  max-height: 100%;
  max-width: 100%;
}
.videoWindow i {
  z-index: 99;
  display: block;
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/onlineClose.png) no-repeat center center;
  background-size: contain;
  cursor: pointer;
}
.navPhoneBtn {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  padding-top: 7px;
  border: solid 1px #666;
  display: inline-block;
  cursor: pointer;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  margin: 0 auto;
  display: block;
  width: 18px;
  height: 3px;
  margin-bottom: 3px;
  position: relative;
  background: #666;
  border-radius: 0px;
  z-index: 1;
  transform-origin: 20px;
  animation: fadeIn2 1.8s linear infinite;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width 0.5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .navPhoneBtn {
    display: block;
    right: 20px !important;
    margin-right: 0px;
    position: absolute;
  }
  .videoWindow video {
	  width: 100%
  }
}
.common-navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}
.common-navM .navMCon {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  background-color: #fff;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 9999999;
  top: 0;
  bottom: 0;
  right: auto;
  right: -100%;
  transition: all 0.5s;
}
.common-navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
}
.common-navM.open .transparent {
  display: block;
}
.common-navM.open .closeBtn {
  display: block;
}
.common-navM.open .navMCon {
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM.open .navMCon {
    left: auto;
    right: 0;
  }
}
.common-navM .mSearch {
  margin-top: 40px;
}
.common-navM .closeBtn {
  opacity: 1 !important;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #666 !important;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 20px;
}
.common-navM .closeBtn:before,
.common-navM .closeBtn:after {
  content: "";
  display: block;
  background: #666;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.common-navM .closeBtn:before {
  width: 20px;
  height: 1px;
}
.common-navM .closeBtn:after {
  width: 1px;
  height: 20px;
}
.common-navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.common-navM .navMWrap > .list {
  padding-top: 10rem;
}
.common-navM .navMWrap > .list em {
  font-style: initial;
}
.common-navM .navMWrap > .list .title {
  padding: 5px 0 5px 10px;
  text-indent: 0;
  position: relative;
}
.common-navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}
.common-navM .navMWrap > .list .title .icon:before,
.common-navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
  transition: all 0.3s ease;
}
.common-navM .navMWrap > .list .title .icon:before {
  height: 10px;
  width: 10px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
}
.common-navM .navMWrap > .list .title em {
  font-style: initial;
}
.common-navM .navMWrap > .list .has .title .icon {
  display: block;
}
.common-navM .navMWrap > .list .active > .title .icon:before {
  transform: rotate(90deg);
}
.common-navM .navMWrap > .list > li > .title {
  font-size: 18px;
}
.common-navM .navMWrap > .list > li > .title a {
  color: #333;
}
.common-navM .navMWrap > .list > li > .child > .list > li {
  text-indent: 15px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .child .title {
  padding-left: 20px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title {
  padding-left: 20px;
  position: relative;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  top: 12px !important;
  left: 10px;
}
.common-navM .navMWrap > .list .tb {
  width: 20px;
  height: 20px;
  display: inline-flex;
  position: absolute;
  top: 7px;
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM .navMWrap > .list {
    padding-top: 20px;
  }
}
.common-navM .child {
  padding: 0 0 20px 0;
  display: none;
  position: relative;
}
.common-navM .child a {
  font-size: 15px;
  color: #666;
  display: block;
  line-height: 20px;
  padding: 5px 0;
  transition: all 0.5s;
  position: relative;
}
.common-navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.common-navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  display: none;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.common-navM .mSearch .btn {
  width: 26px;
  height: 26px;
  font-size: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.common-navM .mSearch .btn .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: top;
}
.common-navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 40px 5px 15px;
  border-radius: 2px;
  font-size: 14px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .common-navM .mSearch {
    display: flex;
  }
}
.common-navM .other {
  padding: 10px;
}
.common-navM .read {
  padding-top: 10px;
  padding-bottom: 10px;
}
.common-navM .read .btn-1 {
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(to right, #bf2d32, #a61f24);
  color: #fff;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.common-navM .read .btn-1 .icon-1 {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.common-navM .read .btn-1 .icon-2 {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #fff url(../images/arrow-right-1.png) no-repeat center center;
  background-size: 20px;
  margin-left: 20px;
}
.common-navM .list > li > .child > .list {
  padding-top: 20px;
  font-family: var(--font-famil-2);
}
.common-navM .list > li > .child > .list > li > .title {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
}
.common-navM .list > li > .child > .list > li > .title::before {
  top: 18px !important;
}
.common-navM .languageBtn {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  display: none;
}
.common-navM .languageBtn > div {
  width: auto;
}
.common-navM .languageBtn .col-2 {
  width: 50%;
}
.common-navM .languageBtn .col-3 {
  width: 33.33333333%;
}
.common-navM .languageBtn .col-4 {
  width: 25%;
}
.common-navM .languageBtn .col-5 {
  width: 20%;
}
.common-navM .languageBtn .col-6 {
  width: 16.66666667%;
}
.common-navM .languageBtn a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  text-align: center;
  border: 1px #eee solid;
  margin-right: -1px;
  margin-top: -1px;
  background: #fff;
}
@media (max-width: 1024px) {
  .common-navM .languageBtn {
    display: flex;
  }
}


.beer-slider {
  display: inline-block;
  position: relative;
  overflow: hidden; }
  .beer-slider *, .beer-slider:before, .beer-slider:after,
  .beer-slider *:before,
  .beer-slider *:after {
    box-sizing: border-box; }
  .beer-slider img {
    vertical-align: bottom; }
  .beer-slider > img {
    max-width: 100%;
    height: auto; }

.beer-reveal {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 50%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s; }
  .beer-reveal > :first-child {
    width: 200%;
    max-width: none; }
  .beer-reveal > img:first-child {
    height: auto; }

.beer-range {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  height: 100%;
  margin: 0;
  left: -1px;
  width: calc(100% + 2px);
  cursor: pointer;
  -webkit-appearance: slider-horizontal !important;
  -moz-appearance: none;
  opacity: 0;
  -ms-touch-action: auto;
  touch-action: auto; }
  .beer-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 300vh; }
  .beer-range::-moz-range-thumb {
    -webkit-appearance: none;
    height: 300vh; }
  .beer-range::-ms-tooltip {
    display: none; }

.beer-handle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  color: #000;
  background: rgba(255, 255, 255, 1);
  width: 120px;
  height: 54px;
  border-radius: 100px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0);
  transition: background 0.3s, box-shadow 0.3s, opacity 0.5s 0.25s; }
  .beer-handle:before, .beer-handle:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    border-top: solid 2px;
    border-left: solid 2px;
    transform-origin: 0 0; }
  .beer-handle:before {
    left: 25px;
    transform: rotate(-45deg); }
  .beer-handle:after {
    right: 15px;
    transform: rotate(135deg); }

.beer-range:focus ~ .beer-handle {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4); }

.beer-slider[data-beer-label]:after,
.beer-reveal[data-beer-label]:after {
  content: attr(data-beer-label);
  position: absolute;
  text-align: center;
  letter-spacing: 0.18rem;
  border-radius: 1rem;
  min-width: 12rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #fff;
  text-transform: capitalize;}

.beer-slider[data-beer-label]:after {
  right: 1.5rem;bottom: 3.5rem; }

.beer-reveal[data-beer-label]:after {
  left: 3.5rem;bottom: 3.5rem;  }

.beer-slider[data-beer-label=""]:after,
.beer-reveal[data-beer-label=""]:after {
  content: none; }

.beer-ready .beer-reveal, .beer-ready .beer-handle {
  opacity: 1; }


 .videoPopup {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0
}

.videoPopup.show {
	display: block
}

.videoPopup .transparent {
	display: block;
	position: fixed;
	z-index: 9;
	top: 0;
	margin: auto;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3)
}

.videoPopup .videoPopupCon {
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	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
}

.videoPopup .videoPopupWrap {
	width: auto;
	max-width: 90vw;
	max-height: 90vh;
	padding: 0;
	margin: auto;
	vertical-align: top
}

.videoPopup .con {
	width: auto;
	height: 100%;
	position: relative;
	z-index: 100
}

.videoPopup .con .item{
	width: 64rem;
    height: 34rem;
	max-width: 100%;
    max-height: 100%;
	background-image:url(/template/index/pc/images/mapbg.jpg);
	background-repeat: no-repeat;
    background-size: cover;
	padding: 3rem;
	color: #fff;
	text-align: left;
}
.videoPopup .con .item .title{
	width: 100%;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #fff;
	font-size: 2.4rem;
    font-weight: bold;
}
.videoPopup .con .item .text{
    line-height: 1.5;
    display: flex;
    justify-content: space-around;
    position: relative;
}

.videoPopup .con .item .text .copy-text{
    width: 60%;
	cursor: pointer;
    padding-left: 20px;
}

.videoPopup .con .item .text .copy{
    width: 30px;
    display: inline-block;
}

.videoPopup .con .item .text a{
	display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    margin-top: 10px;
}
.videoPopup iframe {
	width: 100% !important;
	height: 100% !important
}

.videoPopup video {
	width: 100%;
	height: auto;
	max-width: 90vw;
	max-height: 90vh;
	vertical-align: top
}

.videoPopup .closeBtn {
	cursor: pointer;
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	background: var(--main-color);
	color: #fff;
	position: absolute;
	z-index: 9999;
	right: 0;
	top: 0
}

.videoPopup .closeBtn:before,
.videoPopup .closeBtn:after {
	content: "";
	display: block;
	background: #fff;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.videoPopup .closeBtn:before {
	width: 25px;
	height: 1px
}

.videoPopup .closeBtn:after {
	width: 1px;
	height: 25px
}

@media (max-width:1023px){
 .videoPopup .videoPopupWrap {
		width: 100%
	}

	.videoPopup .closeBtn {
		width: 30px;
		height: 30px;
		text-align: center;
		line-height: 30px
	}

	.videoPopup .closeBtn:before {
		width: 17px;
		height: 1px
	}

	.videoPopup .closeBtn:after {
		width: 1px;
		height: 17px
	}
}
.service-dowland2 .container{
	display: block;
}
.service-dowland2 .left{
	width: 100%;
	margin-bottom: 5rem;
}
.service-dowland2 .left .common-title{
	text-align: center;
}
.service-dowland2 .right{
	width: 100%;
}
.service-dowland2 .right .list{
	width: 100%;
}
.service-dowland2 .right .list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 1%;
}
.service-dowland2 .right .list ul li{
	width: 19%;
	margin-bottom: 1%;
}

.fzlc-warp .list-10 ul{
	display: flex;
    flex-wrap: wrap;
    margin: 0 -2rem;
}
.fzlc-warp .list-10 li{
	width: 50%;
    padding: 0 2rem;
    padding-bottom: 4rem;
}
.fzlc-warp .list-10 li:nth-child(2n){
	flex-direction: column-reverse;
}
.fzlc-warp .list-10 li .pic{
	border-radius: 1.2rem;
}
.fzlc-warp .list-10 li .pic img {
    border-radius: 1.2rem;
}
.fzlc-warp .list-10 li .tit {
    letter-spacing: 0.18rem;
    padding-left: 1.8rem;
    position: relative;
    margin-top: 3rem;
    color: #7c7f81;
	font-size: 1.8rem;
    text-align: left;
	line-height: 1.5;
}
.fzlc-warp .list-10 li .tit::before {
    content: "";
    top: 1.2rem;
    left: 0;
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background-color: #707476;
}

.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li{
	width: 50%;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li .item{
	height: auto;
	padding: 0;
	border: none;
	background: none;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li:hover .item{
	border: none;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li .item .pic{
	border-radius: 1rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li .item .pic::after{
	padding-bottom: 50%;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li .item .tit{
	text-align: left;
    height: 3.2rem;
	margin-top: 1rem;
	-webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child.child-pro .right-cot .right-cot-list7 li .item .tit span{
	color: #666;
}
/****导航案例****/
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case.show{
	
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .left-case{
	width: 60%;
	float: left;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .left-case .pic img{
	border-radius: 1rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .left-case .text{
	text-align: left;
	margin-top: 1rem;
	color: #0c2a46;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .left-case .text .tit{
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .right-case{
	width: 40%;
	float: right;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case .right-case .right-case-title{
	margin-bottom: 3rem;
	text-align: left;
    padding-left: 4rem;
    font-weight: bold;
	color: #0c2a46;
    font-size: 2rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case ul li{
	width: 100%;
	margin-top: 2rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case ul li .item{
	border: none;
	background: none;
	height: auto;
	margin-bottom: 1rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case li:hover .item{
	border: none;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case li .item .pic{
	width: 35%;
	float: left;
	border-radius: 1rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case li .item .tit{
	width: 63%;
	float: right;
	font-size: 1.8rem;
	margin-top: 0;
	text-align: left;
	height: 3.2rem;
    line-height: 3.2rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-case li .item .txt{
	width: 63%;
	float: right;
	font-size: 1.4rem;
	text-align: left;
	color: #0c2a46;
	height: 4.8rem;
	line-height: 2.4rem;
	overflow: hidden;
}
/****导航体验中心****/
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-job .left-job .pic img{
	border-radius: 1rem;
}
/****导航服务中心****/
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service{
	background: #fff;
	padding: 4rem 4rem;
	min-height: 50rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service .left-service{
	width: 40%;
	float: left;
	color: #0c2a46;
	text-align: justify;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service .left-service .tit{
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: .5rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service .left-service .txt{
	line-height: 2;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service .right-service{
	width: 55%;
	float: right;
	max-height: 405rem;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-service .right-service .pic img{
	border-radius: 1rem;
}
/****导航关于我们****/
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .left-about{
	width: 50%;
	float: left;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .left-about .text{
	margin-top: 1rem;
	text-align: left;
	color: #0c2a46;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .left-about .text .tit{
	font-size: 2rem;
	font-weight: bold;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .right-about{
	width: 45%;
	float: right;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .right-about .right-about-list{
	display:flex;
	gap: 5%;
	flex-wrap: wrap;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .right-about .right-about-list .item{
	width:47.5%;
	margin-bottom: 4%;
}
.common-nav .listNav > li > .child.child-pro .right-cot.right-cot-about .right-about .right-about-list .item .tit{
	margin-top: 1rem;
	color: #0c2a46;
}