@charset "UTF-8";
/**
 * @desc mod_style
 * @author Tven
 * @date 2023-12-7
 */
body {
  font-size: 14px;
}

/* 隐藏滚动条 */
body::-webkit-scrollbar {
  display: none;
}

/**
* $row 一行元素个数
* $gap 元素左右间距
* $bottom 元素上下间距
* $xsNum 小屏幕一行元素个数-可选值
* $xsBottom 小屏幕元素上下间距-可选值
*/
.fz_36 {
  font-size: 36px;
}

.fz_34 {
  font-size: 34px;
}

.fz_32 {
  font-size: 32px;
}

.fz_30 {
  font-size: 30px;
}

.fz_28 {
  font-size: 28px;
}

.fz_26 {
  font-size: 26px;
}

.fz_24 {
  font-size: 24px;
}

.fz_22 {
  font-size: 22px;
}

.fz_20 {
  font-size: 20px;
}

.fz_18 {
  font-size: 18px;
}

.fz_16 {
  font-size: 16px;
}

.fz_14 {
  font-size: 14px;
}

.fz_12 {
  font-size: 12px;
}

p {
  font-size: 16px;
}

@font-face {
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  src: url("../fonts/AVANTGARDEGOTHICC-DEMI.OTF");
}

.mod_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all .5s ease;
}

.mod_header.active {
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
}

.mod_header.active.cur {
  background: rgba(0, 0, 0, 0.75);
  opacity: 1;
  pointer-events: auto;
}

.mod_header .header {
  position: relative;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
}

.mod_header .header .head_top {
  margin-bottom: 1rem;
}

.mod_header .header .head_top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mod_header .header .head_top ul li {
  margin-left: 1rem;
}

.mod_header .header .head_top ul li a {
  color: rgba(255, 255, 255, 0.85);
  transition: all .2s ease;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.24);
}

.mod_header .header .head_top ul li a:hover {
  color: #fff;
  background: #151515;
}

.mod_header .header .head_top ul li a i {
  font-size: 16px;
}

.mod_header .header .header_center {
  position: relative;
}

.mod_header .header .header_center .logo {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.mod_header .header .header_center .logo a {
  display: inline-block;
}

.mod_header .header .header_center .logo a img {
  height: 80px;
}

.mod_header .header .header_center nav {
  margin-left: auto;
}

.mod_header .header .header_center nav > ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.mod_header .header .header_center nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.mod_header .header .header_center nav > ul > li::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mod_header .header .header_center nav > ul > li:last-child {
  padding-right: 0;
}

.mod_header .header .header_center nav > ul > li:last-child::after {
  display: none;
}

.mod_header .header .header_center nav > ul > li:hover > a {
  color: #fff;
}

.mod_header .header .header_center nav > ul > li:hover > i {
  color: #fff;
}

.mod_header .header .header_center nav > ul > li:hover > ul {
  opacity: 1;
  pointer-events: auto;
}

.mod_header .header .header_center nav > ul > li.active > a {
  color: #fff;
  position: relative;
}

.mod_header .header .header_center nav > ul > li.active > a::after {
  position: absolute;
  left: 0;
  bottom: -.725rem;
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
}

.mod_header .header .header_center nav > ul > li > a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: all .5s ease;
  text-transform: uppercase;
}

.mod_header .header .header_center nav > ul > li i {
  font-size: 1.125rem;
  margin-left: .5rem;
  transition: all .5s ease;
  color: rgba(255, 255, 255, 0.85);
}

.mod_header .header .header_center nav > ul > li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: .5rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  min-width: 12rem;
  border-radius: 0 0 1rem 1rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
}

.mod_header .header .header_center nav > ul > li ul::after {
  content: '';
  width: 100%;
  height: 1.5rem;
  bottom: 100%;
  left: 0;
  position: absolute;
}

.mod_header .header .header_center nav > ul > li ul li {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mod_header .header .header_center nav > ul > li ul li:last-child {
  border: none;
}

.mod_header .header .header_center nav > ul > li ul li a {
  display: block;
  font-size: 16px;
  color: #333;
  padding: .5em 0;
  transition: all .5s ease;
  white-space: nowrap;
}

.mod_header .header .header_center nav > ul > li ul li:hover > a, .mod_header .header .header_center nav > ul > li ul li:hover > i {
  color: #0e3289;
}

.mod_header .header .header_center .head_search {
  margin: 0 2.5rem;
}

.mod_header .header .header_center .head_search span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}

.mod_header .header .header_center .head_search span:hover {
  color: #fff;
  background: #151515;
}

.mod_header .header .header_center .head_quote a {
  display: inline-block;
  padding: .375rem 1.5rem;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all .5s ease;
  white-space: nowrap;
  border-radius: 1.25rem;
}

.mod_header .header .header_center .head_quote a i {
  margin-right: .5rem;
}

.mod_header .header .header_center .head_quote a:hover {
  background: #151515;
}

.mod_header .header .head_search_module {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: all .5s ease;
  display: flex;
  align-items: center;
  padding: 0 34px;
}

.mod_header .header .head_search_module form {
  width: 100%;
}

.mod_header .header .head_search_module form input {
  width: 100%;
  font-size: 2rem;
  background: none;
  border: none;
  outline: none;
  color: #fff;
}

.mod_header .header .head_search_module form input::placeholder {
  color: #fff;
}

.mod_header .header .head_search_module form span {
  cursor: pointer;
}

.mod_header .header .head_search_module form span i {
  color: #fff;
  font-size: 1.5rem;
}

.mod_header .header .head_search_module.active {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  background: #044e8c;
  padding-top: 4.375rem;
  color: #fff;
}

.footer .flex-row {
  display: flex;
  justify-content: space-between;
}

.footer .flex-row .caption {
  margin-left: 10px;
}

.footer .flex-row .caption:first-child {
  width: 20%;
  margin-left: 0;
}

.footer .flex-row .caption:not(:first-child) {
  text-align: right;
}

.footer .flex-row .caption p {
  line-height: 2;
}

.footer .flex-row .caption p:first-child {
  margin-bottom: 2rem;
}

.footer .flex-row .caption p img {
  max-height: 85px;
}

.footer .flex-row .caption .link {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.footer .flex-row .caption .link a {
  margin-right: 1rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: #3c74a3;
  color: #fff;
  font-size: 18px;
}

.footer .flex-row .caption ul {
  display: inline-block;
  text-align: left;
}

.footer .flex-row .caption ul li {
  margin-bottom: .75rem;
}

.footer .flex-row .caption ul li:first-child {
  margin-bottom: 2rem;
}

.footer .flex-row .caption ul li:first-child a {
  font-size: 18px;
  font-weight: bold;
}

.footer .flex-row .caption ul li a {
  color: #fff;
}

.footer .foot_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.33);
  margin-top: 2rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer .foot_bottom span a {
  color: rgba(255, 255, 255, 0.68);
  transition: all .3s ease;
}

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

.mod_oh {
  overflow: hidden;
}

.mod_oh.dib {
  display: inline-block;
}

.mySwiper {
  height: 100vh;
}

