body {
  color: #333;
  max-width: 1920px;
  margin: 0 auto;
}

p {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.block {
  display: block;
}

.w-full {
  width: 100%;
}

.zq-center {
  text-align: center;
}

.block-md {
  display: none;
}

.block-sm {
  display: block !important;
}

.common-banner .carousel-item {
  width: 100%;
  background-size: cover;
  background-position: center center;
}

/* 标题 */
.page-title {
  font-weight: bold;
  color: #333333;
  line-height: 55px;
  font-size: 42px;
}

.page-title span {
  display: inline-block;
  position: relative;
  line-height: inherit;
  font-size: inherit;
  padding-bottom: 36px;

  &::after {
    content: '';
    width: 100%;
    bottom: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 196px;
    height: 6px;
    background-color: #d70c18;
  }
}

.page-title .divider {
  font-weight: bold;
  font-size: 33px;
  color: #000000;
  line-height: 39px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  margin-top: 36px;
}

.page-title .divider::after,
.page-title .divider::before {
  content: '';
  width: 197px;
  height: 6px;
  background-color: #d70c18;
  margin: 0 36px;
  position: relative;
  left: 0;
  transform: translate(0);
}

/* 描述 */
.page-desc {
  margin-top: 36px;
  font-size: 24px;
  color: #333333;
  line-height: 30px;
}

.index-row {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.panel-ul {
  padding-right: 48px;
}

/* 一行3个的内容框 */
.panel-li {
  background-color: #f5f5f5;
  margin-right: 24px;
  float: left;
  width: 33.33333333%;
  margin-top: 24px;
  transition: all 0.15s linear;
}

.panel-li:hover {
  box-shadow: 0px 0px 7px 0px #aaa;
  transform: translateY(-10px);
}

.panel-li:nth-of-type(3n) {
  float: right;
  margin-right: -48px;
}

.panel-li__img {
  height: 210px;
  background-color: #22262e;
  background-size: cover;
  background-position: center center;
}

.panel-li__title {
  font-size: 26px;
  line-height: 1.15;
  font-weight: bold;
}

.panel-li__desc {
  font-size: 18px;
  height: 80px;
  margin-top: 8px;
}

.panel-li__more {
  margin-top: 15px;
  cursor: pointer;
}

.panel-li__info {
  padding: 6px 18px 15px;
}

/* 通用属性 */
.zq-white {
  color: #fff;
}

.zq-danger {
  color: #d70c18;
  cursor: pointer;
}

.zq-danger:hover {
  color: #d70c18;
  text-decoration: underline;
}

.zq-text-sm {
  font-size: 22px;
  line-height: 1.8;
}

.zq-text-base {
  font-size: 25px;
  line-height: 2.1;
}

.zq-text-lg {
  font-size: 36px;
  line-height: 2.8;
}

.zq-text-xl {
  font-size: 48px;
  line-height: 1.1875;
}

.zq-text-base + .btn-more {
  margin-top: 24px;
}

.zq-font-bold {
  font-weight: bold;
}

.page-tools {
  position: fixed;
  bottom: 100px;
  right: 24px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.page-tools__icon {
  margin-top: 16px;
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: 100% 100%;
}

.qrcode-box {
  width: 200px;
}

.qrcode-box img {
  width: 100%;
  display: block;
}

.page-tools__icon.is-wechat {
  background-image: url('../img/tools/wechat.png');
}

.page-tools__icon.is-wechat:hover {
  background-image: url('../img/tools/wechat-sel.png');
}

.page-tools__icon.is-phone {
  background-image: url('../img/tools/phone.png');
}

.page-tools__icon.is-phone:hover {
  background-image: url('../img/tools/phone-sel.png');
}

.page-tools__icon.is-msg {
  background-image: url('../img/tools/msg.png');
}

.page-tools__icon.is-msg:hover {
  background-image: url('../img/tools/msg-sel.png');
}

.page-tools__icon.is-back {
  background-image: url('../img/tools/back.png');
}

.page-tools__icon.is-back:hover {
  background-image: url('../img/tools/back-sel.png');
}

.page-tools__icon.is-top {
  background-image: url('../img/tools/top.png');
}

.page-tools__icon.is-top:hover {
  background-image: url('../img/tools/top-sel.png');
}

.zq-img {
  background-color: rgba(34, 38, 46, 0.5);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

[class*='zq-ellipsis-'] {
  overflow: hidden;
  /* text-overflow css3的属性，当文本溢出时，显示省略号 */
  text-overflow: ellipsis;
  display: -webkit-box;
  /* 设置两行文字溢出 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zq-ellipsis-2 {
  -webkit-line-clamp: 2;
}

.zq-ellipsis-3 {
  -webkit-line-clamp: 3;
}

.zq-ellipsis-4 {
  -webkit-line-clamp: 4;
}

/* 头部相关 */
.navbar {
  padding: 15px;
  background-color: transparent;
  color: #fff;
  max-width: 1920px;
  margin: 0 auto;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand__logo {
  height: 36px;
  display: none;
}

.navbar-tel {
  margin-left: 8px;
}

.navbar-dark.is-white .navbar-toggler {
  border-color: #000;
}

.navbar-nav .nav-link {
  font-size: 24px;
  padding: 5px 20px !important;
  color: inherit !important;
  font-weight: bold;
  text-align: center;
}

.navbar .form-inline {
  justify-content: center;
}

.navbar .nav-link {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.navbar .nav-item {
  position: relative;
}

.navbar .nav-item.active .nav-link {
  color: #fff !important;
}

.navbar .nav-item.active::after,
.navbar .nav-item:hover::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.navbar .dropdown-menu {
  left: 50%;
  margin-top: -1px;
  transform: translateX(-50%);
  border: none;
  border-top: 4px solid rgba(0, 0, 0, 0.75);
  border-radius: 0px 0px 6px 6px;
  padding: 8px 0;
}

.navbar .dropdown-item {
  line-height: 52px;
  padding: 0 24px;
}

.navbar.is-white .nav-item.active::after,
.navbar.is-white .nav-item:hover::after {
  background-color: #d70c18;
}

.navbar.is-white .dropdown-menu {
  border-color: #d70c18;
}

.nav-item.is-dropdown:not(.active)::after {
  display: none !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: rgba(0, 0, 0, 0.75);
}

.navbar.is-white .dropdown-item.active,
.navbar.is-white .dropdown-item:active {
  background-color: #d70c18;
}

.navbar:not(.is-white) [data-theme='transprent'],
.navbar.is-white [data-theme='white'] {
  display: block;
}

.navbar .nav-item:hover::after {
  height: 4px;
  bottom: -3px;
  top: auto;
  transform: translateX(-50%);
}

.navbar .nav-item.active::after {
  height: 100%;
  top: 50% !important;
  transform: translate(-50%, -50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-more {
  font-size: 18px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d70c18;
  padding: 0 15px;
  color: #fff;
  background-color: #d70c18;
}

.btn-more:hover {
  box-shadow: 0px 0px 10px 0px #d70c18;
  font-weight: bold;
  color: #fff;
}

.btn.is-danger {
  color: #fff;
  background-color: #d70c18;
}

.footer {
  background-color: #22262e;
  padding: 77px 24px 63px;
  position: relative;
}

.footer .row {
  align-items: center;
  justify-content: center;
}

.footer-logo {
  width: 164px;
  height: auto;
  display: block;
}

.footer-qrcode {
  width: 178px;
  height: auto;
  display: block;
}

.footer-copyright {
  font-size: 18px;
  color: #eee;
  line-height: 35px;
  margin-top: 70px;
}

.footer-ul {
  margin-left: 48px;
}

.footer-ul li {
  font-size: 20px;
  color: #ffffff;
  line-height: 44px;
  min-width: 180px;
  cursor: pointer;
}

.footer-ul li:first-child {
  font-weight: bold;
  font-size: 26px;
}

.bz-list {
  padding-top: 36px;
  display: flex;
  flex-wrap: wrap;
}

.bz-list li {
  width: 33.33333333%;
  margin-top: 48px;
  text-align: center;
  position: relative;
  padding: 0 54px;
}

.bz-list li::after {
  content: '';
  width: 2px;
  height: 188px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #cccccc;
}

.bz-list li:nth-of-type(3n)::after {
  background-color: transparent;
}

.bz-img {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 auto;
}

.bz-title {
  font-weight: bold;
  font-size: 27px;
  color: #333333;
  line-height: 32px;
  padding: 8px 0;
}

.bz-desc {
  font-size: 21px;
  color: #22262e;
  line-height: 25px;
  margin-top: 8px;
}

.statistical-box {
  background-color: #d0121b;
  padding: 40px 0 50px;
  text-align: center;
}

.statistical-box__num {
  font-weight: bold;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.17741935;
  letter-spacing: 1px;
}

.statistical-box__num::after {
  content: '+';
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  vertical-align: text-top;
}

.statistical-box__txt {
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
}

@media (max-width: 1280px) {
  .panel-li__img {
    height: 180px;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1240px;
  }

  .panel-ul {
    padding-right: 48px;
  }

  .zq-text-sm {
    font-size: 16px;
  }

  .zq-text-base {
    font-size: 20px;
  }

  .zq-text-lg {
    font-size: 30px;
  }

  .zq-text-xl {
    font-size: 34px;
  }

  .navbar {
    padding: 21px 15px;
  }

  .navbar-brand__logo {
    height: 50px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .navbar-icon {
    height: 36px;
  }

  .btn-more {
    font-size: 18px;
    height: 48px;
    line-height: 48px;
    padding: 0 15px;
  }

  .statistical-box {
    padding: 30px 0;
  }

  .statistical-box__num {
    font-size: 42px;
  }

  .statistical-box__num::after {
    font-size: 30px;
  }

  .statistical-box__txt {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .zq-img {
    background-size: cover;
  }

  .row {
    flex-direction: column;
  }

  .index-row {
    margin-top: 32px;
  }

  .panel-ul {
    padding-right: 24px;
  }

  .panel-li {
    margin-right: 24px;
    float: left;
    width: 50%;
  }

  .panel-li:nth-of-type(3n) {
    float: left;
    margin-right: 24px;
  }

  .panel-li:nth-of-type(2n) {
    float: right;
    margin-right: -24px;
  }

  .panel-li__img {
    height: 150px;
  }

  .panel-li__title {
    font-size: 20px;
  }

  .panel-li__desc {
    font-size: 15px;
  }

  .zq-text-sm {
    font-size: 14px;
  }

  .zq-text-base {
    font-size: 17px;
  }

  .zq-text-lg {
    font-size: 24px;
  }

  .zq-text-xl {
    font-size: 26px;
  }

  .navbar {
    padding: 15px;
  }

  .navbar-brand__logo {
    height: 36px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 4px 10px !important;
  }

  .navbar-icon {
    height: 30px;
  }

  .btn-more {
    font-size: 15px;
    height: 36px;
    line-height: 36px;
    border-width: 2px;
    padding: 0 10px;
  }

  .footer {
    padding: 30px;
  }

  .footer .col.row {
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
  }

  .footer-ul {
    margin-left: 0;
  }

  .footer-ul li:first-child:first-child {
    font-size: 20px;
  }

  .footer-ul li {
    font-size: 14px;
  }

  .footer-copyright {
    font-size: 14px;
    margin-top: 24px;
    line-height: 1.5;
  }

  .footer-qrcode {
    position: absolute;
    right: 50px;
    top: 30px;
    width: 30%;
    max-width: 150px;
  }

  .footer-logo {
    width: 40%;
    max-width: 200px;
    margin-left: 15px;
    align-self: flex-start;
  }

  .statistical-box .row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .statistical-box .col {
    flex: 0 50%;
  }

  .statistical-box .col:nth-of-type(n + 3) {
    margin-top: 30px;
  }

  .block-sm {
    display: block !important;
  }
}

@media (max-width: 767.98px) {
  .hidden-md {
    display: none !important;
  }

  .block-md {
    display: block !important;
  }
}

@media (max-width: 575px) {
  .navbar-icon {
    display: none;
  }
  .navbar-tel {
    margin-left: 0;
  }
  .navbar {
    padding: 10px 15px;
  }

  .navbar-toggler {
    zoom: 0.75;
  }
  .navbar.is-white .dropdown-item:active {
    background-color: transparent !important;
    color: #333 !important;
  }

  .zq-text-sm {
    font-size: 12px;
  }

  .zq-text-base {
    font-size: 14px;
  }

  .zq-text-lg {
    font-size: 18px;
  }

  .zq-text-xl {
    font-size: 20px;
  }

  .navbar .nav-item {
    text-align: center;
  }

  .navbar + .navbar-mask {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.3s linear;
    pointer-events: none;
  }

  .navbar.is-open + .navbar-mask {
    opacity: 1;
  }

  .navbar .nav-item.active::after,
  .navbar .nav-item:hover::after {
    height: 37px;
    margin-top: 0;
    top: 0 !important;
    left: 0;
    width: 100%;
    transform: translate(0);
  }

  .navbar .navbar-nav {
    padding-top: 12px;
  }

  .navbar .dropdown-menu {
    width: 100%;
    left: 0;
    transform: translate(0);
    text-align: center;
    border: none;
    background-color: transparent;
  }

  .navbar.is-white .dropdown-item.active,
  .navbar.is-white .dropdown-item:hover::after {
    color: #000;
    background-color: transparent;
    position: relative;
  }

  .navbar.is-white .dropdown-item.active::after,
  .navbar.is-white .dropdown-item:hover::after {
    content: '';
    width: 100px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-bottom: 2px solid #d70c18;
  }

  .navbar .dropdown-item {
    line-height: 40px;
    font-size: 13px;
    position: relative;
  }

  .navbar .form-inline {
    justify-content: center;
  }

  .btn {
    font-size: 13px;
    height: 32px;
    padding: 0 8px;
  }

  .navbar-brand__logo {
    height: 30px;
  }

  .index-row {
    margin-top: 15px;
  }

  .panel-ul {
    padding: 0;
    margin-top: 0;
  }

  .panel-li {
    margin-right: 0;
    float: none !important;
    width: 100%;
    margin-top: 15px;
  }

  .panel-li__title {
    font-size: 16px;
  }

  .panel-li__desc,
  .panel-li__more {
    margin-top: 8px;
    font-size: 12px;
  }

  .panel-li__desc {
    height: auto;
  }

  .panel-li__info {
    padding: 12px;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px !important;
  }

  .page-title {
    line-height: 1.5;
    font-size: 20px;
  }

  .page-title span {
    padding-bottom: 15px;

    &::after {
      content: '';
      width: 100%;
      bottom: 0;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      max-width: 80px;
      height: 4px;
      background-color: #d70c18;
    }
  }

  .page-title .divider {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 15px;
  }

  .page-title .divider::after,
  .page-title .divider::before {
    width: 80px;
    height: 4px;
    margin: 0 24px;
  }

  /* 描述 */
  .page-desc {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.5;
  }

  .footer-qrcode {
    top: 15px;
    width: 30%;
  }

  .bz-list li {
    width: 50%;
    margin-top: 12px;
    padding-left: 0;
    padding-right: 6px;
  }

  .bz-list li:nth-of-type(2n + 2) {
    padding-left: 6px;
  }

  .bz-img {
    width: 60px;
    height: 60px;
  }

  .bz-title {
    font-size: 16px;
    padding-bottom: 0;
  }

  .bz-desc {
    margin-top: 0;
    font-size: 13px;
  }

  .bz-list li::after {
    display: none;
  }

  .carousel-indicators li {
    border: 0;
    width: 10px;
    height: 2px;
  }

  .statistical-box {
    padding: 20px 0;
  }

  .statistical-box .col:nth-of-type(n + 3) {
    margin-top: 20px;
  }

  .statistical-box__num {
    font-size: 22px;
  }

  .statistical-box__num::after {
    font-size: 20px;
  }

  .statistical-box__txt {
    font-size: 12px;
  }

  .footer-ul li {
    min-width: auto;
  }
}
