@charset "utf-8";
/**
 * @Description: 网站主要样式
 * @Author: 
 * @Date: 2024-9-11 17:19:59
 * @LastEditors: 
 * @LastEditTime: 2024-9-11 17:19:59
 */
@font-face {
  font-family: "";
  src: url("");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PingFang";
  src: url("./font/PingFang\ Regular.ttf");
}
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PingFang", sans-serif;
  font-weight: 600;
}
a {
  text-decoration: none;
  outline: none;
}
html.no-scroll {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 4px;
  height: 2px;
  background: #ececec;
  border-radius: 100px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background: #333;
  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 {
  display: block;
  overflow: hidden;
}
.mxw-image img {
  transition: transform 0.4s;
  width: 100%;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
.mxw-image2 {
  display: block;
  overflow: hidden;
}
.mxw-image2 .img {
  transition: transform 0.4s;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.mxw-image2:hover .img {
  transform: scale(1.1);
}
main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}
main {
  position: relative;
  z-index: 10;
}
main.active {
  z-index: 22;
}
section {
  position: relative;
  z-index: 9;
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1480px) {
  .mxw-box {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 500px) {
  .mxw-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
  .ipad-hide {
    display: none !important;
  }
}
@media screen and (min-width: 0) and (max-width: 500px) {
  .mobile-hide {
    display: none !important;
  }
}
/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1600px) {
  .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: 49%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 2%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 2%;
  }
  .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.4%;
    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.5%;
    margin-right: 1.4%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 1.4%;
  }
}
@media screen and (max-width: 500px) {
  .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: 4%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 100%;
  }
  .u-row-3 > .u-col:nth-child(1) ~ .u-col,
  .u-row-4 > .u-col:nth-child(1) ~ .u-col,
  .u-row-5 > .u-col:nth-child(1) ~ .u-col,
  .u-row-6 > .u-col:nth-child(1) ~ .u-col {
    margin-top: 30px;
  }
}
/* ==================== 通用布局 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 ==================== */
/* ==================== ElementUI Start ==================== */
.el-table-filter__bottom {
  font-size: 12px;
}
/* ==================== ElementUI End ==================== */
/* ==================== 头部导航样式 Start ==================== */
@media screen and (min-width: 769px) {
  header {
    position: relative;
    z-index: 21;
  }
  header.fixed {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: -6.25vw;
  }
  header.fixed .header {
    background-color: transparent;
  }
  header.fixed .header .logo img:first-child {
    display: none;
  }
  header.fixed .header .logo img:first-child ~ img {
    display: block;
  }
  header.fixed .header .navbar > ul > li > a {
    color: #fff;
  }
  header.fixed .header .tools .tool-btn.iconfont {
    color: #fff;
  }
  header.fixed .header .tools .tool-btn .iconfont {
    color: #fff;
  }
  header.fixed .header .tools .tool-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }
  header.fixed .header .tools .language {
    color: #fff;
  }
  header.white .header-top {
    background-color: #f8f9fc;
  }
  header.white .header {
    background-color: #fff;
  }
  header.white .header .logo img:first-child {
    display: block;
  }
  header.white .header .logo img:first-child ~ img {
    display: none;
  }
  header.white .header .navbar > ul > li a {
    color: #000;
    font-weight: bold;
  }
  header.white .header .tools .tool-btn.iconfont {
    color: #000;
  }
  header.white .header .tools .tool-btn.iconfont .iconfont {
    color: #000;
  }
  header.white .header .tools .tool-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header.white .header .tools .language {
    color: #000;
  }
  .header-top {
    text-align: center;
    color: #46b035;
    padding-top: 0.75vw;
    padding-bottom: 0.75vw;
    background-color: #101010;
    line-height: 1.1;
    font-size: 0.875vw;
    transition: background-color 0.3s;
  }
  .header-top.white {
    background-color: #f8f9fc;
  }
  .header {
    background-color: #fff;
    transition: background-color 0.3s;
  }
  .header > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .header .logo {
    display: block;
    width: 4.625vw;
    flex-shrink: 0;
  }
  .header .logo img:first-child ~ img {
    display: none;
  }
  .header .logo img {
    width: 100%;
  }
  .header .navbar {
    margin-left: 2.5vw;
  }
  .header .navbar > ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .navbar > ul > li {
    margin-left: 2.188vw;
    margin-right: 2.188vw;
  }
  .header .navbar > ul > li:hover .sub-nav {
    opacity: 1;
    visibility: visible;
  }
  .header .navbar > ul > li:hover > a {
    color: #193190 !important;
  }
  .header .navbar > ul > li:hover > a:after {
    width: 100%;
  }
  .header .navbar > ul > li.active > a:after {
    width: 100%;
  }
  .header .navbar > ul > li > a {
    display: block;
    font-size: 1vw;
    line-height: 1.2;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
    color: #000;
    position: relative;
    transition: color 0.4s;
  }
  .header .navbar > ul > li > a:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #193190;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: background-color 0.4s, width 0.4s;
  }
  .header .tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 0;
    margin-left: auto;
  }
  .header .tools .tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875vw;
    cursor: pointer;
  }
  .header .tools .search {
    margin-right: 1.875vw;
  }
  .header .tools .shop {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    width: auto;
    border-radius: 100px;
    color: #fff;
    background-color: #193190;
    margin-left: 20px;
  }
  .header .tools .shop .icon {
    font-size: 12px;
    color: inherit;
  }
  .header .tools .shop .text {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
  }
  .header .tools .language {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    cursor: pointer;
  }
  .header .tools .language:after {
    content: "";
    display: block;
    width: 0.375vw;
    height: 0.375vw;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    margin-top: -0.375vw;
    margin-left: 0.625vw;
  }
  .header .tools .language .icon {
    font-size: 1vw;
    margin-right: 0.313vw;
  }
  .header .tools .language .text {
    font-size: 0.875vw;
    line-height: 1.1;
  }
  .header .tools .login {
    position: relative;
    color: #000000;
    margin-right: 1.5vw;
    font-size: 1.5vw;
  }
  .header .tools .login:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .header .tools .login .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .tools .login ul {
    position: absolute;
    top: calc(100% + 0.813vw);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.5vw;
    padding-bottom: 0.5vw;
    border-radius: 0.5vw;
    background: #f6f6f6;
    min-width: 6vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: none;
  }
  .header .tools .login ul li a {
    display: block;
    padding: 0.438vw 0.75vw;
    color: #999;
    font-family: "PingFang", sans-serif;
    font-size: 0.75vw;
    line-height: 1.125vw;
    transition: color 0.3s;
  }
  .header .tools .login ul li a:hover {
    color: #193190;
  }
  .header .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #f8f8f8;
    text-align: center;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0.625vw 0.625vw -0.813vw rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  .header .search-form .form-body {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
    border: 1px solid #eee;
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    border-radius: 6.25vw;
  }
  .header .search-form input {
    width: 37.5vw;
    height: 1.875vw;
    font-size: 0.875vw;
    color: #000;
    text-align: left;
  }
  .header .search-form .icon {
    line-height: 1;
    font-size: 1.25vw;
    margin-right: 0.938vw;
    flex-shrink: 0;
    width: 1.25vw;
  }
  .header .search-form .close {
    width: 1vw;
    font-size: 1.25vw;
    cursor: pointer;
    margin-left: 0.938vw;
    flex-shrink: 0;
    margin-right: 0;
  }
  .header .sub-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f8f9fc;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .header .sub-nav.active {
    visibility: visible;
    opacity: 1;
  }
  .header .sub-nav .sub-box {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
  }
  .header .sub-nav1 {
    display: none;
    padding-top: 2.5vw;
    padding-bottom: 2.5vw;
    height: calc(100vh - 5.813vw);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .header .sub-nav1::-webkit-scrollbar {
    width: 0.25vw;
    height: 0.125vw;
    background: #ececec;
    border-radius: 6.25vw;
  }
  .header .sub-nav1::-webkit-scrollbar-thumb {
    border-radius: 6.25vw;
    background: #333;
    cursor: pointer;
  }
  .header .sub-nav1 > .sub-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .header .sub-nav1 .left {
    flex-shrink: 0;
    width: 18.75vw;
    background-color: #fff;
    border-radius: 0.625vw;
    padding: 1.875vw;
  }
  .header .sub-nav1 .left .more-btn {
    display: block;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1vw;
    padding-bottom: 0.875vw;
    margin-top: 2.5vw;
    color: #000000;
    transition: color 0.4s;
  }
  .header .sub-nav1 .left .more-btn:hover {
    color: #193190;
  }
  .header .sub-nav1 .left .list-item.active > a .icon {
    background-image: url(../images/header/img016@100x100.png);
  }
  .header .sub-nav1 .left .list-item.active > .list {
    display: block;
  }
  .header .sub-nav1 .left .list-item > a {
    padding-top: 1.25vw;
    padding-bottom: 1.25vw;
    display: block;
    position: relative;
    padding-right: 0.938vw;
    font-size: 1vw;
    color: #000000;
    font-weight: bold;
  }
  .header .sub-nav1 .left .list-item > a .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: 0;
    background: url(../images/header/img015@100x100.png) no-repeat center;
    width: 1vw;
    height: 1vw;
    background-size: 100%;
  }
  .header .sub-nav1 .left .list1 > .list-item > a {
    border-bottom: 1px solid #f0f0f0;
  }
  .header .sub-nav1 .left .list2 {
    display: none;
    padding-left: 0.625vw;
    padding-right: 0.625vw;
  }
  .header .sub-nav1 .left .list2 > .list-item.active > a {
    color: #193190;
  }
  .header .sub-nav1 .left .list2 > .list-item > a {
    border-bottom: 1px solid #f0f0f0;
  }
  .header .sub-nav1 .left .list2 > .list-item > a .icon {
    width: 0.75vw;
    height: 0.75vw;
    right: -0.313vw;
  }
  .header .sub-nav1 .left .list3 {
    display: none;
    padding-top: 0.625vw;
    padding-bottom: 0.625vw;
  }
  .header .sub-nav1 .left .list3 > .list-item.active > a {
    background-color: #193190;
    color: #fff;
  }
  .header .sub-nav1 .left .list3 > .list-item > a {
    font-size: 0.875vw;
    line-height: 1.1;
    padding: 0.875vw 2.875vw;
    font-weight: 600;
    color: #666666;
    border-radius: 6.25vw;
  }
  .header .sub-nav1 .right {
    min-width: 0;
    flex-grow: 1;
    margin-left: 1.625vw;
  }
  .header .sub-nav1 .right-item {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    display: none;
  }
  .header .sub-nav1 .right-item.active {
    display: flex;
  }
  .header .sub-nav1 .right-item .item {
    width: 23.5%;
    margin-right: 2%;
    background-color: #fff;
    border-radius: 0.625vw;
    overflow: hidden;
  }
  .header .sub-nav1 .right-item .item:nth-child(4n) {
    margin-right: 0;
  }
  .header .sub-nav1 .right-item .item:nth-child(4) ~ .item {
    margin-top: 2%;
  }
  .header .sub-nav1 .right-item .item:hover .info .text1 {
    color: #193190;
  }
  .header .sub-nav1 .right-item .info {
    text-align: center;
    padding: 1.875vw;
    padding-top: 0;
  }
  .header .sub-nav1 .right-item .info .text1 {
    font-size: 1vw;
    line-height: 1.1;
    margin-bottom: 1.063vw;
    transition: color 0.4s;
  }
  .header .sub-nav1 .right-item .info .price {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .sub-nav1 .right-item .info .last-price {
    font-size: 0.875vw;
    color: #000000;
    line-height: 1.1;
    margin-right: 1.25vw;
  }
  .header .sub-nav1 .right-item .info .first-price {
    color: #aaaaaa;
    font-size: 0.875vw;
    line-height: 1.1;
    text-decoration: line-through;
  }
  .header .sub-nav1 .right-item .tip {
    text-align: center;
    font-size: 1vw;
    color: #000;
    width: 100%;
  }
  .header .sub-nav2 {
    padding-top: 3.5vw;
    padding-bottom: 3.5vw;
  }
  .header .sub-nav2 > .sub-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .header .sub-nav2 .nav-item {
    text-align: center;
    margin-left: 4.688vw;
    margin-right: 4.688vw;
  }
  .header .sub-nav2 .nav-item:hover .text {
    color: #193190;
  }
  .header .sub-nav2 .nav-item .icon {
    width: 4.375vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .header .sub-nav2 .nav-item .text {
    margin-top: 1.563vw;
    color: #666666;
    line-height: 1.1;
    font-size: 1vw;
    transition: color 0.4s;
  }
}
@media screen and (min-width: 1600px) {
  header.fixed {
    margin-bottom: -100px;
  }
  .header-top {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
  .header .logo {
    width: 74px;
  }
  .header .navbar {
    margin-left: 40px;
  }
  .header .navbar > ul > li {
    margin-left: 35px;
    margin-right: 35px;
  }
  .header .navbar > ul > li > a {
    font-size: 18px;
    font-weight: bold;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .header .tools .tool-btn {
    font-size: 14px;
  }
  .header .tools .search {
    margin-right: 30px;
  }
  .header .tools .language:after {
    width: 6px;
    height: 6px;
    margin-top: -6px;
    margin-left: 10px;
  }
  .header .tools .language .icon {
    font-size: 16px;
    margin-right: 5px;
  }
  .header .tools .language .text {
    font-size: 14px;
  }
  .header .tools .login {
    margin-right: 24px;
    font-size: 24px;
  }
  .header .tools .login ul {
    top: calc(100% + 13px);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    min-width: 96px;
  }
  .header .tools .login ul li a {
    padding: 7px 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .header .search-form {
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  }
  .header .search-form .form-body {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 100px;
  }
  .header .search-form input {
    width: 600px;
    height: 30px;
    font-size: 14px;
  }
  .header .search-form .icon {
    font-size: 20px;
    margin-right: 15px;
    width: 20px;
  }
  .header .search-form .close {
    width: 16px;
    font-size: 20px;
    margin-left: 15px;
  }
  .header .sub-nav .sub-box {
    max-width: 1600px;
  }
  .header .sub-nav1 {
    padding-top: 40px;
    padding-bottom: 40px;
    height: calc(100vh - 93px);
  }
  .header .sub-nav1::-webkit-scrollbar {
    width: 4px;
    height: 2px;
    border-radius: 100px;
  }
  .header .sub-nav1::-webkit-scrollbar-thumb {
    border-radius: 100px;
  }
  .header .sub-nav1 .left {
    width: 300px;
    border-radius: 10px;
    padding: 30px;
  }
  .header .sub-nav1 .left .more-btn {
    font-size: 16px;
    padding-bottom: 14px;
    margin-top: 40px;
  }
  .header .sub-nav1 .left .list-item > a {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
    font-size: 16px;
  }
  .header .sub-nav1 .left .list-item > a .icon {
    width: 16px;
    height: 16px;
  }
  .header .sub-nav1 .left .list2 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header .sub-nav1 .left .list2 > .list-item > a .icon {
    width: 12px;
    height: 12px;
    right: -5px;
  }
  .header .sub-nav1 .left .list3 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header .sub-nav1 .left .list3 > .list-item > a {
    font-size: 14px;
    padding: 14px 46px;
    border-radius: 100px;
  }
  .header .sub-nav1 .right {
    margin-left: 26px;
  }
  .header .sub-nav1 .right-item .item {
    border-radius: 10px;
  }
  .header .sub-nav1 .right-item .info {
    padding: 30px;
  }
  .header .sub-nav1 .right-item .info .text1 {
    font-size: 16px;
    margin-bottom: 17px;
  }
  .header .sub-nav1 .right-item .info .last-price {
    font-size: 14px;
    margin-right: 20px;
  }
  .header .sub-nav1 .right-item .info .first-price {
    font-size: 14px;
  }
  .header .sub-nav1 .right-item .tip {
    font-size: 16px;
  }
  .header .sub-nav2 {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .header .sub-nav2 .nav-item {
    margin-left: 75px;
    margin-right: 75px;
  }
  .header .sub-nav2 .nav-item .icon {
    width: 70px;
  }
  .header .sub-nav2 .nav-item .text {
    margin-top: 25px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header-top {
    text-align: center;
    color: #46b035;
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #101010;
    line-height: 1.1;
    font-size: 14px;
    min-height: 40px;
    transition: background-color 0.3s;
  }
  header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 21;
  }
  header .header {
    width: 100%;
    background-color: #fff;
  }
  header .header > .mxw-box {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header .menu {
    font-size: 20px;
    flex-shrink: 0;
  }
  header .header .logo {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
  }
  header .header .logo img:first-child {
    display: block !important;
  }
  header .header .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 3;
    background-color: #fff;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  header .header .navbar.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  header .header .navbar > ul {
    width: 100%;
    height: calc(100% - 60px - 60px);
    position: relative;
  }
  header .header .navbar > ul > li {
    width: 120px;
  }
  header .header .navbar > ul > li.active > a {
    color: #193190;
  }
  header .header .navbar > ul > li.active > a:after {
    display: block;
  }
  header .header .navbar > ul > li.active .sub-nav {
    display: block !important;
  }
  header .header .navbar > ul > li > a {
    font-size: 14px;
    padding: 20px 20px;
    display: block;
    position: relative;
  }
  header .header .navbar > ul > li > a:hover {
    color: #193190;
  }
  header .header .navbar > ul > li > a:after {
    content: "";
    display: block;
    width: 3px;
    height: 24%;
    border-radius: 100px;
    overflow: hidden;
    background-color: #193190;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 8%;
    display: none;
  }
  header .header .navbar .mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
  }
  header .header .navbar .mobile-head .close {
    font-size: 22px;
  }
  header .header .navbar .mobile-head .logo2 {
    width: 100px;
  }
  header .header .navbar .mobile-head .logo2 img {
    width: 100%;
  }
  header .header .navbar .mobile-head .shop2 {
    font-size: 14px;
    font-weight: bold;
    border-radius: 100px;
    background-color: #193190;
    color: #fff;
    padding: 6px 10px;
    text-align: center;
  }
  header .header .navbar .more-btn {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
    display: block;
    width: 100%;
    color: #000;
    color: #193190;
  }
  header .header .navbar .more-btn:hover {
    color: #193190;
  }
  header .header .navbar .sub-nav {
    display: none !important;
    position: absolute;
    left: 120px;
    top: 0;
    border-left: 1px solid #eee;
    height: 100%;
    width: calc(100% - 120px);
    overflow: auto;
  }
  header .header .navbar .sub-nav1 .list .list-item > a {
    font-size: 15px;
    color: #000;
    display: block;
    padding: 10px 20px;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item.active > a .icon {
    background-image: url(../images/header/img016@100x100.png);
  }
  header .header .navbar .sub-nav1 .list1 > .list-item.active .list2 {
    display: block;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item > a {
    position: relative;
    background-color: #f8f8f8;
  }
  header .header .navbar .sub-nav1 .list1 > .list-item > a .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    right: 10px;
    background: url(../images/header/img015@100x100.png) no-repeat center;
    width: 14px;
    height: 14px;
    background-size: 100%;
  }
  header .header .navbar .sub-nav1 .list2 {
    padding-left: 30px;
    padding-bottom: 20px;
    display: none;
  }
  header .header .navbar .sub-nav1 .list2 > .list-item > a {
    font-size: 14px;
    color: #999;
    padding: 8px 8px;
    padding-left: 0;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item {
    display: inline-block;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item > a {
    padding: 4px 8px;
    font-size: 12px;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 2px;
  }
  header .header .navbar .sub-nav1 .list3 > .list-item > a:hover {
    color: #193190;
    border-color: #193190;
  }
  header .header .navbar .sub-nav2 > .sub-box {
    display: flex;
    flex-wrap: wrap;
  }
  header .header .navbar .sub-nav2 .nav-item {
    width: 48%;
    text-align: center;
    margin-top: 6%;
  }
  header .header .navbar .sub-nav2 .nav-item .icon {
    display: block;
    width: 50px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  header .header .navbar .sub-nav2 .nav-item .text {
    font-size: 14px;
    color: #000;
  }
  header .header .search {
    font-size: 20px;
    margin-left: 10px;
  }
  header .header .search img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
  }
  header .header .tools {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  header .header .tools .tool-btn {
    font-size: 20px;
    flex-shrink: 0;
  }
  header .header .tools .tool-btn img {
    -webkit-filter: brightness(1) invert(1);
    filter: brightness(1) invert(1);
    width: 100%;
  }
  header .header .tools .login {
    color: #000000;
    font-size: 20px;
    position: relative;
  }
  header .header .tools .login:hover ul {
    opacity: 1;
    visibility: visible;
  }
  header .header .tools .login ul {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    transform: translateX(-50%);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 8px;
    background: #f6f6f6;
    min-width: 96px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: none;
  }
  header .header .tools .login ul li a {
    display: block;
    padding: 7px 12px;
    color: #999;
    font-family: "PingFang", sans-serif;
    font-size: 12px;
    line-height: 18px;
    transition: color 0.3s;
  }
  header .header .tools .login ul li a:hover {
    color: #193190;
  }
  header .header .tools .login {
    display: none;
  }
  header .header .tools .search {
    display: none;
  }
  header .header .tools .shop {
    margin-left: 15px;
  }
  header .header .search-form {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
  }
  header .header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header .header .search-form .form-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 100px;
  }
  header .header .search-form .icon {
    width: 20px;
  }
  header .header .search-form .icon.search-icon {
    display: none;
  }
  header .header .search-form input {
    min-width: 0;
    flex-grow: 1;
    margin-right: 20px;
    font-size: 15px;
  }
  header .header .search-form .close {
    font-size: 20px;
    line-height: 1;
    display: block;
  }
  header .header .login-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    height: 60px;
  }
  header .header .login-btn-group .btn {
    width: 49%;
    padding: 8px 10px;
    text-align: center;
    color: #000;
    border-radius: 100px;
    border: 1px solid #eee;
    font-size: 14px;
  }
  header .header .login-btn-group .btn:first-child {
    margin-right: 2%;
  }
  header .header .login-btn-group .btn.login-btn {
    border-color: #193190;
    background-color: #193190;
    color: #fff;
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
.footer {
  background-color: #242933;
}
.footer .foot-top {
  padding-top: 7.5vw;
  padding-bottom: 3.75vw;
  /* display: flex;
  align-items: flex-start;
  justify-content: space-between; */
}
.footer .foot-navbar {
  min-width: 0;
  flex-grow: 1;
}
.footer .foot-navbar > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer .foot-navbar > ul > li {
  margin-right: 6.25vw;
}
.footer .foot-navbar > ul > li:last-child {
  margin-right: 0;
}
.footer .foot-navbar > ul > li > a {
  display: block;
  font-weight: bold;
  font-size: 1.125vw;
  margin-bottom: 1.875vw;
  line-height: 1.1;
  color: #fff;
}
.footer .foot-navbar > ul > li > ul > li {
  margin-bottom: 0.938vw;
}
.footer .foot-navbar > ul > li > ul > li > a {
  font-size: 0.875vw;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  transition: all 0.4s;
}
.footer .foot-navbar > ul > li > ul > li > a:hover {
  color: #fff;
  opacity: 1;
}
.footer .foot-contact {
  flex-shrink: 0;
  width: 22.5vw;
}
.footer .foot-contact .contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.563vw;
}
.footer .foot-contact .contact-item:last-child {
  margin-bottom: 0;
}
.footer .foot-contact .contact-item .icon {
  font-size: 1vw;
  color: #fff;
  display: block;
  line-height: 1.1;
  margin-right: 0.313vw;
}
.footer .foot-contact .contact-item .info {
  min-width: 0;
  flex-grow: 1;
}
.footer .foot-contact .contact-item .info .text1 {
  font-size: 0.875vw;
  color: #96999d;
  line-height: 1.1;
}
.footer .foot-contact .contact-item .info .text2 {
  margin-top: 0.313vw;
  font-size: 1vw;
  color: #fff;
  line-height: 1.4;
}
.footer .foot-contact .contact-item .share-itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.625vw;
}
.footer .foot-contact .contact-item .share-item {
  position: relative;
  width: 2vw;
  height: 2vw;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625vw;
  cursor: pointer;
}
.footer .foot-contact .contact-item .share-item:hover .qr {
  opacity: 1;
  visibility: visible;
}
.footer .foot-contact .contact-item .share-item:last-child {
  margin-right: 0;
}
.footer .foot-contact .contact-item .share-item .icon2 {
  color: #fff;
}
.footer .foot-contact .contact-item .share-item .icon2:before {
  font-size: 90%;
}
.footer .foot-contact .contact-item .share-item .qr {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s;
  width: 8.125vw;
}
.footer .foot-contact .contact-item .share-item .qr:hover {
  opacity: 1;
  visibility: visible;
}
/* 2025-2-13 修改 */
.footer .foot-bottom {
  border-top: 1px solid #3a3f48;
  padding-top: 2.25vw;
  padding-bottom: 7.5vw;
  justify-content: space-between;
  /* display: flex; */
  /* align-items: center; */
}

/* 2025-2-13修改 */
.footer .foot-bottom .foot-info-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .foot-bottom .foot-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer .foot-bottom .copyright {
  font-size: 0.875vw;
  color: #666666;
}
.footer .foot-bottom .support {
  font-size: 0.875vw;
  color: #666666;
  margin-left: 2.5vw;
}
.footer .foot-bottom .support a {
  color: inherit;
}
.footer .foot-bottom .support a:hover {
  color: #fff;
}
.footer .foot-bottom .foot-right {
  font-size: 0.875vw;
  color: #666666;
}
.footer .foot-bottom .foot-right:hover {
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .footer .foot-top {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .footer .foot-navbar > ul > li {
    margin-right: 100px;
  }
  .footer .foot-navbar > ul > li > a {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .footer .foot-navbar > ul > li > ul > li {
    margin-bottom: 15px;
  }
  .footer .foot-navbar > ul > li > ul > li > a {
    font-size: 14px;
  }
  .footer .foot-contact {
    width: 360px;
  }
  .footer .foot-contact .contact-item {
    margin-bottom: 25px;
  }
  .footer .foot-contact .contact-item .icon {
    font-size: 16px;
    margin-right: 5px;
  }
  .footer .foot-contact .contact-item .info .text1 {
    font-size: 14px;
  }
  .footer .foot-contact .contact-item .info .text2 {
    margin-top: 5px;
    font-size: 16px;
  }
  .footer .foot-contact .contact-item .share-itembox {
    margin-top: 10px;
  }
  .footer .foot-contact .contact-item .share-item {
    width: 32px;
    height: 32px;
    margin-right: 10px;
  }
  .footer .foot-contact .contact-item .share-item .qr {
    width: 130px;
  }
  .footer .foot-bottom {
    padding-top: 36px;
    padding-bottom: 120px;
  }
  .footer .foot-bottom .copyright {
    font-size: 14px;
  }
  .footer .foot-bottom .support {
    font-size: 14px;
    margin-left: 40px;
  }
  .footer .foot-bottom .foot-right {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer .foot-top {
    display: block;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer .foot-navbar {
    display: block;
  }
  .footer .foot-navbar > ul {
    display: block;
  }
  .footer .foot-navbar > ul > li {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .footer .foot-navbar > ul > li > a {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  .footer .foot-navbar > ul > li > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer .foot-navbar > ul > li > ul > li {
    margin-bottom: 15px;
    width: 48%;
  }
  .footer .foot-navbar > ul > li > ul > li > a {
    font-size: 14px;
  }
  .footer .foot-contact {
    width: 100%;
  }
  .footer .foot-contact .contact-item {
    margin-bottom: 30px;
  }
  .footer .foot-contact .contact-item .icon {
    font-size: 20px;
    margin-right: 10px;
  }
  .footer .foot-contact .contact-item .info {
    margin-top: 4px;
  }
  .footer .foot-contact .contact-item .info .text1 {
    font-size: 14px;
  }
  .footer .foot-contact .contact-item .info .text2 {
    margin-top: 5px;
    font-size: 14px;
  }
  .footer .foot-contact .contact-item .share-itembox {
    margin-top: 10px;
  }
  .footer .foot-contact .contact-item .share-item {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .footer .foot-contact .contact-item .share-item .qr {
    width: 100px;
  }
  .footer .foot-bottom {
    padding-top: 20px;
    padding-bottom: 30px;
    display: block;
    text-align: center;
  }
  /* 2025-2-13 修改 */
  .footer .foot-bottom .foot-info-line {
    display: block;
  }
  .footer .foot-bottom .foot-left {
    display: block;
  }
  .footer .foot-bottom .copyright {
    line-height: 1.8;
    font-size: 14px;
  }
  .footer .foot-bottom .support {
    line-height: 1.8;
    font-size: 14px;
    margin-left: 20px;
  }
  .footer .foot-bottom .foot-right {
    font-size: 14px;
  }
}
/* ==================== 底部样式 End ==================== */
/* ==================== 选择语言弹窗 Start ==================== */
.language-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  max-width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  padding-bottom: 5.208vw;
  padding-left: 7.031vw;
  padding-right: 7.031vw;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
  display: none;
  z-index: 99;
}
.language-dialog.active {
  opacity: 1;
  visibility: visible;
}
.language-dialog.active .language-dialog-box {
  transform: translateY(0);
}
.language-dialog .language-dialog-box {
  width: 42vw;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 0.104vw;
  transform: translateY(100%);
  transition: transform 0.5s;
  margin-top: 5.208vw;
  padding: 4.167vw 2vw;
}
.language-dialog .close {
  width: 1.875vw;
  height: 1.875vw;
  position: absolute;
  right: 1.042vw;
  top: 1.042vw;
  cursor: pointer;
  z-index: 99;
  transform: rotate(45deg);
  transition: transform 0.4s;
}
.language-dialog .close:hover {
  transform: rotate(135deg);
}
.language-dialog .close:before,
.language-dialog .close:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000;
}
.language-dialog .close:before {
  width: 80%;
  height: 2px;
  left: 10%;
  top: calc(50% - 1px);
}
.language-dialog .close:after {
  width: 2px;
  height: 80%;
  left: calc(50% - 1px);
  top: 10%;
}
.language-dialog .head {
  padding-bottom: 1.563vw;
  border-bottom: 0.052vw solid #eee;
  text-align: center;
}
.language-dialog .head .title {
  color: #000;
  text-transform: capitalize;
  font-size: 2.083vw;
  font-weight: 600;
}
.language-dialog .head .desc {
  font-size: 0.833vw;
  margin-top: 0.781vw;
  color: #707473;
  font-weight: 600;
}
.language-dialog .item .title {
  margin: 2.083vw 0 0.781vw 0;
  color: #000;
  font-size: 1.042vw;
  font-weight: lighter;
}
.language-dialog .item ul {
  display: flex;
  flex-wrap: wrap;
  padding: 1vw;
  background-color: #f7f8f9;
}
.language-dialog .item ul li {
  width: 49%;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 0.521vw 0.781vw;
  line-height: 1.25vw;
  text-transform: capitalize;
  font-size: 0.729vw;
  border-radius: 0.156vw;
  cursor: pointer;
  white-space: nowrap;
  outline: 0 !important;
  color: #000;
  transition: all 0.4s;
}
.language-dialog .item ul li:hover {
  background-color: #e8e9e9;
  color: #193190;
}
.language-dialog .item ul li:nth-child(2n) {
  margin-left: 2%;
}
.language-dialog .item ul li:nth-child(2) ~ li {
  margin-top: 2%;
}
.language-dialog .item ul li > a {
  display: block;
  width: 100%;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.language-dialog .item ul li > a span:nth-child(2n) {
  color: #707473;
  font-weight: lighter;
}
@media screen and (max-width: 500px) {
  .language-dialog {
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .language-dialog .language-dialog-box {
    width: 100%;
    border-radius: 2px;
    margin-top: 100px;
    padding: 40px 20px;
  }
  .language-dialog .close {
    width: 18px;
    height: 18px;
    right: 10px;
    top: 10px;
  }
  .language-dialog .head {
    padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }
  .language-dialog .head .title {
    font-size: 20px;
  }
  .language-dialog .head .desc {
    margin-top: 10px;
    font-size: 14px;
  }
  .language-dialog .item .title {
    margin: 20px 0 8px 0;
    font-size: 20px;
  }
  .language-dialog .item ul {
    padding: 10px;
  }
  .language-dialog .item ul li {
    padding: 10px 15px;
    line-height: 12px;
    font-size: 12px;
    border-radius: 3px;
    width: 100%;
    margin: 0 !important;
  }
  .language-dialog .item ul li:nth-child(1) ~ li {
    margin-top: 2% !important;
  }
}
/* ==================== 选择语言弹窗 End ==================== */
/* ==================== 通用按钮 Start ==================== */
.index-btn {
  padding: 0.5vw 0.938vw;
  border: 1px solid;
  border-radius: 6.25vw;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  font-size: 0.875vw;
  color: #fff;
  position: relative;
  transition: background-color 0.4s, color 0.4s;
}
.index-btn:after {
  content: "";
  display: block;
  width: 0.375vw;
  height: 0.375vw;
  color: inherit;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  margin-top: -0.125vw;
  margin-left: 0.25vw;
}
.index-btn:hover,
.index-btn.active {
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 1600px) {
  .index-btn {
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 14px;
  }
  .index-btn:after {
    width: 6px;
    height: 6px;
    margin-top: -2px;
    margin-left: 4px;
  }
}
@media screen and (max-width: 768px) {
  .index-btn {
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 12px;
  }
  .index-btn:after {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: 4px;
  }
}
/* ==================== 通用按钮 End ==================== */
/* ==================== 通用面包屑 Start ==================== */
.breadcrumb {
  font-size: 1vw;
  color: #fff;
  line-height: 1;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
}
.breadcrumb a {
  color: inherit;
}
.breadcrumb a:last-child:after {
  display: none;
}
.breadcrumb a:after {
  content: "\e60c";
  font-family: "iconfont";
  line-height: 1.1;
  margin-left: 0.25vw;
  margin-right: 0.25vw;
  display: inline-block;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb:before {
  content: "\e61c";
  display: inline-block;
  font-size: 1.25vw;
  color: inherit;
  font-family: "iconfont";
  line-height: 1;
  transform: translateY(3%);
}
@media screen and (min-width: 1600px) {
  .breadcrumb {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .breadcrumb a:after {
    margin-left: 4px;
    margin-right: 4px;
  }
  .breadcrumb:before {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .breadcrumb a:after {
    margin-left: 4px;
    margin-right: 4px;
  }
  .breadcrumb:before {
    font-size: 14px;
  }
}
/* ==================== 通用面包屑 End ==================== */
/* ==================== 通用分页 Start ==================== */
.mxw-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6.25vw;
}
.mxw-pagination > span,
.mxw-pagination > a {
  min-width: 2.5vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
  height: 2.5vw;
  background-color: #f4f4f4;
  margin: 0.188vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.875vw;
  font-family: "PingFang", sans-serif;
  transition: all 0.4s;
  color: #000;
  flex-shrink: 0;
}
.mxw-pagination > span:hover,
.mxw-pagination > a:hover,
.mxw-pagination > span.active,
.mxw-pagination > a.active {
  background-color: #193190 !important;
  color: #fff;
}
.mxw-pagination .prev:before,
.mxw-pagination .next:after {
  content: "";
  display: block;
  width: 0.375vw;
  height: 0.375vw;
  transform: rotate(-45deg);
  border-top: 1px solid;
  border-left: 1px solid;
  margin-top: 0.188vw;
  margin-right: 0.625vw;
}
.mxw-pagination .next:after {
  margin-right: 0;
  margin-left: 0.625vw;
  transform: rotate(135deg);
}
.mxw-pagination .more {
  background-color: transparent;
}
.mxw-pagination .total {
  background-color: transparent;
}
.mxw-pagination .pagelist {
  width: 3.75vw;
  height: 2.5vw;
  border: 1px solid #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0.875vw;
  color: #000;
  margin-right: 0.438vw;
  cursor: pointer;
  transition: all 0.4s;
}
.mxw-pagination .pagelist:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.mxw-pagination .pagelist .current-page {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mxw-pagination .pagelist .current-page:after {
  content: "";
  display: block;
  width: 0.375vw;
  height: 0.375vw;
  border-top: 1px solid #b2b2b2;
  border-right: 1px solid #b2b2b2;
  transform: rotate(135deg);
  margin-left: 0.625vw;
  margin-bottom: 0.188vw;
}
.mxw-pagination .pagelist.active ul {
  opacity: 1;
  visibility: visible;
}
.mxw-pagination .pagelist ul {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  overflow: auto;
  text-align: center;
  font-size: 0.875vw;
  line-height: 1.875vw;
  max-height: 9.375vw;
  color: #888;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
}
.mxw-pagination .pagelist ul::-webkit-scrollbar {
  width: 0.25vw;
  background: #ececec;
  border-radius: 6.25vw;
}
.mxw-pagination .pagelist ul::-webkit-scrollbar-thumb {
  border-radius: 6.25vw;
  background: #193190;
  cursor: pointer;
}
.mxw-pagination .pagelist ul a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  transition: all 0.4s;
}
.mxw-pagination .pagelist ul a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1600px) {
  .mxw-pagination {
    margin-top: 100px;
  }
  .mxw-pagination > a {
    min-width: 40px;
    padding-left: 20px;
    padding-right: 20px;
    height: 40px;
    margin: 3px;
    font-size: 14px;
  }
  .mxw-pagination .next:after {
    width: 6px;
    height: 6px;
    margin-top: 3px;
    margin-right: 10px;
  }
  .mxw-pagination .next:after {
    margin-left: 10px;
  }
  .mxw-pagination .pagelist {
    width: 60px;
    height: 40px;
    font-size: 14px;
    margin-right: 7px;
  }
  .mxw-pagination .pagelist .current-page:after {
    width: 6px;
    height: 6px;
    margin-left: 10px;
    margin-bottom: 3px;
  }
  .mxw-pagination .pagelist ul {
    font-size: 14px;
    line-height: 30px;
    max-height: 150px;
  }
  .mxw-pagination .pagelist ul::-webkit-scrollbar {
    width: 4px;
    border-radius: 100px;
  }
  .mxw-pagination .pagelist ul::-webkit-scrollbar-thumb {
    border-radius: 100px;
  }
}
@media screen and (max-width: 500px) {
  .mxw-pagination {
    margin-top: 40px;
  }
  .mxw-pagination .pagelist,
  .mxw-pagination .total,
  .mxw-pagination > span,
  .mxw-pagination > a {
    height: auto;
    padding: 6px 10px;
    min-width: auto;
    min-width: 50px;
    font-size: 12px;
  }
  .mxw-pagination .prev:before,
  .mxw-pagination .next:after {
    width: 6px;
    height: 6px;
    font-size: 12px;
    margin-top: 3px;
  }
  .mxw-pagination .pagelist .current-page:after {
    width: 6px;
    height: 6px;
  }
  .mxw-pagination .pagelist ul {
    font-size: 12px;
    line-height: 30px;
    max-height: 140px;
  }
}
/* ==================== 通用分页 End ==================== */
/* ==================== 通用内页banner Start ==================== */
.ny-banner {
  position: relative;
}
.ny-banner .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.ny-banner .body .mxw-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny-banner .body .text {
  font-size: 2.5vw;
  color: #ffffff;
  line-height: 1.1;
  text-align: left;
}
.ny-banner .body .text p {
  font-size: 1.125vw;
  color: #ffffff;
  line-height: 2;
  margin-top: 2.5vw;
}
.ny-banner .image {
  position: relative;
  z-index: 1;
}
.ny-banner .image img {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .ny-banner .body .text {
    font-size: 40px;
  }
  .ny-banner .body .text p {
    font-size: 18px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny-banner .body .text {
    width: 100%;
    text-align: center;
    font-size: 22px;
  }
  .ny-banner .body .text p {
    font-size: 14px;
    margin-top: 20px;
  }
}
/* ==================== 通用内页banner End ==================== */
/* ==================== 内页3 - 板块一 Start ==================== */
.common-tabs {
  background-color: #fff;
  box-shadow: 0vw 0vw 3.125vw 0vw rgba(0, 0, 0, 0.1);
}
.common-tabs > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.common-tabs .tab-item {
  font-size: 1.125vw;
  color: #000;
  line-height: 1.1;
  padding: 1.875vw;
  position: relative;
}
.common-tabs .tab-item:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #193190;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
}
.common-tabs .tab-item:hover {
  color: #193190;
}
.common-tabs .tab-item.active {
  color: #193190;
}
.common-tabs .tab-item.active:after {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .common-tabs {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  }
  .common-tabs .tab-item {
    font-size: 18px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .common-tabs {
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  }
  .common-tabs > .mxw-box {
    justify-content: flex-start;
  }
  .common-tabs .tab-item {
    font-size: 14px;
    padding: 15px;
    width: 33.33%;
    text-align: center;
  }
}
/* ==================== 内页3 - 板块一 End ==================== */
/* ==================== 通用3d加载中动画 Start ==================== */
.common-model-load {
  padding-top: 2.083vw;
}
.common-model-load .load-itembox {
  width: 4.167vw;
  height: 4.167vw;
  margin: 2.083vw auto;
  transition: all 3s;
  position: relative;
  animation: rotate_animate 3s ease infinite;
  animation-delay: 0.8s;
  transform-style: preserve-3d;
  transform: rotateX(-37.5deg) rotateY(405deg);
}
.common-model-load .load-item {
  width: 4.167vw;
  height: 4.167vw;
  border: 0.156vw solid #fff;
  position: absolute;
  background-color: rgba(102, 102, 102, 0.5);
}
.common-model-load .load-item:nth-of-type(1) {
  transform: rotateY(90deg) translateZ(-2.083vw);
}
.common-model-load .load-item:nth-of-type(2) {
  transform: rotateY(90deg) translateZ(2.083vw);
}
.common-model-load .load-item:nth-of-type(3) {
  transform: rotateX(90deg) translateZ(2.083vw);
}
.common-model-load .load-item:nth-of-type(4) {
  transform: rotateX(90deg) translateZ(-2.083vw);
}
.common-model-load .load-item:nth-of-type(5) {
  transform: translateZ(2.083vw);
}
.common-model-load .load-item:nth-of-type(6) {
  transform: translateZ(-2.083vw);
}
.common-model-load .load-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 10.417vw;
}
.common-model-load .load-text {
  color: #fff;
  font-size: 0.833vw;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}
.common-model-load .load-progress {
  position: relative;
  background-color: #fff;
  border-radius: 5.208vw;
  height: 0.156vw;
  width: 0;
  max-width: 100%;
  margin-bottom: 0.521vw;
}
@keyframes rotate_animate {
  0% {
    transform: rotateX(-37.5deg) rotateY(45deg);
  }
  50% {
    transform: rotateX(-37.5deg) rotateY(405deg);
  }
  to {
    transform: rotateX(-37.5deg) rotateY(405deg);
  }
}
@media screen and (max-width: 500px) {
  .common-model-load {
    padding-top: 20px;
  }
  .common-model-load .load-itembox {
    width: 40px;
    height: 40px;
    margin: 20px auto;
    transition: all 3s;
    position: relative;
    animation: rotate_animate 3s ease infinite;
    animation-delay: 0.8s;
    transform-style: preserve-3d;
    transform: rotateX(-37.5deg) rotateY(405deg);
  }
  .common-model-load .load-item {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
  }
  .common-model-load .load-item:nth-of-type(1) {
    transform: rotateY(90deg) translateZ(-20px);
  }
  .common-model-load .load-item:nth-of-type(2) {
    transform: rotateY(90deg) translateZ(20px);
  }
  .common-model-load .load-item:nth-of-type(3) {
    transform: rotateX(90deg) translateZ(20px);
  }
  .common-model-load .load-item:nth-of-type(4) {
    transform: rotateX(90deg) translateZ(-20px);
  }
  .common-model-load .load-item:nth-of-type(5) {
    transform: translateZ(20px);
  }
  .common-model-load .load-item:nth-of-type(6) {
    transform: translateZ(-20px);
  }
  .common-model-load .load-text {
    font-size: 12px;
  }
}
/* ==================== 通用3d加载中动画 End ==================== */
/* ==================== 通用侧边分类 Start ==================== */
.common-aside {
  flex-shrink: 0;
  width: 13.75vw;
  background-color: #f8f8f8;
  border-radius: 0.625vw;
  margin-right: 8.75vw;
  padding-left: 3.125vw;
  padding-right: 3.125vw;
  padding-top: 0.625vw;
  padding-bottom: 0.625vw;
  position: sticky;
  top: 0;
  left: 0;
}
.common-aside .list-item {
  padding-top: 1.563vw;
  padding-bottom: 1.563vw;
  font-size: 1vw;
  line-height: 1.1;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  width: 100%;
  display: block;
  color: #000;
}
.common-aside .list-item:last-child {
  border-bottom: 0;
}
.common-aside .list-item:last-child:after {
  display: none;
}
.common-aside .list-item:before {
  content: "\e60c";
  display: block;
  line-height: 1.1;
  font-family: "iconfont";
  font-size: 0.875vw;
  color: inherit;
  position: absolute;
  left: -1.875vw;
  top: 50%;
  transform: translateY(-50%);
}
.common-aside .list-item.active,
.common-aside .list-item:hover {
  color: #193190;
}
.common-aside .list-item.active:after,
.common-aside .list-item:hover:after {
  width: 100%;
}
.common-aside .list-item:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #193190;
  position: absolute;
  bottom: -1px;
  left: 0;
  transition: all 0.4s;
}
@media screen and (min-width: 1600px) {
  .common-aside {
    width: 220px;
    border-radius: 10px;
    margin-right: 140px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .common-aside .list-item {
    padding-top: 25px;
    padding-bottom: 25px;
    font-size: 16px;
  }
  .common-aside .list-item:before {
    font-size: 14px;
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .common-aside {
    width: 100%;
    border-radius: 10px;
    margin-right: 70px;
    padding-left: 13px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: static;
  }
  .common-aside .list-item {
    width: 48%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .common-aside .list-item:before {
    font-size: 14px;
    left: 0;
  }
}
/* ==================== 通用侧边分类 End ==================== */
/* ==================== 首页 - 板块一 Start ==================== */
.index-section1 {
  overflow: hidden;
}
.index-section1 .swiper-slide {
  position: relative;
}
.index-section1 .image img {
  width: 100%;
}
.index-section1 .info {
  position: absolute;
  bottom: 160px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}
.index-section1 .info .text1 {
  /* font-size: 18px; */
  margin-bottom: 10px;
}
.index-section1 .info .text2 {
  line-height: 1.1;
  /* font-size: 48px; */
  margin-bottom: 20px;
}
.index-section1 .info .text3 {
  line-height: 1.4;
  /* font-size: 22px; */
}
.index-section1 .info .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.index-section1 .info .index-btn:nth-child(2n) {
  margin-left: 20px;
}
.index-section1 .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.index-section1 .swiper-button::after {
  font-size: 24px;
  color: #fff;
}
.index-section1 .swiper-button.swiper-button-prev {
  left: 70px;
}
.index-section1 .swiper-button.swiper-button-next {
  right: 70px;
}
.index-section1 .index-section1-swiper2 {
  position: absolute;
  left: 260px;
  bottom: 60px;
  z-index: 3;
  height: 120px;
  width: 290px;
}
.index-section1 .index-section1-swiper2 .swiper-slide {
  /* font-size: 16px; */
  line-height: 1.1;
  color: #fff;
  opacity: 0.2;
  position: relative;
  transition: opacity 0.4s;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}
.index-section1 .index-section1-swiper2 .swiper-slide:after {
  content: "";
  display: block;
  width: 2px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  display: none;
}
.index-section1 .index-section1-swiper2 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.index-section1 .index-section1-swiper2 .swiper-slide.swiper-slide-thumb-active:after {
  display: block;
}
@media screen and (min-width: 1600px) {
  .index-section1 .info {
    bottom: 160px;
  }
  .index-section1 .info .text1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .index-section1 .info .text2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  .index-section1 .info .text3 {
    font-size: 22px;
  }
  .index-section1 .info .btn-group {
    margin-top: 30px;
  }
  .index-section1 .info .index-btn:nth-child(2n) {
    margin-left: 20px;
  }
  .index-section1 .swiper-button::after {
    font-size: 24px;
  }
  .index-section1 .swiper-button.swiper-button-prev {
    left: 70px;
  }
  .index-section1 .swiper-button.swiper-button-next {
    right: 70px;
  }
  .index-section1 .index-section1-swiper2 {
    left: 260px;
    bottom: 60px;
    height: 120px;
    width: 290px;
  }
  .index-section1 .index-section1-swiper2 .swiper-slide {
    font-size: 16px;
    padding-left: 30px;
  }
  .index-section1 .index-section1-swiper2 .swiper-slide:after {
    width: 2px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .index-section1 .info {
    width: 100%;
    bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .index-section1 .info .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .index-section1 .info .text2 {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .index-section1 .info .text3 {
    font-size: 14px;
  }
  .index-section1 .info .btn-group {
    margin-top: 30px;
  }
  .index-section1 .info .index-btn:nth-child(2n) {
    margin-left: 20px;
  }
  .index-section1 .swiper-button::after {
    font-size: 20px;
  }
  .index-section1 .swiper-button.swiper-button-prev {
    left: 10px;
  }
  .index-section1 .swiper-button.swiper-button-next {
    right: 10px;
  }
  .index-section1 .index-section1-swiper2 {
    left: 260px;
    bottom: 60px;
    height: 120px;
    width: 290px;
  }
  .index-section1 .index-section1-swiper2 .swiper-slide {
    font-size: 16px;
    padding-left: 30px;
  }
  .index-section1 .index-section1-swiper2 .swiper-slide:after {
    width: 2px;
    height: 28px;
  }
  .index-section1 .swiper-pagination {
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 20px;
  }
  .index-section1 .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    background-color: #fff;
    border-radius: 0;
  }
  .index-section1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
  }
}
/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 首页 - 板块二 Start ==================== */
.index-section2 {
  overflow: hidden;
  background-color: #f5f6f8;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 80px;
}
.index-section2 .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 80px;
  position: relative;
}
.index-section2 .tabs::after {
  content: "";
  display: block;
  width: 780px;
  height: 16px;
  background: url(../images/index/img029@780x16.png) no-repeat center bottom;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.index-section2 .tabs .tab-item {
  display: block;
  text-align: center;
  margin-left: 45px;
  margin-right: 45px;
}
.index-section2 .tabs .tab-item:hover .icon,
.index-section2 .tabs .tab-item.active .icon {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}
.index-section2 .tabs .tab-item:hover .text,
.index-section2 .tabs .tab-item.active .text {
  color: #193190;
}
.index-section2 .tabs .tab-item .icon {
  width: 50px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}
.index-section2 .tabs .tab-item .text {
  margin-top: 20px;
  /* font-size: 18px; */
  color: #000;
  line-height: 1.1;
}
.index-section2 .swiper {
  position: relative;
}
.index-section2 .swiper .swiper-button {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  margin: 0;
}
.index-section2 .swiper .swiper-button:after {
  font-size: 20px;
  color: #173993;
}
.index-section2 .swiper .swiper-button.swiper-button-prev {
  left: -40px;
}
.index-section2 .swiper .swiper-button.swiper-button-next {
  right: -40px;
}
.index-section2 .swiper .title {
  /* font-size: 40px; */
  color: #000;
  line-height: 1.1;
  text-align: center;
  margin-top: 45px;
}
.index-section2 .swiper .swiper-slide {
  position: relative;
  padding-top: 70px;
}
.index-section2 .swiper .swiper-slide:hover .item {
  transform: translateY(-20px);
}
.index-section2 .swiper .item {
  transition: all 0.3s;
}
.index-section2 .swiper .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 30px 20px;
}
.index-section2 .swiper .info .text1 {
  /* font-size: 24px; */
  line-height: 1.1;
}
.index-section2 .swiper .info .text2 {
  /* font-size: 16px; */
  color: #000;
  line-height: 1.3;
  margin-top: 20px;
  min-height: 3.9em;
}
.index-section2 .swiper .info .index-btn {
  margin-top: 10px;
}
@media screen and (min-width: 1600px) {
  .index-section2 {
    padding-bottom: 80px;
  }
  .index-section2 .tabs {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .index-section2 .tabs::after {
    width: 780px;
    height: 16px;
  }
  .index-section2 .tabs .tab-item {
    margin-left: 45px;
    margin-right: 45px;
  }
  .index-section2 .tabs .tab-item .icon {
    width: 50px;
  }
  .index-section2 .tabs .tab-item .text {
    margin-top: 20px;
    /* font-size: 18px; */
  }
  .index-section2 .swiper .swiper-button:after {
    font-size: 20px;
  }
  .index-section2 .swiper .swiper-button.swiper-button-prev {
    left: -40px;
  }
  .index-section2 .swiper .swiper-button.swiper-button-next {
    right: -40px;
  }
  .index-section2 .swiper .title {
    font-size: 40px;
    margin-top: 45px;
  }
  .index-section2 .swiper .swiper-slide {
    padding-top: 70px;
  }
  .index-section2 .swiper .swiper-slide:hover .item {
    transform: translateY(-20px);
  }
  .index-section2 .swiper .info {
    padding: 30px 20px;
  }
  .index-section2 .swiper .info .text1 {
    font-size: 24px;
  }
  .index-section2 .swiper .info .text2 {
    font-size: 16px;
    margin-top: 20px;
  }
  .index-section2 .swiper .info .index-btn {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .index-section2 {
    padding-bottom: 40px;
  }
  .index-section2 .tabs {
    padding-bottom: 30px;
    padding-top: 10px;
    flex-wrap: wrap;
  }
  .index-section2 .tabs::after {
    width: 100%;
    height: 8px;
  }
  .index-section2 .tabs .tab-item {
    width: 25%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }
  .index-section2 .tabs .tab-item .icon {
    width: 40px;
  }
  .index-section2 .tabs .tab-item .text {
    margin-top: 10px;
    /* font-size: 14px; */
  }
  .index-section2 .swiper .swiper-button:after {
    font-size: 20px;
  }
  .index-section2 .swiper .swiper-button.swiper-button-prev {
    left: 0;
  }
  .index-section2 .swiper .swiper-button.swiper-button-next {
    right: 0;
  }
  .index-section2 .swiper .title {
    font-size: 24px;
    margin-top: 40px;
  }
  .index-section2 .swiper .swiper-slide {
    padding-top: 35px;
  }
  .index-section2 .swiper .swiper-slide:hover .item {
    transform: translateY(-20px);
  }
  .index-section2 .swiper .image {
    width: 100%;
  }
  .index-section2 .swiper .info {
    padding: 20px 20px;
  }
  .index-section2 .swiper .info .text1 {
    font-size: 18px;
    font-weight: bold;
  }
  .index-section2 .swiper .info .text2 {
    font-size: 14px;
    margin-top: 14px;
  }
  .index-section2 .swiper .info .index-btn {
    margin-top: 10px;
  }
}
/* ==================== 首页 - 板块二 End ==================== */
/* ==================== 首页 - 板块三 Start ==================== */
.index-section3 {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
.index-section3 .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-section3 .body .left {
  width: 360px;
  flex-shrink: 0;
}
.index-section3 .body .left .head {
  margin-bottom: 50px;
  color: #fff;
}
.index-section3 .body .left .head .text1 {
  /* font-size: 22px; */
}
.index-section3 .body .left .head .text2 {
  margin-top: 20px;
  /* font-size: 40px; */
}
.index-section3 .body .left .list {
  display: table;
}
.index-section3 .body .left .list .list-item {
  padding: 15px 20px;
  border: 1px solid;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  position: relative;
  /* font-size: 18px; */
  line-height: 1.1;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.4s, color 0.4s, border-color 0.4s;
}
.index-section3 .body .left .list .list-item.active {
  background-color: #193190;
  color: #fff;
  border-color: #193190;
}
.index-section3 .body .left .list .list-item:last-child {
  margin-bottom: 0;
}
.index-section3 .body .left .list .list-item:after {
  content: "\e60c";
  font-family: "iconfont";
  margin-left: 10px;
}
.index-section3 .body .right {
  width: 930px;
  flex-shrink: 0;
  position: relative;
}
.index-section3 .body .right .swiper-wrapper {
  align-items: stretch;
}
.index-section3 .body .right .swiper-slide {
  height: auto;
}
.index-section3 .body .right .right-item {
  position: relative;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s;
}
.index-section3 .body .right .right-item:first-child ~ .right-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.index-section3 .body .right .right-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 3;
}
.index-section3 .body .right .right-item .item {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.index-section3 .body .right .right-item .image {
  width: 100%;
}
.index-section3 .body .right .right-item .image img {
  width: 100%;
}
.index-section3 .body .right .right-item .info {
  width: 100%;
  background-color: #fff;
  padding: 30px 35px;
  padding-bottom: 36px;
  flex-grow: 1;
  min-width: 0;
}
.index-section3 .body .right .right-item .info .text1 {
  /* font-size: 24px; */
}
.index-section3 .body .right .right-item .info .text2 {
  margin-top: 20px;
  /* font-size: 16px; */
  color: #666666;
  line-height: 1.6;
}
.index-section3 .body .right .right-item .info .index-btn {
  margin-top: 20px;
  color: #888;
}
.index-section3 .body .right .right-item .info .index-btn:hover {
  background-color: #193190;
  color: #fff;
}
.index-section3 .body .right .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.index-section3 .body .right .swiper-button:after {
  font-size: 20px;
  color: #fff;
}
.index-section3 .body .right .swiper-button.swiper-button-prev {
  left: -55px;
}
.index-section3 .body .right .swiper-button.swiper-button-next {
  right: -55px;
}
@media screen and (min-width: 1600px) {
  .index-section3 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .index-section3 .body .left {
    width: 360px;
  }
  .index-section3 .body .left .head {
    margin-bottom: 50px;
  }
  /* .index-section3 .body .left .head .text1 {
    font-size: 22px;
  } */
  .index-section3 .body .left .head .text2 {
    margin-top: 20px;
    /* font-size: 40px; */
  }
  .index-section3 .body .left .list .list-item {
    padding: 15px 20px;
    border-radius: 100px;
    /* font-size: 18px; */
    margin-bottom: 20px;
  }
  .index-section3 .body .left .list .list-item:after {
    margin-left: 10px;
  }
  .index-section3 .body .right {
    width: 930px;
  }
  .index-section3 .body .right .right-item .item {
    border-radius: 10px;
  }
  .index-section3 .body .right .right-item .info {
    padding: 30px 35px;
    padding-bottom: 36px;
  }
  .index-section3 .body .right .right-item .info .text1 {
    /* font-size: 24px; */
  }
  .index-section3 .body .right .right-item .info .text2 {
    margin-top: 20px;
    /* font-size: 16px; */
  }
  .index-section3 .body .right .right-item .info .index-btn {
    margin-top: 20px;
  }
  .index-section3 .body .right .swiper-button:after {
    font-size: 20px;
  }
  .index-section3 .body .right .swiper-button.swiper-button-prev {
    left: -55px;
  }
  .index-section3 .body .right .swiper-button.swiper-button-next {
    right: -55px;
  }
}
@media screen and (max-width: 768px) {
  .index-section3 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-attachment: inherit;
  }
  .index-section3 .body {
    display: block;
    width: 100%;
  }
  .index-section3 .body .left {
    width: 100%;
    text-align: center;
  }
  .index-section3 .body .left .head {
    margin-bottom: 25px;
  }
  /* .index-section3 .body .left .head .text1 {
    font-size: 20px;
  } */
  .index-section3 .body .left .head .text2 {
    margin-top: 10px;
    /* font-size: 14px; */
  }
  .index-section3 .body .left .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .index-section3 .body .left .list .list-item {
    width: 48%;
    padding: 10px 10px;
    border-radius: 50px;
    /* font-size: 14px; */
    margin-bottom: 10px;
    justify-content: center;
  }
  .index-section3 .body .left .list .list-item:after {
    margin-left: 10px;
  }
  .index-section3 .body .right {
    width: 100%;
  }
  .index-section3 .body .right .right-item .item {
    border-radius: 10px;
  }
  .index-section3 .body .right .right-item .info {
    padding: 20px 18px;
    padding-bottom: 18px;
  }
  .index-section3 .body .right .right-item .info .text1 {
    /* font-size: 16px; */
    font-weight: bold;
  }
  .index-section3 .body .right .right-item .info .text2 {
    margin-top: 10px;
    /* font-size: 12px; */
  }
  .index-section3 .body .right .right-item .info .index-btn {
    margin-top: 20px;
  }
  .index-section3 .body .right .swiper-button:after {
    font-size: 20px;
  }
  .index-section3 .body .right .swiper-button.swiper-button-prev {
    left: -28px;
  }
  .index-section3 .body .right .swiper-button.swiper-button-next {
    right: -28px;
  }
}
/* ==================== 首页 - 板块三 End ==================== */
/* ==================== 首页 - 板块四 Start ==================== */
.index-section4 {
  overflow: hidden;
  background-size: cover;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}
.index-section4 .title {
  /* font-size: 40px; */
  margin-bottom: 40px;
  line-height: 1.1;
  text-align: center;
}
.index-section4 .tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  width: 800px;
}
.index-section4 .tabs .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  opacity: 1;
}
.index-section4 .tabs .swiper-button:after {
  font-size: 20px;
  color: #b8b9bb;
}
.index-section4 .tabs .swiper-button.swiper-button-prev {
  left: -40px;
}
.index-section4 .tabs .swiper-button.swiper-button-next {
  right: -40px;
}
.index-section4 .tabs .swiper-slide {
  padding-bottom: 10px;
}
.index-section4 .tabs .swiper-slide.swiper-slide-thumb-active .tab-item {
  border-color: #193190;
  background-color: #fff;
}
.index-section4 .tabs .swiper-slide.swiper-slide-thumb-active .tab-item:after {
  display: block;
}
.index-section4 .tabs .tab-item {
  text-align: center;
  border-radius: 10px;
  border: solid 1px rgba(204, 204, 204, 0.5);
  padding-left: 50px;
  padding-right: 50px;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}
.index-section4 .tabs .tab-item:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #193190;
  border-right: 1px solid #193190;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  background-color: #fff;
  display: none;
}
.index-section4 .tabs .tab-item .icon {
  width: 90px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.index-section4 .tabs .tab-item .text {
  /* font-size: 16px; */
  padding-bottom: 10px;
  padding-top: 10px;
}
.index-section4 .swiper {
  position: relative;
}
.index-section4 .swiper .item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.index-section4 .swiper .item .image {
  width: 920px;
  flex-shrink: 0;
  margin-right: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.index-section4 .swiper .item .info {
  background: url(../images/index/img022@800x1015.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 40px;
  text-align: left;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.index-section4 .swiper .item .info .text1 {
  line-height: 1;
  padding: 6px 20px;
  /* font-size: 18px; */
  border-radius: 100px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background-color: rgba(255, 255, 255, 0.1);
}
.index-section4 .swiper .item .info .text2 {
  /* font-size: 36px; */
  margin-top: 15px;
}
.index-section4 .swiper .item .info .text2:after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  background-color: #fff;
  margin-bottom: 40px;
  margin-top: 30px;
}
.index-section4 .swiper .item .info .text3 {
  margin-top: 30px;
  /* font-size: 22px; */
  font-weight: bold;
  line-height: 1.1;
}
.index-section4 .swiper .item .info .text4 {
  margin-top: 25px;
  /* font-size: 16px; */
  line-height: 1.8;
  /*opacity: 0.7;*/
}
.index-section4 .swiper .item .info .index-btn {
  margin-top: 90px;
  color: #193190;
}
@media screen and (min-width: 1600px) {
  .index-section4 {
    padding-top: 120px;
    padding-bottom: 10px;
  }
  .index-section4 .title {
    /* font-size: 40px; */
    margin-bottom: 40px;
  }
  .index-section4 .tabs {
    margin-bottom: 50px;
    width: 800px;
  }
  .index-section4 .tabs .swiper-button:after {
    font-size: 20px;
  }
  .index-section4 .tabs .swiper-button.swiper-button-prev {
    left: -40px;
  }
  .index-section4 .tabs .swiper-button.swiper-button-next {
    right: -40px;
  }
  .index-section4 .tabs .swiper-slide {
    padding-bottom: 10px;
  }
  .index-section4 .tabs .tab-item {
    border-radius: 10px;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .index-section4 .tabs .tab-item:after {
    width: 10px;
    height: 10px;
    bottom: 5px;
  }
  .index-section4 .tabs .tab-item .icon {
    width: 90px;
  }
  .index-section4 .tabs .tab-item .text {
    /* font-size: 16px; */
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .index-section4 .swiper .item .image {
    width: 920px;
    margin-right: 30px;
    border-radius: 10px;
  }
  .index-section4 .swiper .item .info {
    padding: 50px 40px;
    border-radius: 10px;
  }
  .index-section4 .swiper .item .info .text1 {
    padding: 6px 20px;
    /* font-size: 18px; */
    border-radius: 100px;
  }
  .index-section4 .swiper .item .info .text2 {
    /* font-size: 36px; */
    margin-top: 15px;
  }
  .index-section4 .swiper .item .info .text2:after {
    width: 50px;
    height: 6px;
    margin-bottom: 40px;
    margin-top: 30px;
  }
  .index-section4 .swiper .item .info .text3 {
    margin-top: 30px;
    /* font-size: 22px; */
  }
  .index-section4 .swiper .item .info .text4 {
    margin-top: 25px;
    /* font-size: 16px; */
  }
  .index-section4 .swiper .item .info .index-btn {
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .index-section4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .index-section4 .title {
    /* font-size: 24px; */
    margin-bottom: 30px;
  }
  .index-section4 .tabs {
    margin-bottom: 13px;
    width: 100%;
  }
  .index-section4 .tabs .swiper-button {
    display: none;
  }
  .index-section4 .tabs .swiper-button:after {
    font-size: 20px;
  }
  .index-section4 .tabs .swiper-button.swiper-button-prev {
    left: 0;
  }
  .index-section4 .tabs .swiper-button.swiper-button-next {
    right: 0;
  }
  .index-section4 .tabs .swiper-slide {
    padding-bottom: 10px;
  }
  .index-section4 .tabs .tab-item {
    border-radius: 6px;
    margin-left: 4px;
    margin-right: 4px;
    padding: 10px;
  }
  .index-section4 .tabs .tab-item:after {
    width: 10px;
    height: 10px;
    bottom: 5px;
  }
  .index-section4 .tabs .tab-item .icon {
    width: 50px;
  }
  .index-section4 .tabs .tab-item .text {
    /* font-size: 14px; */
    padding-bottom: 0;
    padding-top: 10px;
  }
  .index-section4 .swiper .item {
    width: 100%;
    display: block;
  }
  .index-section4 .swiper .item .image {
    display: block;
    width: 100%;
    margin-right: 8px;
    border-radius: 10px 10px 0 0;
  }
  .index-section4 .swiper .item .info {
    width: 100%;
    padding: 25px 20px;
    border-radius: 0 0 10px 10px;
  }
  .index-section4 .swiper .item .info .text1 {
    padding: 6px 20px;
    /* font-size: 14px; */
    border-radius: 25px;
  }
  .index-section4 .swiper .item .info .text2 {
    /* font-size: 18px; */
    margin-top: 15px;
  }
  .index-section4 .swiper .item .info .text2:after {
    width: 50px;
    height: 2px;
    margin-bottom: 20px;
    margin-top: 15px;
  }
  .index-section4 .swiper .item .info .text3 {
    margin-top: 15px;
    /* font-size: 14px; */
  }
  .index-section4 .swiper .item .info .text4 {
    margin-top: 25px;
    /* font-size: 12px; */
  }
  .index-section4 .swiper .item .info .index-btn {
    margin-top: 20px;
  }
}
/* ==================== 首页 - 板块四 End ==================== */
/* ==================== 首页 - 板块五 Start ==================== */
.index-section5 {
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.index-section5 .info {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.index-section5 .icon {
  width: 180px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.index-section5 .text1 {
  /* font-size: 24px; */
  color: #ffffff;
  line-height: 1.1;
}
.index-section5 .text2 {
  margin-top: 30px;
  /* font-size: 18px; */
  color: #ffffff;
  line-height: 1.8;
}
.index-section5 .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.index-section5 .btn-group .index-btn:nth-child(1) {
  background-color: #c9151e;
  border-color: #c9151e;
  color: #fff;
  margin-right: 17px;
}
.index-section5 .btn-group .index-btn:nth-child(2) {
  background-color: #fff;
  color: #193190;
}
@media screen and (min-width: 1600px) {
  .index-section5 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .index-section5 .info {
    width: 980px;
  }
  .index-section5 .icon {
    width: 180px;
    margin-bottom: 20px;
  }
  .index-section5 .text1 {
    /* font-size: 24px; */
  }
  .index-section5 .text2 {
    margin-top: 30px;
    /* font-size: 18px; */
  }
  .index-section5 .btn-group {
    margin-top: 40px;
  }
  .index-section5 .btn-group .index-btn:nth-child(1) {
    margin-right: 17px;
  }
}
@media screen and (max-width: 768px) {
  .index-section5 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-attachment: inherit;
  }
  .index-section5 .info {
    width: 100%;
  }
  .index-section5 .icon {
    width: 90px;
    margin-bottom: 10px;
  }
  .index-section5 .text1 {
    /* font-size: 16px; */
    line-height: 1.6;
  }
  .index-section5 .text2 {
    margin-top: 15px;
    /* font-size: 14px; */
  }
  .index-section5 .btn-group {
    margin-top: 20px;
  }
  .index-section5 .btn-group .index-btn:nth-child(1) {
    margin-right: 9px;
  }
}
/* ==================== 首页 - 板块五 End ==================== */
/* ==================== 首页 - 板块六 Start ==================== */
.index-section6 {
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
}
.index-section6 .title {
  /* font-size: 40px; */
  margin-bottom: 40px;
  text-align: center;
  color: #000;
}
.index-section6 .item {
  text-align: left;
}
.index-section6 .item:hover .info .text1 {
  color: #193190;
}
.index-section6 .item:hover .info .index-btn {
  visibility: visible;
  opacity: 1;
}
.index-section6 .item .image {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.index-section6 .item .info {
  margin-top: 30px;
}
.index-section6 .item .info .time {
  font-size: 14px;
  line-height: 1.1;
  color: #999999;
}
.index-section6 .item .info .text1 {
  margin-top: 10px;
  /* font-size: 18px; */
  color: #000;
  line-height: 1.1;
}
.index-section6 .item .info .index-btn {
  margin-top: 30px;
  background-color: #193190;
  color: #fff;
  border-color: #193190;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
@media screen and (min-width: 1600px) {
  .index-section6 {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .index-section6 .title {
    /* font-size: 40px; */
    margin-bottom: 40px;
  }
  .index-section6 .item .image {
    border-radius: 10px;
  }
  .index-section6 .item .info {
    margin-top: 30px;
  }
  .index-section6 .item .info .time {
    font-size: 14px;
  }
  .index-section6 .item .info .text1 {
    margin-top: 10px;
    /* font-size: 18px; */
  }
  .index-section6 .item .info .index-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .index-section6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .index-section6 .mxw-box {
    padding-left: 0;
    padding-right: 0;
  }
  .index-section6 .title {
    /* font-size: 24px; */
    margin-bottom: 20px;
  }
  .index-section6 .index-section6-swiper {
    padding-left: 20px;
  }
  .index-section6 .item .image {
    border-radius: 5px;
  }
  .index-section6 .item .info {
    margin-top: 15px;
  }
  .index-section6 .item .info .time {
    font-size: 14px;
  }
  .index-section6 .item .info .text1 {
    margin-top: 10px;
    /* font-size: 16px; */
  }
  .index-section6 .item .info .index-btn {
    opacity: 1;
    visibility: visible;
    margin-top: 30px;
  }
}
/* ==================== 首页 - 板块六 End ==================== */
/* ==================== 首页 - 板块七 Start ==================== */
/* ==================== 首页 - 板块七 End ==================== */
/* ==================== 首页 - 板块八 Start ==================== */
/* ==================== 首页 - 板块八 End ==================== */
/* ==================== 内页1 - 板块一 Start ==================== */
.ny1-section1 {
  position: relative;
}
.ny1-section1 .image {
  position: relative;
  z-index: 1;
}
.ny1-section1 .image img {
  width: 100%;
}
.ny1-section1 .info {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 2;
}
.ny1-section1 .info .text1 {
  font-size: 2.5vw;
  margin-bottom: 1.875vw;
  color: #193190;
  width: 42.5vw;
}
.ny1-section1 .info .text2 {
  font-size: 1.5vw;
  color: #000;
  line-height: 1.8;
  text-align: justify;
  width: 42.5vw;
}
@media screen and (min-width: 1600px) {
  .ny1-section1 .info .text1 {
    font-size: 58px;
    font-weight: bold;
    margin-bottom: 30px;
    width: 680px;
  }
  .ny1-section1 .info .text2 {
    font-size: 24px;
    width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section1 .info {
    padding-right: 30px;
  }
  .ny1-section1 .info .text1 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
    width: 100%;
  }
  .ny1-section1 .info .text2 {
    font-size: 14px;
    width: 100%;
  }
}
/* ==================== 内页1 - 板块一 End ==================== */
/* ==================== 内页1 - tabs Start ==================== */
.ny1-tabs {
  background-color: #ffffff;
  box-shadow: 0vw 0vw 3.125vw 0vw rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 12;
}
.ny1-tabs .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny1-tabs .tab-item {
  font-size: 1.125vw;
  color: #666666;
  position: relative;
  display: block;
  padding-top: 1.875vw;
  padding-bottom: 1.875vw;
  padding-left: 2.188vw;
  padding-right: 2.188vw;
}
.ny1-tabs .tab-item.active {
  color: #193190;
}
.ny1-tabs .tab-item.active:after {
  width: 100%;
}
.ny1-tabs .tab-item:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.188vw;
  background-color: #193190;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  width: 0;
}
@media screen and (min-width: 1600px) {
  .ny1-tabs {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  }
  .ny1-tabs .tab-item {
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .ny1-tabs .tab-item:after {
    height: 3px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-tabs {
    top: 60px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  }
  .ny1-tabs .mxw-box {
    flex-wrap: wrap;
  }
  .ny1-tabs .tab-item {
    width: 32%;
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 9px;
    padding-right: 9px;
    text-align: center;
  }
  .ny1-tabs .tab-item:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .ny1-tabs .tab-item:after {
    height: 3px;
  }
}
/* ==================== 内页1 - tabs End ==================== */
/* ==================== 内页1 - 板块二 Start ==================== */
.ny1-section2 {
  overflow: hidden;
  padding-bottom: 7.5vw;
}
.ny1-section2 .body {
  padding-top: 7.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny1-section2 .body .image {
  width: 35.625vw;
  flex-shrink: 0;
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny1-section2 .body .image img {
  width: 100%;
}
.ny1-section2 .body .body-right {
  width: 45vw;
  flex-shrink: 0;
}
.ny1-section2 .body .body-right .info {
  padding-right: 1.25vw;
  font-size: 1.125vw;
  line-height: 1.8;
  height: 13.125vw;
  overflow: auto;
  color: #000;
  text-align: justify;
}
.ny1-section2 .body .body-right .info::-webkit-scrollbar {
  width: 0.375vw;
  height: 0.125vw;
  background: #ececec;
  border-radius: 6.25vw;
}
.ny1-section2 .body .body-right .info::-webkit-scrollbar-thumb {
  border-radius: 6.25vw;
  background: #193190;
  cursor: pointer;
}
.ny1-section2 .body .body-right .itembox {
  margin-top: 5vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ny1-section2 .body .body-right .item {
  position: relative;
  padding-right: 2.5vw;
}
.ny1-section2 .body .body-right .item .text1 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
/* 2025-4-24 修改 */
.ny1-section2 .body .body-right .item .text1 span:nth-child(1) {
  /* font-size: 3vw; */
  font-size: 3.2292vw;
  font-weight: bold;
  color: #193190;
  line-height: 1;
}
.ny1-section2 .body .body-right .item .text1 span:nth-child(2) {
  font-size: 1.125vw;
  color: #000;
  line-height: 1.1;
  margin-top: 0.625vw;
  position: absolute;
  right: 0;
  white-space: nowrap;
}
.ny1-section2 .body .body-right .item .text2 {
  margin-top: 0.625vw;
  font-size: 1.125vw;
  color: #000;
  text-align: center;
}
.ny1-section2 .body2 {
  padding-top: 7.5vw;
}
.ny1-section2 .body2 .itembox {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.ny1-section2 .body2 .item {
  width: 32%;
  position: relative;
  border-radius: 0.625vw;
  overflow: hidden;
  border-bottom: 1.875vw solid #193190;
}
.ny1-section2 .body2 .item:hover .image img {
  transform: scale(1.1);
}
.ny1-section2 .body2 .item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny1-section2 .body2 .item .info {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3.75vw 2.188vw;
  padding-bottom: 4.375vw;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  z-index: 2;
}
.ny1-section2 .body2 .item .info .text1 {
  font-size: 2.625vw;
  line-height: 1.8;
  font-weight: bold;
}

.ny1-section2 .body2 .item .info .text2 {
  font-size: 1.25vw;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 6.25vw;
}
.ny1-section2 .body2 .item .info .text2 span {
  width: 32%;
  padding: 0.25vw 0.625vw;
  text-align: center;
  font-size: 1.125vw;
  color: #666666;
  border-radius: 6.25vw;
  background-color: #fff;
  margin-bottom: 7;
}
.ny1-section2 .body2 .item .info .text2 span:last-of-type {
  margin-bottom: 0;
}
.ny1-section2 .body2 .item .info .text2 span:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny1-section2 .body2 .item .info .text2 span:nth-child(3) ~ span {
  margin-top: 2%;
}
.ny1-section2 .body2 .item .image img {
  transition: all 0.5s;
}
@media screen and (min-width: 1600px) {
  .ny1-section2 {
    padding-bottom: 120px;
  }
  .ny1-section2 .body {
    padding-top: 120px;
  }
  .ny1-section2 .body .image {
    width: 570px;
    border-radius: 10px;
  }
  .ny1-section2 .body .body-right {
    width: 720px;
  }
  .ny1-section2 .body .body-right .info {
    padding-right: 20px;
    font-size: 18px;
    height: 220px;
  }
  .ny1-section2 .body .body-right .info::-webkit-scrollbar {
    width: 6px;
    height: 2px;
    border-radius: 100px;
  }
  .ny1-section2 .body .body-right .info::-webkit-scrollbar-thumb {
    border-radius: 100px;
  }
  .ny1-section2 .body .body-right .itembox {
    margin-top: 80px;
  }
  .ny1-section2 .body .body-right .item {
    padding-right: 40px;
  }
  /* 2025-4-24 修改 */
  .ny1-section2 .body .body-right .item .text1 span:nth-child(1) {
    /* font-size: 48px; */
    font-size: 62px;
  }
  .ny1-section2 .body .body-right .item .text1 span:nth-child(2) {
    font-size: 18px;
    margin-top: 10px;
  }
  .ny1-section2 .body .body-right .item .text2 {
    margin-top: 10px;
    font-size: 18px;
  }
  .ny1-section2 .body2 {
    padding-top: 120px;
  }
  .ny1-section2 .body2 .item {
    border-radius: 10px;
    border-bottom: 30px solid #193190;
  }
  .ny1-section2 .body2 .item .info {
    padding: 60px 35px;
    padding-bottom: 70px;
  }
  .ny1-section2 .body2 .item .info .text1 {
    font-size: 42px;
  }
  .ny1-section2 .body2 .item .info .text2 {
    font-size: 30px;
    min-height: 100px;
  }
  .ny1-section2 .body2 .item .info .text2 span {
    padding: 4px 10px;
    font-size: 18px;
    border-radius: 100px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section2 {
    padding-bottom: 60px;
  }
  .ny1-section2 .body {
    padding-top: 60px;
    display: block;
  }
  .ny1-section2 .body .image {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .ny1-section2 .body .body-right {
    width: 100%;
  }
  .ny1-section2 .body .body-right .info {
    padding-right: 0;
    font-size: 14px;
    height: auto;
  }
  .ny1-section2 .body .body-right .info::-webkit-scrollbar {
    width: 6px;
    height: 2px;
    border-radius: 50px;
  }
  .ny1-section2 .body .body-right .info::-webkit-scrollbar-thumb {
    border-radius: 50px;
  }
  .ny1-section2 .body .body-right .itembox {
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .ny1-section2 .body .body-right .item {
    padding-right: 0;
    width: 50%;
  }
  .ny1-section2 .body .body-right .item:nth-child(2) ~ .item {
    margin-top: 20px;
  }
  .ny1-section2 .body .body-right .item .text1 span:nth-child(1) {
    font-size: 30px;
  }
  .ny1-section2 .body .body-right .item .text1 span:nth-child(2) {
    position: static;
    font-size: 14px;
    margin-top: 5px;
    margin-left: 5px;
  }
  .ny1-section2 .body .body-right .item .text2 {
    margin-top: 10px;
    font-size: 14px;
  }
  .ny1-section2 .body2 {
    padding-top: 60px;
  }
  .ny1-section2 .body2 .itembox {
    flex-wrap: wrap;
  }
  .ny1-section2 .body2 .item {
    width: 100%;
    border-radius: 5px;
    border-bottom: 6px solid #193190;
    margin-bottom: 20px;
  }
  .ny1-section2 .body2 .item:last-child {
    margin-bottom: 0;
  }
  .ny1-section2 .body2 .item:nth-child(3n-1) {
    margin-left: 0;
    margin-right: 0;
  }
  .ny1-section2 .body2 .item .info {
    padding: 20px 18px;
    padding-bottom: 20px;
  }
  .ny1-section2 .body2 .item .info .text1 {
    font-size: 21px;
  }
  .ny1-section2 .body2 .item .info .text2 {
    font-size: 14px;
    min-height: inherit;
  }
  .ny1-section2 .body2 .item .info .text2 span {
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 50px;
  }
}
/* ==================== 内页1 - 板块二 End ==================== */
/* ==================== 内页1 - 板块三 Start ==================== */
.ny1-section3 {
  background-color: #f8f8f8;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  overflow: hidden;
}
.ny1-section3 .title {
  text-align: center;
  display: block;
  margin-bottom: 3.75vw;
}
.ny1-section3 .title .text1 {
  font-size: 2.5vw;
  line-height: 1.1;
}
.ny1-section3 .title .text2 {
  margin-top: 0.938vw;
  font-size: 1.375vw;
  line-height: 1.6;
}
.ny1-section3 .itembox {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.ny1-section3 .item {
  width: 23.5%;
  position: relative;
  margin-right: 2%;
  border-radius: 0.625vw;
  overflow: hidden;
  transition: all 0.4s;
}
.ny1-section3 .item.active {
  width: 33.75vw;
  flex-shrink: 0;
}
.ny1-section3 .item.active .item-text1 {
  opacity: 0;
  visibility: hidden;
}
.ny1-section3 .item.active .info {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ny1-section3 .item:nth-child(4) {
  margin-right: 0;
}
.ny1-section3 .item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0;
  left: 0;
}
.ny1-section3 .item .item-text1 {
  font-size: 2vw;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3.75vw 2.5vw;
  line-height: 1.1;
  z-index: 3;
  transition: all 0.4s;
}
.ny1-section3 .item .info {
  width: 33.75vw;
  padding: 2.5vw 3.75vw;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.ny1-section3 .item .info .text1 {
  font-size: 2vw;
  line-height: 1.1;
  margin-bottom: 0.938vw;
  font-weight: bold;
}
.ny1-section3 .item .info .text2 {
  font-size: 1.375vw;
  line-height: 1.2;
  margin-bottom: 2.188vw;
}
.ny1-section3 .item .info .text3 {
  font-size: 1vw;
  line-height: 1.8;
  text-align: justify;
}
.ny1-section3 .item .image {
  height: 41.875vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1600px) {
  .ny1-section3 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny1-section3 .title {
    margin-bottom: 60px;
  }
  .ny1-section3 .title .text1 {
    font-size: 40px;
  }
  .ny1-section3 .title .text2 {
    margin-top: 15px;
    font-size: 22px;
  }
  .ny1-section3 .item {
    border-radius: 10px;
  }
  .ny1-section3 .item.active {
    width: 540px;
  }
  .ny1-section3 .item .item-text1 {
    font-size: 32px;
    padding: 60px 40px;
  }
  .ny1-section3 .item .info {
    width: 540px;
    padding: 40px 60px;
  }
  .ny1-section3 .item .info .text1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .ny1-section3 .item .info .text2 {
    font-size: 22px;
    margin-bottom: 35px;
  }
  .ny1-section3 .item .info .text3 {
    font-size: 16px;
  }
  .ny1-section3 .item .image {
    height: 670px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny1-section3 .title {
    margin-bottom: 30px;
  }
  .ny1-section3 .title .text1 {
    font-size: 22px;
    font-weight: bold;
  }
  .ny1-section3 .title .text2 {
    margin-top: 10px;
    font-size: 14px;
  }
  .ny1-section3 .itembox {
    display: block;
  }
  .ny1-section3 .item {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .ny1-section3 .item:last-child {
    margin-bottom: 0;
  }
  .ny1-section3 .item.active {
    width: 100%;
  }
  .ny1-section3 .item .item-text1 {
    font-size: 8px;
    padding: 60px 20px;
    display: none;
  }
  .ny1-section3 .item .info {
    width: 100%;
    padding: 20px 20px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .ny1-section3 .item .info .text1 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .ny1-section3 .item .info .text2 {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .ny1-section3 .item .info .text3 {
    font-size: 12px;
  }
  .ny1-section3 .item .image {
    height: 335px;
  }
}
/* ==================== 内页1 - 板块三 End ==================== */
/* ==================== 内页1 - 板块四 Start ==================== */
.ny1-section4 {
  background-color: #fff;
  position: relative;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  overflow: hidden;
}
.ny1-section4 .title {
  text-align: center;
  font-size: 2.5vw;
  margin-bottom: 3.75vw;
}
.ny1-section4 .image {
  width: 71.25vw;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.125vw;
}
.ny1-section4 .swiper {
  position: relative;
}

/* 2025-3-21 修改图片居中 */

.ny1-section4 .swiper .image2 {
  border-radius: 0.625vw;
  overflow: hidden;
  border: 1px solid #193190;
  text-align: center;
}
.ny1-section4 .swiper .swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ny1-section4 .swiper .swiper-button::after {
  font-size: 1.5vw;
  color: #193190;
}
.ny1-section4 .swiper .swiper-button.swiper-button-prev {
  left: -2.938vw;
}
.ny1-section4 .swiper .swiper-button.swiper-button-next {
  right: -2.938vw;
}
@media screen and (min-width: 1600px) {
  .ny1-section4 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny1-section4 .title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .ny1-section4 .image {
    width: 1140px;
    margin-bottom: 50px;
  }
  .ny1-section4 .swiper .image2 {
    border-radius: 10px;
  }
  .ny1-section4 .swiper .swiper-button::after {
    font-size: 24px;
  }
  .ny1-section4 .swiper .swiper-button.swiper-button-prev {
    left: -47px;
  }
  .ny1-section4 .swiper .swiper-button.swiper-button-next {
    right: -47px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny1-section4 .title {
    font-size: 16px;
    margin-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .ny1-section4 .image {
    width: 100%;
    margin-bottom: 25px;
  }
  .ny1-section4 .swiper .image2 {
    border-radius: 10px;
  }
  .ny1-section4 .swiper .swiper-button {
    margin: 0;
  }
  .ny1-section4 .swiper .swiper-button::after {
    font-size: 20px;
  }
  .ny1-section4 .swiper .swiper-button.swiper-button-prev {
    left: -20px;
  }
  .ny1-section4 .swiper .swiper-button.swiper-button-next {
    right: -20px;
  }
}
/* ==================== 内页1 - 板块四 End ==================== */
/* ==================== 内页1 - 板块五 Start ==================== */

/* 2025-3-27 修改 */
.ny1-section5 {
  padding-top: 6.875vw;
  padding-bottom: 8.75vw;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #175c97;
  background-size: 100%;
  overflow: hidden;
  background-size: cover;
}
.ny1-section5 .title {
  font-size: 2.5vw;
  color: #fff;
  margin-bottom: 4.375vw;
  text-align: center;
  display: block;
  width: 100%;
}
.ny1-section5 .swiper {
  position: relative;
}
.ny1-section5 .swiper .ny1-section5-swiper {
  padding-bottom: 1.25vw;
  user-select: none;
}
.ny1-section5 .swiper .swiper-slide-active .item .year1 {
  opacity: 1;
  visibility: visible;
}
/* 2025-5-12 修改 */
.ny1-section5 .swiper .swiper-slide-active .item .year2 {
  /* font-size: 1.75vw; */
  font-size: max(18px, 3vw);
  font-weight: bold;
}
.ny1-section5 .swiper:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.125vw;
  position: absolute;
  bottom: 1.25vw;
  left: 0;
  background-color: #ffffff;
  background: -webkit-linear-gradient(to left, transparent, #fff, transparent);
  background: -o-linear-gradient(to left, transparent, #fff, transparent);
  background: -moz-linear-gradient(to left, transparent, #fff, transparent);
  background: linear-gradient(to left, transparent, #fff, transparent);
}
.ny1-section5 .swiper .item {
  position: relative;
  padding-top: 7.5vw;
  text-align: center;
  cursor: pointer;
}
.ny1-section5 .swiper .item .year1 {
  font-size: 8vw;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.2));
  -webkit-background-clip: text;
  color: transparent;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.ny1-section5 .swiper .item .year2 {
  font-size: 1.125vw;
  padding-bottom: 1.875vw;
  color: #fff;
  height: 3.875vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ny1-section5 .swiper .item .icon {
  width: 0.625vw;
  height: 0.625vw;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  bottom: -0.313vw;
  left: 50%;
  transform: translateX(-50%);
}
.ny1-section5 .swiper2 .swiper-slide {
  font-size: 1.125vw;
  color: #fff;
  line-height: 1.1;
  text-align: left;
  font-weight: 600;
}
.ny1-section5 .swiper2 .swiper-slide ul {
  margin-top: 4.375vw;
  margin-bottom: 7.5vw;
  width: 46.875vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
.ny1-section5 .swiper2 .swiper-slide ul li {
  width: 50%;
  margin-top: 1.875vw;
}
.ny1-section5 .swiper2 .swiper-button:after {
  font-size: 2.25vw;
  color: #fff;
}
.ny1-section5 .swiper2 .swiper-button-prev {
  left: 6.25vw;
}
.ny1-section5 .swiper2 .swiper-button-next {
  right: 6.25vw;
}
@media screen and (min-width: 1600px) {
  .ny1-section5 {
    padding-top: 110px;
    padding-bottom: 140px;
  }
  .ny1-section5 .title {
    font-size: 40px;
    margin-bottom: 70px;
  }
  .ny1-section5 .swiper .ny1-section5-swiper {
    padding-bottom: 20px;
  }
  .ny1-section5 .swiper:after {
    height: 2px;
    bottom: 20px;
  }
  .ny1-section5 .swiper .item {
    padding-top: 120px;
  }
  .ny1-section5 .swiper .item.active .year2 {
    font-size: 28px;
  }
  .ny1-section5 .swiper .item .year1 {
    font-size: 128px;
  }
  .ny1-section5 .swiper .item .year2 {
    font-size: 18px;
    padding-bottom: 30px;
    height: 62px;
  }
  .ny1-section5 .swiper .item .icon {
    width: 10px;
    height: 10px;
    bottom: -5px;
  }
  .ny1-section5 .swiper2 .swiper-slide {
    font-size: 18px;
  }
  .ny1-section5 .swiper2 .swiper-slide ul {
    margin-top: 70px;
    margin-bottom: 120px;
    width: 750px;
  }
  .ny1-section5 .swiper2 .swiper-slide ul li {
    margin-top: 30px;
  }
  .ny1-section5 .swiper2 .swiper-button:after {
    font-size: 36px;
  }
  .ny1-section5 .swiper2 .swiper-button-prev {
    left: 100px;
  }
  .ny1-section5 .swiper2 .swiper-button-next {
    right: 100px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny1-section5 .title {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .ny1-section5 .swiper .ny1-section5-swiper {
    padding-bottom: 10px;
  }
  .ny1-section5 .swiper:after {
    height: 2px;
    bottom: 10px;
  }
  .ny1-section5 .swiper .item {
    padding-top: 60px;
  }
  .ny1-section5 .swiper .item.active .year2 {
    font-size: 14px;
  }
  .ny1-section5 .swiper .item .year1 {
    font-size: 50px;
  }
  .ny1-section5 .swiper .item .year2 {
    font-size: 14px;
    padding-bottom: 15px;
    height: 31px;
  }
  .ny1-section5 .swiper .item .icon {
    width: 10px;
    height: 10px;
    bottom: -5px;
  }
  .ny1-section5 .swiper2 .swiper-slide {
    font-size: 14px;
    text-align: center;
  }
  .ny1-section5 .swiper2 .swiper-slide ul {
    display: block;
    margin-top: 70px;
    margin-bottom: 60px;
    width: 100%;
  }
  .ny1-section5 .swiper2 .swiper-slide ul li {
    width: 100%;
    margin-top: 15px;
  }
  .ny1-section5 .swiper2 .swiper-button:after {
    font-size: 18px;
  }
  .ny1-section5 .swiper2 .swiper-button-prev {
    left: 0;
  }
  .ny1-section5 .swiper2 .swiper-button-next {
    right: 0;
  }
}
/* ==================== 内页1 - 板块五 End ==================== */
/* ==================== 内页1 - 板块六 Start ==================== */
.ny1-section6 {
  background-color: #ffffff;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  overflow: hidden;
}
.ny1-section6 .body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.ny1-section6 .info {
  padding: 1.25vw 5vw;
  width: 49%;
  background-color: #f8f8f8;
  border-radius: 0.625vw;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
.ny1-section6 .info .text1 {
  font-size: 2.5vw;
  margin-bottom: 3.125vw;
  line-height: 1.2;
  color: #193190;
}
.ny1-section6 .info .text2 {
  font-size: 1.125vw;
  color: #666666;
  line-height: 1.8;
  text-align: justify;
}
.ny1-section6 .right {
  width: 49%;
  position: relative;
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny1-section6 .right .swiper-slide .image {
  width: 100%;
}
.ny1-section6 .right .swiper-slide .image img {
  width: 100%;
}
.ny1-section6 .right .swiper-slide .title {
  padding: 1.563vw 2.5vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.375vw;
  color: #ffffff;
  line-height: 1.1;
}
.ny1-section6 .right .btn-group {
  position: absolute;
  bottom: 1vw;
  right: 1.25vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny1-section6 .right .btn-group .swiper-button {
  position: static;
  transform: translateY(0);
  width: 2.5vw;
}
.ny1-section6 .right .btn-group .swiper-button:after {
  font-size: 1.125vw;
  color: #fff;
}
@media screen and (min-width: 1600px) {
  .ny1-section6 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny1-section6 .info {
    padding: 20px 80px;
    border-radius: 10px;
  }
  .ny1-section6 .info .text1 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .ny1-section6 .info .text2 {
    font-size: 18px;
  }
  .ny1-section6 .right {
    border-radius: 10px;
  }
  .ny1-section6 .right .swiper-slide .title {
    padding: 25px 40px;
    font-size: 22px;
  }
  .ny1-section6 .right .btn-group {
    bottom: 16px;
    right: 20px;
  }
  .ny1-section6 .right .btn-group .swiper-button {
    width: 40px;
  }
  .ny1-section6 .right .btn-group .swiper-button:after {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section6 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny1-section6 .body {
    display: block;
  }
  .ny1-section6 .info {
    width: 100%;
    padding: 30px 20px;
    border-radius: 5px;
  }
  .ny1-section6 .info .text1 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .ny1-section6 .info .text2 {
    font-size: 14px;
  }
  .ny1-section6 .right {
    width: 100%;
    border-radius: 5px;
    margin-top: 20px;
  }
  .ny1-section6 .right .swiper-slide .title {
    padding: 20px 20px;
    font-size: 14px;
  }
  .ny1-section6 .right .btn-group {
    bottom: 5px;
    right: 10px;
  }
  .ny1-section6 .right .btn-group .swiper-button {
    width: 30px;
  }
  .ny1-section6 .right .btn-group .swiper-button:after {
    font-size: 14px;
  }
}
/* ==================== 内页1 - 板块六 End ==================== */
/* ==================== 内页1 - 板块七 Start ==================== */
.ny1-section7 {
  background-color: #ecf1f7;
  padding-top: 7.5vw;
  padding-bottom: 6.875vw;
  overflow: hidden;
}
.ny1-section7 .title {
  font-size: 2.5vw;
  margin-bottom: 1.875vw;
  text-align: center;
  color: #193190;
}
.ny1-section7 .desc {
  font-size: 1.125vw;
  color: #666666;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5vw;
}
.ny1-section7 .itembox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny1-section7 .itembox .item {
  font-size: 1.125vw;
  color: #000;
  position: relative;
  padding-left: 1.875vw;
  margin-right: 2.5vw;
}
.ny1-section7 .itembox .item:last-child {
  margin-right: 0;
}
.ny1-section7 .itembox .item:before {
  content: "";
  display: block;
  background: url(../images/ny1/img015@40x40.png) no-repeat center;
  width: 1.25vw;
  height: 1.25vw;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0.188vw;
  left: 0.313vw;
}
.ny1-section7 .image {
  margin-top: 1.875vw;
  width: 71.25vw;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.ny1-section7 .image img {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .ny1-section7 {
    padding-top: 120px;
    padding-bottom: 110px;
  }
  .ny1-section7 .title {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .ny1-section7 .desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .ny1-section7 .itembox .item {
    font-size: 18px;
    padding-left: 30px;
    margin-right: 40px;
  }
  .ny1-section7 .itembox .item:before {
    width: 20px;
    height: 20px;
    top: 3px;
    left: 5px;
  }
  .ny1-section7 .image {
    margin-top: 30px;
    width: 1140px;
  }
}
@media screen and (max-width: 768px) {
  .ny1-section7 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny1-section7 .title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .ny1-section7 .desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .ny1-section7 .itembox {
    flex-wrap: wrap;
  }
  .ny1-section7 .itembox .item {
    font-size: 12px;
    padding-left: 24px;
    margin-right: 20px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .ny1-section7 .itembox .item:before {
    width: 14px;
    height: 14px;
    top: 2px;
    left: 5px;
  }
  .ny1-section7 .image {
    margin-top: 30px;
    width: 100%;
  }
}
/* ==================== 内页1 - 板块七 End ==================== */
/* ==================== 内页1 - 板块八 Start ==================== */
/* ==================== 内页1 - 板块八 End ==================== */
/* ==================== 内页2 - 通用标题 Start ==================== */
.ny2-title {
  font-size: 2.5vw;
  line-height: 1.1;
  margin-bottom: 2.5vw;
  color: #000;
}
@media screen and (min-width: 1600px) {
  .ny2-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny2-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
/* ==================== 内页2 - 通用标题 End ==================== */
/* ==================== 内页2 - 板块一 Start ==================== */
.ny2-section1 {
  background-color: #000;
  position: relative;
}
.ny2-section1 .body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.ny2-section1 .body > .mxw-box {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny2-section1 .breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
.ny2-section1 .content {
  width: 100%;
}
.ny2-section1 .title {
  color: #fff;
  margin-bottom: 3.75vw;
}
.ny2-section1 .title .text1 {
  font-size: 2.5vw;
}
.ny2-section1 .title .text2 {
  margin-top: 1.25vw;
  font-size: 1.625vw;
  line-height: 1.8;
}
.ny2-section1 .itembox {
  display: table;
}
.ny2-section1 .item {
  background-color: rgba(23, 57, 147, 0.1);
  border-radius: 6.25vw;
  border: solid 1px rgba(255, 255, 255, 0.3);
  padding-left: 1.875vw;
  padding-right: 2.5vw;
  padding-top: 0.938vw;
  padding-bottom: 0.938vw;
  line-height: 1.6;
  text-align: left;
  margin-top: 1.25vw;
  color: #fff;
  position: relative;
  min-width: 16.875vw;
  cursor: pointer;
  font-size: 1vw;
}
.ny2-section1 .item.active {
  background-color: #173993;
  border-color: #173993;
}
.ny2-section1 .item:after {
  content: "\e60c";
  font-family: "iconfont";
  line-height: 1.1;
  display: block;
  position: absolute;
  right: 1.25vw;
  top: 50%;
  transform: translateY(-50%);
}
.ny2-section1 .item:first-child {
  margin-top: 0;
}
.ny2-section1 .item span {
  display: block;
}
.ny2-section1 .item span:nth-child(1) {
  font-weight: bold;
}
.ny2-section1 .ny2-section1-swiper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ny2-section1 .ny2-section1-swiper .swiper-slide {
  background-size: 0;
}
.ny2-section1 .ny2-section1-swiper .swiper-slide img {
  width: 100%;
}
@media screen and (min-width: 1600px) {
  .ny2-section1 .title {
    margin-bottom: 60px;
  }
  .ny2-section1 .title .text1 {
    font-size: 40px;
  }
  .ny2-section1 .title .text2 {
    margin-top: 20px;
    font-size: 26px;
  }
  .ny2-section1 .item {
    border-radius: 100px;
    padding-left: 30px;
    padding-right: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: 20px;
    min-width: 270px;
    font-size: 16px;
  }
  .ny2-section1 .item:after {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ny2-section1 .breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny2-section1 .title {
    margin-bottom: 30px;
  }
  .ny2-section1 .title .text1 {
    font-size: 22px;
  }
  .ny2-section1 .title .text2 {
    margin-top: 10px;
    font-size: 14px;
  }
  /* 2025-1-21 修改按钮，显示最大宽度 */
  .ny2-section1 .itembox {
    width: 100%;
    max-width: 180px;
  }
  .ny2-section1 .item {
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    min-width: inherit;
    font-size: 14px;
  }
  .ny2-section1 .item:after {
    right: 10px;
  }
  .ny2-section1 .ny2-section1-swiper .swiper-slide {
    /*height: 100vh;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .ny2-section1 .ny2-section1-swiper .swiper-slide img {
    display: none;
  }
}
/* ==================== 内页2 - 板块一 End ==================== */
/* ==================== 内页2 - 板块二 Start ==================== */
.ny2-section2 {
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.ny2-section2 .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ny2-section2 .video {
  width: 100%;
  height: 100%;
  position: relative;
}
.ny2-section2 .video.active:after {
  opacity: 0;
  visibility: hidden;
}
.ny2-section2 .video:after {
  content: "\e620";
  display: block;
  font-size: 3.125vw;
  font-family: "iconfont";
  color: #fff;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: all 0.4s;
}
.ny2-section2 .video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ==================== 内页2 - 板块二 End ==================== */
/* ==================== 内页2 - 板块三 Start ==================== */
.ny2-section3 {
  background-color: #fff;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  overflow: hidden;
}
.ny2-section3 .ny2-title {
  text-align: center;
}
.ny2-section3 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.ny2-section3 .item {
  width: 49%;
}
.ny2-section3 .item:nth-child(2n) {
  margin-left: 2%;
}
.ny2-section3 .item:nth-child(2) ~ .item {
  margin-top: 2.5vw;
}
.ny2-section3 .item .image {
  width: 100%;
  height: 21.875vw;
  overflow: hidden;
  border-radius: 0.625vw;
  position: relative;
}
.ny2-section3 .item .image:hover .img {
  transform: scale(1.1);
}
.ny2-section3 .item .image .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s;
}
.ny2-section3 .item .info {
  width: 100%;
  margin-top: 1.875vw;
}
.ny2-section3 .item .info .text1 {
  font-size: 1.5vw;
  color: #000;
  line-height: 1.1;
}
.ny2-section3 .item .info .text2 {
  margin-top: 1.25vw;
  font-size: 1vw;
  color: #666666;
  line-height: 1.6;
  text-align: justify;
}
@media screen and (min-width: 1600px) {
  .ny2-section3 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny2-section3 .item:nth-child(2) ~ .item {
    margin-top: 40px;
  }
  .ny2-section3 .item .image {
    height: 350px;
    border-radius: 10px;
  }
  .ny2-section3 .item .info {
    margin-top: 30px;
  }
  .ny2-section3 .item .info .text1 {
    font-size: 24px;
  }
  .ny2-section3 .item .info .text2 {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ny2-section3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny2-section3 .item {
    width: 100%;
  }
  .ny2-section3 .item:nth-child(1) ~ .item {
    margin-top: 30px;
  }
  .ny2-section3 .item:nth-child(2) ~ .item {
    margin-top: 30px;
  }
  .ny2-section3 .item .image {
    height: 180px;
    border-radius: 4px;
  }
  .ny2-section3 .item .info {
    margin-top: 30px;
  }
  .ny2-section3 .item .info .text1 {
    font-size: 16px;
    font-weight: bold;
  }
  .ny2-section3 .item .info .text2 {
    margin-top: 10px;
    font-size: 14px;
  }
}
/* ==================== 内页2 - 板块三 End ==================== */
/* ==================== 内页2 - 板块四 Start ==================== */
.ny2-section4 {
  background-color: #f8f8f8;
  padding-top: 7.5vw;
  padding-bottom: 4.375vw;
  overflow: hidden;
}
.ny2-section4 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.ny2-section4 .item {
  width: 23.5%;
  background-color: #fff;
  padding: 1.875vw;
  transition: all 0.4s;
  border-radius: 0.625vw;
  margin-right: 2%;
}
.ny2-section4 .item:nth-child(4n) {
  margin-right: 0;
}
.ny2-section4 .item:nth-child(4) ~ .item {
  margin-top: 2%;
}
.ny2-section4 .item:hover {
  box-shadow: 0 0 0.625vw -0.313vw rgba(0, 0, 0, 0.2);
}
.ny2-section4 .item .image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny2-section4 .item .image:hover .img {
  transform: scale(1.1);
}
.ny2-section4 .item .image .img {
  width: 13.125vw;
  height: 9.375vw;
  transition: all 0.4s;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ny2-section4 .item .info {
  margin-top: 1.875vw;
  padding-bottom: 3.125vw;
}
.ny2-section4 .item .info .text1 {
  font-size: 1.125vw;
  color: #000;
  line-height: 1.4;
  text-align: center;
  display: block;
}
.ny2-section4 .item .info .text1:hover {
  color: #193190;
}
.ny2-section4 .item .info .text2 {
  margin-top: 1.25vw;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ny2-section4 .item .info .text2 span {
  padding: 0.25vw 0.625vw;
  border: 1px solid #ccc;
  border-radius: 6.25vw;
  font-size: 1vw;
  color: #000;
  line-height: 1.1;
  margin: 0.125vw 0.188vw;
}
@media screen and (min-width: 1600px) {
  .ny2-section4 {
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .ny2-section4 .item {
    padding: 30px;
    border-radius: 10px;
  }
  .ny2-section4 .item:hover {
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
  }
  .ny2-section4 .item .image .img {
    width: 210px;
    height: 150px;
  }
  .ny2-section4 .item .info {
    margin-top: 30px;
    padding-bottom: 50px;
  }
  .ny2-section4 .item .info .text1 {
    font-size: 18px;
  }
  .ny2-section4 .item .info .text2 {
    margin-top: 20px;
  }
  .ny2-section4 .item .info .text2 span {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 16px;
    margin: 2px 3px;
  }
}
@media screen and (max-width: 768px) {
  .ny2-section4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny2-section4 .item {
    width: 100%;
    padding: 30px 15px;
    border-radius: 10px;
    margin: 0 !important;
  }
  .ny2-section4 .item:first-child ~ .item {
    margin-top: 20px !important;
  }
  .ny2-section4 .item:hover {
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.2);
  }
  .ny2-section4 .item .image .img {
    width: 205px;
    height: 165px;
  }
  .ny2-section4 .item .info {
    margin-top: 15px;
    padding-bottom: 0;
  }
  .ny2-section4 .item .info .text1 {
    font-size: 16px;
  }
  .ny2-section4 .item .info .text2 {
    margin-top: 10px;
  }
  .ny2-section4 .item .info .text2 span {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 14px;
    margin: 2px 3px;
  }
}
/* ==================== 内页2 - 板块四 End ==================== */
/* ==================== 内页2 - 板块五 Start ==================== */
.ny2-section5 {
  overflow: hidden;
  padding-top: 7.5vw;
  padding-bottom: 12.5vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ny2-section5 .ny2-title {
  color: #fff;
}
.ny2-section5 .tabs {
  font-size: 1.125vw;
  color: #fff;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 2.5vw;
}
.ny2-section5 .tabs a {
  color: inherit;
}
.ny2-section5 .tabs a:hover {
  text-decoration: underline;
}
.ny2-section5 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.ny2-section5 .item {
  width: 32%;
}
.ny2-section5 .item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny2-section5 .item .image {
  width: 100%;
  height: 36.25vw;
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny2-section5 .item .text {
  margin-top: 1.875vw;
  font-size: 1.5vw;
  line-height: 1.2;
  color: #fff;
}
.ny2-section5 .more-btn {
  display: table;
  padding: 1.25vw 2.5vw;
  border-radius: 6.25vw;
  background-color: #c9151e;
  color: #fff;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: 11.25vw;
}
@media screen and (min-width: 1600px) {
  .ny2-section5 {
    padding-top: 120px;
    padding-bottom: 200px;
  }
  .ny2-section5 .tabs {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .ny2-section5 .item .image {
    height: 580px;
    border-radius: 10px;
  }
  .ny2-section5 .item .text {
    margin-top: 30px;
    font-size: 24px;
  }
  .ny2-section5 .more-btn {
    padding: 20px 40px;
    border-radius: 100px;
    margin-top: 180px;
  }
}
@media screen and (max-width: 768px) {
  .ny2-section5 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny2-section5 .tabs {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .ny2-section5 .item .image {
    height: 290px;
    border-radius: 10px;
  }
  .ny2-section5 .item .text {
    margin-top: 15px;
    font-size: 16px;
  }
  .ny2-section5 .more-btn {
    padding: 10px 30px;
    border-radius: 100px;
    margin-top: 50px;
  }
}
/* ==================== 内页2 - 板块五 End ==================== */
/* ==================== 内页2 - 板块六 Start ==================== */
/* ==================== 内页2 - 板块六 End ==================== */
/* ==================== 内页2 - 板块七 Start ==================== */
/* ==================== 内页2 - 板块七 End ==================== */
/* ==================== 内页2 - 板块八 Start ==================== */
/* ==================== 内页2 - 板块八 End ==================== */
/* ==================== 内页3 - 板块一 Start ==================== */
.ny3-section1 {
  background-color: #fff;
}
.ny3-section1 .tabs {
  background-color: #fff;
  box-shadow: 0vw 0vw 3.125vw 0vw rgba(0, 0, 0, 0.1);
}
.ny3-section1 .tabs > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.ny3-section1 .tabs .tab-item {
  font-size: 1.125vw;
  color: #000;
  line-height: 1.1;
  padding: 1.875vw;
  position: relative;
}
.ny3-section1 .tabs .tab-item:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #193190;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s;
}
.ny3-section1 .tabs .tab-item:hover {
  color: #193190;
}
.ny3-section1 .tabs .tab-item.active {
  color: #193190;
}
.ny3-section1 .tabs .tab-item.active:after {
  width: 100%;
}
.ny3-section1 .body {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.ny3-section1 .content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny3-section1 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.ny3-section1 .item {
  width: 32%;
}
.ny3-section1 .item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny3-section1 .item:nth-child(3) ~ .item {
  margin-top: 2.188vw;
}
.ny3-section1 .item .image {
  border-radius: 0.625vw;
  overflow: hidden;
  height: 26.25vw;
}
.ny3-section1 .item .text {
  margin-top: 1.25vw;
  font-size: 1.25vw;
  color: #000;
  line-height: 1.4;
}
@media screen and (min-width: 1600px) {
  .ny3-section1 .tabs {
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
  }
  .ny3-section1 .tabs .tab-item {
    font-size: 18px;
    padding: 30px;
  }
  .ny3-section1 .body {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny3-section1 .item:nth-child(3) ~ .item {
    margin-top: 35px;
  }
  .ny3-section1 .item .image {
    border-radius: 10px;
    height: 420px;
  }
  .ny3-section1 .item .text {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ny3-section1 .tabs {
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  }
  .ny3-section1 .tabs > .mxw-box {
    justify-content: flex-start;
  }
  .ny3-section1 .tabs .tab-item {
    font-size: 14px;
    padding: 15px;
    width: 33.33%;
    text-align: center;
  }
  .ny3-section1 .body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny3-section1 .content {
    display: block;
  }
  .ny3-section1 .itembox {
    margin-top: 30px;
    justify-content: space-between;
  }
  .ny3-section1 .item {
    width: 48%;
    margin: 0 !important;
  }
  .ny3-section1 .item:nth-child(2) ~ .item {
    margin-top: 30px !important;
  }
  .ny3-section1 .item .image {
    border-radius: 5px;
    height: 210px;
  }
  .ny3-section1 .item .text {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
  }
}
/* ==================== 内页3 - 板块一 End ==================== */
/* ==================== 内页3 - 板块二 Start ==================== */
/* ==================== 内页3 - 板块二 End ==================== */
/* ==================== 内页3 - 板块三 Start ==================== */
/* ==================== 内页3 - 板块三 End ==================== */
/* ==================== 内页3 - 板块四 Start ==================== */
/* ==================== 内页3 - 板块四 End ==================== */
/* ==================== 内页3 - 板块五 Start ==================== */
/* ==================== 内页3 - 板块五 End ==================== */
/* ==================== 内页3 - 板块六 Start ==================== */
/* ==================== 内页3 - 板块六 End ==================== */
/* ==================== 内页3 - 板块七 Start ==================== */
/* ==================== 内页3 - 板块七 End ==================== */
/* ==================== 内页3 - 板块八 Start ==================== */
/* ==================== 内页3 - 板块八 End ==================== */
/* ==================== 内页4 - 板块一 Start ==================== */
.ny4-section1 .body {
  padding-top: 120px;
  padding-bottom: 120px;
}
.ny4-section1 .itembox {
  width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
.ny4-section1 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}
.ny4-section1 .item:last-child {
  margin-bottom: 0;
}
.ny4-section1 .item .image {
  width: 380px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  display: block;
}
.ny4-section1 .item .info {
  min-width: 0;
  flex-grow: 1;
  margin-left: 50px;
}
.ny4-section1 .item .title {
  font-size: 22px;
  line-height: 1.4;
  max-height: 2.8em;
  color: #000;
  transition: all 0.4s;
}
.ny4-section1 .item .title:hover {
  color: #193190;
}
.ny4-section1 .date {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}
.ny4-section1 .desc {
  margin-top: 30px;
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
  color: #000;
  max-height: 5.4em;
}
.ny4-section1 .more-btn {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 100px;
  display: table;
  transition: all 0.4s;
}
.ny4-section1 .more-btn:hover {
  background-color: #193190;
  color: #fff;
  border-color: #193190;
}
/* ==================== 内页4 - 板块一 End ==================== */
/* ==================== 内页4 - 板块二 Start ==================== */
/* ==================== 内页4 - 板块二 End ==================== */
/* ==================== 内页4 - 板块三 Start ==================== */
/* ==================== 内页4 - 板块三 End ==================== */
/* ==================== 内页4 - 板块四 Start ==================== */
/* ==================== 内页4 - 板块四 End ==================== */
/* ==================== 内页4 - 板块五 Start ==================== */
/* ==================== 内页4 - 板块五 End ==================== */
/* ==================== 内页4 - 板块六 Start ==================== */
/* ==================== 内页4 - 板块六 End ==================== */
/* ==================== 内页4 - 板块七 Start ==================== */
/* ==================== 内页4 - 板块七 End ==================== */
/* ==================== 内页4 - 板块八 Start ==================== */
/* ==================== 内页4 - 板块八 End ==================== */
/* ==================== 内页5 - 板块一 Start ==================== */
.ny5-section1 .body {
  padding-top: 120px;
  padding-bottom: 120px;
}
.ny5-section1 h1 {
  font-weight: 600;
  line-height: 1.2;
  color: #000;
  font-size: 36px;
  text-align: center;
}
.ny5-section1 .other {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #000;
  line-height: 1.1;
}
.ny5-section1 .other span {
  margin-right: 40px;
}
.ny5-section1 .other span:last-child {
  margin-right: 0;
}
.ny5-section1 article {
  padding-top: 100px;
  padding-bottom: 120px;
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}
.ny5-section1 .page-bottom {
  padding-top: calc(60px + 12px);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.ny5-section1 .page-bottom:before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  background: url(../images/ny4/img013@1400x12.png) repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.ny5-section1 .page-bottom .page-btn {
  width: 49%;
  color: #000;
  font-size: 16px;
  position: relative;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s;
}
.ny5-section1 .page-bottom .page-btn:hover {
  color: #193190;
}
.ny5-section1 .page-bottom .page-btn:before,
.ny5-section1 .page-bottom .page-btn:after {
  font-family: "iconfont";
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  color: inherit;
  font-size: 30px;
  margin-top: -5px;
}
.ny5-section1 .page-bottom .page-prev {
  text-align: left;
  justify-content: flex-start;
}
.ny5-section1 .page-bottom .page-prev:before {
  content: "\ea65";
  margin-right: 20px;
}
.ny5-section1 .page-bottom .page-next {
  text-align: right;
  justify-content: flex-end;
}
.ny5-section1 .page-bottom .page-next:after {
  content: "\ea66";
  margin-left: 20px;
}
@media screen and (min-width: 1600px) {
  .ny5-section1 .body {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny5-section1 h1 {
    font-size: 36px;
  }
  .ny5-section1 .other {
    margin-top: 20px;
    font-size: 14px;
  }
  .ny5-section1 .other span {
    margin-right: 40px;
  }
  .ny5-section1 article {
    padding-top: 100px;
    padding-bottom: 120px;
    font-size: 16px;
  }
  .ny5-section1 .page-bottom {
    padding-top: calc(60px + 12px);
  }
  .ny5-section1 .page-bottom:before {
    height: 12px;
  }
  .ny5-section1 .page-bottom .page-btn {
    font-size: 16px;
  }
  .ny5-section1 .page-bottom .page-btn:after {
    font-size: 30px;
    margin-top: -5px;
  }
  .ny5-section1 .page-bottom .page-prev:before {
    margin-right: 20px;
  }
  .ny5-section1 .page-bottom .page-next:after {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ny5-section1 .body {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny5-section1 h1 {
    font-size: 22px;
    line-height: 1.6;
  }
  .ny5-section1 .other {
    margin-top: 20px;
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ny5-section1 .other span {
    width: 50%;
    display: block;
    margin-right: 0;
  }
  .ny5-section1 article {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 14px;
  }
  .ny5-section1 .page-bottom {
    padding-top: calc(30px + 6px);
    display: block;
  }
  .ny5-section1 .page-bottom:before {
    height: 6px;
  }
  .ny5-section1 .page-bottom .page-btn {
    font-size: 14px;
    display: block;
    width: 100%;
  }
  .ny5-section1 .page-bottom .page-btn::before,
  .ny5-section1 .page-bottom .page-btn:after {
    display: none;
    margin-top: -5px;
  }
  .ny5-section1 .page-bottom .page-prev {
    text-align: left;
  }
  .ny5-section1 .page-bottom .page-prev:before {
    margin-right: 10px;
  }
  .ny5-section1 .page-bottom .page-next {
    text-align: left;
    margin-top: 10px;
  }
  .ny5-section1 .page-bottom .page-next:after {
    margin-left: 20px;
  }
}
/* ==================== 内页5 - 板块一 End ==================== */
/* ==================== 内页5 - 板块二 Start ==================== */
/* ==================== 内页5 - 板块二 End ==================== */
/* ==================== 内页5 - 板块三 Start ==================== */
/* ==================== 内页5 - 板块三 End ==================== */
/* ==================== 内页5 - 板块四 Start ==================== */
/* ==================== 内页5 - 板块四 End ==================== */
/* ==================== 内页5 - 板块五 Start ==================== */
/* ==================== 内页5 - 板块五 End ==================== */
/* ==================== 内页5 - 板块六 Start ==================== */
/* ==================== 内页5 - 板块六 End ==================== */
/* ==================== 内页5 - 板块七 Start ==================== */
/* ==================== 内页5 - 板块七 End ==================== */
/* ==================== 内页5 - 板块八 Start ==================== */
/* ==================== 内页5 - 板块八 End ==================== */
/* ==================== 内页6 - 板块一 Start ==================== */
.ny6-section1 {
  background-color: #f8f8f8;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
.ny6-section1 .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny6-section1 .info {
  width: 38.75vw;
}
.ny6-section1 .info .text1 {
  font-size: 2.5vw;
  line-height: 1.3;
  color: #000;
  padding-bottom: 1.875vw;
  position: relative;
  margin-bottom: 3.75vw;
  font-weight: bold;
}
.ny6-section1 .info .text1:after {
  content: "";
  display: block;
  width: 7.5vw;
  height: 0.5vw;
  background-color: #193190;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.ny6-section1 .info .text2 {
  font-size: 1.625vw;
  color: #000;
  line-height: 1.2;
}
.ny6-section1 .info .text3 {
  margin-top: 1.25vw;
  font-size: 1.125vw;
  color: #666666;
  line-height: 1.4;
}
.ny6-section1 .info .text4 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 2.5vw;
  width: 28.75vw;
}
.ny6-section1 .info .text4 span {
  width: 31%;
  padding: 0.625vw;
  font-size: 1.125vw;
  color: #000;
  text-align: center;
  line-height: 1.1;
  border: 1px solid #ccc;
  border-radius: 6.25vw;
}
.ny6-section1 .info .text4 span:nth-child(3n-1) {
  margin-left: 3.5%;
  margin-right: 3.5%;
}
.ny6-section1 .info .text4 span:nth-child(3) ~ span {
  margin-top: 4%;
}
.ny6-section1 .image {
  width: 41.875vw;
  height: 38.125vw;
  flex-shrink: 0;
  border-radius: 0.625vw;
  overflow: hidden;
}
@media screen and (min-width: 1600px) {
  .ny6-section1 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ny6-section1 .info {
    width: 620px;
  }
  .ny6-section1 .info .text1 {
    font-size: 40px;
    padding-bottom: 30px;
    margin-bottom: 60px;
  }
  .ny6-section1 .info .text1:after {
    width: 120px;
    height: 8px;
  }
  .ny6-section1 .info .text2 {
    font-size: 26px;
  }
  .ny6-section1 .info .text3 {
    margin-top: 20px;
    font-size: 18px;
  }
  .ny6-section1 .info .text4 {
    margin-top: 40px;
    width: 460px;
  }
  .ny6-section1 .info .text4 span {
    padding: 10px;
    font-size: 18px;
    border-radius: 100px;
  }
  .ny6-section1 .image {
    width: 670px;
    height: 610px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ny6-section1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny6-section1 .body {
    display: block;
  }
  .ny6-section1 .info {
    width: 100%;
  }
  .ny6-section1 .info .text1 {
    font-size: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .ny6-section1 .info .text1:after {
    width: 60px;
    height: 4px;
  }
  .ny6-section1 .info .text2 {
    font-size: 14px;
  }
  .ny6-section1 .info .text3 {
    margin-top: 20px;
    font-size: 14px;
  }
  .ny6-section1 .info .text4 {
    margin-top: 40px;
    width: 100%;
  }
  .ny6-section1 .info .text4 span {
    padding: 10px;
    font-size: 14px;
    border-radius: 50px;
  }
  .ny6-section1 .image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    margin-top: 40px;
  }
}
/* ==================== 内页6 - 板块一 End ==================== */
/* ==================== 内页6 - 板块二 Start ==================== */
.ny6-section2 {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.ny6-section2 form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 4.063vw;
}
.ny6-section2 form .layui-form-select {
  width: 12.5vw;
}
.ny6-section2 form .layui-input:focus,
.ny6-section2 form .layui-textarea:focus {
  box-shadow: 0 0 0.625vw -0.313vw #193190 !important;
  border-color: #193190 !important;
}
.ny6-section2 form .layui-form-select dl {
  top: 3.75vw;
  font-size: 1vw;
}
.ny6-section2 form .layui-form-select dl dd.layui-this {
  color: #193190;
}
.ny6-section2 form .layui-input {
  height: 3.625vw;
  line-height: 3.625vw;
  background-color: #fff;
  border-radius: 0.375vw;
  border: solid 1px #cccccc;
  font-size: 1vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
.ny6-section2 form .search {
  width: 20vw;
}
.ny6-section2 form button {
  width: 6.875vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #193190;
  border-radius: 0.375vw;
}
.ny6-section2 form button:before {
  color: #fff;
  font-size: 1vw;
}
.ny6-section2 form .form-item {
  margin-right: 1.25vw;
}
.ny6-section2 form .form-item:last-child {
  margin-right: 0;
}
.ny6-section2 .item.active:not(:first-child) .item-row {
  background-color: #193190;
  color: #fff;
}
.ny6-section2 .item.active:not(:first-child) .content {
  display: block;
}
.ny6-section2 .item:nth-child(1) {
  border-top: 0.375vw solid #193190;
}
.ny6-section2 .item:nth-child(1) .item-row {
  border-bottom-color: #193190;
}
.ny6-section2 .item:nth-child(1) .item-row > div {
  padding-top: 1.875vw;
  padding-bottom: 1.875vw;
  color: #193190;
  font-size: 1.375vw;
  line-height: 1.1;
}
.ny6-section2 .item .item-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  color: #666666;
  cursor: pointer;
}
.ny6-section2 .item .item-row > div {
  width: 16%;
  font-size: 1vw;
  padding-top: 1.875vw;
  padding-bottom: 1.875vw;
}
.ny6-section2 .item .item-row > .item-col0 {
  width: 4%;
}
.ny6-section2 .item .content {
  background-color: #f8f8f8;
  padding: 3.125vw 3.75vw;
  font-size: 1vw;
  color: #000;
  line-height: 2;
  overflow: hidden;
  display: none;
}
.ny6-section2 .item .head {
  width: 100%;
  font-size: 1.625vw;
  color: #000;
  padding-bottom: 1.25vw;
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  line-height: 1;
}
.ny6-section2 .item .desc h3 {
  font-size: 1.375vw;
  color: #000;
  line-height: 1.1;
  margin-top: 2.5vw;
  font-weight: 600;
}
.ny6-section2 .item .btn {
  width: 11.25vw;
  height: 3vw;
  background-color: #ca1e1e;
  border-radius: 0.375vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1vw;
  line-height: 1.1;
  margin-top: 2.5vw;
}
@media screen and (min-width: 1600px) {
  .ny6-section2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny6-section2 form {
    margin-bottom: 65px;
  }
  .ny6-section2 form .layui-form-select {
    width: 200px;
  }
  .ny6-section2 form .layui-textarea:focus {
    box-shadow: 0 0 10px -5px #193190 !important;
  }
  .ny6-section2 form .layui-form-select dl {
    top: 60px;
    font-size: 16px;
  }
  .ny6-section2 form .layui-input {
    height: 58px;
    line-height: 58px;
    border-radius: 6px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny6-section2 form .search {
    width: 320px;
  }
  .ny6-section2 form button {
    width: 110px;
    border-radius: 6px;
  }
  .ny6-section2 form button:before {
    font-size: 16px;
  }
  .ny6-section2 form .form-item {
    margin-right: 20px;
  }
  .ny6-section2 .item:nth-child(1) {
    border-top: 6px solid #193190;
  }
  .ny6-section2 .item:nth-child(1) .item-row > div {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 22px;
  }
  .ny6-section2 .item .item-row > div {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ny6-section2 .item .content {
    padding: 50px 60px;
    font-size: 16px;
  }
  .ny6-section2 .item .head {
    font-size: 26px;
    padding-bottom: 20px;
  }
  .ny6-section2 .item .desc h3 {
    font-size: 22px;
    margin-top: 40px;
  }
  .ny6-section2 .item .btn {
    width: 180px;
    height: 48px;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny6-section2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny6-section2 form {
    margin-bottom: 33px;
    display: block;
  }
  .ny6-section2 form .layui-form-select {
    width: 100%;
  }
  .ny6-section2 form .layui-textarea:focus {
    box-shadow: 0 0 10px -5px #193190 !important;
  }
  .ny6-section2 form .layui-form-select dl {
    top: 40px;
    font-size: 16px;
  }
  .ny6-section2 form .layui-input {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny6-section2 form .search {
    width: 100%;
  }
  .ny6-section2 form button {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    margin-right: auto;
    margin-left: auto;
  }
  .ny6-section2 form button:before {
    font-size: 16px;
  }
  .ny6-section2 form .form-item {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .ny6-section2 .itembox {
    overflow: auto;
  }
  .ny6-section2 .item {
    width: 200%;
  }
  .ny6-section2 .item:nth-child(1) {
    border-top: 6px solid #193190;
  }
  .ny6-section2 .item:nth-child(1) .item-row > div {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }
  .ny6-section2 .item .item-row > div {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ny6-section2 .item .item-row > .item-col0 {
    margin-right: 20px;
  }
  .ny6-section2 .item .content {
    padding: 30px 20px;
    font-size: 14px;
  }
  .ny6-section2 .item .head {
    font-size: 16px;
    padding-bottom: 14px;
    font-weight: bold;
  }
  .ny6-section2 .item .desc h3 {
    font-size: 14px;
    margin-top: 20px;
  }
  .ny6-section2 .item .btn {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 20px;
  }
}
/* ==================== 内页6 - 板块二 End ==================== */
/* ==================== 内页6 - 板块三 Start ==================== */
/* ==================== 内页6 - 板块三 End ==================== */
/* ==================== 内页6 - 板块四 Start ==================== */
/* ==================== 内页6 - 板块四 End ==================== */
/* ==================== 内页6 - 板块五 Start ==================== */
/* ==================== 内页6 - 板块五 End ==================== */
/* ==================== 内页6 - 板块六 Start ==================== */
/* ==================== 内页6 - 板块六 End ==================== */
/* ==================== 内页6 - 板块七 Start ==================== */
/* ==================== 内页6 - 板块七 End ==================== */
/* ==================== 内页6 - 板块八 Start ==================== */
/* ==================== 内页6 - 板块八 End ==================== */
/* ==================== 内页7 - 板块一 Start ==================== */
.ny7-section1 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 42.8125vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ny7-section1 .mxw-box {
  width: 100%;
  max-width: 72.917vw;
}
.ny7-section1 .body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ny7-section1 .itembox {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 23.958vw;
  margin-left: 0;
  margin-right: auto;
}
.ny7-section1 .item {
  width: 50%;
  margin-top: 5.208vw;
}
.ny7-section1 .item .top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
}
.ny7-section1 .item .top .text1 {
  font-size: 3.333vw;
  line-height: 1;
  font-weight: bold;
  margin-right: 0.521vw;
}
.ny7-section1 .item .top .text2 {
  font-size: 0.938vw;
}
.ny7-section1 .item .bottom {
  margin-top: 1.042vw;
  font-size: 0.938vw;
  color: #fff;
  text-align: left;
}
.ny7-section1 .right-body {
  overflow: hidden;
  width: 41.146vw;
  height: 41.146vw;
  flex-shrink: 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -3.646vw;
}
.ny7-section1 .earth {
  width: 70%;
  height: 70%;
  position: relative;
  overflow: hidden;
}
.ny7-section1 .load-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border-radius: 100%;
  border: 1px dashed rgba(112, 112, 112, 0.2);
  background-color: #e3e7f1;
  transition: all 1s;
}
.ny7-section1 .load-el.hide {
  opacity: 0;
  visibility: hidden;
}
.ny7-section1 .load-el .common-model-load {
  padding-top: 0;
}
.ny7-section1 .load-el .common-model-load .load-progress {
  background-color: #000;
}
.ny7-section1 .load-el .common-model-load .load-text {
  color: #000;
}
.ny7-section1 #labels {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  color: white;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ny7-section1 #labels > div {
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  user-select: none;
  pointer-events: initial;
  transition-property: visibility, opacity;
  transition-duration: 0.4s;
  line-height: 1;
  font-size: 0.833vw;
}
.ny7-section1 #labels > div.show {
  opacity: 1;
  visibility: visible;
}
.ny7-section1 #labels > div.hide {
  opacity: 0;
  visibility: hidden;
}
.ny7-section1 #labels .text {
  text-align: center;
  font-size: 0.833vw;
  color: #193190;
  border-radius: 0.208vw;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 4em;
  text-align: right;
  transform: translateY(-50%);
}
.ny7-section1 #labels .icon {
  background: url(../images/ny7/img005@28x28.png) no-repeat center;
  background-size: 100%;
  width: 0.729vw;
  height: 0.729vw;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  font-size: 0.833vw;
}
.ny7-section1 #labels .mark6 .text {
  right: auto;
  left: 100%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .ny7-section1 {
    padding-top: 40px;
    padding-bottom: 20px;
    height: auto;
    background-position-x: left;
  }
  .ny7-section1 .body {
    display: block;
  }
  .ny7-section1 .mxw-box {
    max-width: 100%;
  }
  .ny7-section1 .itembox {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
  .ny7-section1 .item {
    width: 50%;
    margin-top: 30px;
  }
  .ny7-section1 .item .top {
    justify-content: center;
  }
  .ny7-section1 .item .top .text1 {
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    margin-right: 10.003px;
  }
  .ny7-section1 .item .top .text2 {
    font-size: 14px;
  }
  .ny7-section1 .item .bottom {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
  }
  .ny7-section1 .right-body {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
  .ny7-section1 #labels .text {
    font-size: 12px;
    margin-bottom: 4px;
    border-radius: 4px;
  }
  .ny7-section1 #labels .icon {
    width: 14px;
    height: 21px;
  }
}
/* ==================== 内页7 - 板块一 End ==================== */
/* ==================== 内页7 - 板块二 Start ==================== */
.ny7-section2 {
  background-color: #ffffff;
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
.ny7-section2 .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #f8f8f8;
  padding: 50px 60px;
  border-radius: 10px;
  padding-right: 140px;
}
.ny7-section2 .top .image {
  width: 630px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 50px;
}
.ny7-section2 .top .right .text1 {
  font-size: 40px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 50px;
}
.ny7-section2 .top .right .text2 {
  font-size: 26px;
  color: #173993;
  line-height: 1.1;
}
.ny7-section2 .top .right .text3 {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-top: 30px;
}
.ny7-section2 .itembox {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.ny7-section2 .item {
  padding: 80px;
  background-color: #f8f8f8;
  border-radius: 10px;
  width: 49%;
}
.ny7-section2 .item .text1 {
  font-size: 46px;
  color: #000;
  opacity: 0.2;
  line-height: 1;
}
.ny7-section2 .item .text2 {
  margin-top: 10px;
  font-size: 26px;
  color: #173993;
  line-height: 1.1;
}
.ny7-section2 .item .text3 {
  margin-top: 80px;
  font-size: 18px;
  line-height: 1.4;
  color: #000;
}
@media screen and (min-width: 1600px) {
  .ny7-section2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny7-section2 .top {
    padding: 50px 60px;
    border-radius: 10px;
    padding-right: 140px;
  }
  .ny7-section2 .top .image {
    width: 630px;
    border-radius: 10px;
    margin-right: 50px;
  }
  .ny7-section2 .top .right .text1 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .ny7-section2 .top .right .text2 {
    font-size: 26px;
  }
  .ny7-section2 .top .right .text3 {
    font-size: 16px;
    margin-top: 30px;
  }
  .ny7-section2 .itembox {
    margin-top: 30px;
  }
  .ny7-section2 .item {
    padding: 80px;
    border-radius: 10px;
  }
  .ny7-section2 .item .text1 {
    font-size: 46px;
  }
  .ny7-section2 .item .text2 {
    margin-top: 10px;
    font-size: 26px;
  }
  .ny7-section2 .item .text3 {
    margin-top: 80px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .ny7-section2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny7-section2 .top {
    padding: 20px;
    border-radius: 4px;
    display: block;
  }
  .ny7-section2 .top .image {
    width: 100%;
    border-radius: 4px;
    margin-right: 0;
  }
  .ny7-section2 .top .right {
    margin-top: 40px;
  }
  .ny7-section2 .top .right .text1 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .ny7-section2 .top .right .text2 {
    font-size: 20px;
  }
  .ny7-section2 .top .right .text3 {
    font-size: 14px;
    margin-top: 30px;
  }
  .ny7-section2 .itembox {
    margin-top: 20px;
    display: block;
  }
  .ny7-section2 .item {
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
  }
  .ny7-section2 .item .text1 {
    font-size: 23px;
  }
  .ny7-section2 .item .text2 {
    margin-top: 10px;
    font-size: 16px;
  }
  .ny7-section2 .item .text3 {
    margin-top: 40px;
    font-size: 14px;
  }
}
/* ==================== 内页7 - 板块二 End ==================== */
/* ==================== 内页7 - 板块三 Start ==================== */
.ny7-section3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 120px;
}
.ny7-section3 .head {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}
.ny7-section3 .head .text1 {
  font-size: 40px;
  line-height: 1.1;
}
.ny7-section3 .head .text2 {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.2;
}
.ny7-section3 form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.ny7-section3 form .form-item {
  width: 49%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}
.ny7-section3 form .form-item:nth-child(2) ~ .form-item {
  margin-top: 20px;
}
.ny7-section3 form .form-item .label {
  font-size: 16px;
  color: #999999;
  white-space: nowrap;
}
.ny7-section3 form .form-item .label span {
  color: #ca1e1e;
}
.ny7-section3 form .form-item .layui-input {
  box-shadow: none !important;
  border: 0 !important;
}
.ny7-section3 form .form-item-textarea {
  display: block;
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
.ny7-section3 form .form-item-textarea textarea {
  box-shadow: none !important;
  border: 0 !important;
  padding: 0;
  margin-top: 20px;
  resize: none;
}
.ny7-section3 form button {
  width: 220px;
  height: 58px;
  background-color: #193190;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (min-width: 1600px) {
  .ny7-section3 {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .ny7-section3 .head {
    margin-bottom: 60px;
  }
  .ny7-section3 .head .text1 {
    font-size: 40px;
  }
  .ny7-section3 .head .text2 {
    margin-top: 30px;
    font-size: 18px;
  }
  .ny7-section3 form .form-item {
    border-radius: 4px;
    height: 58px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }
  .ny7-section3 form .form-item:nth-child(2) ~ .form-item {
    margin-top: 20px;
  }
  .ny7-section3 form .form-item .label {
    font-size: 16px;
  }
  .ny7-section3 form .form-item-textarea {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ny7-section3 form .form-item-textarea textarea {
    margin-top: 20px;
  }
  .ny7-section3 form button {
    width: 220px;
    height: 58px;
    border-radius: 3px;
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ny7-section3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny7-section3 .head {
    margin-bottom: 40px;
  }
  .ny7-section3 .head .text1 {
    font-size: 24px;
  }
  .ny7-section3 .head .text2 {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.4;
  }
  .ny7-section3 form {
    display: block;
  }
  .ny7-section3 form .form-item {
    width: 100%;
    border-radius: 4px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    margin-top: 10px;
  }
  .ny7-section3 form .form-item:nth-child(2) ~ .form-item {
    margin-top: 10px;
  }
  .ny7-section3 form .form-item .label {
    font-size: 14px;
  }
  .ny7-section3 form .form-item-textarea {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
    height: auto;
  }
  .ny7-section3 form .form-item-textarea textarea {
    margin-top: 10px;
  }
  .ny7-section3 form button {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    font-size: 14px;
    margin-top: 20px;
  }
}
/* ==================== 内页7 - 板块三 End ==================== */
/* ==================== 内页7 - 板块四 Start ==================== */
/* ==================== 内页7 - 板块四 End ==================== */
/* ==================== 内页7 - 板块五 Start ==================== */
/* ==================== 内页7 - 板块五 End ==================== */
/* ==================== 内页7 - 板块六 Start ==================== */
/* ==================== 内页7 - 板块六 End ==================== */
/* ==================== 内页7 - 板块七 Start ==================== */
/* ==================== 内页7 - 板块七 End ==================== */
/* ==================== 内页7 - 板块八 Start ==================== */
/* ==================== 内页7 - 板块八 End ==================== */
/* ==================== 内页8 - 板块一 Start ==================== */
.ny8-section1 {
  padding-top: 6.25vw;
  padding-bottom: 6.25vw;
}
.ny8-section1 .top {
  margin-bottom: 5.208vw;
}
.ny8-section1 .top .text1 {
  font-size: 1.25vw;
  color: #000;
  line-height: 1.8;
  margin-bottom: 2.604vw;
}
.ny8-section1 .top .text2 {
  border-left: 0.313vw solid #193190;
  background-color: #f8f8f8;
  padding: 2.083vw;
  line-height: 1.8;
  color: #193190;
  font-size: 1.25vw;
}
.ny8-section1 .head {
  margin-bottom: 3.125vw;
}
.ny8-section1 .head .text1 {
  font-size: 1.875vw;
  color: #000;
  line-height: 1.1;
}
.ny8-section1 .head .text2 {
  margin-top: 1.042vw;
  line-height: 1.1;
  font-size: 1.25vw;
}
.ny8-section1 .body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.ny8-section1 .body .left {
  width: 27.604vw;
}
.ny8-section1 .body .left .text3 {
  font-size: 0.833vw;
  color: #666666;
  line-height: 1.8;
}
.ny8-section1 .body .layui-form {
  margin-top: 3.125vw;
}
.ny8-section1 .body .right {
  width: 40.104vw;
  flex-shrink: 0;
  border-radius: 0.521vw;
  overflow: hidden;
}
.ny8-section1 form .form-item {
  margin-bottom: 1.042vw;
}
.ny8-section1 form .layui-form-select dl {
  font-size: 0.833vw;
  top: 3.125vw;
}
.ny8-section1 form .layui-form-select dl dd.layui-this {
  color: #193190;
}
.ny8-section1 form .layui-input {
  height: 3.021vw;
  line-height: 3.021vw;
  font-size: 0.833vw;
  background-color: #ffffff;
  border-radius: 0.156vw;
  border: solid 1px rgba(204, 204, 204, 0.5);
  padding-left: 1.042vw;
  padding-right: 1.042vw;
}
.ny8-section1 form .layui-input:focus {
  box-shadow: 0 0 0.521vw -0.26vw #193190 !important;
  border-color: #193190 !important;
}
.ny8-section1 form .layui-input::-webkit-input-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form .layui-input::-moz-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form .layui-input:-moz-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form .layui-input:-ms-input-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form textarea {
  display: block;
  width: 100%;
  height: 7.813vw;
  background-color: #fff;
  border-radius: 0.156vw;
  border: solid 1px rgba(204, 204, 204, 0.5);
  padding: 0.781vw;
  resize: none;
  font-size: 0.833vw;
}
.ny8-section1 form textarea::-webkit-input-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form textarea::-moz-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form textarea:-moz-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form textarea:-ms-input-placeholder {
  color: #c0c5ce;
}
.ny8-section1 form button {
  width: 100%;
  height: 3.021vw;
  line-height: 3.021vw;
  background-color: #193190;
  border-radius: 0.156vw;
  color: #fff;
  font-size: 0.833vw;
}
.ny8-section1 form .tip {
  margin-top: 1.042vw;
  color: #999999;
  font-size: 0.833vw;
}
@media screen and (min-width: 1600px) {
  .ny8-section1 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny8-section1 .top {
    margin-bottom: 100px;
  }
  .ny8-section1 .top .text1 {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .ny8-section1 .top .text2 {
    border-left: 6px solid #193190;
    padding: 40px;
    font-size: 24px;
  }
  .ny8-section1 .head {
    margin-bottom: 60px;
  }
  .ny8-section1 .head .text1 {
    font-size: 36px;
  }
  .ny8-section1 .head .text2 {
    margin-top: 20px;
    font-size: 24px;
  }
  .ny8-section1 .body .left {
    width: 530px;
  }
  .ny8-section1 .body .left .text3 {
    font-size: 16px;
  }
  .ny8-section1 .body .layui-form {
    margin-top: 60px;
  }
  .ny8-section1 .body .right {
    width: 770px;
    border-radius: 10px;
  }
  .ny8-section1 form .form-item {
    margin-bottom: 20px;
  }
  .ny8-section1 form .layui-form-select dl {
    font-size: 16px;
    top: 60px;
  }
  .ny8-section1 form .layui-input {
    height: 58px;
    line-height: 58px;
    font-size: 16px;
    border-radius: 3px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny8-section1 form .layui-input:focus {
    box-shadow: 0 0 10px -5px #193190 !important;
  }
  .ny8-section1 form textarea {
    height: 150px;
    border-radius: 3px;
    padding: 15px;
    font-size: 16px;
  }
  .ny8-section1 form button {
    height: 58px;
    line-height: 58px;
    border-radius: 3px;
    font-size: 16px;
  }
  .ny8-section1 form .tip {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ny8-section1 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny8-section1 .top {
    margin-bottom: 40px;
  }
  .ny8-section1 .top .text1 {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .ny8-section1 .top .text2 {
    border-left: 3px solid #193190;
    padding: 20px 20px;
    font-size: 14px;
  }
  .ny8-section1 .head {
    margin-bottom: 30px;
  }
  .ny8-section1 .head .text1 {
    font-size: 18px;
  }
  .ny8-section1 .head .text2 {
    margin-top: 10px;
    font-size: 12px;
  }
  .ny8-section1 .body {
    display: block;
  }
  .ny8-section1 .body .left {
    width: 100%;
  }
  .ny8-section1 .body .left .text3 {
    font-size: 14px;
  }
  .ny8-section1 .body .layui-form {
    margin-top: 60px;
  }
  .ny8-section1 .body .right {
    width: 100%;
    margin-top: 30px;
    border-radius: 4px;
  }
  .ny8-section1 .body .right img {
    width: 100%;
  }
  .ny8-section1 form .form-item {
    margin-bottom: 10px;
  }
  .ny8-section1 form .layui-form-select dl {
    font-size: 14px;
    top: 40px;
  }
  .ny8-section1 form .layui-input {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 3px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny8-section1 form .layui-input:focus {
    box-shadow: 0 0 10px -5px #193190 !important;
  }
  .ny8-section1 form textarea {
    height: 100px;
    border-radius: 3px;
    padding: 8px;
    font-size: 14px;
  }
  .ny8-section1 form button {
    height: 40px;
    line-height: 40px;
    border-radius: 3px;
    font-size: 14px;
  }
  .ny8-section1 form .tip {
    margin-top: 20px;
    font-size: 14px;
  }
}
/* ==================== 内页8 - 板块一 End ==================== */
/* ==================== 内页8 - 板块二 Start ==================== */
/* ==================== 内页8 - 板块二 End ==================== */
/* ==================== 内页8 - 板块三 Start ==================== */
/* ==================== 内页8 - 板块三 End ==================== */
/* ==================== 内页8 - 板块四 Start ==================== */
/* ==================== 内页8 - 板块四 End ==================== */
/* ==================== 内页8 - 板块五 Start ==================== */
/* ==================== 内页8 - 板块五 End ==================== */
/* ==================== 内页8 - 板块六 Start ==================== */
/* ==================== 内页8 - 板块六 End ==================== */
/* ==================== 内页8 - 板块七 Start ==================== */
/* ==================== 内页8 - 板块七 End ==================== */
/* ==================== 内页8 - 板块八 Start ==================== */
/* ==================== 内页8 - 板块八 End ==================== */
/* ==================== 内页9 - 板块一 Start ==================== */
.ny9-section1 .common-aside {
  margin-right: 1.875vw;
}
.ny9-section1 .content {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.ny9-section1 .body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny9-section1 .right {
  min-width: 0;
  flex-grow: 1;
}
.ny9-section1 form {
  width: 31.875vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3.75vw;
}
.ny9-section1 form .left {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  flex-grow: 1;
}
.ny9-section1 form .left > .layui-input {
  height: 3.75vw;
  line-height: 3.75vw;
  font-size: 1vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
.ny9-section1 form .left > .layui-input:focus {
  border-color: #193190 !important;
  box-shadow: none !important;
}
.ny9-section1 form .layui-select {
  width: 6.25vw;
  height: 3.75vw;
  line-height: 3.75vw;
  flex-shrink: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.ny9-section1 form .layui-select .layui-select-title {
  height: 100%;
}
.ny9-section1 form .layui-select .layui-form-select {
  height: 100%;
  line-height: 3.625vw;
}
.ny9-section1 form .layui-select .layui-form-select dl {
  top: 3.75vw;
  font-size: 0.875vw;
}
.ny9-section1 form .layui-select .layui-form-select dl dd.layui-this {
  color: #193190;
}
.ny9-section1 form .layui-select .layui-input {
  border: 0;
  padding: 0;
  height: 100%;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
  background-color: #f8f8f8;
  font-size: 0.875vw;
  color: #999;
}
.ny9-section1 form .layui-select .layui-input:focus {
  box-shadow: none;
}
.ny9-section1 form button {
  width: 6.875vw;
  height: 3.75vw;
  background-color: #193190;
  color: #fff;
  flex-shrink: 0;
  border-radius: 0 0.375vw 0.375vw 0;
}
.ny9-section1 .itembox {
  border-radius: 0.625vw;
  overflow: hidden;
}
.ny9-section1 .item:not(:first-child) {
  background-color: #fff;
}
.ny9-section1 .item.active:not(:first-child) {
  background-color: #f8f8f8;
}
.ny9-section1 .item.active:not(:first-child) .item-row {
  color: #193190;
  border-bottom-color: transparent;
}
.ny9-section1 .item.active:not(:first-child) .item-row > .item-col5 .download-btn {
  background-color: #193190;
  color: #fff;
  border-color: #193190;
}
.ny9-section1 .item.active:not(:first-child) .content2 {
  display: block;
}
.ny9-section1 .item:nth-child(1) .item-row {
  background-color: #2b2b2b;
}
.ny9-section1 .item:nth-child(1) .item-row > div {
  padding: 1.875vw 0.625vw;
  color: #fff;
  font-size: 1.125vw;
  line-height: 1.1;
}
.ny9-section1 .item:nth-child(1) .item-row .item-col1 {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}
.ny9-section1 .item:nth-child(1) .item-row .item-col1:before {
  display: none;
}
.ny9-section1 .item .item-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
  color: #666666;
  font-size: 0.875vw;
  cursor: pointer;
  padding-right: 2.5vw;
}
.ny9-section1 .item .item-row > div {
  padding: 1.25vw;
}
.ny9-section1 .item .item-row > .item-col1 {
  width: 51%;
  text-align: left;
}
.ny9-section1 .item .item-row > .item-col1:before {
  content: "\e60d";
  font-family: "iconfont";
  line-height: 1.1;
  font-size: 0.875vw;
  margin-right: 0.625vw;
}
.ny9-section1 .item .item-row > .item-col2 {
  width: 16%;
}
.ny9-section1 .item .item-row > .item-col3 {
  width: 10%;
}
.ny9-section1 .item .item-row > .item-col4 {
  width: 18%;
  text-align: center;
}
.ny9-section1 .item .item-row > .item-col5 {
  width: 5%;
  padding-top: 0;
  padding-bottom: 0;
}
.ny9-section1 .item .item-row > .item-col5 .download-btn {
  width: 2.125vw;
  height: 2.125vw;
  border-radius: 100%;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.875vw;
}
.ny9-section1 .item .content2 {
  display: none;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  padding-bottom: 1.25vw;
}
.ny9-section1 .item .content2 table {
  background-color: #f0f0f0;
  width: 100%;
  font-size: 0.875vw;
  line-height: 1.12;
}
.ny9-section1 .item .content2 table tr:last-child td {
  border-bottom: 0 !important;
}
.ny9-section1 .item .content2 table tr td {
  color: #000;
  padding: 0.938vw 1.25vw;
}
.ny9-section1 .item .content2 table tr td:first-child {
  text-align: center;
  border-right: 1px solid rgba(204, 204, 204, 0.5);
  background-color: #ececec;
}
.ny9-section1 .item .content2 table tr td:first-child ~ td {
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.ny9-section1 .item .content2 .btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.25vw;
}
.ny9-section1 .item .content2 .show-btn,
.ny9-section1 .item .content2 .download-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.875vw;
  color: #000;
  line-height: 1;
  transition: all 0.4s;
}
.ny9-section1 .item .content2 .show-btn:hover,
.ny9-section1 .item .content2 .download-btn:hover {
  color: #193190;
}
.ny9-section1 .item .content2 .show-btn::before,
.ny9-section1 .item .content2 .download-btn::before {
  display: block;
  flex-shrink: 0;
  margin-right: 0.313vw;
  font-family: "iconfont";
}
.ny9-section1 .item .content2 .show-btn {
  margin-right: 1vw;
}
.ny9-section1 .item .content2 .show-btn:before {
  content: "\e601";
}
.ny9-section1 .item .content2 .download-btn:before {
  content: "\e60b";
}
@media screen and (min-width: 1600px) {
  .ny9-section1 .common-aside {
    margin-right: 30px;
  }
  .ny9-section1 .content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny9-section1 form {
    width: 510px;
    margin-bottom: 60px;
  }
  .ny9-section1 form .left > .layui-input {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny9-section1 form .layui-select {
    width: 100px;
    height: 60px;
    line-height: 60px;
  }
  .ny9-section1 form .layui-select .layui-form-select {
    line-height: 58px;
  }
  .ny9-section1 form .layui-select .layui-form-select dl {
    top: 60px;
    font-size: 14px;
  }
  .ny9-section1 form .layui-select .layui-input {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .ny9-section1 form button {
    width: 110px;
    height: 60px;
    border-radius: 0 6px 6px 0;
  }
  .ny9-section1 .itembox {
    border-radius: 10px;
  }
  .ny9-section1 .item:nth-child(1) .item-row > div {
    padding: 30px 10px;
    font-size: 18px;
  }
  .ny9-section1 .item:nth-child(1) .item-row .item-col1 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .ny9-section1 .item .item-row {
    font-size: 14px;
    padding-right: 40px;
  }
  .ny9-section1 .item .item-row > div {
    padding: 20px;
  }
  .ny9-section1 .item .item-row > .item-col1:before {
    font-size: 14px;
    margin-right: 10px;
  }
  .ny9-section1 .item .item-row > .item-col5 .download-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .ny9-section1 .item .content2 {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 20px;
  }
  .ny9-section1 .item .content2 table {
    font-size: 14px;
  }
  .ny9-section1 .item .content2 table tr td {
    padding: 15px 20px;
  }
  .ny9-section1 .item .content2 .btn-group {
    padding-right: 20px;
  }
  .ny9-section1 .item .content2 .show-btn,
  .ny9-section1 .item .content2 .download-btn {
    font-size: 14px;
  }
  .ny9-section1 .item .content2 .show-btn::before,
  .ny9-section1 .item .content2 .download-btn::before {
    margin-right: 5px;
  }
  .ny9-section1 .item .content2 .show-btn {
    margin-right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ny9-section1 .common-aside {
    position: static;
    margin-right: 0;
  }
  .ny9-section1 .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ny9-section1 .body {
    display: block;
  }
  .ny9-section1 .right {
    width: 100%;
    margin-top: 30px;
  }
  .ny9-section1 form {
    width: 100%;
    margin-bottom: 30px;
    display: block;
  }
  .ny9-section1 form .left > .layui-input {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny9-section1 form .layui-select {
    width: 80px;
    height: 40px;
    line-height: 40px;
  }
  .ny9-section1 form .layui-select .layui-form-select {
    line-height: 29px;
  }
  .ny9-section1 form .layui-select .layui-form-select dl {
    top: 40px;
    font-size: 14px;
  }
  .ny9-section1 form .layui-select .layui-input {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
  .ny9-section1 form button {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    margin-top: 10px;
  }
  .ny9-section1 .itembox {
    border-radius: 4px;
    overflow: auto;
  }
  .ny9-section1 .item {
    width: 200%;
  }
  .ny9-section1 .item:nth-child(1) .item-row > div {
    padding: 15px 10px;
    font-size: 14px;
  }
  .ny9-section1 .item:nth-child(1) .item-row .item-col1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny9-section1 .item .item-row {
    font-size: 14px;
    padding-right: 10px;
  }
  .ny9-section1 .item .item-row > div {
    padding: 15px 10px;
    flex-shrink: 0;
  }
  .ny9-section1 .item .item-row > .item-col1 {
    width: 40%;
  }
  .ny9-section1 .item .item-row > .item-col1:before {
    font-size: 14px;
    margin-right: 10px;
  }
  .ny9-section1 .item .item-row > .item-col2 {
    width: 21%;
  }
  .ny9-section1 .item .item-row > .item-col4 {
    width: 24%;
  }
  .ny9-section1 .item .item-row > .item-col5 {
    padding-left: 0;
    padding-right: 0;
  }
  .ny9-section1 .item .item-row > .item-col5 .download-btn {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }
  .ny9-section1 .item .content2 {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
  .ny9-section1 .item .content2 table {
    font-size: 14px;
    line-height: 1.6;
  }
  .ny9-section1 .item .content2 table tr td {
    padding: 15px 20px;
  }
  .ny9-section1 .item .content2 .btn-group {
    padding-right: 20px;
  }
  .ny9-section1 .item .content2 .show-btn,
  .ny9-section1 .item .content2 .download-btn {
    font-size: 14px;
    white-space: nowrap;
  }
  .ny9-section1 .item .content2 .show-btn::before,
  .ny9-section1 .item .content2 .download-btn::before {
    margin-right: 5px;
  }
  .ny9-section1 .item .content2 .show-btn {
    margin-right: 8px;
  }
}
/* ==================== 内页9 - 板块一 End ==================== */
/* ==================== 内页9 - 板块二 Start ==================== */
/* ==================== 内页9 - 板块二 End ==================== */
/* ==================== 内页9 - 板块三 Start ==================== */
/* ==================== 内页9 - 板块三 End ==================== */
/* ==================== 内页9 - 板块四 Start ==================== */
/* ==================== 内页9 - 板块四 End ==================== */
/* ==================== 内页9 - 板块五 Start ==================== */
/* ==================== 内页9 - 板块五 End ==================== */
/* ==================== 内页9 - 板块六 Start ==================== */
/* ==================== 内页9 - 板块六 End ==================== */
/* ==================== 内页9 - 板块七 Start ==================== */
/* ==================== 内页9 - 板块七 End ==================== */
/* ==================== 内页9 - 板块八 Start ==================== */
/* ==================== 内页9 - 板块八 End ==================== */
/* ==================== 内页10 - 板块一 Start ==================== */
.ny10-section1 .common-aside {
  margin-right: 8.125vw;
}
.ny10-section1 .content {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.ny10-section1 .body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ny10-section1 .right {
  min-width: 0;
  flex-grow: 1;
  padding-top: 2.5vw;
}
.ny10-section1 form {
  width: 31.875vw;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3.75vw;
}
.ny10-section1 form .left {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  min-width: 0;
  flex-grow: 1;
}
.ny10-section1 form .left > .layui-input {
  height: 3.75vw;
  line-height: 3.75vw;
  font-size: 1vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
.ny10-section1 form .left > .layui-input:focus {
  border-color: #193190 !important;
  box-shadow: none !important;
}
.ny10-section1 form .layui-select {
  width: 7.5vw;
  height: 3.75vw;
  line-height: 3.75vw;
  flex-shrink: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.ny10-section1 form .layui-select .layui-select-title {
  height: 100%;
}
.ny10-section1 form .layui-select .layui-form-select {
  height: 100%;
  line-height: 3.625vw;
}
.ny10-section1 form .layui-select .layui-form-select dl {
  top: 3.75vw;
  font-size: 0.875vw;
}
.ny10-section1 form .layui-select .layui-form-select dl dd.layui-this {
  color: #193190;
}
.ny10-section1 form .layui-select .layui-input {
  border: 0;
  padding: 0;
  height: 100%;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
  background-color: #f8f8f8;
  font-size: 0.875vw;
  color: #999;
}
.ny10-section1 form .layui-select .layui-input:focus {
  box-shadow: none;
}
.ny10-section1 form button {
  width: 6.875vw;
  height: 3.75vw;
  background-color: #193190;
  color: #fff;
  flex-shrink: 0;
  border-radius: 0 0.375vw 0.375vw 0;
}
.ny10-section1 .item {
  padding-top: 3.125vw;
  padding-bottom: 3.125vw;
  border-top: 1px solid #e5e5e5;
}
.ny10-section1 .item.active .title {
  font-size: 1.375vw;
  color: #193190;
}
.ny10-section1 .item.active .title:after {
  content: "\e615";
}
.ny10-section1 .item .title {
  position: relative;
  font-size: 1.125vw;
  color: #000;
  line-height: 1.4;
  transition: all 0.4s;
  cursor: pointer;
  padding-right: 1.875vw;
}
.ny10-section1 .item .title:after {
  content: "\e619";
  font-size: 1.875vw;
  line-height: 1;
  font-family: "iconfont";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #ccc;
}
.ny10-section1 .item .desc {
  font-size: 1vw;
  color: #666666;
  line-height: 1.6;
  margin-top: 2.5vw;
  display: none;
}
@media screen and (min-width: 1600px) {
  .ny10-section1 .common-aside {
    margin-right: 130px;
  }
  .ny10-section1 .content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny10-section1 .right {
    padding-top: 40px;
  }
  .ny10-section1 form {
    width: 510px;
    margin-bottom: 60px;
  }
  .ny10-section1 form .left > .layui-input {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ny10-section1 form .layui-select {
    width: 120px;
    height: 60px;
    line-height: 60px;
  }
  .ny10-section1 form .layui-select .layui-form-select {
    line-height: 58px;
  }
  .ny10-section1 form .layui-select .layui-form-select dl {
    top: 60px;
    font-size: 14px;
  }
  .ny10-section1 form .layui-select .layui-input {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }
  .ny10-section1 form button {
    width: 110px;
    height: 60px;
    border-radius: 0 6px 6px 0;
  }
  .ny10-section1 .item {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ny10-section1 .item.active .title {
    font-size: 22px;
  }
  .ny10-section1 .item .title {
    font-size: 18px;
    padding-right: 30px;
  }
  .ny10-section1 .item .title:after {
    font-size: 30px;
  }
  .ny10-section1 .item .desc {
    font-size: 16px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ny10-section1 .common-aside {
    position: static;
    margin-right: 0;
  }
  .ny10-section1 .content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ny10-section1 .body {
    display: block;
  }
  .ny10-section1 .right {
    width: 100%;
    margin-top: 30px;
  }
  .ny10-section1 form {
    width: 100%;
    margin-bottom: 30px;
    display: block;
  }
  .ny10-section1 form .left > .layui-input {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .ny10-section1 form .layui-select {
    width: 120px;
    height: 40px;
    line-height: 40px;
  }
  .ny10-section1 form .layui-select .layui-form-select {
    line-height: 29px;
  }
  .ny10-section1 form .layui-select .layui-form-select dl {
    top: 40px;
    font-size: 14px;
  }
  .ny10-section1 form .layui-select .layui-input {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }
  .ny10-section1 form button {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    margin-top: 10px;
  }
  .ny10-section1 .item {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .ny10-section1 .item.active .title {
    font-size: 16px;
  }
  .ny10-section1 .item .title {
    font-size: 14px;
    padding-right: 15px;
  }
  .ny10-section1 .item .title:after {
    font-size: 15px;
  }
  .ny10-section1 .item .desc {
    font-size: 14px;
    margin-top: 20px;
  }
}
/* ==================== 内页10 - 板块一 End ==================== */
/* ==================== 内页10 - 板块二 Start ==================== */
/* ==================== 内页10 - 板块二 End ==================== */
/* ==================== 内页10 - 板块三 Start ==================== */
/* ==================== 内页10 - 板块三 End ==================== */
/* ==================== 内页10 - 板块四 Start ==================== */
/* ==================== 内页10 - 板块四 End ==================== */
/* ==================== 内页10 - 板块五 Start ==================== */
/* ==================== 内页10 - 板块五 End ==================== */
/* ==================== 内页10 - 板块六 Start ==================== */
/* ==================== 内页10 - 板块六 End ==================== */
/* ==================== 内页10 - 板块七 Start ==================== */
/* ==================== 内页10 - 板块七 End ==================== */
/* ==================== 内页10 - 板块八 Start ==================== */
/* ==================== 内页10 - 板块八 End ==================== */
/* ==================== 内页11 - 板块一 Start ==================== */
.ny11-section1 .content {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.ny11-section1 .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.875vw;
}
.ny11-section1 .item:nth-child(1) {
  margin-top: 0;
}
.ny11-section1 .item:nth-child(2n) .image {
  order: -2;
}
.ny11-section1 .item:nth-child(2n) .info {
  padding-left: 5.313vw;
}
.ny11-section1 .item .info {
  width: 49%;
}
.ny11-section1 .item .info .text1 {
  width: 31.875vw;
  margin-bottom: 2.5vw;
  font-size: 2.5vw;
  line-height: 1.2;
  position: relative;
}
.ny11-section1 .item .info .text1:after {
  content: "";
  display: block;
  width: 3.75vw;
  height: 0.313vw;
  background-color: #193190;
  margin-top: 1.25vw;
}
.ny11-section1 .item .info .text2 {
  width: 31.875vw;
  font-size: 1.125vw;
  color: #666666;
  line-height: 1.8;
  text-align: justify;
}
.ny11-section1 .item .image {
  width: 49%;
  border-radius: 0.625vw;
  overflow: hidden;
  flex-shrink: 0;
}
@media screen and (min-width: 1600px) {
  .ny11-section1 .content {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny11-section1 .item {
    margin-top: 30px;
  }
  .ny11-section1 .item:nth-child(2n) .info {
    padding-left: 85px;
  }
  .ny11-section1 .item .info .text1 {
    width: 510px;
    margin-bottom: 40px;
    font-size: 40px;
  }
  .ny11-section1 .item .info .text1:after {
    width: 60px;
    height: 5px;
    margin-top: 20px;
  }
  .ny11-section1 .item .info .text2 {
    width: 510px;
    font-size: 18px;
  }
  .ny11-section1 .item .image {
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .ny11-section1 .content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny11-section1 .item {
    display: block;
    margin-top: 80px;
  }
  .ny11-section1 .item:nth-child(2n) .info {
    padding-left: 0;
  }
  .ny11-section1 .item .info {
    width: 100%;
  }
  .ny11-section1 .item .info .text1 {
    width: 100%;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .ny11-section1 .item .info .text1:after {
    width: 60px;
    height: 3px;
    margin-top: 10px;
  }
  .ny11-section1 .item .info .text2 {
    width: 100%;
    font-size: 14px;
  }
  .ny11-section1 .item .image {
    width: 100%;
    border-radius: 6px;
    margin-top: 20px;
  }
}
/* ==================== 内页11 - 板块一 End ==================== */
/* ==================== 内页11 - 板块二 Start ==================== */
.ny11-section2 {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ny11-section2 .title {
  font-size: 2.5vw;
  color: #000;
  line-height: 1.1;
  margin-bottom: 3.75vw;
  text-align: center;
}
.ny11-section2 .layui-form {
  width: 66.875vw;
  margin-left: auto;
  margin-right: auto;
}
.ny11-section2 .row-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.ny11-section2 .form-item {
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 3.625vw;
  background-color: #f8f8f7;
  border-radius: 0.188vw;
  border: solid 1px #cccccc;
  padding-left: 1.375vw;
  padding-right: 1.375vw;
  font-size: 1vw;
}
.ny11-section2 .form-item:nth-child(3n-1) {
  margin-left: 2%;
  margin-right: 2%;
}
.ny11-section2 .form-item .label {
  font-size: 1vw;
  color: #999;
  line-height: 1.1;
  width: 5em;
  flex-shrink: 0;
}
.ny11-section2 .form-item .label span {
  color: #ca1e1e;
}
.ny11-section2 .form-item .layui-input {
  height: 3.5vw;
  line-height: 3.5vw;
  border: 0;
  background-color: transparent;
}
.ny11-section2 .form-item .layui-input:focus {
  border: 0 !important;
  box-shadow: none !important;
}
.ny11-section2 .form-textarea {
  align-items: flex-start;
  padding: 1.25vw;
  height: auto;
  width: 100%;
  margin: 0 !important;
  margin-top: 1.25vw !important;
}
.ny11-section2 .form-textarea textarea {
  height: 10vw;
  background-color: transparent;
  border-radius: 0.188vw;
  border: 0;
  padding: 0;
  resize: none;
}
.ny11-section2 .form-textarea textarea:focus {
  box-shadow: none;
}
.ny11-section2 button {
  display: block;
  margin-top: 1.25vw;
  width: 13.75vw;
  height: 3.625vw;
  background-color: #193190;
  border-radius: 0.188vw;
  line-height: 3.625vw;
  color: #fff;
  font-size: 1vw;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1600px) {
  .ny11-section2 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ny11-section2 .title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .ny11-section2 .layui-form {
    width: 1070px;
  }
  .ny11-section2 .form-item {
    height: 58px;
    border-radius: 3px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 16px;
  }
  .ny11-section2 .form-item .label {
    font-size: 16px;
  }
  .ny11-section2 .form-item .layui-input {
    height: 56px;
    line-height: 56px;
  }
  .ny11-section2 .form-textarea {
    padding: 20px;
    margin-top: 20px !important;
    height: auto;
  }
  .ny11-section2 .form-textarea textarea {
    height: 160px;
    border-radius: 3px;
  }
  .ny11-section2 button {
    margin-top: 20px;
    width: 220px;
    height: 58px;
    border-radius: 3px;
    line-height: 58px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .ny11-section2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ny11-section2 .title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .ny11-section2 .layui-form {
    width: 100%;
  }
  .ny11-section2 .row-3 {
    display: block;
  }
  .ny11-section2 .form-item {
    width: 100%;
    height: 40px;
    border-radius: 3px;
    padding-left: 11px;
    padding-right: 11px;
    font-size: 14px;
    margin-top: 20px;
  }
  .ny11-section2 .form-item:nth-child(3n-1) {
    margin-left: 0;
    margin-right: 0;
  }
  .ny11-section2 .form-item .label {
    font-size: 14px;
  }
  .ny11-section2 .form-item .layui-input {
    height: 28px;
    line-height: 28px;
  }
  .ny11-section2 .form-textarea {
    padding: 10px;
    margin-top: 20px !important;
    height: 200px;
  }
  .ny11-section2 .form-textarea textarea {
    height: 80px;
    border-radius: 3px;
  }
  .ny11-section2 button {
    margin-top: 20px;
    width: 100%;
    height: 40px;
    border-radius: 3px;
    line-height: 40px;
    font-size: 14px;
  }
}
/* ==================== 内页11 - 板块二 End ==================== */
/* ==================== 内页11 - 板块三 Start ==================== */
/* ==================== 内页11 - 板块三 End ==================== */
/* ==================== 内页11 - 板块四 Start ==================== */
/* ==================== 内页11 - 板块四 End ==================== */
/* ==================== 内页11 - 板块五 Start ==================== */
/* ==================== 内页11 - 板块五 End ==================== */
/* ==================== 内页11 - 板块六 Start ==================== */
/* ==================== 内页11 - 板块六 End ==================== */
/* ==================== 内页11 - 板块七 Start ==================== */
/* ==================== 内页11 - 板块七 End ==================== */
/* ==================== 内页11 - 板块八 Start ==================== */
/* ==================== 内页11 - 板块八 End ==================== */
/* ==================== 内页12 - 板块一 Start ==================== */
.ny12-section1 {
  background-color: #fff;
}
.ny12-section1 .top-head {
  background-color: #f8f8f8;
}
.ny12-section1 .breadcrumb {
  color: #999999;
}
.ny12-section1 .breadcrumb .mxw-box {
  position: relative;
}
.ny12-section1 .body {
  padding-top: 36px;
  padding-bottom: 60px;
}
.ny12-section1 .category {
  position: relative;
  background-color: #ffffff;
  border-radius: 6px;
  border: solid 1px rgba(204, 204, 204, 0.5);
  padding: 40px;
  margin-bottom: 34px;
}
.ny12-section1 .category.active .cate-itembox {
  height: auto;
}
.ny12-section1 .category.active .more-btn i {
  transform: rotateX(180deg);
  display: inline-block;
}
.ny12-section1 .more-btn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  border-radius: 0 0 6px 6px;
  border: solid 1px rgba(204, 204, 204, 0.5);
  padding: 7px 10px;
  line-height: 1.1;
  text-align: center;
  color: #193190;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s;
}
.ny12-section1 .more-btn:hover {
  background-color: #193190;
  color: #fff;
}
.ny12-section1 .cate-itembox {
  height: 220px;
  overflow: hidden;
}
.ny12-section1 .cate-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 40px;
}
.ny12-section1 .cate-item:last-child {
  margin-bottom: 0;
}
.ny12-section1 .cate-item:last-child .checkbox-group {
  border-bottom: 0;
}
.ny12-section1 .cate-item:last-child .checkbox-group .checkbox-item {
  border-bottom: 0;
  padding-bottom: 0;
}
.ny12-section1 .cate-item .name {
  font-size: 18px;
  line-height: 1.1;
  color: #000;
  margin-right: 20px;
  flex-shrink: 0;
}
.ny12-section1 .cate-item .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  border-bottom: 1px solid #e5e5e5;
  min-width: 0;
  flex-grow: 1;
}
.ny12-section1 .cate-item .checkbox-item {
  font-size: 16px;
  padding-bottom: 20px;
}
.ny12-section1 .cate-item .checkbox-item .layui-form-checked[lay-skin="primary"] > i {
  border-color: #193190 !important;
  background-color: #193190;
}
.ny12-section1 .cate-item .checkbox-item .layui-form-checkbox {
  font-size: inherit;
}
/* 修改字体 2025-3-10 修改 */
.ny12-section1 .cate-item .checkbox-item .layui-form-checkbox div {
  font-size: inherit;
  padding-right: 30px;
  color: #000;
  font-weight: bold;
}
/* ==================== 内页12 - 板块一 End ==================== */
/* ==================== 内页12 - 板块二 Start ==================== */
/* ==================== 内页12 - 板块二 End ==================== */
/* ==================== 内页12 - 板块三 Start ==================== */
/* ==================== 内页12 - 板块三 End ==================== */
/* ==================== 内页12 - 板块四 Start ==================== */
/* ==================== 内页12 - 板块四 End ==================== */
/* ==================== 内页12 - 板块五 Start ==================== */
/* ==================== 内页12 - 板块五 End ==================== */
/* ==================== 内页12 - 板块六 Start ==================== */
/* ==================== 内页12 - 板块六 End ==================== */
/* ==================== 内页12 - 板块七 Start ==================== */
/* ==================== 内页12 - 板块七 End ==================== */
/* ==================== 内页12 - 板块八 Start ==================== */
/* ==================== 内页12 - 板块八 End ==================== */

/* 2025-1-17,样式不用管，已经上传 */
/* .ny2-section1 .ny2-section1-swiper .swiper-slide {
  background-image: none !important;
} */
.ny2-section1 .ny2-section1-swiper .swiper-slide .pc-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.ny2-section1 .ny2-section1-swiper .swiper-slide .phone-img {
  display: none;
}
@media (max-width: 768px) {
  .ny12-section1 .cate-item .checkbox-item .layui-form-checkbox div {
    padding-right: 0px;
  }
  .ny2-section1 .ny2-section1-swiper .swiper-slide .phone-img {
    display: block;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    object-position: center center;
  }
  .ny2-section1 .ny2-section1-swiper .swiper-slide .pc-img {
    display: none;
  }
}
/* 2025-1-17 ,样式不用管，已经上传  */

.flinks {
  overflow: hidden;
  padding: 10px 0;
  color: #fff;
}
.flinks li {
  float: left;
  opacity: 0.8;
  line-height: 1.2;
  margin-right: 10px;
}
.flinks li a {
  /* color: #000; */
}
.flinks li a img {
  width: 15px;
  height: 15px;
  object-fit: cover;
  border-radius: 1000px;
}
@media (max-width: 768px) {
  .flinks li {
    margin-bottom: 5px;
  }
}

/* 2025-2-19 新增数字介绍板块样式 */
.new-text2 .new-list {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
}
.new-text2 .new-list .item {
  width: 22%;
  text-align: center;
}
.new-text2 .new-list .item .i-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.new-text2 .new-list .item .i-top .num {
  font-size: 3vw;
  color: #193190;
  font-weight: bold;
  margin-right: 5px;
}
.new-text2 .new-list .item .i-top .unit {
  font-size: 1.125vw;
}
.new-text2 .new-list .item .i-bottom {
  font-size: 1.125vw;
  margin-top: 10px;
}

@media (min-width: 1600px) {
  .new-text2 .new-list .item .i-top .num {
    font-size: 48px;
  }
  .new-text2 .new-list .item .i-top .unit {
    font-size: 18px;
  }
  .new-text2 .new-list .item .i-bottom {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .new-text2 .new-list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .new-text2 .new-list .item {
    width: 47%;
    margin-bottom: 10px;
    margin-left: 0;
    margin-right: 0;
    flex-shrink: 0;
  }
  .new-text2 .new-list .item .i-top .num {
    font-size: 30px;
  }
  .new-text2 .new-list .item .i-top .unit {
    font-size: 14px;
  }
  .new-text2 .new-list .item .i-bottom {
    font-size: 14px;
  }
}

/* 2025-4-10 修改 */
.header .tools .language .add-head-lang {
  margin-right: 5px;
  display: flex;
  align-items: center;
}

/* 默认情况下 隐藏  */
.header .tools .language .add-head-lang .default {
  display: none;
}




header.fixed .tools .language .add-head-lang .active  {
  display: none;

}

header.fixed .tools .language .add-head-lang .default {
  display: block;
} 

/* 激活状态 */
header.white .tools .language .add-head-lang .active 
{
  display: block;
}

header.white .tools .language .add-head-lang .default 
{
  display: none;
}

/* 没有white情况下 */
/* 2025-5-21 修改 */
@media (max-width: 768px) {
  .header .tools .language .add-head-lang .active {
    display: block;
  }
  .header .tools .language .add-head-lang .default {
    display: none;
  }
}

/* 2025-4-24 关于我们文字修改 */
.edit2-about-section1 .info .text1 {
  width: 100%;
  text-align: center;
  color: #fff;
}

.edit2-about-section1 .info .text2 {
  width: 100%;
  text-align: center;
}

.edit2-about-section2 .body .body-right {
  width: 100%;
}

.edit2-about-section2 .body2 .itembox {
  justify-content: center;
}

/* 2025-4-24 招聘按钮添加 */
.edit2-zhaopin .item .item-row > div {
  width: 13.714%;
  padding-left: 3px;
  padding-right: 3px;
}

.edit2-zhaopin .item .item-row .item-col7 a {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 5px;
  color: #ffff;
  background-color: #173993;
  user-select: none;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

@media (max-width: 576px) {
  .edit2-zhaopin .item .item-row .item-col7 a {
    font-size: 14px;
    padding: 5px 10px;
  }
}

/* 2025-4-25 关于我们页面修改 */
.edit2-about-section2 .body .body-right .itembox {
  margin-top: 0;
}

.edit2-about-section2 .body2 .itembox {
  justify-content: space-between;
}

.edit2-about-section2 .body2 .item {
  width: 47.5%;
}

.edit2-about-section2 .body2 .item:nth-child(3n-1) {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .edit2-about-section2 .body2 .item {
    width: 100%;
  }
  .edit2-about-section1 .info {
    padding-right: 0;
  }
}

/* 20225-5-15 修改 */
.ny1-main :target {
  scroll-margin-top: var(--header-height2);
}
.edit2-about-section2 {
}
.edit2-about-section2 .body {
  padding-top: clamp(30px, 5.2083vw, 100px);
}
.edit2-about-section2 .edit2-about-desc-text {
  color: #333333;
  font-size: var(--font20);
  line-height: 1.8;
  text-align: start;
}

.edit2-about-section2 .edit2-about-desc-text p {
  margin-bottom: 15px;
}

.edit-about-ny1-section5 .swiper2 .swiper-slide ul {
  display: block;
}

.edit-about-ny1-section5 .swiper2 .swiper-slide ul li {
  width: 100%;
  text-align: center;
}

.edit2-about-section2 .edit2-about-desc-area {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding-bottom: clamp(60px, 7.8125vw, 150px);
  padding-top: clamp(30px, 7.2917vw, 140px);
}

.edit2-about-section2 .edit2-about-desc-text .edit2-about-desc-text-title {
  text-align: center;
  font-weight: 700;
  color: #000;
  font-size: var(--font36);
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}

/* 2025-5-15 新增粘性定位 */
.edit-sticky {
  position: sticky;
  top: var(--header-height2);
}


