@charset "utf-8";
:root {
  --color: #005CE6;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #bd000c;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font72 {
  font-size: 0.72rem;
}
.font60 {
  font-size: 0.6rem;
}
.font48 {
  font-size: 0.48rem;
}
.font36 {
  font-size: 0.36rem;
}
.font30 {
  font-size: 0.3rem;
}
.font24 {
  font-size: 24px;
}
.font20 {
  font-size: 20px;
}
.font18 {
  font-size: 18px;
}
.font16 {
  font-size: 16px;
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
  .font18 {
    font-size: 16px;
  }
  .font20 {
    font-size: 18px;
  }
  .font24 {
    font-size: 20px;
  }
  .font30 {
    font-size: 0.32rem;
  }
}
@media (max-width: 767px) {
  .font14 {
    font-size: 0.24rem;
  }
  .font16 {
    font-size: 0.28rem;
  }
  .font18 {
    font-size: 0.3rem;
  }
  .font20 {
    font-size: 0.34rem;
  }
  .font24 {
    font-size: 0.34rem;
  }
  .font30 {
    font-size: 0.36rem;
  }
  .font36 {
    font-size: 0.38rem;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #bd000c;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  min-width: 1rem;
}
.x-public-a {
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  padding: 0.14rem 0.26rem;
  transition: 0.4s ease-in-out;
}
.x-public-a:hover {
  border-color: #bd000c;
  background-color: #bd000c;
}
.x-public-a:hover span {
  color: #fff;
}
.x-public-a:hover i {
  transform: translateX(0.08rem);
}
.x-public-a:hover i svg path {
  fill: #fff;
}
.x-public-a span {
  color: #333;
  display: inline-block;
  margin-right: 0.32rem;
  transition: 0.4s ease-in-out;
}
.x-public-a i {
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: 0.4s ease-in-out;
}
.x-public-a i svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.x-public-a i svg path {
  fill: #333333;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #bd000c;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #bd000c;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #bd000c;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 0.8rem;
}
@media (max-width: 1580px) {
  #c-placeholder {
    height: 1.2rem !important;
  }
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem !important;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 0.8rem;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
@media (max-width: 1580px) {
  #c-header {
    line-height: 1.2rem;
  }
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1800px;
  width: 94%;
}
@media (max-width: 1580px) {
  #c-header .container {
    height: 1.2rem;
  }
}
@media (max-width: 991px) {
  #c-header .container {
    height: 1.2rem;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -0.82rem;
}
@media (max-width: 1580px) {
  #c-header.c-head-move {
    top: -1.22rem;
  }
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.22rem;
  }
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 0.38rem;
}
@media (max-width: 1580px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.64rem;
}
@media (max-width: 1580px) {
  #c-header .c-nav > li {
    margin-right: 0.3rem;
  }
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 0.4rem;
  }
}
#c-header .c-nav > li.on2 {
  position: initial;
}
#c-header .c-nav > li.on2 .x-xlg {
  display: none;
  position: absolute;
  top: 99%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #dddddd;
  z-index: 5;
  padding: 0.6rem 1.6rem 0.6rem 2.6rem;
  text-align: left;
  line-height: initial;
}
@media (max-width: 1260px) {
  #c-header .c-nav > li.on2 .x-xlg {
    padding-left: 0.6rem;
  }
}
#c-header .c-nav > li.on2 .x-gyl {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
#c-header .c-nav > li.on2 .x-gyl .x-le {
  width: 60%;
  display: flex;
  justify-content: space-between;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text {
  width: 55.55%;
  padding-right: 1.1rem;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text .x-title2 {
  color: #2d2d2d;
  font-weight: bold;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text .x-p {
  color: #666;
  line-height: 1.7;
  margin: 0.15rem 0 0.4rem;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a {
  display: inline-flex;
  align-items: center;
  color: #333;
  font-weight: bold;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a:hover {
  color: #bd000c;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a:hover i {
  transform: translateX(0.1rem);
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a:hover i svg path {
  fill: #bd000c;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a i {
  width: 10px;
  height: 10px;
  margin-left: 0.1rem;
  display: block;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a i svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-text a i svg path {
  fill: #333;
  opacity: 1;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa {
  width: 44.45%;
  border-left: 1px solid #dddddd;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a {
  padding-left: 0.2rem;
  display: block;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 0.3rem;
  position: relative;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a:hover,
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a.on {
  color: #bd000c;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a:hover::before,
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a.on::before {
  height: 100%;
}
#c-header .c-nav > li.on2 .x-gyl .x-le .x-aa a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #bd000c;
  width: 2px;
  height: 0;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav > li.on2 .x-gyl .x-ri {
  width: 40%;
}
#c-header .c-nav > li.on2 .x-gyl .x-ri .public-img {
  display: none;
}
#c-header .c-nav > li.on2 .x-gyl .x-ri .public-img.on {
  display: block;
}
#c-header .c-nav > li.on2 .x-gyl .x-ri .public-img::before {
  padding-top: 44%;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-nav > li > .c-title-box img path,
#c-header .c-nav > li > .c-title-box svg path {
  fill: #fff;
  transition: all 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #bd000c;
  transition: 0.4s;
}
#c-header .c-nav li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav ul {
  position: absolute;
  top: 99%;
  left: 50%;
  display: none;
  min-width: 1.5rem;
  line-height: 0.5rem;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#c-header .c-nav ul li {
  border-bottom: 1px solid #eee;
}
#c-header .c-nav ul li:last-child {
  border: 0;
}
#c-header .c-nav ul li a {
  color: #333;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: #bd000c;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg path,
#c-header .c-nav li:hover > .c-title-box svg path {
  fill: #bd000c !important;
}
#c-header.c-style2 .c-nav li .c-title-box svg path {
  fill: #333;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li.x-yy {
  position: relative;
  padding: 0.4rem 0.5rem 0 0.5rem;
  border-bottom: none;
}
#c-header .c-nav2 li.x-yy .x-zw {
  line-height: initial;
  display: flex;
  align-items: center;
}
#c-header .c-nav2 li.x-yy .x-zw .x-dq {
  width: 18px;
  height: 18px;
}
#c-header .c-nav2 li.x-yy .x-zw .x-dq svg {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-nav2 li.x-yy .x-zw .x-dq svg path {
  fill: #5c5c5c;
  opacity: 1;
}
#c-header .c-nav2 li.x-yy .x-zw span {
  display: inline-block;
  margin-left: 0.2rem;
}
#c-header .c-nav2 li.x-yy .x-zw i {
  width: 10px;
  height: 10px;
  margin-left: 0.1rem;
}
#c-header .c-nav2 li.x-yy .x-zw i svg {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-nav2 li.x-yy .x-zw i svg path {
  fill: #5c5c5c;
  opacity: 1;
}
#c-header .c-nav2 li.x-yy .x-xl {
  position: absolute;
  left: 1.1rem;
  top: 100%;
  background-color: #fff;
  z-index: 2;
  width: auto;
  padding: 0.05rem 0;
  display: none;
}
#c-header .c-nav2 li.x-yy .x-xl a {
  display: block;
  line-height: 1;
  color: #333;
  margin: 0.2rem 0;
  transition: 0.4s ease-in-out;
}
#c-header .c-nav2 li.x-yy .x-xl a:hover {
  color: #bd000c;
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box img path,
#c-header .c-nav2 li .c-title-box svg path {
  fill: #333;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #bd000c;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  align-items: center;
}
#c-header .c-gn form {
  padding-left: 0.8rem;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1260px) {
  #c-header .c-gn form {
    display: none;
  }
}
#c-header .c-gn form img,
#c-header .c-gn form svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #c-header .c-gn form img,
  #c-header .c-gn form svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn form img path,
