@charset "utf-8";
:root {
  --color: #245DAB;
  --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;
}
@media (max-width: 991px) {
  html ::-webkit-scrollbar {
    display: none;
  }
}
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: #245DAB;
}
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';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #F9FAFD;
}
@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;
}
input:-internal-autofill-previewed,
input:-internal-autofill-selected,
textarea:-internal-autofill-previewed,
textarea:-internal-autofill-selected {
  -webkit-transition: background-color 5000s ease-out 0.5s;
  -o-transition: background-color 5000s ease-out 0.5s;
  -moz-transition: background-color 5000s ease-out 0.5s;
  transition: background-color 5000s ease-out 0.5s;
}
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: 16.5rem;
  max-width: 1650px;
  margin: auto;
}
@media (max-width: 991px) {
  .width {
    width: 92%;
  }
}
.font14 {
  font-size: 0.14rem;
}
@media (max-width: 991px) {
  .font14 {
    font-size: 0.14rem;
  }
}
.font16 {
  font-size: 0.16rem;
}
@media (max-width: 991px) {
  .font16 {
    font-size: 0.18rem;
  }
}
.font18 {
  font-size: 0.18rem;
}
@media (max-width: 991px) {
  .font18 {
    font-size: 0.2rem;
  }
}
.font20 {
  font-size: 0.2rem;
}
@media (max-width: 991px) {
  .font20 {
    font-size: 0.22rem;
  }
}
.font22 {
  font-size: 0.22rem;
}
@media (max-width: 991px) {
  .font22 {
    font-size: 0.22rem;
  }
}
.font24 {
  font-size: 0.24rem;
}
@media (max-width: 991px) {
  .font24 {
    font-size: 0.24rem;
  }
}
.font26 {
  font-size: 0.26rem;
}
@media (max-width: 991px) {
  .font26 {
    font-size: 0.26rem;
  }
}
.font28 {
  font-size: 0.28rem;
}
@media (max-width: 991px) {
  .font28 {
    font-size: 0.28rem;
  }
}
.font30 {
  font-size: 0.3rem;
}
@media (max-width: 991px) {
  .font30 {
    font-size: 0.3rem;
  }
}
.font32 {
  font-size: 0.32rem;
}
@media (max-width: 991px) {
  .font32 {
    font-size: 0.32rem;
  }
}
.font34 {
  font-size: 0.34rem;
}
@media (max-width: 991px) {
  .font34 {
    font-size: 0.34rem;
  }
}
.font35 {
  font-size: 0.35rem;
}
@media (max-width: 991px) {
  .font35 {
    font-size: 0.35rem;
  }
}
.font36 {
  font-size: 0.36rem;
}
@media (max-width: 991px) {
  .font36 {
    font-size: 0.36rem;
  }
}
.font38 {
  font-size: 0.38rem;
}
@media (max-width: 991px) {
  .font38 {
    font-size: 0.38rem;
  }
}
.font40 {
  font-size: 0.4rem;
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.4rem;
  }
}
.font42 {
  font-size: 0.42rem;
}
@media (max-width: 991px) {
  .font42 {
    font-size: 0.42rem;
  }
}
.font50 {
  font-size: 0.5rem;
}
@media (max-width: 991px) {
  .font50 {
    font-size: 0.5rem;
  }
}
.font64 {
  font-size: 0.64rem;
}
@media (max-width: 991px) {
  .font64 {
    font-size: 0.6rem;
  }
}
.font120 {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .font120 {
    font-size: 0.6rem;
  }
}
.marginL30 {
  margin-left: 0.3rem;
}
.titles {
  text-align: center;
  font-weight: 500;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  color: #333;
}
@media (max-width: 991px) {
  .titles {
    padding-top: 0.8rem;
    padding-bottom: 0.5rem;
  }
}
.titles > p {
  color: #999;
  font-weight: 300;
  padding-top: 0.04rem;
}
.titles.white {
  color: #fff;
}
.titles.white > p {
  color: #fff;
}
.pc {
  display: block;
}
@media (max-width: 991px) {
  .pc {
    display: none !important;
  }
}
.wap {
  display: none;
}
@media (max-width: 991px) {
  .wap {
    display: block;
  }
}
.pc-img {
  display: block;
}
@media (max-width: 991px) {
  .pc-img {
    display: none;
  }
}
.wap-img {
  display: none;
}
@media (max-width: 991px) {
  .wap-img {
    display: block;
  }
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
.pc-header {
  width: 100%;
  height: 1.2rem;
  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) {
  .pc-header {
    display: none;
  }
}
.pc-header .pc-n {
  height: 100%;
}
.pc-header .logo {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 0.48rem;
  display: block;
}
.pc-header .logo .svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.pc-header .logo .svg path,
.pc-header .logo .svg rect,
.pc-header .logo .svg polygon {
  fill: #fff;
}
.pc-header .logo .svg .org {
  fill: #F4A122;
}
.pc-header .pc-menu {
  height: 100%;
  margin-left: 1.29rem;
  
}
.pc-header .pc-menu > li {
  height: 100%;
  padding-left: 0.3rem;
  position: relative;
}

.pc-header .pc-menu > li > a {
  color: #fff;
  height: 100%;
  white-space: nowrap;
  font-weight: 500;
  position: relative;
  -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;
}
.pc-header .pc-menu > li > a .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.08rem;
  margin-top: 0.03rem;
  -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;
}
.pc-header .pc-menu > li > a .svg rect,
.pc-header .pc-menu > li > a .svg path {
  fill: #fff;
}
.pc-header .pc-menu > li .pc-menu-child {
  position: absolute;
  top: 0.89rem;
  right: -0.09rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  -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;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease;
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
/* .pc-header .pc-menu > li .pc-menu-child > li {
  padding: 0.04rem 0;
} */
.pc-header .pc-menu > li .pc-menu-child > li > a {
  display: block;
  padding: 0.1rem 0.28rem;
  color: #333;
  font-weight: 400;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pc-header .pc-menu > li .pc-menu-child > li > a:hover {
  color: #F4A122;
  background: rgba(244, 161, 34, 0.1);
}
.pc-header .pc-menu > li.on > a {
  color: #F4A122;
}
.pc-header .pc-menu > li.on > a .svg {
  fill: #F4A122;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pc-header .pc-menu > li.on > a .svg rect,
.pc-header .pc-menu > li.on > a .svg path {
  fill: #F4A122;
}
.pc-header .pc-menu > li:hover > a {
  color: #F4A122;
}
.pc-header .pc-menu > li:hover > a .svg {
  fill: #F4A122;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.pc-header .pc-menu > li:hover > a .svg rect,
.pc-header .pc-menu > li:hover > a .svg path {
  fill: #F4A122;
}
.pc-header .pc-menu > li:hover .pc-menu-child {
  opacity: 1;
  visibility: visible;
}
.pc-header .pc-menu > li:hover .pc-menu-child > li > a {
  pointer-events: auto;
}

.pc-header .right {
  display: flex;
  align-items: center;
  gap: 0 .08rem;
}
.pc-header .pc-phone {
  color: #fff;
  white-space: nowrap;
}
/* .pc-header .pc-langu {
  display: block;
  width: 0.24rem;
  margin-left: 0.16rem;
} */

.pc-header .change-language {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.16rem;
}

.pc-header .change-language .change-tip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}

.pc-header .change-language .change-tip img {
  width: 0.24rem;
  height: 0.24rem;
  object-fit: contain;
}

.pc-header .change-language:hover {
  background: #428EF7;
  border-radius: 0.4rem 0.4rem 0 0;
}

.pc-header .change-language .change-item {
  display: none;
  position: absolute;
  top: 0.4rem;
  right: 0;
  background: #428EF7;
  border-radius: 0 0 0.4rem 0.4rem;
  /* box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.15); */
  padding: .02rem 0 0.08rem 0;
  min-width: 0.4rem;
  overflow: hidden;
}

.pc-header .change-language:hover .change-item {
  display: block;
}

.pc-header .change-language .change-item span {
  display: block;
  padding: 0.04rem 0;
  color: #fff;
  font-size: 0.14rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.1s linear;
}

.pc-header .change-language .change-item span:hover {
  transform: translateY(-.02rem);
  color: #fff;
}


.pc-header .pc-langu .svg {
  width: initial;
  height: 100%;
  fill: #fff;
}
.pc-header .pc-langu .svg path,
.pc-header .pc-langu .svg rect,
.pc-header .pc-langu .svg polygon {
  fill: #fff;
}
.pc-header .pc-langu.lange-cn .svg .cn {
  fill: #F4A122;
}
.pc-header .pc-langu.lange-cn .svg .en {
  fill: #fff;
}
.pc-header .pc-langu.lange-en .svg .cn {
  fill: #fff;
}
.pc-header .pc-langu.lange-en .svg .en {
  fill: #F4A122;
}
.pc-header.whites {
  background: #fff;
}
.pc-header.whites .logo .svg {
  fill: #245DAB;
}
.pc-header.whites .logo .svg path,
.pc-header.whites .logo .svg rect,
.pc-header.whites .logo .svg polygon {
  fill: #245DAB;
}
.pc-header.whites .logo .svg .org {
  fill: #F4A122;
}
.pc-header.whites .pc-menu > li > a {
  color: #000;
}
.pc-header.whites .pc-menu > li > a .svg {
  fill: #000;
}
.pc-header.whites .pc-menu > li > a .svg rect,
.pc-header.whites .pc-menu > li > a .svg path {
  fill: #000;
}
.pc-header.whites .pc-menu > li .pc-menu-child > li > a:hover {
  color: #428EF7;
  background: rgba(66, 142, 247, 0.1);
}
.pc-header.whites .pc-menu > li.on > a {
  color: #245DAB;
}
.pc-header.whites .pc-menu > li.on > a .svg {
  fill: #245DAB;
}
.pc-header.whites .pc-menu > li.on > a .svg rect,
.pc-header.whites .pc-menu > li.on > a .svg path {
  fill: #245DAB;
}
.pc-header.whites .pc-menu > li.on > a::after {
  content: "";
  width: 0.6rem;
  height: 3px;
  background: #245DAB;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
.pc-header.whites .pc-menu > li:hover > a {
  color: #245DAB;
}
.pc-header.whites .pc-menu > li:hover > a .svg {
  fill: #245DAB;
}
.pc-header.whites .pc-menu > li:hover > a .svg rect,
.pc-header.whites .pc-menu > li:hover > a .svg path {
  fill: #245DAB;
}
.pc-header.whites .pc-phone {
  margin-left: 0.4rem;
  color: #333;
}
.pc-header.whites .pc-langu .svg {
  fill: #333;
}
.pc-header.whites .pc-langu .svg path,
.pc-header.whites .pc-langu .svg rect,
.pc-header.whites .pc-langu .svg polygon {
  fill: #333;
}
.pc-header.whites .pc-langu.lange-cn .svg .cn {
  fill: #F4A122;
}
.pc-header.whites .pc-langu.lange-cn .svg .en {
  fill: #333;
}
.pc-header.whites .pc-langu.lange-en .svg .cn {
  fill: #333;
}
.pc-header.whites .pc-langu.lange-en .svg .en {
  fill: #F4A122;
}
.wap-header {
  display: none;
  width: 100%;
  height: 1rem;
  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) {
  .wap-header {
    display: block;
  }
}
.wap-header .wap-n {
  height: 100%;
}
.wap-header .wap-n .logo {
  display: block;
  width: 2.6rem;
  height: 1rem;
}
.wap-header .wap-n .logo .svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.wap-header .wap-n .logo .svg path,
.wap-header .wap-n .logo .svg rect,
.wap-header .wap-n .logo .svg polygon {
  fill: #fff;
}
.wap-header .wap-n .logo .svg .org {
  fill: #F4A122;
}
.wap-header .wap-n .right-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .wap-header .wap-n .right-switch {
    display: block;
  }
}
.wap-header .wap-n .right-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.wap-header .wap-n .right-switch i:nth-child(1) {
  top: 0;
}
.wap-header .wap-n .right-switch i:nth-child(3) {
  bottom: 0;
}
.wap-header .wap-n .right-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.wap-header .wap-menu {
  width: 100%;
  height: -webkit-calc(99vh);
  height: -moz-calc(99vh);
  height: calc(100vh - 1rem);
  background: #fff;
  position: fixed;
  top: 1rem;
  left: 0;
  z-index: 1000;
  display: none;
}
.wap-header .wap-menu > ul {
  padding-top: 0.3rem;
}

.wap-header .wap-menu > ul >li {
  width: 100%;
}

.wap-header .wap-menu > ul >li >div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 1.09rem;
  gap: 0 .15rem;
}

.wap-header .wap-menu > ul > li > a {
  padding: 0.26rem 0;
  color: #333;
  font-size: 0.28rem;
}
.wap-header .wap-menu > ul > li > a .svg {
  width: 0.24rem;
  height: 0.24rem;
  -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: #000;
}
.wap-header .wap-menu > ul > li > a .svg rect,
.wap-header .wap-menu > ul > li > a .svg path {
  fill: #000;
}
.wap-header .wap-menu > ul > li .pc-menu-child {
  /* padding-bottom: 0.2rem; */
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: max-height 0.1s ease, opacity 0.1s ease, visibility 0.1s ease;
  -o-transition: max-height 0.1s ease, opacity 0.1s ease, visibility 0.1s ease;
  -moz-transition: max-height 0.1s ease, opacity 0.1s ease, visibility 0.1s ease;
  transition: max-height 0.1s ease, opacity 0.1s ease, visibility 0.1s ease;
}

.wap-header .wap-menu > ul > li.on > div > a {
  color: #245DAB;
}

.wap-header .wap-menu > ul > li.on .pc-menu-child {
  height: auto;
  opacity: 1;
  visibility: visible;
}
.wap-header .wap-menu > ul > li .pc-menu-child > li > a {
  padding: 0.14rem 0.3rem;
}
.wap-header .wap-menu > ul > li.on .pc-menu-child > li.on > a {
  color: #245DAB;
}
.wap-header .wap-menu > ul > li.on > a {
  color: #245DAB;
}
.wap-header .wap-menu > ul > li.on > a .svg {
  fill: #245DAB;
}
.wap-header .wap-menu > ul > li.on > a .svg rect,
.wap-header .wap-menu > ul > li.on > a .svg path {
  fill: #245DAB;
}
.wap-header .wap-langu {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.46rem;
}
.wap-header .wap-langu .svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.wap-header .wap-langu.lange-change-color .svg .en {
  fill: #F4A122 !important;
}

.wap-header .wap-langu.lange-change-color .svg .cn {
  fill: #fff !important;
}

.wap-header.whites .wap-langu.lange-change-color .svg .cn {
  fill: #333 !important;
}


.wap-header .wap-langu .svg path,
.wap-header .wap-langu .svg rect,
.wap-header .wap-langu .svg polygon {
  fill: #fff;
}
.wap-header .wap-langu.lange-cn .svg .cn {
  fill: #F4A122;
}
.wap-header .wap-langu.lange-cn .svg .en {
  fill: #fff;
}
.wap-header .wap-langu.lange-en .svg .cn {
  fill: #fff;
}
.wap-header .wap-langu.lange-en .svg .en {
  fill: #F4A122;
}
.wap-header.whites {
  background: #fff;
}
.wap-header.whites .wap-n .logo .svg {
  fill: #245DAB;
}
.wap-header.whites .wap-n .logo .svg path,
.wap-header.whites .wap-n .logo .svg rect,
.wap-header.whites .wap-n .logo .svg polygon {
  fill: #245DAB;
}
.wap-header.whites .wap-n .logo .svg .org {
  fill: #F4A122;
}
.wap-header.whites .wap-n .wap-langu .svg {
  fill: #333;
}
.wap-header.whites .wap-n .wap-langu .svg path,
.wap-header.whites .wap-n .wap-langu .svg rect,
.wap-header.whites .wap-n .wap-langu .svg polygon {
  fill: #333;
}
.wap-header.whites .wap-n .wap-langu.lange-cn .svg .cn {
  fill: #F4A122;
}
.wap-header.whites .wap-n .wap-langu.lange-cn .svg .en {
  fill: #333;
}
.wap-header.whites .wap-n .wap-langu.lange-en .svg .cn {
  fill: #333;
}
.wap-header.whites .wap-n .wap-langu.lange-en .svg .en {
  fill: #F4A122;
}
.wap-header.whites .wap-n .right-switch i {
  background: #000;
}
body.open .wap-header .right-switch i:nth-child(2) {
  opacity: 0;
}
body.open .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 .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);
}
.zhanwei {
  width: 100%;
  height: 1.2rem;
}
.main {
  width: 100%;
  min-height: 62vh;
  overflow-x: hidden;
}
.footer-zw {
  width: 100%;
  height: 1.5rem;
}
.footer {
  width: 100%;
  background: #272729;
  position: relative;
  z-index: 3;
}
.footer .logos {
  padding-top: 0.51rem;
}
.footer .logos .logo {
  width: 3rem;
  height: 0.58rem;
  display: block;
}
@media (max-width: 991px) {
  .footer .logos .logo {
    width: 2.6rem;
  }
}
.footer .logos .logo .svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.footer .logos .logo .svg path,
.footer .logos .logo .svg rect,
.footer .logos .logo .svg polygon {
  fill: #fff;
}
.footer .logos .logo .svg .org {
  fill: #F4A122;
}
.footer .logos .zi {
  width: 4rem;
  height: 0.71rem;
  display: block;
}
@media (max-width: 991px) {
  .footer .logos .zi {
    width: 3rem;
  }
}
.footer .logos .zi .svg {
  width: 100%;
  height: 100%;
}
.footer .footer-cen {
  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;
  color: #fff;
  padding-top: 0.55rem;
}
@media (max-width: 991px) {
  .footer .footer-cen {
    display: block;
  }
}
.footer .footer-cen .footer-menus {
  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 .footer-cen .footer-menus {
    display: block;
  }
}
.footer .footer-cen .footer-menus > li {
  margin-left: 0.66rem;
}
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li {
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.footer .footer-cen .footer-menus > li >.subset .imgone{
    transition: transform .2s ease-in-out;
    transform: rotate(-90deg);
  }
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li >.subset{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer .footer-cen .footer-menus > li >.subset .imgone.rotate{
    transform: rotate(0);
  }
}

.footer .footer-cen .footer-menus > li:first-child {
  margin-left: 0;
}
.footer .footer-cen .footer-menus > li >.subset> a {
  color: #fff;
}
.footer .footer-cen .footer-menus > li >.subset> span {
    display: none;
   
    
  }
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li >.subset> span {
    display: block;

    width: 0.2rem;
    height: 0.2rem;
    
  }
   
}
/* .footer .footer-cen .footer-menus > li >.subset> span:hover {
    content: "";
    background-color: red;
} */

