* {
  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: #2f308c;
  --sub-color: #e03b3b;
  --font-family-M-B: 'Montserrat-Bold';
  --font-family-P-B: 'POPPINS-BOLD';
  --font-family-O-B: 'OPPOSANS-B';
  --font-family-O-R: 'Oswald-Regular';
}
@font-face {
  font-family: "OPPOSANS-B";
  src: url('../fonts/OPPOSANS-B.woff');
  src: url('../fonts/OPPOSANS-B.eot');
  src: url('../fonts/OPPOSANS-B.otf');
  src: url('../fonts/OPPOSANS-B.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "POPPINS-BOLD";
  src: url('../fonts/POPPINS-BOLD.woff');
  src: url('../fonts/POPPINS-BOLD.eot');
  src: url('../fonts/POPPINS-BOLD.otf');
  src: url('../fonts/POPPINS-BOLD.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald-Regular";
  src: url('../fonts/Oswald-Regular.woff');
  src: url('../fonts/Oswald-Regular.eot');
  src: url('../fonts/Oswald-Regular.otf');
  src: url('../fonts/Oswald-Regular.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "优设标题黑";
  src: url('../fonts/优设标题黑.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "庞门正道标题体";
  src: url('../fonts/庞门正道标题体.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: var(--main-color);
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  width: auto;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #616161;
  outline: none;
}
html,
body {
  position: relative;
  background: #fff;
}
html {
  font-size: 10px;
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px !important;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 8px!important;
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  background: rgba(0, 0, 0, 0.08);
  transition: all 500ms ease;
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--main-color);
}
::-webkit-scrollbar-thumb:active {
  background-color: var(--main-color);
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
.dw {
  top: -10rem;
  width: 1px;
  z-index: -1;
  position: absolute;
}
.circle {
  width: 11rem;
  height: 11rem;
  display: inline-block;
  text-align: center;
  z-index: 2;
  margin: auto;
  border-radius: 50%;
  background: transparent;
}
.circle:after {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  opacity: 0;
  animation: ripple 2s ease-out 0s infinite;
  background-color: rgba(227, 185, 41, 0.5);
}
.circle:before {
  content: '';
  display: block;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: 50%;
  background-color: rgba(227, 185, 41, 0.5);
  animation: ripple 2s ease-out 1s infinite;
}
@keyframes ripple {
  0% {
    opacity: 0;
    transform: scale(0.1, 0.1);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -50px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  animation-name: fadeInDown3;
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft {
  from {
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow {
  animation-name: scrollArrow;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
/* 载入效果 */
@keyframes titFadeup1 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
}
@keyframes titFadeup1_1 {
  0% {
    opacity: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: translateY(0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 50%);
    transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes imgScale {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInup {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInup1 {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 60px);
    transform: translate(-50%, 60px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
.titFadeup1 {
  animation: titFadeup1 1.1s ease-in-out both 0.1s;
}
.titFadeup2 {
  animation: titFadeup1 1.1s ease-in-out both 0.2s;
}
.fadeInup1 {
  animation: fadeInup 1.1s ease-in-out both 0.2s;
}
.fadeInup2 {
  animation: fadeInup 1.1s ease-in-out both 0.3s;
}
.fadeInup3 {
  animation: fadeInup 1.1s ease-in-out both 0.4s;
}
.fadeInUpimg {
  animation: imgScale 1.2s ease-in-out both 0.2s;
}
@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
.xuanzhuan2 {
  animation-name: xuanzhuan2;
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "微软雅黑", arial;
  word-wrap: normal;
}
@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 144rem;
}
@media (max-width: 1200px) {
  .container {
    padding: 0 40px!important;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 640px!important;
    padding: 0 20px!important;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.header {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
  border-bottom: solid 1px rgba(255, 255, 255, 0.16);
  transition: all 500ms linear;
}
.header .listbox {
  position: relative;
  display: flex;
  align-items: center;
  height: 10rem;
  justify-content: space-between;
  max-width: 171rem;
}
.header .logo img {
  max-height: 7rem;
}
.header .logo .img2 {
  display: none;
}
.header .rightInfo {
  display: flex;
  align-items: center;
}
.header .search {
  position: relative;
}
.header .search input {
  color: #fff;
  border: 0;
  letter-spacing: 0.08rem;
  font-size: 1.6rem;
  padding-right: 4rem;
  padding-left: 2.8rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 3rem;
  background: rgba(255, 255, 255, 0.17);
}
.header .search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.header .search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.header .search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}
.header .search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.header .searchBtn {
  right: 2.8rem;
  top: 1.4rem;
  position: absolute;
}
.header .searchBtn svg {
  fill: #fff;
  width: 2.4rem;
  height: 2.4rem;
}
@media (max-width: 1024px) {
  .header {
    top: 0!important;
    left: 0!important;
    width: 100%;
    height: 60px!important;
    z-index: 999;
    background: #fff !important;
    padding-top: 0!important;
    position: fixed!important;
  }
  .header .rightInfo {
    display: none;
  }
  .header .listbox {
    height: 60px!important;
  }
  .header .logo img {
    max-height: 40px;
  }
  .header .logo .img1 {
    display: none;
  }
  .header .logo .img2 {
    display: block;
  }
}
.fixed,
.header-ny {
  top: auto;
  left: auto;
  position: relative;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  background: var(--main-color);
}
.fixed .common-nav .listNav > li > a,
.header-ny .common-nav .listNav > li > a {
  color: #fff;
}
.fixed .common-nav .listNav > li .icon,
.header-ny .common-nav .listNav > li .icon {
  border-color: #fff;
}
.fixed .search input,
.header-ny .search input {
  border: 0;
  color: #fff;
}
.fixed .search input::-webkit-input-placeholder,
.header-ny .search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.fixed .search input:-moz-placeholder,
.header-ny .search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.fixed .search input::-moz-placeholder,
.header-ny .search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
.fixed .search input:-ms-input-placeholder,
.header-ny .search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.fixed .searchBtn svg,
.header-ny .searchBtn svg {
  fill: #fff;
}
.fixed {
  position: fixed;
}
.common-nav .listNav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.common-nav .listNav > li {
  margin-right: 9rem;
  position: relative;
}
.common-nav .listNav > li .icon {
  margin-left: 0.5rem;
  vertical-align: top;
  margin-top: 0.8rem;
  width: 0.9rem;
  height: 0.9rem;
  transform: rotate(45deg);
  display: inline-block;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
.common-nav .listNav > li > a {
  z-index: 1;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  height: 10rem;
  line-height: 2rem;
  padding: 3rem 0;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.common-nav .listNav > li > a::after {
  content: "";
  width: 0;
  bottom: 0;
  left: 50%;
  height: 0.3rem;
  position: absolute;
  background: #fff;
  transition: all 500ms ease;
}
.common-nav .listNav > li > a > span {
  display: inline-block;
  overflow: hidden;
  height: 2rem;
  line-height: 2rem;
  position: relative;
}
.common-nav .listNav > li > a .txt-1 {
  display: block;
  transition: 0.5s;
  text-align: left;
}
.common-nav .listNav > li > a .txt-2 {
  display: none !important;
  transform: translateY(100%);
  transition: 0.5s;
}
.common-nav .listNav > li > a .txt-3 {
  height: auto;
  line-height: 3rem;
  text-align: left;
  display: block;
  font-size: 1.2rem;
  font-weight: lighter;
}
.common-nav .listNav > li:hover > a:after,
.common-nav .listNav > li.active > a:after {
  transform: scale(1);
}
.common-nav .listNav > li:hover > a > span::after,
.common-nav .listNav > li.active > a > span::after {
  width: 100%;
}
.common-nav .listNav > li:hover > a:hover:after,
.common-nav .listNav > li.active > a:hover:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
.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: 21rem;
  text-align: left;
  position: absolute;
  z-index: 999;
  top: 10rem;
  left: 50%;
  transform-origin: 0 0;
  transform: scaleY(0) translateX(-50%);
  transition: transform 0.2s;
  color: #333;
}
.common-nav .listNav > li > .child > .list {
  border-radius: 1rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
}
.common-nav .listNav > li > .child > .list a {
  width: 100%;
  display: block;
  color: #666;
  height: auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.4rem;
  padding: 0.5rem 1rem;
  position: relative;
}
.common-nav .listNav > li > .child > .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child > .list-2 {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 2rem 6rem 2rem;
  background: #fafafa;
}
.common-nav .listNav > li > .child > .list-2 > li {
  width: 50%;
  padding: 0 6rem;
}
.common-nav .listNav > li > .child > .list-2 .title {
  font-size: 1.8rem;
  color: var(--main-color);
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.common-nav .listNav > li > .child > .list-2 .title a {
  color: var(--main-color);
  display: block;
  line-height: 3rem;
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a {
  color: #212121;
  font-size: 1.8rem;
  line-height: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-nav .listNav > li > .child > .list-2 .list a:hover {
  color: var(--main-color);
}
.common-nav .listNav > li > .child.child-2 {
  width: 80rem;
}
.common-nav .listNav > li > .child.child-2 > .list {
  display: flex;
  flex-wrap: wrap;
}
.common-nav .listNav > li > .child.child-2 > .list li {
  min-width: 50%;
}
.common-nav .listNav > li > .child.show {
  display: block;
  transform: scaleY(1) translateX(-50%);
}
.common-nav .listNav > li > .child .list {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .common-nav {
    display: none;
  }
}
.banner {
  height: 100vh;
  clear: both;
  width: 100%;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .pc {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
}
.banner .pc img {
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  max-height: initial;
  max-width: initial;
  width: 100%;
  object-fit: cover;
}
.banner .ph {
  position: relative;
  display: none;
  text-align: center;
}
.banner .ph img {
  width: 100%;
  width: auto;
  height: auto;
}
.banner .ph:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .text {
  left: 0;
  width: 100%;
  color: #fff;
  top: 50%;
  z-index: 3;
  text-align: left;
  transform: translateY(-60%);
  position: absolute;
}
.banner .text .t-1,
.banner .text .t-2 {
  font-size: 10rem;
  line-height: 11rem;
  font-family: "优设标题黑";
}
.banner .text .t-2 {
  z-index: 2;
  position: relative;
  padding-left: 11.5rem;
}
.banner .text .t-3 {
  z-index: 4;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 3rem;
}
.banner .text .t-4 {
  margin-top: -22rem;
}
.banner .text .t-4 img {
  max-height: 11.6rem;
  transform: translateX(5%);
}
.banner .text .t-5 {
  z-index: 5;
  margin-top: -2rem;
  position: relative;
}
.banner .text .t-5 img {
  max-height: 10rem;
  transform: translateX(5%);
}
.banner .text .t-6 {
  font-size: 8rem;
  line-height: 7rem;
  text-shadow: 0 0 1.6rem rgba(1, 37, 96, 0.8);
  font-family: "庞门正道标题体";
}
.banner .text .t-7 {
  font-size: 3.6rem;
  line-height: 4rem;
  margin-top: 2rem;
}
.banner .text .t-8 {
  font-size: 11.5rem;
  line-height: 11rem;
  text-shadow: 0 0 1.6rem rgba(1, 37, 96, 0.8);
  font-family: "庞门正道标题体";
}
.banner .text .t-8 span {
  padding-top: 1.5rem;
  vertical-align: top;
  display: inline-block;
  font-size: 4rem;
  line-height: 4rem;
  font-style: italic;
  padding-left: 3rem;
}
.banner .text .t-8 i {
  padding: 0 1rem;
  display: inline-block;
}
.banner .text .t-9 {
  padding-top: 3rem;
  font-size: 2.6rem;
  line-height: 4.4rem;
}
.banner .text-2 {
  top: 52%;
  transform: translate(0);
}
.banner .text-3 {
  top: 35%;
  transform: translate(0);
}
.banner .text-3 .button {
  margin-top: 6rem;
}
.banner .button {
  margin-top: 4rem;
}
.banner .button a {
  color: #fff;
  text-align: center;
  display: inline-block;
  min-width: 19rem;
  height: 5.8rem;
  line-height: 5.8rem;
  background: var(--sub-color);
}
.banner .button img {
  max-height: 0.9rem;
  margin-top: 2.5rem;
  margin-left: 1rem;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  top: auto;
  bottom: 6rem;
  margin-top: auto;
  opacity: 1;
  width: 4.6rem;
  height: 4.2rem;
  transform: skew(-15deg);
  border: dashed 1px #fff;
  background: rgba(0, 0, 0, 0.4);
}
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
  color: #fff;
  font-size: 1.4rem;
}
.banner .swiper-button-prev {
  left: 47.4%;
}
.banner .swiper-button-next {
  right: 47.4%;
}
.banner .swiper-slide-active .t-1 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-2 {
  animation: 1.5s fadeInDown2 ease;
}
.banner .swiper-slide-active .t-3 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-6 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-7 {
  animation: 1.5s fadeInDown2 ease;
}
.banner .swiper-slide-active .t-8 {
  animation: 1.5s fadeInUp2 ease;
}
.banner .swiper-slide-active .t-9 {
  animation: 1.5s fadeInDown2 ease;
}
.banner .swiper-slide-active .button {
  animation: 1.5s fadeInDown2 ease;
}
@media (max-width: 1024px) {
  .banner {
    padding-top: 0;
    margin-top: 60px;
    height: auto;
  }
  .banner .pc {
    height: auto;
  }
  .banner .text {
    top: 50%;
    text-align: center;
    transform: translateY(-50%);
  }
  .banner .text .t-1,
  .banner .text .t-2 {
    font-size: 50px;
    line-height: 50px;
    padding-left: 0;
  }
  .banner .text .t-3,
  .banner .text .t-4,
  .banner .text .t-5 {
    display: none;
  }
  .banner .text .t-8 {
    font-size: 60px;
    line-height: 60px;
  }
  .banner .text .t-8 span {
    display: none;
  }
  .banner .text .t-7,
  .banner .text .t-9 {
    display: none;
    font-size: 16px;
  }
  .banner .text .button {
    display: none;
  }
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    top: 50%;
    bottom: auto;
  }
  .banner .swiper-button-prev {
    left: 20px;
  }
  .banner .swiper-button-next {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .banner .pc {
    display: none;
  }
  .banner .ph {
    display: block;
  }
  .banner .text .t-1,
  .banner .text .t-2 {
    font-size: 24px;
    line-height: 30px;
  }
  .banner .text .t-6,
  .banner .text .t-8 {
    font-size: 30px;
    line-height: 30px;
  }
}
.comment-title {
  font-size: 4.2rem;
  line-height: 5rem;
  color: #000000;
}
@media (max-width: 1024px) {
  .comment-title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 640px) {
  .comment-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.index-about {
  overflow: hidden;
  padding: 8rem 0;
}
.index-about .card {
  display: flex;
  justify-content: space-between;
}
.index-about .left {
  width: 53%;
  position: relative;
  margin-top: 3rem;
}
.index-about .left::before {
  content: "";
  top: 3rem;
  left: -7rem;
  width: 1px;
  height: 90%;
  position: absolute;
  background: url(../images/about-5.jpg) repeat-y;
}
.index-about .left .icon {
  top: 0;
  z-index: 3;
  left: -9.3rem;
  position: absolute;
}
.index-about .left .icon img {
  max-height: 4.4rem;
}
.index-about .left .text {
  padding-top: 6rem;
  line-height: 3.2rem;
  color: #263147;
}
.index-about .left .text p {
  padding-top: 2rem;
}
.index-about .left .text-2 {
  margin-top: 8rem;
}
.index-about .left .text-2 ul {
  display: flex;
  margin: 0 -2.2rem;
}
.index-about .left .text-2 li {
  padding: 0 2.2rem;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 3rem;
  font-size: 2.2rem;
}
.index-about .left .text-2 li em {
  color: var(--main-color);
  font-style: normal;
}
.index-about .right {
  width: 39%;
}
.index-about .right .pic {
  width: 141.5%;
}
.index-about .list {
  margin-top: 5.4rem;
}
.index-about .list .swiper-container {
  overflow: initial;
}
.index-about .list .item {
  position: relative;
}
.index-about .list .item::before {
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-radius: 1rem;
  position: absolute;
  background: linear-gradient(to top, rgba(2, 2, 26, 0.68), rgba(255, 255, 255, 0.1));
}
.index-about .list .item .pic {
  border-radius: 1rem;
}
.index-about .list .item .pic img {
  border-radius: 1rem;
}
.index-about .list .item .tit {
  z-index: 3;
  font-size: 1.8rem;
  padding: 0 2.4rem;
  color: #fff;
  bottom: 2rem;
  position: absolute;
}
@media (max-width: 1024px) {
  .index-about {
    padding: 40px 0;
  }
  .index-about .card {
    display: block;
  }
  .index-about .left {
    margin-top: 0;
    width: 100%;
  }
  .index-about .left::before {
    display: none;
  }
  .index-about .left .icon {
    display: none;
  }
  .index-about .left .text {
    line-height: 26px;
    padding-top: 10px;
  }
  .index-about .left .text-2 {
    margin-top: 30px;
  }
  .index-about .right {
    width: 100%;
    display: none;
  }
  .index-about .list {
    margin-top: 30px;
  }
  .index-about .list .swiper-container {
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .index-about .left .text-2 {
    margin-top: 0;
  }
  .index-about .left .text-2 ul {
    flex-wrap: wrap;
  }
  .index-about .left .text-2 li {
    width: 100%;
    margin-top: 30px;
  }
}
.index-px {
  color: #fff;
  padding-top: 7rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.index-px .info {
  font-size: 2.4rem;
  line-height: 3rem;
  padding-bottom: 1rem;
}
.index-px .comment-title {
  color: #fff;
}
.index-px .list {
  margin-top: 3rem;
  position: relative;
}
.index-px .list .item {
  display: flex;
  justify-content: space-between;
}
.index-px .list .left {
  width: 50%;
  padding-top: 5rem;
  padding-left: 4rem;
}
.index-px .list .left .t-1 {
  font-weight: normal;
  font-size: 3.4rem;
}
.index-px .list .left .t-2 {
  font-size: 1.8rem;
  padding-top: 1rem;
}
.index-px .list .left .tag {
  padding-top: 5rem;
  display: flex;
  flex-wrap: wrap;
}
.index-px .list .left .tag span {
  padding: 0 2rem;
  margin: 0 0.6rem;
  margin-top: 1.2rem;
  min-width: 13.5rem;
  height: 5rem;
  line-height: 4.8rem;
  display: inline-block;
  border-radius: 1rem;
  text-align: center;
  border: solid 1px #ffffff;
  background: rgba(255, 255, 255, 0.15);
}
.index-px .list .right {
  width: 43.5%;
  margin-top: 2rem;
}
.index-px .list .swiper-container {
  height: 60rem;
}
.index-px .list .swiper-slide .left {
  opacity: 0.3;
}
.index-px .list .swiper-slide .right {
  display: none;
}
.index-px .list .swiper-slide-active .left {
  opacity: 1;
}
.index-px .list .swiper-slide-active .right {
  display: block;
}
.index-px .list .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: rgba(146, 146, 146, 0.7);
}
.index-px .list .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  left: -1px;
  height: 57% !important;
  top: 6rem;
  background: #fff;
  width: 3px;
}
@media (max-width: 1024px) {
  .index-px .list .left {
    width: 100%;
    padding-top: 0;
  }
  .index-px .list .left .tag {
    padding-top: 20px;
  }
  .index-px .list .left .tag span {
    min-width: auto;
    padding: 0 2px;
    font-size: 12px;
    height: 30px;
    line-height: 28px;
  }
  .index-px .list .right {
    display: none !important;
  }
  .index-px .list .swiper-container {
    height: 400px;
  }
  .index-px .list .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    top: 0;
  }
}
@media (max-width: 500px) {
  .index-px .list .left {
    padding-left: 15px;
  }
  .index-px .list .swiper-container {
    height: 510px;
  }
}
.index-service {
  overflow: hidden;
  position: relative;
  padding-top: 9rem;
  padding-bottom: 12rem;
}
.index-service .info {
  text-align: center;
  font-size: 2.4rem;
  line-height: 3rem;
  color: #000000;
  padding-bottom: 1rem;
}
.index-service .comment-title {
  text-align: center;
}
.index-service .list {
  z-index: 10;
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  height: 55.6rem;
}
.index-service .list li {
  float: left;
  width: 24%;
  height: 55.6rem;
  overflow: hidden;
  padding-right: 1px;
  transition: all 500ms ease;
}
.index-service .list li .box {
  overflow: hidden;
  position: relative;
}
.index-service .list li .item {
  display: block;
  position: relative;
  height: 55.6rem;
}
.index-service .list li .txtbox {
  color: #fff;
  z-index: 9;
  width: 100%;
  bottom: 9rem;
  padding: 0 1.5rem;
  position: absolute;
}
.index-service .list li .txtbox .tit {
  font-size: 2.8rem;
  font-weight: 700;
}
.index-service .list li .txtbox .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: none;
  font-size: 1.8rem;
  margin-top: 1rem;
  height: 6rem;
  line-height: 3rem;
}
.index-service .list li .txtbox .button {
  color: #fff;
  text-align: center;
  display: none;
  min-width: 14.6rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background: var(--sub-color);
}
.index-service .list li .txtbox .button img {
  max-height: 0.9rem;
  margin-top: 1.9rem;
  margin-left: 1rem;
}
.index-service .list li .pic {
  overflow: hidden;
  height: 55.6rem;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-service .list li .pic:before {
  top: 0;
  left: 0px;
  z-index: 5;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
  position: absolute;
  transition: all 700ms ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65));
}
.index-service .list .active {
  width: 52%;
}
.index-service .list .active .pic {
  transform: translateX(0);
}
.index-service .list .active .pic:before {
  width: 100%;
}
.index-service .list .active .txtbox {
  bottom: 5rem;
  padding: 0 4rem;
}
.index-service .list .active .txtbox .txt {
  display: block;
}
.index-service .list .active .txtbox .button {
  opacity: 1;
  display: inline-block;
}
.index-service .waves {
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
  bottom: 20rem;
  position: absolute;
}
@media (max-width: 1024px) {
  .index-service {
    padding: 40px 0;
  }
  .index-service .waves {
    display: none;
  }
  .index-service .list {
    height: auto;
  }
  .index-service .list li {
    margin-top: 20px;
    width: 100%!important;
    height: 240px!important;
  }
  .index-service .list li .pic {
    height: 240px;
    transform: translate(0);
  }
  .index-service .list li .pic:before {
    opacity: 1 !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6)) !important;
  }
  .index-service .list li .item {
    width: 100%;
    height: auto;
  }
  .index-service .list li .box {
    width: 100%;
  }
  .index-service .list li .txtbox {
    padding: 0 20px!important;
    bottom: 30px!important;
  }
  .index-service .list li .txtbox .tit {
    font-size: 20px !important;
  }
  .index-service .list li .txtbox .tit span {
    display: inline-block !important;
  }
  .index-service .list li .txtbox .txt {
    display: block!important;
  }
  .index-service .list li .txtbox .tit-en {
    display: none;
  }
  .index-service .list li .txtbox .button {
    display: none !important;
  }
  .index-service .list li:first-child {
    margin-top: 0;
  }
}
.index-join {
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 39.2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.index-join .info {
  font-size: 2.8rem;
  line-height: 3rem;
}
.index-join .comment-title {
  color: #fff;
  font-size: 3.8rem;
  line-height: 4rem;
  padding-top: 1.5rem;
}
.index-join .tel-name {
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.67);
}
.index-join .tel {
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: bold;
}
.index-join .button {
  margin-top: 3rem;
}
.index-join .button a {
  color: #fff;
  font-size: 1.8rem;
  padding: 0 1rem;
  height: 5.8rem;
  line-height: 5.8rem;
  min-width: 20rem;
  text-align: center;
  display: inline-block;
  transition: all 500ms ease;
  background: var(--sub-color);
}
.index-join .button img {
  margin-right: 1rem;
  max-height: 2.4rem;
  margin-top: 1.8rem;
}
.index-join .button a:hover {
  background: #d91a1a;
}
@media (max-width: 640px) {
  .index-join {
    text-align: center;
  }
  .index-join .comment-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.index-news {
  padding: 8rem 0;
}
.index-news .info {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #000000;
  padding-bottom: 1rem;
}
.index-news .card {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
.index-news .left {
  width: 37%;
}
.index-news .list {
  width: 59%;
}
.index-news .list li {
  padding-left: 3rem;
  padding-right: 12rem;
  padding-top: 2rem;
  padding-bottom: 2.7rem;
  border-bottom: solid 1px #e0e5ee;
}
.index-news .list li .tit {
  height: 3rem;
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0rem;
  color: #000000;
  transition: all 500ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-news .list li .tit img {
  opacity: 0;
  max-height: 3rem;
  transform: rotate(-30deg) scale(0.5);
  transition: all 500ms ease;
}
.index-news .list li .txt {
  display: none;
  margin-top: 1rem;
  color: #263147;
  height: 6rem;
  line-height: 3rem;
  overflow: hidden;
}
.index-news .list li .time {
  color: #263147;
  margin-top: 1.8rem;
  display: inline-block;
  min-width: 13.3rem;
  height: 3.4rem;
  text-align: center;
  padding: 0 1rem;
  line-height: 3.4rem;
  background-color: #e0e5ee;
  font-family: Arial, Helvetica, sans-serif;
}
.index-news .list li .time img {
  max-height: 1.7rem;
  margin-top: 0.7rem;
  margin-right: 0.5rem;
}
.index-news .list li:first-child {
  border-top: solid 1px #e0e5ee;
}
.index-news .list .active .txt {
  display: block;
}
.index-news .list li:hover .tit {
  color: var(--main-color);
}
.index-news .list li:hover .tit img {
  opacity: 1;
  transform: rotate(-30deg) scale(1);
}
@media (max-width: 1024px) {
  .index-news {
    padding: 40px 0;
  }
  .index-news .card {
    display: block;
  }
  .index-news .left {
    width: 100%;
  }
  .index-news .left .pic img {
    width: 100%;
  }
  .index-news .list {
    width: 100%;
    padding-top: 10px;
  }
  .index-news .list li {
    padding-left: 0;
    padding-right: 0;
  }
  .index-news .list li:first-child {
    border-top: 0;
  }
}
.footer-wrap {
  color: #fff;
  background-color: #2e3033;
  padding-top: 5.5rem;
}
.footer-wrap .container {
  display: flex;
  max-width: 160rem;
}
@media (max-width: 1024px) {
  .footer-wrap .container {
    display: block;
  }
}
.footer-top {
  padding-bottom: 7rem;
}
@media (max-width: 1024px) {
  .footer-top {
    padding-bottom: 40px;
  }
}
.footer-contact {
  width: 25%;
}
.footer-contact .footer-logo img {
  max-height: 7rem;
}
.footer-contact .contact-item {
  font-weight: 700;
  font-size: 1.8rem;
  margin-top: 2rem;
  padding-left: 4rem;
  position: relative;
}
.footer-contact .contact-item a {
  color: #fff;
}
.footer-contact .contact-item i {
  left: 0;
  top: 0.2rem;
  position: absolute;
  max-height: 2.4rem;
}
.footer-contact .contact-item .tel {
  font-size: 2.6rem;
  line-height: 4rem;
  font-weight: normal;
  font-family: var(--font-family-O-B);
}
.footer-contact .contact-item:nth-child(2) i {
  top: 1rem;
}
@media (max-width: 1024px) {
  .footer-contact {
    width: 100%;
  }
}
.footer-nav {
  width: 35%;
  display: flex;
  justify-content: space-between;
}
.footer-nav a {
  color: #fff;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-nav .nav-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-nav .nav-list {
  padding-top: 4rem;
}
.footer-nav .nav-list li {
  font-weight: 700;
  padding-bottom: 1rem;
}
@media (max-width: 1024px) {
  .footer-nav {
    display: none;
  }
}
.footer-message {
  width: 40%;
  display: flex;
  padding-left: 14rem;
  justify-content: space-between;
}
.footer-message .nav-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.footer-message .message-title {
  font-weight: 700;
  padding-top: 4rem;
}
.footer-message .message-input {
  margin-top: 3.5rem;
  position: relative;
}
.footer-message .message-input input {
  width: 100%;
  color: #fff;
  font-size: 1.6rem;
  font-family: "微软雅黑";
  padding: 0 1.5rem;
  padding-right: 9rem;
  height: 5rem;
  line-height: 4.8rem;
  background: #fff;
  border: solid 1px #a9aaab;
  background: transparent;
}
.footer-message .message-button {
  right: 1px;
  top: 1px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 8rem;
  height: 4.8rem;
  line-height: 4.8rem;
  background: #5e6062;
  position: absolute;
}
.footer-message .qrcode-box {
  width: 26%;
  display: flex;
  margin-top: 20rem;
}
.footer-message .qrcode-ewm {
  position: relative;
}
.footer-message .qrcode-icon {
  opacity: 0.9;
  cursor: pointer;
  margin-left: 2.5rem;
  transition: all 500ms ease;
  display: inline-block;
  border: solid 1px #fff;
  border-radius: 50%;
}
.footer-message .qrcode-icon img {
  max-height: 4.1rem;
}
.footer-message .qrcode-hover {
  top: -20rem;
  left: 50%;
  width: 18rem;
  display: none;
  position: absolute;
  transform: translateX(-43%);
}
.footer-message .qrcode-hover img {
  max-height: 18.7rem;
}
.footer-message .active .qrcode-hover {
  display: block;
}
@media (max-width: 1024px) {
  .footer-message {
    width: 100%;
    display: none;
    padding-left: 0;
  }
  .footer-message .message-item {
    margin-top: 40px;
  }
  .footer-message .nav-title {
    font-size: 22px;
  }
  .footer-message .message-title {
    padding-top: 15px;
  }
  .footer-message .qrcode-box {
    display: none;
  }
}
.footer-bottom {
  font-size: 1.4rem;
  padding: 1.5rem 0;
  border-top: solid 1px #737476;
}
.footer-bottom .container {
  justify-content: space-between;
}
.footer-bottom .bottom-left span {
  padding: 0 0.5rem;
}
.footer-bottom a {
  color: #fff;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer-bottom {
    font-size: 14px;
  }
  .footer-bottom .bottom-left span {
    padding: 0;
  }
}
.comment-banner {
  position: relative;
}
.comment-banner .pc img {
  width: 100%;
}
.comment-banner .ph {
  display: none;
}
.comment-banner .text {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  position: absolute;
  transform: translateY(-40%);
}
.comment-banner .title-1 {
  font-size: 4.2rem;
  line-height: 5rem;
  font-weight: 700;
}
.comment-banner .title-2 {
  font-size: 1.8rem;
  padding-top: 2rem;
}
@media (max-width: 1024px) {
  .comment-banner {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .comment-banner .title-1 {
    font-size: 24px;
    line-height: 30px;
  }
  .comment-banner .pc {
    display: none;
  }
  .comment-banner .ph {
    display: block;
  }
  .comment-banner .text {
    text-align: center;
  }
  .comment-banner .title-2 {
    display: none;
  }
}
.common-warp {
  z-index: 9;
  margin-top: -9rem;
  position: relative;
}
@media (max-width: 1024px) {
  .common-warp {
    margin-top: 0;
  }
}
.common-current {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  height: 5rem;
  line-height: 5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.common-current svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: #fff;
  margin-top: 1.6rem;
  vertical-align: top;
  margin-right: 1rem;
}
.common-current a {
  color: #fff;
}
@media (max-width: 1024px) {
  .common-current {
    display: none;
  }
}
.common-menu {
  z-index: 9;
  position: relative;
}
.common-menu ul {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  height: 8rem;
  box-shadow: 0px 3px 2.9rem 0px rgba(0, 0, 0, 0.26);
}
.common-menu li {
  flex: 1;
  text-align: center;
  line-height: 8rem;
  position: relative;
}
.common-menu li::after {
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  opacity: 0;
  position: absolute;
  transition: all 500ms ease;
  background: var(--main-color);
  height: 0.3rem;
}
.common-menu li a {
  color: #333;
  display: block;
  font-size: 1.8rem;
}
.common-menu li img {
  margin-top: 2.2rem;
  margin-right: 1rem;
  max-height: 3.4rem;
}
.common-menu .active a,
.common-menu li:hover a {
  font-weight: 700;
  color: var(--main-color);
}
.common-menu .active::after,
.common-menu li:hover::after {
  opacity: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  .common-menu {
    display: none;
  }
}
.common-menu-2 {
  margin-top: 6rem;
}
.common-menu-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.common-menu-2 li {
  flex: 1;
  padding: 0 1rem;
}
.common-menu-2 li a {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  height: 7.7rem;
  display: block;
  text-align: center;
  line-height: 7.5rem;
  border-radius: 0.6rem;
  transition: all 500ms ease;
  border: solid 0.1rem #cfcfcf;
}
.common-menu-2 .active a,
.common-menu-2 li:hover a {
  color: #0067b3;
  border-color: #f7f7f7;
  background-color: #f7f7f7;
}
@media (max-width: 1024px) {
  .common-menu-2 {
    display: none;
  }
}
.common-title {
  position: relative;
  text-align: center;
  line-height: 8rem;
}
.common-title .cn {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 3;
  font-size: 5rem;
  font-weight: 700;
  color: #333333;
  position: absolute;
  transform: translateY(-55%);
}
.common-title .en {
  font-size: 9.5rem;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: #dedede 1px;
  font-family: var(--font-family-P-B);
}
@media (max-width: 1024px) {
  .common-title .cn {
    font-size: 24px;
  }
  .common-title .en {
    font-size: 24px;
  }
}
.common-ad {
  color: #fff;
  display: flex;
  align-items: center;
  height: 25.9rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.common-ad .container {
  display: flex;
  justify-content: space-between;
}
.common-ad .left .t-1 {
  font-size: 4.2rem;
  line-height: 5rem;
  font-weight: 700;
}
.common-ad .left .t-2 {
  font-size: 2rem;
  padding-top: 1.5rem;
}
.common-ad .right {
  padding-top: 1.5rem;
}
.common-ad .right .button {
  color: #fff;
  margin-left: 2rem;
  display: inline-block;
  width: 17.6rem;
  height: 5.4rem;
  line-height: 5.4rem;
  text-align: center;
  transition: all 334ms ease;
  background-color: #e03b3b;
}
.common-ad .right .button svg {
  fill: #fff;
  width: 2.2rem;
  height: 2.2rem;
  margin-left: 1rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}
.common-ad .right .button:hover {
  background: #df2626;
}
@media (max-width: 1024px) {
  .common-ad {
    height: 259px;
    display: none;
  }
  .common-ad .container {
    display: block;
    text-align: center;
  }
  .common-ad .left .t-1 {
    font-size: 18px;
    line-height: 30px;
  }
  .common-ad .right {
    margin-top: 2cqh;
  }
  .common-ad .right .button:first-child {
    margin-left: 0;
  }
}
.common-page {
  text-align: center;
  padding-top: 10rem;
}
.common-page a {
  color: #888;
  font-size: 2.2rem;
  margin: 0 1rem;
  width: 4.2rem;
  height: 4.2rem;
  text-align: center;
  display: inline-block;
  line-height: 4.2rem;
  background-color: #f7f7f7;
  border-radius: 0.6rem;
}
.common-page a:hover,
.common-page .cur {
  font-weight: 700;
  color: var(--main-color);
}
.common-page .prev,
.common-page .next {
  border: 0;
  background: transparent;
  line-height: 4.2rem;
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "宋体";
  display: inline-block;
  position: relative;
}
.common-page .prev:hover,
.common-page .next:hover {
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .common-page {
    padding: 40px 0 0 0;
  }
  .common-page .prev,
  .common-page .next {
    width: auto;
    border-radius: 0;
  }
  .common-page a {
    line-height: 30px;
    width: auto;
    height: auto;
    padding: 0 10px;
    border-radius: 0;
    margin: 0;
  }
  .common-page span {
    display: none;
  }
}
.about-warp {
  padding-top: 14rem;
}
.about-warp .card {
  padding-top: 4rem;
  display: flex;
  line-height: 3.2rem;
  justify-content: space-between;
}
.about-warp .left {
  width: 69%;
}
.about-warp .left .title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about-warp .left .title p:last-child {
  font-size: 3.6rem;
  font-weight: 700;
  color: #000;
}
.about-warp .left .text {
  padding-top: 3rem;
}
.about-warp .left .text p {
  padding-top: 2rem;
}
.about-warp .right {
  width: 23%;
  text-align: center;
  color: #000000;
}
.about-warp .right p {
  padding-left: 1rem;
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .about-warp {
    padding-top: 40px;
  }
  .about-warp .card {
    display: block;
    padding-top: 0;
    line-height: 26px;
  }
  .about-warp .left {
    text-align: center;
    width: 100%;
  }
  .about-warp .left .title {
    display: block;
  }
  .about-warp .left .title img {
    max-height: 11.7rem;
  }
  .about-warp .left .title p:last-child {
    font-size: 24px;
    padding-top: 10px;
  }
  .about-warp .right {
    width: 100%;
    padding: 30px;
    padding-bottom: 0;
  }
  .about-warp .right p {
    padding-left: 0;
  }
}
.jiejueSwiper {
  max-width: 192rem;
  margin: 0 auto;
  margin-top: 10rem;
  padding-left: 3.9%;
  position: relative;
  z-index: 444433;
}
.jiejueSwiper .swiper-slide {
  width: 20%;
  float: left;
}
@media (max-width: 1024px) {
  .jiejueSwiper {
    max-width: 640px;
    margin-top: 20px;
    padding-left: 0;
  }
  .jiejueSwiper .swiper-slide {
    width: inherit;
    float: none;
  }
}
.jiejueSwiper .swiper-slide:nth-child(odd) .jiejueSwiper-img {
  position: relative;
  transition: all 0.5s ease;
}
.jiejueSwiper .swiper-slide:nth-child(even) .jiejueSwiper-img {
  position: relative;
  transition: all 0.5s ease;
}
.jiejueSwiper .jiejueSwiper-img {
  height: max-content;
  position: relative;
  z-index: 99;
  overflow: hidden;
}
.jiejueSwiper .jiejueSwiper-img:after {
  content: '';
  display: block;
  padding-bottom: 104.81927711%;
}
.jiejueSwiper .jiejueSwiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 700ms ease;
}
.jiejueSwiper .jiejueSwiper-img:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(24, 47, 59, 0.9));
}
.jiejueSwiper .jiejueSwiper-img .tit {
  position: absolute;
  bottom: 2rem;
  left: 0;
  z-index: 33;
  width: 100%;
  font-size: 2.2rem;
  font-weight: normal;
  padding: 0 1.6rem;
  line-height: 3rem;
  height: 6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .jiejueSwiper .jiejueSwiper-img .tit {
    font-size: 16px;
  }
}
.home-news {
  position: relative;
  overflow: hidden;
  padding: 13rem 0;
  background: #fff;
}
.home-news .swiper {
  overflow: initial;
  position: relative;
  z-index: 444433;
}
.home-news .item {
  display: block;
  padding: 1.5rem;
}
@media (min-width: 1025px) {
  .home-news .item:hover .pic img {
    transform: scale(1.1);
  }
}
.home-news .text {
  z-index: 99;
  position: relative;
  padding: 4rem 1.6rem;
}
.home-news .text .tit {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
}
.home-news .swiper-slide {
  position: relative;
}
.home-news .swiper-slide-active .item {
  background: #f7f7f7;
}
.home-news .swiper-slide-active .pic .tit {
  opacity: 0;
}
.home-news .swiper-slide-active .text .tit {
  color: #424242;
  font-size: 2.2rem;
}
.home-news .swiper-slide-active .text .p {
  opacity: 1;
}
@media (max-width: 1024px) {
  .home-news {
    padding: 20px 0;
  }
}
@media (max-width: 640px) {
  .home-news .text {
    padding: 20px;
  }
  .home-news .text .tit {
    font-size: 15px !important;
  }
  .home-news .swiper {
    overflow: hidden;
  }
  .home-news .swiper-3d,
  .home-news .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: inherit;
  }
}
.jiejuePage {
  height: 4.8rem;
  max-width: 60rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
@media (max-width: 640px) {
  .jiejuePage {
    max-width: 320px;
  }
}
.jiejuePage .jiejue-next,
.jiejuePage .jiejue-prev {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  text-align: center;
  line-height: 3.6rem;
}
.jiejuePage .jiejue-prev:after,
.jiejuePage .jiejue-next:after {
  content: '';
  display: inline-block;
  width: 1.3rem;
  height: 1rem;
}
.jiejuePage .jiejue-prev {
  background: #c2ebff url(../images/left1.png) no-repeat center center;
  background-size: 1.6rem;
}
.jiejuePage .jiejue-next {
  background: #c2ebff url(../images/right1.png) no-repeat center center;
  background-size: 1.6rem;
}
.jiejuePage .jiejue-prev:hover {
  background: var(--sub-color) url(../images/left1h.png) no-repeat center center;
  background-size: 1.6rem;
}
.jiejuePage .jiejue-next:hover {
  background: var(--sub-color) url(../images/right1h.png) no-repeat center center;
  background-size: 1.6rem;
}
.waves {
  left: 0;
  height: 30%;
  position: absolute;
  top: 20rem;
  width: 100%;
  z-index: 1;
}
.about-warp-3 {
  height: 89rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.about-warp-3 .container {
  height: 100%;
  position: relative;
}
.about-warp-3 .title {
  left: 9rem;
  bottom: 14rem;
  position: absolute;
}
.about-warp-3 .title span {
  color: #fff;
  font-size: 5.5rem;
  min-width: 48.5rem;
  height: 9.6rem;
  line-height: 9.6rem;
  text-align: center;
  display: inline-block;
  background-color: #2a85e8;
  border-radius: 1.1rem;
}
.about-warp-3 .item {
  right: 0;
  padding: 2.2rem;
  width: 41rem;
  top: 17rem;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.46);
  box-shadow: -1.35rem 0.66rem 4.3rem 0rem rgba(33, 124, 223, 0.39);
  border-radius: 0.4rem;
}
.about-warp-3 .item li {
  display: flex;
  padding-left: 7rem;
  align-items: center;
  margin-top: 1.5rem;
  text-align: center;
  height: 10rem;
  font-weight: 700;
  line-height: 10rem;
  font-size: 3.2rem;
  background-color: #fffffd;
  border-radius: 0.6rem;
  transition: all 500ms ease;
}
.about-warp-3 .item li img {
  max-height: 7rem;
  margin-right: 2rem;
  display: none;
}
.about-warp-3 .item li a {
  display: flex;
  color: #0067b3;
  align-items: center;
  font-size:2.8rem;
}
.about-warp-3 .item li:hover {
  color: #fff;
  padding-left:1.5rem;
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(45deg, #337cd1 0%, #2f308d 100%), linear-gradient(#e5f4fd, #e5f4fd);
}
.about-warp-3 .item li:hover img {
  display: inline-block;
}
.about-warp-3 .item li:hover a {
  color: #fff;
}
@media (max-width: 1024px) {
  .about-warp-3 {
    padding: 50px 0;
    height: auto;
  }
  .about-warp-3 .title {
    top: auto;
    left: auto;
    bottom: auto;
    text-align: center;
    position: relative;
  }
  .about-warp-3 .title span {
    color: #333;
    background: transparent;
    font-size: 26px;
    line-height: 40px;
    min-width: 100%;
    height: auto;
  }
  .about-warp-3 .item {
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin-top: 30px;
    position: relative;
  }
  .about-warp-3 .item li {
    font-size: 20px;
    height: 60px;
    line-height: 60px;
  }
}
.news-warp {
  padding-top: 6rem;
  padding-bottom: 12rem;
}
@media (max-width: 1024px) {
  .news-warp {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}
.news-list {
  border-radius: 1.6rem;
  background-color: #fafafa;
  margin-top: 8rem;
}
.news-list .item {
  display: flex;
  justify-content: space-between;
}
.news-list .item .pic {
  width: 55%;
  overflow: hidden;
  position: relative;
  border-radius: 1.6rem 0rem 0rem 1.6rem;
}
.news-list .item .pic img {
  transition: all 700ms ease;
  border-radius: 1.6rem 0rem 0rem 1.6rem;
}
.news-list .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 58.2278481%;
}
.news-list .item .text {
  width: 45%;
  padding: 5rem 7rem;
  padding-right: 6rem;
}
.news-list .item .text .tit {
  height: 8rem;
  font-size: 3rem;
  line-height: 4rem;
  letter-spacing: 0rem;
  color: #383838;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-list .item .text .time {
  color: #040300;
  margin-top: 4rem;
  font-family: Arial, Helvetica, sans-serif;
}
.news-list .item .text .txt {
  height: 6rem;
  line-height: 3rem;
  margin-top: 4rem;
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-list .item .text .button {
  margin-top: 5rem;
}
.news-list .item .text .button span {
  color: #fff;
  text-align: center;
  display: inline-block;
  min-width: 17.1rem;
  height: 4.7rem;
  line-height: 4.7rem;
  background-color: #e03b3b;
  border-radius: 2.3rem;
}
.news-list .item .text .button img {
  max-height: 1.4rem;
  margin-left: 1.8rem;
  vertical-align: middle;
  margin-bottom: 0.3rem;
}
.news-list .item:hover .pic img {
  transform: scale(1.05);
}
.news-list .item:hover .text .tit {
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .news-list {
    margin-top: 20px;
  }
  .news-list .item {
    display: block;
  }
  .news-list .item .pic {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
  .news-list .item .pic img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
  .news-list .item .text {
    width: 100%;
    padding: 30px;
  }
  .news-list .item .text .tit {
    font-size: 20px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .news-list .item .text .time {
    margin-top: 10px;
  }
  .news-list .item .text .txt {
    margin-top: 20px;
  }
  .news-list .item .text .button {
    margin-top: 30px;
  }
}
.news-list-2 {
  margin-top: 3.5rem;
}
.news-list-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.1rem;
}
.news-list-2 li {
  padding: 0 1.1rem;
  width: 33.333%;
}
.news-list-2 li .item {
  height: 18rem;
  padding-top: 4rem;
  padding-left: 2.3rem;
  padding-right: 5.8rem;
  background-color: #f1f1f1;
}
.news-list-2 li .item .tit {
  font-weight: 700;
  font-size: 2rem;
  height: 6rem;
  line-height: 3rem;
  letter-spacing: 0rem;
  color: #222222;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-list-2 li .item .arrow {
  width: 2.6rem;
  height: 2.6rem;
  fill: #1d3054;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .news-list-2 li {
    width: 100%;
    margin-top: 20px;
  }
  .news-list-2 li .item {
    padding: 30px;
  }
}
.news-list-3 {
  padding-top: 6rem;
}
.news-list-3 li {
  padding: 7rem 2.2rem;
  border-bottom: solid 1px #dcdcdc;
}
.news-list-3 li .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.news-list-3 li .time {
  width: 3%;
  font-size: 1.2rem;
  border-bottom: solid 0.3rem var(--main-color);
  color: #555555;
}
.news-list-3 li .time p:first-child {
  font-size: 3.8rem;
  line-height: 4rem;
}
.news-list-3 li .time p:last-child {
  padding-bottom: 3rem;
}
.news-list-3 li .pic {
  box-shadow: 0rem 1.5rem 2.7rem 0rem rgba(42, 42, 42, 0.13);
  border-radius: 1rem;
  width: 34.5%;
  overflow: hidden;
  position: relative;
}
.news-list-3 li .pic:after {
  content: "";
  display: block;
  padding-bottom: 55.41666667%;
}
.news-list-3 li .pic img {
  border-radius: 1rem;
  transition: all 700ms linear;
}
.news-list-3 li .text {
  width: 58%;
  padding-top: 4rem;
}
.news-list-3 li .tit {
  color: #222;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4rem;
  height: 4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.news-list-3 li .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: #666;
  font-size: 1.8rem;
  height: 6rem;
  line-height: 3rem;
  margin-top: 3rem;
}
.news-list-3 li .more {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-top: 6rem;
}
.news-list-3 li .more svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: #d7d7d7;
  margin-left: 1rem;
}
.news-list-3 li:hover .pic img {
  transform: scale(1.05);
}
.news-list-3 li:hover .tit {
  color: var(--main-color);
}
.news-list-3 li:hover .more svg {
  fill: var(--main-color);
}
@media (max-width: 1024px) {
  .news-list-3 {
    padding: 10px 0 50px 0;
  }
  .news-list-3 li {
    padding: 30px 0;
    padding-left: 0;
  }
  .news-list-3 li .pic {
    width: 40%;
  }
  .news-list-3 li .text {
    width: 56%;
    padding-top: 0;
  }
  .news-list-3 li .time {
    display: none;
  }
  .news-list-3 li .more {
    display: none;
  }
  .news-list-3 li .tit {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .news-list-3 li .txt {
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 420px) {
  .news-list-3 li .txt {
    margin-top: 0;
  }
}
.news-box {
  padding-bottom: 12rem;
  padding-top: 8rem;
}
.news-box .news-list-4 {
  margin-top: 6rem;
  position: relative;
}
.news-box .news-list-4 a {
  margin-bottom: 0.7rem;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  box-shadow: 5px 0 7px rgba(152, 152, 152, 0.4);
}
.news-box .news-list-4 a:hover .pic img {
  transform: scale(1.1);
}
.news-box .news-list-4 a:hover .tit {
  color: var(--main-color);
}
.news-box .news-list-4 a:hover .button span:before {
  transform: scale(1.05);
  animation: shine 1.5s ease-out infinite;
}
.news-box .news-list-4 .pic {
  width: 52%;
  overflow: hidden;
  position: relative;
}
.news-box .news-list-4 .pic img {
  transition: all 700ms ease;
}
.news-box .news-list-4 .pic:after {
  content: "";
  display: block;
  padding-bottom: 56%;
}
.news-box .news-list-4 .txtbox {
  width: 48%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 4rem;
}
.news-box .news-list-4 .txtbox .time {
  width: 20%;
  margin-top: 1rem;
  font-family: var(--font-family-O-B);
}
.news-box .news-list-4 .txtbox .time span {
  display: block;
  color: #6d6d6d;
  font-size: 1.2rem;
  font-weight: 700;
}
.news-box .news-list-4 .txtbox .time span:first-child {
  color: #323232;
  font-size: 3.8rem;
  line-height: 4rem;
}
.news-box .news-list-4 .nr {
  width: 80%;
}
.news-box .news-list-4 .nr .tit {
  color: #323232;
  font-weight: 700;
  height: 10rem;
  font-size: 3rem;
  line-height: 5rem;
  transition: color 334ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-box .news-list-4 .nr .txt {
  color: #888;
  margin-top: 3rem;
  height: 9rem;
  line-height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.news-box .swiper-box {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 95rem;
  margin: 0 auto;
  margin-top: 5rem;
}
@media (max-width: 1024px) {
  .news-box .swiper-box {
    max-width: 100%;
  }
}
.news-box .swiper-button-prev,
.news-box .swiper-button-next {
  width: 4rem;
  height: 4rem;
  z-index: 9;
  top: auto;
  display: inline-block;
  margin-top: auto;
  position: relative;
  border: solid 1px #e7e7e7;
  border-radius: 50%;
  transition: all 500ms ease;
  vertical-align: top;
}
.news-box .swiper-button-prev:after,
.news-box .swiper-button-next:after {
  content: "";
  color: var(--main-color);
  font-size: 2rem;
  font-family: "宋体";
}
.news-box .swiper-button-prev {
  background: url(../images/prev.png) no-repeat center center #fff;
  background-size: cover;
}
.news-box .swiper-button-next {
  background: url(../images/next.png) no-repeat center center #fff;
  background-size: cover;
}
.news-box .swiper-pagination-progressbar {
  position: relative;
  height: 1px;
  margin: 0 auto;
  z-index: 1;
  width: 85%;
  background: #e3e3e3;
}
.news-box .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--main-color);
  height: 2px;
}
.news-box .news-list-5 {
  margin-top: 4rem;
}
.news-box .news-list-5 li {
  border-bottom: solid 1px #ededed;
  padding: 7rem 4rem;
}
.news-box .news-list-5 li .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.news-box .news-list-5 li .time {
  width: 3%;
  font-size: 1.2rem;
  color: #001d52;
  border-bottom: solid 0.3rem #001d52;
}
.news-box .news-list-5 li .time p:first-child {
  font-size: 3.8rem;
  line-height: 4rem;
}
.news-box .news-list-5 li .time p:last-child {
  padding-bottom: 3rem;
}
.news-box .news-list-5 li .pic {
  width: 33%;
  overflow: hidden;
  position: relative;
}
.news-box .news-list-5 li .pic:after {
  content: "";
  display: block;
  padding-bottom: 56.17977528%;
}
.news-box .news-list-5 li .pic img {
  transition: all 700ms linear;
}
.news-box .news-list-5 li .text {
  width: 59%;
}
.news-box .news-list-5 li .tit {
  color: #27303d;
  font-size: 3.2rem;
  line-height: 4rem;
  max-height: 8rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-box .news-list-5 li .txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  color: #888;
  height: 12rem;
  line-height: 3rem;
  margin-top: 1.5rem;
}
.news-box .news-list-5 li .more {
  bottom: 0;
  font-size: 1.8rem;
  position: absolute;
  text-align: center;
  width: 20rem;
  height: 5.8rem;
  line-height: 5.6rem;
  color: var(--main-color);
  transition: all 334ms ease;
  border: solid 1px var(--main-color);
}
.news-box .news-list-5 li .more img {
  margin-left: 1.5rem;
  margin-top: 2rem;
  max-height: 1.2rem;
}
.news-box .news-list-5 li .more:after {
  content: "";
  width: 3.2rem;
  height: 1.2rem;
  display: inline-block;
  margin-left: 1.5rem;
  margin-bottom: 0.4rem;
  background: url(../images/arrow-4.png) no-repeat center center;
  background-size: cover;
}
@media (min-width: 1025px) {
  .news-box .news-list-5 li:hover {
    box-shadow: 0 0 5rem rgba(75, 76, 78, 0.32);
  }
  .news-box .news-list-5 li:hover .pic img {
    transform: scale(1.05);
  }
  .news-box .news-list-5 li:hover .tit {
    color: var(--main-color);
  }
  .news-box .news-list-5 li:hover .more {
    color: #fff;
    background-color: var(--main-color);
  }
  .news-box .news-list-5 li:hover .more:after {
    background: url(../images/arrow-h.png) no-repeat center center;
    background-size: cover;
  }
}
@media (max-width: 1024px) {
  .news-box {
    padding: 30px 0 50px 0;
  }
  .news-box .swiper-button-prev {
    left: 0;
  }
  .news-box .swiper-button-next {
    right: 0;
  }
  .news-box .news-list-4 {
    margin-top: 10px;
  }
  .news-box .news-list-4 .nr {
    width: 100%;
  }
  .news-box .news-list-4 .nr .tit {
    font-size: 20px;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .news-box .news-list-4 a {
    display: block;
  }
  .news-box .news-list-4 li {
    padding: 0;
  }
  .news-box .news-list-4 li .time {
    display: none;
  }
  .news-box .news-list-4 li .pic {
    width: 100%;
  }
  .news-box .news-list-4 li .txtbox {
    width: 100%;
    padding: 30px;
  }
  .news-box .news-list-4 li .text {
    padding-right: 0;
    padding-left: 20px;
  }
  .news-box .news-list-4 li .more {
    font-size: 14px;
    margin-top: 15px;
  }
  .news-box .news-list-5 {
    margin-top: 10px;
  }
  .news-box .news-list-5 li {
    padding: 20px 0;
    padding-left: 0;
  }
  .news-box .news-list-5 li .pic {
    width: 40%;
  }
  .news-box .news-list-5 li .text {
    width: 56%;
  }
  .news-box .news-list-5 li .time {
    display: none;
  }
  .news-box .news-list-5 li .more {
    display: none;
  }
  .news-box .news-list-5 li .tit {
    font-size: 16px;
    height: 24px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
  }
  .news-box .news-list-5 li .txt {
    margin-top: 0;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 420px) {
  .news-box .list-2 li .txt {
    margin-top: 0;
  }
}
.news-show {
  line-height: 3.6rem;
  position: relative;
  color: #4b5257;
  font-size: 2rem;
}
.news-show .hd {
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px #e0e1e0 solid;
  position: relative;
}
.news-show .hd .inside-current {
  text-align: left;
}
.news-show .show-title {
  font-weight: 400;
  line-height: 6rem;
  color: #3c4349;
  text-align: left;
  font-size: 4.2rem;
  margin-bottom: 4rem;
}
.news-show .show-info {
  color: #555555;
  line-height: 2.4rem;
  position: relative;
}
.news-show .show-info span {
  padding-right: 12rem;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.news-show .show-info span:last-child {
  margin-right: 0;
  padding-right: 0;
}
.news-show .show-info img {
  margin-right: 1rem;
  max-height: 2.4rem;
}
.news-show .bd {
  border-left: 1px #e0e1e0 solid;
}
.news-show .bd > .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: self-start;
}
.news-show .aside {
  width: 7.2rem;
  position: sticky;
  left: 0;
  top: 0;
  padding-top: 7rem;
  margin-left: -13.5rem;
}
.news-show .aside .socialMedia {
  background: #f2f2f2;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  z-index: 30;
}
.news-show .aside .socialMedia .bt {
  display: block;
  font-size: 1.4rem;
  color: #333333;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.news-show .aside .socialMedia .icon {
  display: block;
  width: 4rem;
  height: 4rem;
  margin: auto;
}
.news-show .aside .socialMedia a {
  display: block;
  margin-bottom: 1rem;
}
.news-show .aside .socialMedia a:last-child {
  margin-bottom: 0;
}
.news-show .aside .socialMedia a:hover {
  opacity: 0.8;
}
.news-show .aside .returnList {
  background: #3379cf;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  text-align: center;
  color: #fff;
  padding-top: 5.5rem;
  padding-bottom: 1.5rem;
  margin-top: -3rem;
  position: relative;
  z-index: 20;
}
.news-show .aside .returnList a {
  color: #fff;
}
.news-show .aside .returnList a:hover {
  opacity: 0.8;
}
.news-show .aside .returnList .bt {
  display: block;
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.news-show .aside .returnList .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.2rem #fff solid;
  margin: auto;
}
.news-show .aside .returnList .icon svg {
  width: 2rem;
  height: 2rem;
}
.news-show .aside .returnTop {
  background: #303692;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  text-align: center;
  color: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
  margin-top: -3rem;
  position: relative;
}
.news-show .aside .returnTop a {
  color: #fff;
}
.news-show .aside .returnTop a:hover {
  opacity: 0.8;
}
.news-show .aside .returnTop .bt {
  display: block;
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.news-show .aside .returnTop .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: auto;
}
.news-show .aside .returnTop .icon svg {
  width: 2.4rem;
  height: 2.4rem;
  color: #fff;
}
.news-show .bdC {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.news-show .bdC .left {
  width: 68%;
  padding-bottom: 8rem;
  padding-left: 7rem;
  padding-right: 5rem;
  border-right: solid 1px #cacccb;
}
.news-show .bdC .right {
  width: 32%;
  padding-bottom: 10rem;
  padding-left: 4rem;
}
.news-show .bdC .titleBig {
  font-weight: 700;
  line-height: 1;
  color: #2f2f2f;
  font-size: 2.6rem;
  margin-bottom: 5rem;
}
.news-show .nr {
  line-height: 3.6rem;
  font-size: 2rem;
  padding-bottom: 5rem;
}
.news-show .nr .title-1 {
  color: #333333;
  margin-top: 8rem;
  font-size: 3.2rem;
  line-height: 4rem;
  margin-bottom: 6rem;
}
.news-show .nr .title-2 {
  text-align: center;
  font-size: 1.8rem;
  padding: 4rem 0;
  position: relative;
}
.news-show .nr .title-2:before,
.news-show .nr .title-2:after {
  left: 0;
  width: 100%;
  content: "";
  height: 0.4rem;
  position: absolute;
  background: url(../images/line.jpg) repeat-x top left;
}
.news-show .nr .title-2:before {
  top: 0;
}
.news-show .nr .title-2:after {
  bottom: 0;
}
.news-show .nr .title-3 {
  position: relative;
  padding-bottom: 2rem;
  margin-top: 5rem;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
}
.news-show .nr .title-3:after {
  content: "";
  bottom: 0;
  left: 50%;
  width: 5.4rem;
  height: 0.3rem;
  position: absolute;
  background: #71afca;
  transform: translateX(-50%);
}
.news-show .tags {
  padding: 1rem 2rem;
  background: #dfe8f3;
}
.news-show .tags .bt {
  margin-right: 1rem;
}
.news-show .tags a {
  margin-right: 2rem;
  color: #4b5257;
  font-size: 1.8rem;
  display: inline-block;
}
.news-show .tags a:hover {
  color: var(--main-color);
  text-decoration: underline;
}
.news-show .tjNews {
  position: sticky;
  right: 0;
  top: 12rem;
}
.news-show .tjNews .list li {
  padding-bottom: 2.5rem;
}
.news-show .tjNews .list li:last-child {
  padding-bottom: 0;
}
.news-show .tjNews .list .box {
  display: block;
  background-color: #eaeaeb;
  color: #222;
  font-size: 2rem;
  padding: 3rem 3rem;
}
.news-show .tjNews .list .title {
  margin-bottom: 2rem;
  line-height: 3rem;
  height: 6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-show .tjNews .list .btnDiv {
  display: flex;
}
.news-show .tjNews .list .btnDiv > span {
  display: inline-flex;
  vertical-align: top;
}
.news-show .tjNews .list .btnDiv svg {
  width: 3rem;
  height: 3rem;
  fill: #1d3054;
}
.news-show .tjNews .list .box:hover {
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .news-show {
    padding-bottom: 50px;
    padding-top: 60px;
    margin-top: 0;
    font-size: 14px;
    line-height: 24px;
  }
  .news-show .show-title {
    font-size: 20px;
    line-height: 30px;
  }
  .news-show .tags {
    line-height: 24px;
    padding-bottom: 20px;
  }
  .news-show .aside {
    display: none;
  }
  .news-show .hd {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .news-show .bdC {
    margin-top: 30px;
  }
  .news-show .bdC .left {
    width: 100%;
    padding: 0;
    border: 0;
  }
  .news-show .bdC .right {
    width: 100%;
    padding: 0;
    float: none;
    margin-top: 30px;
  }
  .news-show .nr {
    padding-bottom: 30px;
  }
  .news-show .nr .title-1 {
    font-size: 22px;
    line-height: 30px;
    margin: 40px 0 30px 0;
  }
  .news-show .nr .title-2 {
    text-align: left;
    font-size: 15px;
  }
  .news-show .nr .title-3 {
    font-size: 18px;
    line-height: 30px;
  }
}
.admissions-zszn {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin-top: -4rem;
  position: relative;
  padding-bottom: 9rem;
  padding-top: 11rem;
}
.admissions-zszn .common-title .en {
  -webkit-text-stroke: #fff 1px;
}
.admissions-zszn .card {
  display: flex;
  justify-content: space-between;
  padding-top: 8rem;
}
.admissions-zszn .left {
  width: 48%;
}
.admissions-zszn .left .title {
  font-size: 5rem;
  line-height: 6rem;
  color: var(--main-color);
  font-weight: 700;
}
.admissions-zszn .left .title .t-1 {
  position: relative;
  padding-bottom: 3.5rem;
  text-transform: uppercase;
}
.admissions-zszn .left .title .t-1::after {
  content: "";
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  position: absolute;
  background: var(--main-color);
}
.admissions-zszn .left .title .t-2 {
  font-size: 5rem;
  line-height: 6rem;
  padding-top: 2.5rem;
}
.admissions-zszn .left .title-2 {
  padding-top: 10rem;
  font-size: 4.4rem;
  line-height: 6rem;
  color: var(--main-color);
}
.admissions-zszn .left .title-3 {
  margin: 0 -2.5rem;
  margin-top: 18rem;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: 3.6rem;
  letter-spacing: 0rem;
  color: #1d3054;
}
.admissions-zszn .left .title-3 a {
  color: #1d3054;
  display: inline-block;
  padding: 0 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}
.admissions-zszn .left .title-3 a::after {
  content: "";
  width: 1px;
  right: 0;
  top: 0.5rem;
  position: absolute;
  height: 2.6rem;
  background: #1d3054;
}
.admissions-zszn .left .title-3 a:hover {
  text-decoration: underline;
}
.admissions-zszn .right {
  width: 50%;
  padding: 6rem 4rem;
  padding-bottom: 8rem;
  border: solid 1px rgba(255, 255, 255, 0.83);
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1.6rem;
}
.admissions-zszn .right .title {
  font-size: 5rem;
  line-height: 6rem;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
}
.admissions-zszn .right ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  margin-top: 5rem;
}
.admissions-zszn .right li {
  width: 50%;
  padding: 0 0.5rem;
  padding-top: 1rem;
}
.admissions-zszn .right li .text-input,
.admissions-zszn .right li .text-select {
  position: relative;
}
.admissions-zszn .right li .text-input label,
.admissions-zszn .right li .text-select label {
  top: 0.5rem;
  color: #242f37;
  left: 2rem;
  position: absolute;
  line-height: 4.5rem;
  font-family: var(--font-family-H-S-SC-B);
}
.admissions-zszn .right li .text-input i,
.admissions-zszn .right li .text-select i {
  padding-top: 0.2rem;
  padding-right: 0.4rem;
  vertical-align: top;
  color: #333;
  font-style: normal;
  display: inline-block;
}
.admissions-zszn .right li .text-input input,
.admissions-zszn .right li .text-select input,
.admissions-zszn .right li .text-input select,
.admissions-zszn .right li .text-select select {
  border: 0;
  color: #999;
  font-size: 1.6rem;
  padding-right: 1rem;
  padding-left: 11rem;
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  height: 5.4rem;
  line-height: 5.2rem;
  background-color: #ffffff;
  border-radius: 0.4rem;
  border: solid 1px #eaeaea;
}
.admissions-zszn .right li .text-select select {
  color: #bbb;
  appearance: none;
  padding-right: 6rem;
}
.admissions-zszn .right li .text-select::after {
  z-index: 3;
  top: 2rem;
  right: 2.5rem;
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
}
.admissions-zszn .right li .text-textarea {
  position: relative;
}
.admissions-zszn .right li .text-textarea label {
  top: 0;
  color: #333;
  left: 2rem;
  position: absolute;
  line-height: 4.5rem;
}
.admissions-zszn .right li .text-textarea textarea {
  color: #999;
  font-size: 1.6rem;
  font-family: "微软雅黑";
  height: 15rem;
  padding: 0 2rem;
  padding-top: 2rem;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.4rem;
  border: solid 1px #eaeaea;
}
.admissions-zszn .right .li-1 {
  width: 100%;
  padding-top: 2rem;
}
.admissions-zszn .right .li-1 .sibmit a {
  line-height: 7rem;
  display: block;
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  background: var(--main-color);
  transition: all 500ms ease;
  height: 7rem;
  background-color: #2f308c;
  border-radius: 0.2rem;
}
.admissions-zszn .right .li-1 .sibmit a:hover {
  background: #e61014;
}
.admissions-zszn .right .li-2 {
  width: 100%;
}
@media (max-width: 1024px) {
  .admissions-zszn {
    margin-top: 0;
    padding: 40px 0;
  }
  .admissions-zszn .left .title {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 10px;
  }
  .admissions-zszn .left .title-2 {
    font-size: 20px;
    line-height: 30px;
    padding-top: 30px;
  }
  .admissions-zszn .left .title-3 {
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
    margin: 0 -10px;
    margin-top: 30px;
  }
  .admissions-zszn .left .title-3 a {
    padding: 0 10px;
  }
  .admissions-zszn .left .title-3 a::after {
    height: 16px;
  }
  .admissions-zszn .left .title .t-2 {
    font-size: 24px;
    line-height: 30px;
  }
  .admissions-zszn .card {
    display: block;
    padding-top: 30px;
  }
  .admissions-zszn .left {
    width: 100%;
  }
  .admissions-zszn .right {
    width: 100%;
    margin-top: 30px;
    padding: 30px;
  }
  .admissions-zszn .right .title {
    font-size: 24px;
    line-height: 30px;
  }
  .admissions-zszn .right ul {
    margin-top: 20px;
  }
  .admissions-zszn .right li {
    width: 100%;
  }
}
.contact01 {
  overflow: hidden;
  padding: 15rem 0 12rem 0;
  background-size: cover;
}
.contact01 .contact-bottom ul {
  margin: 0 -6.5rem;
}
.contact01 .contact-bottom ul li {
  width: 33.33333333%;
  float: left;
  padding: 0 6.5rem;
  margin-top: 7rem;
}
.contact01 .contact-bottom ul li .box {
  border-radius: 2rem;
  height: 39.4rem;
  background-color: #ffffff;
  box-shadow: 0rem 2.6rem 14.7rem 0rem rgba(10, 26, 46, 0.22);
  padding: 4.4rem 3.6rem;
  position: relative;
}
.contact01 .contact-bottom ul li .box .span {
  font-weight: 700;
  position: absolute;
  top: 3.9rem;
  right: 3.2rem;
  font-size: 1.2rem;
  line-height: 2.4rem;
  color: var(--main-color);
  writing-mode: vertical-rl;
}
.contact01 .contact-bottom ul li .pic {
  width: 7.7rem;
  border-radius: 50%;
  background-color: #ffffff;
  border: solid 1px var(--main-color);
  z-index: 3;
  position: relative;
}
.contact01 .contact-bottom ul li .pic img {
  max-height: 7.7rem;
}
.contact01 .contact-bottom ul li .bt {
  font-size: 2.4rem;
  margin-top: 4.3rem;
  margin-bottom: 1.5rem;
  z-index: 3;
  position: relative;
  color: #222222;
}
.contact01 .contact-bottom ul li .p {
  font-size: 3.2rem;
  line-height: 4rem;
  z-index: 3;
  position: relative;
  color: #222222;
}
.contact01 .contact-bottom ul li .p a {
  color: #222222;
}
.contact01 .contact-bottom ul li .img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 16.6rem;
  z-index: 2;
}
@media (min-width: 1025px) {
  .contact01 .contact-bottom ul li:hover .pic {
    border-color: #26aeec;
  }
  .contact01 .contact-bottom ul li:hover .box {
    background-image: linear-gradient(45deg, #3373c9 0%, #2f328f 100%);
    box-shadow: 0rem 0.5rem 4.3rem 0rem rgba(21, 22, 23, 0.6);
  }
  .contact01 .contact-bottom ul li:hover .box .span {
    color: #fff;
  }
  .contact01 .contact-bottom ul li:hover .bt {
    color: #fff;
  }
  .contact01 .contact-bottom ul li:hover .p {
    color: #fff;
  }
  .contact01 .contact-bottom ul li:hover .p a {
    color: #fff;
  }
}
.contact01 .contact-bottom ul .cc1 .img {
  background: url(../images/cc1.png) no-repeat center center;
  background-size: 100%;
  width: 18.2rem;
}
@media (min-width: 1025px) {
  .contact01 .contact-bottom ul .cc1:hover .img {
    background: url(../images/cc1h.png) no-repeat center center;
    background-size: 100%;
  }
}
.contact01 .contact-bottom ul .cc2 .img {
  background: url(../images/cc2.png) no-repeat center center;
  background-size: 100%;
  width: 17.6rem;
  height: 15.8rem;
}
@media (min-width: 1025px) {
  .contact01 .contact-bottom ul .cc2:hover .img {
    background: url(../images/cc2h.png) no-repeat center center;
    background-size: 100%;
  }
}
.contact01 .contact-bottom ul .cc3 .img {
  background: url(../images/cc3.png) no-repeat center center;
  background-size: 100%;
  width: 14rem;
}
@media (min-width: 1025px) {
  .contact01 .contact-bottom ul .cc3:hover .img {
    background: url(../images/cc3h.png) no-repeat center center;
    background-size: 100%;
  }
}
@media (max-width: 1024px) {
  .contact01 {
    padding: 30px 0 50px 0;
  }
  .contact01 .contact-bottom ul li {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .contact01 .contact-bottom ul li .box {
    height: auto;
    padding-bottom: 50px;
  }
  .contact01 .contact-bottom ul li .p {
    font-size: 18px;
    line-height: 30px;
  }
  .contact01 .contact-bottom ul li .bt {
    margin: 15px 0 10px 0;
  }
  .contact01 .contact-bottom ul li .img {
    height: 90px;
  }
  .contact01 .contact-bottom ul .cc1 .img {
    width: 100px;
  }
  .contact01 .contact-bottom ul .cc2 .img {
    width: 100px;
    height: 90px;
  }
  .contact01 .contact-bottom ul .cc3 .img {
    width: 100px;
    height: 120px;
  }
}
.service-warp {
  overflow: hidden;
  padding: 13rem 0 0 0;
}
@media (max-width: 1024px) {
  .service-warp {
    padding-top: 40px;
  }
}
.service-list {
  margin-top: 10rem;
}
.service-list li {
  position: relative;
  padding-bottom: 20rem;
}
.service-list li .item {
  display: flex;
  justify-content: space-between;
}
.service-list li .left {
  width: 64%;
  overflow: hidden;
  position: relative;
}
.service-list li .left::after {
  content: "";
  display: block;
  padding-bottom: 67.39130435%;
}
.service-list li .left img {
  transition: all 700ms ease;
}
.service-list li .right {
  width: 36%;
  z-index: 3;
  transform: translateY(17rem);
  position: relative;
}
.service-list li .right .num {
  top: -27rem;
  right: -12rem;
  font-family: var(--font-family-O-R);
  font-size: 27.2rem;
  color: #e5e9f3;
  position: absolute;
  transform: rotate(90deg);
}
.service-list li .right .num-2 {
  top: -16rem;
  padding-left: 2rem;
  font-size: 7rem;
  line-height: 7rem;
  color: transparent;
  position: absolute;
  font-weight: 700;
  -webkit-text-stroke: #a4a4a4 1px;
}
.service-list li:first-child .right .num-2 {
  width: 150%;
}
.service-list li:nth-child(2) .right .num-2 {
  width: 170%;
}
.service-list li .right .text {
  width: 185%;
  display: flex;
  align-items: center;
  height: 49.6rem;
  margin-left: -19rem;
  position: relative;
  background: #f4f4f5;
  padding: 3rem 9.5rem;
}
.service-list li .right .text::after {
  content: "";
  width: 100%;
  bottom: 0;
  left: 0;
  height: 0.7rem;
  position: absolute;
  background: linear-gradient(to top, #337cd1 22%, #2f308d 100%);
}
.service-list li .right .text .nr {
  width: 82%;
}
.service-list li .right .text .tit {
  font-size: 3.2rem;
  line-height: 4rem;
  height: 4rem;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.service-list li .right .text .en {
  color: #333;
  font-size: 2rem;
  margin-top: 0.5rem;
  font-weight: normal;
  font-family: var(--font-family-O-B);
}
.service-list li .right .text .txt {
  margin-top: 3rem;
  color: #666666;
  line-height: 3rem;
  height: 9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.service-list li .right .text .button {
  transition: all 700ms ease;
  margin-top: 5rem;
  color: #fff;
  display: inline-block;
  text-align: center;
  min-width: 17.6rem;
  height: 5.4rem;
  line-height: 5.4rem;
  background: var(--sub-color);
}
.service-list li .right .text .button img {
  max-height: 0.9rem;
  margin-top: 2.3rem;
  margin-left: 1.5rem;
}
.service-list li:nth-child(2n) .item {
  flex-direction: row-reverse;
}
.service-list li:nth-child(2n) .right .num {
  left: -12rem;
  right: auto;
}
.service-list li:nth-child(2n) .right .text {
  margin-left: -25rem;
  padding-right: 0;
  padding-left: 25rem;
}
.service-list li:nth-child(2n) .right .text .nr {
  width: 86%;
}
.service-list li:hover .left img {
  transform: scale(1.05);
}
.service-list li:hover .right .text .tit {
  color: var(--main-color);
}
.service-list li:hover .right .text .button {
  background: var(--main-color);
}
@media (max-width: 1024px) {
  .service-list {
    margin-top: 20px;
  }
  .service-list li {
    padding-bottom: 30px;
  }
  .service-list li .item {
    display: block;
  }
  .service-list li .left,
  .service-list li .right {
    width: 100%;
  }
  .service-list li .right {
    transform: translateY(0);
  }
  .service-list li .right .num,
  .service-list li .right .num-2 {
    display: none;
  }
  .service-list li .right .text {
    width: 100%;
    height: auto;
    padding: 30px !important;
    padding-bottom: 40px !important;
    margin: 0 !important;
  }
  .service-list li .right .text .nr {
    width: 100% !important;
  }
  .service-list li .right .text .txt {
    height: 6rem;
  }
}
@media (max-width: 640px) {
  .service-list li .right .text .tit {
    font-size: 20px;
  }
  .service-list li .right .text .txt {
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
  .service-list li .right .text .en {
    font-size: 12px;
    display: none;
  }
  .service-list li .right .text .button {
    margin-top: 30px;
  }
}
.service-show {
  padding-top: 2rem;
  padding-bottom: 20rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.service-show .common-current {
  color: #999;
}
.service-show .common-current svg {
  fill: #999;
}
.service-show .common-current a {
  color: #999;
}
.service-show .en,
.service-show .cn {
  font-weight: 700;
  margin-top: 2rem;
  color: var(--main-color);
  font-size: 5rem;
  line-height: 6rem;
  text-transform: uppercase;
}
.service-show .en {
  position: relative;
  padding-bottom: 2rem;
}
.service-show .en::before {
  content: "";
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.3rem;
  position: absolute;
  background: var(--main-color);
}
.service-show .list {
  display: flex;
  justify-content: space-between;
  margin-top: 10rem;
}
.service-show .list .left {
  width: 53.5%;
}
.service-show .list .right {
  line-height: 3.2rem;
  font-size: 1.8rem;
  padding-right: 4rem;
  width: 42.5%;
}
.service-show .list .right .t-1 span {
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem 1rem;
  min-width: 13rem;
  display: inline-block;
  border-radius: 1rem;
  background: var(--main-color);
}
.service-show .list .right .t-2 {
  color: #222;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
.service-show .list .right .t-3 {
  color: #4b5257;
  padding-top: 2.5rem;
}
@media (max-width: 1024px) {
  .service-show {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .service-show .en {
    font-size: 20px;
    line-height: 30px;
  }
  .service-show .cn {
    font-size: 24px;
    line-height: 30px;
  }
  .service-show .list {
    display: block;
    margin-top: 30px;
  }
  .service-show .list .left {
    width: 100%;
  }
  .service-show .list .right {
    width: 100%;
    font-size: 15px;
    line-height: 26px;
    margin-top: 30px;
    padding-right: 0;
  }
}
.career-show {
  padding-bottom: 0;
}
.career-show .list-2 {
  padding: 0 11rem;
  margin-top: 6rem;
  height: 36.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.career-show .title {
  width: 30%;
  text-align: left;
  font-size: 4rem;
  color: #333333;
  line-height: 4rem;
  font-weight: 700;
}
.career-show .item {
  width: 65%;
  color: #333333;
  font-size: 1.8rem;
}
.career-show .item p {
  padding-top: 1rem;
}
@media (max-width: 1024px) {
  .career-show .list-2 {
    padding: 30px;
    display: block;
    height: auto;
    border-radius: 10px;
  }
  .career-show .title {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }
  .career-show .item {
    width: 100%;
    font-size: 15px;
  }
}
.career-show-2 .container {
  padding: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.career-show-2 .title {
  width: 30%;
  text-align: left;
  font-size: 4rem;
  color: #333333;
  line-height: 4rem;
  font-weight: 700;
}
.career-show-2 .item {
  width: 65%;
}
.career-show-2 .item p {
  padding: 2rem;
  padding-left: 9rem;
  padding-right: 3rem;
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  background-image: linear-gradient(91deg, #3c46dd, #3f8eea), linear-gradient(#2f308c, #2f308c);
  border-radius: 5rem 0rem 5rem 0rem;
}
@media (max-width: 1024px) {
  .career-show-2 {
    padding: 50px 0;
  }
  .career-show-2 .container {
    display: block;
  }
  .career-show-2 .title {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }
  .career-show-2 .item {
    width: 100%;
    font-size: 15px;
    padding-top: 20px;
  }
  .career-show-2 .item p {
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 10px;
  }
}
.career-show-3 {
  padding: 9rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.career-show-3 .title {
  font-size: 4rem;
  color: #333333;
  line-height: 4rem;
  font-weight: 700;
  text-align: center;
}
.career-show-3 .list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.career-show-3 .list li {
  width: 25%;
  display: flex;
  padding: 0 1.5rem;
  margin-top: 6rem;
}
.career-show-3 .list li .item {
  text-align: center;
  min-height: 100%;
  padding: 3rem;
  padding-top: 0;
  line-height: 2.8rem;
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(to bottom, #eaf2fe, #ffffff);
}
.career-show-3 .list li .item::after {
  content: "";
  top: 4.7rem;
  left: 3rem;
  z-index: 3;
  width: 3.8rem;
  height: 3.8rem;
  position: absolute;
  background: url(../images/career-7.png) no-repeat center center;
  background-size: 3.8rem 3.8rem;
}
.career-show-3 .list li .icon {
  margin-top: -2rem;
  position: relative;
}
.career-show-3 .list li .icon img {
  max-height: 12.4rem;
}
.career-show-3 .list li .tit {
  color: #151f30;
  font-weight: 700;
  margin-top: 3rem;
}
.career-show-3 .list li .txt {
  color: #151f30;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) {
  .career-show-3 .title {
    width: 100%;
    font-size: 24px;
    line-height: 30px;
  }
  .career-show-3 .list li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .career-show-3 .list li {
    width: 100%;
  }
}
.career-show-4 {
  padding: 10rem 0;
}
.career-show-4 .bt {
  font-size: 4rem;
  color: #333333;
  line-height: 4rem;
  font-weight: 700;
  text-align: center;
}
.career-show-4 .container {
  position: relative;
}
.career-show-4 .siderbox {
  position: relative;
}
.career-show-4 .siderfor {
  position: relative;
  margin-top: 4.5rem;
}
.career-show-4 .siderfor .item:hover .pic img {
  transform: scale(1.05);
}
.career-show-4 .siderfor .swiper-slide {
  padding-bottom: 2rem;
  padding-right: 2rem;
}
.career-show-4 .siderfor .swiper-button-prev,
.career-show-4 .siderfor .swiper-button-next {
  top: 15%;
  opacity: 0;
  margin-top: auto;
  width: 40px;
  height: 40px;
  color: #aaa;
  line-height: 38px;
  border-radius: 50px;
  border: solid 1px #eee;
  background-color: rgba(255, 255, 255, 0.87);
}
.career-show-4 .siderfor .swiper-button-prev::after,
.career-show-4 .siderfor .swiper-button-next::after {
  font-size: 12px;
}
.career-show-4 .siderfor .item {
  position: relative;
}
.career-show-4 .siderfor .item .pic {
  width: 53%;
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
}
.career-show-4 .siderfor .item .pic:after {
  content: "";
  display: block;
  padding-bottom: 59.0747331%;
}
.career-show-4 .siderfor .item .pic img {
  transition: all 1000ms ease;
}
.career-show-4 .siderfor .item .text {
  width: 43.8%;
  float: right;
  background: #fff;
  z-index: 3;
  min-height: 44rem;
  margin-top: 3rem;
  width: calc(43.8% + 15rem);
  box-shadow: 0 0 2rem rgba(36, 49, 84, 0.1);
  position: relative;
  padding-left: 9rem;
  padding-top: 5rem;
  padding-bottom: 7rem;
  padding-right: 13rem;
  margin-left: -15rem;
}
.career-show-4 .siderfor .item .text .tishi {
  color: #333;
  font-size: 2.2rem;
  line-height: 3rem;
}
.career-show-4 .siderfor .item .text .title {
  height: 8rem;
  padding-left: 12rem;
  position: relative;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
.career-show-4 .siderfor .item .text .title .num {
  bottom: 0;
  left: 0;
  color: #1c5e99;
  font-size: 8rem;
  line-height: 8rem;
  width: 9rem;
  position: absolute;
  font-family: var(--font-family-O-B);
}
.career-show-4 .siderfor .item .text .title .num:before {
  top: -0.7rem;
  right: 0.8rem;
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  transform: rotate(35deg);
  border-left: solid 1px #1c5e99;
}
.career-show-4 .siderfor .item .text .title .num:after {
  bottom: -1rem;
  left: 1rem;
  content: "";
  width: 1px;
  height: 2rem;
  position: absolute;
  transform: rotate(35deg);
  border-left: solid 1px #1c5e99;
}
.career-show-4 .siderfor .item .text .title .cn {
  color: #333333;
  font-size: 3rem;
  font-weight: 700;
}
.career-show-4 .siderfor .item .text .title .en {
  color: #b0b0b0;
  font-size: 1.7rem;
}
.career-show-4 .siderfor .item .text .info {
  line-height: 3.2rem;
  text-align: justify;
}
.career-show-4 .siderfor .item .text .p-1 {
  color: #3e3a38;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}
.career-show-4 .siderfor .item .text .p-1:before {
  content: "";
  top: 1.3rem;
  left: 0;
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../images/arrow-6.jpg) no-repeat top center;
  background-size: cover;
}
@media (max-width: 1300px) {
  .career-show-4 .siderfor .item .text {
    margin-top: 4.8rem;
  }
}
.career-show-4 .sidernav {
  overflow: inherit;
  right: 4rem;
  width: 47%;
  z-index: 2;
  bottom: 8rem;
  position: absolute;
}
.career-show-4 .sidernav .swiper-slide-thumb-active span {
  color: #fff;
  background: #1c5e99;
  border-color: #1c5e99;
}
.career-show-4 .sidernav li {
  padding: 0 1.5rem;
  width: auto !important;
}
.career-show-4 .sidernav li span {
  background: #fff;
  text-align: center;
  min-width: 17rem;
  color: #333;
  cursor: pointer;
  font-size: 1.8rem;
  padding: 0 1.4rem;
  line-height: 5.1rem;
  border-radius: 3rem;
  display: inline-block;
  border: solid 1px #b8b8b8;
  height: 5.3rem;
}
.career-show-4 .swiper-slide-active .pic {
  animation: 2s fadeInLeft2 ease;
}
.career-show-4 .swiper-slide-active .text {
  animation: 2s fadeInRight2 ease;
}
.career-show-4 .list-row ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
.career-show-4 .list-row li {
  display: flex;
  padding: 0 2rem;
  margin-top: 4rem;
  width: 33.333%;
}
.career-show-4 .list-row li .item {
  position: relative;
  padding: 6rem 4rem;
  padding-left: 13rem;
  background: #fff;
  min-width: 100%;
  height: 100%;
  box-shadow: 2px 6px 3rem 0px rgba(52, 104, 167, 0.2);
  border-radius: 6px;
}
.career-show-4 .list-row li .icon {
  top: 6.4rem;
  left: 4rem;
  position: absolute;
}
.career-show-4 .list-row li .icon img {
  transition: all 500ms ease;
  max-height: 5rem;
}
.career-show-4 .list-row li .text .t-1 {
  color: #000;
  font-size: 2.6rem;
  font-family: var(--font-family-H-S-SC-B);
}
.career-show-4 .list-row li .text .t-2 {
  color: #666;
  margin-top: 2rem;
  line-height: 3rem;
}
.career-show-4 .list-row li:hover .icon img {
  transform: scale(1.05);
}
@media (max-width: 1024px) {
  .career-show-4 {
    padding-bottom: 40px;
  }
  .career-show-4 .siderfor .swiper-button-prev,
  .career-show-4 .siderfor .swiper-button-next {
    opacity: 1;
  }
  .career-show-4 .siderfor .item .text {
    padding-top: 20px;
  }
  .career-show-4 .siderfor .item .text .title {
    height: auto;
  }
  .career-show-4 .siderfor .item .text .tishi {
    font-size: 18px;
  }
  .career-show-4 .siderfor .item .text .title {
    margin-top: 20px;
  }
  .career-show-4 .siderfor .item .text .title .num {
    top: 0;
    bottom: auto;
    font-size: 40px;
    line-height: 40px;
  }
  .career-show-4 .siderfor .item .text .title .cn {
    font-size: 18px;
  }
  .career-show-4 .siderfor .item .text .title .en {
    font-size: 12px;
  }
  .career-show-4 .siderbox {
    margin-bottom: 0;
    position: relative;
  }
  .career-show-4 .siderfor .item .pic {
    width: 100%;
    float: none;
  }
  .career-show-4 .siderfor .item .text {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    float: none;
    margin-left: 0;
    margin-top: 0;
    box-shadow: none;
    min-height: auto;
    padding-bottom: 0;
  }
  .career-show-4 .siderfor .swiper-slide {
    padding-right: 0;
  }
  .career-show-4 .sidernav {
    display: none;
    right: auto;
    bottom: auto;
    width: 100%;
    position: relative;
  }
  .career-show-4 .list-row li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .career-show-4 {
    padding: 50px 0 0 0;
  }
}
.message {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.message .index-title {
  text-align: center;
}
.message .biaodan {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message .biaodan li {
  width: 50%;
  padding: 0 5.5rem;
  margin-top: 3rem;
  display: flex;
}
.message .biaodan li .name {
  width: 20%;
  color: #333;
  vertical-align: top;
  padding-top: 2.5rem;
  font-weight: 700;
  font-size: 1.8rem;
}
.message .biaodan li p {
  width: 80%;
}
.message .biaodan li input {
  width: 100%;
  border: 0;
  color: #999;
  line-height: 5rem;
  font-family: "微软雅黑";
  font-size: 1.6rem;
  background: transparent;
  border-bottom: solid 1px #c9c9c9;
}
.message .biaodan .l1 {
  width: 100%;
}
.message .biaodan .l1 .name {
  width: 9.1%;
}
.message .biaodan .l1 p {
  width: 90.9%;
}
.message .biaodan .l2 {
  width: 100%;
  display: block;
}
.message .biaodan .l2 .name,
.message .biaodan .l2 p {
  width: 100%;
}
.message .biaodan .l2 .name {
  display: block;
}
.message .biaodan .l2 textarea {
  width: 100%;
  color: #666;
  height: 19rem;
  padding: 1.5rem;
  font-family: "微软雅黑";
  font-size: 1.6rem;
  border: solid 1px #d2d2d2;
  background: transparent;
}
.message .biaodan .l2 .name {
  padding-top: 0;
  line-height: 5rem;
}
.message .biaodan .l3 {
  width: 100%;
  justify-content: space-between;
}
.message .biaodan .submit {
  color: #fff;
  font-weight: 700;
  border-radius: 3rem;
  height: 5.6rem;
  line-height: 5.6rem;
  min-width: 18rem;
  background: linear-gradient(55deg, #337cd1, #2f308d);
  box-shadow: 0.5rem 0 4.3rem rgba(21, 22, 23, 0.3);
}
@media (max-width: 1024px) {
  .message {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #fff !important;
  }
  .message .biaodan {
    padding-left: 0;
    padding-right: 0;
  }
  .message .biaodan li {
    padding-left: 0;
    padding-right: 0;
    display: block;
    width: 100%;
  }
  .message .biaodan li .name {
    width: 100%;
    font-size: 16px;
  }
  .message .biaodan li p,
  .message .biaodan .l1 p {
    width: 100%;
  }
  .message .biaodan li input {
    font-size: 14px;
    line-height: 40px;
    width: inherit;
  }
  .message .verifyDiv {
    width: 100%;
  }
  .message .btn {
    text-align: center;
    margin-top: 20px;
  }
}
.verifyDiv {
  width: 30%;
  vertical-align: middle;
  position: relative;
}
.verify {
  height: 4.5rem;
  background-color: #e5e5e5;
  position: relative;
}
.verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px #e5e5e5 solid;
  background: #fff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 2rem 2rem;
  z-index: 2;
  cursor: move;
}
.verify .suc-drag-btn {
  background: #fff url(../images/drag-success.svg) no-repeat center center;
  background-size: 2rem 2rem;
}
.verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4.5rem;
  line-height: 4.3rem;
  background-color: #7ac23c;
  color: #fff;
  text-align: center;
}
.verify .fix-tips,
.verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #999;
  z-index: 1;
  line-height: 4.3rem;
  padding-left: 5rem;
  text-align: center;
}
.verify .verify-msg {
  padding-left: 0;
  padding-right: 5rem;
}
.verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
@media (max-width: 520px) {
  .verifyDiv {
    width: 100%;
  }
}
.prev-next {
  margin-top: 6rem;
}
.prev-next .list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
  margin-right: -2rem;
}
.prev-next .prev,
.prev-next .next {
  width: 50%;
  padding-left: 2rem;
  padding-right: 2rem;
}
.prev-next .title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
.prev-next a {
  color: #4b5257;
  font-size: 2.4rem;
}
.prev-next a:hover {
  color: var(--main-color);
}
@media (max-width: 1024px) {
  .prev-next {
    margin-top: 20px;
  }
  .prev-next .prev,
  .prev-next .next {
    width: 100%;
    margin-top: 15px;
  }
  .prev-next a {
    font-size: 16px;
  }
}
.navPhoneBtn {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  padding-top: 7px;
  border: solid 1px #666;
  display: inline-block;
  cursor: pointer;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  margin: 0 auto;
  display: block;
  width: 18px;
  height: 3px;
  margin-bottom: 3px;
  position: relative;
  background: #666;
  border-radius: 0px;
  z-index: 1;
  transform-origin: 20px;
  animation: fadeIn2 1.8s linear infinite;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width 0.5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .navPhoneBtn {
    display: block;
    right: 20px !important;
    margin-right: 0px;
    position: absolute;
  }
}
.common-navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
}
.common-navM .navMCon {
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  background-color: #fff;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 9999999;
  top: 0;
  bottom: 0;
  right: auto;
  right: -100%;
  transition: all 0.5s;
}
.common-navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
}
.common-navM.open .transparent {
  display: block;
}
.common-navM.open .closeBtn {
  display: block;
}
.common-navM.open .navMCon {
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM.open .navMCon {
    left: auto;
    right: 0;
  }
}
.common-navM .mSearch {
  margin-top: 40px;
}
.common-navM .closeBtn {
  opacity: 1 !important;
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #666 !important;
  position: absolute;
  z-index: 999;
  right: 20px;
  top: 20px;
}
.common-navM .closeBtn:before,
.common-navM .closeBtn:after {
  content: "";
  display: block;
  background: #666;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.common-navM .closeBtn:before {
  width: 20px;
  height: 1px;
}
.common-navM .closeBtn:after {
  width: 1px;
  height: 20px;
}
.common-navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.common-navM .navMWrap > .list {
  padding-top: 10rem;
}
.common-navM .navMWrap > .list em {
  font-style: initial;
}
.common-navM .navMWrap > .list .title {
  padding: 5px 0 5px 10px;
  text-indent: 0;
  position: relative;
}
.common-navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: rotate(45deg);
}
.common-navM .navMWrap > .list .title .icon:before,
.common-navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
  transition: all 0.3s ease;
}
.common-navM .navMWrap > .list .title .icon:before {
  height: 10px;
  width: 10px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
}
.common-navM .navMWrap > .list .title em {
  font-style: initial;
}
.common-navM .navMWrap > .list .has .title .icon {
  display: block;
}
.common-navM .navMWrap > .list .active > .title .icon:before {
  transform: rotate(90deg);
}
.common-navM .navMWrap > .list > li > .title {
  font-size: 18px;
}
.common-navM .navMWrap > .list > li > .title a {
  color: #333;
}
.common-navM .navMWrap > .list > li > .child > .list > li {
  text-indent: 15px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .child .title {
  padding-left: 20px;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title {
  padding-left: 20px;
  position: relative;
}
.common-navM .navMWrap > .list > li > .child > .list > li > .title:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
  position: absolute;
  top: 12px !important;
  left: 10px;
}
.common-navM .navMWrap > .list .tb {
  width: 20px;
  height: 20px;
  display: inline-flex;
  position: absolute;
  top: 7px;
  left: 0;
}
@media (max-width: 1024px) {
  .common-navM .navMWrap > .list {
    padding-top: 20px;
  }
}
.common-navM .child {
  padding: 0 0 20px 0;
  display: none;
  position: relative;
}
.common-navM .child a {
  font-size: 15px;
  color: #666;
  display: block;
  line-height: 20px;
  padding: 5px 0;
  transition: all 0.5s;
  position: relative;
}
.common-navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.common-navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  display: none;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.common-navM .mSearch .btn {
  width: 26px;
  height: 26px;
  font-size: 0;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.common-navM .mSearch .btn .icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: top;
}
.common-navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 40px 5px 15px;
  border-radius: 2px;
  font-size: 14px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
@media (max-width: 1024px) {
  .common-navM .mSearch {
    display: flex;
  }
}
.common-navM .other {
  padding: 10px;
}
.common-navM .read {
  padding-top: 10px;
  padding-bottom: 10px;
}
.common-navM .read .btn-1 {
  display: inline-flex;
  align-items: center;
  padding: 0 5px;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(to right, #bf2d32, #a61f24);
  color: #fff;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.common-navM .read .btn-1 .icon-1 {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.common-navM .read .btn-1 .icon-2 {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #fff url(../images/arrow-right-1.png) no-repeat center center;
  background-size: 20px;
  margin-left: 20px;
}
.common-navM .list > li > .child > .list {
  padding-top: 20px;
  font-family: var(--font-famil-2);
}
.common-navM .list > li > .child > .list > li > .title {
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 20px;
}
.common-navM .list > li > .child > .list > li > .title::before {
  top: 18px !important;
}
.common-navM .languageBtn {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0;
  display: none !important;
}
.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;
  }
}
.map-warp {
  padding-top: 13rem;
  padding-bottom: 6rem;
}
.map-warp .txt-1 {
  color: #333;
  font-weight: 700;
  padding: 2rem 0 0 0;
  display: block;
}
.map-warp .child {
  padding-top: 1rem;
}
.map-warp .child ul {
  display: flex;
  flex-wrap: wrap;
}
.map-warp .child li {
  padding-right: 1.5rem;
}
@media (max-width: 1024px) {
  .map-warp {
    padding-top: 30px;
  }
}