.mySwiper > .swiper-wrapper > .swiper-slide .flex {
  padding-top: 6.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper > .swiper-wrapper > .swiper-slide:last-child {
  height: auto;
}

.mySwiper .mySwiper-pagination {
  left: 10px;
  right: auto;
}

.banner {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
}

.banner .swiper .swiper-wrapper .swiper-slide .container {
  position: relative;
  z-index: 3;
  color: #fff;
}

.banner .swiper .swiper-wrapper .swiper-slide .container .mod_oh:last-child {
  margin-top: 1.5rem;
}

.banner .swiper .swiper-wrapper .swiper-slide .container .banner_scroll_right {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
}

.banner .swiper .swiper-wrapper .swiper-slide .container .banner_scroll_right b {
  font-size: 1.875rem;
  margin-right: .25rem;
  line-height: 1;
}

.banner .swiper .swiper-wrapper .swiper-slide .container img {
  max-height: 4.125rem;
}

.banner .swiper .swiper-wrapper .swiper-slide .container span {
  display: block;
  font-size: 4.25rem;
  text-transform: uppercase;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
}

.banner .swiper .swiper-wrapper .swiper-slide .container h2 {
  font-size: 1.625rem;
  text-transform: capitalize;
  font-weight: bold;
}

.banner .swiper .swiper-pagination1 {
  bottom: 15px;
}

.banner .swiper .swiper-pagination1 span {
  opacity: 1;
  width: 16px;
  height: 16px;
  border: 6px solid #131313;
  background: #fff;
  transition: all .3s ease;
}

.banner .swiper .swiper-pagination1 span.swiper-pagination-bullet-active {
  background: #131313;
  border-color: #fff;
}

.banner .swiper .ico_next, .banner .swiper .ico_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .swiper .ico_next {
  right: 3.5%;
}

.banner .swiper .ico_prev {
  left: 3.5%;
}

.index_product {
  height: 100%;
  width: 100%;
}

.index_product ul {
  width: 100%;
  height: 100%;
}

.index_product ul li {
  width: 12.8%;
  height: 100%;
  transition: all .5s ease;
}

.index_product ul li.active {
  width: 36%;
}

.index_product ul li.active a::after {
  background: transparent;
}

.index_product ul li.active .pro_top {
  opacity: 0;
  transform: translateY(-100%);
}

.index_product ul li.active .pro_bottom {
  opacity: 1;
}

.index_product ul li a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.index_product ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all .5s ease;
}

.index_product ul li a .pro_top {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
  transition: all .5s ease;
}

.index_product ul li a .pro_top i {
  font-size: 2.875rem;
}

.index_product ul li a .pro_top span {
  display: block;
}