@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li >.subset > a {
    display: block;
    padding: 0.2rem 0;
    
  }
}
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li .footer-m2 {
    display: none;
  }
}
.footer .footer-cen .footer-menus > li .footer-m2 > li {
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li .footer-m2 > li {
    margin-top: 0;
    /* padding-left: 2em; */
    
  }
}
.footer .footer-cen .footer-menus > li .footer-m2 > li > a {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .footer .footer-cen .footer-menus > li .footer-m2 > li > a {
    display: block;
    padding: 0.2rem 0;
    font-size: 0.20rem;
  }
}
.footer .footer-cen .footer-lx {
  width: 4rem;
  padding-left: 0.55rem;
}
@media (max-width: 991px) {
  .footer .footer-cen .footer-lx {
    padding-left: 0;
    margin-top: 0.4rem;
    width: auto;
  }
}
.footer .footer-cen .footer-lx > p {
  padding-bottom: 0.28rem;
}
.footer .footer-bot {
  width: 100%;
  padding: 0.2rem 0;
  border-top: 1px solid #555454;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .footer .footer-bot {
    display: block;
    padding: 0.3rem 0;
  }
}
.footer .footer-bot a {
  color: rgba(255, 255, 255, 0.6);
}
.footer .footer-bot .beian {
  padding-left: 1.28rem;
}
@media (max-width: 991px) {
  .footer .footer-bot .beian {
    padding-left: 0;
    margin-top: 0.2rem;
    display: block;
  }
}
.qita-tan {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.qita-tan .qita-tan-box {
  width: 100%;
  height: 100vh;
}
.qita-tan .qita-tan-nei {
  background: #fff;
  border-radius: 0.18rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .qita-tan .qita-tan-nei {
    max-width: 92%;
  }
}
.qita-tan .qita-tan-nei .qita-close {
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  top: 0.69rem;
  right: 0.54rem;
  cursor: pointer;
}
.qita-tan .qita-tan-nei .qita-close .svg {
  width: 100%;
  height: 100%;
  fill: #999;
}
.qita-tan .qita-tan-nei .qita-left {
  width: 4.2rem;
}
@media (max-width: 991px) {
  .qita-tan .qita-tan-nei .qita-left {
    display: none;
  }
}
.qita-tan .qita-tan-nei .qita-right {
  width: 7.5rem;
  padding: 0;
  padding: 0.43rem 0.54rem 0.61rem 0.54rem;
}
@media (max-width: 991px) {
  .qita-tan .qita-tan-nei .qita-right {
    width: auto;
    margin: auto;
    height: auto;
    padding: 0.5rem 0.3rem;
  }
}
.qita-tan .qita-tan-nei .qita-right .qita-title {
  font-weight: 500;
  color: #000;
}
.qita-tan .qita-tan-nei .qita-right .qita-desc {
  color: #999;
  font-weight: 400;
  margin-top: 0.1rem;
}
.qita-tan .qita-tan-nei .qita-right .qita-form {
  display: block;
  padding-top: 0.12rem;
}
.qita-tan .qita-tan-nei .qita-right .qita-btn {
  width: 1.6rem;
  height: 0.5rem;
  background: #245DAB;
  border-radius: 0.5rem;
  margin: auto;
  display: block;
  margin-top: 0.57rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}
.qita-tan .qita-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;
}
.input-box {
  margin-top: 0.3rem;
}
.input-box .input-tit {
  font-weight: 500;
  color: #333;
  padding-left: 0.27rem;
}
.input-box .input {
  width: 100%;
  height: 0.69rem;
  background: #F8F8F8;
  border-radius: 0.08rem;
  margin-top: 0.14rem;
  padding: 0 0.14rem;
  overflow: hidden;
}
.input-box .input .bt {
  color: #EC272C;
  display: block;
  margin-right: 0.07rem;
  line-height: 0.7rem;
  padding-top: 0.08rem;
}
.input-box .input input {
  height: 100%;
}
.input-box .input input::-webkit-input-placeholder {
  color: #999;
}
.input-box .input input:-moz-placeholder {
  color: #999;
}
.input-box .input input::-moz-placeholder {
  color: #999;
}
.input-box .input input:-ms-input-placeholder {
  color: #999;
}
.input-box .input input::-ms-input-placeholder {
  color: #999;
}
.input-box .input input::placeholder {
  color: #999;
}
.input-box .textarea {
  width: 100%;
  height: 1.2rem;
  background: #F8F8F8;
  border-radius: 0.08rem;
  margin-top: 0.14rem;
  padding: 0 0.14rem;
  overflow: hidden;
  -webkit-box-align: unset;
  -webkit-align-items: unset;
  -moz-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
}
.input-box .textarea .bt {
  color: #EC272C;
  padding-top: 0.22rem;
  margin-right: 0.07rem;
}
@media (max-width: 991px) {
  .input-box .textarea .bt {
    padding-top: 0.16rem;
  }
}
.input-box .textarea textarea {
  height: 100%;
  padding: 0.2rem 0;
  display: block;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.3;
}
.input-box .textarea textarea::-webkit-input-placeholder {
  color: #999;
}
.input-box .textarea textarea:-moz-placeholder {
  color: #999;
}
.input-box .textarea textarea::-moz-placeholder {
  color: #999;
}
.input-box .textarea textarea:-ms-input-placeholder {
  color: #999;
}
.input-box .textarea textarea::-ms-input-placeholder {
  color: #999;
}
.input-box .textarea textarea::placeholder {
  color: #999;
}
.banner-box {
  width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .banner-box {
    min-height: 7.5rem;
  }
  .banner-boxtwo {
    min-height: 6.4rem !important;
  }
}
.banner-box .img {
  width: 100%;
  max-height: -webkit-calc(98.8vh);
  max-height: -moz-calc(98.8vh);
  max-height: calc(100vh - 1.2rem);
}
@media (max-width: 991px) {
  .banner-box .img {
    min-height: 7.5rem;
  }
  .banner-box .imgtwo{
    min-height: 5.4rem !important;
  }
}
.banner-box .banner-text {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
}
.banner-box .banner-text .bo {
  width: 100%;
}
@media (max-width: 991px) {
  .banner-box .banner-text .bo {
    /* margin-top: 1.5rem; */
    margin-top: 1rem;
  }
}
.banner-box .banner-text .tit {
  font-weight: 500;
  position: relative;
  margin-bottom: 0.68rem;
}
.banner-box .banner-text .tit::after {
  content: "";
  width: 1.2rem;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  position: absolute;
  left: 0;
  z-index: 2;
  bottom: -0.24rem;
}
@media (max-width: 991px) {
  .banner-box .banner-text .tit::after {
    height: 3px;
  }
}
.banner-box .banner-text .desc {
  font-weight: 400;
}
.banner-box .banner-text .desctwo {
  font-weight: 300;
}
.fa-boxs {
  width: 100%;
  padding-bottom: 1.5rem;
}
.fa-list .fa-item {
  width: 100%;
  height: 8.74rem;
  border-radius: 0.14rem;
  overflow: hidden;
  display: block;
  position: relative;
  margin-top: 0.6rem;
}
@media (max-width: 991px) {
  .fa-list .fa-item {
    border-radius: 0.18rem;
    height: 5.74rem;
  }
}
.fa-list .fa-item .img {
  width: 100%;
  height: 100%;
}
.fa-list .fa-item .fa-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 0.46rem 0.5rem;
  color: #333;
}
@media (max-width: 991px) {
  .fa-list .fa-item .fa-text {
    padding: 0.3rem;
  }
}
.fa-list .fa-item .fa-text .tit {
  font-weight: 500;
}
.fa-list .fa-item .fa-text .desc {
  font-weight: 400;
  padding-top: 0.12rem;
}
.fa-list .fa-item .fa-text .btn-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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.12rem;
}
.fa-list .fa-item .fa-text .btn-box .btn {
  color: #245DAB;
  font-weight: 400;
}
.fa-list .fa-item .fa-text .btn-box .btn .svg {
  width: 0.18rem;
  height: 0.18rem;
  fill: #245DAB;
  margin-left: 0.05rem;
}
.fa-list .fa-item .fa-text .btn-box .btn .svg path,
.fa-list .fa-item .fa-text .btn-box .btn .svg rect {
  fill: #245DAB;
}
@media (max-width: 991px) {
  .fa-list .fa-item .fa-text .btn-box .btn .svg {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.shoutu-box {
  width: 100%;
  position: relative;
}
.shoutu-box .img {
  width: 100%;
  max-height: 100vh;
}
@media (max-width: 991px) {
  .shoutu-box .img {
    min-height: 7.5rem;
  }
}
.shoutu-box .shoutu-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-weight: 500;
  color: #fff;
  padding-top: 1.2rem;
}
.shoutu-box .bofang {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 3;
}
.shoutu-box .bofang .svg {
  width: 100%;
  height: 100%;
}
.shoutu-box .videos {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: none;
  /* 新增 */
  background-color: #000;
}
.shoutu-box .video-close {
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  /* top: 1rem;
  right: 0.3rem; */
  /* 新 */
  top: 1.5rem;
  right: 0.5rem;
  z-index: 999;
  fill: #fff;
  display: none;
}
.shoutu-box .video-close .svg {
  width: 100%;
  height: 100%;
}
.fa-content1 {
  width: 100%;
  padding-bottom: 1rem;
}
.fa-content1 .desc {
  text-align: center;
  color: #333;
  font-weight: 400;
}
@media (max-width: 991px) {
  .fa-content1 .desc {
    text-align: left;
  }
}
.fa-content2 {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  padding-bottom: 1.32rem;
}
.fa-content2 .fa-wl {
  background: rgba(2, 14, 29, 0.54);
  border-radius: 0.12rem;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 0.8rem 0.4rem;
  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) {
  .fa-content2 .fa-wl {
    display: block;
    padding: 0.4rem 0.3rem;
  }
}
.fa-content2 .fa-wl .lef {
  min-width: 3.25rem;
}
@media (max-width: 991px) {
  .fa-content2 .fa-wl .lef {
    min-width: unset;
  }
}
.fa-content2 .fa-wl .lef .tit {
  color: #fff;
  font-weight: 500;
  position: relative;
}
.fa-content2 .fa-wl .lef .tit::after {
  content: "";
  width: 1.3rem;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -0.15rem;
}
@media (max-width: 991px) {
  .fa-content2 .fa-wl .lef .tit::after {
    height: 2px;
  }
}
.fa-content2 .fa-wl .lef .img {
  width: 3.25rem;
  margin-top: 0.95rem;
}
.fa-content2 .fa-wl .rig {
  color: #fff;
  font-weight: 400;
  text-align: justify;
  padding-left: 1.3rem;
}
@media (max-width: 991px) {
  .fa-content2 .fa-wl .rig {
    padding-left: 0;
    margin-top: 0.6rem;
  }
}
.dian > li {
  position: relative;
  padding-left: 0.4rem;
  margin-bottom: 0.24rem;
}
.dian > li:last-child {
  margin-bottom: 0;
}
.dian > li::before {
  content: "";
  width: 0.14rem;
  height: 0.14rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0.12rem;
  left: 0;
}
@media (max-width: 991px) {
  .dian > li::before {
    top: 0.16rem;
  }
}
.fa-content3 {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  padding-bottom: 1.5rem;
}
.fa-content3 .fa-wt {
  padding: 0.4rem;
  border-radius: 0.14rem;
  color: #fff;
  font-weight: 500;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
}
.fa-content3 .fa-wt > p {
  margin-top: 0.2rem;
}
.fa-content3 .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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #333;
}
.fa-content3 .fa-ul > li {
  width: 49.0625%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), to(#FFFFFF));
  background: -webkit-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -moz-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -o-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  border-radius: 0.14rem;
  margin-top: 0.3rem;
  padding: 0.4rem;
}
@media (max-width: 991px) {
  .fa-content3 .fa-ul > li {
    width: 100%;
  }
}
.fa-content3 .fa-ul > li .tit {
  position: relative;
}
.fa-content3 .fa-ul > li .tit::after {
  content: "";
  width: 0.55rem;
  height: 2px;
  background: #245DAB;
  position: absolute;
  left: 0;
  bottom: -0.08rem;
}
.fa-content3 .fa-ul > li .dian {
  margin-top: 0.35rem;
}
.fa-content3 .fa-ul > li .dian > li {
  padding-left: 0.29rem;
  margin-bottom: 0.28rem;
}
.fa-content3 .fa-ul > li .dian > li:last-child {
  margin-bottom: 0;
}
.fa-content3 .fa-ul > li .dian > li::before {
  background: #D0D0D0;
}
.fw-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 1.5rem;
}
.fw-list .fw-item {
  width: 48.4375%;
  height: 5.46rem;
  border-radius: 0.14rem;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .fw-list .fw-item {
    width: 100%;
    margin-top: 0.3rem;
    border-radius: 0.18rem;
  }
}
.fw-list .fw-item .img {
  width: 100%;
  height: 100%;
}
.fw-list .fw-item .fw-zz {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(41, 60, 85, 0)), to(rgba(36, 43, 64, 0.82)));
  background: -webkit-linear-gradient(top, rgba(41, 60, 85, 0) 0%, rgba(36, 43, 64, 0.82) 100%);
  background: -moz-linear-gradient(top, rgba(41, 60, 85, 0) 0%, rgba(36, 43, 64, 0.82) 100%);
  background: -o-linear-gradient(top, rgba(41, 60, 85, 0) 0%, rgba(36, 43, 64, 0.82) 100%);
  background: linear-gradient(180deg, rgba(41, 60, 85, 0) 0%, rgba(36, 43, 64, 0.82) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: #fff;
  padding: 0.5rem;
}
@media (max-width: 991px) {
  .fw-list .fw-item .fw-zz {
    padding: 0.3rem;
  }
}
.fw-list .fw-item .fw-zz .tit {
  font-weight: 500;
}
.fw-list .fw-item .fw-zz .desc {
  min-height: 0.72rem;
  margin-top: 0.14rem;
  font-weight: 400;
}
@media (max-width: 991px) {
  .fw-list .fw-item .fw-zz .desc {
    min-height: unset;
  }
}
.fw-list .fw-item .fw-zz .btn-box {
  margin-top: 0.18rem;
}
.fw-list .fw-item .fw-zz .btn-box .btn {
  font-weight: 400;
}
.fw-list .fw-item .fw-zz .btn-box .btn .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #fff;
  margin-left: 0.08rem;
  margin-top: 0.02rem;
}
.fw-list .fw-item .fw-zz .btn-box .btn .svg path,
.fw-list .fw-item .fw-zz .btn-box .btn .svg rect {
  fill: #fff;
}
@media (max-width: 991px) {
  .fw-list .fw-item .fw-zz .btn-box .btn .svg {
    width: 0.18rem;
    height: 0.18rem;
  }
}
.fw-xq-tan-box {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.fw-xq-tan-box .fw-xq-tan {
  width: 100%;
  height: 100vh;
}
.fw-xq-tan-box .fw-xq {
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  position: relative;
  width: 14.93rem;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 991px) {
  .fw-xq-tan-box .fw-xq {
    width: 90%;
  }
}
.fw-xq-tan-box .fw-xq .fw-wt {
  width: 100%;
  padding: 0.4rem 0.5rem;
  color: #fff;
  font-weight: 500;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
}
.fw-xq-tan-box .fw-xq .fw-wt > p {
  margin-top: 0.1rem;
}
.fw-xq-tan-box .fw-xq .fw-con {
  width: 100%;
  padding: 0.54rem 0.5rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: bottom center;
}
.fw-xq-tan-box .fw-xq .fw-con .tit {
  font-weight: 500;
  color: #333;
  padding-left: 0.26rem;
}
.fw-xq-tan-box .fw-xq .fw-con .desc {
  margin-top: 0.1rem;
  color: #333;
  font-weight: 400;
  min-height: 2.6rem;
}
.fw-xq-tan-box .fw-xq .fw-con .desc > li {
  margin-top: 0.36rem;
}
.fw-xq-tan-box .fw-xq .fw-con .desc.dian > li {
  padding-left: 0.26rem;
}
.fw-xq-tan-box .fw-xq .fw-con .desc.dian > li::before {
  background: #D0D0D0;
  top: 0.1rem;
}
@media (max-width: 991px) {
  .fw-xq-tan-box .fw-xq .fw-con .desc.dian > li::before {
    top: 0.14rem;
  }
}
.fw-xq-tan-box .fw-xq .fw-con .btn-qr {
  width: 2.6rem;
  height: 0.74rem;
  background: #245DAB;
  border-radius: 0.74rem;
  color: #fff;
  margin: auto;
  margin-top: 0.4rem;
  cursor: pointer;
}
.cp-banner {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
}
.cp-banner .img {
  height: 13.53rem;
  max-height: unset;
}
@media (max-width: 991px) {
  .cp-banner .img {
    height: 6.4rem;
  }
}
.banner-zw {
  height: 13.53rem;
}
@media (max-width: 991px) {
  .banner-zw {
    height: 6.4rem;
  }
}
.cp-content {
  width: 100%;
  min-height: 3rem;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  position: relative;
  z-index: 2;
  margin-top: -2.73rem;
}
@media (max-width: 991px) {
  .cp-content {
    margin-top: -1rem;
    border-radius: 0.5rem 0.5rem 0 0;
  }
}
.cp-zhichi .cp-tt {
  color: #666;
  text-align: center;
  font-weight: 300;
}
@media (max-width: 991px) {
  .cp-zhichi .cp-class {
    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-align: unset;
    -webkit-align-items: unset;
    -moz-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
    -moz-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
}
.cp-zhichi .cp-class .cp-class-item {
  min-width: 2.1rem;
  margin-top: 0.28rem;
  margin-right: 0.2rem;
  font-weight: 400;
  color: #333;
  padding: 0.15rem 0.24rem;
  border-radius: 0.5rem;
  background: #F5F6F7;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  -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;
}
.cp-zhichi .cp-class .cp-class-item:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .cp-zhichi .cp-class .cp-class-item {
    min-width: unset !important;
    padding: 0.16rem 0.36rem;
    flex: auto;
  }
  .cp-zhichi .cp-class .cp-class-item:nth-child(2) {
    margin-right: 0;
  }
  .cp-zhichi .cp-class .cp-class-item:last-child {
  margin-top: 0.2rem;
}
}
.cp-zhichi .cp-class .cp-class-item.on {
  background: #245DAB;
  color: #fff;
}
.cp-wenti {
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 3.55rem;
}
.cp-wenti .cp-ul {
  margin-top: -0.4rem;
}
.cp-wenti .cp-ul > li {
  border-bottom: 1px solid #D8D8D8;
  padding-left: 0.32rem;
  margin-bottom: 0;
}
.cp-wenti .cp-ul > li::before {
  top: 0.55rem;
  background: #D0D0D0;
}
.cp-wenti .cp-ul > li .tit {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  cursor: pointer;
  padding-right: 44px;
  position: relative;
  z-index: 2;
  color: #333;
  font-weight: 500;
}
.cp-wenti .cp-ul > li .cp-bot {
  display: none;
  padding-bottom: 0.4rem;
  color: #4E4E4E;
  font-weight: 400;
}
.cp-wenti .cp-ul > li .cp-jh {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0.5rem;
  right: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .cp-wenti .cp-ul > li .cp-jh {
    width: 14px;
    height: 14px;
  }
}
.cp-wenti .cp-ul > li .cp-jh > i {
  display: block;
  width: 24px;
  height: 3px;
  background: #BABABA;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -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) {
  .cp-wenti .cp-ul > li .cp-jh > i {
    width: 14px;
    height: 2px;
  }
}
.cp-wenti .cp-ul > li .cp-jh > i:nth-child(2) {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cp-wenti .cp-ul > li.on .cp-jh > i:nth-child(2) {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #245DAB;
}
.px-lilun .px-tit {
  color: #333;
  font-weight: 400;
  text-align: center;
}
.px-lilun .px-ul > li {
  width: 5rem;
  background: #F8F9FA;
  border-radius: 0.14rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .px-lilun .px-ul > li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
  }
}
.px-lilun .px-ul > li:nth-child(3n) {
  margin-right: 0;
}
.px-lilun .px-ul > li > a {
  padding: 0.2rem 0;
  display: block;
  font-weight: 500;
  color: #333;
  padding-left: 0.59rem;
  padding-right: 0.26rem;
}
.px-lilun .px-ul > li::before {
  background: #D0D0D0;
  left: 0.27rem;
  top: 0.34rem;
}
.px-jineng .px-jn {
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .px-jineng .px-jn {
    padding-bottom: 0.3rem;
    flex-direction: column !important;
  }
}
.px-jineng .px-jn .px-img {
  width: 7.85rem;
  min-width: 7.85rem;
  height: 4.28rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .px-jineng .px-jn .px-img {
    /* display: none; */
    width: 100%;
    min-width: 100%;
    margin-bottom: 0.2rem;
  }
}
.px-jineng .px-jn .px-img .img {
  width: 100%;
  height: 100%;
}
.px-jineng .px-jn .px-zi {
  margin-left: 0.5rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 767px) {
  .px-jineng .px-jn .px-zi {
    margin: 0;
  }
}
.px-jineng .px-jn .px-zi .tit {
  color: #333;
  font-weight: 500;
  position: relative;
}
.px-jineng .px-jn .px-zi .tit::before {
  content: "";
  width: 0.55rem;
  height: 2px;
  background: #245DAB;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
}
.px-jineng .px-jn .px-zi .desc {
  margin-top: 0.64rem;
  color: #666;
  font-weight: 400;
}
.px-jineng .px-jn .px-zi .desc > p {
  padding-bottom: 0.3rem;
}
@media (max-width: 767px) {
  .px-jineng .px-jn .px-zi .desc > p {
    padding-bottom: 0.2rem;
  }
}
.px-jineng .px-jn .px-zi .desc > p:last-child {
  padding-bottom: 0;
}
.px-jineng .px-jn2 .px-zi {
  margin-left: 0;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .px-jineng .px-jn2 .px-zi {
    margin: 0;
  }
}
.cpzx-zhichi {
  padding-top: 0.7rem;
}
.cpzx-zhichi .cp-class .cp-class-item {
  min-width: 2.5rem;
  padding: 0.24rem;
  margin-right: 0.3rem;
  margin-top: 0.3rem;
}
.cpzx-list .fw-item {
  width: 49.0625%;
  height: 5.13rem;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .cpzx-list .fw-item {
    width: 100%;
    height: 4.13rem;
  }
}
.cpzx-list .fw-item .fw-zz {
  padding: 0.4rem;
}
.cpxq-box {
  padding-bottom: 1rem;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
.cpxq-tit1 {
  text-align: center;
  position: relative;
  padding-top: 1rem;
  color: #333;
  font-weight: 600;
}
.cpxq-tit1::before {
  content: "";
  width: 1rem;
  height: 4px;
  background: #245DAB;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -0.2rem;
}
@media (max-width: 991px) {
  .cpxq-tit1::before {
    height: 2px;
  }
}
.cpxq-tit2 {
  text-align: center;
  color: #333;
  padding-top: 0.44rem;
  font-weight: 500;
}
.cpxq-desc {
  padding-top: 0.6rem;
  color: #333;
  font-weight: 400;
}
.cpxq-desc > p {
  padding-bottom: 0.4rem;
}
.cpxq-ul > li {
  width: 23.6%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), to(#FFFFFF));
  background: -webkit-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -moz-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -o-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  border-radius: 0.12rem;
  padding: 0.3rem 0.2rem;
  margin-right: 1.866%;
  margin-top: 0.2rem;
}
.cpxq-ul > li:nth-child(4n) {
  margin-right: 0;
}
@media (max-width: 991px) {
  .cpxq-ul > li {
    width: 48.5%;
    margin-right: 3%;
  }
  .cpxq-ul > li:nth-child(2n) {
    margin-right: 0;
  }
}
.cpxq-ul > li .tit {
  font-weight: bold;
  color: #333;
  padding-top: 0.1rem;
}
.cpxq-ul > li .txt {
  font-weight: 400;
  color: #333;
  padding-top: 0.14rem;
}
.cpxq-zb .titles {
  padding-bottom: 0.6rem;
}
.cpxq-zb .cpxq-zb-con {
  background: #fff;
  border-radius: 0.14rem;
  text-align: center;
  padding-bottom: 0.5rem;
}
.cpxq-zb .cpxq-zb-con > li {
  width: 33.3333%;
  padding: 0 0.5rem;
  padding-top: 0.9rem;
}
@media (max-width: 991px) {
  .cpxq-zb .cpxq-zb-con > li {
    width: 50%;
    padding: 0 0.3rem;
    padding-top: 0.5rem;
  }
}
.cpxq-zb .cpxq-zb-con > li .tit {
  color: #626366;
  font-weight: 400;
}
.cpxq-zb .cpxq-zb-con > li .desc {
  padding-top: 0.1rem;
  color: #333;
  font-weight: 600;
}
.cpxq-zb .cpxq-zb-item {
  margin-top: 0.8rem;
}
.cpxq-zb .cpxq-zb-item .tit {
  color: #333;
  font-weight: bold;
}
.cpxq-zb .cpxq-zb-item .desc {
  padding-top: 0.2rem;
  color: #333;
  font-weight: 400;
}
.news-list {
  padding: 0.4rem 0;
}
.news-list > li {
  width: 100%;
}
.news-list .news-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;
  background: #FFFFFF;
  border-radius: 0.14rem;
  padding: 0.4rem;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .news-list .news-item {
    display: block;
  }
}
.news-list .news-item .news-img {
  width: 5.58rem;
  min-width: 5.58rem;
  height: 3.04rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-list .news-item .news-img {
    width: 100%;
    min-width: unset;
  }
}
.news-list .news-item .news-img .img {
  width: 100%;
  height: 100%;
}
.news-list .news-item .news-right {
  padding-left: 0.4rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 991px) {
  .news-list .news-item .news-right {
    padding: 0;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}
.news-list .news-item .news-right .tit {
  color: #000;
  font-weight: bold;
  padding-top: 0.3rem;
}
.news-list .news-item .news-right .desc {
  color: #666;
  font-weight: 400;
  margin-top: 0.3rem;
}
.news-list .news-item .news-right .btn-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;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0.36rem;
}
.news-list .news-item .news-right .btn-box .btn {
  color: #245DAB;
  font-weight: 400;
}
.news-list .news-item .news-right .btn-box .btn .svg {
  width: 0.16rem;
  height: 0.16rem;
  fill: #245DAB;
  margin-left: 0.05rem;
}
.news-list .news-item .news-right .btn-box .btn .svg path,
.news-list .news-item .news-right .btn-box .btn .svg rect {
  fill: #245DAB;
}
@media (max-width: 991px) {
  .news-list .news-item .news-right .btn-box .btn .svg {
    width: 0.24rem;
    height: 0.24rem;
  }
}
.news-zhichi .cp-class {
  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;
}
.mbx-nav {
  width: 100%;
  height: 0.76rem;
  background: #272729;
}
.mbx-nav .mbx {
  height: 100%;
}
.mbx-nav .mbx * {
  font-weight: 400;
  color: #fff;
  font-style: normal;
}
.mbx-nav .mbx 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;
}
.mbx-nav .mbx > i {
  padding: 0 3px;
  display: block;
}
.mbx-nav .mbx span {
  color: #F4A122;
}
.news-content {
  padding-top: 0.7rem;
  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) {
  .news-content {
    display: block;
  }
}
.news-content .news-wz {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 0.9rem;
  border-right: 1px solid #E2E0E0;
}
@media (max-width: 991px) {
  .news-content .news-wz {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding-right: 0;
    border-right: 0;
  }
}
.news-content .news-wz .news-title {
  font-weight: 500;
  color: #333;
}
.news-content .news-wz .news-time {
  font-weight: 400;
  color: #999;
  margin-top: 0.08rem;
}
.news-content .news-wz .news-con {
  font-weight: 400;
  color: #333;
  margin-top: 0.6rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .news-content .news-wz .news-con {
    padding-bottom: 0.8rem;
  }
}
.news-content .news-wz .news-con img,
.news-content .news-wz .news-con video {
  max-width: 100%;
}
.news-content .news-xg {
  margin-left: 0.9rem;
  width: 4rem;
  min-width: 4rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .news-content .news-xg {
    margin-left: 0;
    width: 100%;
    min-width: unset;
  }
}
.news-content .news-xg .news-xg-tit {
  font-weight: bold;
  color: #333;
}
@media (max-width: 991px) {
  .news-content .news-xg .news-xg-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-content .news-xg .news-xg-list .news-xg-item {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .news-content .news-xg .news-xg-list .news-xg-item {
    width: 48.5%;
    margin-right: 3%;
  }
  .news-content .news-xg .news-xg-list .news-xg-item:nth-child(2n) {
    margin-right: 0;
  }
}
.news-content .news-xg .news-xg-list .news-xg-item .news-xg-img {
  width: 100%;
  height: 2.18rem;
  border-radius: 0.14rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .news-content .news-xg .news-xg-list .news-xg-item .news-xg-img {
    height: 2rem;
  }
}
.news-content .news-xg .news-xg-list .news-xg-item .news-xg-img .img {
  width: 100%;
  height: 100%;
}
.news-content .news-xg .news-xg-list .news-xg-item .tit {
  font-weight: 500;
  color: #333;
  padding-top: 0.14rem;
}
.main2 {
  background: #F9FAFD;
}
.about-company {
  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: #fff;
  border-radius: 0.14rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .about-company {
    display: block;
  }
}
.about-company .imgs {
  width: 7rem;
  height: 9rem;
  min-width: 7rem;
  overflow: hidden;
  border-radius: 0.14rem;
}
@media (max-width: 991px) {
  .about-company .imgs {
    width: 100%;
    height: 6.9rem;
    min-width: unset;
  }
}
.about-company .imgs .img {
  width: 100%;
  height: 100%;
}
.about-company .zi {
  margin-left: 0.2rem;
  padding: 0.3rem;
}
@media (max-width: 991px) {
  .about-company .zi {
    margin-left: 0;
  }
}
.about-company .zi .tit {
  margin-top: 0.15rem;
  color: #333;
  font-weight: 500;
}
.about-company .zi .zi-list {
  margin-top: 0.28rem;
}
@media (max-width: 991px) {
  .about-company .zi .zi-list {
    margin-top: 0.3rem;
  }
}
.about-company .zi .zi-list > li {
  margin-bottom: 0.3rem;
  padding-left: 0.28rem;
  text-align: justify;
  color: #333;
  font-weight: 400;
  line-height:0.4rem;
}
.about-company .zi .zi-list > li::before {
  background: #D0D0D0;
  top: 0.1rem;
}
@media (max-width: 991px) {
  .about-company .zi .zi-list > li::before {
    top: 0.12rem;
  }
}
.about-company .zi .zi-list > li:last-child {
  margin-bottom: 0;
}
.about-content2 {
  width: 100%;
  padding-bottom: 1rem;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
}
.about-content2 .titles {
  padding-top: 0.8rem;
}
.about-content2 .about-wenhua {
  background: rgba(1, 21, 48, 0.39);
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  border-radius: 0.14rem;
  padding: 0.6rem 0 0.8rem 0;
  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) {
  .about-content2 .about-wenhua {
    display: block;
    padding: 0;
  }
}
.about-content2 .about-wenhua .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0.6rem;
  color: #fff;
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  .about-content2 .about-wenhua .item {
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    padding: 0.6rem;
  }
}
.about-content2 .about-wenhua .item:after {
  content: "";
  position: absolute;
  top: 0.38rem;
  right: 0;
  width: 1px;
  height: 0.86rem;
  background: #fff;
}
@media (max-width: 991px) {
  .about-content2 .about-wenhua .item:after {
    height: 1px;
    width: 70%;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.about-content2 .about-wenhua .item:last-child:after {
  display: none;
}
.about-content2 .about-wenhua .item .tit {
  font-weight: 500;
}
.about-content2 .about-wenhua .item .desc {
  opacity: 0.78;
  padding-top: 0.24rem;
  font-weight: 400;
}
.about-content3 .about-ul {
  width: 100%;
}
.about-content3 .about-ul .about-li {
  width: 100%;
  background: #F8F9FA;
  border-radius: 0.14rem;
  padding: 0.38rem 0.62rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 991px) {
  .about-content3 .about-ul .about-li {
    display: block;
    padding: 0.38rem 0.4rem;
  }
}
.about-content3 .about-ul .about-li:last-child {
  margin-bottom: 0;
}
.about-content3 .about-ul .about-li .about-left {
  width: 4.7rem;
  min-width: 4.7rem;
}
@media (max-width: 991px) {
  .about-content3 .about-ul .about-li .about-left {
    width: 100%;
    min-width: unset;
  }
}
.about-content3 .about-ul .about-li .about-left .img {
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.48rem;
}
@media (max-width: 991px) {
  .about-content3 .about-ul .about-li .about-left .img {
    width: 0.62rem;
    height: 0.62rem;
    margin-right: 0.28rem;
  }
}
.about-content3 .about-ul .about-li .about-left .tit {
  font-weight: 500;
  color: #333;
}
@media (max-width: 991px) {
  .about-content3 .about-ul .about-li .about-right {
    width: 100%;
    -webkit-box-flex: unset;
    -webkit-flex: unset;
    -moz-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    margin-top: 0.4rem;
  }
}
.about-content3 .about-ul .about-li .about-right > li {
  padding-left: 0.29rem;
}
.about-content3 .about-ul .about-li .about-right > li::before {
  background: #D0D0D0;
}
.about-content4-box {
  width: 100%;
  padding-top: 1rem;
  background-color: #fff;
}
.about-content4 {
  padding-bottom: 1.5rem;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: top center;
}
.about-content4 .titles {
  padding-top: 0;
}
.about-content4 .about-tags > li {
  display: inline-block;
  width: 3.77rem;
  min-height: 2.23rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), to(#FFFFFF));
  background: -webkit-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -moz-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -o-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  border-radius: 0.14rem;
  margin-right: 0.26rem;
  border: 2px solid transparent;
}
@media (max-width: 767px) {
  .about-content4 .about-tags > li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}
.about-content4 .about-tags > li > div {
  padding: 0.2rem;
  white-space: normal;
}
.about-content4 .about-tags > li > div span {
  display: inline-block;
  font-weight: 400;
}
.about-content4 .about-tags > li > div > p {
  position: relative;
  padding-left: 0.29rem;
  margin-top: 0.1rem;
}
.about-content4 .about-tags > li > div > p .svg {
  position: absolute;
  left: 0;
  top: 0.06rem;
}
.about-content4 .about-tags > li > div .company {
  position: relative;
  padding-left: 0.35rem;
  margin-bottom: 0.2rem;
}
.about-content4 .about-tags > li > div .company .svg {
  width: 0.29rem;
  height: 0.29rem;
  position: absolute;
  left: 0;
  top: 0.07rem;
}
.about-content4 .about-tags > li .svg {
  width: 0.22rem;
  height: 0.22rem;
  fill: #333;
}
.about-content4 .about-tags > li .svg rect,
.about-content4 .about-tags > li .svg path {
  fill: #333;
}
.about-content4 .about-tags > li:last-child {
  margin-right: 0;
}
.about-content4 .about-tags > li.on {
  position: relative;
  border: 2px solid #245DAB;
}
.about-content4 .about-tags > li.on::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -0.52rem;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 0.12rem solid transparent;
  border-bottom: 0.12rem solid #428EF7;
  border-right: 0.12rem solid transparent;
  z-index: 3;
}
@media (max-width: 767px) {
  .about-content4 .about-tags > li.on::after {
    display: none;
  }
}
.about-content4 .about-address {
  margin-top: 0.52rem;
}
.about-content4 .about-address > li {
  display: none;
  width: 100%;
}
.about-content4 .about-address > li .img {
  width: 100%;
}
.about-content4 .about-address > li.on {
  display: block;
}
.job-box {
  padding-bottom: 1.5rem;
}
.job-box .job-select {
  padding-top: 0.5rem;
  padding-bottom: 0.33rem;
}
.x-xiala {
  width: 100%;
  position: relative;
  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;
  border-radius: 0.5rem;
  z-index: 20;
  height: 0.9rem;
  background: #fff;
}
@media (max-width: 767px) {
  .x-xiala {
    height: 0.8rem;
  }
}
.x-xiala .x-sp {
  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-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0.38rem;
  cursor: pointer;
  line-height: 0.9rem;
  font-size: 0.28rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .x-xiala .x-sp {
    font-size: 0.28rem;
    line-height: 0.8rem;
  }
}
.x-xiala .x-sp span {
  color: #333;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -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;
}
.x-xiala .x-sp span.placeholder {
  color: #999;
}
.x-xiala .x-sp i {
  display: inline-block;
  margin-left: 0.1rem;
}
.x-xiala .x-sp i .svg {
  display: block;
  width: 0.28rem;
  height: 0.28rem;
  fill: #D6D6D6;
  -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;
}
.x-xiala .x-sp i .svg path,
.x-xiala .x-sp i .svg rect {
  fill: #D6D6D6;
}
@media (max-width: 767px) {
  .x-xiala .x-sp i .svg {
    width: 0.28rem;
    height: 0.28rem;
  }
}
.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.1rem 0;
  display: none;
  border-radius: 0.2rem;
  overflow: hidden;
}
.x-xiala ul li {
  padding: 0.1rem 0.2rem;
  color: #333;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  -moz-transition: 0.3s all;
  transition: 0.3s all;
  font-size: 0.26rem;
}
.x-xiala ul li a {
  display: block;
  color: #333;
}
@media (max-width: 767px) {
  .x-xiala ul li {
    font-size: 0.26rem;
  }
}
.x-xiala ul li:hover {
  color: #245DAB;
  background-color: #f5f5f5;
}
.job-s1 {
  width: 3.68rem;
}
@media (max-width: 767px) {
  .job-s1 {
    width: 45%;
  }
}
.job-s2 {
  width: 4.8rem;
  margin-left: 0.4rem;
}
@media (max-width: 767px) {
  .job-s2 {
    width: 55%;
    margin-left: 0.2rem;
  }
}
.job-list {
  width: 100%;
  margin-top: 0.3rem;
  background: #fff;
  border-radius: 0.14rem;
  padding: 0.38rem 0.4rem;
}
@media (max-width: 767px) {
  .job-list {
    padding: 0.28rem 0.3rem;
  }
}
.job-list .job-top .job-left {
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .job-list .job-top .job-left {
    margin-right: 0;
  }
}
.job-list .job-top .job-left .tit {
  color: #000;
  font-weight: 500;
}
.job-list .job-top .job-left .tags {
  color: #333;
  font-weight: 400;
  margin-top: 0.06rem;
}
@media (max-width: 767px) {
  .job-list .job-top .job-left .tags {
    margin-top: 0.1rem;
  }
}
.job-list .job-top .job-left .tags > span {
  display: inline-block;
  position: relative;
  padding: 0 0.1rem;
}
@media (max-width: 767px) {
  .job-list .job-top .job-left .tags > span {
    padding: 0 0.14rem;
  }
}
.job-list .job-top .job-left .tags > span::after {
  content: "";
  width: 1px;
  height: 11px;
  background: #CDCDCD;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.job-list .job-top .job-left .tags > span:nth-child(1) {
  padding-left: 0;
}
.job-list .job-top .job-left .tags > span:last-child {
  padding-right: 0;
}
.job-list .job-top .job-left .tags > span:last-child::after {
  display: none;
}
.job-list .job-top .job-left .tags2 {
  padding-top: 0.1rem;
  color: #666;
  font-weight: 400;
}
.job-list .job-top .job-left .tags2 > span {
  display: inline-block;
  padding: 0 0.18rem;
  line-height: 0.3rem;
  height: 0.3rem;
  background: #F5F6F7;
  border-radius: 0.3rem;
  margin-right: 0.1rem;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .job-list .job-top .job-left .tags2 > span {
    line-height: 0.36rem;
    height: 0.36rem;
    margin-top: 0.14rem;
  }
}
.job-list .job-top .job-btn {
  width: 1.6rem;
  height: 0.56rem;
  border-radius: 0.5rem;
  border: 1px solid #245DAB;
  color: #245DAB;
  -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: 767px) {
  .job-list .job-top .job-btn {
    /* display: none; */
  }
}
.job-list .job-bot {
  display: none;
}
.job-list .job-bot .tit {
  padding-top: 0.4rem;
  color: #000;
  font-weight: 500;
}
.job-list .job-bot .desc {
  margin-top: 0.1rem;
}
.job-list .job-bot .desc > li {
  padding-left: 0.17rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .job-list .job-bot .desc > li {
    padding-left: 0.21rem;
  }
}
.job-list .job-bot .desc > li > a {
  color: #245DAB;
  font-weight: 400;
}
.job-list .job-bot .desc > li:last-child {
  margin-bottom: 0;
}
.job-list .job-bot .desc > li::before {
  width: 0.06rem;
  height: 0.06rem;
  background: #245DAB;
}
@media (max-width: 767px) {
  .job-list .job-bot .desc > li::before {
    width: 0.1rem;
    height: 0.1rem;
  }
}
.job-list .job-sjt {
  text-align: center;
  margin-top: 0.2rem;
  height: 0.3rem;
  display: none;
  -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;
  cursor: pointer;
}
.job-list .job-sjt .svg {
  width: 0.3rem;
  height: 0.3rem;
  fill: #999;
  -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;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.job-list .job-sjt .svg rect,
.job-list .job-sjt .svg path {
  fill: #999;
}
.job-list.on .job-top .job-btn {
  background: #245DAB;
  color: #fff;
}
.job-list.on .job-sjt {
  display: block;
}
.index-banner {
  width: 100%;
  height: 100vh;
}
@media (max-width: 991px) {
  .index-banner {
  width: 100%;
  height: 5.4rem;
}
}
.index-banner .swiper {
  width: 100%;
  height: 100%;
}
.index-banner .swiper .swiper-slide .img {
  width: 100%;
  height: 100%;
}
.index-banner .swiper .swiper-slide .btn-box {
  position: absolute;
  bottom: 23.3%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  text-align: center;
}
.index-banner .swiper .swiper-slide .btn-box .btn-more {
  display: inline-block;
  background: rgba(255, 255, 255, 0.31);
  border-radius: 0.33rem;
  color: #245DAB;
  font-size: 0.28rem;
  padding: 0.12rem 0.44rem;
}
.index-banner .swiper .swiper-pagination-bullet {
  width: 0.18rem;
  height: 0.18rem;
  background: #245DAB;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.index-banner .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0.4rem !important;
}
@media (max-width: 767px) {
  .index-banner .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 8.4rem !important;
}
}
.index-pro .index-pro-blocks {
  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;
  gap: 0 .3rem;
  margin-top: -0.3rem;
}
@media (max-width: 767px) {
  .index-pro .index-pro-blocks {
    margin-top: -0.16rem;
    gap: 0 .16rem;
  }
}
.index-pro .index-pro-blocks > li {
  flex: 1 1 calc(33.333% - 30px);
  height: 6.66rem;
  margin-top: 0.3rem;
  border-radius: 0.14rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  
  .index-pro .index-pro-blocks > li {
    height: 3.5rem;
    margin-top: 0.16rem;
  }

  .index-pro .index-pro-blocks > li:nth-child(4),
  .index-pro .index-pro-blocks > li:nth-child(5) {
    height: 3.5rem !important;
  }
}

