@charset "utf-8";
:root {
  --color: #5D80FE;
  --vh: 100vh;
}
* {
  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;
  overflow-wrap: normal;
  word-break: normal;
}
html {
  font-size: -webkit-calc(100vw/19.2);
  font-size: -moz-calc(100vw/19.2);
  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;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #5D80FE;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  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: 767px) {
  html {
    font-size: -webkit-calc(100vw/7.5);
    font-size: -moz-calc(100vw/7.5);
    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;
  font-weight: 400;
  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;
  -o-object-fit: cover;
  object-fit: cover;
}
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;
  -moz-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;
}
/* 字体一行显示 */
.line1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示两行 */
.line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示三行 */
.line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示四行 */
.line4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* 字体显示六行 */
.line6 {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.itemcenter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}
/* flex 布局  强制不换行 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* flex 布局  换行 */
.flexs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.width {
  width: 85%;
  max-width: 1600px;
  margin: auto;
}
@media (max-width: 1260px) {
  .width {
    width: 90%;
  }
}
.header-box {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.header-box.c-head-move {
  top: -0.8rem;
}
.header-box .header-pc {
  width: 100%;
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  color: #fff;
  background: transparent;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .header-box .header-pc {
    display: none;
  }
}
.header-box .header-pc .header {
  height: 0.8rem;
}
.header-box .header-pc .header .logo {
  width: 1.21rem;
}
.header-box .header-pc .header .logo img {
  width: 100%;
}
.header-box .header-pc .header .nav {
  margin: 0 0.2rem;
  height: 100%;
}
.header-box .header-pc .header .nav > li {
  margin-right: 0.3rem;
  height: 100%;
  position: inherit;
}
.header-box .header-pc .header .nav > li a {
  height: 100%;
  font-weight: bold;
  font-size: 0.18rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box .header-pc .header .nav > li a .jt {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.05rem;
  padding-top: 0.01rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box .header-pc .header .nav > li a .jt path,
.header-box .header-pc .header .nav > li a .jt rect {
  fill: #fff;
}
.header-box .header-pc .header .nav > li:hover a {
  color: #5D80FE;
}
.header-box .header-pc .header .nav > li:hover .jt {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  fill: #5D80FE;
}
.header-box .header-pc .header .nav > li:hover .jt path,
.header-box .header-pc .header .nav > li:hover .jt rect {
  fill: #5D80FE;
}
.header-box .header-pc .header .nav > li.on > a {
  font-weight: bold;
}
.header-box .header-pc .header .nav > li.on > a > .h-span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.header-box .header-pc .header .nav > li.on > a > .h-span::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.03rem;
  background: #5D80FE;
  border-radius: 0.02rem;
  position: absolute;
  top: 0.56rem;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box .header-pc .header .nav > li .xl {
  background: rgba(2, 1, 40, 0.3);
  -webkit-backdrop-filter: blur(0.03rem);
  backdrop-filter: blur(0.03rem);
  border-radius: 0.08rem;
  position: absolute;
  left: 0;
  top: 0.6rem;
  z-index: 100;
  padding: 0.09rem 0.1rem;
  display: none;
  text-align: center;
}
.header-box .header-pc .header .nav > li .xl > li a {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  padding: 0.09rem 0.1rem;
  display: block;
  margin: auto;
}
.header-box .header-pc .header .nav > li .xl > li a:hover {
  color: #5D80FE;
}
.header-box .header-pc .header .nav > li .xl2 {
  max-width: 13.25rem;
  padding: 0.3rem;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  border-radius: 0.08rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(0.03rem);
  backdrop-filter: blur(0.03rem);
  position: absolute;
  top: 0.8rem;
  left: 0;
  z-index: 100;
  display: none;
  padding-right: 0;
  padding-bottom: 0;
}
.header-box .header-pc .header .nav > li .xl2.xl2-2 {
  max-width: 8.95rem;
}
.header-box .header-pc .header .nav > li .xl2 > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li {
  margin-right: 0.3rem;
  width: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0.3rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -moz-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.18rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .xl2-right {
  padding: 0.15rem 0.15rem 0.12rem 0.15rem;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .xl2-right p {
  margin-bottom: 0.1rem;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .xl2-right .ul .li {
  margin-top: 0.04rem;
  font-size: 0.14rem;
  position: relative;
  padding-left: 0.14rem;
  font-weight: 400;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .xl2-right .ul .li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.08rem;
  background: #FFFFFF;
  width: 0.04rem;
  min-width: 0.04rem;
  height: 0.04rem;
  min-height: 0.04rem;
  border-radius: 50%;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .img {
  width: 1.6rem;
  height: 1.6rem;
  overflow: hidden;
  min-width: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 0.12rem;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li a .img img {
  max-width: 90%;
  height: 90%;
}
.header-box .header-pc .header .nav > li .xl2 > ul > li:hover a {
  background: rgba(255, 255, 255, 0.14);
}
.header-box .header-pc .header .nav > li .xl2 > ul > li:hover a p {
  color: #5D80FE;
}
.header-box .header-pc .header .nav :last-child {
  margin-right: 0;
}
.header-box .header-pc .header .right {
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.header-box .header-pc .header .right .icon {
  width: 0.24rem;
  height: 0.24rem;
  fill: #fff;
  margin-right: 0.06rem;
}
.header-box .header-pc .header .right .icon path,
.header-box .header-pc .header .right .icon rect {
  fill: #fff;
}
.header-box .header-pc .header .right .jt {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.05rem;
  padding-top: 0.01rem;
  fill: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box .header-pc .header .right .jt path,
.header-box .header-pc .header .right .jt rect {
  fill: #fff;
}
.header-box .header-pc .header .right:hover .jt {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header-box .header-pc .header .phone {
  font-weight: 400;
  font-size: 0.2rem;
}
@media (max-width: 1260px) {
  .header-box .header-pc .header .phone {
    display: none;
  }
}
.header-box .header-pc .header .wx,
.header-box .header-pc .header .yuyan {
  font-weight: 400;
  font-size: 0.18rem;
  margin-left: 0.22rem;
  cursor: pointer;
}
.header-box .header-pc .header .shu {
  width: 0.01rem;
  height: 0.16rem;
  background: rgba(255, 255, 255, 0.7);
  margin-left: 0.21rem;
}
.header-box .header-pc .header .wx .xl {
  width: 1.64rem;
  background: rgba(2, 1, 40, 0.3);
  -webkit-backdrop-filter: blur(0.03rem);
  backdrop-filter: blur(0.03rem);
  position: absolute;
  left: -0.45rem;
  top: 0.6rem;
  z-index: 2;
  border-radius: 0.08rem;
  padding: 0.14rem 0 0.12rem 0;
  display: none;
}
.header-box .header-pc .header .wx .xl .ewm {
  width: 1.36rem;
  height: 1.36rem;
  background: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
  margin: auto;
}
.header-box .header-pc .header .wx .xl .ewm img {
  width: 100%;
  height: 100%;
}
.header-box .header-pc .header .wx .xl p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.08rem;
}
.header-box .header-pc .header .yuyan {
  margin-left: 0.22rem;
}
.header-box .header-pc .header .yuyan .icon {
  width: 0.21rem;
  height: 0.21rem;
}
.header-box .header-pc .header .yuyan .xl {
  width: 100%;
  background: rgba(2, 1, 40, 0.3);
  -webkit-backdrop-filter: blur(0.03rem);
  backdrop-filter: blur(0.03rem);
  border-radius: 0.08rem;
  position: absolute;
  left: 0;
  top: 0.6rem;
  z-index: 2;
  padding: 0.09rem 0;
  display: none;
  text-align: center;
}
.header-box .header-pc .header .yuyan .xl > li a {
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  padding: 0.09rem 0.1rem;
  display: block;
  margin: auto;
}
.header-box .header-pc .header .yuyan .xl > li a:hover {
  color: #5D80FE;
}
.header-box .header-pc.black {
  background: #3F4558;
}
.header-box .header-pc.white {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  border-bottom: 0;
}
.header-box .header-pc.white .nav > li a {
  color: #333;
  fill: #333;
}
.header-box .header-pc.white .nav > li a .jt path,
.header-box .header-pc.white .nav > li a .jt rect {
  fill: #333;
}
.header-box .header-pc.white .nav > li .xl {
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  background: #fff;
}
.header-box .header-pc.white .nav > li .xl > li a {
  color: #333;
}
.header-box .header-pc.white .nav > li .xl2 {
  background: #fff;
}
.header-box .header-pc.white .nav > li .xl2 > ul > li {
  border: 1px solid #E8E8E8;
}
.header-box .header-pc.white .nav > li .xl2 > ul > li a {
  color: #333;
}
.header-box .header-pc.white .nav > li .xl2 > ul > li a .xl2-right .ul .li::after {
  background: #333;
}
.header-box .header-pc.white .nav > li .xl2 > ul > li:hover a {
  background: #F5F6F7;
}
.header-box .header-pc.white .right {
  color: #333;
}
.header-box .header-pc.white .right .icon {
  fill: #333;
}
.header-box .header-pc.white .right .icon path,
.header-box .header-pc.white .right .icon rect {
  fill: #333;
}
.header-box .header-pc.white .right .jt {
  fill: #333;
}
.header-box .header-pc.white .right .jt path,
.header-box .header-pc.white .right .jt rect {
  fill: #333;
}
.header-box .header-pc.white .wx .xl {
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  background: #fff;
}
.header-box .header-pc.white .wx .xl p {
  color: #333;
}
.header-box .header-pc.white .yuyan .xl {
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  background: #fff;
}
.header-box .header-pc.white .yuyan .xl > li a {
  color: #333;
}
.header-box .header-wap {
  width: 100%;
  border: 0;
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  display: none;
  background: #fff;
}
@media (max-width: 991px) {
  .header-box .header-wap {
    display: block;
  }
}
.header-box .header-wap .header {
  height: 1rem;
}
.header-box .header-wap .header .logo {
  width: 1.21rem;
}
.header-box .header-wap .header .logo img {
  width: 100%;
}
.header-box .header-wap .header .yuyan {
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.26rem;
  position: relative;
}
.header-box .header-wap .header .yuyan .icon {
  width: 0.5rem;
  height: 0.5rem;
}
.header-box .header-wap .header .yuyan .xl {
  background: #353A58;
  border-radius: 0.08rem;
  position: absolute;
  left: -0.4rem;
  top: 0.6rem;
  z-index: 1002;
  padding: 0.09rem 0;
  display: none;
  text-align: center;
}
.header-box .header-wap .header .yuyan .xl > li a {
  font-weight: 400;
  font-size: 0.26rem;
  color: #FFFFFF;
  padding: 0.09rem 0.2rem;
  display: block;
  margin: auto;
}
.header-box .header-wap .header .yuyan .xl > li a:hover {
  color: #5D80FE;
}
.header-box .header-wap .header .right-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header-box .header-wap .header .right-switch {
    display: block;
  }
}
.header-box .header-wap .header .right-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #333;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.header-box .header-wap .header .right-switch i:nth-child(1) {
  top: 0;
}
.header-box .header-wap .header .right-switch i:nth-child(3) {
  bottom: 0;
}
.header-box .header-wap .header .right-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.header-box .header-wap .nav-wap {
  width: 100%;
  height: -webkit-calc(99vh);
  height: -moz-calc(99vh);
  height: calc(100vh - 1rem);
  position: fixed;
  top: 1rem;
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  background: #fff;
  border-top: 1px solid #f1f1f1;
  display: none;
}
.header-box .header-wap .nav-wap > li {
  width: 100%;
  padding: 0 0.5rem;
  border-bottom: 1px solid #f1f1f1;
}
.header-box .header-wap .nav-wap > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 0.8rem;
  font-size: 0.28rem;
  color: #333;
}
.header-box .header-wap .nav-wap > li a span {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header-box .header-wap .nav-wap > li a .jt {
  width: 0.26rem;
  height: 0.26rem;
  margin-left: 0.05rem;
  padding-top: 0.01rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  fill: #333;
}
.header-box .header-wap .nav-wap > li a .jt path,
.header-box .header-wap .nav-wap > li a .jt rect {
  fill: #333;
}
.header-box .header-wap .nav-wap > li .xl {
  display: none;
}
.header-box .header-wap .nav-wap > li .xl > li {
  width: 100%;
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
.header-box .header-wap .nav-wap > li.on a .jt {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header-box .header-wap .nav-wap .phone {
  margin-top: 0.6rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  font-size: 0.3rem;
  color: #5D80FE;
}
.header-box .header-wap .nav-wap .phone .icon {
  width: 0.38rem;
  height: 0.38rem;
  fill: #5D80FE;
  margin-right: 0.06rem;
}
.header-box .header-wap .nav-wap .phone .icon path,
.header-box .header-wap .nav-wap .phone .icon rect {
  fill: #5D80FE;
}
.header-box .header-wap .nav-wap .ewm-box {
  width: 4rem;
  background: #353B58;
  border-radius: 0.16rem;
  padding: 0.2rem 0 0.18rem 0;
  margin: auto;
  margin-top: 0.5rem;
  margin-bottom: 0.3rem;
}
.header-box .header-wap .nav-wap .ewm-box .ewm {
  width: 3.5rem;
  height: 3.5rem;
  background: #fff;
  border-radius: 0.16rem;
  padding: 0.14rem;
  overflow: hidden;
  margin: auto;
}
.header-box .header-wap .nav-wap .ewm-box .ewm img {
  width: 100%;
  height: 100%;
}
.header-box .header-wap .nav-wap .ewm-box p {
  font-weight: 400;
  font-size: 0.28rem;
  color: #FFFFFF;
  text-align: center;
  margin-top: 0.14rem;
}
.header-box .header-wap.black {
  background: #3F4558;
}
body.open .header-box .header-wap .header .right-switch i:nth-child(2) {
  opacity: 0;
}
body.open .header-box .header-wap .header .right-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.open .header-box .header-wap .header .right-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.main {
  width: 100%;
  min-height: 35vh;
}
.crumbs {
  padding: 0.12rem 0 0.1rem 0;
  background: rgba(43, 49, 212, 0.1);
}
.crumbs a {
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
}
@media (max-width: 991px) {
  .crumbs a {
    font-size: 0.26rem;
  }
}
.crumbs a span {
  margin: 0;
  color: #666666;
}
.crumbs span {
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
  margin: 0 0.02rem;
}
@media (max-width: 991px) {
  .crumbs span {
    font-size: 0.26rem;
  }
}
.h-btn {
  height: 0.5rem;
  padding: 0 0.3rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #FFFFFF;
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .h-btn {
    height: 0.7rem;
    font-size: 0.28rem;
  }
}
.h-btn .icon {
  width: 0.18rem;
  height: 0.18rem;
  fill: #fff;
  margin-right: 0.09rem;
}
.h-btn .icon path,
.h-btn .icon rect {
  fill: #fff;
}
@media (max-width: 991px) {
  .h-btn .icon {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.h-btn.h-btn-x {
  background: transparent;
  border: 1px solid #fff;
  height: -webkit-calc(-1.5rem);
  height: -moz-calc(-1.5rem);
  height: calc(0.5rem - 2px);
  padding: 0 0.14rem;
}
.h-btn.h-btn-x .icon {
  width: 0.2rem;
  height: 0.2rem;
}
@media (max-width: 991px) {
  .h-btn.h-btn-x .icon {
    width: 0.3rem;
    height: 0.3rem;
  }
}
@media (max-width: 991px) {
  .h-btn.h-btn-x {
    height: -webkit-calc(-1.3rem);
    height: -moz-calc(-1.3rem);
    height: calc(0.7rem - 2px);
    padding: 0 0.24rem;
  }
}
.h-btn:hover {
  -webkit-transform: translateY(-0.1rem);
  -moz-transform: translateY(-0.1rem);
  -ms-transform: translateY(-0.1rem);
  -o-transform: translateY(-0.1rem);
  transform: translateY(-0.1rem);
}
.pc-img {
  display: block;
}
@media (max-width: 991px) {
  .pc-img {
    display: none;
  }
}
.wap-img {
  display: none;
}
@media (max-width: 991px) {
  .wap-img {
    display: block;
  }
}
.index-xf {
  width: 1.6rem;
  height: 1.64rem;
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 99;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  text-align: center;
  cursor: pointer;
}
.index-xf p {
  font-weight: bold;
  font-size: 0.16rem;
  color: #333;
  margin-top: 0.56rem;
}
.index-xf .btn {
  font-weight: bold;
  font-size: 0.14rem;
  color: #1A1E83;
  line-height: 0.31rem;
  height: 0.31rem;
  background: #FFFFFF;
  border-radius: 0.24rem;
  display: inline-block;
  padding: 0 0.05rem;
  margin-top: 0.39rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 0.94rem;
  -webkit-box-shadow: 0px 0.07rem 0.08rem 0px rgba(6, 8, 54, 0.57);
  box-shadow: 0px 0.07rem 0.08rem 0px rgba(6, 8, 54, 0.57);
}
.index-xf .btn:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.footer-box {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  margin-top: 1rem;
}
@media (max-width: 991px) {
  .footer-box {
    -o-background-size: cover;
    background-size: cover;
    background-position: center bottom;
  }
}
.footer-box .footer-top {
  width: 100%;
  border-bottom: 1px solid #36394B;
  padding: 0.77rem 0;
}
.footer-box .footer-top .logo {
  display: block;
  width: 2.01rem;
}
.footer-box .footer-top .logo img {
  width: 100%;
}
.footer-box .footer-top .footer-tit {
  font-weight: bold;
  font-size: 0.42rem;
  color: #FFFFFF;
  margin-top: 0.38rem;
}
@media (max-width: 991px) {
  .footer-box .footer-top .footer-tit {
    font-size: 0.48rem;
  }
}
.footer-box .footer-top .footer-desc {
  font-weight: 400;
  font-size: 0.24rem;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .footer-box .footer-top .footer-desc {
    font-size: 0.28rem;
    margin-top: 0.1rem;
  }
}
.footer-box .footer-top .footer-btns {
  margin-top: 0.25rem;
}
@media (max-width: 991px) {
  .footer-box .footer-top .footer-btns {
    margin-top: 0.3rem;
  }
}
.footer-box .footer-top .footer-btns .h-btn {
  margin-right: 0.16rem;
}
.footer-box .footer-bot {
  padding-top: 0.54rem;
}
.footer-box .footer-bot .footer-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b {
    display: block;
  }
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li {
  margin-right: 0.4rem;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a {
  color: #fff;
  font-weight: 300;
  font-size: 0.18rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a .jt {
  display: none;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a:hover {
  color: #5D80FE;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl {
    display: none;
  }
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl > li {
  margin-top: 0.3rem;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl > li a {
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl > li a:hover {
  color: #5D80FE;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav {
    display: block;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #36394B;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 0.8rem;
    font-size: 0.28rem;
    color: #fff;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a span {
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a .jt {
    width: 0.26rem;
    height: 0.26rem;
    margin-left: 0.05rem;
    padding-top: 0.01rem;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    fill: #fff;
    display: block;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a .jt path,
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a .jt rect {
    fill: #fff;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li a:hover {
    color: #fff;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl {
    display: none;
    margin-top: 0;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li .xl > li {
    width: 100%;
    padding: 0 0.3rem;
    border-top: 1px solid #36394B;
    margin-top: 0;
  }
  .footer-box .footer-bot .footer-b .footer-menus .footer-nav > li.on a .jt {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.footer-box .footer-bot .footer-b .footer-info {
  color: #fff;
  font-weight: 300;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b .footer-info {
    margin-top: 0.5rem;
  }
}
.footer-box .footer-bot .footer-b .footer-info .footer-info-t {
  font-size: 0.2rem;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b .footer-info .footer-info-t {
    font-size: 0.3rem;
  }
}
.footer-box .footer-bot .footer-b .footer-info .footer-info-p {
  font-size: 0.18rem;
  margin-top: 0.28rem;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .footer-b .footer-info .footer-info-p {
    font-size: 0.26rem;
    margin-top: 0.22rem;
  }
}
.footer-box .footer-bot .copyright {
  font-weight: 400;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.28rem 0;
}
.footer-box .footer-bot .copyright a {
  display: block;
  font-weight: 400;
  font-size: 0.16rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.64rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-box .footer-bot .copyright a:hover {
  color: #fff;
}
@media (max-width: 991px) {
  .footer-box .footer-bot .copyright a {
    font-size: 0.26rem;
    margin-left: 0;
    margin-top: 0.12rem;
  }
}
@media (max-width: 991px) {
  .footer-box .footer-bot .copyright {
    font-size: 0.26rem;
    display: block;
    padding: 0.3rem 0;
  }
}
.banner {
  width: 100%;
  height: 8.7rem;
  overflow: hidden;
  position: relative;
}
.banner .slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .slides img {
  width: 100%;
  height: 100%;
}
.banner > .swiper-pagination {
  bottom: 0.28rem;
}
.banner > .swiper-pagination .swiper-pagination-bullet {
  width: 0.34rem;
  height: 0.03rem;
  background: #FFFFFF;
  border-radius: 0.02rem;
}
.banner > .swiper-button-next,
.banner > .swiper-button-prev {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -0.2rem;
}
.banner > .swiper-button-next .icon,
.banner > .swiper-button-prev .icon {
  width: 0.2rem;
  height: 0.2rem;
  fill: #fff;
}
.banner > .swiper-button-prev .icon {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.public-title {
  text-align: center;
}
.public-title p {
  font-weight: bold;
  font-size: 0.42rem;
  color: #333333;
  letter-spacing: 1px;
}
.public-title span {
  display: block;
  font-weight: 400;
  font-size: 0.24rem;
  color: #999999;
  margin-top: 0.06rem;
}
.index-xl {
  width: 100%;
  padding-top: 0.84rem;
}
@media (max-width: 991px) {
  .index-xl {
    padding-top: 0.64rem;
  }
}
.index-xl .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .index-xl .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0.2rem;
  }
}
.index-xl .box > li {
  width: 23.125%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.09rem 0.17rem 0.02rem rgba(0, 0, 0, 0.14);
  box-shadow: 0px 0.09rem 0.17rem 0.02rem rgba(0, 0, 0, 0.14);
  border-radius: 0.24rem;
  overflow: hidden;
  background-repeat: no-repeat;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-right: 2.5%;
  position: relative;
}
.index-xl .box > li .img {
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.index-xl .box > li:hover .img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.index-xl .box > li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 1260px) {
  .index-xl .box > li {
    border-radius: 0.4rem;
  }
}
@media (max-width: 991px) {
  .index-xl .box > li {
    width: 47.5%;
    margin-top: 0.32rem;
    margin-right: 5%;
    border-radius: 0.22rem;
  }
  .index-xl .box > li:nth-child(2n) {
    margin-right: 0;
  }
}
.index-xl .box > li > a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.index-xl .box > li > a div {
  font-weight: bold;
  font-size: 0.34rem;
  color: #333333;
  padding-top: 0.4rem;
}
.index-xl .box > li > a p {
  font-weight: 400;
  font-size: 0.18rem;
  color: #666666;
  padding-top: 0.01rem;
}
.index-xl .box > li > a span {
  display: block;
  font-weight: 400;
  font-size: 0.2rem;
  color: #333333;
  padding-top: 0.2rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.index-xl .box > li:hover > a span {
  color: #2B31D4;
}
.index-ad {
  width: 100%;
  margin-top: 0.8rem;
  position: relative;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: left top;
}
.index-ad .cont {
  padding: 0.56rem 0 0.7rem 0;
  position: relative;
}
.index-ad .cont .cpt {
  width: auto;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media (max-width: 991px) {
  .index-ad .cont .cpt {
    height: 62.2%;
    top: unset;
    bottom: 0;
    right: -5%;
  }
}
.index-ad .cont .tit {
  font-weight: bold;
  font-size: 0.32rem;
  color: #333333;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .index-ad .cont .tit {
    font-size: 0.3rem;
  }
}
.index-ad .cont .desc {
  font-weight: 400;
  font-size: 0.2rem;
  color: #666666;
  margin-top: 0.1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .index-ad .cont .desc {
    font-size: 0.22rem;
    width: 50%;
  }
}
.index-ad .cont .p-btn {
  position: relative;
  z-index: 2;
}
.p-btn {
  font-weight: 400;
  font-size: 0.2rem;
  color: #2B31D4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.42rem;
}
@media (max-width: 991px) {
  .p-btn {
    font-size: 0.26rem;
    margin-top: 0.32rem;
  }
}
.p-btn .icon {
  width: 0.22rem;
  height: 0.22rem;
  fill: #2B31D4;
  margin-left: 0.08rem;
}
@media (max-width: 991px) {
  .p-btn .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.index-fa {
  margin-top: 0.8rem;
}
.index-fa .fa-ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.index-fa .fa-ul > a {
  width: 32%;
  height: 2.8rem;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.06);
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  margin-right: 2%;
  margin-top: 0.3rem;
}
.index-fa .fa-ul > a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a {
    width: 48%;
    height: 2rem;
    margin-right: 4%;
  }
  .index-fa .fa-ul > a:nth-child(3n) {
    margin-right: 4%;
  }
  .index-fa .fa-ul > a:nth-child(2n) {
    margin-right: 0;
  }
}
.index-fa .fa-ul > a > div {
  width: 62.57%;
  min-height: 46.43%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.14rem;
  -webkit-backdrop-filter: blur(0.04rem);
  backdrop-filter: blur(0.04rem);
  text-align: center;
  padding: 0.15rem 0.1rem;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div {
    width: 70%;
  }
}
.index-fa .fa-ul > a > div p {
  font-weight: bold;
  font-size: 0.24rem;
  color: #000000;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div p {
    font-size: 0.28rem;
  }
}
.index-fa .fa-ul > a > div .p-btn {
  margin-top: 0.12rem;
  font-size: 0.14rem;
  color: #2B31D4;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div .p-btn {
    font-size: 0.22rem;
    margin-top: 0.08rem;
  }
}
.index-fa .fa-ul > a > div .p-btn .icon {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.06rem;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div .p-btn .icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.index-fa .fa-ul > a > div .p-btn.more-hy {
  margin: 0;
  font-size: 0.2rem;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div .p-btn.more-hy {
    font-size: 0.24rem;
  }
}
.index-fa .fa-ul > a > div .p-btn.more-hy .icon {
  width: 0.22rem;
  height: 0.22rem;
}
@media (max-width: 991px) {
  .index-fa .fa-ul > a > div .p-btn.more-hy .icon {
    width: 0.26rem;
    height: 0.26rem;
  }
}
.index-fw {
  margin-top: 0.8rem;
}
.index-fw .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.5rem;
}
.index-fw .box > li {
  margin-right: 0.08rem;
  height: 6rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 1.4rem;
  -moz-box-flex: 0;
  -ms-flex: 0 0 1.4rem;
  flex: 0 0 1.4rem;
  -webkit-transition: -webkit-box-flex 0.5s ease-in-out, -webkit-flex 0.5s ease-in-out;
  transition: -webkit-box-flex 0.5s ease-in-out, -webkit-flex 0.5s ease-in-out;
  -o-transition: flex 0.5s ease-in-out;
  -moz-transition: flex 0.5s ease-in-out, -moz-box-flex 0.5s ease-in-out;
  transition: flex 0.5s ease-in-out;
  transition: flex 0.5s ease-in-out, -webkit-box-flex 0.5s ease-in-out, -webkit-flex 0.5s ease-in-out, -moz-box-flex 0.5s ease-in-out, -ms-flex 0.5s ease-in-out;
}
.index-fw .box > li:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .index-fw .box > li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.index-fw .box > li .default {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.07rem 0.08rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0.07rem 0.08rem 0px rgba(0, 0, 0, 0.11);
  border-radius: 0.14rem;
  position: relative;
}
.index-fw .box > li .default::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.03rem;
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
  border-radius: 0.02rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.index-fw .box > li .default .num {
  position: absolute;
  bottom: 0.76rem;
  left: 0;
  width: 100%;
  z-index: 2;
  font-size: 0.24rem;
  color: #B0B0B0;
  text-align: center;
}
.index-fw .box > li .default .text {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0.7rem 0;
}
.index-fw .box > li .default .text .ten {
  width: 0.42rem;
  margin-right: 0.08rem;
  line-height: 1.1;
  font-weight: 400;
  font-size: 0.2rem;
  color: #2B2D2F;
  white-space: nowrap;
}
.index-fw .box > li .default .text .ten > div {
  width: 0.42rem;
  height: 0.42rem;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.index-fw .box > li .default .text .tit {
  font-weight: bold;
  font-size: 0.24rem;
}
.index-fw .box > li .hover {
  display: none;
}
.index-fw .box > li.on {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .index-fw .box > li.on {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.index-fw .box > li.on .default {
  display: none;
}
@media (max-width: 991px) {
  .index-fw .box > li.on .default {
    display: block;
  }
}
.index-fw .box > li.on .hover {
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.07rem 0.08rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0.07rem 0.08rem 0px rgba(0, 0, 0, 0.11);
  border-radius: 0.14rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .index-fw .box > li.on .hover {
    display: none;
  }
}
.index-fw .box > li.on .hover .img {
  width: 100%;
  height: 100%;
}
.index-fw .box > li.on .hover .cont {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: -webkit-linear-gradient(217deg, rgba(71, 8, 162, 0.9) 0%, rgba(2, 122, 197, 0.9) 100%);
  background: -moz-linear-gradient(217deg, rgba(71, 8, 162, 0.9) 0%, rgba(2, 122, 197, 0.9) 100%);
  background: -o-linear-gradient(217deg, rgba(71, 8, 162, 0.9) 0%, rgba(2, 122, 197, 0.9) 100%);
  background: linear-gradient(233deg, rgba(71, 8, 162, 0.9) 0%, rgba(2, 122, 197, 0.9) 100%);
  border-radius: 0.14rem;
  padding: 0.36rem 0.26rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.index-fw .box > li.on .hover .cont .tit {
  font-weight: bold;
  font-size: 0.24rem;
  color: #FFFFFF;
}
.index-fw .box > li.on .hover .cont .desc {
  font-weight: 400;
  font-size: 0.16rem;
  color: #FFFFFF;
  margin-top: 0.13rem;
}
.index-fw .box > li.on .hover .cont .num {
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 0.06rem;
}
.index-kh {
  margin-top: 0.8rem;
}
.index-kh .box {
  margin-top: 0.4rem;
  position: relative;
  width: 100%;
}
.index-kh .box .bj1 {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  -o-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  width: 3.6rem;
  height: 5rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F4F4F5), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1580px) {
  .index-kh .box .bj1 {
    height: 7rem;
  }
}
@media (max-width: 1260px) {
  .index-kh .box .bj1 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .index-kh .box .bj1 {
    width: 1rem;
  }
}
.index-kh .box .bj2 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3.6rem;
  height: 5rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F4F4F5), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F4F4F5 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1580px) {
  .index-kh .box .bj2 {
    height: 7rem;
  }
}
@media (max-width: 1260px) {
  .index-kh .box .bj2 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .index-kh .box .bj2 {
    width: 1rem;
  }
}
.index-kh .box .h_coo_con {
  height: 1.5rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.index-kh .box .h_coo_con .img {
  display: inline-block;
}
.index-kh .box .h_coo_con .img a {
  -webkit-box-shadow: 0px 0.02rem 0.1rem 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0.02rem 0.1rem 0px rgba(0, 0, 0, 0.07);
  background: #FFFFFF;
  width: 2.96rem;
  height: 1.5rem;
  border-radius: 0.12rem;
  overflow: hidden;
  margin: 0.1rem 0.14rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.index-kh .box .h_coo_con .img img {
  width: 100%;
  max-width: 100% !important;
  max-height: 100% !important;
}
.index-news {
  margin-top: 0.8rem;
}
.index-news .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.index-news .list > li {
  width: 32%;
  height: 3rem;
  margin-right: 2%;
  margin-top: 0.3rem;
  position: relative;
  border-radius: 0.14rem;
  overflow: hidden;
}
.index-news .list > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 1580px) {
  .index-news .list > li {
    height: 3.65rem;
  }
}
@media (max-width: 1260px) {
  .index-news .list > li {
    height: 2.8rem;
  }
}
@media (max-width: 991px) {
  .index-news .list > li {
    width: 49%;
    height: 3.5rem;
    margin-right: 2%;
  }
  .index-news .list > li:nth-child(3n) {
    margin-right: 2%;
  }
  .index-news .list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .index-news .list > li {
    width: 48%;
    height: 2rem;
    margin-right: 4%;
  }
  .index-news .list > li:nth-child(3n) {
    margin-right: 4%;
  }
  .index-news .list > li:nth-child(2n) {
    margin-right: 0;
  }
}
.index-news .list > li .img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.index-news .list > li:hover .img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.index-news .list > li a {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  top: 0;
  left: 0;
}
.index-news .list > li a span {
  position: absolute;
  bottom: 0.18rem;
  left: 0.2rem;
  font-size: 0.24rem;
  color: #FFFFFF;
  z-index: 3;
}
.zhanwei {
  width: 100%;
  height: 0.8rem;
}
@media (max-width: 991px) {
  .zhanwei {
    height: 1rem;
  }
}
.pcshow {
  display: block;
}
@media (max-width: 991px) {
  .pcshow {
    display: none;
  }
}
.wapshow {
  display: none;
}
@media (max-width: 991px) {
  .wapshow {
    display: block;
  }
}
.public-imgs {
  width: 100%;
  position: relative;
  min-height: 6rem;
}
.public-imgs img {
  width: 100%;
  min-height: 6rem;
}
.public-imgs .text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.public-imgs .text p {
  font-weight: bold;
  font-size: 0.54rem;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .public-imgs .text p {
    font-size: 0.44rem;
  }
}
.public-imgs .text span {
  display: block;
  font-weight: 400;
  font-size: 0.24rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .public-imgs .text span {
    font-size: 0.26rem;
  }
}
.public-imgs .text .h-btn {
  padding: 0 0.5rem;
  height: 0.76rem;
  line-height: 0.76rem;
  display: inline-block;
  margin: auto;
  margin-top: 0.38rem;
  font-weight: bold;
  font-size: 0.34rem;
  color: #FFFFFF;
  -webkit-box-shadow: 0px 0.14rem 0.11rem 0px rgba(6, 8, 54, 0.56);
  box-shadow: 0px 0.14rem 0.11rem 0px rgba(6, 8, 54, 0.56);
}
@media (max-width: 991px) {
  .public-imgs .text .h-btn {
    width: 3.4rem;
    font-size: 0.3rem;
  }
}
.news-box > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0.17rem 0.02rem rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 0.17rem 0.02rem rgba(0, 0, 0, 0.06);
  border-radius: 0.14rem;
  padding: 0.4rem;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .news-box > a {
    padding: 0.26rem;
    margin-top: 0.3rem;
  }
}
.news-box > a .img {
  width: 34.875%;
  max-width: 5.58rem;
  height: 3.03rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-box > a .img {
    width: 30%;
    height: 2.1rem;
  }
}
@media (max-width: 767px) {
  .news-box > a .img {
    width: 45%;
    height: 1.6rem;
  }
}
.news-box > a .img img {
  width: 100%;
  height: 100%;
  border-radius: 0.14rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.news-box > a .img img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news-box > a .cons {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.4rem;
}
@media (max-width: 991px) {
  .news-box > a .cons {
    margin-left: 0.26rem;
  }
}
.news-box > a .cons .tit {
  font-weight: bold;
  font-size: 0.28rem;
  color: #000000;
  padding-top: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .news-box > a .cons .tit {
    font-size: 0.3rem;
    padding-top: 0.1rem;
  }
}
.news-box > a .cons .desc {
  min-height: 1.1rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  margin-top: 0.13rem;
}
@media (max-width: 991px) {
  .news-box > a .cons .desc {
    font-size: 0.24rem;
    min-height: 0.8rem;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .news-box > a .cons .desc {
    display: none;
  }
}
.news-box > a .cons .times {
  width: 100%;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .news-box > a .cons .times {
    font-size: 0.22rem;
  }
}
.news-box > a .cons .p-btn {
  font-size: 0.14rem;
  margin: 0;
}
@media (max-width: 991px) {
  .news-box > a .cons .p-btn {
    font-size: 0.22rem;
  }
}
.news-box > a .cons .p-btn .icon {
  width: 0.15rem;
  height: 0.15rem;
  margin-left: 0.02rem;
}
@media (max-width: 991px) {
  .news-box > a .cons .p-btn .icon {
    width: 0.23rem;
    height: 0.23rem;
  }
}
.page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.57rem;
}
.page a {
  height: 0.4rem;
  min-width: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.05rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid #D9DFDF;
  color: #333;
  cursor: pointer;
  padding: 0 0.12rem;
  border-radius: 0.06rem;
}
@media (max-width: 767px) {
  .page a {
    height: 0.46rem;
    min-width: 0.46rem;
    font-size: 0.28rem;
  }
}
.page a.prev img,
.page a.prev svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 5px;
}
.page a.next img,
.page a.next svg {
  margin-left: 5px;
}
.page a:hover {
  color: #fff;
  border-color: #5D80FE;
  background: #5D80FE;
}
.page a:hover p {
  color: #fff;
}
.page a:hover svg path {
  fill: #fff;
}
.page a img,
.page a svg {
  width: 6px;
  height: auto;
}
@media (max-width: 767px) {
  .page a img,
  .page a svg {
    width: 4px;
  }
}
.page a .img2 {
  display: none;
}
.page a svg path {
  fill: #333;
}
.page .active {
  color: #fff;
  border-color: #5D80FE;
  background: #5D80FE;
}
.page .active p {
  color: #fff;
}
.page input {
  border: 1px solid #efefef;
  text-align: center;
  width: 0.7rem;
  height: 0.44rem;
}
@media (max-width: 1580px) {
  .page input {
    width: 1rem;
  }
}
.news-info-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding-top: 0.6rem;
}
@media (max-width: 991px) {
  .news-info-box {
    display: block;
  }
}
.news-info-box .cons {
  border-right: 1px solid #E2E0E0;
  padding-right: 0.9rem;
}
@media (max-width: 991px) {
  .news-info-box .cons {
    padding: 0;
    border: 0;
  }
}
.news-info-box .cons .tit {
  font-weight: bold;
  font-size: 0.5rem;
  color: #333333;
}
@media (max-width: 991px) {
  .news-info-box .cons .tit {
    font-size: 0.4rem;
  }
}
.news-info-box .cons .times {
  font-weight: 400;
  font-size: 0.18rem;
  color: #999;
  margin-top: 0.08rem;
}
@media (max-width: 991px) {
  .news-info-box .cons .times {
    font-size: 0.24rem;
  }
}
.news-info-box .cons .content {
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .news-info-box .cons .content {
    font-size: 0.28rem;
  }
}
.news-info-box .cons .content img {
  max-width: 100% !important;
  height: auto !important;
}
.news-info-box .cons .content video {
  max-width: 100%;
}
.news-info-box .tuijian {
  margin-left: 0.9rem;
  width: 4rem;
}
@media (max-width: 991px) {
  .news-info-box .tuijian {
    margin: 0;
    width: 100%;
    margin-top: 0.9rem;
  }
}
.news-info-box .tuijian .tit {
  font-weight: bold;
  font-size: 0.26rem;
  color: #333333;
}
@media (max-width: 991px) {
  .news-info-box .tuijian .tit {
    font-size: 0.3rem;
  }
}
.news-info-box .tuijian .list {
  width: 100%;
}
.news-info-box .tuijian .list a {
  display: block;
  margin-top: 0.34rem;
}
.news-info-box .tuijian .list a p {
  font-weight: bold;
  font-size: 0.18rem;
  color: #333333;
  margin-top: 0.18rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .news-info-box .tuijian .list a p {
    font-size: 0.26rem;
  }
}
.news-info-box .tuijian .list a span {
  display: block;
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
  margin-top: 0.06rem;
}
@media (max-width: 991px) {
  .news-info-box .tuijian .list a span {
    font-size: 0.24rem;
  }
}
.news-info-box .tuijian .list a .img {
  width: 100%;
  height: 2.18rem;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .news-info-box .tuijian .list a .img {
    height: 3.18rem;
  }
}
.news-info-box .tuijian .list a .img img {
  width: 100%;
  height: 100%;
  border-radius: 0.14rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}
.news-info-box .tuijian .list a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news-info-box .tuijian .list a:hover p {
  color: #5D80FE;
}
.news-info-box.case-info {
  display: block;
}
.news-info-box.case-info .cons {
  padding-right: 0;
  width: 100%;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
  -moz-box-flex: unset;
  -ms-flex: unset;
  flex: unset;
  border: 0;
}
.news-info-box.case-info .cons .tit,
.news-info-box.case-info .cons .times {
  text-align: center;
}
.news-info-box.case-info .tuijian {
  margin-left: 0;
  width: 100%;
  margin-top: 1rem;
}
.news-info-box.case-info .tuijian .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.news-info-box.case-info .tuijian .list a {
  width: 17%;
  margin-right: 3.75%;
  margin-top: 0.5rem;
  text-align: center;
}
.news-info-box.case-info .tuijian .list a:nth-child(5n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .news-info-box.case-info .tuijian .list a {
    width: 48%;
    margin-right: 4%;
    margin-top: 0.3rem;
  }
  .news-info-box.case-info .tuijian .list a:nth-child(5n) {
    margin-right: 4%;
  }
  .news-info-box.case-info .tuijian .list a:nth-child(2n) {
    margin-right: 0;
  }
}
.news-info-box.case-info .tuijian .list a .img {
  max-width: 100% !important;
  max-height: 272px !important;
  width: 14.16666667vw;
  height: 14.16666667vw;
  position: relative;
  overflow: hidden;
}
.news-info-box.case-info .tuijian .list a .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 45.68%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .news-info-box.case-info .tuijian .list a .img {
    width: 100%;
    height: 5rem;
    max-height: unset !important;
  }
}
@media (max-width: 767px) {
  .news-info-box.case-info .tuijian .list a .img {
    width: 100%;
    height: 3.24rem;
    max-height: unset !important;
  }
}
.news-info-box.product-info .tuijian .list a .img img {
  max-width: 90%;
  max-height: 90%;
}
.case-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.case-box .list {
  width: 23.125%;
  margin-right: 2.5%;
  margin-top: 0.5rem;
}
.case-box .list:nth-child(4n) {
  margin-right: 0;
}
.case-box .list .img {
  width: 100%;
  height: 1.88rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.05rem 0.1rem 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0.05rem 0.1rem 0px rgba(0, 0, 0, 0.07);
  border-radius: 0.12rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .case-box .list .img {
    height: 1.6rem;
  }
}
@media (max-width: 767px) {
  .case-box .list .img {
    height: 1.2rem;
  }
}
.case-box .list .img img {
  width: 100%;
  height: 100%;
}
.case-box .list p {
  text-align: center;
  font-weight: bold;
  font-size: 0.24rem;
  color: #333333;
  margin-top: 0.2rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.case-box .list:hover p {
  color: #5D80FE;
}
@media (max-width: 991px) {
  .case-box .list {
    width: 31%;
    margin-right: 3.5%;
    margin-top: 0.3rem;
  }
  .case-box .list:nth-child(4n) {
    margin-right: 3.5%;
  }
  .case-box .list:nth-child(3n) {
    margin-right: 0;
  }
}
.p-more {
  width: 1.6rem;
  height: 0.5rem;
  background: -webkit-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -moz-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -o-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: linear-gradient(227deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  border-radius: 0.25rem;
  border: 1px solid rgba(43, 49, 212, 0.3);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
  margin-top: 0.7rem;
}
@media (max-width: 991px) {
  .p-more {
    font-size: 0.26rem;
    width: 2rem;
    height: 0.6rem;
    border-radius: 0.35rem;
  }
}
.p-more i {
  width: 0.26rem;
  height: 0.26rem;
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.08rem;
}
.p-more i .icon {
  width: 0.12rem;
  height: 0.12rem;
  fill: #fff;
}
@media (max-width: 991px) {
  .p-more i .icon {
    width: 0.14rem;
    height: 0.14rem;
  }
}
.p-more i .icon path,
.p-more i .icon rect {
  fill: #fff;
}
@media (max-width: 991px) {
  .p-more i {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.about-js {
  margin-top: 0.8rem;
}
.about-js .conts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .about-js .conts {
    display: block;
  }
}
.about-js .conts .lef {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 300;
  font-size: 0.22rem;
  color: #000000;
  padding-top: 0.1rem;
  text-indent: 2em;
}
.about-js .conts .lef > p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .about-js .conts .lef {
    padding-top: 0;
    font-size: 0.28rem;
  }
}
.about-js .conts .img {
  width: 7.13rem;
  height: 3.89rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  border-radius: 0.14rem;
  overflow: hidden;
  margin-left: 0.42rem;
}
@media (max-width: 991px) {
  .about-js .conts .img {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 0.3rem;
  }
}
.about-js .conts .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.about-js .conts .img img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .about-js .conts .img img {
    height: auto;
  }
  .about-js .conts .img img:hover {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.about-js .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.7rem;
}
.about-js .list > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  margin-left: 0.6rem;
  padding-right: 0.6rem;
}
@media (max-width: 991px) {
  .about-js .list > li {
    margin-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.about-js .list > li:first-child {
  margin-left: 0;
}
.about-js .list > li:last-child {
  padding-right: 0;
}
.about-js .list > li::after {
  display: block;
  content: "";
  width: 0.02rem;
  height: 0.65rem;
  background: #C2C6D1;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
@media (max-width: 991px) {
  .about-js .list > li::after {
    height: 1rem;
  }
}
.about-js .list > li:last-child::after {
  display: none;
}
.about-js .list > li .tit {
  font-weight: bold;
  font-size: 0.24rem;
  color: #000000;
}
@media (max-width: 991px) {
  .about-js .list > li .tit {
    font-size: 0.28rem;
  }
}
.about-js .list > li .desc {
  font-weight: 400;
  font-size: 0.2rem;
  color: #333333;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .about-js .list > li .desc {
    font-size: 0.22rem;
  }
}
.about-jg {
  margin-top: 0.8rem;
}
.about-jg .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-jg .list .li {
  width: 23.125%;
  margin-right: 2.5%;
  margin-top: 0.5rem;
}
.about-jg .list .li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .about-jg .list .li {
    width: 48%;
    margin-right: 4%;
    margin-top: 0.3rem;
  }
  .about-jg .list .li:nth-child(2n) {
    margin-right: 0;
  }
}
.about-jg .list .li p {
  font-weight: bold;
  font-size: 0.24rem;
  color: #333333;
  margin-top: 0.2rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .about-jg .list .li p {
    font-size: 0.26rem;
  }
}
.about-jg .list .li span {
  display: block;
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .about-jg .list .li span {
    font-size: 0.22rem;
  }
}
.about-jg .list .li .img {
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  border-radius: 0.14rem;
  max-width: 100% !important;
  max-height: 202px !important;
  width: 19.27083333vw;
  height: 10.521875vw;
  overflow: hidden;
}
.about-jg .list .li .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .about-jg .list .li .img {
    width: 100%;
    height: 2.02rem;
  }
}
.about-jg .list .li:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.about-jg .list .li:hover p {
  color: #5D80FE;
}
.about-lc {
  margin-top: 0.8rem;
}
.about-lc .x-xia {
  padding-top: 1.16rem;
  position: relative;
}
@media (max-width: 767px) {
  .about-lc .x-xia {
    padding-top: 0.5rem;
  }
}
.about-lc .x-xia .x-bj {
  width: 66.4%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  font-weight: 900;
  font-size: 2.3rem;
  color: #F2F2F5;
  text-align: center;
  overflow: hidden;
}
.about-lc .x-xia .x-bj > i {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(216, 216, 216, 0)));
  background: -webkit-linear-gradient(bottom, #fff 0%, rgba(216, 216, 216, 0) 100%);
  background: -moz-linear-gradient(bottom, #fff 0%, rgba(216, 216, 216, 0) 100%);
  background: -o-linear-gradient(bottom, #fff 0%, rgba(216, 216, 216, 0) 100%);
  background: linear-gradient(360deg, #fff 0%, rgba(216, 216, 216, 0) 100%);
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-bj {
    width: 80%;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-bj {
    width: 100%;
    font-size: 1.3rem;
  }
}
.about-lc .x-xia .x-swiper1 {
  width: 31.72%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1580px) {
  .about-lc .x-xia .x-swiper1 {
    width: 41.72%;
  }
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper1 {
    width: 80%;
  }
}
.about-lc .x-xia .x-swiper1 .swiper-container .swiper-wrapper .swiper-slide {
  text-align: center;
}
.about-lc .x-xia .x-swiper1 .swiper-container .swiper-wrapper .swiper-slide span {
  font-size: 1.3rem;
  color: #2B31D4;
  font-weight: bold;
}
.about-lc .x-xia .x-swiper1 .swiper-container .swiper-wrapper .swiper-slide .x-p {
  color: #000;
  font-size: 0.18rem;
  margin-top: 0;
  text-align: left;
  font-weight: 300;
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper1 .swiper-container .swiper-wrapper .swiper-slide .x-p {
    font-size: 0.24rem;
    font-weight: 400;
  }
}
.about-lc .x-xia .x-swiper1 .public-prev,
.about-lc .x-xia .x-swiper1 .public-next {
  width: 0.54rem;
  height: 0.54rem;
  border: 1px solid #2B31D4;
  border-radius: 50%;
  position: absolute;
  left: -82%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.about-lc .x-xia .x-swiper1 .public-prev .jt,
.about-lc .x-xia .x-swiper1 .public-next .jt {
  width: 0.28rem;
  height: 0.28rem;
  fill: #2B31D4;
}
@media (max-width: 1580px) {
  .about-lc .x-xia .x-swiper1 .public-prev,
  .about-lc .x-xia .x-swiper1 .public-next {
    left: -59%;
  }
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper1 .public-prev,
  .about-lc .x-xia .x-swiper1 .public-next {
    left: -8%;
  }
}
.about-lc .x-xia .x-swiper1 .public-prev .jt {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.about-lc .x-xia .x-swiper1 .public-next {
  left: auto;
  right: -82%;
}
@media (max-width: 1580px) {
  .about-lc .x-xia .x-swiper1 .public-next {
    right: -59%;
  }
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper1 .public-next {
    right: -8%;
  }
}
.about-lc .x-xia .x-swiper2 {
  position: relative;
  margin-top: 1rem;
}
.about-lc .x-xia .x-swiper2 .swiper-container {
  padding-left: 3.2rem;
  padding-top: 15px;
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper2 .swiper-container {
    padding-left: 1.2rem;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container::before {
  content: "";
  width: 100%;
  border-top: 1px dashed #cbcdcc;
  position: absolute;
  left: 0;
  top: 8px;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container::before {
    top: 10px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container::after {
  content: "";
  width: 3.4rem;
  height: 1px;
  background-color: #2B31D4;
  position: absolute;
  left: 0;
  top: 8px;
}
@media (max-width: 991px) {
  .about-lc .x-xia .x-swiper2 .swiper-container::after {
    width: 1.4rem;
  }
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container::after {
    width: 1.4rem;
    top: 10px;
  }
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container {
    padding-left: 0.8rem;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide {
  cursor: pointer;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on .x-i1::after {
  opacity: 1;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on .x-i1::before {
  border: 1px dashed #2B31D4;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on .x-i2 {
  -webkit-animation: xswi2 4.8s linear forwards;
  -moz-animation: xswi2 4.8s linear forwards;
  -o-animation: xswi2 4.8s linear forwards;
  animation: xswi2 4.8s linear forwards;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on span {
  color: #2B31D4;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on2 .x-i3 {
  display: block;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on2 span {
  color: #00110f;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide.on2 .x-i1::before {
  border-color: #2B31D4;
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1 {
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 100%;
  margin-left: 13px;
  margin-top: -14px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1580px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1 {
    margin-left: 9px;
  }
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1 {
    width: 12px;
    height: 12px;
    margin-top: -10px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #2B31D4;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1::after {
    width: 8px;
    height: 8px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #cbcdcc;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i1::before {
    width: 12px;
    height: 12px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i2 {
  width: 0;
  height: 1px;
  position: absolute;
  left: 16px;
  top: -7px;
  background-color: #2B31D4;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i2 {
    top: -5px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i3 {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 16px;
  top: -7px;
  background-color: #2B31D4;
  display: none;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide .x-i3 {
    top: -5px;
  }
}
.about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide span {
  display: inline-block;
  margin-top: 0.1rem;
  color: #00110f;
}
@media (max-width: 767px) {
  .about-lc .x-xia .x-swiper2 .swiper-container .swiper-wrapper .swiper-slide span {
    margin-left: -0.05rem;
  }
}
@-webkit-keyframes xswi2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes xswi2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@-o-keyframes xswi2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes xswi2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.solution-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0.3rem;
}
.solution-box .item {
  display: block;
  width: 48.75%;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .solution-box .item {
    margin-top: 0.3rem;
  }
}
.solution-box .item .tit {
  font-weight: bold;
  font-size: 0.24rem;
  color: #333333;
  margin-top: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .solution-box .item .tit {
    font-size: 0.28rem;
    margin-top: 0.24rem;
  }
}
.solution-box .item .desc {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .solution-box .item .desc {
    font-size: 0.22rem;
    margin-top: 0.05rem;
  }
}
.solution-box .item .img {
  width: 100%;
  height: 4.25rem;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.26);
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .solution-box .item .img {
    height: 3.25rem;
  }
}
@media (max-width: 767px) {
  .solution-box .item .img {
    height: 2.25rem;
  }
}
.solution-box .item .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.solution-box .item:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.solution-box .item:hover .tit {
  color: #5D80FE;
}
.industry-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .industry-box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.industry-box .item {
  display: block;
  width: 32%;
  margin-bottom: 0.5rem;
  margin-right: 2%;
  -webkit-box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0.06rem 0.1rem 0px rgba(0, 0, 0, 0.06);
  border-radius: 0.14rem;
  overflow: hidden;
  padding-bottom: 0.26rem;
}
.industry-box .item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .industry-box .item {
    margin-top: 0.3rem;
    width: 48%;
    margin-right: unset;
  }
}
.industry-box .item .tit {
  font-weight: bold;
  font-size: 0.24rem;
  color: #333333;
  margin-top: 0.15rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .industry-box .item .tit {
    font-size: 0.28rem;
    margin-top: 0.24rem;
  }
}
@media (max-width: 767px) {
  .industry-box .item .tit {
    padding: 0 0.2rem;
  }
}
.industry-box .item .desc {
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  margin-top: 0.07rem;
  padding: 0 0.15rem;
}
@media (max-width: 991px) {
  .industry-box .item .desc {
    font-size: 0.22rem;
    margin-top: 0.05rem;
  }
}
@media (max-width: 767px) {
  .industry-box .item .desc {
    padding: 0 0.2rem;
  }
}
.industry-box .item .img {
  width: 100%;
  height: 2rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .industry-box .item .img {
    height: 2.6rem;
  }
}
@media (max-width: 767px) {
  .industry-box .item .img {
    height: 1.8rem;
  }
}
.industry-box .item .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.industry-box .item .img > div {
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}
.industry-box .item .img > div > div {
  width: 62.57%;
  min-height: 50%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.14rem;
  -webkit-backdrop-filter: blur(0.04rem);
  backdrop-filter: blur(0.04rem);
  text-align: center;
  padding: 0.15rem 0.1rem;
  font-weight: bold;
  font-size: 0.24rem;
  color: #000000;
}
.industry-box .item:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.industry-box .item:hover .tit {
  color: #5D80FE;
}
.icon-box {
  width: 0.38rem;
  height: 0.38rem;
  background: #F0F0F0;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.icon-box .icon {
  width: 0.2rem;
  height: 0.2rem;
  fill: #B7B7B7;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.8rem;
}
@media (max-width: 991px) {
  .product-box {
    display: block;
  }
}
@media (max-width: 991px) {
  .product-box .product-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.product-box .product-left .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 3.14rem;
  height: 1.1rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  border-radius: 0.12rem;
  margin-bottom: 0.4rem;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-box .product-left .item .tit {
  font-weight: 400;
  font-size: 0.24rem;
  color: #000000;
  padding: 0 0.23rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .product-box .product-left .item .tit {
    font-size: 0.26rem;
  }
}
.product-box .product-left .item.on,
.product-box .product-left .item:hover {
  border-color: #2B31D4;
  background: -webkit-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -moz-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -o-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: linear-gradient(227deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
}
.product-box .product-left .item.on .icon-box,
.product-box .product-left .item:hover .icon-box {
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
}
.product-box .product-left .item.on .icon-box .icon,
.product-box .product-left .item:hover .icon-box .icon {
  fill: #fff;
}
.product-box .product-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.74rem;
}
@media (max-width: 991px) {
  .product-box .product-right {
    margin-left: 0;
  }
}
.product-box .product-right .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .product-box .product-right .list {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.product-box .product-right .list .p-more {
  margin-top: 0.3rem;
}
.product-box .product-right .list a {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 0.5rem;
  text-align: center;
}
.product-box .product-right .list a:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .product-box .product-right .list a {
    width: 48%;
    margin-top: 0.3rem;
    margin-right: unset;
    margin-bottom: 0;
  }
}
.product-box .product-right .list a p {
  font-weight: bold;
  font-size: 0.28rem;
  color: #333333;
  margin-top: 0.3rem;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-box .product-right .list a .img {
  width: 100%;
  height: 3.7rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.14rem;
  -webkit-box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  box-shadow: 0px 0px 0.07rem 0px rgba(0, 0, 0, 0.11);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.product-box .product-right .list a .img img {
  max-width: 90%;
  max-height: 90%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-box .product-right .list a .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 45.68%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .product-box .product-right .list a .img {
    width: 100%;
    height: 3.24rem;
  }
}
.product-box .product-right .list a:hover .img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.product-box .product-right .list a:hover p {
  color: #5D80FE;
}
.product-info .cons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .product-info .cons {
    display: block;
  }
}
.product-info .cons .img {
  width: 6rem;
  min-width: 6rem;
  height: 6rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.04rem 0.09rem 0.02rem rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0.04rem 0.09rem 0.02rem rgba(0, 0, 0, 0.06);
  border-radius: 0.14rem;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-info .cons .img {
    width: 100%;
    height: auto;
  }
}
.product-info .cons .img img {
  max-width: 90%;
  max-height: 90%;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .product-info .cons .img img {
    height: unset;
  }
}
.product-info .cons .img::after {
  display: block;
  content: "";
  width: 100%;
  height: 45.67%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.2)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product-info .cons .img:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 991px) {
  .product-info .cons .img:hover img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.product-info .cons .cons-r {
  margin-left: 0.7rem;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r {
    margin-left: 0;
    margin-top: 0.3rem;
  }
}
.product-info .cons .cons-r .tit {
  font-weight: bold;
  font-size: 0.5rem;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r .tit {
    font-size: 0.4rem;
  }
}
.product-info .cons .cons-r .desc {
  font-weight: bold;
  font-size: 0.28rem;
  color: #333333;
  text-align: left;
  margin-top: 0.3rem;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r .desc {
    margin-top: 0.15rem;
  }
}
.product-info .cons .cons-r .uls > li {
  font-weight: 400;
  font-size: 0.24rem;
  color: #333333;
  margin-top: 0.2rem;
}
.product-info .cons .cons-r .uls > li .icon {
  float: left;
  min-width: 0.2rem;
  height: 100%;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r .uls > li .icon {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.product-info .cons .cons-r .uls > li .icon img {
  width: 0.2rem;
  height: 0.2rem;
  margin-top: 0.09rem;
}
.product-info .cons .cons-r .uls > li span {
  display: block;
  padding-left: 0.32rem;
}
.product-info .cons .cons-r .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-info .cons .cons-r .btns .p-more {
  width: auto;
  height: auto;
  padding: 0.13rem 0.3rem;
  border-radius: 0.4rem;
  margin-left: 1.18rem;
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r .btns .p-more {
    margin-left: 0;
  }
}
.product-info .cons .cons-r .btns .btn {
  padding: 0.13rem 0.34rem;
  font-weight: 400;
  font-size: 0.28rem;
  color: #333333;
  background: #EAECF2;
  border-radius: 0.16rem;
  margin-right: 0.34rem;
  margin-top: 0.6rem;
  border: 1px solid #EAECF2;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.product-info .cons .cons-r .btns .btn.on {
  background: -webkit-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -moz-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -o-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: linear-gradient(227deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  border: 1px solid #2B31D4;
}
@media (max-width: 991px) {
  .product-info .cons .cons-r .btns .btn {
    margin-top: 0.5rem;
  }
}
.product-info .detail-list {
  margin-top: 0.5rem;
}
@media (max-width: 991px) {
  .product-info .detail-list {
    margin-top: 0.5rem;
  }
}
.product-info .detail-list > li {
  display: none;
  padding: 0.4rem;
  background: #F2F3F8;
  border-radius: 0.32rem;
  position: relative;
}
@media (max-width: 991px) {
  .product-info .detail-list > li {
    padding: 0.26rem;
  }
}
.product-info .detail-list > li::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.3rem;
  border-bottom: 0.4rem solid #F2F3F8;
  border-left: 0.8rem solid transparent;
  left: 6.35rem;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-info .detail-list > li::after {
    left: 0.3rem;
  }
}
.product-info .detail-list > li:nth-child(1) {
  display: block;
}
.product-info .detail-list > li:nth-child(2)::after {
  left: 8.5rem;
}
@media (max-width: 991px) {
  .product-info .detail-list > li:nth-child(2)::after {
    left: 2.4rem;
  }
}
.product-info .detail-list > li:nth-child(3)::after {
  left: 10.8rem;
}
@media (max-width: 991px) {
  .product-info .detail-list > li:nth-child(3)::after {
    left: 4.4rem;
  }
}
.product-info .detail-list > li .uls > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 0.22rem;
  color: #333333;
  margin-top: 0.18rem;
}
@media (max-width: 991px) {
  .product-info .detail-list > li .uls > li {
    font-size: 0.24rem;
  }
}
.product-info .detail-list > li .uls > li:first-child {
  margin-top: 0;
}
.product-info .detail-list > li .uls > li img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.16rem;
}
@media (max-width: 991px) {
  .product-info .detail-list > li .uls > li img {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.product-info .detail-list > li .canshu {
  width: 100%;
  background: #F9FAFD;
  border-radius: 0.24rem;
  overflow: hidden;
}
.product-info .detail-list > li .canshu thead tr th {
  padding: 0.22rem 0;
  background: #E4E6EE;
  padding-left: 2.4rem;
  font-weight: bold;
  font-size: 0.22rem;
  color: #333333;
}
@media (max-width: 991px) {
  .product-info .detail-list > li .canshu thead tr th {
    font-size: 0.26rem;
    padding-left: 0.4rem;
  }
}
.product-info .detail-list > li .canshu tbody tr {
  border-bottom: 1px solid #DFDFDF;
}
.product-info .detail-list > li .canshu tbody tr:last-child {
  border-bottom: 0;
}
.product-info .detail-list > li .canshu tbody tr td {
  padding: 0.22rem 0;
  padding-left: 2.4rem;
  font-weight: 400;
  font-size: 0.22rem;
  color: #333333;
}
@media (max-width: 991px) {
  .product-info .detail-list > li .canshu tbody tr td {
    font-size: 0.26rem;
    padding: 0.22rem 0.26rem;
  }
}
.product-info .detail-list > li .canshu tbody tr td:last-child {
  padding-left: 2.3rem;
  color: #131787;
}
@media (max-width: 991px) {
  .product-info .detail-list > li .canshu tbody tr td:last-child {
    padding: 0.22rem 0.26rem;
  }
}
.job-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-top: 0.8rem;
}
@media (max-width: 991px) {
  .job-box {
    display: block;
    margin-top: 0.4rem;
  }
}
.job-box .job-left {
  width: 3rem;
}
@media (max-width: 991px) {
  .job-box .job-left {
    width: 100%;
  }
}
.job-box .job-left .job-top {
  width: 100%;
  height: 0.68rem;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  border-radius: 0.12rem;
}
@media (max-width: 991px) {
  .job-box .job-left .job-top {
    height: 0.8rem;
  }
}
.job-box .job-left .job-top span {
  margin-left: 0.3rem;
  font-weight: bold;
  font-size: 0.18rem;
  color: #000000;
}
@media (max-width: 991px) {
  .job-box .job-left .job-top span {
    font-size: 0.28rem;
  }
}
.job-box .job-left .job-top a {
  margin-right: 0.3rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #666;
}
@media (max-width: 991px) {
  .job-box .job-left .job-top a {
    font-size: 0.28rem;
  }
}
.job-box .job-left .job-bot {
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0.03rem 0.08rem 0.02rem rgba(0, 0, 0, 0.1);
  border-radius: 0.12rem;
  margin-top: 0.2rem;
  padding: 0.3rem 0;
}
@media (max-width: 991px) {
  .job-box .job-left .job-bot {
    margin-top: 0.3rem;
    height: auto;
  }
}
.job-box .job-left .job-bot .tit {
  padding: 0 0.3rem;
  font-size: 0.24rem;
  color: #000000;
  font-weight: bold;
}
@media (max-width: 991px) {
  .job-box .job-left .job-bot .tit {
    font-size: 0.3rem;
  }
}
.job-box .job-left .job-bot .job-class {
  padding: 0 0.3rem;
  margin-top: 0.1rem;
}
.job-box .job-left .job-bot .job-class > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.15rem 0;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
}
@media (max-width: 991px) {
  .job-box .job-left .job-bot .job-class > a {
    font-size: 0.28rem;
  }
}
.job-box .job-left .job-bot .job-class > a > i {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 0.03rem;
  border: 1px solid #999999;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .job-box .job-left .job-bot .job-class > a > i {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.job-box .job-left .job-bot .job-class > a > i .icon {
  width: 0.12rem;
  height: 0.12rem;
  display: none;
}
@media (max-width: 991px) {
  .job-box .job-left .job-bot .job-class > a > i .icon {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.job-box .job-left .job-bot .job-class > a.on > i {
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
  border-color: #027AC5;
}
.job-box .job-left .job-bot .job-class > a.on > i .icon {
  display: block;
  fill: #fff;
}
.job-box .job-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.4rem;
}
@media (max-width: 991px) {
  .job-box .job-right {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.job-box .job-right .job-list {
  width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0.17rem 0.02rem rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 0.17rem 0.02rem rgba(0, 0, 0, 0.06);
  border-radius: 0.14rem;
  padding: 0.4rem;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list {
    margin-top: 0.3rem;
  }
}
.job-box .job-right .job-list:first-child {
  margin-top: 0;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list:first-child {
    margin-top: 0.3rem;
  }
}
.job-box .job-right .job-list .job-tit {
  font-weight: bold;
  font-size: 0.3rem;
  color: #000000;
}
.job-box .job-right .job-list .job-tit span {
  font-weight: 400;
  font-size: 0.18rem;
  color: #999999;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list .job-tit span {
    font-size: 0.22rem;
  }
}
.job-box .job-right .job-list .tags > span {
  display: inline-block;
  margin-right: 0.1rem;
  padding: 0.04rem 0.18rem;
  background: #F3F3F3;
  border-radius: 0.2rem;
  font-weight: 400;
  font-size: 0.14rem;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list .tags > span {
    font-size: 0.22rem;
  }
}
.job-box .job-right .job-list .tags > span:last-child {
  margin-right: 0;
}
.job-box .job-right .job-list .yaoqiu {
  margin-top: 0.18rem;
}
.job-box .job-right .job-list .yaoqiu .tit {
  font-weight: bold;
  font-size: 0.2rem;
  color: #000000;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list .yaoqiu .tit {
    font-size: 0.28rem;
  }
}
.job-box .job-right .job-list .yaoqiu .desc {
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  margin-top: 0.07rem;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list .yaoqiu .desc {
    font-size: 0.26rem;
  }
}
.job-box .job-right .job-list .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.job-box .job-right .job-list .btns .btn {
  padding: 0.12rem 0.24rem;
  font-weight: 400;
  font-size: 0.18rem;
  color: #333333;
  background: #EAECF2;
  border-radius: 0.08rem;
  margin-top: 0.24rem;
  border: 1px solid #EAECF2;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.job-box .job-right .job-list .btns .btn.on {
  background: -webkit-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -moz-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -o-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: linear-gradient(227deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  border: 1px solid #2B31D4;
}
@media (max-width: 991px) {
  .job-box .job-right .job-list .btns .btn {
    margin-top: 0.3rem;
    font-size: 0.26rem;
  }
}
.curtain {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain .curtain_box {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  background: #fff;
  overflow: hidden;
  z-index: 10000;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 0.18rem;
}
.curtain .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
  background: #1c4798;
}
.curtain .curtain_box .curtain_title .close_tc {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
}
.curtain .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.curtain .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.curtain2 .curtain_box .x-con {
  width: 11rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con {
    width: 6.8rem;
  }
}
.curtain2 .curtain_box .x-con .x-le {
  width: 31.82%;
  background-position: bottom center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  padding: 0.39rem 0.37rem 0.2rem 0.37rem;
}
@media (max-width: 991px) {
  .curtain2 .curtain_box .x-con .x-le {
    display: none;
  }
}
.curtain2 .curtain_box .x-con .x-le .logo {
  width: 1.01rem;
}
.curtain2 .curtain_box .x-con .x-le .x-tit {
  color: #333;
  font-size: 0.33rem;
  font-weight: bold;
  margin-top: 0.32rem;
}
.curtain2 .curtain_box .x-con .x-le .x-ph {
  margin-top: 0.05rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #333333;
}
.curtain2 .curtain_box .x-con .x-le .x-xia {
  margin-top: 0.9rem;
}
.curtain2 .curtain_box .x-con .x-le .x-xia .x-p {
  margin-top: 0.2rem;
}
.curtain2 .curtain_box .x-con .x-le .x-xia .x-p p {
  font-size: 0.2rem;
  color: #333;
  margin-bottom: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.curtain2 .curtain_box .x-con .x-le .x-xia .x-p p i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 0.18rem;
  height: 0.18rem;
  margin-right: 0.13rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.curtain2 .curtain_box .x-con .x-le .x-xia .x-p p i svg,
.curtain2 .curtain_box .x-con .x-le .x-xia .x-p p i img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.curtain2 .curtain_box .x-con .x-ri {
  width: 68.18%;
  padding: 0.5rem 0.54rem 0.54rem;
}
@media (max-width: 991px) {
  .curtain2 .curtain_box .x-con .x-ri {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri {
    padding: 0.6rem 0.4rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-tit {
  font-weight: bold;
  color: #000;
  font-size: 0.35rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}
.curtain2 .curtain_box .x-con .x-ri .x-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.44rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-item {
  width: 48.33%;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-item.x-item2 {
  width: 100%;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-item .x-item-tix {
  font-weight: bold;
  font-size: 0.2rem;
  color: #333333;
  margin-bottom: 0.14rem;
  padding-left: 0.2rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-item .x-item-tix {
    font-size: 0.28rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-item .x-item-tix span {
  color: #EC272C;
  margin-right: 0.02rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp {
  width: 100%;
  background-color: #f8f8f8;
  height: 0.6rem;
  border-radius: 1rem;
  margin-bottom: 0.3rem;
  font-size: 0.16rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-inp {
    width: 100%;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp2 {
  width: 100%;
  border: 1px solid #2B31D4;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 {
  height: 1.5rem;
  width: 100%;
  border-radius: 0.25rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea {
  display: block;
  height: 100%;
  width: 100%;
  padding: 0.15rem 0.2rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea::-webkit-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea:-moz-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea::-moz-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea:-ms-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea::-ms-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp.x-inp3 textarea::placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input {
  width: 100%;
  height: 100%;
  padding: 0 0.2rem;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input::-webkit-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input:-moz-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input::-moz-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input:-ms-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input::-ms-input-placeholder {
  color: #999999;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp input::placeholder {
  color: #999999;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-inp {
    height: 0.8rem;
    font-size: 0.26rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala {
  width: 100%;
  position: relative;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 0 0.2rem;
  position: relative;
  cursor: pointer;
  line-height: 0.6rem;
  font-size: 0.16rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp {
    font-size: 0.26rem;
    line-height: 0.8rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp span {
  color: #2B31D4;
  font-size: 0.2rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp span {
    font-size: 0.26rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp i {
  display: inline-block;
  margin-left: 0.06rem;
  padding-bottom: 0.01rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp i svg {
  display: block;
  width: 0.14rem;
  height: 0.14rem;
  fill: #2B31D4;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp i svg path,
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp i svg rect {
  fill: #2B31D4;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala .x-sp i svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background-color: #fff;
  z-index: 5;
  -webkit-box-shadow: 0 0 0.07rem rgba(0, 0, 0, 0.11);
  box-shadow: 0 0 0.07rem rgba(0, 0, 0, 0.11);
  padding: 0.05rem 0;
  display: none;
  border-radius: 0.08rem;
  overflow: hidden;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala ul li {
  padding: 0.1rem 0.2rem;
  color: #666;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-inp .x-xiala ul li:hover {
  color: #5D80FE;
  background-color: #f5f5f5;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp.on i {
  background: -webkit-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -moz-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: -o-linear-gradient(229deg, #4708A2 0%, #027AC5 100%);
  background: linear-gradient(221deg, #4708A2 0%, #027AC5 100%);
  border-color: #027AC5;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp.on i .icon {
  opacity: 1;
  fill: #fff;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp i {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 0.2rem;
  height: 0.2rem;
  border: 1px solid #999;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0.1rem;
  border-radius: 0.04rem;
  cursor: pointer;
  margin-top: 0.06rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-pp i {
    width: 0.28rem;
    height: 0.28rem;
    margin-top: 0.08rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp i .icon {
  width: 0.14rem;
  height: 0.14rem;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-pp i .icon {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp p {
  font-weight: 400;
  font-size: 0.16rem;
  color: #999999;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .x-pp p {
    font-size: 0.26rem;
  }
}
.curtain2 .curtain_box .x-con .x-ri .x-form .x-pp p a {
  color: #2B31D4;
}
.curtain2 .curtain_box .x-con .x-ri .x-form .btn {
  width: 1.6rem;
  height: 0.5rem;
  background: -webkit-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -moz-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: -o-linear-gradient(223deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  background: linear-gradient(227deg, rgba(71, 8, 162, 0.036) 0%, rgba(2, 122, 197, 0.162) 100%);
  border-radius: 0.5rem;
  border: 1px solid #2B31D4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.18rem;
  color: #000000;
  margin: auto;
  margin-top: 0.59rem;
}
@media (max-width: 767px) {
  .curtain2 .curtain_box .x-con .x-ri .x-form .btn {
    font-size: 0.28rem;
    width: 2.2rem;
    height: 0.75rem;
  }
}
.public-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.57rem;
}
.public-page .zz-box,
.public-page .p-num {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.public-page a {
  height: 0.4rem;
  min-width: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0.05rem;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid #D9DFDF;
  color: #333;
  cursor: pointer;
  padding: 0 0.12rem;
  border-radius: 0.06rem;
}
@media (max-width: 767px) {
  .public-page a {
    height: 0.46rem;
    min-width: 0.46rem;
    font-size: 0.28rem;
  }
}
.public-page a .cls-1 {
  opacity: 1;
}
.public-page a.prev img,
.public-page a.prev svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  margin-right: 5px;
}
.public-page a.next img,
.public-page a.next svg {
  margin-left: 5px;
}
.public-page a:hover {
  color: #fff;
  border-color: #5D80FE;
  background: #5D80FE;
}
.public-page a:hover p {
  color: #fff;
}
.public-page a:hover svg path {
  fill: #fff;
}
.public-page a img,
.public-page a svg {
  width: 6px;
  height: auto;
}
@media (max-width: 767px) {
  .public-page a img,
  .public-page a svg {
    width: 4px;
  }
}
.public-page a .img2 {
  display: none;
}
.public-page a svg path {
  fill: #333;
}
.public-page .on {
  color: #fff;
  border-color: #5D80FE;
  background: #5D80FE;
}
.public-page .on p {
  color: #fff;
}
.public-page input {
  border: 1px solid #efefef;
  text-align: center;
  width: 0.7rem;
  height: 0.44rem;
}
@media (max-width: 1580px) {
  .public-page input {
    width: 1rem;
  }
}
