﻿/**
 * @Description: 网站页面主要样式
 * @Author: MaXueWei
 * @Date: 2023-7-4 23:29:01
 * @LastEditors: MaXueWei
 * @LastEditTime: 2023-7-4 23:29:01
 */
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  outline: none;
}
html {
  font-size: 60px;
}
body::-webkit-scrollbar {
  width: 4px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #c94500;
  cursor: pointer;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
input,
button {
  outline: 0 none;
  border: none;
  background-color: transparent;
}
button {
  cursor: pointer;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image img {
  transition: transform 0.8s;
  width: 100%;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}
main {
  position: relative;
  z-index: 10;
}
section {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1800px) {
  html {
    font-size: 53px;
  }
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 45px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 44px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 43px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 42px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 39px;
  }
}
@media screen and (max-width: 1152px) {
  html {
    font-size: 35px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 60px;
  }
  body {
    margin-top: 50px;
  }
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  width: 100%;
  max-width: 85vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .mxw-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (max-width: 1100px) {
  .m-hide {
    display: none!important;
  }
}
@media screen and (min-width: 1100px) {
  .pc-hide {
    display: none!important;
  }
}
/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer-list > li img {
  width: 100%!important;
  height: auto!important;
  transform: translate(0, 0) !important;
}
/* ==================== 图片放大插件 End ==================== */
/* ==================== 头部导航样式 Start ==================== */
header ul,
header li {
  list-style: none;
}
@media screen and (min-width: 1100px) {
  header {
    width: 100%;
    z-index: 50;
  }
  header .pc-nav {
    position: relative;
    background-color: #fff;
    transition: transform 0.4s, background-color 0.4s;
    font-family: inherit;
  }
  header .pc-nav > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    max-width: 89.92vw;
  }
  header .pc-nav > .mxw-box > ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    min-width: 0;
    flex-grow: 1;
    margin-left: 5.21vw;
  }
  header .pc-nav > .mxw-box > ul > li {
    position: relative;
    font-family: inherit;
  }
  header .pc-nav > .mxw-box > ul > li:after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -0.16vw;
    left: 0;
    height: 0.31vw;
    background-color: #000;
    border-radius: 5.21vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  header .pc-nav > .mxw-box > ul > li.active > a,
  header .pc-nav > .mxw-box > ul > li:hover > a {
    /*font-weight: bold;*/
  }
  header .pc-nav > .mxw-box > ul > li.active:after,
  header .pc-nav > .mxw-box > ul > li:hover:after {
    opacity: 1;
    visibility: visible;
  }
  header .pc-nav > .mxw-box > ul > li:hover .sub-navbar {
    opacity: 1;
    visibility: visible;
  }
  header .pc-nav > .mxw-box > ul > li:last-child {
    margin-right: 0;
  }
  header .pc-nav > .mxw-box > ul > li > a {
    display: block;
    position: relative;
    font-size: 1.04vw;
    padding: 1.82vw 0;
    color: #333;
    text-decoration: none;
    transition: background-color 0.4s, color 0.4s;
    font-family: inherit;
    text-align: center;
  }
  header .pc-nav > .mxw-box .sub-navbar {
    position: absolute;
    min-width: 7.29vw;
    top: 100%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    padding-top: 0.52vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 70;
    display: none;
  }
  header .pc-nav > .mxw-box .sub-navbar:before,
  header .pc-nav > .mxw-box .sub-navbar:after {
    content: "";
    display: block;
    width: 0.83vw;
    height: 0.83vw;
    position: absolute;
    left: 50%;
    top: 0.52vw;
    background-color: #fff;
    transform: rotate(45deg) translateX(-50%);
    z-index: 3;
  }
  header .pc-nav > .mxw-box .sub-navbar:before {
    z-index: 1;
    box-shadow: 0 0 0.36vw 0.1vw rgba(0, 0, 0, 0.2);
  }
  header .pc-nav > .mxw-box .sub-navbar > ul {
    background-color: #fff;
    box-shadow: 0 0 0.36vw 0.1vw rgba(0, 0, 0, 0.2);
    border-radius: 0.21vw;
    padding: 0.52vw 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
  }
  header .pc-nav > .mxw-box .sub-navbar > ul > li:hover {
    background-color: #f3f3f3;
  }
  header .pc-nav > .mxw-box .sub-navbar > ul > li:hover a {
    color: #000;
  }
  header .pc-nav > .mxw-box .sub-navbar > ul > li a {
    display: block;
    padding: 0.52vw 0.78vw;
    font-size: 0.78vw;
    color: #9fa3a6;
    font-family: "OPPOSANS-R";
    transition: color 0.4s;
  }
  header .pc-nav .logo {
    display: block;
    width: 37.92vw;
    overflow: hidden;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 1100px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 99;
  }
  header .mobile-nav {
    position: relative;
  }
  header .mobile-nav > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    padding: 2.67vw 4vw;
    height: calc(100vh - 13.33vw);
    font-weight: bold;
    overflow: auto;
  }
  header .mobile-nav > ul a {
    text-decoration: none;
    padding: 2.67vw 0;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 3.73vw;
  }
  header .mobile-nav > ul a:after {
    content: "+";
    display: none;
    margin-left: 2.67vw;
    font-weight: bold;
    font-size: 4.8vw;
    line-height: 2.67vw;
  }
  header .mobile-nav > ul > li {
    border-bottom: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .child.open > a:after {
    content: "-";
  }
  header .mobile-nav .child > a:after {
    display: block;
  }
  header .mobile-nav .sub {
    padding-left: 4vw;
  }
  header .mobile-nav .sub > li {
    border-top: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .sub > li > a {
    font-weight: 400;
    color: #888;
  }
  header .mobile-nav .sub > li:first-child {
    border-top: 0;
  }
  header .mobile-nav .three {
    padding-left: 4vw;
  }
  header .mobile-nav .three > li {
    border-top: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .three > li > a {
    font-weight: 400;
    color: #999;
  }
  header .mobile-nav .three > li:first-child {
    border-top: 0;
  }
  header .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    height: 13.33vw;
    border-bottom: 0.27vw solid #eee;
  }
  header .head-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .logo {
    display: block;
    flex-shrink: 0;
  }
  header .logo img {
    height: 8vw;
  }
  header .search {
    width: 5.33vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 5.33vw;
  }
  header .search-form {
    position: fixed;
    top: -4px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 2.67vw 5.33vw;
    box-shadow: 0 1.33vw 2.67vw -1.33vw rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header .search-form form {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  header .search-form form input {
    min-width: 0;
    flex-grow: 1;
    border: 0.27vw solid #eee;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
  }
  header .search-form form button {
    flex-shrink: 0;
    width: 8vw;
    background: #c94500;
    padding: 0.53vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .search-form form button img {
    width: 5.33vw;
    filter: brightness(0) invert(1);
  }
  header .nav-btn {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 6.93vw;
    transition: all 0.4s;
    cursor: pointer;
    z-index: 9;
  }
  header .nav-btn i {
    width: 100%;
    height: 2px;
    background-color: #333;
    margin-bottom: 1.6vw;
    transition: color 0.4s, top 0.4s, left 0.4s;
  }
  header .nav-btn i:last-child {
    margin-bottom: 0;
  }
  header .nav-btn.active {
    width: 5.33vw;
    height: 5.33vw;
    transform: rotate(45deg);
    top: 7.47vw;
  }
  header .nav-btn.active i {
    background-color: #000;
  }
  header .nav-btn.active i:nth-child(2) ~ i {
    display: none;
  }
  header .nav-btn.active i:nth-child(1),
  header .nav-btn.active i:nth-child(2) {
    margin: 0;
    position: absolute;
  }
  header .nav-btn.active i:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 0.53vw;
  }
  header .nav-btn.active i:nth-child(2) {
    width: 0.53vw;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
footer {
  background-color: #000;
}
  
footer .foot-content {
  padding-top: 1.04vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
footer .foot-message {
  width: 19.79vw;
  flex-shrink: 0;
  padding-left: 2.08vw;
}
footer .foot-message .form-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.04vw;
}
footer .foot-message .form-item:after {
  content: "";
  display: block;
  width: 0.1vw;
  height: 0.63vw;
  background-color: #4c4c4c;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.36vw;
  z-index: 3;
}
footer .foot-message .icon {
  flex-shrink: 0;
  width: 1.56vw;
  margin-right: 0.52vw;
  position: absolute;
  left: -2.08vw;
  top: 50%;
  transform: translateY(-50%);
}
footer .foot-message input {
  display: block;
  min-width: 0;
  flex-grow: 1;
  background-color: #3d3d3d;
  height: 1.56vw;
  line-height: 1.56vw;
  border-radius: 0.26vw;
  overflow: hidden;
  padding: 0 1.04vw;
  color: #fff;
  font-size: 0.63vw;
}
footer .foot-message button {
  font-size: 0.63vw;
  background-color: #4a4a4a;
  color: #fff;
  width: 9.64vw;
  height: 1.77vw;
  line-height: 1.77vw;
  text-align: center;
  border-radius: 5.21vw;
  display: block;
  outline: none;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.4s;
}
footer .foot-message button:hover {
  background-color: #555;
}
footer .foot-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
footer .foot-navbar .foot-item {
  display: block;
  padding: 2.08vw 1.08vw;
  text-align: center;
  font-size: 1.04vw;
  color: #fff;
  line-height: 1.1;
}
footer .foot-contact {
  font-size: 0.89vw;
}
footer .foot-contact p {
  display: block;
  margin-bottom: 1.3vw;
  color: #d5d5d5;
  font-size: inherit;
}
footer .foot-contact p:last-child {
  margin-bottom: 0;
}
footer .qr {
  width: 7.03vw;
  flex-shrink: 0;
}
footer .qr img {
  width: 100%;
}
footer .foot-copyright {
  padding-top: 1.04vw;
  padding-bottom: 1.04vw;
  text-align: center;
  font-size: 0.63vw;
  color: #b7b7b7;
  line-height: 1.2;
}
footer .foot-copyright a {
  color: inherit;
  text-decoration: none;
  font-size: inherit;
}
footer .foot-copyright .support {
  margin-top: 0.52vw;
}
footer .checkCodeImg img{
  height: 100%;
}
footer .checkCodeImg{
  display: block;
  height: 1.56vw;
}
@media screen and (min-width: 1100px) {
  footer .mxw-box{
    max-width: 72.92vw;
  }
}

@media screen and (max-width: 1100px) {
  footer .foot-navbar {
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
  footer .foot-navbar .foot-item {
    width: 33.333%;
    font-size: 3.47vw;
  }
  footer .foot-content {
    display: block;
    padding-top: 0;
  }
  footer .foot-message {
    width: 100%;
    padding-left: 10.67vw;
  }
  footer .foot-message .icon {
    width: 8vw;
    left: -10.67vw;
    margin-right: 2.67vw;
  }
  footer .foot-message .icon img {
    width: 100%;
  }
  footer .foot-message input {
    height: 8vw;
    border-radius: 1.33vw;
    padding: 0 5.33vw;
    font-size: 3.3vw;
  }
  footer .foot-message .form-item {
    margin-bottom: 2.67vw;
  }
  footer .foot-message .form-item:after {
    width: 0.53vw;
    height: 3.73vw;
    left: 2.13vw;
  }
  footer .foot-message button {
    width: 100%;
    height: 8vw;
    font-size: 3.2vw;
  }
  footer .foot-contact {
    margin-top: 5.33vw;
    font-size: 3.2vw;
  }
  footer .foot-contact p {
    margin-bottom: 2.67vw;
  }
  footer .foot-contact p:last-child {
    margin-bottom: 0;
  }
  footer .qr {
    width: 26.67vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5.33vw;
  }
  footer .qr img {
    width: 100%;
  }
  footer .foot-copyright {
    padding-top: 5.33vw;
    padding-bottom: 5.33vw;
    font-size: 3.2vw;
    line-height: 1.8;
  }
  footer .foot-copyright .support {
    margin-top: 2.67vw;
  }
  footer .checkCodeImg{
    height: 8vw;
  }
}
/* ==================== 底部样式 End ==================== */
.index-banner {
  padding-top: 0!important;
  padding-bottom: 0!important;
  overflow: hidden;
}
.index-banner .swiper-slide img {
  width: 100%;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  background-color: #c94500;
  width: 2.08vw;
  height: 3.13vw;
  background-image: none;
}
.index-banner .swiper-button-prev:after,
.index-banner .swiper-button-next:after {
  color: #fff;
  font-size: 1.15vw;
}
.index-banner .swiper-button-prev {
  left: 5.21vw;
}
.index-banner .swiper-button-next {
  right: 5.21vw;
}
.index-banner .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 2.08vw;
  height: 0.42vw;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5.21vw;
  margin-left: 0.1vw;
  margin-right: 0.1vw;
  opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .index-banner {
    z-index: 99;
  }
  .index-banner .mxw-full-img img {
    height: auto;
  }
  .index-banner .swiper-button-prev,
  .index-banner .swiper-button-next {
    font-size: 6.93vw;
    width: 5.33vw;
    height: 8vw;
  }
.index-banner .swiper-button-prev:after,
.index-banner .swiper-button-next:after {
  color: #fff;
  font-size: 3.2vw;
}
  .index-banner .swiper-button-prev {
    left: 5.33vw;
  }
  .index-banner .swiper-button-next {
    right: 5.33vw;
  }
  .index-banner .swiper-pagination .swiper-pagination-bullet {
    width: 5.33vw;
    height: 1.07vw;
    margin: 0 1.33vw;
  }
}
/* ==================== 滤镜白色 Start ==================== */
.filter-white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/* ==================== 滤镜白色 End ==================== */
/* ==================== 在1920下图片保持最小1920p Start ==================== */
.mxw-full-img {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1903px) {
  .mxw-full-img img {
    width: 100%;
    min-width: 1920px;
  }
}
@media screen and (max-width: 1100px) {
  .mxw-full-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-full-img img {
    height: 300px;
    width: auto;
    max-width: inherit;
  }
}
/* ==================== 在1920下图片保持最小1920p End ==================== */
/* ==================== 通用加载等待动画 Start ==================== */
.common-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 55;
  width: 100%;
  height: 100%;
}
.common-loading .load-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.common-loading .loading {
  display: inline-block;
  position: relative;
}
.common-loading .loading::before {
  content: "Loading";
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  display: inline-block;
  animation: floating 1s ease-out infinite alternate;
}
.common-loading .poster {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.common-loading .progress {
  width: 150px;
}
.common-loading .progress-bar {
  background-color: #fff;
  border-radius: 4px;
  max-width: 100%;
  height: 3px;
  width: 0;
  margin-top: 5px;
  animation: loading-animation 1s ease-out infinite alternate;
}
.common-loading .progress-text {
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  margin-top: 5px;
  opacity: 0.8;
}
@keyframes floating {
  0% {
    opacity: 0.4;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(-25px);
  }
}
@keyframes loading-animation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* ==================== 通用加载等待动画 End ==================== */
/* ==================== 通用查看更多按钮 Start ==================== */
.mxw-jump-btn {
  border-radius: 5.21vw;
  margin-top: 3.39vw;
  width: 7.98vw;
  padding: 0.83vw 0.52vw;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.63vw;
  font-family: "Outfit-Light";
  border: 1px solid #444247;
  background-color: #1b1b1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s;
}
.mxw-jump-btn:hover {
  color: #fff;
  background-color: #c94500;
  border-color: #c94500;
}
@media screen and (max-width: 1100px) {
  .mxw-jump-btn {
    margin-top: 9.33vw;
    width: 35.73vw;
    padding: 2.67vw 2.67vw;
    font-size: 3.2vw;
  }
}
/* ==================== 通用查看更多按钮 End ==================== */
/* ==================== 通用内页banner Start ==================== */
.mxw-ny-banner {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.mxw-ny-banner .info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
}
.mxw-ny-banner .info .text1 {
  line-height: 1;
  font-family: "Outfit-Bold";
  font-size: 3.33vw;
}
.mxw-ny-banner .info .text2 {
  font-family: "Outfit-Regular";
  font-size: 1.67vw;
  line-height: 1.4;
  text-align: justify;
  margin-top: 2.08vw;
}
@media screen and (max-width: 1100px) {
  .mxw-ny-banner .bg-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-ny-banner .bg-image img {
    height: 53.33vw;
    width: auto;
    max-width: inherit;
  }
  .mxw-ny-banner .info .text1 {
    font-size: 5.87vw;
  }
  .mxw-ny-banner .info .text2 {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .mxw-ny-banner .info .text2 p {
    display: inline;
  }
}
/* ==================== 通用内页banner End ==================== */
/* ==================== 通用分页 Start ==================== */
.mxw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5.21vw;
}
.mxw-pagination > a {
  width: 2.08vw;
  height: 2.08vw;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.14);
  margin: 0.26vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.78vw;
  font-family: "Outfit-Light";
  transition: background-color 0.4s, color 0.4s;
  color: #fff;
}
.mxw-pagination > a:hover,
.mxw-pagination > a.active {
  background-color: #c94500;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .mxw-pagination {
    margin-top: 8vw;
  }
  .mxw-pagination > a {
    width: 8vw;
    height: 8vw;
    font-size: 3.2vw;
    margin: 0.53vw 0.53vw;
  }
}
/* ==================== 通用分页 End ==================== */
/* ==================== 通用图帧滚动等待加载动画 Start ==================== */
.mxw-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.mxw-loading .mxw-progress-bar {
  width: 0;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  color: #fff;
  font-size: 12px;
}
.mxw-loading .mxw-progress-bar span {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
/* ==================== 通用图帧滚动等待加载动画 End ==================== */
/* ==================== 首页 - 通用样式 Start ==================== */
@media screen and (max-width: 1100px) {
  .index-main section {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }
}
/* ==================== 首页 - 通用样式 End ==================== */
/* ==================== 首页 - 头部询盘 Start ==================== */
.head-welcome {
  background-color: #f5f5f5;
}
.head-welcome .mxw-box {
  max-width: 72.92vw;
  padding-top: 0.78vw;
  padding-bottom: 0.78vw;
  text-align: right;
  color: #9d9d9d;
}
.head-welcome .mxw-box a {
  color: inherit;
}
/* ==================== 首页 - 头部询盘 End ==================== */
/* ==================== 首页 - 通用标题 Start ==================== */
.index-title {
  font-size: 2.08vw;
  color: #333;
  line-height: 1;
  text-align: center;
  position: relative;
  display: block;
  margin-bottom: 2.08vw;
  font-weight: bold;
}
.index-title:after {
  content: "";
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-color: #c94500;
  margin-top: 1.04vw;
  height: 0.31vw;
  border-radius: 5.21vw;
  width: 3.39vw;
}
@media screen and (max-width: 1100px) {
  .index-title {
    font-size: 5.87vw;
    margin-bottom: 8vw;
  }
  .index-title:after {
    height: 1.07vw;
    width: 10vw;
    margin-top: 3.73vw;
  }
}
/* ==================== 首页 - 通用标题 End ==================== */
/* ==================== 首页 - 板块一 Start ==================== */
.index-section1 .body {
  padding-top: 4.17vw;
  padding-bottom: 4.17vw;
  background: url(../image/8a136243a75d9cd6c11923560ced5d6f044904d6.jpg) no-repeat center;
  background-size: cover;
}
.index-section1 .top-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section1 .top-body .video {
  position: relative;
  width: 42.71vw;
  height: 22.4vw;
  flex-shrink: 0;
  overflow: hidden;
}
.index-section1 .top-body .video .play-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-section1 .top-body .video .play-btn img {
  width: 3.65vw;
}
.index-section1 .top-body .video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-section1 .top-body .info {
  min-width: 0;
  flex-grow: 1;
  margin-left: 4.17vw;
}
.index-section1 .top-body .desc {
  font-size: 1.04vw;
  color: #333;
  line-height: 2.2em;
  text-align: justify;
}
.index-section1 .top-body .more-btn {
  margin-top: 2.08vw;
  display: block;
  width: 10.42vw;
  height: 2.08vw;
  line-height: 2.08vw;
  text-align: center;
  background-color: #4c1a00;
  font-size: 0.83vw;
  font-weight: bold;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  outline: none;
  border-radius: 5.21vw;
}
.index-section1 .itembox {
  margin-top: 3.65vw;
  border-top: 0.05vw solid #cecbc8;
  padding-top: 2.08vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.index-section1 .item {
  color: #4c1a00;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.index-section1 .item .icon {
  display: block;
  width: 3.13vw;
  flex-shrink: 0;
  margin-right: 1.04vw;
}
.index-section1 .item .top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.index-section1 .item .top span {
  display: block;
}
.index-section1 .item .top span:nth-child(1) {
  font-size: 3.33vw;
  line-height: 1;
  font-weight: bold;
}
.index-section1 .item .top span:nth-child(2) {
  font-size: 1.04vw;
  align-self: flex-start;
}
.index-section1 .item .top span:nth-child(3) {
  font-size: 1.04vw;
}
.index-section1 .item .bottom {
  margin-top: 1.04vw;
  font-size: 0.73vw;
  line-height: 1.2;
}
@media screen and (min-width: 1100px) {
  .index-section1 {
    padding-top: 7.81vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section1 {
    padding-bottom: 0 !important;
  }
  .index-section1 .body {
    padding-top: 10.67vw;
    padding-bottom: 10.67vw;
  }
  .index-section1 .top-body {
    display: block;
  }
  .index-section1 .top-body .video {
    display: block;
    width: 100%;
    height: auto;
  }
  .index-section1 .top-body .video .play-btn img {
    width: 8vw;
  }
  .index-section1 .top-body .info {
    margin-left: 0;
    margin-top: 5.33vw;
  }
  .index-section1 .top-body .desc {
    font-size: 3.47vw;
    line-height: 1.8;
    margin-left: 0;
  }
  .index-section1 .top-body .more-btn {
    width: 100%;
    height: auto;
    line-height: inherit;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
    margin-top: 5.33vw;
  }
  .index-section1 .itembox {
    margin-top: 5.33vw;
    padding-top: 5.33vw;
    flex-wrap: wrap;
  }
  .index-section1 .item {
    width: 50%;
    margin: 0;
  }
  .index-section1 .item:nth-child(2) ~ .item {
    margin-top: 5.33vw;
  }
  .index-section1 .item .icon {
    width: 10.67vw;
    margin-right: 5.33vw;
    flex-shrink: 0;
  }
  .index-section1 .item .top {
    font-size: 3.2vw;
  }
  .index-section1 .item .top span {
    font-size: 3.2vw;
  }
  .index-section1 .item .top span:nth-child(1) {
    font-size: 5.87vw;
    margin-right: 2.67vw;
  }
  .index-section1 .item .top span:nth-child(2) {
    font-size: inherit;
  }
  .index-section1 .item .top span:nth-child(3) {
    font-size: inherit;
  }
  .index-section1 .item .bottom {
    margin-top: 1.33vw;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 首页 - 板块二 Start ==================== */
.index-section2 {
  background-color: #fafafa;
}
.index-section2 .index-section2-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 2.08vw;
}
.index-section2 .index-section2-tabs .tab-item {
  margin: 0.52vw;
  display: block;
  height: 3.65vw;
  line-height: 3.65vw;
  text-align: center;
  width: 12.5vw;
  background-color: #f1f1f1;
  color: #828282;
  font-size: 1.04vw;
}
.index-section2 .index-section2-tabs .tab-item.active {
  background-color: #c94500;
  color: #fff;
}
.index-section2 .itembox {
  max-width: 75vw;
  margin-left: auto;
  margin-right: auto;
}
.index-section2 .item {
  display: block;
}
.index-section2 .item .image {
  display: block;
}
.index-section2 .item .name {
  display: block;
  color: #fff;
  height: 2.08vw;
  line-height: 2.08vw;
  text-align: center;
  font-weight: bold;
  font-size: 1.04vw;
  background-color: #c94500;
}
.index-section2 .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  margin-top: 1.56vw;
}
.index-section2 .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 1.04vw;
  height: 1.04vw;
  background-color: #d9d9d9;
  border-radius: 100%;
  margin-left: 2.6vw;
  margin-right: 2.6vw;
}
.index-section2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #c94500;
}
@media screen and (min-width: 1100px) {
  .index-section2 {
    padding-top: 5.73vw;
    padding-bottom: 5.73vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section2 .index-section2-tabs {
    flex-wrap: wrap;
  }
  .index-section2 .index-section2-tabs .tab-item {
    width: 32%;
    height: auto;
    line-height: inherit;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
    margin: 0;
  }
  .index-section2 .index-section2-tabs .tab-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .index-section2 .index-section2-tabs .tab-item:nth-child(3) ~ .tab-item {
    margin-top: 2%;
  }
  .index-section2 .item .name {
    line-height: inherit;
    height: auto;
    font-size: 3.2vw;
    padding: 2.13vw 2.67vw;
  }
  .index-section2 .itembox {
    max-width: 100%;
    margin-top: 5.33vw;
  }
  .index-section2 .swiper-pagination {
    margin-top: 5.33vw;
  }
  .index-section2 .swiper-pagination .swiper-pagination-bullet {
    width: 1.6vw;
    height: 1.6vw;
    margin: 0 1.33vw;
  }
}
/* ==================== 首页 - 板块二 End ==================== */
/* ==================== 首页 - 板块三 Start ==================== */
/* ==================== 首页 - 板块三 End ==================== */
/* ==================== 首页 - 板块四 Start ==================== */
.index-section4 {
  background-color: #fafafa;
}
.index-section4 .item {
  background-color: #fff;
  box-shadow: -0.21vw 0.26vw 0.52vw -0.26vw rgba(0, 0, 0, 0.2);
  padding: 0.52vw 1.04vw;
  padding-bottom: 1.56vw;
  transition: background-color 0.4s;
}
.index-section4 .item:hover {
  background-color: #983400;
}
.index-section4 .item:hover .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.index-section4 .item:hover .text {
  color: #fff;
}
.index-section4 .item .icon {
  width: 3.65vw;
  flex-shrink: 0;
  display: block;
  margin-bottom: 0.52vw;
  transition: all 0.4s;
}
.index-section4 .item .number {
  font-size: 1.88vw;
  color: #ddd2cc;
  line-height: 1;
  margin-bottom: 0.52vw;
  text-align: right;
  transition: all 0.4s;
}
.index-section4 .item .text {
  font-size: 1.25vw;
  color: #5c5c5c;
  line-height: 1.2;
  transition: all 0.4s;
}
.index-section4 .info {
  margin-top: 3.39vw;
  font-size: 1.04vw;
  color: #525252;
  line-height: 1.6;
}
.index-section4 .info p {
  margin-bottom: 0.78vw;
}
.index-section4 .info p:before {
  content: "";
  display: inline-block;
  width: 0.63vw;
  height: 0.1vw;
  background-color: #000;
  margin-right: 0.73vw;
  vertical-align: middle;
}
.index-section4 .info p:last-child {
  margin-bottom: 0;
}
.index-section4 .left-body {
  background: url(../image/e5cf94febfc59a652517c215943ca6de21e2d2dd.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (min-width: 1100px) {
  .index-section4 .body {
    display: flex;
    align-items: stretch;
  }
  .index-section4 .left-body,
  .index-section4 .right-body {
    width: 50%;
  }
  .index-section4 .left-body {
    padding-left: 9.38vw;
    padding-top: 5.73vw;
    padding-bottom: 5.73vw;
  }
  .index-section4 .right-body {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .index-section4 .right-body img {
    height: 100%;
    max-width: inherit;
  }
  .index-section4 .itembox {
    margin-right: -32%;
    position: relative;
    z-index: 2;
  }
  .index-section4 .info {
    padding-left: 0.78vw;
  }
  .index-section4 .item {
    margin: 0 !important;
    margin-right: 1% !important;
    width: 24.25% !important;
  }
  .index-section4 .item:last-child {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 1100px) {
  .index-section4 {
    padding-bottom: 0 !important;
  }
  .index-section4 .left-body {
    padding: 5.33vw;
  }
  .index-section4 .item {
    padding: 2.67vw;
  }
  .index-section4 .item .number {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
    font-weight: bold;
  }
  .index-section4 .item .icon {
    width: 8vw;
  }
  .index-section4 .item .text {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .index-section4 .info {
    font-size: 3.2vw;
    line-height: 1.8;
    margin-top: 5.33vw;
  }
  .index-section4 .info p {
    margin-bottom: 2.67vw;
  }
  .index-section4 .info p:last-child {
    margin-bottom: 0;
  }
  .index-section4 .info p:before {
    width: 2.13vw;
    margin-right: 2.67vw;
    height: 0.27vw;
  }
}
/* ==================== 首页 - 板块四 End ==================== */
/* ==================== 首页 - 板块五 Start ==================== */
.index-section5 .item .icon {
  text-align: center;
}
.index-section5 .item .icon img {
  width: 7.29vw;
}
.index-section5 .item .desc {
  font-size: 0.94vw;
  color: #555;
  line-height: 1.4;
  text-align: center;
  margin-top: 1.56vw;
}
@media screen and (min-width: 1100px) {
  .index-section5 {
    padding-top: 5.73vw;
    padding-bottom: 5.73vw;
  }
  .index-section5 .item {
    width: 16.666% !important;
    margin: 0 !important;
  }
  .index-section5 .item .icon {
    border-right: 0.1vw solid #ebebeb;
  }
  .index-section5 .item:last-child .icon {
    border-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .index-section5 .item {
    width: 32%;
    margin: 0 !important;
  }
  .index-section5 .item:nth-child(3n-1) {
    margin-left: 2% !important;
    margin-right: 2% !important;
  }
  .index-section5 .item:nth-child(3) ~ .item {
    margin-top: 8vw !important;
  }
  .index-section5 .item .icon {
    margin-bottom: 2.67vw;
  }
  .index-section5 .item .icon img {
    width: 18.67vw;
  }
  .index-section5 .item .desc {
    font-size: 3.73vw;
  }
}
/* ==================== 首页 - 板块五 End ==================== */
/* ==================== 首页 - 板块六 Start ==================== */
.index-section6 .body {
  background: url(../image/8a136243a75d9cd6c11923560ced5d6f044904d6.jpg) repeat center;
  background-size: cover;
  padding-top: 2.08vw;
  padding-bottom: 2.08vw;
  overflow: hidden;
}
.index-section6 .index-section6-swiper {
  position: relative;
  overflow: visible;
  width: 46.88vw;
}
.index-section6 .swiper-button-prev,
.index-section6 .swiper-button-next {
  width: 3.13vw;
  height: 3.13vw;
  background-color: #d5d5d5;
  transition: background-color 0.4s;
  margin: 0;
  top: 50%;
  bottom: auto;
}
.index-section6 .swiper-button-prev:hover,
.index-section6 .swiper-button-next:hover {
  background-color: #b23c00;
}
.index-section6 .swiper-button-prev:after,
.index-section6 .swiper-button-next:after {
  color: #fff;
  font-size: 1.25vw;
}
.index-section6 .swiper-button-prev {
  left: 0;
  transform: translateX(-50%) translateY(-50%);
}
.index-section6 .swiper-button-next {
  right: 0;
  transform: translateX(50%) translateY(-50%);
}

.index-section6 .item {
  position: relative;
  display: block;
}
.index-section6 .info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-section6 .info .text1 {
  display: block;
  width: 100%;
  height: auto;
  min-width: 0;
  flex-grow: 1;
 /* background-color: rgba(255, 255, 255, 0.7);*/
  color: #000;
  font-size: 2.08vw;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8.33vw;
}
.index-section6 .info .text2 {
  height: 4.69vw;
  line-height: 4.69vw;
  text-align: center;
  padding: 0 3.13vw;
  font-size: 1.04vw;
  color: #fff;
  width: 100%;
  background-color: rgba(50, 49, 49, 0.83);
}
@media screen and (max-width: 1100px) {
  .index-section6 {
    padding-bottom: 0!important;
  }
  .index-section6 .body {
    padding: 5.33vw;
  }
  .index-section6 .index-section6-swiper {
    width: 100%;
  }
  .index-section6 .swiper-button-prev,
  .index-section6 .swiper-button-next {
    width: 8vw;
    height: 8vw;
  }
  .index-section6 .info .text1 {
    padding-bottom: 13.33vw;
  }
  .index-section6 .info .text2 {
    padding: 2.13vw 2.67vw;
    height: auto;
    line-height: inherit;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块六 End ==================== */
/* ==================== 首页 - 板块七 Start ==================== */
.index-section7 {
  background-color: #fafafa;
}
.index-section7 .image {
  border: 1px solid #999;
  display: block;
}
.index-section7 .swiper-slide{width: 25%;}
@media screen and (min-width: 1100px) {
  .index-section7 {
    padding-top: 5.73vw;
  }
  .index-section7 .mxw-box {
    max-width: 82.81vw;
  }
}
/* ==================== 首页 - 板块七 End ==================== */
/* ==================== 首页 - 板块八 Start ==================== */
.index-section8 {
  background-color: #fafafa;
}
.index-section8 .category {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.56vw;
}
.index-section8 .category .cate-item {
  width: 15.63vw;
  height: 3.13vw;
  line-height: 3.13vw;
  text-align: center;
  margin: 0.52vw;
  background-color: #8d8d8d;
  display: block;
  color: #fff;
  font-size: 1.04vw;
  font-weight: bold;
  transition: background-color 0.4s;
}
.index-section8 .category .cate-item:hover,
.index-section8 .category .cate-item.active {
  background-color: #c94500;
}
.index-section8 .content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.index-section8 .index-section8-swiper {
  height: 17.71vw; width: 100%;
}
.index-section8 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.index-section8 .item:hover .title {
  color: #c94500;
}
.index-section8 .item:hover .desc {
  color: #333;
}
.index-section8 .item .date {
  text-align: center;
  width: 6.77vw;
  flex-shrink: 0;
  font-weight: bold;
}
.index-section8 .item .date .year {
  font-size: 1.25vw;
  color: #555;
  line-height: 1;
}
.index-section8 .item .date .day {
  margin-top: 1.04vw;
  font-size: 0.83vw;
  line-height: 1.1;
  text-align: center;
  color: #999;
  font-weight: bold;
}
.index-section8 .item .info {
  min-width: 0;
  flex-grow: 1;
  padding: 0.52vw 0.78vw;
  border-left: 0.05vw solid #c9c9c9;
}
.index-section8 .item .title {
  font-size: 1.04vw;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 0.78vw;
  color: #696969;
  transition: color 0.4s;
}
.index-section8 .item .desc {
  font-size: 12px;
  line-height: 1.6;
  color: #aeaeae;
  text-align: justify;
  transition: color 0.4s;
}
@media screen and (min-width: 1100px) {
  .index-section8 {
    padding-top: 5.73vw;
    padding-bottom: 5.73vw;
  }
  .index-section8 .mxw-box {
    max-width: 70.57vw;
  }
  .index-section8 .cover {
    display: block;
    flex-shrink: 0;
    height: 17.71vw;
    width: 36.46vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .index-section8 .item .desc {
    max-height: 3.2em;
  }
}
@media screen and (max-width: 1100px) {
  .index-section8 .index-section8-swiper {
    height: 69.33vw;
  }
  .index-section8 .category {
    flex-wrap: wrap;
    margin-bottom: 6.67vw;
  }
  .index-section8 .category .cate-item {
    width: 32%;
    height: auto;
    line-height: inherit;
    margin-top: 1.33vw;
    margin-bottom: 1.33vw;
    margin-right: 0;
    margin-left: 0;
    font-size: 3.73vw;
    padding: 2.13vw 2.67vw;
  }
  .index-section8 .category .cate-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .index-section8 .content {
    display: block;
  }
  .index-section8 .cover {
    margin-bottom: 5.33vw;
    background-image: none !important;
  }
  .index-section8 .item .info {
    padding: 2.13vw 2.67vw;
  }
  .index-section8 .item .date {
    width: 21.33vw;
  }
  .index-section8 .item .date .year {
    font-size: 4.8vw;
  }
  .index-section8 .item .date .day {
    font-size: 3.2vw;
    margin-top: 2.67vw;
  }
  .index-section8 .item .title {
    font-size: 4vw;
    margin-bottom: 2.67vw;
  }
  .index-section8 .item .desc {
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块八 End ==================== */

.swiper-button-prev,
.swiper-button-next{
  background-image: none;
}

.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{}
.product-detail-tab .product-detail-tabli li{font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
  body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
  .page-product-detail-effect .big-img{pointer-events:none;}
  .page-banner .nybt h3{font-size:20px;}
  .page-product-detail-effect .big-img a{height:auto;}
  .container2{padding-left:20px;padding-right:20px;}
  .page-product-detail-effect .big-img{height:auto;}
  .page-banner{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .page-banner>img{
    max-width: 240%;
    width:240%;
  }
  .xypg-product-list,
  .xypg-case-list{display:flex;flex-wrap:wrap;}
  .xypg-product-list li,
  .xypg-case-list li{width:48%;margin:0;}
  .xypg-product-list li:nth-child(2n),
  .xypg-case-list li:nth-child(2n){margin-left:4%;}
  .xypg-product-list li:nth-child(2)~li,
  .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
  .xypg-pagination>div{margin-bottom:10px;}
  .xypg-case-list li h3 a{padding-bottom:0;}
  .xypg-news-list li{padding:15px;margin-bottom:15px;}
  .xypg-news-list li .more{text-align:center;margin-top:0px;}
  .xypg-news-list li .more span{width:90px;margin:0 auto;}
  .product-detail-tabcon{font-size:16px;}
  .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
  .product-detail-tab .product-detail-tabli{height:auto;}
  /* 相册调整 */
  .xypg-album-list{justify-content:space-between;}
  .xypg-album-list:before,
  .xypg-album-list:after{display:none;}
  .xypg-album-list li{width:48%;margin:0;}
  .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}
.news-swiper{ overflow: hidden;}