:root {
  --section-margin: 3.5rem;
  --color-primary: #093ad4;
  --color-primary-light: #1871e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  min-width: 320px;
  max-width: 640px;
  height: 100%;
  margin: 0 auto;
}

@media only screen and (max-width:320px) {
  html {
    font-size: 9px;
  }
}

@media only screen and (min-width:320px) and (max-width:352px) {
  html {
    font-size: 10px;
  }
}

@media only screen and (min-width:352px) and (max-width:384px) {
  html {
    font-size: 11px;
  }
}

@media only screen and (min-width:384px) and (max-width:416px) {
  html {
    font-size: 12px;
  }
}

@media only screen and (min-width:416px) and (max-width:448px) {
  html {
    font-size: 13px;
  }
}

@media only screen and (min-width:448px) and (max-width:480px) {
  html {
    font-size: 14px;
  }
}

@media only screen and (min-width:480px) and (max-width:512px) {
  html {
    font-size: 15px;
  }
}

@media only screen and (min-width:512px) and (max-width:544px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (min-width:544px) and (max-width:576px) {
  html {
    font-size: 17px;
  }
}

@media only screen and (min-width:576px) and (max-width:608px) {
  html {
    font-size: 18px;
  }
}

@media only screen and (min-width:608px) and (max-width:640px) {
  html {
    font-size: 19px;
  }
}

@media only screen and (min-width:640px) {
  html {
    font-size: 20px;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  font-size: 0.7rem;
  font-family: "\5FAE\8F6F\96C5\9ED1";
  background: #f2f2f2;
  color: #333;
}

h3 {
  font-size:2rem;
  text-align: center;
  line-height: 1.5;
}

h4 {
  font-size: 1rem;
  text-align: center;
  line-height: 2;
}

p {
  font-size: 1rem;
  line-height: 1.5;
}

li,
ul {
  list-style: none;
}

a {
  color: #333;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #2479cc;
}

img {
  max-width: 100%;
  border: none;
}

img.full {
  width: 100%;
}

img.block {
  display: block;
}

img.center {
  margin: 0 auto;
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

.bg-white {
  background-color: #fff;
}

.text-white {
  color: #fff;
}

.text-danger {
  color: #f00;
}

.text-warning {
  color: #fe9221;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.pd0 {
  padding: 0;
}

.pd10 {
  padding: 0.5rem;
}

.pd20 {
  padding: 1rem;
}

.pd30 {
  padding: 1.5rem;
}

.pd40 {
  padding: 2rem;
}

.ml0 {
  margin-left: 0rem;
}

.ml10 {
  margin-left: 0.5rem;
}

.ml20 {
  margin-left: 1rem;
}

.ml30 {
  margin-left: 1.5rem;
}

.ml40 {
  margin-left: 2rem;
}

.mt0 {
  margin-top: 0rem;
}

.mt10 {
  margin-top: 0.5rem;
}

.mt20 {
  margin-top: 1rem;
}

.mt30 {
  margin-top: 1.5rem;
}

.mt40 {
  margin-top: 2rem;
}

.mr0 {
  margin-right: 0rem;
}

.mr10 {
  margin-right: 0.5rem;
}

.mr20 {
  margin-right: 1rem;
}

.mr30 {
  margin-right: 1.5rem;
}

.mr40 {
  margin-right: 2rem;
}

.mb0 {
  margin-bottom: 0rem;
}

.mb10 {
  margin-bottom: 0.5rem;
}

.mb20 {
  margin-bottom: 1rem;
}

.mb30 {
  margin-bottom: 1.5rem;
}

.mb40 {
  margin-bottom: 2rem;
}

.gap10 {
  gap: 0.5rem;
}

.gap20 {
  gap: 1rem;
}

.gap30 {
  gap: 1.5rem;
}

.gap40 {
  gap: 2rem;
}

.gap50 {
  gap: 2.5rem;
}

.grid {
  display: grid;
}

.grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
}

.flex.row-reverse {
  flex-direction: row-reverse;
}

.flex.flex-1 {
  flex: 1;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.column {
  flex-direction: column;
}


.flex.just-center {
  justify-content: center;
}

.flex.just-between {
  justify-content: space-between;
}

.flex.just-around {
  justify-content: space-around;
}

.flex.just-start {
  justify-content: flex-start;
}

.flex.just-end {
  justify-content: flex-end;
}

.flex.align-center {
  align-items: center;
}

.flex.align-start {
  align-items: flex-start;
}

.flex.align-end {
  align-items: flex-end;
}

.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon.icon-castle {
  background-image: url(../images/common/icon-castle.png);
}

.icon.icon-building {
  background-image: url(../images/common/icon-building.png);
}

.icon.icon-tick {
  background-image: url(../images/common/tick.png);
}

.icon.icon-phone1 {
  background-image: url(../images/common/icon-phone1.png);
}

.icon.icon-phone2 {
  background-image: url(../images/common/icon-phone2.png);
}

.icon.icon-wx {
  background-image: url(../images/common/icon-wechat.png);
}

.icon.icon-eye {
  background-image: url(../images/common/icon-eye.png);
}

.icon.icon-error {
  background-image: url(../images/common/error.png);
  width: 3.3rem;
  height: 3.3rem;
}

.icon.icon-seal {
  background-image: url(../images/common/seal.png);
  width: 8rem;
  height: 4.8rem;
}

.swiper {
  overflow: hidden;
  user-select: none;
}

.container {
  padding: 0 1rem;
  position: relative;
}

.header .top span {
  font-size: 1.2rem;
  font-weight: bold;
}

.header .kf{
    background-color: #fbc1c1;
    border: 1px solid #fbc1c1;
    color: #f00;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2rem;
}

.header h1 {
  width: 16rem;
  height: 4.5rem;
  background: url(../images/common/logo.png) left center no-repeat;
  background-size: auto 3rem;
}

.header h1 a {
  display: block;
  height: 100%;
  text-indent: -499.95rem;
}

.header .nav {
  background-color: #0a142d;
  color: #fff;
}

.header .nav a {
  display: block;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  flex-basis: calc(100% / 4);
  font-size: 1.4rem;
}

.footer {
  background-color: #0a142d;
  color: #818181;
  padding: 1.5rem 1.5rem 6rem;
}

.footer a {
  color: #818181;
}

.footer .nav a {
  display: block;
  text-align: center;
  flex-basis: calc(100% / 4);
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  position: relative;
}

.footer .nav a:not(:last-of-type)::after {
  display: block;
  content: '';
  width: 0.1rem;
  height: 80%;
  background-color: #818181;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer p {
  line-height: 2rem;
}

.fixed-tools {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 4.2rem;
  color: #fff;
  background-color: #e60012;
  z-index: 999;
}

.fixed-tools a {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  flex-basis: 50%;
  text-align: center;
  position: relative;
}

.fixed-tools a:not(:last-of-type)::after {
  display: block;
  content: '';
  width: 0.05rem;
  height: 80%;
  background-color: rgba(0, 0, 0, .1);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.banner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btns.bottom {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translate(-50%, 0);
}

.btns a {
  display: block;
  width: 14.5rem;
  height: 3rem;
  line-height: 3rem;
  background-image: linear-gradient(to bottom, #f7b24c, #ed6908);
  color: #fff;
  letter-spacing: 0.15rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: bold;
  border-radius: 2rem;
  box-shadow: 0 0 0.15rem rgba(237, 103, 8, 5), 0 0.15rem 0.15rem rgba(237, 103, 8, 5);
}

.btns a:hover {
  background-image: linear-gradient(to bottom, #ed6908, #f7b24c);
}

.about {
  background-image: linear-gradient(45deg, #0a3ed4, #176ce7);
}

.about .video-wrapper {
  padding: 2rem;
  position: relative;
}

.about #video {
  width: 100%;
  height: 20rem;
}

.about-content {
  color: #fff;
  padding: 0 2rem 2rem;
  user-select: none;
}

.about-content h5 {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  text-shadow: 0.05rem 0 0.05rem #666;
}

.about-content p {
  line-height: 2rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  text-shadow: 0.05rem 0 0.05rem #666;
      text-indent: 2em;
    margin-bottom: 1rem;
}

.about-content .statistics {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.about-content .statistics i {
  vertical-align: sub;
}

.about-content .statistics span {
  font-size: 2rem;
  color: #feaf54;
  vertical-align: sub;
}

.case .swiper {
  height: 28.5rem;
}

.case .swiper-slide {
  height: calc((100% - 20px) / 2) !important;
}

.case .swiper-slide img {
  height: calc(100% - 2rem);
}

.case .swiper-slide span {
  display: block;
  line-height: 2rem;
  height: 2rem;
  overflow: hidden;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

.pennant .swiper-slide img {
  height: 20rem;
}

.regular {
  padding: var(--section-margin) 0;
}

.regular .item {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, .1);
  border-radius: 1rem;
  padding: 1rem;
}

.regular .item img {
  width: 11rem;
  height: 100%;
}

.regular .item h5 {
  color: #0a40ba;
  font-size: 1.5rem;
  line-height: 2rem;
}

.regular .item p {
  margin-top: .5rem;
}

.pk {
  padding: var(--section-margin) 0;
}

.pk h3 img {
  width: 3rem;
}

.pagelist {
  padding: 20px 0;
}

.pagelist .page-status,
.pagelist a {
  display: inline-block;
  line-height: 1.5rem;
  padding: 0 0.5rem;
  background-color: #eee;
}

.pagelist .page-status,
.pagelist .page-num-current,
.pagelist a:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.pagelist .page-numbar {
  display: flex;
  gap: 0.5rem;
}

.subnav .container {
  overflow: auto;
}

.subnav a {
  display: block;
  line-height: 3rem;
  width: 25%;
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
  font-weight: bold;
  flex-shrink: 0;
  text-align: center;
}

.subnav a.active {
  color: var(--color-primary);
}

.subnav a.active span {
  display: inline-block;
  border-bottom: 2px solid var(--color-primary);
}

.newslist {
  padding: 1.5rem 1.5rem 0;
}

.newslist li a {
  padding: .5rem;
}

.newslist li img {
  width: 8rem;
  height: 6rem;
  flex-shrink: 0;
}

.newslist li h5 {
  height: 4rem;
  line-height: 2rem;
  overflow: hidden;
  font-size: 1.1rem;
}

.newslist li .meta {
  font-size: .75rem;
}

.prenext li {
  background-color: #f2f2f2;
  font-weight: bold;
}

.prenext li span {
  display: block;
  color: var(--color-primary);
}

.prenext li img {
  width: 8rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: .5rem;
}

.dynamics {
  padding: var(--section-margin) 0;
}

.dynamics .top a {
  display: block;
  font-size: 1.5rem;
  line-height: 3rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed #ccc;
}

.dynamics .top a h5 {
  height: 3rem;
  overflow: hidden;
}

.dynamics .list a {
  font-size: 1.5rem;
  line-height: 2.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px dashed #ccc;
}

.dynamics .list a h5 {
  height: 7.5rem;
  overflow: hidden;
}

.dynamics .list a img {
  width: 12.5rem;
  height: 10rem;
  object-fit: cover;
  flex-shrink: 0;
}

.dynamics .list a .meta {
  color: #a1a1a1;
  font-size: 1.2rem;
}

.gzfw{
    background-color: #fff;
    padding: 0 0 2rem 0;
}
.gzfw h3{
    padding: 2rem 0;
}

.feedback {
  background: #1341d7;
  background-size: contain;
  color: #fff;
  padding: 2rem 1.5rem;
}

.feedback .feedback-header {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}

.feedback .container {
  padding: 1.5rem;
  background: #fff;
  border-radius: .5rem;
}

.feedback .form {
  color: #000;
  text-align: center;
  position: relative;
}

.feedback .form.bd {
  border: .1rem solid #ccc;
  box-shadow: 0 0 0.2rem 0.2rem rgba(0, 0, 0, .1);
  border-radius: .5rem;
}

.feedback .form h3 {
  font-size: 2.4rem;
  font-family: "SimSun";
  line-height: 1.5;
  color: #266de3;
}

.feedback .form p {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.feedback .form-group {
  margin: 0 0 1rem;
  background: #fff;
  position: relative;
  display: flex;
}

.feedback .form-group.bd {
  border: .1rem solid #ccc;
  padding: 0;
  border-radius: .25rem;
}

.feedback .form-group:last-child {
  padding: 0;
  border: none;
}

.feedback .form-group label {
  padding-left: 1rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.2rem;
  color: #757575;
  flex-basis: 8rem;
  text-align: left;
}

.feedback .form-group input {
  display: block;
  flex-grow: 1;
  padding-right: 1rem;
  height: 3rem;
  line-height: 3rem;
  border: none;
  outline: none;
  font-size: 1.2rem;
}

.feedback .form-group input[type="submit"] {
  background-color: #ff7e02;
  background-image: linear-gradient(to bottom, #ff9b1f, #ff7e02);
  background-size: contain;
  box-shadow: 0 0 0.2rem 0.2rem rgba(0, 0, 0, .1);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .05rem;
  border-radius: .25rem;
}

.feedback .form-group.yzm button {
  position: absolute;
  right: 0;
  top: 0;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
}

.feedback .choices {
  display: flex;
  flex-grow: 1;
  font-size: 1rem;
}

.feedback .choices .choice {
  flex-grow: 1;
}

.feedback .choices input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.feedback .choices input[type="radio"]+label {
  font-size: 1rem;
  padding: 0;
}

.feedback .choices input[type="radio"]+label:before {
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 1px solid #000;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  position: relative;
  top: 1rem;
  margin-right: .5rem;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.feedback .choices input[type="radio"]:checked+label:before {
  background-color: #0178cc;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.feedback .choices input[type="radio"]:focus+label:before {
  outline: none;
  border-color: #0178cc;
}

.feedback .choices input[type="radio"]+label:empty:before {
  margin-right: 0;
}

.feedback .count-down {
  font-size: 2rem;
  border-radius: 2rem;
  background: #e32626;
  color: #fff;
  padding: .5rem 0;
  margin-bottom: 2rem;
}

.feedback .count-down span {
  font-size: 3rem;
  line-height: 1;
  display: inline-block;
  margin: 0 .2rem;
  padding: 0 .2rem;
  background: #fff;
  color: #e32626;
}

.feedback .loading {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(/template/default/static/images/loading.gif) center no-repeat rgba(0, 0, 0, .5);
  display: none;
}

.feedback .scroll {
  margin-top: 1rem;
  background: #f6f6f6;
  padding: 2rem 1.5rem;
}

.feedback .scroll h3 {
  color: #1459ce;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
}

.feedback .scroll h3 span {
  position: relative;
}

.feedback .scroll h3 span::before {
  display: inline-block;
  content: '';
  width: 2.5rem;
  height: .1rem;
  background: #1459ce;
  position: absolute;
  left: -3rem;
  top: 50%;
}

.feedback .scroll h3 span::after {
  display: inline-block;
  content: '';
  width: 2.5rem;
  height: .1rem;
  background: #1459ce;
  position: absolute;
  right: -3rem;
  top: 50%;
}

.feedback .scroll .srcoll-wrapper {
  height: 9rem;
  overflow: hidden;
  margin-top: 3rem;
}

.feedback .scroll ul {
  animation: scroll 10s linear infinite;
  margin: 0;
  padding: 0;
}

.feedback .scroll ul li a {
  display: block;
  font-size: 1.1rem;
  height: 3rem;
  line-height: 3rem;
  box-sizing: content-box;
  border-bottom: .1rem dashed #ccc;
  position: relative;
  margin: 0;
  padding: 0;
}

.feedback .scroll ul li a span {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  color: #1459ce;
}

.feedback#sdjh {
  background: #266de3;
}

.feedback#sdjh .form h3 {
  font-size: 2.5rem;
}

.feedback#dacf2 {
  background: url(../images/popularization-bg.png) center top no-repeat;
  background-size: contain;
  padding-top: 0;
}

.feedback#dacf2 .container {
  box-shadow: 0 0 0.5rem 0.5rem rgba(0, 0, 0, .1);
}

.feedback#dacf2 .form h3 {
  font-size: 2rem;
}

.feedback#cdcp {
  background: #266de3;
}

.feedback#cdcp .form h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.feedback#cdcp .form h3 span {
  color: #000;
}

.msgbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: rgba(0, 0, 0, .5);
  display: none;
}

.msgbox .msgbox-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: .5rem;
  text-align: center;
}

.msgbox .msgbox-content h3 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #266de3;
}

.msgbox .msgbox-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.msgbox .msgbox-content .close {
  display: block;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  background: url(/template/default/static/images/x.png) center no-repeat;
  background-size: cover;
  position: absolute;
  right: .5rem;
  top: .5rem;
}

