@charset "utf-8";
/*
 * Author: 徐晨雨
 * Email: 895301377@qq.com
 * Date: 2025-5-27
 */
:root {
  --primary-color: #f51f1f;
}
body {
  font-family: "思源黑体";
}
header {
  box-shadow: 0 0 4rem -0.5rem rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
}
header .header-right .iconfont.icon-dianhua {
  display: none;
}
nav.main-nav {
  color: #333;
  padding: 0 20px;
  line-height: 1.6;
}
nav.main-nav > ul.nav-list {
  display: flex;
  list-style: none;
  margin: 0 auto;
}
.bannar-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}
nav.main-nav > ul.nav-list > li.nav-item {
  position: relative;
  transition: 0.1s;
}
nav.main-nav > ul.nav-list > li.nav-item:hover {
  /* border-bottom: 3px solid var(--primary-color); */
}
nav.main-nav > ul.nav-list > li.nav-item.active {
  border-bottom: 3px solid var(--primary-color);
}
nav.main-nav > ul.nav-list > li.nav-item > a {
  display: block;
  text-align: center;
  padding: 28px 14px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: bold;
}
nav.main-nav > ul.nav-list > li.nav-item > a.active {
  border-bottom: 3px solid var(--primary-color);
}
nav.main-nav > ul.nav-list > li.nav-item > a:hover {
  /*color: var(--primary-color);*/
}

nav.main-nav > ul.nav-list > li.nav-item.dropdown > div.dropdown-content {
  position: absolute;
  background-color: #f9f9f9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  /* top: 105%; */
  min-width: 250px;
  text-align: center;
}

nav.main-nav > ul.nav-list > li.nav-item.dropdown > div.dropdown-content > a {
  color: black;
  padding: 12px 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  white-space: nowrap;
}

nav.main-nav
  > ul.nav-list
  > li.nav-item.dropdown
  > div.dropdown-content
  > a:hover {
  color: var(--primary-color);
}

nav.main-nav > ul.nav-list > li.nav-item.dropdown:hover > div.dropdown-content {
  opacity: 1;
  visibility: visible;
}

nav.main-nav > ul.nav-list > li.nav-item.dropdown > a::after {
  /* content: "▼";
  font-size: 0.6em;
  margin-left: 5px;
  display: inline-block; */
}
header .header-right .iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 16px;
  transition: all 0.3s;
}
header .header-right .iconfont:hover {
  cursor: pointer;
}
header .header-right .iconfont.icon-dianhua:hover,
header .header-right .iconfont.icon-sousuo:hover {
  color: var(--primary-color);
}
header .header-right .qoute {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
header .header-right .qoute:hover {
  background-color: hsl(75, 60%, 40%);
}
/* 防止样式冲突，限定在header父元素内 */
header .modal-search {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

header .modal-search.show {
  display: block;
  opacity: 1;
}

header .modal-search-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

header .modal-search-header {
  display: flex;
  justify-content: flex-end;
}

header .modal-search-close {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

header .modal-search-close:hover {
  color: #000;
}

header .modal-search-body {
  padding: 20px 0;
  display: flex;
  gap: 10px;
}
header .modal-search-body .modal-search-form {
  flex: 1;
  display: flex;
}
header .modal-search-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

header .modal-search-submit {
  padding: 12px 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.5s;
  margin-left: 5px;
}

header .modal-search-submit:hover {
  filter: brightness(1.1);
}
/* 仅手机端菜单样式 */
header .mobile-menu {
  display: block;
  order: 4;
}
header .mobile-menu .menu-toggle {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}

header .mobile-menu .menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

header .mobile-menu .menu-toggle span:nth-child(1) {
  top: 0;
}
header .mobile-menu .menu-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .mobile-menu .menu-toggle span:nth-child(3) {
  bottom: 0;
}

header .mobile-menu .menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

header .mobile-menu .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

header .mobile-menu .menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

header .mobile-menu .dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background: #f9f9f9;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .mobile-menu .dropdown-content.show {
  max-height: 1000px;
  overflow-y: scroll;
}

header .mobile-menu .menu-list {
  border-top: 1px solid #e0e0e0;
}

header .mobile-menu .menu-list li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #e0e0e0;
}
header .mobile-menu .has-submenu {
  position: relative;
}

header .mobile-menu .has-submenu .submenu-toggle {
  min-width: 30vw;
  display: inline-flex;
  padding-right: 10px;
  transition: transform 0.3s;
  justify-content: flex-end;
}

header .mobile-menu .has-submenu.active .submenu-toggle {
  /* transform: rotate(45deg); */
}

header .mobile-menu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding-left: 20px;
  background: #f0f0f0;
  list-style: none;
  margin: 0;
}

