/**
 * @Description: 网站页面主要样式
 * @Author: MaXueWei
 * @Date: 20230709
 * @LastEditors: MaXueWei
 * @LastEditTime: 20230709
 */
/* ==================== 重置样式 Start ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  outline: none;
}
html {
  font-size: 60px;
}
body::-webkit-scrollbar {
  width: 4px;
  background: #ececec;
}
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #11519b;
  cursor: pointer;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
ul,
li {
  list-style: none;
}
input,
button {
  outline: 0 none;
  border: none;
  background-color: transparent;
}
button {
  cursor: pointer;
}
/* 图片统一动画 */
.mxw-image {
  overflow: hidden;
}
.mxw-image img {
  transition: transform 0.8s;
  width: 100%;
}
.mxw-image:hover img {
  transform: scale(1.1);
}
main,
header,
footer,
.mxw-box,
section {
  font-size: 16px;
}
main {
  position: relative;
  z-index: 10;
}
section {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1800px) {
  html {
    font-size: 53px;
  }
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 45px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 44px;
  }
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 43px;
  }
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 42px;
  }
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 39px;
  }
}
@media screen and (max-width: 1152px) {
  html {
    font-size: 35px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 60px;
  }
  body {
    margin-top: 50px;
  }
}
/* ==================== 重置样式 End ==================== */
/* ==================== 通用容器大小 Start ==================== */
.mxw-box {
  width: 100%;
  max-width: 72.92vw;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .mxw-box {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ==================== 通用容器大小 End ==================== */
/* ==================== 通用断点隐藏 Start ==================== */
@media screen and (max-width: 1100px) {
  .m-hide {
    display: none!important;
  }
}
@media screen and (min-width: 1100px) {
  .pc-hide {
    display: none!important;
  }
}
/* ==================== 通用断点隐藏 End ==================== */
/* ==================== 通用布局 start ==================== */
@media screen and (min-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 > .u-col {
    width: 48%;
  }
  .u-row-2 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-2 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
  .u-row-3 > .u-col {
    width: 32%;
  }
  .u-row-3 > .u-col:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  .u-row-3 > .u-col:nth-child(3) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-4 > .u-col {
    width: 23.5%;
    margin-right: 2%;
  }
  .u-row-4 > .u-col:nth-child(4n) {
    margin-right: 0%;
  }
  .u-row-4 > .u-col:nth-child(4) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-5 > .u-col {
    width: 18%;
    margin-right: 2%;
  }
  .u-row-5 > .u-col:nth-child(5n) {
    margin-right: 0%;
  }
  .u-row-5 > .u-col:nth-child(5) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-6 > .u-col {
    width: 15%;
    margin-right: 2%;
  }
  .u-row-6 > .u-col:nth-child(6n) {
    margin-right: 0%;
  }
  .u-row-6 > .u-col:nth-child(6) ~ .u-col {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .u-row-2,
  .u-row-3,
  .u-row-4,
  .u-row-5,
  .u-row-6 {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .u-row-2 .u-col {
    width: 100%;
  }
  .u-row-2 .u-col:nth-child(1) ~ .u-col {
    margin-top: 2%;
  }
  .u-row-3 > .u-col,
  .u-row-4 > .u-col,
  .u-row-5 > .u-col,
  .u-row-6 > .u-col {
    width: 48%;
  }
  .u-row-3 > .u-col:nth-child(2n),
  .u-row-4 > .u-col:nth-child(2n),
  .u-row-5 > .u-col:nth-child(2n),
  .u-row-6 > .u-col:nth-child(2n) {
    margin-left: 4%;
  }
  .u-row-3 > .u-col:nth-child(2) ~ .u-col,
  .u-row-4 > .u-col:nth-child(2) ~ .u-col,
  .u-row-5 > .u-col:nth-child(2) ~ .u-col,
  .u-row-6 > .u-col:nth-child(2) ~ .u-col {
    margin-top: 4%;
  }
}
/* ==================== 通用布局 end ==================== */
/* ==================== 通用文本行数限制 start ==================== */
.u-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.u-line-2 {
  -webkit-line-clamp: 2;
}
.u-line-3 {
  -webkit-line-clamp: 3;
}
.u-line-4 {
  -webkit-line-clamp: 4;
}
.u-line-5 {
  -webkit-line-clamp: 5;
}
.u-line-6 {
  -webkit-line-clamp: 6;
}
.u-line-2,
.u-line-3,
.u-line-4,
.u-line-5,
.u-line-6 {
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
/* ==================== 通用文本行数限制 end ==================== */
/* ==================== 图片放大插件 Start ==================== */
.viewer-list > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer-list > li img {
  width: 100%!important;
  height: auto!important;
  transform: translate(0, 0) !important;
}
/* ==================== 图片放大插件 End ==================== */
/* ==================== 头部导航样式 Start ==================== */
header ul,
header li {
  list-style: none;
}
@media screen and (min-width: 1100px) {
  header {
    position: relative;
    width: 100%;
    z-index: 50;
  }
  header .welcome {
    background-color: #2e2e2e;
  }
  header .welcome a {
    color: #aeaeae;
  }
  header .welcome > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.52vw;
    padding-bottom: 0.52vw;
    color: #aeaeae;
    font-size: 0.73vw;
    line-height: 1;
  }
  header .head-top > .mxw-box {
    padding-top: 0.52vw;
    padding-bottom: 0.52vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .head-top .logo {
    width: 31.35vw;
    flex-shrink: 0;
  }
  header .head-top .logo img{

  }
  header .head-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .head-contact .icon {
    width: 2.08vw;
    flex-shrink: 0;
    margin-right: 0.63vw;
  }
  header .head-contact .info {
    font-size: 0.73vw;
    color: #222;
    line-height: 1.2;
    margin-right: 1.04vw;
  }
  header .head-contact .info p {
    margin-bottom: 0.52vw;
  }
  header .head-contact .info p:last-child {
    margin-bottom: 0;
  }
  header .head-contact .info strong {
    font-size: 1.56vw;
    line-height: 1;
  }
  header .head-contact .qr {
    width: 5.21vw;
  }
  header .navbar2 {
    position: relative;
    transition: transform 0.4s, background-color 0.4s;
    font-family: inherit;
    background-color: #11509b;
  }
  header .navbar2 > .mxw-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    width: 100%;
  }
  header .navbar2 > .mxw-box > ul {
    display: flex;
    align-items: center;
    font-family: inherit;
    min-width: 0;
    flex-grow: 1;
    position: relative;
  }
  header .navbar2 > .mxw-box > ul > li {
    flex-grow: 1;
    position: relative;
    margin-right: 1.56vw;
    font-family: inherit;
  }
  header .navbar2 > .mxw-box > ul > li:hover::after {
    visibility: visible;
  }
  header .navbar2 > .mxw-box > ul > li:after {
    content: "";
    display: block;
    background: url(../image/0dec088f87294a8e1da3303e0e37bb53cf45878a.png) no-repeat center top;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.52vw;
    background-size: 100% 100%;
    visibility: hidden;
  }
  header .navbar2 > .mxw-box > ul > li.active > a,
  header .navbar2 > .mxw-box > ul > li:hover > a {
    color: #fff;
    background-color: #eb6100;
  }
  header .navbar2 > .mxw-box > ul > li.active .sub-navbar,
  header .navbar2 > .mxw-box > ul > li:hover .sub-navbar {
    opacity: 1;
    visibility: visible;
  }
  header .navbar2 > .mxw-box > ul > li:last-child {
    margin-right: 0;
  }
  header .navbar2 > .mxw-box > ul > li:last-child > a:after {
    display: none;
  }
  header .navbar2 > .mxw-box > ul > li > a {
    display: block;
    position: relative;
    font-size: 0.94vw;
    padding-top: 1.04vw;
    padding-bottom: 1.04vw;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.4s, color 0.4s;
    font-family: inherit;
    text-align: center;
    z-index: 2;
  }
  header .navbar2 > .mxw-box .sub-navbar {
    position: absolute;
    min-width: 7.29vw;
    top: 100%;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
    padding-top: 1.42vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 70;
    display: none;
  }
  header .navbar2 > .mxw-box .sub-navbar:before,
  header .navbar2 > .mxw-box .sub-navbar:after {
    content: "";
    display: block;
    width: 0.83vw;
    height: 0.83vw;
    position: absolute;
    left: 50%;
    top: 1.32vw;
    background-color: #fff;
    transform: rotate(45deg) translateX(-50%);
    z-index: 3;
  }
  header .navbar2 > .mxw-box .sub-navbar:before {
    z-index: 1;
    box-shadow: 0 0 0.36vw 0.1vw rgba(0, 0, 0, 0.2);
  }
  header .navbar2 > .mxw-box .sub-navbar > ul {
    background-color: #fff;
    box-shadow: 0 0 0.36vw 0.1vw rgba(0, 0, 0, 0.2);
    border-radius: 0.21vw;
    padding: 0.52vw 0;
    white-space: nowrap;
    position: relative;
    z-index: 2;
  }
  header .navbar2 > .mxw-box .sub-navbar > ul > li:hover {
    background-color: #f3f3f3;
  }
  header .navbar2 > .mxw-box .sub-navbar > ul > li:hover a {
    color: #000;
  }
  header .navbar2 > .mxw-box .sub-navbar > ul > li a {
    display: block;
    padding: 0.52vw 0.78vw;
    font-size: 0.78vw;
    color: #9fa3a6;
    font-family: "OPPOSANS-R";
    transition: color 0.4s;
  }
  header form {
    width: 10.94vw;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    margin-left: 5.21vw;
  }
  header form input {
    width: 8.85vw;
    min-width: 0;
    flex-grow: 1;
    background-color: #fff;
    height: 2.08vw;
    line-height: 2.08vw;
    font-size: 0.78vw;
    color: #333;
    padding: 0 0.52vw;
  }
  header form button {
    width: 1.88vw;
    height: 2.08vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eb6100;
  }
  header form button img {
    width: 1.25vw;
  }
}
@media screen and (max-width: 1100px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 99;
  }
  header .mobile-nav {
    position: relative;
  }
  header .mobile-nav > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    padding: 2.67vw 4vw;
    height: calc(100vh - 13.33vw);
    font-weight: bold;
    overflow: auto;
  }
  header .mobile-nav > ul a {
    text-decoration: none;
    padding: 2.67vw 0;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 3.73vw;
  }
  header .mobile-nav > ul a:after {
    content: "+";
    display: none;
    margin-left: 2.67vw;
    font-weight: bold;
    font-size: 4.8vw;
    line-height: 2.67vw;
  }
  header .mobile-nav > ul > li {
    border-bottom: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .child.open > a:after {
    content: "-";
  }
  header .mobile-nav .child > a:after {
    display: block;
  }
  header .mobile-nav .sub {
    padding-left: 4vw;
  }
  header .mobile-nav .sub > li {
    border-top: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .sub > li > a {
    font-weight: 400;
    color: #888;
  }
  header .mobile-nav .sub > li:first-child {
    border-top: 0;
  }
  header .mobile-nav .three {
    padding-left: 4vw;
  }
  header .mobile-nav .three > li {
    border-top: 0.27vw solid #f3f3f3;
  }
  header .mobile-nav .three > li > a {
    font-weight: 400;
    color: #999;
  }
  header .mobile-nav .three > li:first-child {
    border-top: 0;
  }
  header .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4vw;
    height: 13.33vw;
    border-bottom: 0.27vw solid #eee;
  }
  header .head-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .logo {
    display: block;
    flex-shrink: 0;
  }
  header .logo img {
    height: 9.8vw;
  }
  header .search {
    width: 5.33vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 5.33vw;
  }
  header .search-form {
    position: fixed;
    top: -4px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 2.67vw 5.33vw;
    box-shadow: 0 1.33vw 2.67vw -1.33vw rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
  }
  header .search-form.active {
    opacity: 1;
    visibility: visible;
  }
  header .search-form form {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }
  header .search-form form input {
    min-width: 0;
    flex-grow: 1;
    border: 0.27vw solid #eee;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
  }
  header .search-form form button {
    flex-shrink: 0;
    width: 8vw;
    background: #11519b;
    padding: 0.53vw;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .search-form form button img {
    width: 5.33vw;
    filter: brightness(0) invert(1);
  }
  header .nav-btn {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 6.93vw;
    transition: all 0.4s;
    cursor: pointer;
    z-index: 9;
  }
  header .nav-btn i {
    width: 100%;
    height: 2px;
    background-color: #333;
    margin-bottom: 1.6vw;
    transition: color 0.4s, top 0.4s, left 0.4s;
  }
  header .nav-btn i:last-child {
    margin-bottom: 0;
  }
  header .nav-btn.active {
    width: 5.33vw;
    height: 5.33vw;
    transform: rotate(45deg);
    top: 7.47vw;
  }
  header .nav-btn.active i {
    background-color: #000;
  }
  header .nav-btn.active i:nth-child(2) ~ i {
    display: none;
  }
  header .nav-btn.active i:nth-child(1),
  header .nav-btn.active i:nth-child(2) {
    margin: 0;
    position: absolute;
  }
  header .nav-btn.active i:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 0.53vw;
  }
  header .nav-btn.active i:nth-child(2) {
    width: 0.53vw;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* ==================== 头部导航样式 End ==================== */
/* ==================== 底部样式 Start ==================== */
footer .foot-top {
  background-color: #2e2e2e;
}
footer .foot-top > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 3.13vw;
  padding-bottom: 1.56vw;
}
footer .foot-bottom {
  position: relative;
  background-color: #1b1b1b;
}
footer .foot-left {
  flex-shrink: 0;
  margin-right: 1.04vw;
}
footer .foot-left .logo {
  display: block;
  width: 10.42vw;
  margin-bottom: 1.04vw;
}
footer .foot-copyright {
  font-size: 0.73vw;
  line-height: 1.8;
  color: #a8a6a6;
}
footer .foot-copyright a{
  color: #a8a6a6;
}
footer .foot-copyright a:hover{
  color: #fff;
}
footer .foot-center {
  padding: 0 0.7vw;
  flex-grow: 1;
  min-width: 0;
}
footer .foot-center>ul {
  padding-bottom: 1.56vw;
  display: flex;
  align-items: flex-start;
 
  margin-bottom: 1.56vw;
}
footer .foot-center li {
  margin-right: 2.08vw;
}
footer .foot-center li:last-child {
  margin-right: 0;
}
footer .foot-center li a {
  font-size: 0.83vw;
  color: #fffefe;
  line-height: 1.2;
}
footer .foot-center li a:hover {
  color: #fff;
  text-decoration: underline;
}
footer .foot-contact {
    display: block;
    margin-bottom: 20px;
}
footer .foot-contact p {
  width: 100%;
  font-size: 0.73vw;
  color: #a8a6a6;
}

footer .foot-contact p:nth-child(1) ~ p {
  margin-top: 0.3vw;
}
footer  .foot-contact img {
  width: 1.04vw;
  flex-shrink: 0;
  margin-right: 0.26vw;
}
footer .foot-qr {
 flex-shrink: 0;

}
footer .foot-qr .desc {
  white-space: nowrap;
}
footer .foot-qr .desc p {
  font-size: 0.73vw;
  margin-bottom: 0.78vw;
  color: #a8a6a6;
}
footer .foot-qr .desc strong {
  font-size: 1.35vw;
  color: #fff;
  font-weight: 400;
  line-height: 1;
}
footer .foot-qr .image {
  flex-shrink: 0;
  margin-left: 1.56vw;
  width: 6.25vw;
}
footer .online-link {
  font-size: 0.73vw;
  color: #333;
  line-height: 1.6;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  z-index: 19;
  background: #eee;
  display: none;
}
footer .online-link a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.4s;
  padding: 9px 10px;
  display: inline-block;
  font-size: 12px;
}
footer .online-link a:hover {
  color: #11519b;
  text-decoration: underline;
}
footer .foot-link {
  font-size: 0.73vw;
  color: #9b9a9a;
  line-height: 1.6;
}
footer .foot-link span {
  cursor: pointer;
}
footer .foot-link span,
footer .foot-link a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.4s;
}
footer .foot-link a:hover {
  color: #11519b;
  text-decoration: underline;
}
footer .support {
  color: #9b9a9a;
  font-size: 0.73vw;
  line-height: 1.6;
}
footer .support a {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  transition: all 0.4s;
}
footer .foot-bottom > .mxw-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1.3vw;
  padding-bottom: 1.3vw;
}
@media screen and (max-width: 1100px) {
  footer .foot-top > .mxw-box {
    padding: 8vw 5.33vw;
    display: block;
  }
  footer .foot-top .foot-left {
    margin-right: 0;
  }
  footer .foot-top .foot-left .logo {
    width: 37.33vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
  }
  footer .foot-top .foot-left .foot-copyright {
    font-size: 3.2vw;
    text-align: center;
  }
  footer .foot-center {
    width: 100%;
  }
  footer .foot-center ul {
    flex-wrap: wrap;
    padding-bottom: 4vw;
    margin-bottom: 5.33vw;
    border-bottom-width: 0.27vw;
  }
  footer .foot-center ul li {
    width: 32%;
    margin: 0;
  }
  footer .foot-center ul li a {
    display: block;
    width: 100%;
    font-size: 3.73vw;
    text-align: center;
    padding: 2.13vw 2.67vw;
  }
  footer .foot-center ul li:nth-child(3n-1) {
    margin-left: 2%;
    margin-right: 2%;
  }
  footer .foot-center .foot-contact {
    display: block;
  }
  footer .foot-center .foot-contact p {
    margin-top: 0;
    margin-bottom: 5.33vw;
    font-size: 3.73vw;
    width: 100%!important;
  }
  footer .foot-center .foot-contact p img {
    width: 4vw;
    margin-right: 1.33vw;
  }
  footer .foot-qr {
    display: block;
  }
  footer .foot-qr .desc {
    text-align: center;
  }
  footer .foot-qr .desc p {
    font-size: 3.73vw;
    margin-bottom: 2.67vw;
  }
  footer .foot-qr .desc p strong {
    font-size: 6.93vw;
  }
  footer .foot-qr .image {
    margin-left: auto;
    margin-right: auto;
    width: 26.67vw;
    margin-top: 2.67vw;
  }
  footer .foot-bottom > .mxw-box {
    padding: 2.67vw 5.33vw;
    padding-top: 4vw;
    padding-bottom: 4vw;
    display: block;
    text-align: center;
  }
  footer .foot-bottom > .mxw-box > div {
    width: 100%;
  }
  footer .foot-bottom .online-link {
    padding: 1.33vw 0;
  }
  footer .foot-bottom .online-link a {
    padding: 1.33vw 1.33vw;
    font-size: 3.2vw;
  }
  footer .foot-bottom .foot-link {
    font-size: 3.2vw;
    line-height: 1.8;
    margin-bottom: 2.67vw;
    padding-bottom: 2.67vw;
    border-bottom: 0.27vw solid rgba(255, 255, 255, 0.2);
  }
  footer .foot-copyright {
    font-size: 3.2vw;
  }
  footer .support {
    font-size: 3.2vw;
  }
}
/* ==================== 底部样式 End ==================== */
.index-banner {
  padding-top: 0!important;
  padding-bottom: 0!important;
  overflow: hidden;
}
.index-banner .swiper-slide img {
  width: 100%;
}
.index-banner .swiper-button-prev,
.index-banner .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.56vw;
  color: #fff;
  z-index: 9;
  cursor: pointer;
  outline: none;
  margin: 0;
  background-color: #e36a17;
  width: 40px;
  height: 60px;
}
.index-banner .swiper-button-prev::after,
.index-banner .swiper-button-next::after {
  font-size: 1vw;
}
.index-banner .swiper-button-prev {
  left: 5.13vw;
}
.index-banner .swiper-button-next {
  right: 5.13vw;
}
.index-banner .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
}
.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 6px;
  margin-right: 8px;
  margin-left: 8px;
  background-color: #1a569e;
  border-radius: 0;
  opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eb6100;
}
@media screen and (max-width: 1100px) {
  .index-banner {
    z-index: 99;
  }
  .index-banner .mxw-full-img img {
    height: auto;
  }
  .index-banner .swiper-button-prev:after,
  .index-banner .swiper-button-next:after {
    font-size: 3.93vw;
  }
  .index-banner .swiper-button-prev {
    left: 2.67vw;
  }
  .index-banner .swiper-button-next {
    right: 2.67vw;
  }
}
/* ==================== 滤镜白色 Start ==================== */
.filter-white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
/* ==================== 滤镜白色 End ==================== */
/* ==================== 在1920下图片保持最小1920p Start ==================== */
.mxw-full-img {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 1903px) {
  .mxw-full-img img {
    width: 100%;
    min-width: 1920px;
  }
}
@media screen and (max-width: 1100px) {
  .mxw-full-img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mxw-full-img img {
    height: 300px;
    width: auto;
    max-width: inherit;
  }
}
/* ==================== 在1920下图片保持最小1920p End ==================== */
/* ==================== 首页 - 通用标题 Start ==================== */
.index-title {
  padding-top: 2.6vw;
  padding-bottom: 1.56vw;
}
.index-title.color .title-text::before,
.index-title.color .title-text::after {
  background-color: #d5d5d5;
}
.index-title.color .title-text .text1 {
  color: #11519b;
}
.index-title.color .title-text .text1::before,
.index-title.color .title-text .text1::after {
  background-color: #d5d5d5;
}
.index-title.color .title-text .text2 {
  color: #a1a0a0;
}
.index-title.color .title-text .text2::before,
.index-title.color .title-text .text2::after {
  background-color: #d5d5d5;
}
.index-title .title-text {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  overflow: hidden;
  padding-left: 3.13vw;
  padding-right: 3.13vw;
}
.index-title .title-text:before,
.index-title .title-text:after {
  content: "";
  display: block;
  width: 0.05vw;
  height: 2.2vw;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 0.8vw;
}
.index-title .title-text:before {
  left: 0;
}
.index-title .title-text:after {
  right: 0;
}
.index-title .text1,
.index-title .text2 {
  position: relative;
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.index-title .text1:before,
.index-title .text2:before,
.index-title .text1:after,
.index-title .text2:after {
  content: "";
  display: block;
  width: 1920px;
  height: 0.05vw;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
}
.index-title .text1:before,
.index-title .text2:before {
  left: 0;
  transform: translateX(-100%);
}
.index-title .text1:after,
.index-title .text2:after {
  right: 0;
  transform: translateX(100%);
}
.index-title .text1 {
  font-size: 1.88vw;
  color: #fff;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 0.26vw;
  padding-left: 1.04vw;
  padding-right: 1.04vw;
}
.index-title .text2 {
  font-size: 1.15vw;
  color: #668fd6;
  padding-left: 0.52vw;
  padding-right: 0.52vw;
}
@media screen and (max-width: 1100px) {
  .index-title {
    padding-top: 19.99px;
    padding-bottom: 15px;
  }
  .index-title .title-text {
    padding-left: 19.99px;
    padding-right: 19.99px;
  }
  .index-title .title-text:before,
  .index-title .title-text:after {
    width: 1.01px;
    height: 19.01px;
    bottom: 7.99px;
  }
  .index-title .text1:before,
  .index-title .text2:before,
  .index-title .text1:after,
  .index-title .text2:after {
    height: 1.01px;
  }
  .index-title .text1 {
    font-size: 18px;
    margin-bottom: 1.99px;
    padding-left: 10.01px;
    padding-right: 10.01px;
  }
  .index-title .text2 {
    padding-left: 10.01px;
    padding-right: 10.01px;
  }
}
/* ==================== 首页 - 通用标题 End ==================== */
/* ==================== 首页 - 板块一 Start ==================== */
.index-section1 {
  overflow: hidden;
}
.index-section1 .title {
  text-align: center;
  margin-bottom: 3.13vw;
}
.index-section1 .title .text1 {
  font-size: 2.08vw;
  color: #333;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
.index-section1 .title .text1:after {
  content: "";
  display: block;
  width: 3.65vw;
  height: 0.1vw;
  background-color: #eb6100;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.04vw;
}
.index-section1 .title .text2 {
  margin-top: 1.04vw;
  font-size: 0.78vw;
  color: #666;
  text-align: center;
  line-height: 1.2;
}
.index-section1 .left-body {
  width: 14.06vw;
  flex-shrink: 0;
  margin-right: 0.78vw;
  border: 0.05vw solid #11509b;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.index-section1 .left-body .head {
  padding-top: 1.35vw;
  padding-bottom: 1.56vw;
  text-align: center;
  background-color: #11509b;
  color: #fff;
  width: 100%;
}
.index-section1 .left-body .head .text1 {
  font-size: 1.67vw;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.52vw;
}
.index-section1 .left-body .head .text2 {
  font-size: 0.68vw;
  line-height: 1.2;
}
.index-section1 .left-body > ul {
  width: 100%;
  padding: 1.56vw 1.04vw 0;
  flex-grow: 1;
}
.index-section1 .left-body > ul > li {
  margin-bottom: 1.04vw;
}
.index-section1 .left-body > ul > li.active > a {
  transform: skewX(-20deg);
  color: #fff;
  background-color: #0066cc;
}
.index-section1 .left-body > ul > li.active > a span {
  transform: skewX(20deg);
}
.index-section1 .left-body > ul > li.active > a:after {
  background-color: #003366;
  color: #fff;
  content: "-";
}
.index-section1 .left-body > ul > li > a {
  display: flex;
  align-items: stretch;
  width: 100%;
  background-color: #ededed;
  font-size: 0.89vw;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-section1 .left-body > ul > li > a span {
  min-width: 0;
  flex-grow: 1;
  padding: 0.78vw 0.52vw 0.78vw 1.04vw;
}
.index-section1 .left-body > ul > li > a:after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6vw;
  background-color: #ededed;
  font-size: 1.04vw;
  color: rgba(55, 55, 55, 0.6);
}
.index-section1 .left-body > ul > li > ul {
  display: none;
}
.index-section1 .left-body > ul > li > ul > li.active > a {
  color: #eb6100;
}
.index-section1 .left-body > ul > li > ul > li.active > a:before {
  border-color: #eb6100;
}
.index-section1 .left-body > ul > li > ul > li.active > a:after {
  background-color: #eb6100;
}
.index-section1 .left-body > ul > li > ul > li > a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 0.68vw;
  padding-bottom: 0.68vw;
  padding-right: 0.52vw;
  padding-left: 1.98vw;
  font-size: 0.78vw;
  color: #454545;
  display: block;
  border-bottom: 0.05vw dashed #e6e6e6;
  position: relative;
}
.index-section1 .left-body > ul > li > ul > li > a:before,
.index-section1 .left-body > ul > li > ul > li > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.52vw;
  transform: translateY(-50%);
}
.index-section1 .left-body > ul > li > ul > li > a:before {
  width: 0.52vw;
  height: 0.52vw;
  border: 0.05vw solid #454545;
}
.index-section1 .left-body > ul > li > ul > li > a:after {
  width: 0.31vw;
  height: 0.31vw;
  left: 0.68vw;
  background-color: #454545;
}
.index-section1 .left-body .bottom {
  width: 100%;
  padding: 0.52vw 1.04vw 1.56vw;
  font-weight: bold;
  position: relative;
}
.index-section1 .left-body .bottom:before {
  content: "";
  display: block;
  width: calc(100% - 2.08vw);
  height: auto;
  border-top: 0.05vw dashed #e6e6e6;
  position: absolute;
  top: 0;
  left: 1.04vw;
}
.index-section1 .left-body .bottom .text1 {
  font-size: 1.04vw;
  color: #eb6100;
  margin-bottom: 0.63vw;
  line-height: 1;
}
.index-section1 .left-body .bottom .text2 {
  font-size: 1.35vw;
  color: #003366;
  line-height: 1;
}
.index-section1 .right-body {
  min-width: 0;
  flex-grow: 1;
  position: relative;
}
.index-section1 .right-body .swiper-slide{padding-bottom: 1px;}
.index-section1 .swiper-button-prev,
.index-section1 .swiper-button-next {
  position: absolute;
  top: 192px;
  transform: translateY(0);
  margin: 0;
  width: 2.6vw;
  height: 2.08vw;
  transform: skewX(-10deg);
  background-color: #454545;
  opacity: 1;
}
.index-section1 .swiper-button-prev:hover,
.index-section1 .swiper-button-next:hover {
  background-color: #0066cc;
}
.index-section1 .swiper-button-prev:after,
.index-section1 .swiper-button-next:after {
  font-size: 1.04vw;
  color: #fff;
  transform: skewX(10deg);
}
.index-section1 .swiper-button-prev {
  left: 1.56vw;
}
.index-section1 .swiper-button-next {
  right: 1.04vw;
}
.index-section1 .category {
  background-color: #fff;
  border: solid 0.05vw #dddddd;
  margin-bottom: 2.08vw;
  padding-left: 6.25vw;
  padding-right: 4.69vw;
  padding-top: 4.69vw;
  padding-bottom: 3.13vw;
  position: relative;
}
.index-section1 .category:before {
  content: "";
  display: block;
  background: url(../image/0516b77281e96ec717c0989dd2e77d48399fb29f.jpg) repeat center;
  height: 0.47vw;
  background-size: 100%;
  position: absolute;
  top: -0.05vw;
  left: 0;
  width: 100%;
}
.index-section1 .category .category-info {
  min-width: 0;
  flex-grow: 1;
  margin-right: 2.08vw;
}
.index-section1 .category .category-info .cate-name {
  display: table;
  font-size: 1.88vw;
  color: #0066cc;
  font-weight: bold;
  padding-bottom: 0.52vw;
  border-bottom: 0.05vw dashed #666666;
  margin-bottom: 1.04vw;
}
.index-section1 .category .category-info .desc {
  font-size: 0.68vw;
  color: #000;
  line-height: 2.2;
  text-align: justify;
}
.index-section1 .category .category-info .desc strong {
  font-size: 0.78vw;
}
.index-section1 .category .btn-group {
  margin-top: 2.08vw;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  transform: skewX(-10deg);
}
.index-section1 .category .btn-group .more-btn,
.index-section1 .category .btn-group .contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.29vw;
  height: 2.34vw;
  color: #fff;
  font-size: 0.78vw;
}
.index-section1 .category .btn-group .more-btn span,
.index-section1 .category .btn-group .contact-btn span {
  transform: skewX(10deg);
}
.index-section1 .category .btn-group .more-btn {
  background-color: #0066cc;
}
.index-section1 .category .btn-group .contact-btn {
  background-color: #454545;
}
.index-section1 .category .category-img {
  width: 17.71vw;
  flex-shrink: 0;
}
.index-section1 .item {
  display: block;
  border: 0.05vw solid #eaeaea;
  color: #fff;
  position: relative;
}
.index-section1 .item:hover .info {
  opacity: 1;
  visibility: visible;
}
.index-section1 .item .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.index-section1 .item .info .text {
  width: 7.81vw;
  height: 2.08vw;
  line-height: 1.98vw;
  text-align: center;
  border: 0.05vw solid #fff;
  font-size: 0.73vw;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 1100px) {
  .index-section1 {
    padding-top: 3.13vw;
    padding-bottom: 5.21vw;
  }
  .index-section1 .body {
    display: flex;
    align-items: stretch;
  }
  .index-section1 .category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 25.52vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section1 {
    padding: 8vw 0;
  }
  .index-section1 .title {
    margin-bottom: 8vw;
  }
  .index-section1 .title .text1 {
    font-size: 5.33vw;
  }
  .index-section1 .title .text1:after {
    width: 9.33vw;
    height: 0.53vw;
    margin-top: 2.67vw;
  }
  .index-section1 .title .text2 {
    margin-top: 2.67vw;
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .index-section1 .left-body {
    width: 100%;
    margin-right: 0;
    border-width: 0.27vw;
  }
  .index-section1 .left-body .head {
    padding-top: 3.47vw;
    padding-bottom: 4vw;
  }
  .index-section1 .left-body .head .text1 {
    font-size: 4.27vw;
    margin-bottom: 1.33vw;
  }
  .index-section1 .left-body .head .text2 {
    font-size: 3.2vw;
  }
  .index-section1 .left-body > ul {
    padding: 4vw 2.67vw 0;
  }
  .index-section1 .left-body > ul > li {
    margin-bottom: 2.67vw;
  }
  .index-section1 .left-body > ul > li.active > a {
    transform: skewX(-10deg);
  }
  .index-section1 .left-body > ul > li.active > a span {
    transform: skewX(10deg);
  }
  .index-section1 .left-body > ul > li > a {
    font-size: 3.47vw;
  }
  .index-section1 .left-body > ul > li > a span {
    min-width: 0;
    flex-grow: 1;
    padding: 2.67vw 1.33vw 2.67vw 2.67vw;
  }
  .index-section1 .left-body > ul > li > a:after {
    width: 6.67vw;
    font-size: 4.27vw;
  }
  .index-section1 .left-body > ul > li > ul > li > a {
    padding-top: 2.67vw;
    padding-bottom: 2.67vw;
    padding-right: 1.33vw;
    padding-left: 5.33vw;
    font-size: 3.2vw;
    border-bottom-width: 0.27vw;
  }
  .index-section1 .left-body > ul > li > ul > li > a:before,
  .index-section1 .left-body > ul > li > ul > li > a:after {
    left: 1.33vw;
  }
  .index-section1 .left-body > ul > li > ul > li > a:before {
    width: 2.13vw;
    height: 2.13vw;
    border-width: 0.27vw;
  }
  .index-section1 .left-body > ul > li > ul > li > a:after {
    width: 1.07vw;
    height: 1.07vw;
    left: 2.13vw;
  }
  .index-section1 .left-body .bottom {
    padding: 2.67vw 2.67vw 4vw;
  }
  .index-section1 .left-body .bottom:before {
    width: calc(100% - 5.33vw);
    border-top-width: 0.27vw;
    left: 2.67vw;
  }
  .index-section1 .left-body .bottom .text1 {
    font-size: 4.8vw;
    margin-bottom: 1.6vw;
  }
  .index-section1 .left-body .bottom .text2 {
    font-size: 5.33vw;
  }
  .index-section1 .swiper-button-prev,
  .index-section1 .swiper-button-next {
    top: 20%;
    width: 6.67vw;
    height: 8vw;
    transform: skewX(-5deg);
  }
  .index-section1 .swiper-button-prev:after,
  .index-section1 .swiper-button-next:after {
    font-size: 3.73vw;
    transform: skewX(5deg);
  }
  .index-section1 .swiper-button-prev {
    left: -2.37vw;
  }
  .index-section1 .swiper-button-next {
    right: -2.37vw;
  }
  .index-section1 .category {
    border-width: 0.27vw;
    margin-bottom: 2.67vw;
    padding: 2.67vw 5.33vw 5.33vw;
    margin-top: 5.33vw;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .index-section1 .category:before {
    height: 1.07vw;
    top: -0.27vw;
  }
  .index-section1 .category .category-info {
    width: 100%;
    margin-right: 0;
  }
  .index-section1 .category .category-info .cate-name {
    font-size: 4.8vw;
    padding-bottom: 1.33vw;
    border-bottom-width: 0.27vw;
    margin-bottom: 2.67vw;
  }
  .index-section1 .category .category-info .desc {
    font-size: 3.2vw;
  }
  .index-section1 .category .category-info .desc strong {
    font-size: 3.73vw;
  }
  .index-section1 .category .btn-group {
    margin-top: 5.33vw;
    transform: skewX(-10deg);
    justify-content: center;
  }
  .index-section1 .category .btn-group .more-btn,
  .index-section1 .category .btn-group .contact-btn {
    width: 48%;
    height: 8vw;
    font-size: 3.2vw;
  }
  .index-section1 .category .btn-group .more-btn span,
  .index-section1 .category .btn-group .contact-btn span {
    transform: skewX(10deg);
  }
  .index-section1 .category .category-img {
    order: -2;
    width: 100%;
    margin-bottom: 5.33vw;
  }
  .index-section1 .itembox {
    padding-bottom: 2.67vw;
  }
  .index-section1 .item {
    width: 32%;
    border-width: 0.27vw;
    margin: 0!important;
  }
  .index-section1 .item:nth-child(3n-1) {
    margin-left: 2%!important;
    margin-right: 2%!important;
  }
  .index-section1 .item .info .text {
    width: 80%;
    height: auto;
    line-height: inherit;
    padding-top: 1.07vw;
    padding-bottom: 1.07vw;
    border-width: 0.27vw;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块一 End ==================== */
/* ==================== 首页 - 板块二 Start ==================== */
/* ==================== 首页 - 板块二 End ==================== */
/* ==================== 首页 - 板块三 Start ==================== */
.index-section3 {
  background: url(../image/c72e2e355a7924b81e26e0f6faf4a2a411f322c5.jpg) no-repeat center bottom #11519b;
}
.index-section3 .index-title .title-text .text2 {
  color: #fff;
}
.index-section3 .itembox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.index-section3 .item .icon {
  position: relative;
  width: 4.9vw;
  height: 4.9vw;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -2.45vw;
}
.index-section3 .item .icon::after {
  content: "";
  display: block;
  width: 6.25vw;
  height: 4.9vw;
  border-radius: 10.42vw 0 0 10.42vw;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.15) 40%, transparent);
  transform-origin: left top;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 70%;
}
.index-section3 .item .icon-box {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 99;
  position: relative;
}
.index-section3 .item .icon-box img {
  width: 2.6vw;
}
.index-section3 .item .content {
  background-color: #2068b1;
  padding: 4.17vw 1.04vw 2.45vw;
  font-size: 1.25vw;
  color: #fff;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 1100px) {
  .index-section3 {
    padding-bottom: 1.56vw;
  }
  .index-section3 .index-title .title-text {
    padding-left: 8.85vw;
    padding-right: 8.85vw;
  }
  .index-section3 .itembox {
    max-width: 63.33vw;
    margin-left: auto;
    margin-right: auto;
  }
  .index-section3 .item {
    width: 11.46vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section3 {
    padding-top: 5.33vw;
    padding-bottom: 8vw;
  }
  .index-section3 .item {
    width: 23.5%;
  }
  .index-section3 .item .icon {
    position: relative;
    width: 12.53vw;
    height: 12.53vw;
    margin-bottom: -6.13vw;
  }
  .index-section3 .item .icon::after {
    width: 16vw;
    height: 12.53vw;
    border-radius: 53.33vw 0 0 53.33vw;
  }
  .index-section3 .item .icon-box img {
    width: 6.73vw;
  }
  .index-section3 .item .content {
    padding: 13.33vw 2.67vw 5.33vw;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块三 End ==================== */
/* ==================== 首页 - 板块四 Start ==================== */
.index-section4 {
  background: url(../image/062de98f14858bff8ddc14c570b4c2088f5c475a.jpg) no-repeat center;
  background-size: cover;
}
.index-section4 .body {
  display: flex;
  align-items: flex-start;
}
.index-section4 .left-body {
  min-width: 0;
  flex-grow: 1;
}
.index-section4 .head {
  border-left: 0.47vw solid #11519b;
  padding-left: 1.04vw;
  text-align: left;
  padding-bottom: 0.26vw;
}
.index-section4 .head .text1 {
  font-size: 2.29vw;
  color: #11519b;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.index-section4 .head .text1 span {
  width: 2.6vw;
  height: 2.6vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #fce6d6;
  border-radius: 100%;
  font-size: 3.59vw;
  color: #eb6100;
  line-height: 1;
}
.index-section4 .head .text2 {
  margin-top: 0.78vw;
  font-size: 1.15vw;
  color: #666;
  line-height: 1.2;
}
.index-section4 .itembox {
  margin-top: 1.56vw;
}
.index-section4 .item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 2.08vw;
  position: relative;
  z-index: 2;
}
.index-section4 .item:last-child {
  padding-bottom: 3.65vw;
}
.index-section4 .item:last-child .number::after {
  display: none;
}
.index-section4 .item:nth-child(2n) .number {
  background-color: #eb6100;
}
.index-section4 .item .number {
  flex-shrink: 0;
  width: 4.01vw;
  height: 4.01vw;
  display: block;
  border-radius: 100%;
  background-color: #11509b;
  color: #fff;
  font-weight: bold;
  margin-right: 1.67vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.88vw;
  position: relative;
}
.index-section4 .item .number:after {
  content: "";
  display: block;
  width: 0.05vw;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #eaeaea;
  top: 100%;
}
.index-section4 .item .info {
  min-width: 0;
  flex-grow: 1;
}
.index-section4 .item .text1 {
  font-size: 1.35vw;
  color: #333;
  line-height: 1.2;
  margin-bottom: 0.78vw;
  font-weight: bold;
}
.index-section4 .item .text2 {
  font-size: 0.83vw;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}
.index-section4 .tel {
  background-color: #f2f2f2;
  padding-left: 1.56vw;
  border-radius: 5.21vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 30.75vw;
}
.index-section4 .tel .icon {
  width: 1.04vw;
  flex-shrink: 0;
  margin-right: 0.78vw;
}
.index-section4 .tel .text1 {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  margin-right: 0.78vw;
  flex-shrink: 0;
}
.index-section4 .tel .text2 {
  font-size: 1.56vw;
  font-weight: bold;
  color: #0172ba;
  min-width: 0;
  flex-grow: 1;
}
.index-section4 .tel .jump {
  display: block;
  width: 8.85vw;
  height: 2.71vw;
  line-height: 2.71vw;
  border-radius: 5.21vw;
  font-size: 0.73vw;
  text-align: center;
  color: #fff;
  background-color: #0172ba;
  transition: all 0.4s;
}
.index-section4 .tel .jump:hover {
  background-color: #2b97dd;
}
@media screen and (min-width: 1100px) {
  .index-section4 {
    padding-top: 1.35vw;
    padding-bottom: 2.86vw;
  }
  .index-section4 .right-body {
    width: 33.33vw;
    flex-shrink: 0;
    margin-left: 3.91vw;
  }
}
@media screen and (max-width: 1100px) {
  .index-section4 {
    padding: 10.67vw 0;
  }
  .index-section4 .body {
    display: block;
  }
  .index-section4 .head {
    border-left-width: 1.07vw;
    padding-left: 2.67vw;
    padding-bottom: 1.33vw;
  }
  .index-section4 .head .text1 {
    font-size: 6.93vw;
  }
  .index-section4 .head .text1 span {
    width: 6.67vw;
    height: 6.67vw;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #fce6d6;
    border-radius: 100%;
    font-size: 9.33vw;
    color: #eb6100;
    line-height: 1;
  }
  .index-section4 .head .text2 {
    margin-top: 2.13vw;
    font-size: 3.73vw;
    color: #666;
    line-height: 1.2;
  }
  .index-section4 .item {
    padding-bottom: 5.33vw;
  }
  .index-section4 .item:last-child {
    padding-bottom: 8vw;
  }
  .index-section4 .item .number {
    flex-shrink: 0;
    width: 10.67vw;
    height: 10.67vw;
    line-height: 10.67vw;
    margin-right: 4.27vw;
    font-size: 4.8vw;
    text-align: center;
  }
  .index-section4 .item .number:after {
    width: 0.27vw;
  }
  .index-section4 .item .text1 {
    font-size: 3.47vw;
    margin-bottom: 2.13vw;
  }
  .index-section4 .item .text2 {
    font-size: 2.13vw;
  }
  .index-section4 .tel {
    padding-left: 4vw;
    border-radius: 26.67vw;
    max-width: inherit;
  }
  .index-section4 .tel .icon {
    width: 5.33vw;
    flex-shrink: 0;
    margin-right: 2.67vw;
  }
  .index-section4 .tel .text1 {
    font-size: 3.73vw;
    margin-right: 1.33vw;
  }
  .index-section4 .tel .text2 {
    font-size: 4.8vw;
  }
  .index-section4 .tel .jump {
    width: 17.33vw;
    height: 9.6vw;
    line-height: 9.6vw;
    border-radius: 26.67vw;
    font-size: 3.2vw;
  }
  .index-section4 .right-body {
    margin-top: 8vw;
    width: 100%;
  }
}
/* ==================== 首页 - 板块四 End ==================== */
/* ==================== 首页 - 板块五 Start ==================== */
.index-section5 {
  padding-bottom: 4.17vw;
}
.index-section5 .index-section5-title {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 6.56vw;
  background: url(../image/d519158d7a53a5d8c7f37ee78fd744127d132c8d.jpg) no-repeat center;
  background-size: auto 6.56vw;
  text-align: center;
  padding-bottom: 0.52vw;
}
.index-section5 .index-section5-title .text1 {
  font-size: 1.56vw;
  padding-bottom: 0.26vw;
  padding-left: 0.31vw;
  padding-right: 0.31vw;
  border-bottom: 0.05vw solid #fdfdff;
  margin-bottom: 0.26vw;
  color: #fdfdff;
  font-weight: bold;
}
.index-section5 .index-section5-title .text2 {
  font-size: 1.15vw;
  color: #fdfdff;
}
.index-section5 .tabs-list {
  margin-top: 0.73vw;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.56vw;
}
.index-section5 .tabs-list .tab-item {
  display: block;
  font-size: 0.94vw;
  color: #454545;
  min-width: 12.5vw;
  text-align: center;
  padding: 0 1.04vw;
  height: 3.49vw;
  line-height: 3.49vw;
  border: 0.05vw solid #dcdcdc;
  transition: all 0.4s;
  width: 25%;
}
.index-section5 .tabs-list .tab-item:hover,
.index-section5 .tabs-list .tab-item.active {
  background-color: #11519b;
  color: #fff;
}
.index-section5 .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.04vw;
}
.index-section5 .btn-group .swiper-btn-prev,
.index-section5 .btn-group .swiper-btn-next,
.index-section5 .btn-group .swiper-btn-page span {
  background-color: #f2f2f2;
  font-size: 0.73vw;
  padding: 0.42vw 0.52vw;
  text-align: center;
  display: block;
  margin: 0.16vw;
  cursor: pointer;
  outline: none;
}
.index-section5 .btn-group .swiper-btn-prev:hover,
.index-section5 .btn-group .swiper-btn-next:hover {
  background-color: #11519b;
  color: #fff;
}
.index-section5 .btn-group .swiper-btn-page {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.index-section5 .btn-group .swiper-btn-page span {
  opacity: 1;
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
}
.index-section5 .btn-group .swiper-btn-page span.swiper-pagination-bullet-active {
  background-color: #11519b;
  color: #fff;
}
.index-section5 .item {
  display: block;
}
.index-section5 .item .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #11519b;
  padding: 1.04vw 0 0.42vw;
  border-bottom: 0.05vw solid #11519b;
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
}
.index-section5 .item .bottom .title {
  font-size: 0.94vw;
  line-height: 1.2;
}
.index-section5 .item .bottom .jump {
  font-size: 0.94vw;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  .index-section5 {
    padding-bottom: 10.67vw;
  }
  .index-section5 .index-section5-title {
    height: 26.67vw;
    background-size: auto 26.67vw;
  }
  .index-section5 .index-section5-title .text1 {
    font-size: 4.8vw;
    padding: 0 2.67vw 1.07vw;
    margin-bottom: 2.67vw;
  }
  .index-section5 .index-section5-title .text2 {
    font-size: 4vw;
  }
  .index-section5 .tabs-list {
    margin-top: 4vw;
    margin-bottom: 5.33vw;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .index-section5 .tabs-list .tab-item {
    width: 48.5%;
    min-width: inherit;
    font-size: 3.2vw;
    height: auto;
    line-height: inherit;
    padding: 2.13vw 2.67vw;
    margin: 0;
  }
  .index-section5 .tabs-list .tab-item:nth-child(2n) {
    margin-left: 3%;
  }
  .index-section5 .tabs-list .tab-item:nth-child(2) ~ .tab-item {
    margin-top: 3%;
  }
  .index-section5 .item .bottom {
    display: block;
    padding: 2.67vw 0 1.6vw;
  }
  .index-section5 .item .bottom .title {
    font-size: 3.73vw;
    margin-bottom: 1.07vw;
  }
  .index-section5 .item .bottom .jump {
    font-size: 3.2vw;
  }
  .index-section5 .btn-group {
    margin-top: 8vw;
    border-bottom-width: 1px;
  }
  .index-section5 .btn-group .swiper-btn-prev,
  .index-section5 .btn-group .swiper-btn-next,
  .index-section5 .btn-group .swiper-btn-page span {
    padding: 1.33vw 2.67vw;
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块五 End ==================== */
/* ==================== 首页 - 板块六 Start ==================== */
.index-section6 {
  background: url(../image/937f7e69f05b46a873227ec0c600b95f84b71200.png) no-repeat center top;
  background-size: contain;
}
.index-section6 .body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index-section6 .body .item:nth-child(n+3),
.index-section6 .body .item2:nth-child(n+3) {
  margin-top: 3.13vw;
}
.index-section6 .item .head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #f2f2f2;
}
.index-section6 .item .head .title {
  color: #fff;
  text-align: center;
  background-color: #11509b;
  width: 9.9vw;
  height: 4.17vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.index-section6 .item .head .title .text1 {
  font-size: 0.94vw;
  font-weight: bold;
  line-height: 1.1;
}
.index-section6 .item .head .title .text2 {
  font-size: 0.73vw;
  margin-top: 0.42vw;
  line-height: 1.1;
}
.index-section6 .item .head .more-btn {
  width: 5.47vw;
  height: 2.45vw;
  line-height: 2.45vw;
  font-size: 0.73vw;
  color: #fff;
  text-align: center;
  background-color: #eb6100;
}
.index-section6 .item .list-item {
  width: 100%;
  display: flex;
  border-bottom: 0.05vw solid #e7e6e6;
  padding: 1vw 1.56vw;
}
.index-section6 .item .list-item.active .date .day {
  font-weight: bold;
}
.index-section6 .item .list-item.active .date .year {
  display: block;
}
.index-section6 .item .list-item.active .desc {
  display: -webkit-box;
}
.index-section6 .item .list-item.active .title {
  color: #11519b;
}
.index-section6 .item .list-item .date {
  flex-shrink: 0;
  margin-right: 4.17vw;
  text-align: center;
  min-width: 3.13vw;
}
.index-section6 .item .list-item .date .day {
  font-size: 0.99vw;
  color: #000;
  line-height: 1.2;
  transition: all 0.4s;
}
.index-section6 .item .list-item .date .year {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  margin-top: 0.26vw;
  display: none;
  transition: all 0.4s;
}
.index-section6 .item .list-item .info {
  min-width: 0;
  flex-grow: 1;
}
.index-section6 .item .list-item .title {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  margin-top: 0.16vw;
  transition: all 0.4s;
}
.index-section6 .item .list-item .desc {
  line-height: 1.6;
  text-align: justify;
  font-size: 0.73vw;
  color: #666;
  display: none;
  margin-top: 0.52vw;
}
.index-section6 .item2 {
  display: flex;
  align-items: flex-start;
}
.index-section6 .item2 .head {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #13519c;
  flex-shrink: 0;
  margin-right: 1.56vw;
  padding: 2.08vw 1.82vw 1.56vw;
  /*min-height: 20.21vw;*/
}
.index-section6 .item2 .head .title .text1 {
  font-size: 0.94vw;
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 0.78vw;
}
.index-section6 .item2 .head .title .text2 {
  font-size: 0.83vw;
  color: #fff;
  line-height: 1.2;
}
.index-section6 .item2 .head .more-btn {
  display: flex;
  width: 1.77vw;
  flex-shrink: 0;
  transition: transform 0.4s;
}
.index-section6 .item2 .head .more-btn:hover {
  transform: translateX(0.26vw);
}
.index-section6 .item2 .list {
  min-width: 0;
  flex-grow: 1;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.index-section6 .item2 .list-item {
  width: 100%;
  display: block;
  padding: 0.52vw 0;
  border-bottom: 0.1vw solid #e7e6e6;
}
.index-section6 .item2 .list-item:hover .text1 .text {
  color: #11519b;
}
.index-section6 .item2 .list-item:first-child {
  padding-top: 0;
}
.index-section6 .item2 .list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.index-section6 .item2 .list-item .text1,
.index-section6 .item2 .list-item .text2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.index-section6 .item2 .list-item .text1 {
  font-size: 0.73vw;
  color: #303030;
  line-height: 1.2;
  margin-bottom: 0.21vw;
}
.index-section6 .item2 .list-item .text1 .icon {
  background-color: #eb6100;
}
.index-section6 .item2 .list-item .text2 {
  color: #666;
}
.index-section6 .item2 .list-item .text2 .icon {
  background-color: #11509b;
}
.index-section6 .item2 .list-item .icon {
  width: 1.46vw;
  height: 1.46vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.73vw;
  color: #feffff;
  font-weight: bold;
  margin-right: 0.73vw;
}
.index-section6 .item2 .list-item .text {
  font-size: 0.73vw;
  color: #666;
  line-height: 1.2;
  min-width: 0;
  flex-grow: 1;
  transition: color 0.4s;
}
@media screen and (min-width: 1100px) {
  .index-section6 {
    padding-top: 4.17vw;
    padding-bottom: 5.21vw;
  }
  .index-section6 .index-title {
    padding-top: 0;
    padding-bottom: 3.39vw;
  }
  .index-section6 .list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .index-section6 .item,
  .index-section6 .item2 {
    width: 34.9vw;
    flex-shrink: 0;
  }
  .index-section6 .item .list-item .desc{
    min-height: 3.2em;
  }
}
@media screen and (max-width: 1100px) {
  .index-section6 {
    padding-top: 10.67vw;
    background-size: auto 5.33vw;
  }
  .index-section6 .index-title {
    padding-top: 0;
  }
  .index-section6 .item {
    width: 100%;
  }
  .index-section6 .item:nth-child(1) ~ .item {
    margin-top: 8vw;
  }
  .index-section6 .item .head .title {
    width: auto;
    height: inherit;
    padding: 2.67vw 5.33vw;
  }
  .index-section6 .item .head .title .text1 {
    font-size: 3.73vw;
    line-height: 1.2;
  }
  .index-section6 .item .head .title .text2 {
    font-size: 3.2vw;
    line-height: 1.2;
    margin-top: 0vw;
  }
  .index-section6 .item .head .more-btn {
    width: auto;
    height: inherit;
    padding: 2.13vw 2.67vw;
    font-size: 3.2vw;
  }
  .index-section6 .item .list-item {
    padding: 3.2vw 4vw;
  }
  .index-section6 .item .list-item .date {
    margin-right: 4vw;
  }
  .index-section6 .item .list-item .date .day {
    font-size: 3.73vw;
  }
  .index-section6 .item .list-item .date .year {
    font-size: 3.2vw;
    margin-top: 1.33vw;
  }
  .index-section6 .item .list-item .title {
    font-size: 3.73vw;
    margin-top: 0vw;
  }
  .index-section6 .item .list-item .desc {
    margin-top: 1.33vw;
    font-size: 3.2vw;
  }
  .index-section6 .item2 {
    display: block;
    width: 100%;
  }
  .index-section6 .item2 .head {
    margin-bottom: 4vw;
    flex-flow: row;
    padding: 4vw;
    min-height: inherit;
  }
  .index-section6 .item2 .head .title .text1 {
    font-size: 3.73vw;
    margin-bottom: 0;
  }
  .index-section6 .item2 .head .title .text2 {
    font-size: 3.2vw;
  }
  .index-section6 .item2 .head .more-btn {
    width: 8vw;
  }
  .index-section6 .item2 .list-item {
    padding-top: 2.67vw;
    padding-bottom: 2.67vw;
  }
  .index-section6 .item2 .list-item .text1 {
    margin-bottom: 1.33vw;
  }
  .index-section6 .item2 .list-item .icon {
    width: 6.4vw;
    height: 6.4vw;
    font-size: 3.2vw;
    margin-right: 2.67vw;
  }
  .index-section6 .item2 .list-item .text {
    font-size: 3.73vw;
  }
}
/* ==================== 首页 - 板块六 End ==================== */
/* ==================== 首页 - 板块七 Start ==================== */
.index-section7 {
  background: url(../image/8ce2d519623e3590087327d946976eac00fe9209.jpg) no-repeat center top;
  background-size: 100%;
}
.index-section7 .body1 {
  padding: 0.52vw;
  padding-bottom: 0;
  background-color: #fff;
  box-shadow: 0vw 0.16vw 0.36vw 0vw rgba(195, 195, 195, 0.28);
}
.index-section7 .body1 .image img {
  width: 100%;
}
.index-section7 .body1 .info {
  padding-top: 0.78vw;
  padding-left: 3.13vw;
  padding-right: 3.13vw;
  padding-bottom: 1.56vw;
}
.index-section7 .body1 .text1 {
  font-size: 1.04vw;
  color: #000;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.52vw;
  text-align: center;
}
.index-section7 .body1 .text2 {
  font-size: 0.73vw;
  color: #535252;
  line-height: 1.8;
  text-align: justify;
}
.index-section7 .itembox {
  margin-top: 2.08vw;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.index-section7 .itembox .item {
  padding: 1.3vw 1.04vw;
  background-color: #11519b;
}
.index-section7 .itembox .item .text1 {
  font-size: 1.25vw;
  color: #fff;
  font-weight: bold;
  margin-bottom: 0.78vw;
}
.index-section7 .itembox .item .text2 {
  font-size: 0.83vw;
  color: #fff;
  line-height: 1.8;
}
@media screen and (min-width: 1100px) {
  .index-section7 {
    padding-bottom: 2.08vw;
  }
  .index-section7 .itembox .item {
    width: 24.5%;
    margin-right: 0.6%;
  }
  .index-section7 .itembox .item:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .index-section7 {
    background-size: 100% 48vw;
    padding-bottom: 8vw;
  }
  .index-section7 .body1 {
    padding: 1.33vw;
  }
  .index-section7 .body1 .info {
    padding: 2.67vw 1.33vw 2.67vw;
  }
  .index-section7 .body1 .info .text1 {
    margin-bottom: 2.67vw;
    font-size: 3.73vw;
  }
  .index-section7 .body1 .info .text2 {
    font-size: 3.2vw;
  }
  .index-section7 .itembox {
    margin-top: 5.33vw;
  }
  .index-section7 .itembox .item {
    padding: 2.67vw;
  }
  .index-section7 .itembox .item .text1 {
    font-size: 3.73vw;
    margin-bottom: 2.67vw;
  }
  .index-section7 .itembox .item .text2 {
    font-size: 3.2vw;
  }
}
/* ==================== 首页 - 板块七 End ==================== */
.swiper-button-next,
.swiper-button-prev{
  background-image: none;
}
.page-banner .nybt{z-index:3;display:none;}
.page-banner .nybt h3{font-size:0.6rem;}
#toolbar .online-one li.phone .tel-phone{display: flex;flex-wrap:wrap;height:100%;justify-content: center;align-items: center;width:140px;}
.product-detail-tab .product-detail-tabli li.on:before,
.product-detail-tab .product-detail-tabli li:visited:before,
.product-detail-tab .product-detail-tabli li:active:before{display:none;}
.product-detail-tab .product-detail-tabli li.on,
.product-detail-tab .product-detail-tabli li:visited,
.product-detail-tab .product-detail-tabli li:active{color:#fff;}
.product-detail-tab .product-detail-tabli li{background:#11519b;color:#fff;font-size:15px;font-weight:bold;}
.product-detail-tabcon{font-size:18px;line-height:1.8;text-align:justify;}
.page-banner .nybt{display: none;}
.ueditor_baidumap{width:100%;}
/* 相册调整 */
.xypg-album-list{display:flex;align-items:flex-start;flex-wrap:wrap;margin-left:0;margin-right:0;}
.xypg-album-list li{padding:10px;border:1px solid #eaeaea;padding-bottom:0;margin:0;width:32%;}
.xypg-album-list li:nth-child(3n-1){margin-left:2%;margin-right:2%;}
.xypg-album-list li:nth-child(3)~li{margin-top:2%;}
.xypg-album-list li h3{position:static;color:#666;font-size:16px;background:none;height:40px;line-height:40px;margin-top:10px;}
@media screen and (min-width: 751px) {
  /* .page-wrap{padding-top:30px;} */
  .easyzoom-flyout img{max-width:inherit;}
  .container{width:100%;max-width:1400px;}
}
@media screen and (max-width: 751px) {
  body{padding-bottom:0;padding-top:0;margin-bottom:50px;}
  .page-product-detail-effect .big-img{pointer-events:none;}
  .page-banner .nybt h3{font-size:20px;}
  .page-product-detail-effect .big-img a{height:auto;}
  .container2{padding-left:20px;padding-right:20px;}
  .page-product-detail-effect .big-img{height:auto;}
  .page-banner{
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .page-banner>img{
    max-width: 240%;
    width:240%;
  }
  .xypg-product-list,
  .xypg-case-list{display:flex;flex-wrap:wrap;}
  .xypg-product-list li,
  .xypg-case-list li{width:48%;margin:0;}
  .xypg-product-list li:nth-child(2n),
  .xypg-case-list li:nth-child(2n){margin-left:4%;}
  .xypg-product-list li:nth-child(2)~li,
  .xypg-case-list li:nth-child(2)~li{margin-top:4%;}
  .xypg-pagination>div{margin-bottom:10px;}
  .xypg-case-list li h3 a{padding-bottom:0;}
  .xypg-news-list li{padding:15px;margin-bottom:15px;}
  .xypg-news-list li .more{text-align:center;margin-top:0px;}
  .xypg-news-list li .more span{width:90px;margin:0 auto;}
  .product-detail-tabcon{font-size:16px;}
  .product-detail-tab .product-detail-tabli li{padding:8px 15px;width:auto;line-height:1.2;height:auto;}
  .product-detail-tab .product-detail-tabli{height:auto;}
  /* 相册调整 */
  .xypg-album-list{justify-content:space-between;}
  .xypg-album-list:before,
  .xypg-album-list:after{display:none;}
  .xypg-album-list li{width:48%;margin:0;}
  .xypg-album-list li:nth-child(2)~li{margin-top:2%;}
}

/* ==================== 首页 - 板块零 Start ==================== */

.index-section0 > .mxw-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.index-section0 .left-body {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.index-section0 .left-body .text1 {
  color: #11509b;
  font-size: 16px;
  background: -webkit-linear-gradient(left, #11509b, #3173c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  margin-right: 5px;
}
.index-section0 .left-body .text2 {
  font-size: 14px;
  color: #232222;
  line-height: 1.2;
}
.index-section0 .left-body .text2 a {
  color: #615f5f;
}
.index-section0 .left-body .text2 a:hover {
  text-decoration: underline;
  color: #de5415;
}
.index-section0 form {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #eff6ff;
  border-radius: 4px;
}
.index-section0 form input {
  padding-left: 35px;
  padding-right: 35px;
  width: 420px;
}
.index-section0 form button {
  width: 90px;
  height: 45px;
  line-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.index-section0 form button:before {
  content: "";
  display: block;
  width: 0;
  height: 18px;
  border-left: 1px dashed #999;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.index-section0 form button img {
  width: 25px;
}
/* ==================== 首页 - 板块零 End ==================== */