#c-header .c-gn form svg path {
  fill: #fff;
}
#c-header .c-gn form:hover > svg path {
  fill: #bd000c !important;
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 106%;
  right: 0;
  display: none;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#c-header .c-gn form .c-box input {
  float: left;
  padding: 0 0.15rem;
  width: -webkit-calc(30%);
  width: calc(100% - 70px);
  height: 50px;
}
#c-header .c-gn form .c-box button {
  float: left;
  width: 70px;
  height: 50px;
  color: #fff;
  background: #bd000c;
  cursor: pointer;
}
#c-header .c-gn .x-yy {
  margin-left: 0.55rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  #c-header .c-gn .x-yy {
    margin-right: 0.4rem;
    display: none;
  }
}
#c-header .c-gn .x-yy .x-zw {
  display: flex;
  align-items: center;
}
#c-header .c-gn .x-yy .x-zw .x-dq {
  width: 18px;
  height: 18px;
}
#c-header .c-gn .x-yy .x-zw .x-dq svg {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-gn .x-yy .x-zw .x-dq svg path {
  opacity: 0.8;
}
#c-header .c-gn .x-yy .x-zw span {
  display: inline-block;
  margin: 0 0.1rem;
}
#c-header .c-gn .x-yy .x-zw i {
  width: 10px;
  height: 10px;
}
#c-header .c-gn .x-yy .x-zw i svg {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-gn .x-yy .x-xl {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0.05rem 0;
  display: none;
}
#c-header .c-gn .x-yy .x-xl a {
  display: block;
  line-height: 1;
  color: #333;
  margin: 0.08rem 0;
  transition: 0.4s ease-in-out;
}
#c-header .c-gn .x-yy .x-xl a:hover {
  color: #bd000c;
}
#c-header.c-style2 .c-gn form > svg path {
  fill: #333;
}
#c-header.c-style2 .c-gn .x-yy .x-zw .x-dq svg path {
  fill: #5c5c5c;
  opacity: 1;
}
#c-header.c-style2 .c-gn .x-yy .x-zw i svg path {
  fill: #5c5c5c;
  opacity: 1;
}
/*首页轮播图*/
.c-home-banner .swiper-slide {
  overflow: hidden;
  position: relative;
}
.c-home-banner .swiper-slide:nth-of-type(1)::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
.c-home-banner .swiper-slide.on .c-pc,
.c-home-banner .swiper-slide.on .c-mb {
  transform: scale(1);
}
.c-home-banner .swiper-slide.on .x-sj img:nth-of-type(1) {
  animation: xsss 0s 1 linear forwards;
  animation-delay: 1s;
}
.c-home-banner .swiper-slide.on .x-sj img:nth-of-type(2) {
  animation: xsss 0s 1 linear forwards;
  animation-delay: 2s;
}
.c-home-banner .swiper-slide.on .x-sj img:nth-of-type(3) {
  animation: xsss 0s 1 linear forwards;
  animation-delay: 3s;
}
.c-home-banner .swiper-slide.on .x-sj img:nth-of-type(4) {
  animation: xsss 0s 1 linear forwards;
  animation-delay: 4s;
}
.c-home-banner .swiper-slide.on .x-sj img:nth-of-type(5) {
  animation: xsss 0s 1 linear forwards;
  animation-delay: 5s;
}
.c-home-banner .swiper-slide .c-pc,
.c-home-banner .swiper-slide .c-mb {
  width: 100%;
  object-fit: cover;
  transform: scale(1.2);
  transition: 6.5s all;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide .c-pc,
  .c-home-banner .swiper-slide .c-mb {
    height: 4.2rem;
  }
}
.c-home-banner .swiper-slide .c-mb {
  display: none;
}
@media (max-width: 991px) {
  .c-home-banner .swiper-slide .c-mb {
    display: block;
  }
}
@media (max-width: 991px) {
  .c-home-banner .swiper-slide .c-pc {
    display: none;
  }
}
.c-home-banner .swiper-slide video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide video {
    display: none;
  }
}
.c-home-banner .swiper-slide .x-text {
  position: absolute;
  top: 34%;
  left: 1.6rem;
  z-index: 10;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide .x-text {
    left: 0.4rem;
  }
}
.c-home-banner .swiper-slide .x-text .x-title {
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide .x-text .x-title {
    font-size: 0.5rem;
  }
}
.c-home-banner .swiper-slide .x-text .x-title span {
  position: relative;
  top: -0.32rem;
  font-size: 0.46rem;
}
.c-home-banner .swiper-slide .x-sj {
  display: none;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide .x-sj {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
  }
}
.c-home-banner .swiper-slide .x-sj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}
.c-home-banner .swiper-slide .x-sj img:nth-of-type(1) {
  z-index: 7;
}
.c-home-banner .swiper-slide .x-bf {
  display: none;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-slide .x-bf {
    display: block;
    position: absolute;
    z-index: 2;
    width: 0.8rem;
    height: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40%;
    display: none;
  }
}
.c-home-banner .swiper-slide .x-bf svg {
  width: 100%;
  height: 100%;
}
.c-home-banner .x-but {
  position: absolute;
  top: 54%;
  left: 1.6rem;
  z-index: 6;
  display: flex;
}
@media (max-width: 767px) {
  .c-home-banner .x-but {
    display: none;
  }
}
.c-home-banner .x-but .swiPrev1 {
  width: 0.6rem;
  height: 0.6rem;
  border: 0.02rem solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 100%;
  transition: 0.4s ease-in-out;
  margin-right: 0.2rem;
}
.c-home-banner .x-but .swiPrev1:hover {
  border-color: #fff;
}
.c-home-banner .x-but .swiPrev1:hover svg path {
  fill: #fff;
  opacity: 1;
}
.c-home-banner .x-but .swiPrev1 svg {
  transform: rotate(90deg);
  width: 0.16rem;
  height: 0.16rem;
}
.c-home-banner .x-but .swiPrev1 svg path {
  fill: rgba(255, 255, 255, 0.8);
  transition: 0.4s ease-in-out;
  opacity: 0.6;
}
.c-home-banner .x-but .swiNext1 {
  width: 0.6rem;
  height: 0.6rem;
  border: 0.02rem solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 100%;
  transition: 0.4s ease-in-out;
}
.c-home-banner .x-but .swiNext1:hover {
  border-color: #fff;
}
.c-home-banner .x-but .swiNext1:hover svg path {
  fill: #fff;
  opacity: 1;
}
.c-home-banner .x-but .swiNext1 svg {
  transform: rotate(-90deg);
  width: 0.16rem;
  height: 0.16rem;
}
.c-home-banner .x-but .swiNext1 svg path {
  fill: rgba(255, 255, 255, 0.8);
  transition: 0.4s ease-in-out;
  opacity: 0.6;
}
.c-home-banner .swiper-pagination1 {
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-start;
  z-index: 5;
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
}
@media (max-width: 1260px) {
  .c-home-banner .swiper-pagination1 {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .c-home-banner .swiper-pagination1 {
    bottom: 0.3rem;
  }
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet {
  width: 32.85714286% !important;
  height: auto;
  border-radius: initial;
  margin: 0;
  background-color: transparent;
  opacity: 1;
  position: relative;
  flex-shrink: 0;
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet.on::after {
  opacity: 1;
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1260px) {
  .c-home-banner .swiper-pagination1 .swiper-pagination-bullet::before {
    left: -5px;
  }
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet span {
  display: block;
  width: 0;
  border-radius: initial;
  height: 3px;
  margin: 0;
  background-color: #fff;
  opacity: 1;
  position: relative;
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.c-home-banner .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  opacity: 1;
  animation: sw_pa2 5s linear;
}
@media (max-width: 767px) {
  .c-home-banner .swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active span {
    animation: sw_pa2 8.1s linear;
  }
}
.c-home-banner .x-xt {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  z-index: 4;
}
@media (max-width: 767px) {
  .c-home-banner .x-xt {
    bottom: 0.3rem;
  }
}
.c-home-banner .x-xt::before {
  content: "";
  width: calc((100% - 1400px)/2);
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  margin-top: -2px;
}
@media (max-width: 1640px) {
  .c-home-banner .x-xt::before {
    width: 7.5%;
  }
}
@media (max-width: 1260px) {
  .c-home-banner .x-xt::before {
    width: 5%;
  }
}
@keyframes sw_pa2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes xsss {
  0% {
    z-index: 7;
  }
  100% {
    z-index: 8;
  }
}
/* 底部 */
#c-footer {
  color: #fff;
  background-color: #062245;
  padding-top: 1rem;
  position: relative;
  overflow: hidden;
}
#c-footer .x-bj {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
#c-footer .x-bj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#c-footer a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}
#c-footer a:hover {
  color: #bd000c;
}
#c-footer .x-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
}
#c-footer .x-top a {
  display: inline-block;
  width: auto;
  height: 0.54rem;
}
#c-footer .x-top a img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
#c-footer .c-top-box {
  padding: 0.7rem 0 0.35rem;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  #c-footer .c-top-box {
    padding: 0.2rem 0 0.2rem;
  }
}
#c-footer .c-top-box .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#c-footer .c-top-box .container .x-le {
  width: 57.14%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .x-le {
    width: 100%;
  }
}
#c-footer .c-top-box .container .x-le .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-title-box {
    padding: 0.2rem 0;
    border-bottom: 1px solid #666;
  }
}
#c-footer .c-top-box .container .x-le .c-title-box .c-title {
  color: #fff;
}
#c-footer .c-top-box .container .x-le .c-title-box a {
  color: #fff;
}
#c-footer .c-top-box .container .x-le .c-title-box a:hover {
  color: #bd000c;
}
#c-footer .c-top-box .container .x-le .c-title-box img,
#c-footer .c-top-box .container .x-le .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 0.3rem;
  height: 0.3rem;
}
#c-footer .c-top-box .container .x-le .c-title-box img path,
#c-footer .c-top-box .container .x-le .c-title-box svg path {
  fill: #fff;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-title-box img,
  #c-footer .c-top-box .container .x-le .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container .x-le .c-list-box {
  margin-right: 0.8rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box {
    margin-right: 0;
  }
}
#c-footer .c-top-box .container .x-le .c-list-box:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .x-le .c-list-box .c-list li {
  padding-bottom: 0.1rem;
}
#c-footer .c-top-box .container .x-le .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .x-le .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .x-le .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .x-le .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container .x-le .x-on {
  margin-left: 0.55rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-title-box {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-title-box a {
    padding: 0.2rem 0;
    width: 100%;
    display: block;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-title-box svg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-list {
    padding-top: 0;
    display: block !important;
  }
}
#c-footer .c-top-box .container .x-le .x-on .c-list li:first-child a {
  color: #fff;
}
#c-footer .c-top-box .container .x-le .x-on .c-list li:nth-of-type(n+2) a {
  font-size: 16px;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container .x-le .x-on .c-list li:nth-of-type(n+2) a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-list li:nth-of-type(n+2) a {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-list li {
    padding: 0.2rem 0;
    border-bottom: 1px solid #666;
  }
  #c-footer .c-top-box .container .x-le .x-on .c-list li:last-child {
    padding: 0.2rem 0;
  }
}
#c-footer .c-top-box .container .x-le .x-on .c-list li a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-le .x-on .c-list li a {
    color: #fff;
  }
}
#c-footer .c-top-box .container .x-le .x-on .c-list li a:hover {
  color: #bd000c;
}
#c-footer .c-top-box .container .x-ri {
  width: 42.86%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .x-ri {
    width: 100%;
    margin-top: 0.4rem;
  }
}
#c-footer .c-top-box .container .x-ri .x-text {
  width: 80%;
  padding-right: 1.15rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-ri .x-text {
    width: 100%;
    padding-right: 0;
  }
}
#c-footer .c-top-box .container .x-ri .x-text .x-title {
  margin-bottom: 0.25rem;
}
#c-footer .c-top-box .container .x-ri .x-text .x-p {
  display: flex;
  margin-bottom: 0.05rem;
}
#c-footer .c-top-box .container .x-ri .x-text .x-p span {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}
#c-footer .c-top-box .container .x-ri .x-text .x-p p {
  color: rgba(255, 255, 255, 0.5);
}
#c-footer .c-top-box .container .x-ri .x-wx {
  width: 20%;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-ri .x-wx {
    width: 100%;
    display: flex;
    margin-top: 0.2rem;
  }
}
#c-footer .c-top-box .container .x-ri .x-wx .x-img {
  width: 100%;
  text-align: center;
  margin-bottom: 0.15rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-ri .x-wx .x-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#c-footer .c-top-box .container .x-ri .x-wx .x-img:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-ri .x-wx .x-img:last-child {
    margin-bottom: 0.15rem;
  }
}
#c-footer .c-top-box .container .x-ri .x-wx .x-img img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container .x-ri .x-wx .x-img img {
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .x-ri .x-wx .x-img img {
    width: 1rem;
    height: 1rem;
  }
}
#c-footer .c-top-box .container .x-ri .x-wx .x-img span {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin-top: 0.1rem;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container .x-ri .x-wx .x-img span {
    font-size: 12px;
    white-space: nowrap;
  }
}
#c-footer .c-top-box .x-yqlj {
  justify-content: flex-start;
  margin-top: 0.4rem;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .x-yqlj {
    display: none;
  }
}
#c-footer .c-top-box .x-yqlj span {
  color: #fff;
}
#c-footer .c-top-box .x-yqlj a {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin-left: 0.4rem;
  margin-top: 0.02rem;
}
#c-footer .c-top-box .x-yqlj a:hover {
  color: #bd000c;
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7f7f7f;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.2rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container a {
  color: #7f7f7f;
  margin-left: 0.2rem;
}
#c-footer .c-bottom-box .container a:hover {
  color: #bd000c;
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-copyright {
    width: 100%;
  }
}
@media (max-width: 991px) {
  #c-footer .c-bottom-box .container .c-support {
    width: 100%;
  }
  #c-footer .c-bottom-box .container .c-support a:first-child {
    margin-left: 0;
  }
}
.x-index1 {
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .x-index1 {
    padding-top: 1.2rem;
  }
}
@media (max-width: 767px) {
  .x-index1 .x-con {
    width: 90%;
    margin: 0 auto;
  }
}
.x-index1 .x-con .x-top {
  text-align: center;
  padding: 0 0.4rem;
}
.x-index1 .x-con .x-top .x-title {
  font-weight: bold;
}
.x-index1 .x-con .x-top .x-p {
  margin-top: 0.1rem;
}
.x-index1 .x-con .x-xia {
  margin-top: 0.65rem;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia {
    margin-top: 0.4rem;
  }
}
.x-index1 .x-con .x-xia ul {
  display: flex;
  justify-content: space-between;
  height: 8rem;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul {
    flex-wrap: wrap;
    height: auto;
  }
}
.x-index1 .x-con .x-xia ul li {
  width: 50%;
  background-color: #f4f6f8;
  margin-right: 2px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li {
    width: 100% !important;
    margin-bottom: 0.4rem;
    padding: 0.8rem 0 1.2rem;
  }
}
.x-index1 .x-con .x-xia ul li:last-child {
  margin-right: 0;
}
.x-index1 .x-con .x-xia ul li.on {
  width: 8.8rem;
  flex-shrink: 0;
}
.x-index1 .x-con .x-xia ul li.on a .x-sp {
  display: none;
}
.x-index1 .x-con .x-xia ul li.on a .x-title2 {
  font-size: 0.36rem;
}
.x-index1 .x-con .x-xia ul li.on a .x-title2 br {
  display: none;
}
.x-index1 .x-con .x-xia ul li.on a .x-p {
  display: block;
}
.x-index1 .x-con .x-xia ul li.on a .x-box span {
  width: 65px;
  opacity: 1;
  margin-right: 0.15rem;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li.on a .x-box span {
    margin-right: 0.1rem;
    width: auto;
  }
}
.x-index1 .x-con .x-xia ul li.on a .x-box i svg path {
  fill: #fff;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj {
  transform: translateX(-50%) scale(1);
  opacity: 0.3;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg {
  width: 100%;
  height: 100%;
  transform: scale(0);
  animation-delay: 0s;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg:nth-of-type(1) {
  transform: translate(-50%, -50%) scale(1);
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg:nth-of-type(2) {
  animation: yq1 0.9s linear infinite;
  animation-delay: 0s;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg:nth-of-type(3) {
  animation: yq1 0.9s linear infinite;
  opacity: 1;
  animation-delay: 0.8s;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg:nth-of-type(4) {
  animation: yq1 0.9s linear infinite;
  opacity: 1;
  animation-delay: 1.5s;
}
.x-index1 .x-con .x-xia ul li.on a .x-bj svg:nth-of-type(5) {
  animation: yq1 0.9s linear infinite;
  opacity: 1;
  animation-delay: 2.4s;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li.on a .x-bj svg {
    animation: initial !important;
    transform: translate(-50%, -50%) scale(1);
    width: 70%;
    height: 70%;
  }
}
.x-index1 .x-con .x-xia ul li.on a .x-bj2 {
  opacity: 1;
  top: 0;
}
.x-index1 .x-con .x-xia ul li a {
  display: block;
  text-align: center;
  padding: 1rem 0.1rem 0 0.1rem;
  height: 100%;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a {
    padding-top: 0;
  }
}
.x-index1 .x-con .x-xia ul li a .x-sp {
  color: rgba(51, 51, 51, 0.3);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-sp {
    display: none;
  }
}
.x-index1 .x-con .x-xia ul li a .x-title2 {
  color: #333;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  z-index: 5;
}
@media (max-width: 1260px) {
  .x-index1 .x-con .x-xia ul li a .x-title2 {
    font-size: 0.28rem;
  }
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-title2 {
    font-size: 0.36rem;
  }
  .x-index1 .x-con .x-xia ul li a .x-title2 br {
    display: none;
  }
}
.x-index1 .x-con .x-xia ul li a .x-p {
  margin-top: 0.2rem;
  color: #333333;
  padding: 0 2.2rem;
  display: none;
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-p {
    display: block;
    padding: 0 0.4rem;
  }
}
.x-index1 .x-con .x-xia ul li a .x-box {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 21.5%;
  transform: translateX(-50%);
  z-index: 3;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-box {
    bottom: 15.5%;
    display: none;
  }
}
.x-index1 .x-con .x-xia ul li a .x-box span {
  color: #fff;
  display: inline-block;
  opacity: 0;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-box span {
    opacity: 1;
    width: auto;
    margin-right: 0.05rem;
  }
}
.x-index1 .x-con .x-xia ul li a .x-box i {
  width: 10px;
  height: 10px;
  display: block;
}
.x-index1 .x-con .x-xia ul li a .x-box i svg {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.x-index1 .x-con .x-xia ul li a .x-box i svg path {
  fill: #bd000c;
  opacity: 1;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-box i svg path {
    fill: #fff;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj {
  width: 6.38rem;
  height: 6.38rem;
  position: absolute;
  bottom: -17%;
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 2;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-bj {
    bottom: -91%;
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj svg {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
}
.x-index1 .x-con .x-xia ul li a .x-bj svg:nth-of-type(1) {
  opacity: 1;
}
.x-index1 .x-con .x-xia ul li a .x-bj svg:nth-of-type(4) {
  opacity: 0;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-bj svg:nth-of-type(4) {
    opacity: 1;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj svg:nth-of-type(5) {
  opacity: 0;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-bj svg:nth-of-type(5) {
    opacity: 1;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj svg path {
  fill: #f2eff1;
  opacity: 1;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-bj svg path {
    fill: #bd000c;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj2 {
  position: absolute;
  left: 0;
  top: 5rem;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.4s all;
  z-index: 1;
}
@media (max-width: 767px) {
  .x-index1 .x-con .x-xia ul li a .x-bj2 {
    display: none;
  }
}
.x-index1 .x-con .x-xia ul li a .x-bj2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    -ms-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
@keyframes zq {
  0% {
    transform: translateX(-50%) scale(1) rotate(0);
  }
  100% {
    transform: translateX(-50%) scale(1) rotate(360deg);
  }
}
@keyframes yq1 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.x-index2 {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1.4rem 0 1.4rem;
  position: relative;
}
@media (max-width: 767px) {
  .x-index2 {
    padding: 0.8rem 0 1.2rem;
  }
}
.x-index2 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.x-index2 .container .x-left {
  width: 32.85%;
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}
@media (max-width: 767px) {
  .x-index2 .container .x-left {
    width: 100%;
    position: initial;
  }
}
.x-index2 .container .x-left .x-title {
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.x-index2 .container .x-left .x-p {
  margin: 0.2rem 0 0.7rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .x-index2 .container .x-left .x-p {
    margin-bottom: 0.4rem;
    padding-right: 0.3rem;
  }
}
.x-index2 .container .x-left .x-public-a {
  position: relative;
  z-index: 2;
}
.x-index2 .container .x-left .x-img {
  width: 8.4rem;
  height: 4rem;
  position: absolute;
  left: -14vw;
  /* bottom: 0; */
  top: 19.4vw;
}
.x-index2 .container .x-left .x-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x-index2 .container .x-right {
  width: 52.85%;
}
@media (max-width: 767px) {
  .x-index2 .container .x-right {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.x-index2 .container .x-right ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.x-index2 .container .x-right ul li {
  width: 47.29%;
  height: 4.5rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.6rem;
  display: flex;
}
@media (max-width: 1580px) {
  .x-index2 .container .x-right ul li {
    height: 5.5rem;
  }
}
.x-index2 .container .x-right ul li:nth-of-type(2n) {
  transform: translateY(1rem);
}
@media (max-width: 767px) {
  .x-index2 .container .x-right ul li:nth-of-type(2n) {
    transform: translateY(0);
  }
}
.x-index2 .container .x-right ul li:hover .x-li,
.x-index2 .container .x-right ul li.on .x-li {
  border-top-left-radius: 500px;
  border-top-right-radius: 500px;
  border-color: #fff;
}
@media (max-width: 1580px) {
  .x-index2 .container .x-right ul li:hover .x-li,
  .x-index2 .container .x-right ul li.on .x-li {
    padding-top: 1.2rem;
  }
}
.x-index2 .container .x-right ul li:hover .x-yc,
.x-index2 .container .x-right ul li.on .x-yc {
  display: none;
}
.x-index2 .container .x-right ul li:hover .x-box,
.x-index2 .container .x-right ul li.on .x-box {
  opacity: 1;
  margin-top: 0.1rem;
  height: auto;
  overflow: initial;
}
.x-index2 .container .x-right ul li:hover .x-bj,
.x-index2 .container .x-right ul li.on .x-bj {
  bottom: 0;
  opacity: 1;
}
.x-index2 .container .x-right ul li .x-li {
  width: 100%;
  height: 100%;
  padding: 0.8rem 0.15rem 0.2rem;
  transition: 0.4s all;
  background-color: #f4f6f8;
}
.x-index2 .container .x-right ul li .x-yc {
  text-align: center;
  position: relative;
  z-index: 2;
}
.x-index2 .container .x-right ul li .x-yc .x-icon {
  width: 1.1rem;
  height: 1.2rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .x-index2 .container .x-right ul li .x-yc .x-icon {
    width: 1.4rem;
    height: 1.6rem;
  }
}
.x-index2 .container .x-right ul li .x-yc .x-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .x-index2 .container .x-right ul li .x-yc .x-title {
    font-size: 0.4rem;
  }
}
.x-index2 .container .x-right ul li .x-box {
  opacity: 0;
  position: relative;
  z-index: 2;
  margin-top: 0.4rem;
  transition: 0.4s all;
  height: 0;
  overflow: hidden;
}
.x-index2 .container .x-right ul li .x-box .x-title {
  font-weight: bold;
  padding-left: 0.25rem;
}
.x-index2 .container .x-right ul li .x-box .x-p {
  margin-top: 0.2rem;
}
.x-index2 .container .x-right ul li .x-box .x-p p {
  margin-bottom: 0.15rem;
  display: flex;
}
.x-index2 .container .x-right ul li .x-box .x-p p i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #c6c7c8;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .x-index2 .container .x-right ul li .x-box .x-p p i {
    margin-top: 0.15rem;
  }
}
.x-index2 .container .x-right ul li .x-box .x-p p span {
  display: inline-block;
  padding-left: 0.12rem;
}
.x-index2 .container .x-right ul li .x-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.35rem;
  z-index: 2;
}
.x-index2 .container .x-right ul li .x-bj {
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  z-index: 1;
  transition: 0.4s all;
  width: 100%;
  height: 2.46rem;
  opacity: 0;
}
.x-index2 .container .x-right ul li .x-bj img {
  width: 100%;
  height: 100%;
}
.x-ind3 {
  height: 240vh;
  width: 100%;
}
@media (max-width: 767px) {
}
.x-ind3 .x-con {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
}
.x-ind3 .x-con .x-img2 {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
}
@media (max-width: 767px) {
}
.x-ind3 .x-con .x-img2.on .x-im2 {
  transition: 0.4s all;
  opacity: 0;
}
.x-ind3 .x-con .x-img2 .x-im2 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x-ind3 .x-con .x-img2 .x-xia {
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  text-align: center;
}
.x-ind3 .x-con .x-img2 .x-xia .x-title {
  font-weight: bold;
}
.x-ind3 .x-con .x-img2 .x-xia .x-ic svg {
  display: block;
  width: 0.24rem;
  height: 0.24rem;
}
.x-ind3 .x-con .x-img2 .x-xia p {
  font-size: 14px;
  color: #999999;
  margin-top: 0.1rem;
}
.x-ind3 .x-index3 {
  position: relative;
  height: 100%;
}
.x-ind3 .x-index3 .x-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.x-ind3 .x-index3 .x-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.x-ind3 .x-index3 .container {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  padding-top: 3.4rem;
  opacity: 0;
}
@media (max-width: 1900px) {
  .x-ind3 .x-index3 .container {
    padding-top: 3rem;
  }
}
@media (max-width: 1580px) {
  .x-ind3 .x-index3 .container {
    padding-top: 4.6rem;
  }
}
@media (max-width: 991px) {
  .x-ind3 .x-index3 .container {
    padding-top: 6rem;
  }
}
@media (max-width: 767px) {
  .x-ind3 .x-index3 .container {
    padding-top: 2rem;
    display: block;
  }
}
.x-ind3 .x-index3 .container .x-left {
  width: 37.85%;
}
@media (max-width: 767px) {
  .x-ind3 .x-index3 .container .x-left {
    width: 100%;
  }
}
.x-ind3 .x-index3 .container .x-left .x-title {
  font-weight: bold;
  color: #fff;
}
.x-ind3 .x-index3 .container .x-left .x-p {
  color: #fff;
  margin: 0.15rem 0 0.65rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .x-ind3 .x-index3 .container .x-left .x-p {
    margin-bottom: 0.3rem;
  }
}
.x-ind3 .x-index3 .container .x-left .x-public-a {
  border-color: #bd000c;
  background-color: #bd000c;
}
.x-ind3 .x-index3 .container .x-left .x-public-a span {
  color: #fff;
}
.x-ind3 .x-index3 .container .x-left .x-public-a i svg path {
  fill: #fff;
}
.x-ind3 .x-index3 .container .x-right {
  width: 39.28%;
}
@media (max-width: 767px) {
  .x-ind3 .x-index3 .container .x-right {
    width: 100%;
    margin-top: 1.2rem;
  }
}
.x-ind3 .x-index3 .container .x-right ul li {
  border-bottom: 1px solid #bbbbbb;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.18rem 0;
}
@media (max-width: 767px) {
  .x-ind3 .x-index3 .container .x-right ul li {
    padding: 0.34rem 0;
  }
}
.x-ind3 .x-index3 .container .x-right ul li .x-p {
  color: #fff;
  width: 60%;
}
.x-ind3 .x-index3 .container .x-right ul li .x-sp {
  display: flex;
  align-items: flex-start;
}
.x-ind3 .x-index3 .container .x-right ul li .x-sp span {
  color: #fff;
  font-weight: bold;
  line-height: 1;
}
.x-ind3 .x-index3 .container .x-right ul li .x-sp i {
  display: inline-block;
  font-style: initial;
  color: #fff;
  margin-left: 0.05rem;
}
.x-index4 {
  height: 220vh;
  width: 100%;
}
.x-index4 .x-con {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.x-index4 .x-con .x-bjs {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #f4f6f8;
  opacity: 0;
  pointer-events: none;
}
.x-index4 .x-con .x-imgdq {
  width: 7.64rem;
  height: 7.64rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}
.x-index4 .x-con .x-imgdq img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.x-index4 .x-con .x-dx {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: 0;
  z-index: 3;
  animation: yunMove 50s infinite linear;
  width: 200%;
  height: 5.23rem;
}
.x-index4 .x-con .x-dx img {
  float: left;
  width: 50%;
  height: 100%;
}
.x-index4 .x-con .x-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  z-index: 5;
  padding: 0 0.2rem;
}
.x-index4 .x-con .x-text .x-title {
  font-weight: bold;
}
.x-index4 .x-con .x-text .x-title span {
  transform: translateY(-0.8em);
  display: inline-block;
  font-size: 0.34rem;
}
.x-index4 .x-con .x-text .x-p {
  margin-top: 0.2rem;
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-text .x-p {
    padding: 0 0.5rem;
  }
}
.x-index4 .x-con .x-box-img {
  display: none;
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img {
    justify-content: flex-start;
    flex-wrap: wrap;
    position: absolute;
    top: 25%;
    padding: 0 0.5rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2 {
  z-index: 5;
  width: 1.52rem;
  height: 1.52rem;
  border-radius: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2 {
    position: relative;
    top: 0 !important;
    left: 0 !important;
    margin-bottom: 0.4rem;
    margin: 0 0.05rem 0.4rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(1) {
  left: 11%;
  top: 56%;
  width: 1.3rem;
  height: 1.3rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(1) {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(1) {
    left: 3%;
    top: 56%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(2) {
  left: 23%;
  top: 40%;
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(2) {
    top: 47%;
    width: 1.45rem;
    height: 1.45rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(2) {
    left: 17%;
    top: 45%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(3) {
  left: 36%;
  top: 29.5%;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(3) {
    top: 37%;
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(3) {
    left: 37%;
    top: 38.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(4) {
  left: 56%;
  top: 28.5%;
  z-index: 1;
  width: 1.2rem;
  height: 1.2rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(4) {
    top: 37%;
    width: 1.4rem;
    height: 1.4rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(4) {
    left: 60%;
    top: 41.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(5) {
  left: 69%;
  top: 40.5%;
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(5) {
    top: 47.5%;
    width: 1.45rem;
    height: 1.45rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(5) {
    left: 78%;
    top: 48.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(6) {
  left: 23%;
  top: 70.5%;
  width: 1.4rem;
  height: 1.4rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(6) {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(6) {
    left: 2%;
    top: 81.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(7) {
  left: 37%;
  top: 75.5%;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(7) {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(7) {
    left: 26%;
    top: 86.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(8) {
  left: 55%;
  top: 75.5%;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(8) {
    width: 1.6rem;
    height: 1.6rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(8) {
    left: 52%;
    top: 86.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(9) {
  left: 69%;
  top: 72.5%;
  width: 1.4rem;
  height: 1.4rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(9) {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(9) {
    left: 77%;
    top: 80.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2:nth-of-type(10) {
  left: 81%;
  top: 57.5%;
  width: 1.3rem;
  height: 1.3rem;
}
@media (max-width: 1580px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(10) {
    width: 1.55rem;
    height: 1.55rem;
  }
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2:nth-of-type(10) {
    left: 79%;
    top: 65.5%;
    width: 1.52rem;
    height: 1.52rem;
  }
}
.x-index4 .x-con .x-box-img .public-img2 img {
  width: auto;
  max-width: 0.6rem;
  max-height: 0.6rem;
}
.x-index4 .x-con .x-box-img .public-img2 span {
  display: block;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .x-index4 .x-con .x-box-img .public-img2 span {
    font-size: 0.24rem;
  }
}
/* 全球布局 */
@-webkit-keyframes yunMove {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes yunMove {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes sx {
  0% {
    transform: translateY(0.08rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.08rem);
  }
}
.x-index5 {
  padding: 1.3rem 0 1.4rem;
}
.x-index5 .container .x-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.x-index5 .container .x-top .x-title {
  font-weight: bold;
}
.x-index5 .container .x-xia {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}
.x-index5 .container .x-xia .x-left {
  width: 62.85%;
  height: 5.2rem;
}
@media (max-width: 1580px) {
  .x-index5 .container .x-xia .x-left {
    height: 6.8rem;
  }
}
@media (max-width: 767px) {
  .x-index5 .container .x-xia .x-left {
    width: 100%;
    height: auto;
  }
}
.x-index5 .container .x-xia .x-left .swiper-container {
  height: 100%;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a {
  height: 100%;
  position: relative;
  display: block;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a::before {
  content: "";
  width: 100%;
  height: 2.8rem;
  background: url('../images/x-index28.png') bottom no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .public-img {
  height: 100%;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .public-img::before {
  padding-top: 57.95454545%;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .x-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  color: #fff;
  padding: 0 1.6rem 0.4rem 0.4rem;
}
@media (max-width: 767px) {
  .x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .x-text {
    padding-right: 2rem;
  }
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .x-text .x-sp .x-spp {
  background-color: #bd000c;
  border-radius: 100px;
  padding: 0.045rem 0.12rem;
  display: inline-block;
  font-weight: bold;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .x-text .x-sp .x-sp2 {
  font-weight: bold;
  display: inline-block;
  margin-left: 0.1rem;
}
.x-index5 .container .x-xia .x-left .swiper-container .swiper-wrapper .swiper-slide a .x-text .x-title2 {
  margin-top: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-shu {
  position: absolute;
  right: 0.4rem;
  bottom: 0.4rem;
  z-index: 10;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-shu .n1 {
  color: #fff;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-shu i {
  font-style: initial;
  color: #999999;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-shu .n2 {
  color: #999999;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-lebut {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  cursor: pointer;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-lebut:hover svg path {
  fill: #bd000c;
  opacity: 1;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-lebut svg {
  width: 0.28rem;
  height: 0.28rem;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-lebut svg path {
  opacity: 0.2;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-ribut {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  position: absolute;
  right: 0.1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  cursor: pointer;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-ribut:hover svg path {
  fill: #bd000c;
  opacity: 1;
}
.x-index5 .container .x-xia .x-left .swiper-container .x-ribut svg {
  width: 0.28rem;
  height: 0.28rem;
  transform: rotate(180deg);
}
.x-index5 .container .x-xia .x-left .swiper-container .x-ribut svg path {
  opacity: 0.2;
  transition: 0.4s ease-in-out;
}
.x-index5 .container .x-xia .x-right {
  width: 32.85%;
  height: 5.2rem;
}
@media (max-width: 1580px) {
  .x-index5 .container .x-xia .x-right {
    height: 6.8rem;
  }
}
@media (max-width: 767px) {
  .x-index5 .container .x-xia .x-right {
    width: 100%;
    margin-top: 0.4rem;
  }
}
.x-index5 .container .x-xia .x-right li {
  border-top: 1px solid #e8e8e8;
}
.x-index5 .container .x-xia .x-right li:last-child {
  border-bottom: none;
}
.x-index5 .container .x-xia .x-right a {
  display: block;
  padding: 0.3rem 0 0.35rem;
}
@media (max-width: 1580px) {
  .x-index5 .container .x-xia .x-right a {
    padding: 0.45rem 0;
  }
}
.x-index5 .container .x-xia .x-right a:hover .x-title2 {
  color: #bd000c;
}
.x-index5 .container .x-xia .x-right a .x-sp .x-spp {
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  padding: 0.045rem 0.12rem;
  display: inline-block;
  font-weight: bold;
  color: #bd000c;
}
.x-index5 .container .x-xia .x-right a .x-sp .x-sp2 {
  font-weight: bold;
  display: inline-block;
  margin-left: 0.1rem;
  color: #8e8e8e;
}
.x-index5 .container .x-xia .x-right a .x-title2 {
  color: #2d2d2d;
  margin-top: 0.1rem;
  line-height: 1.3;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 2.6em;
  transition: 0.4s ease-in-out;
}
.x-load1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
}
.x-load1.on {
  display: none;
}
.x-load1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*Plugin CSS*/
.str_wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
}
.str_move_clone {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0;
}
.str_vertical .str_move_clone {
  left: 0;
  top: 100%;
}
.str_down .str_move_clone {
  left: 0;
  bottom: 100%;
}
.str_vertical .str_move,
.str_down .str_move {
  white-space: normal;
  width: 100%;
}
.x-side {
  position: fixed;
  bottom: 15%;
  right: 0.1rem;
  z-index: 999;
  display: none;
}
.x-side .x-top {
  border: 1px solid #dddddd;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 0.05rem rgba(53, 53, 53, 0.1);
  width: 60px;
}
@media (max-width: 1580px) {
  .x-side .x-top {
    width: 55px;
  }
}
@media (max-width: 767px) {
  .x-side .x-top {
    width: 1.1rem;
  }
}
.x-side .x-top ul {
  margin: 5px;
}
.x-side .x-top ul li {
  cursor: pointer;
  position: relative;
}
.x-side .x-top ul li:hover .x-sp {
  background-color: #bd000c;
}
.x-side .x-top ul li:hover .x-sp i svg path {
  fill: #fff;
}
.x-side .x-top ul li:hover .x-sp span {
  color: #fff;
}
.x-side .x-top ul li:hover .x-pp {
  display: block;
}
.x-side .x-top ul li .x-sp {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0.16rem 0.1rem;
  border-radius: 100px;
  transition: 0.4s ease-in-out;
}
.x-side .x-top ul li .x-sp i {
  display: inline-block;
  width: 22px;
  height: 22px;
}
@media (max-width: 767px) {
  .x-side .x-top ul li .x-sp i {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.x-side .x-top ul li .x-sp i svg {
  width: 100%;
  height: 100%;
}
.x-side .x-top ul li .x-sp i svg path {
  fill: #bd000c;
  transition: 0.4s ease-in-out;
}
.x-side .x-top ul li .x-sp span {
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  margin-top: 0.05rem;
  transition: 0.4s ease-in-out;
}
.x-side .x-top ul li .x-pp {
  position: absolute;
  left: -3.07rem;
  top: 0.25rem;
  padding: 0 0.25rem 0 0;
  width: 3.07rem;
  display: none;
}
@media (max-width: 1890px) {
  .x-side .x-top ul li .x-pp {
    left: -3.5rem;
    width: 3.5rem;
  }
}
@media (max-width: 1580px) {
  .x-side .x-top ul li .x-pp {
    left: -3.9rem;
    width: 3.9rem;
  }
}
@media (max-width: 767px) {
  .x-side .x-top ul li .x-pp {
    display: none !important;
  }
}
.x-side .x-top ul li .x-pp::before {
  content: "";
  position: absolute;
  right: 0.09rem;
  top: 0.2rem;
  border: 8px solid transparent;
  border-left: 8px solid #bd000c;
}
@media (max-width: 1580px) {
  .x-side .x-top ul li .x-pp::before {
    right: 0.07rem;
  }
}
.x-side .x-top ul li .x-pp .x-pp2 {
  display: flex;
  align-items: center;
  background-color: #bd000c;
  color: #fff;
  border-radius: 0.05rem;
  padding: 0.11rem 0.2rem;
}
.x-side .x-top ul li .x-pp .x-pp2 span {
  line-height: 1.2;
}
.x-side .x-top ul li .x-pp .x-pp2 p {
  font-weight: bold;
  padding-left: 0.2rem;
}
.x-side .x-x {
  margin-top: 0.2rem;
}
.x-side .x-x .x-img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #f3f3f3;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0.05rem rgba(53, 53, 53, 0.1);
  transition: 0.4s ease-in-out;
}
@media (max-width: 1580px) {
  .x-side .x-x .x-img {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 767px) {
  .x-side .x-x .x-img {
    width: 1.1rem;
    height: 1.1rem;
  }
}
.x-side .x-x .x-img:hover {
  background-color: #bd000c;
  border-color: #bd000c;
}
.x-side .x-x .x-img:hover svg path {
  fill: #fff;
}
.x-side .x-x .x-img svg {
  width: 18px;
  height: 18px;
}
.x-side .x-x .x-img svg path {
  fill: #2d2d2d;
  transition: 0.4s ease-in-out;
}
.x-loa {
  width: 100%;
  height: var(--vh);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  animation: loa23 1.1s 1 linear forwards;
  pointer-events: none;
}
@media (max-width: 767px) {
  .x-loa {
    width: 101%;
  }
}
.x-loa .x-box {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.x-loa .x-box .x-img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.x-loa .x-box .x-img:nth-of-type(1) {
  z-index: 5;
  animation: loa1 1.1s 1 linear forwards;
}
.x-loa .x-box .x-img:nth-of-type(2) {
  animation: loa2 1.1s 1 linear forwards;
}
.x-loa .x-box .x-img:nth-of-type(3) {
  animation: loa3 1.1s 1 linear forwards;
}
.x-loa .x-box .x-img:nth-of-type(4) {
  animation: loa4 1.1s 1 linear forwards;
}
.x-loa .x-box .x-img:nth-of-type(5) {
  animation: loa5 1.7s 1 linear forwards;
  animation-delay: 2s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 55% 37%;
}
@media (max-width: 767px) {
  .x-loa .x-box .x-img:nth-of-type(5) {
    transform-origin: 71% 36%;
  }
  .x-loa .x-box .x-img:nth-of-type(5) img {
    max-width: initial;
  }
}
.x-loa .x-box .x-img:nth-of-type(6) {
  opacity: 0;
  animation: loa11 2s 1 linear forwards;
}
.x-loa .x-box .x-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .x-loa .x-box .x-img img {
    max-width: initial;
  }
}
.x-loa .x-xt {
  animation: loa6 1.9s 1 linear forwards;
  position: relative;
  z-index: 100;
}
.x-loa .x-xt::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  bottom: 0.85rem;
  z-index: 100;
}
@media (max-width: 767px) {
  .x-loa .x-xt::before {
    bottom: 1rem;
  }
}
.x-loa .x-lu {
  width: 0.9rem;
  height: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 0.4rem;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 767px) {
  .x-loa .x-lu {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.x-loa .x-lu .c-num {
  width: 100%;
  color: #bd000c;
  font-weight: bold;
}
@keyframes loa23 {
  0% {
    background: #fff;
  }
  90% {
    background: #fff;
  }
  100% {
    background: transparent;
  }
}
@keyframes loa1 {
  0% {
    left: -11%;
    top: -80%;
    opacity: 0;
    transform: scale(1.2);
  }
  90% {
    left: 0;
    top: 0;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes loa2 {
  0% {
    right: -80%;
    top: 0;
    opacity: 0;
    transform: scale(1.2);
  }
  90% {
    right: 0;
    top: 0;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes loa3 {
  0% {
    left: -80%;
    bottom: 0;
    opacity: 0;
    transform: scale(1.2);
  }
  90% {
    left: 0;
    bottom: 0;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes loa4 {
  0% {
    right: -5%;
    bottom: -80%;
    opacity: 0;
    transform: scale(1.2);
  }
  90% {
    right: 0;
    bottom: 0;
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}
@keyframes loa5 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(20.5);
  }
}
@keyframes loa7 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(80.5);
  }
}
@keyframes loa6 {
  0% {
    transform: scale(1);
  }
  1% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loa11 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