header .mobile-menu .has-submenu.active .submenu {
  max-height: 500px;
}

header .mobile-menu .submenu li a {
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
}
.index-solution .index-solution-box {
  border: 1px solid #ddd;
  transition: all 0.6s;
}
.index-solution .index-solution-box .solu-ico {
  padding: 1.5rem;
}
.index-solution .index-solution-box .parameter {
  color: #888888;
}
.index-solution .index-solution-box .solu-btn-box {
  border-top: 1px solid #eef2f8;
}
.index-solution .index-solution-box .solu-btn-box a {
  display: inline-block;
  width: 50%;
}
.index-solution .index-solution-box .solu-btn-box a:hover {
  color: var(--primary-color);
}
.index-solution .index-solution-box .solu-btn-box a:first-of-type {
  border-right: 1px solid #eef2f8;
}

.index-choose-us {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
}
.index-choose-us .index-choose-us-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.index-choose-us .index-choose-us-video video {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.index-choose-us .index-choose-us-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;

  color: white;
  padding: 20px;
}

.index-choose-us .index-choose-us-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.index-choose-us .index-choose-us-content .index-choose-us-title {
  margin-bottom: 1rem;
}

.index-choose-us .index-choose-us-content .index-choose-us-desc {
  margin-bottom: 2rem;
}
.index-choose-us .index-choose-us-content .index-choose-us-btn {
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.index-choose-us .index-choose-us-content .index-choose-us-btn:hover {
  background: #8fb82a;
}
.index-choose-us .index-choose-us-content .overlay-content-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}
.index-choose-us .index-choose-us-content .overlay-content-right .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.7s;
  text-align: center;
  cursor: pointer;
}
.index-choose-us
  .index-choose-us-content
  .overlay-content-right
  .item
  .overlay-text {
  position: absolute;
  padding: 1rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.index-choose-us
  .index-choose-us-content
  .overlay-content-right
  .item:hover
  .overlay-text {
  opacity: 1;
}
.index-choose-us
  .index-choose-us-content
  .overlay-content-right
  .item
  .iconfont {
  font-size: 50px;
  padding: 35px 0;
}
.index-product {
  background: #f5f7fa;
}

.index-product .index-product-swiper .pro-box {
  border: 1px solid #ddd;
  transition: all 0.5s;
  padding: 1.2rem;
}
.index-product .index-product-swiper .pro-box:hover {
  color: var(--primary-color);
}
.index-product .index-product-swiper .pro-box:hover img {
  transform: scale(1.05);
}
.index-about {
  background: url(/static/images/home-about-bg.jpg) no-repeat 0;
}
.index-about ul .advantages-information {
  padding-bottom: 20px;
  font-weight: 600;
}
.index-about ul .advantages-information .iconfont {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 0.6rem;
}
.index-about .more-about {
  border: 0.1rem solid #999;
  border-radius: 0.2rem;
  color: #151c2a;
  font-weight: 500;
  transition: all 0.3s;
}
.index-about .more-about:hover {
  background: var(--primary-color);
  border: 0.1rem solid var(--primary-color);
  color: #fff;
}
.index-service {
  background-color: #141b2d;
}
.index-service .service-list .col-6 {
  transition: all 0.6s;
}
.index-service .service-list .col-6:hover {
  transform: translateY(-6px);
}
.index-news {
  background: #f5f7fa;
  padding: 1rem 0;
}
.index-news .all-blog {
  border: 0.1rem solid #999;
  color: #151c2a;
  background: #f5f7fa;
}
.index-news .all-blog:hover {
  background: var(--primary-color);
  border: 0.1rem solid var(--primary-color);
  color: #fff;
}
.index-news .blog-list .data-box {
  background: #333f47;
  border-radius: 10px 0 0 10px;
  transition: all 0.6s;
  color: #fafafa;
}
.index-news .blog-list .right-info .info-description {
  color: #888888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index-news .blog-list .right-info .iconfont {
  font-size: 20px;
  margin-right: 5px;
}
.index-news .blog-list:hover .data-box {
  background: var(--primary-color);
}
.index-news .blog-list .right-info .view-box {
  transition: all 0.3s;
}
.index-news .blog-list:hover .right-info .view-box {
  color: var(--primary-color);
}
.index-form {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#messageform-left h3::after {
  background: var(--primary-color);
  content: "";
  display: block;
  height: 4px;
  margin: 20px 0;
  width: 7rem;
}
#messageform-left .contant-info {
  border-bottom: 1px solid #e6e6e7;
  border-top: 1px solid #e6e6e7;
  font-weight: 500;
  overflow-wrap: break-word;
}
#messageform-left .contant-info .info-href {
  color: var(--primary-color);
  overflow-wrap: break-word;
}
#popup-form {
  background: #fff;
  max-width: 800px;
  width: 100%;
}
#popup-form .form-control {
  background: #f5f7fa;
  padding: 1.375rem 0.75rem;
}
#popup-form .form-group textarea {
  padding: 0.375rem 0.75rem;
}
#popup-form .sub-btn {
  width: 100%;
}
#popup-form .sub-btn {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
#popup-form .sub-btn:hover {
  /*background-color: hsl(74, 89%, 50%);*/
  /*border-color: hsl(74, 89%, 50%);*/
}
footer {
  background: #3c3c48;
}
footer .footer-prolist a {
  transition: all 0.6s;
}
footer .footer-prolist a:hover {
  transform: translateY(-5px);
}
footer .footer-nav {
  border-bottom: 1px solid #4f535b;
  border-top: 1px solid #4f535b;
}
footer .footer-contant p,
footer .footer-contant a {
  font-size: 24px;
  color: #fff;
}
footer .footer-contant .iconfont {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 5px;
}
.solutionlist-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.solutionlist-box .solutionlist-href {
  background: #f5f7fa;
  flex: 0 0 calc(50% - 10px);
  max-width: 48%;
}
.solutionlist-box .solutionlist-href img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.solutionlist-box .solutionlist-href .solutionlist-tit {
  transition: all 0.3s;
}
.solutionlist-box .solutionlist-href .solutionlist-tit:hover {
  color: var(--primary-color);
}
.solutionlist-box .solutionlist-href .rear-more {
  border: 1px solid #fff;
  /* color: var(--primary-color); */
  transition: all 0.3s;
}
.solutionlist-box .solutionlist-href .rear-more:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(3px);
}
.solution-top-info {
  background: #f5f7fa;
}
.solution-top-info .solution-detail {
  background: #fff;
  box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.08);
}
.solution-top-info .solution-link a {
  transition: all 0.3s;
}
.solution-top-info .solution-link a:hover {
  transform: translateX(3px);
}
.solution-top-info .solution-link .quote-now {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
/*.solution-top-info .solution-link .quote-now:hover {*/
/*  background-color: hsl(74, 89%, 50%);*/
/*  border-color: hsl(74, 89%, 50%);*/
/*}*/
.solution-top-info .solution-link .contact-us {
  border: 1px solid #444444;
  color: #444444;
}
/*.solution-top-info .solution-link .contact-us:hover {*/
/*  background: var(--primary-color);*/
/*  color: #fff;*/
/*}*/
.solution-top-info .page-turnin-box{
    padding: 20px 0;
}
.pro-main-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.pro-main-body #pro-table,
.pro-main-body #pro-detail {
  overflow-x: auto;
}
.solution-main-body .solution-content p,
.pro-main-body #pro-detail p,
.app-main-body .app-content-region p {
  /* color: #666; */
  font-size: 16px;
  margin-bottom: 18px;
}
.solution-main-body h3,
.pro-main-body h3,
.pro-main-body #pro-inquiry-form h3 {
  padding-bottom: 1.5rem;
}
.pro-main-body #pro-table table {
  border-collapse: collapse;
  width: 100%;
}
.pro-main-body #pro-table table tr.firstRow {
  font-weight: 700;
}
.pro-main-body #pro-table table td {
  border: 1px solid #d8d8d8;
  color: #151c2a;
  font-size: 0.875rem;
  padding: 0.6rem 0.6rem;
  text-align: center;
}
.pro-list .prolist-items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.pro-list .prolist-items .item {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  transition: all 0.6s;
}
.pro-list .prolist-items .item .pro-describe {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pro-list .prolist-items .item .contant-btn {
  border-top: 1px solid #eee;
}
.pro-list .prolist-items .item .contant-btn a:first-child {
  border-right: 1px solid #eee;
}
.pro-list .prolist-items .item .contant-btn a {
  width: 50%;
  padding-top: 8px;
  padding-bottom: 8px;
}
.pro-list .prolist-items .item .contant-btn a:hover {
  color: var(--primary-color);
}
.pro-list .prolist-items .item .contant-btn a .iconfont {
  font-size: 16px;
  margin-right: 5px;
}
.pro-top {
  /* background: #f5f7fa; */
}
.pro-top .pro-detali-parameter {
  background: #f5f7fa;
}
.pro-top .pro-btn .online-btn {
  width: 46%;
  margin-bottom: 20px;
  border: 1px solid #444444;
  color: #444444;
  transition: all 0.3s;
}
.pro-top .pro-btn .online-btn:hover {
  color: #ffffff;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  transform: translateX(3px);
}
.pro-top .page-turnin-box{
    padding: 20px 0;
}
.pro-sticky-nav {
  background: #f5f7fa;
  /* position: sticky;
  top: 0;
  z-index: 6; */
}
.pro-sticky-nav a:hover {
  background: var(--primary-color);
  color: #fff;
}

.applicationlist .applicationlist-box {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
.applicationlist .applicationlist-box .app-href {
  background: #ffffff;
  overflow: hidden;
}
.applicationlist .applicationlist-box .app-href .app-describe {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.applicationlist .applicationlist-box .app-href .btn {
  border-radius: 25px;
  border: 2px solid #333333;
  transition: all 0.3s;
}
.applicationlist .applicationlist-box .app-href:hover img {
  transform: scale(1.02);
}
.applicationlist .applicationlist-box .app-href:hover .btn {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.app-main-body .app-content-region {
  box-shadow: 0 0 5rem 0 rgba(0, 0, 0, 0.08);
  padding: 2.5rem 3rem;
  background: #fff;
}
.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 1px var(--primary-color);
}
.contact-info {
  border: 1px solid #dfdfdf;
  gap: 20px;
}
.contact-info .contact-item {
  width: 100%;
}
.contact-info .contact-item .iconfont {
  font-size: 32px;
  color: var(--primary-color);
}
.contact-info .contact-item .underline-div {
  border-bottom: 2px solid #e0e0e0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.newslist-box {
  border-bottom: 1px solid #eee;
}
.newslist-box h3,
.newslist-box .iconfont {
  transition: all 0.3s;
}
.newslist-box:hover h3,
.newslist-box:hover .iconfont {
  color: var(--primary-color);
}
.newslist-box:hover img {
  transform: scale(1.02);
}
.right-aside {
  border-radius: 0.4rem;
  position: fixed;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 9;
}
.right-aside .aside-contant {
  background: #fff;
}
.right-aside .aside-contant a {
  padding: 10px 15px;
}
.right-aside .aside-contant a p {
  padding-top: 5px;
}
.right-aside .aside-contant a .iconfont {
  font-size: 24px;
  color: var(--primary-color);
}
.header-common-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.header-common-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.header-common-banner .banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
}
.about-serve {
  gap: 20px;
}
.about-serve .item {
  flex: 1;
  background: #f5f7fa;
  text-align: center;
  transition: all 0.3s;
}
.about-serve .item .iconfont {
  font-size: 50px;
  color: var(--primary-color);
}
.about-serve .item:hover {
  transform: translateY(-3px);
}
.our-factory .image-row {
  gap: 20px;
}
.our-factory .image-row img:hover {
  transform: translateY(-3px);
}
.about-honor .about-honor-swiper-btn {
  gap: 0.5rem;
}
.about-honor .about-honor-swiper-btn .iconfont {
  color: var(--primary-color);
  font-size: 30px;
}
/* 所有样式查询 */

/* 手机端响应式 */
@media screen and (min-width: 1px) and (max-width: 768px) {
  header .modal-search-content {
    margin: 30% auto;
    width: 90%;
  }
  header .modal-search-body {
    flex-direction: column;
  }
  .solution-top-info .solution-link a {
    width: 100%;
  }
  .pro-top .pro-btn .online-btn {
    width: 100%;
  }
  header .header-right {
    margin-left: auto;
  }
  .right-aside {
    bottom: 0;
  }
  .right-aside .aside-contant {
    display: flex;
    width: 100vw;
  }
  .right-aside .aside-contant a {
    flex: 1;
  }
  body {
    padding-bottom: 87px;
  }
  .solutionlist-box .solutionlist-href {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .app-main-body .app-content-region{
    padding: 1rem;
  }
}
/* 
768------------1024    ipad
*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .index-service .container{
      padding: 3rem 0;
  }
  .index-news,
  .index-form {
    padding: 6rem 0;
  }

  .pro-list .prolist-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .applicationlist .applicationlist-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-info .contact-item {
    width: 47%;
  }
  .right-aside {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .our-factory .image-row {
    width: 33%;
  }
}
/* 
1025-----------1200    中等屏幕
*/
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .index-service .container{
       padding: 3rem 0;
  }
  .index-news,
  .index-form {
    padding: 6rem 0;
  }
  .solution-top-info .solution-link a {
    width: 47%;
  }
  .pro-list .prolist-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .applicationlist .applicationlist-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-info .contact-item {
    width: 47%;
  }
  .right-aside {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .our-factory .image-row {
    width: 33%;
  }
}
/* 
1201-----------1410    大屏电脑
*/
@media screen and (min-width: 1201px) and (max-width: 1410px) {
  .index-service .container{
     padding: 3rem 0;
  }
  .index-news,
  .index-form {
    padding: 6rem 0;
  }

  .solution-top-info .solution-link a {
    width: 47%;
  }

  .pro-list .prolist-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .applicationlist .applicationlist-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-info .contact-item {
    width: 47%;
  }
  .right-aside {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .our-factory .image-row {
    width: 33%;
  }
}
/* 
1411以上
*/
@media screen and (min-width: 1411px) {
  .index-service .container{
      padding: 3rem 0;
  }
  .index-news,
  .index-form {
    padding: 6rem 0;
  }
  .solutionlist-box .solutionlist-href img {
    /* max-width: 47%; */
  }
  .solution-top-info .solution-link a {
    width: 47%;
  }

  .pro-list .prolist-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .applicationlist .applicationlist-box {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-info .contact-item {
    width: 47%;
  }
  .right-aside {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .our-factory .image-row {
    width: 33%;
  }
  header .header-right .iconfont.icon-dianhua {
    display: block;
  }
}
