:root {
  --section-margin: 70px;
  --color-primary: #093ad4;
  --color-primary-light: #6d8bcf;
}

html,
body {
  min-width: 1200px;
}

body {
  font: 14px/150% "Microsoft Yahei";
  margin: 0 auto;
  color: #333;
  background: #fff;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p,
button {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  transition: all 0.2s ease;
  text-decoration: none;
  color: #333;
  outline: none;
}

a:hover {
  text-decoration: none;
  color: var(--color-primary);
}

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

img.full {
  width: 100%;
}

img.block {
  display: block;
}

img.center {
  margin: 0 auto;
}

h3 {
  text-align: center;
  user-select: none;
  font-size: 28px;
  letter-spacing: 2px;
  line-height: 1;
}

h4 {
  text-align: center;
  user-select: none;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

p {
  line-height: 1.5;
}

.clearfix {
  *zoom: 1;
}

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

.text-white {
  color: #fff;
}

.text-danger {
  color: #f00;
}

.container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.container.w1080 {
  width: 1080px;
}

.container.fw {
  width: 100%;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.mg0 {
  margin: 0px;
}

.mg10 {
  margin: 10px;
}

.mg20 {
  margin: 20px;
}

.mg30 {
  margin: 30px;
}

.mg40 {
  margin: 40px;
}

.ml0 {
  margin-left: 0px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.mt0 {
  margin-top: 0px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mr0 {
  margin-right: 0px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.pd0 {
  padding: 0px;
}

.pd10 {
  padding: 10px;
}

.pd20 {
  padding: 20px;
}

.pd30 {
  padding: 30px;
}

.pd40 {
  padding: 40px;
}

.pl0 {
  padding-left: 0px;
}

.pl10 {
  padding-left: 10px;
}

.pl20 {
  padding-left: 20px;
}

.pl30 {
  padding-left: 30px;
}

.pl40 {
  padding-left: 40px;
}

.pt0 {
  padding-top: 0px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}

.pt40 {
  padding-top: 40px;
}

.pr0 {
  padding-right: 0px;
}

.pr10 {
  padding-right: 10px;
}

.pr20 {
  padding-right: 20px;
}

.pr30 {
  padding-right: 30px;
}

.pr40 {
  padding-right: 40px;
}

.pb0 {
  padding-bottom: 0px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.gap10 {
  gap: 10px;
}

.gap20 {
  gap: 20px;
}

.gap30 {
  gap: 30px;
}

.gap40 {
  gap: 40px;
}

.gap50 {
  gap: 50px;
}

.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);
}

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

.flex {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

.align-stretch {
  align-items: stretch;
}

.icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  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-error {
  background-image: url(../images/common/error.png);
  width: 66px;
  height: 66px;
}

.icon.icon-seal {
  background-image: url(../images/common/seal.png);
  width: 160px;
  height: 96px;
}

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

.header h1 {
  width: 270px;
  height: 64px;
  margin:8px 0;
  background: url(../images/common/logo.png) center no-repeat;
  background-size: contain;
}

/* .header h1:hover {
    transform: scale(1.01);
} */

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

.header .kf {
  display: block;
  height: 40px;
  line-height: 40px;
  background-color: #fccd70;
  border: 1px solid #fccd70;
  color: #000;
  margin: 20px 0px 0 30px;
  padding: 0 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
}

.header .kf:hover {
  background-color: #fff;
  color: #fccd70;
}

.header .nav {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0 60px 0 300px;
}

.tells {
  background: #fae3e9;
  display: block;
  line-height: 3;
  padding: 0 20px;
  border-radius: 28px;
  color: #b70413;
}

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

.banner {
  height: 535px;
}

.banner .swiper-slide {
  height: 535px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.footer {
  background-color: #212121;
  color: #818181;
  letter-spacing: 1px;
  margin-top: var(--section-margin);
}

.footer a {
  color: #818181;
}

.footer a:hover {
  color: var(--color-primary);
}

.footer .nav {
  padding: 40px 0 20px;
}

.footer h2 {
  width: 197px;
  background: url(../images/common/foot-logo.png) no-repeat;
  background-size: contain;
}

/* .footer h2:hover {
    transform: scale(1.01);
} */

.footer h2 a {
  display: block;
  height: 100%;
  text-indent: -9999px;
}

.footer a:hover {
  color: #fff;
}

.footer dl:nth-of-type(3) {
  width: 330px;
}

.footer dt {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.footer dd {
  font-size: 14px;
  line-height: 2;
}

.footer dd span {
  width: 80px;
  flex-shrink: 0;
}

.footer .copyright {
  text-align: center;
  padding: 50px 0;
}

.footer .copyright p {
  line-height: 1.8;
  font-size: 16px;
}

.footer .qr p {
  line-height: 30px;
}

.footer .qr img {
  display: block;
  width: 110px;
  height: 110px;
}

.about {
  margin-top: var(--section-margin);
  background-image: linear-gradient(to right, #0a3ed4, #176ce7);
  height: 520px;
}

.about #video {
  width: 640px;
  height: 520px;
}

.about-content {
  width: 560px;
  color: #fff;
  padding: 40px;
  user-select: none;
}

.about-content .corp-name {
  margin-bottom: 30px;
}

.about-content .corp-name>div {
  width: 36px;
  text-shadow: 1px 0 2px #333;
}

.about-content .corp-name>div>div:nth-of-type(1) {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.about-content .corp-name>div>div:nth-of-type(2) {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}

.about-content h5 {
  font-size: 21px;
  letter-spacing: 2px;
}

.about-content p {
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-content .statistics {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

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

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

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: var(--section-margin);
}

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

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

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

.case {
  margin-top: var(--section-margin);
  user-select: none;
}

.case h4 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 20px;
  color: #717171;
}

.case .swiper-slide img {
  height: 350px;
}

.realcase {
  margin-top: var(--section-margin);
  user-select: none;
}

.realcase h4 {
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 20px;
  color: #717171;
}

.realcase .swiper {
  height: 430px;
}

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

.realcase .swiper-slide img {
  height: 100%;
  object-fit: cover;
}

.honor {
  margin-top: var(--section-margin);
  user-select: none;
}

.honor h3 {
  font-size: 28px;
  letter-spacing: 2px;
}

.honor img {
  -webkit-user-drag: none;
  height: 270px;
  object-fit: cover;
}

.pk {
  margin-top: var(--section-margin);
  user-select: none;
  background: url(../images/common/pk-bg.png) center no-repeat;
  padding: 50px 0 60px;
}

.pk h4 {
  font-size: 21px;
}

.pk .wrapper {
  height: 550px;
  background: url(../images/common/pk.png) center no-repeat;
  position: relative;
}

.pk .wrapper h5 {
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 1px;
  position: absolute;
  line-height: 40px;
  display: flex;
  align-items: center;
  height: 90px;
  padding: 5px 0;
  color: #666;
}

.pk .wrapper h5:nth-of-type(1n + 5) {
  color: #fff;
}

.pk .wrapper h5:nth-of-type(1) {
  left: 100px;
  top: 105px;
}

.pk .wrapper h5:nth-of-type(2) {
  left: 100px;
  top: 195px;
}

.pk .wrapper h5:nth-of-type(3) {
  left: 100px;
  top: 295px;
}

.pk .wrapper h5:nth-of-type(4) {
  left: 100px;
  top: 405px;
}

.pk .wrapper h5:nth-of-type(5) {
  left: 760px;
  top: 95px;
}

.pk .wrapper h5:nth-of-type(6) {
  left: 730px;
  top: 195px;
}

.pk .wrapper h5:nth-of-type(7) {
  left: 710px;
  top: 315px;
}

.pk .wrapper h5:nth-of-type(8) {
  left: 690px;
  top: 425px;
}

.regular {
  margin-top: var(--section-margin);
  padding-bottom: var(--section-margin);
  user-select: none;
}

.regular h4 {
  font-size: 21px;
  letter-spacing: 2px;
  margin-top: 30px;
}

.regular h4 span {
  display: inline-block;
  background: #fe9321;
  border-radius: 30px;
  padding: 0 100px;
  line-height: 50px;
  color: #fff;
}

.regular .item {
  width: 290px;
  height: 410px;
  background-image: url(../images/common/regular-1.png);
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.regular .item:nth-of-type(2) {
  background-image: url(../images/common/regular-2.png);
}

.regular .item:nth-of-type(3) {
  background-image: url(../images/common/regular-3.png);
}

.regular .item:nth-of-type(4) {
  background-image: url(../images/common/regular-4.png);
}

.regular .item>div {
  position: absolute;
  left: 40px;
  top: 100px;
  width: 220px;
  height: 120px;
  line-height: 30px;
}

.regular .item h5 {
  font-size: 18px;
}

.regular .item h5 span {
  color: var(--color-primary);
}

.newslist li {
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  height: 220px;
}

.newslist li a {
  display: block;
  line-height: 40px;
  font-size: 21px;
  font-weight: bold;
}

.newslist li span {
  font-size: 12px;
  line-height: 20px;
  color: #999;
}

.newslist li p {
  line-height: 1.8;
  margin: 10px 0;
}

.wen {
  width: 72%;
  float: right;
}

.pagelist .page-status,
.pagelist a {
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
  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: 10px;
}

.bread {
  color: #777;
}

.bread a {
  color: #777;
}

.prenext a {
  line-height: 30px;
}

.news {
  margin-top: var(--section-margin);
}

.news h3 {
  font-size: 28px;
  letter-spacing: 2px;
}

.news .image {
  width: 600px;
}

.news .image img {
  width: 600px;
  height: 450px;
  -webkit-user-drag: none;
  object-fit: cover;
}

.news .list {
  flex: 1;
}

.news .list .item {
  font-size: 14px;
  line-height: 26px;
  padding: 20px 20px 20px 60px;
}

.news .list .active {
  background-color: #ededed;
}

.news .list .item a {
  display: block;
}

.news .list .item h5 {
  line-height: 30px;
  height: 30px;
  font-size: 18px;
  overflow: hidden;
}

.news .list .item span {
  display: block;
  color: #999;
  line-height: 20px;
}

.news .list .item p {
  height: 60px;
  line-height: 30px;
  overflow: hidden;
}

/*表单*/
.one {
  background: url(../images/gzdb/liuyanbg.jpg) no-repeat center;
  height: 500px;
  padding-top: 50px;
  width: 1200px;
  margin: 0px auto;
}

.feedback {
  background: url(../images/common/form-bg.png) center top no-repeat;
  background-size: contain;
  padding: 2rem 1.5rem 0 1.5rem;
  width: 450px;
  float: right;
}

.feedback p {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feedback span {
  font-size: 16px;
}

.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: 0.5rem;
}

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

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

.feedback .form h3 {
  font-size: 3.5rem;
  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: 1px #d2d2d2 solid;
  padding: 0;
  border-radius: 0.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-shrink: 0;
  flex-basis: 6rem;
  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, 0.1);
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  border-radius: 0.25rem;
}

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

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

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

.msgbox .msgbox-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  background: #fff;
  padding: 3rem 3rem;
  border-radius: 0.5rem;
  text-align: center;
}

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

.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(../images/common/x.png) center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.modal-box {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}

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

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

.modal-box .modal-content p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.modal-box .form-group {
  margin: 0 0 1.2rem;
  background: #fff;
  position: relative;
  display: flex;
}

.modal-box .form-group.bd {
  border: 0.1rem solid #ccc;
  padding: 0;
  border-radius: 0.25rem;
}

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

.modal-box .form-group label {
  padding-left: 1rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.2rem;
  color: #757575;
}

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

.modal-box .form-group input[type="submit"] {
  height: 4rem;
  background: url(../images/common/submit.png) center no-repeat;
  background-size: cover;
  box-shadow: 0 0 0.2rem 0.2rem rgba(0, 0, 0, 0.1);
  text-indent: -9999px;
  border-radius: 0.25rem;
}

.modal-box .loading {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/common/loading.gif) center no-repeat rgba(0, 0, 0, 0.5);
  display: none;
}

.modal-box .modal-content .close {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/common/x.png) center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

.jf_trans {
  position: fixed;
  right: 10px;
  top: 300px;
  z-index: 999;
  width: 50px;
  flex-wrap: wrap;
}

.jf_trans a {
  display: block;
  flex: 1 0 100%;
  line-height: 50px;
  text-align: center;
  border: 1px solid #fbc1c1;
  background-color: #fff;
  color: #fbc1c1;
}