:root {
  --section-margin: 70px;
  --color-primary: #1e7ef7;
  --color-primary-light: #6eabf5;
}

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

.text-white {
  color: #fff;
}

.text-danger {
  color: #f00;
}

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

.container.w1080 {
  width: 1080px;
}
.container.w1000 {
  width: 1000px;
}

.container.fw {
  width: 100%;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

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

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

.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: 30px;
  height: 30px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

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

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

.header h1 {
  width: 230px;
  height: 90px;
  background: url(../images/common/logo.png) center no-repeat;
}

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

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

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

.header .nav li {
  height: 100%;
}
.header .nav li a {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}
.header .nav .active a,
.header .nav a:hover {
  color: #fff;
  background-color: #eb6c05;
}

.banner {
  height: 640px;
}

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

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

.block-title {
  color: #000;
  font-size: 52px;
  letter-spacing: 4px;
}

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

.footer p {
  text-align: center;
  line-height: 2;
}

.footer a {
  color: #818181;
}

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

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

.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: 450px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  letter-spacing: 3px;
  text-align: center;
  font-size: 23px;
  border-radius: 10px;
  background-color: rgb(33, 136, 202);
  cursor: pointer;
}

.btns a:hover {
  background-image: linear-gradient(
    to bottom,
    rgb(33, 136, 202),
    rgb(96, 184, 238)
  );
}

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

.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;
}
.credible {
  padding: 70px 0;
  /* background: url(../images/common/credible-bg.png) center top no-repeat; */
}
.credible .block-title {
  color: #000;
}
.credible img {
  display: block;
  width: 100%;
  height: 190px;
}

.credible p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.form {
  padding: 70px 0;
}
.form .container {
  padding: 0 80px;
}
.form form {
  position: relative;
}
.form form .loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/common/loading.gif) center no-repeat
    rgba(0, 0, 0, 0.5);
  display: none;
}
.form label {
  display: block;
}
.form label[aria-required="true"]::after {
  content: "*";
  color: #f00;
}
.form input {
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  margin-top: 10px;
}
.form .submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form input[type="submit"] {
  display: inline-block;
  width: auto;
  padding: 5px 80px;
  cursor: pointer;
  background-color: rgb(33, 136, 202);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  letter-spacing: 2px;
}


.highlight {
  color: #eb6c05;
}