.index-pro .index-pro-blocks > li .texts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  padding-top: 0.65rem;
  font-weight: 500;
  padding: 0.65rem 0.2rem 0 0.2rem;
}
.index-pro .index-pro-blocks > li .texts > p {
  margin-top: 0.12rem;
  font-weight: 400;
}
.index-pro .index-pro-blocks > li:nth-child(3n) {
  margin-right: 0;
}
.index-pro .index-pro-blocks > li .img {
  width: 100%;
  height: 100%;
}
.index-pro .index-pro-blocks > li:nth-child(4),
.index-pro .index-pro-blocks > li:nth-child(5) {
  flex-basis: calc(50% - 30px);
  height: 5.13rem;
}

.index-fangan .index-fangan-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;
}
@media (max-width: 991px) {
  .index-fangan .index-fangan-flex {
    display: block;
  }
}
.index-fangan .index-fangan-flex .index-fangan-left {
  width: 80.125%;
  min-width: 80.125%;
  height: 8rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.14rem;
}
@media (max-width: 991px) {
  .index-fangan .index-fangan-flex .index-fangan-left {
  width: 80.125%;
  min-width: 80.125%;
  height: 6rem;
  overflow: hidden;
  position: relative;
  border-radius: 0.14rem;
}
}
@media (max-width: 991px) {
  .index-fangan .index-fangan-flex .index-fangan-left {
    width: 100%;
  }
}
.index-fangan .index-fangan-flex .index-fangan-left > li {
  width: 100%;
  height: 100%;
  display: none;
  position: relative;
}
.index-fangan .index-fangan-flex .index-fangan-left > li .texts {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0 0.3rem;
  padding-bottom: 0.6rem;
}
.index-fangan .index-fangan-flex .index-fangan-left > li .texts .tit {
  position: relative;
}
.index-fangan .index-fangan-flex .index-fangan-left > li .texts .tit::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  display: block;
  width: 0.7rem;
  height: 2px;
  background: #FFFFFF;
  border-radius: 4px;
  opacity: 0.6;
}
.index-fangan .index-fangan-flex .index-fangan-left > li .texts .desc {
  padding-top: 0.6rem;
  font-weight: 300;
  max-width: 7.78rem;
  margin: auto;
}
.index-fangan .index-fangan-flex .index-fangan-left > li .img {
  width: 100%;
  height: 100%;
}
.index-fangan .index-fangan-flex .index-fangan-left > li.on {
  display: block;
}
.index-fangan .index-fangan-flex .index-fangan-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 0.3rem;
  background: #fff;
  border-radius: 0.14rem;
}
.index-fangan .index-fangan-flex .index-fangan-right > li {
  padding: 0 0.3rem;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 1;
  border-bottom: 1px solid #ECECEC;
}