.index_product ul li a .pro_bottom {
  position: absolute;
  bottom: 2.875rem;
  left: 0;
  z-index: 2;
  width: 100%;
  background-image: linear-gradient(to right, #0e3289, rgba(14, 50, 137, 0.3));
  display: flex;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: all .5s ease;
}

.index_product ul li a .pro_bottom i {
  color: #e3c389;
  font-size: 2.875rem;
}

.index_product ul li a .pro_bottom .text {
  margin-left: 1.5rem;
}

.index_product ul li a .pro_bottom .text h3 {
  color: #e3c389;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_product ul li a .pro_bottom .text p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
}

.index_product ul li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index_about {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.index_about .iabout_text {
  width: 50%;
  position: relative;
  z-index: 2;
}

.index_about .iabout_text .mod_content {
  margin-bottom: .5rem;
  margin-right: 18%;
  padding-right: 15px;
  max-height: 220px;
  overflow: auto;
  text-indent: 2em;
}

.index_about .iabout_text ul {
  display: flex;
  justify-content: space-around;
  margin-top: 2.5rem;
}

.index_about .iabout_text ul li a {
  color: #0e3289;
  transition: color .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index_about .iabout_text ul li a:hover {
  color: #e3c389;
}

.index_about .iabout_text ul li a i {
  font-size: 2.875rem;
}

.index_about .iabout_swiper {
  width: 50%;
  position: relative;
}

.index_about .iabout_swiper .iabout_kuang {
  position: relative;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: transparent;
  box-shadow: 0 0 10px 0 black;
}

.index_about .iabout_swiper .swiper {
  width: calc(100% + 11.25rem);
  margin-left: -11.25rem;
  height: 46.875rem;
  mask-image: url(../img/zhezhao.png);
  -webkit-mask-image: url(../img/zhezhao.png);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.index_about .iabout_swiper .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index_about .iabout_swiper .swiper .swiper2_scroll_right {
  color: #eeeeee;
  position: absolute;
  right: 10%;
  bottom: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
}

.index_about .iabout_swiper .swiper .swiper2_scroll_right b {
  font-size: 1.875rem;
  margin-right: .25rem;
  line-height: 1;
}

.index_news {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.index_news .mod_more a {
  padding: 8px 20px;
  background: none;
  border: 1px solid #999;
}

.index_news .inews_head {
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
}

.index_news .inews_head:hover .img a img {
  transform: scale(1.05);
}

.index_news .inews_head .img {
  width: 50%;
}

.index_news .inews_head .img a {
  display: block;
  aspect-ratio: 2.2 / 1;
  overflow: hidden;
}

.index_news .inews_head .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease-out;
}

.index_news .inews_head .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #0e3289;
}

.index_news .inews_head .text .mate a {
  background: #e3c389;
}

.index_news .inews_head .text h3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.index_news .inews_head .text h3 a {
  color: #fff;
}

.index_news .inews_head .text p {
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.index_news .text {
  padding: 2.5rem;
  background: #fff;
}

.index_news .text .mate a {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
  background: #0e3289;
  font-size: 14px;
}

.index_news .text h3 {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index_news .text h3 a {
  color: #131313;
  font-weight: bold;
  transition: color .3s ease;
}

.index_news .text p {
  color: rgba(0, 0, 0, 0.76);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.8;
}

.index_news .items {
  display: flex;
}

.index_news .items .item {
  margin-bottom: 15px;
  width: calc((100% - 2.75rem)/3);
  transition: all .3s ease;
}

.index_news .items .item:hover {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.index_news .items .item:hover .text h3 a {
  color: #0e3289;
}

.index_news .items .item:not(:nth-child(3n)) {
  margin-right: 1.375rem;
}

.index_zeren {
  width: 100%;
  height: 100%;
  color: #fff;
  position: relative;
}

.index_zeren .swiper {
  height: 100%;
  width: 100%;
}

.index_zeren .swiper .swiper-slide {
  display: flex;
  align-items: center;
}

.index_zeren .swiper .swiper-slide .mod_title {
  margin-bottom: 5rem;
}

.index_zeren .swiper .swiper-slide .mod_content {
  width: 60%;
  padding-right: 15px;
  color: #fff;
}

.index_zeren > .container {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 10%;
  z-index: 2;
  color: #b6986c;
}

.index_zeren > .container ul {
  display: flex;
  align-items: center;
  text-align: center;
}

.index_zeren > .container ul li {
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0 .5rem;
}

.index_zeren > .container ul li.active i {
  background: #b6986c;
  color: #fff;
}

.index_zeren > .container ul li.line {
  flex-shrink: initial;
  width: 100%;
  height: 1px;
  background: #b6986c;
}

.index_zeren > .container ul li.line:nth-child(3) {
  width: 20%;
}

.index_zeren > .container ul li i {
  margin: 0 auto;
  font-size: 2.5rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  border-radius: 50%;
  transition: all .3s ease;
}

.about_1 {
  padding: 7.5rem 0;
}

.about_1 .left {
  padding-left: calc(6.5625rem + 15px);
  width: 50%;
}

.about_1 .left ul li:nth-last-child(2) span {
  display: flex;
  align-items: center;
}

.about_1 .left ul li span {
  line-height: 1.1;
  font-size: 1rem;
  color: #0e3289;
}

.about_1 .left ul li span strong {
  font-size: 3rem;
}

.about_1 .left ul li span b {
  font-size: 2.5rem;
}

.about_1 .left ul li p {
  margin: 0;
  margin-top: .5rem;
}

.about_1 .left .mod_content {
  margin-top: 3rem;
  max-height: 25rem;
  overflow: auto;
}

.about_1 .left .mod_content p {
  text-indent: 2em;
}

.about_1 .right {
  width: 50%;
  padding-left: 30px;
}

.about_1 .right img {
  max-width: 100%;
}

.about_2 {
  position: relative;
  padding: 6.875rem 0;
  background: #f0f0f0;
}

.about_2 .swiper1 .swiper-slide {
  width: 50%;
  position: relative;
  aspect-ratio: 1.84 / 1;
  overflow: hidden;
}

.about_2 .swiper1 .swiper-slide.swiper-slide-active .name {
  transform: translateX(0);
  transition-delay: .6s;
}

.about_2 .swiper1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_2 .swiper1 .swiper-slide .name {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  width: 7.5rem;
  height: 100%;
  background: rgba(14, 50, 137, 0.82);
  transition: all .5s ease;
  transform: translateX(100%);
  text-align: center;
  writing-mode: vertical-lr;
  letter-spacing: 4px;
}

.about_2 .swiper1 .swiper-slide .name::after {
  content: '';
  width: 1px;
  height: 20%;
  background: #fff;
  margin: 2rem 0;
}

.about_2 .about2_detail {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about_2 .about2_detail .swiper {
  margin: 0;
  margin-top: -8%;
  width: 60%;
  background: #fff;
  padding: 2.5rem 6.25rem;
}

.about_2 .about2_detail .swiper .swiper-slide {
  background: #fff;
}

.about_2 .about2_detail .swiper .swiper-slide h2 {
  color: #0e3289;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.about_2 .about2_detail .swiper .swiper-slide h2 a {
  display: flex;
  align-items: center;
}

.about_2 .about2_detail .swiper .swiper-slide h2 a:hover span {
  color: #0e3289;
}

.about_2 .about2_detail .swiper .swiper-slide h2 a i {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0e3289;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_2 .about2_detail .swiper .swiper-slide h2 a span {
  color: #666;
  font-size: 14px;
  text-decoration: underline;
  transition: all .3s ease;
}

.about_2 .about2_detail .swiper .swiper-slide ul li span {
  line-height: 1.1;
  font-size: 1rem;
  color: #0e3289;
}

.about_2 .about2_detail .swiper .swiper-slide ul li span strong {
  font-size: 2rem;
}

.about_2 .about2_detail .swiper .swiper-slide ul li p {
  margin: 0;
  margin-top: .5rem;
}

.about_2 .about2_detail .swiper .swiper-slide .mod_content {
  margin-bottom: 1.5rem;
  height: 90px;
  overflow: auto;
}

.about_2 .about2_detail .swiper_fanye {
  display: flex;
}

.about_2 .about2_detail .swiper_fanye .ico_prev, .about_2 .about2_detail .swiper_fanye .ico_next {
  width: 5.625rem;
  height: 5.625rem;
  background: #5ca5e6;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_2 .about2_detail .swiper_fanye .ico_next {
  background: #0e3289;
}

.about_3 {
  padding: 5.875rem 0;
}

.about_3 .left {
  width: 50%;
  padding-right: 30px;
}

.about_3 .left img {
  max-width: 100%;
}

.about_3 .right {
  padding-right: calc(6.5625rem + 15px);
  width: 50%;
}

.about_3 .right > h3 {
  color: #0e3289;
  line-height: 1.8;
}

.about_3 .right .mod_content {
  max-height: 34.375rem;
  overflow: auto;
}

.history {
  padding: 6.25rem 0;
  min-height: 87.5rem;
  overflow: hidden;
}

.history .items {
  width: 50%;
  margin: 0 auto;
  position: relative;
}

.history .items .xian {
  width: 1px;
  height: 200%;
  background: #cad2e5;
  position: absolute;
  left: 45%;
  top: 0;
}

.history .items .xian i {
  background: #0e3289;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0;
}

.history .items .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0e3289;
  padding: 3rem 0;
  position: relative;
  z-index: 2;
}

.history .items .item .time {
  font-size: 5rem;
  font-weight: bold;
  width: calc(45% - (5rem + 7px)/2);
  text-align: right;
}

.history .items .item .line {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0e3289;
  margin: 0 2.5rem;
}

.history .items .item .mod_content {
  width: calc(55% - (5rem + 7px)/2);
}

.honor {
  padding: 7.5rem 0;
  padding-bottom: 11rem;
}

.honor .line {
  margin-top: 5rem;
  position: relative;
  margin-right: 20%;
}

.honor .line::after {
  content: '';
  width: 35%;
  height: 2px;
  background: #0e3289;
  position: absolute;
  top: 0;
  left: 0;
}

.honor .line::before {
  content: '';
  width: 35%;
  height: 2px;
  background: #0e3289;
  position: absolute;
  top: 0;
  left: 45%;
}

.honor .h_auto {
  margin-right: 20%;
  max-height: 34.375rem;
  overflow: auto;
}

.honor .h_auto ul {
  width: 35%;
  margin-right: 10%;
  padding-top: 2.5rem;
}

.honor .h_auto ul:last-child {
  width: 45%;
}

.honor .h_auto ul li {
  display: flex;
  margin-bottom: 1.5rem;
}

.honor .h_auto ul li .time {
  width: 10rem;
  padding-left: 2rem;
  color: #0e3289;
  font-weight: bold;
  flex-shrink: 0;
}

.honor .h_auto ul li p {
  line-height: 1.8;
}

.honor .swiper {
  margin-top: 5rem;
  padding-top: 8.125rem;
  margin-left: calc(6.5625rem + 15px);
}

.honor .swiper .swiper_more {
  display: flex;
  align-items: center;
  position: absolute;
  right: calc(6.5625rem + 15px);
  top: 0;
}

.honor .swiper .swiper_more .swiper-pagination1 {
  position: static;
  width: auto;
  color: #0e3289;
  font-size: 1.125rem;
}

.honor .swiper .swiper_more .swiper-pagination1 span:first-child {
  font-size: 1.875rem;
}

.honor .swiper .swiper_more .swiper-line {
  margin-left: 1rem;
  width: 18.75rem;
  height: 1px;
  background: #d3d4d4;
  position: relative;
}

.honor .swiper .swiper_more .swiper-line i {
  width: 10%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #0e3289;
  transition: all .3s ease;
}

.honor .swiper .swiper-slide {
  text-align: center;
  max-width: calc(100%/4);
  width: auto;
}

.honor .swiper .swiper-slide a {
  max-width: 100%;
  height: 21rem;
  display: inline-block;
  border-width: 42px 45px 42px 45px;
  border-style: solid;
  border-image-source: url(../img/border.png);
  border-image-slice: 42 45 42 45;
}

.honor .swiper .swiper-slide a img {
  max-width: 100%;
  max-height: 100%;
}

.culture {
  height: 100vh;
  position: relative;
}

.culture .mod_title {
  width: 100%;
  position: absolute;
  left: 0;
  top: 15%;
  z-index: 3;
}

.culture ul {
  color: #fff;
  height: 100%;
  width: 100%;
}

.culture ul li {
  width: 20%;
  height: 100%;
  padding: 0 2rem;
  padding-top: 24%;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.culture ul li:nth-child(1) {
  transition-delay: 0.2s;
}

.culture ul li:nth-child(2) {
  transition-delay: 0.4s;
}

.culture ul li:nth-child(3) {
  transition-delay: 0.6s;
}

.culture ul li:nth-child(4) {
  transition-delay: 0.8s;
}

.culture ul li:nth-child(5) {
  transition-delay: 1s;
}

.culture ul li:hover {
  background: rgba(14, 50, 137, 0.1);
}

.culture ul li:hover i {
  background: #0e3289;
  color: #fff;
}

.culture ul li i {
  width: 7.375rem;
  height: 7.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.45);
  color: #0e3289;
  font-size: 2.25rem;
  transition: all .3s ease;
}

.culture ul li p {
  margin: 1rem 0;
}

.culture ul li .line {
  width: 1px;
  height: 5rem;
  background: #fff;
}

.concept {
  width: 100%;
  height: 100vh;
}

.concept ul {
  display: flex;
  flex-wrap: wrap;
}

.concept ul li {
  width: 33.33%;
  height: 45vh;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s ease;
}

.concept ul li:first-child {
  width: 100%;
  border-right: none;
  height: 55vh;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.concept ul li:last-child {
  border-right: none;
}

.concept ul li:not(:first-child):hover {
  background: rgba(14, 50, 137, 0.84);
}

.concept ul li:hover i {
  background: #e3c389;
}

.concept ul li .caption {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concept ul li i {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: #0e3289;
  transition: all .3s ease;
}

.concept ul li strong {
  margin: .5rem 0;
}

.jiagou {
  padding: 5rem 0;
  min-height: 131.25rem;
}

.jiagou .mod_content {
  margin-top: 5rem;
}

@keyframes enterprise_ani {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.enterprise {
  padding-top: 7.5rem;
  padding-bottom: 9.375rem;
}

.enterprise ul {
  margin-top: 7.5rem;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
}

.enterprise ul li {
  width: calc(100% / 6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 45px;
}

.enterprise ul li:nth-child(2n) {
  margin-top: 5rem;
}

.enterprise ul li:nth-child(1) {
  transition-delay: 0.2s;
  animation: enterprise_ani 2s 0.2s infinite;
}

.enterprise ul li:nth-child(2) {
  transition-delay: 0.4s;
  animation: enterprise_ani 2s 0.4s infinite;
}

.enterprise ul li:nth-child(3) {
  transition-delay: 0.6s;
  animation: enterprise_ani 2s 0.6s infinite;
}

.enterprise ul li:nth-child(4) {
  transition-delay: 0.8s;
  animation: enterprise_ani 2s 0.8s infinite;
}

.enterprise ul li:nth-child(5) {
  transition-delay: 1s;
  animation: enterprise_ani 2s 1s infinite;
}

.enterprise ul li:nth-child(6) {
  transition-delay: 1.2s;
  animation: enterprise_ani 2s 1.2s infinite;
}

.enterprise ul li:nth-child(7) {
  transition-delay: 1.4s;
  animation: enterprise_ani 2s 1.4s infinite;
}

.enterprise ul li:nth-child(8) {
  transition-delay: 1.6s;
  animation: enterprise_ani 2s 1.6s infinite;
}

.enterprise ul li:nth-child(9) {
  transition-delay: 1.8s;
  animation: enterprise_ani 2s 1.8s infinite;
}

.enterprise ul li:nth-child(10) {
  transition-delay: 2s;
  animation: enterprise_ani 2s 2s infinite;
}

.enterprise ul li:nth-child(11) {
  transition-delay: 2.2s;
  animation: enterprise_ani 2s 2.2s infinite;
}

.enterprise ul li:nth-child(12) {
  transition-delay: 2.4s;
  animation: enterprise_ani 2s 2.4s infinite;
}

.enterprise ul li p {
  font-weight: bold;
  color: #0e3289;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.enterprise ul li .drop {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #58bce6, #2878bb);
  position: relative;
}

.enterprise ul li .drop::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #3286c4;
  opacity: .35;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(2);
}

.enterprise ul li .line {
  width: 3px;
  height: 10rem;
  background-image: linear-gradient(to bottom, #2878bb, rgba(88, 188, 230, 0));
}

.business .item {
  display: flex;
  align-items: center;
  position: relative;
}

.business .item:nth-child(2n) .left {
  order: 1;
  padding-right: calc(6.5625rem + 15px);
  padding-left: 2.5rem;
}

.business .item:nth-child(2n) .right .img_title {
  left: calc(6.5625rem + 15px);
  right: auto;
  text-align: left;
}

.business .item .left {
  width: 35%;
  padding-left: calc(6.5625rem + 15px);
  padding-right: 2.5rem;
}

.business .item .left .mod_title {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #cecece;
}

.business .item .left .mod_title i, .business .item .left .mod_title span {
  font-size: 2rem;
}

.business .item .left .mod_title strong {
  color: #333;
  margin-right: .5rem;
  font-size: 2rem;
}

.business .item .left .mod_title p {
  font-size: 12px;
  margin: 0;
  padding: .5rem 1rem;
  border: 1px solid #0e3289;
  border-radius: 1rem;
  color: #0e3289;
}

.business .item .left .mod_content {
  margin: 2.5rem 0;
  max-height: 30vh;
  overflow: auto;
  padding-right: 15px;
}

.business .item .right {
  width: 65%;
  height: 100vh;
}

.business .item .right a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.business .item .right a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business .item .right a .img_title {
  position: absolute;
  bottom: 4.25rem;
  right: calc(6.5625rem + 15px);
  z-index: 2;
  color: #fff;
  font-size: 3.75rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  text-transform: uppercase;
  max-width: 55%;
  text-align: right;
  line-height: 1.1;
}

.business .item .right a .img_title span {
  font-size: 8.125rem;
  -webkit-text-stroke: 1px #fff;
  color: rgba(255, 255, 255, 0.12);
  display: block;
}

.business_ny {
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.business_ny .left {
  width: 50%;
  aspect-ratio: 1.3/1;
}

.business_ny .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business_ny .right {
  width: 50%;
  padding-right: calc(6.5625rem + 15px);
  padding-left: 5.625rem;
}

.business_ny .right .mod_title {
  border-bottom: 1px solid #cecece;
  padding-bottom: 1.5rem;
  margin-top: 2.5rem;
  padding-right: 9.375rem;
  position: relative;
}

.business_ny .right .mod_title strong, .business_ny .right .mod_title h2 {
  color: #333;
  font-weight: bold;
}

.business_ny .right .mod_title .numb {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
  font-size: 8.125rem;
  -webkit-text-stroke: 1px #cccfdb;
  color: rgba(255, 255, 255, 0.12);
}

.business_ny .right .mod_content {
  overflow: auto;
  max-height: 18.75rem;
}

.case {
  padding: 5rem 0;
}

.case .items {
  display: flex;
  flex-wrap: wrap;
}

.case .items .item {
  display: none;
}

.case .items .item:nth-child(-n + 6) {
  display: block;
}

@media (max-width: 991px) {
  .case .items .item {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .case .items .item {
    width: calc((100% - (2 - 1) * 3.125rem)/2);
    margin-bottom: 3.125rem;
  }
  .case .items .item:not(:nth-child(2n)) {
    margin-right: 3.125rem;
  }
}

.case .items .item a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.4/1;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.case .items .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all .3s ease;
}

.case .items .item a:hover::after {
  opacity: 0;
}

.case .items .item a:hover img {
  transform: scale(1.05);
}

.case .items .item a:hover .text {
  background: #0e3289;
  transform: translateY(0);
}

.case .items .item a:hover .text p {
  opacity: 1;
}

.case .items .item a:hover .text .mod_more2 {
  opacity: 1;
}

.case .items .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.case .items .item a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2.125rem;
  color: #fff;
  background: transparent;
  z-index: 3;
  transition: all .3s ease;
  transform: translateY(50%);
}

.case .items .item a .text h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.case .items .item a .text p {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.case .items .item a .text .mod_more2 {
  opacity: 0;
  transition: all .3s ease;
}

.case .mod_more a {
  padding: 1rem 3.5rem;
  background: none;
  border: 1px solid #999;
}

.case .mod_more a:hover {
  border-color: #0e3289;
  background: #0e3289;
  color: #fff;
}

.case_detail {
  padding-top: 6.875rem;
  padding-bottom: 4.25rem;
}

.case_detail .left {
  width: 65%;
}

.case_detail .left h1 {
  font-size: 3.125rem;
  color: #0e3289;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}

.case_detail .left .mod_content {
  margin-bottom: 5rem;
}

.case_detail .right {
  width: 35%;
  padding-left: 4.5rem;
}

.case_detail .right h2 {
  margin-bottom: 1.5rem;
  color: #0e3289;
}

.case_detail .right .items .item {
  width: 100%;
  margin-bottom: 2.5rem;
}

.case_detail .right .items .item a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.4/1;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.case_detail .right .items .item a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all .3s ease;
}

.case_detail .right .items .item a:hover::after {
  opacity: 0;
}

.case_detail .right .items .item a:hover img {
  transform: scale(1.05);
}

.case_detail .right .items .item a:hover .text {
  background: #0e3289;
  transform: translateY(0);
}

.case_detail .right .items .item a:hover .text p {
  opacity: 1;
}

.case_detail .right .items .item a:hover .text .mod_more2 {
  opacity: 1;
}

.case_detail .right .items .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.case_detail .right .items .item a .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2.125rem;
  color: #fff;
  background: transparent;
  z-index: 3;
  transition: all .3s ease;
  transform: translateY(60%);
}

.case_detail .right .items .item a .text h3 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.case_detail .right .items .item a .text p {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  opacity: 0;
  transition: all .3s ease;
}

.case_detail .right .items .item a .text .mod_more2 {
  opacity: 0;
  transition: all .3s ease;
}

.case_detail .right .mod_more a {
  padding: .75rem 5rem;
  background: #0e3289;
  color: #fff;
  border-radius: 2rem;
}

.news {
  padding: 5rem 0;
  background: #f5f5f5;
}

.news .news_head {
  margin-bottom: 1.875rem;
  background: #fff;
  display: flex;
  align-items: center;
}

.news .news_head:hover .img a img {
  transform: scale(1.05);
}

.news .news_head:hover .text h3 a {
  color: #0e3289;
}

.news .news_head .img {
  width: 63%;
}

.news .news_head .img a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2.2/1;
  overflow: hidden;
}

.news .news_head .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.news .news_head .text {
  width: 37%;
  padding: 0 2rem;
}

.news .news_head .text .mate a {
  padding: 4px 8px;
  border-radius: 4px;
  background: #e3c389;
  color: #fff;
  display: inline-block;
}

.news .news_head .text h3 {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.news .news_head .text h3 a {
  color: #151515;
  font-weight: bold;
  line-height: 1.6;
}

.news .news_head .text p {
  color: #454545;
  line-height: 2;
}

.news .items .item {
  padding: 1.25rem;
  margin-bottom: 1.875rem;
  background: #fff;
  display: flex;
  align-items: center;
}

.news .items .item:hover .img a img {
  transform: scale(1.05);
}

.news .items .item:hover .text h3 a {
  color: #0e3289;
}

.news .items .item .img {
  width: 26.5%;
}

.news .items .item .img a {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 2.2/1;
  overflow: hidden;
}

.news .items .item .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.news .items .item .text {
  width: 73.5%;
  padding: 0 2.5rem;
}

.news .items .item .text .time {
  color: #151515;
  font-weight: bold;
}

.news .items .item .text h3 {
  margin: 1rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news .items .item .text h3 a {
  color: #151515;
  font-weight: bold;
}

.news .items .item .text p {
  color: #454545;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news.news_res .items .item {
  transition: all .3s ease;
}

.news.news_res .items .item:hover {
  background: #0e3289;
}

.news.news_res .items .item:hover .time, .news.news_res .items .item:hover h3 a {
  color: #e3c389;
}

.news.news_res .items .item:hover p {
  color: #fff;
}

.news_detail {
  padding: 4.75rem 0;
  background: #f5f5f5;
}

.news_detail .left {
  background: #fff;
  padding: 2.5rem 2rem;
}

.news_detail .left .time {
  color: #999;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2rem;
}

.news_detail .right h2 {
  color: #0e3289;
  margin-bottom: 1.5rem;
}

.news_detail .right .items .item {
  margin-bottom: 2rem;
}

.news_detail .right .items .item a {
  display: block;
  padding: 1.25rem;
  background: #fff;
  color: #151515;
}

.news_detail .right .items .item a:hover .img img {
  transform: scale(1.05);
}

.news_detail .right .items .item a .img {
  aspect-ratio: 1.6/1;
  overflow: hidden;
}

.news_detail .right .items .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.news_detail .right .items .item a .text {
  padding-top: 1rem;
}

.news_detail .right .items .item a .text .time {
  color: #666;
}

.news_detail .right .items .item a .text h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: bold;
  margin: .75rem 0;
}

.news_detail .right .items .item a .text p {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news_detail .right .mod_more a {
  padding: .75rem 5rem;
  background: #0e3289;
  color: #fff;
  border-radius: 2rem;
}

.videos {
  padding: 5rem 0;
  background: #f5f5f5;
}

.videos .items {
  display: flex;
  flex-wrap: wrap;
}

.videos .items .item {
  width: calc((100% - 3.75rem)/2);
  margin-bottom: 3.125rem;
}

.videos .items .item:not(:nth-child(2n)) {
  margin-right: 3.75rem;
}

.videos .items .item:hover .img img {
  transform: scale(1.05);
}

.videos .items .item .img {
  display: block;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  position: relative;
}

.videos .items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.videos .items .item .img i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4.75rem;
  height: 4.75rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(14, 50, 137, 0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #e3c389;
  font-size: 2.875rem;
  transition: all .3s ease;
  cursor: pointer;
}

.videos .items .item .img i:hover {
  transform: translate(-50%, -50%) scale(0.85);
}

.videos .items .item h3 {
  margin: 0;
  padding: 2rem 15px;
  background: #fff;
  text-align: center;
}

.zhaobiao {
  padding: 5rem 0;
  background: #f5f5f5;
}

.zhaobiao .items .item {
  margin-bottom: 1.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  padding-right: 0;
  background: #fff;
  transition: all .3s ease;
}

.zhaobiao .items .item:hover {
  background: #0e3289;
}

.zhaobiao .items .item:hover .text .mate a {
  background: #e3c389;
}

.zhaobiao .items .item:hover .text h2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.zhaobiao .items .item:hover .text h2 a {
  color: #fff;
}

.zhaobiao .items .item:hover .text p {
  color: rgba(255, 255, 255, 0.85);
}

.zhaobiao .items .item:hover .time {
  color: #fff;
}

.zhaobiao .items .item .text {
  width: calc(100% - 9.375rem);
}

.zhaobiao .items .item .text .mate a {
  display: inline-block;
  border-radius: 4px;
  padding: 4px 8px;
  background: #0e3289;
  color: #fff;
  transition: all .3s ease;
}

.zhaobiao .items .item .text h2 {
  margin-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #dedede;
  transition: all .3s ease;
}

.zhaobiao .items .item .text h2 a {
  color: #151515;
  transition: all .3s ease;
}

.zhaobiao .items .item .text p {
  color: #454545;
  line-height: 1.8;
  transition: all .3s ease;
}

.zhaobiao .items .item .time {
  width: 9.375rem;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.1;
  color: #666;
  transition: all .3s ease;
}

.zhaobiao .items .item .time b {
  font-size: 2.875rem;
  display: block;
}

.fuli {
  padding-top: 5rem;
  min-height: 89.25rem;
}

.fuli ul {
  display: flex;
  flex-wrap: wrap;
}

.fuli ul li {
  width: calc((100% - 6rem)/8);
  display: flex;
  align-self: center;
  justify-content: center;
  color: #fff;
  position: relative;
  margin-right: .75rem;
  cursor: pointer;
}

.fuli ul li:first-child, .fuli ul li:nth-child(15) {
  margin-left: calc((100% - 6rem)/8/2 + .375rem);
}

.fuli ul li:nth-child(14) {
  margin-right: 0;
}

.fuli ul li:nth-child(11) {
  width: calc((100% - 6rem)/4 + .75rem);
  font-size: 4.125rem;
  color: #0e3289;
  font-weight: bold;
}

.fuli ul li:not(:nth-child(-n + 7)) {
  margin-top: -2.5rem;
}

.fuli ul li:nth-last-child(3) {
  margin-left: calc((100% - 6rem)/4 + 1.5rem);
}

.fuli ul li:nth-last-child(2) {
  margin-left: calc((100% - 6rem)/8 + .75rem);
}

.fuli ul li:nth-last-child(1) {
  margin-left: calc((100% - 6rem)/8 + .75rem);
}

.fuli ul li:hover p {
  display: block;
}

.fuli ul li span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  font-weight: bold;
}

.fuli ul li span i {
  display: block;
  font-size: 2.875rem;
  font-weight: normal;
}

.fuli ul li .xing {
  width: 100%;
  padding-top: 119.8%;
  background: #c1d4dd;
  mask-image: url(../img/xing.png);
  -webkit-mask-image: url(../img/xing.png);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.fuli ul li p {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem 2rem;
  max-width: 50rem;
  min-width: 36.25rem;
  border: 1px solid #0e3289;
  border-radius: .5rem;
  color: #0e3289;
  font-weight: bold;
  text-align: center;
  filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
  display: none;
}

.fuli ul li p::after {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 1rem 1rem 1rem;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  width: 0;
  height: 0;
  z-index: 2;
}

.contact {
  height: 100vh;
  display: flex;
  align-items: center;
}

.contact .caption {
  padding: 2rem 0;
  padding-left: 5rem;
  border-bottom: 1px solid #d6d6d6;
}

.contact .caption:last-child {
  border: none;
}

.contact .caption h3 {
  color: #0e3289;
  position: relative;
}

.contact .caption h3::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #0e3289;
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.contact .caption ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #050505;
}

.contact .caption ul li {
  width: 49%;
  margin-top: 1rem;
}

.message {
  min-height: 80rem;
  padding: 5rem 0;
}

.message .form-group {
  margin-bottom: 2rem;
}

.message .form-group label {
  font-size: 1.25rem;
}

.message .form-group input, .message .form-group select {
  border: 1px solid #b1becf;
  background: none;
  height: 3.75rem;
  border-radius: 0;
}

.message .form-group textarea {
  background: none;
}

.message .form-group button {
  background: #0e3289;
  color: #fff;
  height: 3.75rem;
  padding: 0 5rem;
  border-radius: 0;
  margin-top: 2.5rem;
}

.responsibility {
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.responsibility .container > h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.responsibility .container .res_ico {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.41);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.responsibility .container .res_ico:hover {
  background: #e3c389;
}

.responsibility .container .res_ico i {
  font-size: 2.875rem;
}

.responsibility .container .mod_content {
  width: 60%;
  max-height: 40vh;
  overflow: auto;
  color: #fff;
}

/* zl_mod 通用样式
---------------------------------------------------------------- */
.mod_en {
  position: absolute;
  left: 0;
  top: 2.5rem;
  font-size: 12.25rem;
  line-height: 1.1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mod_banner {
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.mod_banner .container .mod_title {
  color: #fff;
}

.mod_banner .container .mod_title h1 {
  font-weight: bold;
}

.mod_banner .container .mb_menu {
  margin-top: 18%;
}

.mod_banner .container .mb_menu ul {
  margin-bottom: 1rem;
}

.mod_banner .container .mb_menu ul li {
  padding: 0 2.5rem;
  position: relative;
}

.mod_banner .container .mb_menu ul li:first-child {
  padding-left: 0;
}

.mod_banner .container .mb_menu ul li:last-child::after {
  display: none;
}

.mod_banner .container .mb_menu ul li::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(50%) translateY(-50%);
  background: #fff;
}

.mod_banner .container .mb_menu ul li a {
  color: #fff;
}

.mod_banner .container .mb_menu ul li a.active {
  color: #e3c389;
  font-weight: bold;
}

.mod_title {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  color: #0e3289;
  line-height: 1.1;
}

.mod_title.mod_title2 i {
  font-size: 2.875rem;
  display: block;
}

.mod_title.mod_title2 span {
  font-size: 3.125rem;
}

.mod_title.mod_title2 strong, .mod_title.mod_title2 h1, .mod_title.mod_title2 h2, .mod_title.mod_title2 h3 {
  margin-top: .5rem;
}

.mod_title.white span, .mod_title.white strong, .mod_title.white h1, .mod_title.white h2, .mod_title.white h3 {
  color: #fff;
}

.mod_title span {
  font-size: 4.25rem;
  font-family: 'AVANTGARDEGOTHICC-DEMI';
}

.mod_title strong, .mod_title h1, .mod_title h2, .mod_title h3 {
  display: block;
  font-size: 2.5rem;
  margin: 0;
}

.mod_title p {
  margin-top: 1rem;
  text-transform: initial;
  color: #333;
}

.mod_position {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding: 1.5rem 0;
  color: #fff;
}

.mod_position a {
  color: #fff;
}

.mod_position i {
  margin-right: .5rem;
}

.mod_menu {
  width: 100%;
  margin-bottom: 4rem;
}

.mod_menu ul li {
  margin-bottom: 4px;
  position: relative;
  color: #3a3a3a;
  background: #f2f2f2;
  padding: 12px 16px;
  font-size: 16px;
}

.mod_menu ul li:has(i) > a {
  max-width: calc(100% - 1.5rem);
}

.mod_menu ul li:has(ul li.active) > ul {
  display: block;
}

.mod_menu ul li i {
  position: absolute;
  right: 8px;
  top: 14px;
  background: #fff;
  display: inline-block;
  padding: 1px 8px;
  font-size: 12px;
  cursor: pointer;
}

.mod_menu ul li i.active::before {
  transform: rotate(180deg);
}

.mod_menu ul li i::before {
  transition: transform .3s ease;
}

.mod_menu ul li span {
  margin-left: .5rem;
}

.mod_menu ul li a {
  display: inline-block;
  transition: all .3s ease;
  color: #3a3a3a;
}

.mod_menu ul li a:hover {
  color: #0e3289;
}

.mod_menu ul li > ul {
  width: 100%;
  margin-top: 8px;
  display: none;
}

.mod_menu ul li > ul > li {
  background: #fff;
}

.mod_menu ul li > ul > li:last-child {
  margin-bottom: 0;
}

.mod_more span, .mod_more a, .mod_more button {
  display: inline-block;
  padding: 0 3rem;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
  background: url(../img/dui.png) center bottom no-repeat;
  background-size: 100% 100%;
  color: #666;
  transition: color .3s ease;
}

.mod_more span:hover, .mod_more a:hover, .mod_more button:hover {
  color: #b6986c;
}

.mod_more2 span, .mod_more2 a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #e3c389;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
  transition: all .5s ease;
  overflow: hidden;
}

.mod_more2 span i, .mod_more2 a i {
  display: flex;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e3c389;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  transition: all .5s ease;
  font-style: normal;
}

.mod_more2 span .ico_text, .mod_more2 a .ico_text {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all .5s ease;
  text-align: center;
}

.mod_more2 span:hover, .mod_more2 a:hover {
  width: 135px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.mod_more2 span:hover .ico_text, .mod_more2 a:hover .ico_text {
  width: 100px;
}

.mod_more2 span:hover i, .mod_more2 a:hover i {
  transform: rotate(180deg);
  background: #fff;
  color: #e3c389;
}

.mod_social {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  z-index: 999;
}

.mod_social ul li {
  margin-bottom: 2px;
  position: relative;
}

.mod_social ul li:hover .tip {
  opacity: 1;
}

.mod_social ul li:hover a {
  filter: brightness(1.2);
}

.mod_social ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #0e3289;
}

.mod_social ul li .tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.mod_social ul li .tip span {
  display: inline-block;
  background: #323232;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
}

.mod_social ul li .tip span:after {
  content: '';
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #323232;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}

.mod_backTop {
  position: fixed;
  right: 10px;
  bottom: 4%;
  z-index: 999;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e3289;
  color: #fff;
  cursor: pointer;
  transition: opacity .3s ease;
  opacity: 0;
  pointer-events: none;
}

.mod_backTop.active {
  opacity: 1;
  pointer-events: auto;
}

.mod_backTop:hover {
  background: #3a3a3a;
}

.mod_backTop i {
  font-size: 18px;
}

.mod_fanye {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mod_fanye li.disabled.active span {
  background-color: #0e3289;
  color: #fff;
}

.mod_fanye li a, .mod_fanye li span {
  font-size: 14px;
  margin: 0 .5rem;
  padding: .5rem 1rem;
  border-radius: 4px;
  color: #333;
  background-color: #e2e2e2;
  border: none;
}

.mod_fanye li a.activ:hover {
  color: #fff;
}

.mod_fanye li a:hover {
  color: #0e3289;
}

.mod_fanye02 {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mod_fanye02 i {
  color: #ececec;
  font-size: 2.25rem;
}

.mod_fanye02 .nav-next {
  text-align: right;
}

.mod_fanye02 a {
  line-height: 1.6;
  color: #3a3a3a;
}

.mod_fanye02 a:hover {
  color: #0e3289;
}

.mod_bgc {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.maodian {
  position: absolute;
  left: 0;
  top: 0;
}

.mod_content b {
  font-weight: normal;
}

.mod_video {
  width: 800px;
  height: 450px;
  display: none;
}

.mod_form {
  width: 500px;
  display: none;
}

.mod_form .form-group label {
  font-size: 16px;
}

.mod_form .form-group label span {
  color: red;
  margin-left: 4px;
}

.mod_form .form-group input {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none;
}

.mod_form .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ddd;
  background: #fff;
  outline: none;
}

.mod_form .form-group .mod_more button {
  padding: .5rem 1.5rem;
  background: none;
}

.mod_form img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* 媒体查询
---------------------------------------------------------------- */
@media (max-width: 991px) {
  h1 {
    font-size: 20px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_36 {
    font-size: 18px;
  }
  .fz_34 {
    font-size: 18px;
  }
  .fz_32 {
    font-size: 18px;
  }
  .fz_30 {
    font-size: 18px;
  }
  .fz_28 {
    font-size: 16px;
  }
  .fz_26 {
    font-size: 16px;
  }
  .fz_24 {
    font-size: 16px;
  }
  .fz_22 {
    font-size: 16px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 14px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header {
    height: 60px;
    position: static;
    background: #0e3289;
  }
  .mod_header .header {
    height: 100%;
  }
  .mod_header .header .head_top {
    display: none;
  }
  .mod_header .header .header_center {
    height: 60px;
  }
  .mod_header .header .header_center .logo {
    position: static;
  }
  .mod_header .header .header_center .logo a img {
    max-height: 42px;
  }
  .mod_header .header .header_center nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    transition: opacity .25s ease-out;
    background: rgba(0, 0, 0, 0.5);
  }
  .mod_header .header .header_center nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  .mod_header .header .header_center nav.active .nav_close, .mod_header .header .header_center nav.active ul {
    transform: translateX(0);
  }
  .mod_header .header .header_center nav > ul {
    width: 90%;
    height: calc(100% - 52px);
    overflow: auto;
    display: block;
    background: #fff;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  .mod_header .header .header_center nav > ul > li {
    position: relative;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0;
  }
  .mod_header .header .header_center nav > ul > li.active > a {
    color: #0e3289;
  }
  .mod_header .header .header_center nav > ul > li.active > a::after {
    display: none;
  }
  .mod_header .header .header_center nav > ul > li:hover a, .mod_header .header .header_center nav > ul > li:hover i {
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li a {
    height: auto;
    width: calc(100% - 58px);
    font-size: 14px;
    padding: 12px 0;
    padding-left: 20px;
    color: #3a3a3a;
    text-transform: capitalize;
  }
  .mod_header .header .header_center nav > ul > li i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    width: 38px;
    font-size: 18px;
    flex-shrink: 0;
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li i.active::before {
    transform: rotateX(180deg);
  }
  .mod_header .header .header_center nav > ul > li ul {
    width: 100%;
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
  .mod_header .header .header_center nav > ul > li ul li {
    flex-wrap: wrap;
    padding: 0;
  }
  .mod_header .header .header_center nav > ul > li ul li:hover a, .mod_header .header .header_center nav > ul > li ul li:hover i {
    color: #3a3a3a;
  }
  .mod_header .header .header_center nav > ul > li ul li:last-child {
    border: none;
  }
  .mod_header .header .header_center nav > ul > li ul li a {
    font-size: 14px;
    padding: 10px 0;
    padding-left: 30px;
    color: #3a3a3a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-transform: capitalize;
  }
  .mod_header .header .header_center nav > ul > li ul li a::before {
    content: '>';
    line-height: 1;
    display: block;
    transform: scale(1, 1.6) translateY(-2px);
    margin-right: 8px;
    font-size: 12px;
  }
  .mod_header .header .header_center nav > ul > li ul li i::before {
    transform: rotate(0);
    font-size: 18px;
  }
  .mod_header .header .header_center nav > ul > li ul li ul li a {
    padding-left: 46px;
  }
  .mod_header .header .header_center .nav_open {
    transition: opacity .3s ease;
    color: #fff;
    margin-left: auto;
  }
  .mod_header .header .header_center .nav_open.active {
    opacity: 0;
  }
  .mod_header .header .header_center .nav_open i {
    font-size: 24px;
  }
  .mod_header .header .header_center .nav_close {
    background: #fff;
    display: flex;
    width: 90%;
    height: 52px;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #eee;
    transform: translateX(-100%);
    transition: all .2s ease-in;
  }
  .mod_header .header .header_center .nav_close i {
    height: 100%;
    padding: 0 12px;
    font-size: 30px;
    color: #3a3a3a;
  }
  .footer .flex-row .caption:first-child {
    width: 100%;
  }
  .footer .flex-row .caption:not(:first-child) {
    display: none;
  }
  .footer .flex-row .caption p img {
    max-height: 60px;
  }
  .footer .foot_bottom {
    text-align: center;
  }
  .footer .foot_bottom .text-right {
    text-align: center !important;
  }
  .mySwiper {
    height: auto;
  }
  .banner {
    height: 46vh;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container {
    margin-top: 10%;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container .banner_scroll_right {
    margin-bottom: 10px;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container .banner_scroll_right b {
    font-size: 24px;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container .mod_oh {
    margin-bottom: 6px;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container img {
    max-height: 20px;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container span {
    font-size: 14px;
  }
  .banner .swiper .swiper-wrapper .swiper-slide .container h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .banner .swiper .ico_next, .banner .swiper .ico_prev {
    display: none;
  }
  .index_product {
    height: 400px;
  }
  .index_product ul {
    width: 100vw;
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .index_product ul li {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 80vw;
  }
  .index_product ul li a::after {
    display: none;
  }
  .index_product ul li.active {
    width: 80vw;
  }
  .ani {
    visibility: initial !important;
  }
  .index_about {
    height: auto;
    flex-wrap: wrap;
    padding: 40px 15px;
  }
  .index_about .iabout_text {
    width: 100%;
  }
  .index_about .iabout_text .mod_content {
    margin-right: 0;
    max-height: 150px;
  }
  .index_about .iabout_swiper {
    margin-top: 30px;
    width: 100%;
  }
  .index_about .iabout_swiper .swiper {
    width: 100%;
    margin: 0;
    height: 200px;
  }
  .index_news {
    height: auto;
    padding: 40px 0;
  }
  .index_news .inews_head {
    flex-wrap: wrap;
  }
  .index_news .inews_head .img {
    width: 100%;
  }
  .index_news .inews_head .text {
    width: 100%;
  }
  .index_news .items {
    flex-wrap: wrap;
  }
  .index_news .items .item {
    width: 100%;
  }
  .index_news .items .item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .index_zeren {
    height: auto;
  }
  .index_zeren .swiper .swiper-slide {
    padding: 40px 0;
    padding-bottom: 120px;
  }
  .index_zeren .swiper .swiper-slide .mod_content {
    width: 100%;
  }
  .mod_banner {
    height: 20rem;
  }
  .mod_banner .container {
    flex-direction: column;
    align-items: center;
  }
  .mod_banner .container h1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 24px;
  }
  .mod_banner .container .mod_title span, .mod_banner .container .mod_title h1 {
    font-size: 18px;
  }
  .mod_banner .container .mb_menu ul {
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .mod_banner .container .mb_menu ul li {
    scroll-snap-align: start;
    padding: 0 2rem;
    flex-shrink: 0;
  }
  .mod_banner .container .mb_menu .mod_position {
    display: none;
  }
  .about_1 {
    flex-wrap: wrap;
  }
  .about_1 .left {
    width: 100%;
    padding-left: 15px;
  }
  .about_1 .left ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_1 .left ul li {
    margin-bottom: 10px;
    width: 49%;
  }
  .about_1 .left ul li:nth-last-child(2) span b {
    display: block;
  }
  .about_1 .left ul li span {
    font-size: 14px;
  }
  .about_1 .left ul li span b {
    font-size: 14px;
  }
  .about_1 .right {
    display: none;
    width: 100%;
    padding: 0 15px;
  }
  .about_2 .swiper1 .swiper-slide {
    width: calc(100% - 30px);
  }
  .about_2 .swiper1 .swiper-slide span {
    font-size: 14px;
  }
  .about_2 .swiper1 .swiper-slide .name {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 40px;
    transform: translateX(0);
    justify-content: center;
    writing-mode: horizontal-tb;
  }
  .about_2 .swiper1 .swiper-slide .name::after {
    display: none;
    margin: 1rem 0;
  }
  .about_2 .about2_detail {
    flex-direction: column;
  }
  .about_2 .about2_detail .swiper {
    margin: 0;
    width: 100%;
    padding: 15px;
  }
  .about_2 .about2_detail .swiper .swiper-slide ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .about_2 .about2_detail .swiper .swiper-slide ul li {
    width: calc(50% - 10px);
    margin-bottom: 15px;
  }
  .about_2 .about2_detail .swiper .swiper-slide ul li span strong {
    font-size: 20px;
  }
  .about_3 {
    flex-wrap: wrap;
  }
  .about_3 .left {
    display: none;
  }
  .about_3 .right {
    width: 100%;
    padding: 0 15px;
  }
  .culture {
    height: 60vh;
  }
  .culture ul {
    width: 100vw;
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .culture ul li {
    scroll-snap-align: start;
    padding-top: 40%;
    width: 42vw;
    flex-shrink: 0;
    text-align: center;
  }
  .concept {
    height: auto;
  }
  .concept ul li {
    height: 30vh;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .concept ul li:first-child {
    height: 30vh;
  }
  .concept ul li:last-child {
    border: none;
  }
  .honor .h_auto {
    margin-right: 0;
    height: 300px;
  }
  .honor .h_auto ul {
    margin-right: 15px;
    width: calc(50% - 15px);
  }
  .honor .h_auto ul li .time {
    width: 60px;
    padding-left: 0;
    flex-shrink: 0;
  }
  .honor .line {
    margin-right: 0;
  }
  .honor .line::after, .honor .line::before {
    left: 0;
    width: 45%;
  }
  .honor .line::before {
    left: 50%;
  }
  .honor .swiper {
    margin-left: 15px;
  }
  .honor .swiper .swiper-slide {
    max-width: 90%;
  }
  .responsibility .container .mod_content {
    width: 100%;
  }
  .jiagou {
    min-height: 100vh;
  }
  .history {
    min-height: auto;
  }
  .history .items {
    width: 100%;
  }
  .history .items .xian {
    left: 70px;
  }
  .history .items .item .time {
    font-size: 20px;
    width: calc(70px - 27px/2);
  }
  .history .items .item p {
    width: calc((100% - 70px) - 27px/2);
  }
  .history .items .item .line {
    margin: 0 10px;
  }
  .business .item {
    flex-wrap: wrap;
  }
  .business .item:nth-child(2n) .left {
    order: 0;
    padding: 2.5rem 15px;
  }
  .business .item:nth-child(2n) .right .img_title {
    left: 15px;
  }
  .business .item .left {
    width: 100%;
    padding: 2.5rem 15px;
  }
  .business .item .right {
    width: 100%;
    height: 30vh;
  }
  .business .item .right a .img_title {
    font-size: 20px;
    right: 15px;
    bottom: 15px;
  }
  .business .item .right a .img_title span {
    font-size: 30px;
  }
  .business_ny {
    flex-wrap: wrap;
    padding: 2.5rem 15px;
  }
  .business_ny .left {
    width: 100%;
  }
  .business_ny .right {
    width: 100%;
    padding: 0;
  }
  .business_ny .right .mod_title {
    padding-right: 6rem;
  }
  .business_ny .right .mod_title .numb {
    font-size: 5rem;
  }
  .business_ny .right .mod_content {
    max-height: 160px;
  }
  .case_detail {
    padding: 40px 0;
  }
  .case_detail .container {
    flex-wrap: wrap;
  }
  .case_detail .container .left {
    width: 100%;
  }
  .case_detail .container .left h1 {
    font-size: 24px;
  }
  .case_detail .container .right {
    display: none;
  }
  .news .news_head {
    flex-wrap: wrap;
  }
  .news .news_head .img {
    width: 100%;
  }
  .news .news_head .text {
    width: 100%;
    padding: 15px;
  }
  .news .items .item {
    flex-wrap: wrap;
  }
  .news .items .item .img {
    width: 100%;
  }
  .news .items .item .text {
    width: 100%;
    padding: 15px 0;
  }
  .videos .items .item {
    width: 100%;
  }
  .videos .items .item:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .videos .items .item .img i {
    width: 60px;
    height: 60px;
  }
  .zhaobiao .items .item {
    flex-wrap: wrap;
    padding: 15px;
  }
  .zhaobiao .items .item .text {
    width: 100%;
    order: 1;
  }
  .zhaobiao .items .item .text h2 {
    line-height: 1.8;
  }
  .zhaobiao .items .item .time {
    display: none;
  }
  .news_detail .left h1 {
    line-height: 1.8;
  }
  .news_detail .right {
    display: none;
  }
  .fuli {
    padding: 40px 0;
  }
  .fuli ul li {
    width: 32%;
    margin-left: 2%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .fuli ul li:nth-child(3n + 1) {
    margin-left: 0;
  }
  .fuli ul li:first-child {
    margin-left: 0;
  }
  .fuli ul li:nth-child(15) {
    margin-left: 2%;
  }
  .fuli ul li:not(:nth-child(-n + 7)) {
    margin-top: 0;
  }
  .fuli ul li:nth-child(11) {
    width: 32%;
    font-size: 20px;
  }
  .fuli ul li:nth-last-child(2), .fuli ul li:nth-last-child(1) {
    margin-left: 2%;
  }
  .fuli ul li span {
    min-width: 100%;
  }
  .fuli ul li p {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .contact {
    background-size: contain !important;
    height: auto;
    padding-top: 30px;
    padding-bottom: 180px;
  }
  .contact .caption {
    padding-left: 0;
  }
  .contact .caption h3::after {
    display: none;
  }
  .contact .caption ul {
    flex-wrap: wrap;
  }
  .contact .caption ul li {
    width: 100%;
  }
  .message .form-group label {
    font-size: 14px;
  }
  .message .form-group input, .message .form-group select {
    height: 40px;
  }
  .form-control {
    font-size: 14px;
  }
  .mod_fanye02 {
    flex-direction: column;
    align-items: flex-start;
  }
  .mod_fanye02 .nav-center {
    margin-left: auto;
  }
  .mod_fanye02 .nav-next {
    text-align: left;
  }
  .mod_title.mod_title2 span {
    font-size: 20px;
  }
  .mod_title span {
    font-size: 20px;
  }
  .mod_title h2, .mod_title h3, .mod_title strong {
    font-size: 18px;
  }
  .mod_social, .mod_backTop {
    right: 5px;
  }
  .mod_form {
    max-width: calc(100% - 30px);
  }
  .mod_form .form-group label {
    font-size: 14px;
  }
  #menuLeft {
    order: 1;
  }
  .btn {
    font-size: 14px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  h3 {
    font-size: 16px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_36 {
    font-size: 18px;
  }
  .fz_34 {
    font-size: 18px;
  }
  .fz_32 {
    font-size: 18px;
  }
  .fz_30 {
    font-size: 18px;
  }
  .fz_28 {
    font-size: 16px;
  }
  .fz_26 {
    font-size: 16px;
  }
  .fz_24 {
    font-size: 16px;
  }
  .fz_22 {
    font-size: 16px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 14px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header .header .header_center nav > ul > li {
    padding: 0 1.5rem;
  }
  .mod_header .header .header_center nav > ul > li > a {
    font-size: 14px;
  }
}

@media (min-width: 1201px) and (max-width: 1440px) {
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  .fz_32 {
    font-size: 22px;
  }
  .fz_30 {
    font-size: 22px;
  }
  .fz_28 {
    font-size: 20px;
  }
  .fz_26 {
    font-size: 20px;
  }
  .fz_24 {
    font-size: 18px;
  }
  .fz_22 {
    font-size: 18px;
  }
  .fz_20 {
    font-size: 16px;
  }
  .fz_18 {
    font-size: 16px;
  }
  .fz_16 {
    font-size: 14px;
  }
  .fz_14 {
    font-size: 14px;
  }
  .fz_12 {
    font-size: 12px;
  }
  .mod_header .header .header_center nav > ul > li > a {
    font-size: 16px;
  }
  .index_about .iabout_text {
    width: 570px;
    padding-left: 0;
    margin-left: auto;
  }
}

@media (max-width: 1440px) {
  .mod_header .header {
    padding: 0 15px;
    max-width: 1920px;
    margin: 0 auto;
  }
  .index_about .iabout_text {
    padding-left: 15px;
  }
}

@media (min-width: 1025px) {
  .about_skills {
    background-attachment: fixed;
  }
}

@media (min-width: 1441px) {
  .container {
    max-width: calc(100% - 13.125rem);
    width: calc(100% - 13.125rem) !important;
    padding: 0 15px;
  }
  .mod_header .header {
    padding: 0 calc(6.5625rem + 15px);
    max-width: 1920px;
    margin: 0 auto;
  }
  .index_about .iabout_text {
    padding-left: calc(6.5625rem + 15px);
  }
}