.index-fangan .index-fangan-flex .index-fangan-right > li:last-child {
  border-bottom: none;
}

.index-fangan .index-fangan-flex .index-fangan-right > li > div {
  
  padding: 0.28rem 0 0.28rem 0.64rem;
  position: relative;
  color: #333333;
}
.index-fangan .index-fangan-flex .index-fangan-right > li > div::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.44rem;
  width: 0.12rem;
  height: 0.12rem;
  background: #D0D0D0;
  border-radius: 50%;
  display: block;
}
.index-fangan .index-fangan-flex .index-fangan-right > li:last-child > div {
  border: 0;
}
.index-fangan .index-fangan-flex .index-fangan-right > li.on > div {
  color: #fff;
  border-bottom: 0;
}
.index-fangan .index-fangan-flex .index-fangan-right > li.on > div::after {
  background: #fff;
}
.index-fangan .index-fangan-flex .index-fangan-right > li.on::before {
  content: "";
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  background: #428EF7;
  border-radius: 0.14rem;
}
.index-fangan .index-fangan-flex .index-fangan-right > li.on::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: -0.14rem;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 0.12rem solid transparent;
  border-bottom: 0.12rem solid transparent;
  border-right: 0.15rem solid #428EF7;
  z-index: 3;
}
.index-fangan .index-fangan-flex .index-fangan-menu {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  margin-bottom: 0.2rem;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li {
  display: inline-block;
  padding: 0 0.2rem;
  position: relative;
  line-height: 0.42rem;
  cursor: pointer;
  background: #fff;
  border-radius: 0.14rem;
  margin-right: 0.1rem;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li > div {
  padding: 0.24rem 0.2rem 0.24rem 0.58rem;
  position: relative;
  color: #333333;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li > div::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.41rem;
  width: 0.12rem;
  height: 0.12rem;
  background: #D0D0D0;
  border-radius: 50%;
  display: block;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li.on > div {
  color: #fff;
  border-bottom: 0;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li.on > div::after {
  background: #fff;
}
.index-fangan .index-fangan-flex .index-fangan-menu > li.on::before {
  content: "";
  position: absolute;
  width: 100%;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  background: #428EF7;
  border-radius: 0.14rem;
}
.index-zhichi-flex {
  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: 767px) {
  .index-zhichi-flex {
    display: block;
  }
}
.index-zhichi-flex > li {
  width: 30.625%;
  margin-right: 4.0625%;
  border-radius: 0.14rem;
  overflow: hidden;
  background: #fff;
  padding-bottom: 0.24rem;
}
.index-zhichi-flex > li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .index-zhichi-flex > li {
    width: 100%;
    margin-bottom: 0.24rem;
  }
}
.index-zhichi-flex > li .img-box {
  width: 100%;
  height: 3.46rem;
  position: relative;
}
.index-zhichi-flex > li .img-box .img {
  display: block;
  width: 100%;
  height: 100%;
}
.index-zhichi-flex > li .img-box .num {
  position: absolute;
  bottom: 0.16rem;
  left: 0.22rem;
  color: #fff;
}
.index-zhichi-flex > li .tit1 {
  padding: 0.18rem 0.2rem 0 0.2rem;
}
.index-zhichi-flex > li .tit2 {
  padding: 0 0.2rem;
}
.index-zhichi-flex > li .desc {
  color: #666666;
  padding: 0 0.2rem;
  padding-top: 0.2rem;
}
.index-lm {
  width: 100%;
  overflow: hidden;
}
.index-lm .box {
  position: relative;
  width: 100%;
  margin-top: -0.1rem;
}
.index-lm .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: 4.45rem;
  height: 5.23rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F9FAFD), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .index-lm .box .bj1 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .index-lm .box .bj1 {
    width: 1rem;
  }
}
.index-lm .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: 4.45rem;
  height: 5.23rem;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F9FAFD), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1580px) {
  .index-lm .box .bj2 {
    height: 7rem;
  }
}
@media (max-width: 1260px) {
  .index-lm .box .bj2 {
    width: 3rem;
    height: 5.2rem;
  }
}
@media (max-width: 767px) {
  .index-lm .box .bj2 {
    width: 1rem;
  }
}
.index-lm .box .h_coo_con {
  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-lm .box .h_coo_con .img {
  display: inline-block;
}
.index-lm .box .h_coo_con .img a {
  background: #FFFFFF;
  width: 3.77rem;
  height: 2.28rem;
  border-radius: 0.14rem;
  overflow: hidden;
  margin: 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-lm .box .h_coo_con .img img {
  max-width: 100% !important;
  max-height: 100% !important;
}
.index-xinwen-flex {
  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;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .index-xinwen-flex {
    margin-top: -0.13rem;
  }
}
.index-xinwen-flex > li {
  width: 49.0625%;
  height: 4.28rem;
  overflow: hidden;
  margin-top: 0.3rem;
  border-radius: 0.14rem;
  position: relative;
}
@media (max-width: 767px) {
  .index-xinwen-flex > li {
    height: 2.18rem;
    margin-top: 0.13rem;
  }
}
.index-xinwen-flex > li > a {
  display: block;
  width: 100%;
  height: 100%;
}
.index-xinwen-flex > li .img {
  width: 100%;
  height: 100%;
}
.index-xinwen-flex > li .tit {
  width: 100%;
  padding: 1.03rem 0.34rem 0.3rem 0.34rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}
@media (max-width: 767px) {
  .index-xinwen-flex > li .tit {
    padding: 0.8rem 0.24rem 0.2rem 0.24rem;
  }
}
.fa-youshi {
  width: 100%;
  padding-bottom: 0.7rem;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}
.fa-youshi .fa-fj {
  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: 767px) {
  .fa-youshi .fa-fj {
    display: block;
  }
}
.fa-youshi .fa-fj .img {
  width: 7.11rem;
  height: 3.11rem;
}
@media (max-width: 767px) {
  .fa-youshi .fa-fj .img {
    width: 100%;
    height: auto;
  }
}
.fa-youshi .fa-fj .fa-fj-right {
  color: #333;
  margin-left: 0.69rem;
}
.fa-youshi .fa-fj .fa-fj-right > div {
  padding-top: 0.5rem;
  font-weight: 500;
}
.fa-youshi .fa-fj .fa-fj-right > p {
  padding-top: 0.2rem;
}
.fa-youshi .cp-class {
  padding-top: 0.5rem;
}
.fa-cp {
  margin-top: 0.4rem;
}
.fa-cp > li {
  display: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#F8F9FA), to(#FFFFFF));
  background: -webkit-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -moz-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: -o-linear-gradient(top, #F8F9FA 0%, #FFFFFF 100%);
  background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
  -webkit-box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 0.07rem 0.1rem 0px rgba(0, 0, 0, 0.04);
  border-radius: 0.14rem;
  padding: 0.3rem;
}
.fa-cp > li > div {
  position: relative;
  color: #333;
  margin-bottom: 0.24rem;
}
.fa-cp > li > div:last-child {
  margin-bottom: 0;
}
.fa-cp > li > div .svg {
  position: absolute;
  width: 0.26rem;
  height: 0.26rem;
  top: 0.07rem;
  left: 0;
}
.fa-cp > li > div > p {
  padding-left: 0.36rem;
}
.fa-cp > li.on {
  display: block;
}
.cp-ly {
  width: 100%;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  background-position: top center;
  padding-top: 0.12rem;
  padding-bottom: 0.42rem;
}
.cp-ly .cp-ly-item {
  color: #fff;
  padding-top: 0.3rem;
}
.cp-xtzc {
  padding-bottom: 1rem;
}
.cp-xtzc .fa-ul > li {
  margin-top: 0.9rem;
}
.cp-jishu .cp-jishu-ul .cp-jishu-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;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cp-jishu .cp-jishu-ul .cp-jishu-item {
    display: block;
    margin-top: 0.6rem;
  }
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .img {
  width: 7.5rem;
  min-width: 7.5rem;
}
@media (max-width: 767px) {
  .cp-jishu .cp-jishu-ul .cp-jishu-item .img {
    width: 100%;
    min-width: unset;
  }
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .rig {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0.85rem;
}
@media (max-width: 767px) {
  .cp-jishu .cp-jishu-ul .cp-jishu-item .rig {
    margin-left: 0;
    margin-top: 0.3rem;
  }
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .rig .num {
  font-weight: 500;
  color: #333333;
  position: relative;
  padding-left: 0.06rem;
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .rig .num::after {
  content: "";
  display: block;
  width: 0.55rem;
  height: 2px;
  background: #245DAB;
  position: absolute;
  left: 0;
  margin: auto;
  bottom: -0.1rem;
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .rig .tit {
  font-weight: 500;
  color: #333333;
  margin-top: 0.46rem;
}
.cp-jishu .cp-jishu-ul .cp-jishu-item .rig .desc {
  font-weight: 400;
  color: #666666;
  margin-top: 0.12rem;
}
.cp-jishu .cp-jishu-ul .cp-jishu-item:nth-child(2n) .rig {
  margin-left: 0;
  margin-right: 0.85rem;
}
@media (max-width: 767px) {
  .cp-jishu .cp-jishu-ul .cp-jishu-item:nth-child(2n) .rig {
    margin-right: 0;
    margin-bottom: 0.3rem;
  }
}
.cp-anquan {
  padding-bottom: 1.5rem;
}
.cp-anquan .cpxq-tit1 {
  padding-top: 1.9rem;
}
.cp-anquan .desc {
  font-weight: 400;
  color: #333333;
  margin-top: 0.9rem;
}
.cp-anquan .img {
  display: block;
  margin: auto;
  max-width: 100%;
  margin-top: 0.85rem;
}
.fa-titles {
  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;
  padding-top: 1rem;
}
.fa-titles > p {
  font-weight: 500;
  color: #333333;
  line-height: 1;
}
.fa-titles > span {
  display: block;
  color: #999;
  font-weight: 400;
  margin-left: 0.08rem;
  line-height: 1;
}
.fa-class {
  padding-top: 0.52rem;
}
.fa-class .cp-class .cp-class-item {
  padding: 0.24rem;
}
.fw-hangyun .index-zhichi-flex {
  margin-top: 1rem;
}
.fw-hangyun .index-zhichi-flex > li {
  margin-bottom: 0.6rem;
}
.fw-hangyun .index-zhichi-flex > li .desc {
  padding-top: 0.16rem;
}
.fw-hangyun .fw-list .fw-item .fw-zz {
  padding: 0.4rem;
}
.fw-hangyun .fw-list .fw-item .fw-zz .desc {
  min-height: unset;
}
.fw-feixing {
  background: #F8F9FA;
  padding-bottom: 1rem;
}
.fw-hangyun-desc {
  text-align: center;
  font-weight: 400;
  color: #333333;
}
.fw-hangyun-hx-tit {
  font-weight: 400;
  text-align: center;
  color: #333333;
  padding-top: 1rem;
}
.fw-hangyun-hx-items {
  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: 767px) {
  .fw-hangyun-hx-items {
    display: block;
    margin-top: 0.4rem;
  }
}
.fw-hangyun-hx-items > li {
  width: 31.25%;
  height: 3rem;
  background: #F8F9FA;
  border-radius: 0.14rem;
  margin-top: 0.6rem;
  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;
  text-align: center;
  margin-right: 3.125%;
}
.fw-hangyun-hx-items > li:nth-child(3n) {
  margin-right: 0;
}
.fw-hangyun-hx-items > li > div {
  padding: 0.3rem;
}
@media (max-width: 767px) {
  .fw-hangyun-hx-items > li > div {
    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;
    text-align: left;
    padding: 0.3rem 0.4rem;
  }
}
.fw-hangyun-hx-items > li .svg {
  width: 0.5rem;
  height: 0.5rem;
  margin-bottom: 0.2rem;
  min-width: 0.5rem;
}
@media (max-width: 767px) {
  .fw-hangyun-hx-items > li .svg {
    margin: 0;
    margin-right: 0.3rem;
  }
}
.fw-hangyun-hx-items > li div {
  font-weight: 500;
  color: #333333;
}
.fw-hangyun-hx-items > li p {
  font-weight: 400;
  margin-top: 0.16rem;
  color: #666666;
}
@media (max-width: 767px) {
  .fw-hangyun-hx-items > li p {
    margin-top: 0.1rem;
  }
}
@media (max-width: 767px) {
  .fw-hangyun-hx-items > li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
    display: block;
    height: auto;
  }
}
.fw-cj {
  margin-top: 1rem;
  padding-top: 0.22rem;
  padding-bottom: 0.52rem;
}
.fw-cj .desc {
  margin-top: 0.1rem;
}
.tips {
  text-align: center;
  font-weight: 400;
  color: #333333;
}
.cpzx-box .fw-list {
  padding-top: 0.2rem;
  padding-bottom: 0;
}
.px-items .px-jn {
  padding-bottom: 0;
}
.px-items > li {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .px-items > li {
    margin-bottom: 0.5rem;
  }
}
.px-items > li:last-child {
  margin-bottom: 0;
}
.khfw-content {
  padding-bottom: 1.5rem;
}
.khfw-content .px-jineng .px-jn .px-zi .desc {
  margin-top: 0.5rem;
}
.khfw-content .px-jineng .px-jn .px-zi .desc > p {
  padding: 0;
  margin-bottom: 0.2rem;
}
.khfw-content .px-jineng .px-jn .px-zi .dian > p {
  position: relative;
  padding-left: 0.3rem;
}
.khfw-content .px-jineng .px-jn .px-zi .dian > p::after {
  content: "";
  display: block;
  width: 0.14rem;
  height: 0.14rem;
  background: #D0D0D0;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.12rem;
}
.px-lx-box {
  padding-top: 0.20rem;
}
.px-lx-box .px-lx {
  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.14rem;
  color: #245DAB;
  position: relative;
  padding-left: 0.33rem;
  font-weight: 400;
}
.px-lx-box .px-lx .svg {
  width: 0.22rem;
  height: 0.22rem;
  fill: #245DAB;
  position: absolute;
  left: 0;
  top: 0.08rem;
}
.px-lx-box .px-lx .svg path,
.px-lx-box .px-lx .svg circle,
.px-lx-box .px-lx .svg rect {
  fill: #245DAB;
}
.px-lx-box .px-lx span {
  margin-right: 0.2rem;
  display: inline-block;
}
.px-lx-box .px-lx span:last-child {
  margin-right: 0;
}
.peixun-content {
  width: 100%;
  margin-top: 1.5rem;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: top center;
}
.peixun-content .cp-class .cp-class-item {
  margin-top: 0;
}
.peixun-content .peixun-tit {
  margin-top: 0.6rem;
  font-weight: 400;
  color: #333333;
}
.peixun-item {
  width: 100%;
  display: none;
}
.peixun-item.on {
  display: block;
}
.peixun-table-box {
  width: 100%;
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .peixun-table-box {
    margin-top: 0.4rem;
  }
}
.peixun-table-box .table-item {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0.14rem;
  border: 2px solid #E6E6E6;
  overflow: hidden;
}
@media (max-width: 767px) {
  .peixun-table-box .table-item {
    margin-bottom: 0.5rem;
  }
}
.peixun-table-box .table-item table {
  width: 100%;
  text-align: left;
}
.peixun-table-box .table-item table tr td,
.peixun-table-box .table-item table tr th {
  background: #F8F9FA;
  padding: 0.2rem;
  font-size: 0.24rem;
  color: #333;
}
.peixun-table-box .table-item table tr td:first-child,
.peixun-table-box .table-item table tr th:first-child {
  padding: 0.2rem 0.4rem;
}
.peixun-table-box .table-item table tr .table-title {
  text-align: center;
  font-size: 0.28rem;
  padding: 0.4rem !important;
}
@media (max-width: 767px) {
  .peixun-table-box .table-item table tr .table-title {
    padding: 0.3rem !important;
  }
}
.peixun-table-box .table-item table tr:nth-child(2n) td,
.peixun-table-box .table-item table tr:nth-child(2n) th {
  background: #fff;
}
.peixun-fangfa {
  width: 100%;
  background: #F8F9FA;
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.peixun-fangfa .px-tit {
  text-align: center;
}
.peixun-fangfa .index-zhichi-flex {
  margin-top: 0.7rem;
}
.peixun-fangfa .index-zhichi-flex > li .img-box {
  height: 2.68rem;
}
@media (max-width: 767px) {
  .peixun-fangfa .index-zhichi-flex > li .img-box {
  height: 4.68rem;
}
}
.peixun-fangfa .index-zhichi-flex > li .desc {
  padding-top: 0.14rem;
}
.about-hzkh {
  background-color: #F1F6FC;
  padding-bottom: 1.5rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom center;
  -o-background-size: cover;
  background-size: cover;
}
.about-hzkh .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: 4.45rem;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F9FAFD), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .about-hzkh .bj1 {
    width: 3rem;
  }
}
@media (max-width: 767px) {
  .about-hzkh .bj1 {
    width: 1rem;
  }
}
.about-hzkh .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: 4.45rem;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  background: -webkit-gradient(linear, right top, left top, color-stop(20.45%, #F9FAFD), to(hsla(0, 0%, 100%, 0)));
  background: -webkit-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -moz-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: -o-linear-gradient(right, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
  background: linear-gradient(270deg, #F9FAFD 20.45%, hsla(0, 0%, 100%, 0));
}
@media (max-width: 1260px) {
  .about-hzkh .bj2 {
    width: 3rem;
  }
}
@media (max-width: 767px) {
  .about-hzkh .bj2 {
    width: 1rem;
  }
}
.about-map {
  width: 100%;
  background: #fff;
  padding-bottom: 0.66rem;
}
.about-map .map-img {
  width: 92%;
  max-width: 1900px;
  margin: auto;
  margin-top: -1.8rem;
}
@media (max-width: 767px) {
  .about-map .map-img {
    margin-top: -0.8rem;
  }
}
.about-map .map-img .img {
  width: 100%;
}
.about-zhuanli {
  width: 100%;
  padding-bottom: 1.5rem;
}
.zq-swiper {
  width: 14rem;
  max-width: 1400px;
  height: 4.27rem;
  position: relative;
}
@media (max-width: 991px) {
  .zq-swiper {
    width: 92%;
    height: 5.06rem;
  }
}
.zq-swiper .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.zq-swiper .swiper-button-next.swiper-button-disabled,
.zq-swiper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}
.zq-swiper .swiper-button-next,
.zq-swiper .swiper-button-prev {
  width: 0.8rem;
  height: 0.8rem;
  background: rgba(0, 0, 0, 0.2);
  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-top: 0;
  top: 38%;
  left: unset;
  right: -0.97rem;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-button-next,
  .zq-swiper .swiper-button-prev {
    display: none;
  }
}
.zq-swiper .swiper-button-next .svg,
.zq-swiper .swiper-button-prev .svg {
  width: 0.38rem;
  height: 0.38rem;
  fill: #fff;
}
.zq-swiper .swiper-button-next .svg path,
.zq-swiper .swiper-button-prev .svg path,
.zq-swiper .swiper-button-next .svg rect,
.zq-swiper .swiper-button-prev .svg rect {
  fill: #fff;
}
.zq-swiper .swiper-button-prev {
  right: unset;
  left: -0.97rem;
}
.zq-swiper .swiper-button-prev .svg {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.zq-swiper .swiper-slide {
  width: 2.64rem !important;
  height: 4.27rem !important;
  text-align: center;
}
@media (max-width: 991px) {
  .zq-swiper .swiper-slide {
    width: 3.3rem !important;
    height: 4.375rem !important;
  }
}
.zq-swiper .swiper-slide .imgs {
  width: 100%;
  height: 3.52rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.zq-swiper .swiper-slide .imgs img {
  width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.zq-swiper .swiper-slide p {
  font-weight: 500;
}
/* about-zhuanli轮播图滚动条样式 - 仅在移动端显示 */
/* 默认隐藏滚动条 */
.zq-swiper .swiper-scrollbar {
  display: none;
}

/* 移动端显示滚动条 */
@media (max-width: 991px) {
  .zq-swiper .swiper-scrollbar {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
  }
  .zq-swiper .swiper-scrollbar-drag {
    background: #3F6AB3;
    border-radius: 2px;
  }
  .zq-swiper .swiper-scrollbar-cursor-drag {
    cursor: move;
  }
}
.lm-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;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 0.7rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .lm-list {
    padding-bottom: 0.9rem;
  }
}
.lm-list > li {
  width: 7.55rem;
  height: 3.35rem;
  background: #fff;
  overflow: hidden;
  border-radius: 0.14rem;
  margin-top: 0.9rem;
  text-align: center;
}

.lm-list a {
  display: block;
  position: relative;
  height: 100%;
}

@media (max-width: 767px) {
  .lm-list > li {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.lm-list > li .img {
  width: 100%;
  height: 100%;
}
.lm-list > li p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background: rgba(36, 93, 171, 0.1);
  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;
}
.fw-jieshao {
  margin-bottom: 0;
  background: #F8F9FA;
}
.fw-jieshao .imgs {
  width: 7.46rem;
  height: 4.5rem;
  border-radius: 0;
}
@media (max-width: 767px) {
  .fw-jieshao .imgs {
    width: 100%;
  }
}
.fw-changjing .fw-list {
  padding-top: 0;
  margin-top: -0.3rem;
}
.fw-changjing .fw-list .fw-item {
  width: 49.0625%;
  margin-top: 0.3rem;
}
.fw-changjing .fw-list .fw-item .fw-zz {
  padding: 0.4rem;
}
.fw-changjing .fw-list .fw-item .fw-zz .desc {
  min-height: unset;
}
.fw-rongzi {
  background: #F8F9FA;
  padding-bottom: 1.5rem;
}
.fw-rongzi .fw-rongzi-nei {
  min-height: 10.8rem;
  background: #fff;
  border-radius: 0.14rem;
  overflow: hidden;
  background-repeat: no-repeat;
  -o-background-size: 100% auto;
  background-size: 100% auto;
  background-position: right top;
  color: #333;
}
@media (max-width: 767px){
  .fw-rongzi .fw-rongzi-nei{
    background-image: none !important;
  }
}
@media (max-width: 767px){
  .fw-rongzi .fw-rongzi-nei .zz {
  width:100% !important;
  
}
}
.fw-rongzi .fw-rongzi-nei .zz {
  width: 8.55rem;
  padding: 0.3rem;
}
.fw-rongzi .fw-rongzi-nei .tit {
  padding-top: 0.25rem;
  font-weight: 500;
}
.fw-rongzi .fw-rongzi-nei .desc {
  font-weight: 400;
  padding-top: 0.3rem;
}
.fw-rongzi .fw-rongzi-nei .desc p {
  padding-bottom: 0.4rem;
}
.fw-rongzi .fw-rongzi-nei .desc p:last-child {
  padding-bottom: 0;
}
.fw-youshi {
  padding-bottom: 1.5rem;
}
.fw-youshi .fw-hangyun-hx-items {
  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 (min-width: 768px) {
  .fw-youshi .fw-hangyun-hx-items {
    margin-top: -0.5rem;
  }
  .fw-youshi .fw-hangyun-hx-items > li {
    margin-top: 0.5rem;
  }
  .fw-youshi .fw-hangyun-hx-items > li:nth-child(4),
  .fw-youshi .fw-hangyun-hx-items > li:nth-child(5) {
    width: 48.4375%;
    margin-right: 3.125%;
  }
  .fw-youshi .fw-hangyun-hx-items > li:nth-child(5) {
    margin-right: 0;
  }
}



.public-page {
  width: 100%;
}

.public-page .zz-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 .1rem;
  margin-bottom: .4rem;
}

.public-page .zz-box .p-num {
  display: flex;
  align-items: center;
  gap: 0 .1rem;
}


.public-page .zz-box .p-prev a,
.public-page .zz-box .p-next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
}

.public-page .zz-box .p-prev a svg,
.public-page .zz-box .p-next a svg {
  width: .15rem;
}



.public-page .zz-box .p-num a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  border-radius: 0.02rem;
  border: 1px solid #eee;
  box-sizing: content-box;
}

.public-page .zz-box .p-num .on {
    background: #245DAB;
    color: #fff;
    border-color: #245DAB;
}
.cplnbox{
  display: flex;
  align-items: center;
  margin-bottom: 0.09rem;
}
.cplnboxtitle{
  border-radius: 50%;
  width: 0.46rem;
  height: 0.46rem;
  text-align: center;
  line-height: 0.46rem;
  color: #F4A122;
  font-weight: 500;
  background: rgba(255,255,255,0.1)
}
.bottomxian{
  border-bottom: 1px solid #E7E7E7;
}
.yjbhbox{
  width: 2.90rem;height: 0.8rem;background: #278DFF;
border-radius: 0.39rem;margin: 0 auto;display: block;font-size: 0.32rem;color: #fff;line-height: 0.8rem;text-align: center;
}
.wzzw{
    height: 0.8rem;
}
@media (max-width: 991px) {
  .wzzw{
    height: 0.2rem;
  }
}
