@font-face {
  font-family: 'SourceHanSansCN-Normal';
  src: url('../fonts/SourceHanSansCN-Normal.woff2') format('woff2'), /* 优先使用WOFF2（压缩率更高） */ url('../fonts/SourceHanSansCN-Normal.woff') format('woff'), /* 兼容旧浏览器 */ url('../fonts/SourceHanSansCN-Normal.otf') format('opentype');
  /* 备用格式 */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  /* 避免阻塞渲染，使用回退字体 */
}
:root {
  /* 颜色系统 */
  --on-color: #213f95;
  /*选中颜色*/
  --text-color: #333;
  /* 正文文字 */
  --bg-color: #f5f5f5;
  /* 背景色 */
  /* 字体系统 */
  --base-font-size: 16px;
  /* 基准字号 */
  --heading-font-size: 2rem;
  /* 标题比例 */
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  font-family: SourceHanSansCN-Normal;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  color: #333;
  background-color: #fff;
  font-size: 16px;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 83.333333%;
  max-width: 1600px;
}
@media (max-width: 1580px) {
  .container {
    width: 84%;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.ptb140 {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .ptb140 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.pt140 {
  padding-top: 1.4rem;
}
@media (max-width: 767px) {
  .pt140 {
    padding-top: 1.2rem;
  }
}
.pb140 {
  padding-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .pb140 {
    padding-bottom: 1.2rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.font20 {
  font-size: 0.2rem;
}
@media (max-width: 1580px) {
  .font20 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .font20 {
    font-size: 0.3rem;
  }
}
.font24 {
  font-size: 0.24rem;
}
@media (max-width: 1580px) {
  .font24 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .font24 {
    font-size: 0.34rem;
  }
}
.font30 {
  font-size: 0.3rem;
}
@media (max-width: 1199px) {
  .font30 {
    font-size: 0.36rem;
  }
}
@media (max-width: 767px) {
  .font30 {
    font-size: 0.4rem;
  }
}
.font36 {
  font-size: 0.36rem;
}
@media (max-width: 1199px) {
  .font36 {
    font-size: 0.4rem;
  }
}
@media (max-width: 767px) {
  .font36 {
    font-size: 0.42rem;
  }
}
/* 容器样式 */
/* 标题样式 */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
}
h1 {
  font-size: 2.5em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 1.75em;
}
h4 {
  font-size: 1.5em;
}
h5 {
  font-size: 1.25em;
}
h6 {
  font-size: 1em;
}
/* 链接样式 */
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--on-color);
}
/* 列表样式 */
ul,
ol {
  list-style: none;
}
li {
  margin-bottom: 5px;
}
/* 按钮样式 */
button,
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  background-color: var(--on-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover,
.btn:hover {
  background-color: var(--on-color);
}
/* 图片样式 */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 表格样式 */
table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}
th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background-color: #f4f4f4;
}
/* 表单样式 */
input,
textarea,
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
input[type="submit"] {
  background-color: var(--on-color);
  color: #fff;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover {
  background-color: var(--on-color);
}
header {
  position: relative;
  height: 65px;
  background-color: #000000;
}
header > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.5s;
}
header > .container .header_logo {
  position: relative;
}
header > .container .header_logo img {
  height: 80%;
  width: auto;
  float: left;
}
header > .container .header_logo .logo2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
header > .container .header_menu {
  display: flex;
  align-items: center;
}
header > .container .header_menu > li {
  margin-bottom: 0;
  position: relative;
}
header > .container .header_menu > li > a {
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 65px;
  padding: 0 0.31rem;
  transition: color 0.5s, border-color 0.5s;
  border-color: transparent;
  color: #fff;
}
header > .container .header_menu > li .pro_sub {
  position: absolute;
  display: none;
  top: 100%;
  left: 50%;
  width: 200%;
  background-color: #000;
  z-index: 9999;
  transform: translateX(-50%);
}
header > .container .header_menu > li .pro_sub a {
  text-align: center;
  padding: 10px 20px;
  display: block;
  color: #fff;
  border-bottom: 1px solid #ffffff40;
  font-size: 12px;
}
header > .container .header_menu > li:hover > a,
header > .container .header_menu > li.active > a {
  color: var(--on-color);
}
.m-header {
  background: #fff;
  display: none;
  justify-content: space-between;
  height: 50px;
  padding: 0 15px;
  align-items: center;
  position: relative;
  z-index: 999;
}
.m-header .img {
  height: 100%;
}
.m-header .img img {
  height: 100%;
  width: auto;
  padding: 5px;
}
.m-header .btns {
  display: flex;
  flex-direction: column;
}
.m-header .btns span {
  display: block;
  width: 30px;
  background: #333;
  height: 2px;
  margin: 5px 0;
  transition: all 0.5s;
}
.m-header .btns span.on span:nth-child(1) {
  transform: rotate(45deg) translateX(27%);
}
.m-header .btns span.on span:nth-child(1) {
  display: none;
}
.m-header .btns span.on span:nth-child(1) {
  transform: rotate(-45deg) translateX(27%);
}
.m-header .menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 0;
}
.m-header .menu a {
  display: block;
  padding: 10px;
      background: var(--on-color);
    color: #fff;
    border-bottom: 1px solid #fff;
}
footer {
  background: #3c3c3c;
  padding: 20px 0px 0px;
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
}
footer .container .list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .container .list h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 550;
}
footer .container .list ul {
  display: flex;
  gap: 10px;
}
footer .container .list ul li a {
  position: relative;
}
footer .container .list ul li a .qrcode {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #fff;
  display: none;
}
footer .container .list ul li a .qrcode img {
  width: 100%;
  height: 100%;
}
footer .container .list ul li a:hover .qrcode {
  display: block;
}
footer .container .list_contact h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 550;
}
footer .container .list_contact ul li div {
  display: flex;
  align-items: center;
}
footer .container .list_contact ul li div img {
  height: 16px;
  width: 16px;
  margin: 0 10px 0  0 ;
}
footer .container .list_contact ul li div span {
  color: #fff;
}
footer .bottom {
  color: #fff;
  opacity: 0.7;
  padding: 10px 0px;
  border-top: 1px solid rgba(144, 144, 144, 0.2);
  text-align: center;
  font-size: 12px;
}
footer .bottom a {
  color: #fff;
}
/* index */
.banner {
  display: flex;
  justify-content: center;
  position: relative;
}
.banner>h3{
    position: absolute;
    left: 50%;
    top: 16.042vw;
    transform: translate(-50%,-50%);
    z-index: 9;
    color: #fff;
    font-size: 50px;
}
.banner .mySwiper2::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #00000040;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.banner .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.banner .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
}
.banner .mySwiper {
  height: auto;
  width: 40%;
  box-sizing: border-box;
  padding: 10px 0;
  position: absolute;
  bottom: 20%;
}
.banner .mySwiper .swiper-slide {
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  transform: scale(0.9);
  padding: 2%;
}
.banner .mySwiper .swiper-slide-thumb-active {
  transform: scale(1);
  border: 3px solid var(--on-color);
}
.banner .swiper-free-mode > .swiper-wrapper {
  justify-content: start;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  bottom: 24%!important;
  top: auto;
}
.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
  font-size: 64px;
}
.banner .swiper-button-next {
  right: 20%;
}
.banner .swiper-button-prev {
  left: 20%;
}
.about{
    margin-top: 20px;
}
.about .container {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
}
.about .container .left {
  width: 30%;
  min-height: 800px;
}
.about .container .left h3 {
  line-height: 1;
  font-weight: normal;
  margin: 50px 0 20px 0;
  font-size: 24px;
}
.about .container .left h3 span {
  color: var(--on-color);
  border-right: 2px var(--on-color) solid;
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
}
.about .container .left ul li a {
  display: block;
  width: 90%;
  margin-left: 10%;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  color: var(--on-color) !important;
  text-align: center;
}
.about .container .left ul li .shipin {
  display: block;
  width: 100%;
  height: 100px;
  position: relative;
}
.about .container .left ul li .shipin .img1 {
  width: 68%;
  position: absolute;
  top: 24%;
  left: 16%;
  height: 125%;
}
.about .container .right {
  width: 65%;
  min-height: 800px;
  margin-top: 50px;
}
.about .container .right img{
    margin: 0;
    display: inline-block;
}
.contact {
  padding: 60px 0 20px;
  min-height: 100vh;
}
.contact .container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
.contact .container .title {
  border-bottom: 1px solid #A6A6A6;
  min-height: 30px;
  background-color: transparent;
  color: var(--on-color);
  font-size: 24px;
  font-family: asap, sans-serif;
  font-weight: 400;
  padding-left: 2px;
  margin-bottom: 3px;
  padding-bottom: 5px;
  position: relative;
}
.contact .container .left {
  width: 60%;
}
.contact .container .right {
  width: 35%;
}
.contact .container .right form label p {
  font-size: 14px;
  color: #6b6b6b;
  font-weight: 600;
  margin: 5px 0;
}
.contact .container .right form label input {
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #C4C4C4;
  background-color: #F2F2F2;
  padding: 6px;
  color: #333;
  line-height: 1;
  border-radius: 0;
  font-weight: 300;
  font-style: normal;
  position: relative;
  margin-bottom: 0;
}
.contact .container .right form label textarea {
  margin-bottom: 0;
  width: 100%;
  min-height: 68px;
  border-style: solid;
  border-width: 1px;
  border-color: #C4C4C4;
  background-color: #F2F2F2;
  padding: 6px;
  color: #333;
  line-height: 1;
  font-weight: 300;
  position: relative;
  border-radius: 0;
}
.contact .container .right form div {
  display: flex;
  margin-top: 20px;
}
.contact .container .right form div button {
  background: #bee4ff;
  color: #6B6B6B;
  width: 129px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--on-color);
  border-radius: 10px;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  margin-bottom: -1px;
  position: relative;
  padding: 10px 0;
}
.contact .container .right form div button:hover {
  background-color: #f2f2f2;
}
.join {
  padding: 60px 0 20px;
  background: #f8f9fb url("../images/join_bg.png") no-repeat center center;
  background-size: cover;
}
.join .container {
  max-width: 100%;
  width: 100%;
  display: flex;
}
.join .container .left {
  width: 50%;
  position: relative;
}
.join .container .left a {
  position: absolute;
  right: 10%;
  bottom: 15%;
  z-index: 9;
  width: 277px;
  height: 88px;
  color: #fff;
  background: var(--on-color) url("../images/下载.png") no-repeat top right;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-left: 20px;
  font-size: 24px;
  clip-path: polygon(0 0, 93% 0, 100% 25%, 100% 100%, 0 100%, 0 0);
  justify-content: center;
}
.join .container .left a span {
  font-size: 14px;
}
.join .container .right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.join .container .right h4 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}
.join .container .right p {
  width: 100%;
  max-width: 500px;
  padding: 30px 44px 28px;
  position: relative;
  background: #fff;
  margin-bottom: 20px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 95% 100%, 0 100%, 0 0);
  height: 100px;
  display: flex;
  align-items: center;
}
.join .container .right p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 30px;
  transform: translateY(-50%);
  background: var(--on-color);
}
.join .container .right p::after {
  right: 10px;
  bottom: 5px;
  color: #e3e9f0;
  position: absolute;
  font-size: 30px;
  font-weight: bold;
}
.join .container .right p a {
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
.join .container .right p:nth-child(2)::after {
  content: "01";
}
.join .container .right p:nth-child(3)::after {
  content: "02";
}
.join .container .right p:nth-child(4)::after {
  content: "03";
}
.category {
  padding: 50px 0;
}
.category .container {
  max-width: 1000px;
}
.category .title {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-bottom: 3px solid var(--on-color);
  width: 100%;
}
.category .title h3 {
  font-size: 26px;
  color: #f00;
}
.category .title form .sub {
  background: none;
  color: var(--on-color);
  font-size: 20px;
}
.category .con {
  margin: 20px 0;
}
.category .con .list {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
.category .con .list li {
  width: 16.6%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
.category .con .list li img {
  max-width: 100%;
}
.category .con .list li:hover {
  transform: translateY(-5px);
}
.product {
  padding: 50px 0;
}
.product .container {
  max-width: 1000px;
}
.product .container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--on-color);
}
.product .container .title .img {
  width: 45%;
  display: flex;
  justify-content: flex-end;
}
.product .container .title .img img {
  width: 30%;
  margin: 0;
}
.product .container .title h3 {
  color: var(--on-color);
  width: 50%;
  font-size: 30px;
  text-align: left;
}
.product .container > p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.product .container .list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
.product .container .list li {
  width: 24%;
  transition: all 0.3s;
}
.product .container .list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .container .list li:hover {
  transform: translateY(-5px);
}
.breadcrumb {
  font-size: 33px;
}
.breadcrumb a {
  color: #414041;
}
.show {
  padding-top: 50px;
}
.show .container {
  max-width: 1000px;
}
.show .container .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.show .container .con .img {
  width: 50%;
}
.show .container .con .list {
  width: 40%;
}
.show .container .con .list ul li {
  font-size: 16px;
  color: #7F7F7F;
}
.show .container .con .list ul li .cont {
  background: #ff6700;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 0 20px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
}
.show .container .con .list ul li .video {
  color: #ff6700;
  display: inline-block;
  margin-left: 20px;
  font-weight: bold;
}
.news {
  padding: 50px 0;
}
.news .container {
  max-width: 1000px;
}
.news .container ul li {
  display: flex;
  justify-content: space-between;
  flex: wrap;
  margin-bottom: 70px;
}
.news .container ul li .img {
  width: 37%;
}
.news .container ul li .info {
  width: 50%;
  padding-left: 36px;
  border-left: 4px solid var(--on-color);
}
.news .container ul li .info h4 {
  font-size: 30px;
  font-weight: 400;
  line-height: 2;
}
.news .container ul li .info p {
  line-height: 1.8;
  font-size: 14px;
  color: #929292;
  margin-bottom: 30px;
}
.news .container ul li .info a {
  font-size: 16px;
  color: var(--on-color);
  background: url(../images/rr6.png) no-repeat right center;
  padding-right: 50px;
}
.news_list {
  padding: 50px 0;
}
.news_list .container {
  max-width: 1000px;
  position: relative;
}
.news_list .container .list {
  position: relative;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.news_list .container .list .grid-item {
  width: 31%;
  box-sizing: border-box;
  background-color: #edeef0;
  border: 1px solid rgba(213, 216, 221);
}
.news_list .container .list .grid-item a .img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 8px;
  border-radius: 0;
}
.news_list .container .list .grid-item a h3 {
  padding: 0 8px;
  font-size: 20px;
  margin: 10px 0;
  color: #282828;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .container .list .grid-item a .text {
  padding: 10px;
}
.news_list .container .list .grid-item a .text .data {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}
.news_list .container .list .grid-item a .text .data img {
  width: 20px;
  margin: 0;
  margin-right: 10px;
}
.news_list .container .list .grid-item a .text .desc {
  font-size: 12px;
  color: #606060;
  margin: 10px 1px;
}
.news_list .container .list .grid-item a .text .more {
  display: flex;
  justify-content: end;
}
.news_list .container .list .grid-item a .text .more span {
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  padding: 8px 30px;
  display: inline-block;
  margin: 5px 3px 5px 3px;
  text-transform: uppercase;
  line-height: 1.4em;
  font-weight: 500;
  font-size: 12px;
  outline: none;
  position: relative;
  background: var(--on-color);
}
.news_show {
  padding: 50px 0;
}
.news_show .container {
  max-width: 1000px;
}
.news_show .container h3 {
  width: 100%;
  height: 100px;
  text-align: center;
  font-size: 24px;
  color: #999;
}
.brand_banner {
  position: relative;
}
.brand_banner .text {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 50%;
  max-width: 700px;
}
.brand_banner .text h3 {
  color: #fff;
  font-size: 46px;
}
.brand_banner .text p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}
.brand_list {
  padding: 50px 0;
}
.brand_list .container {
  max-width: 1000px;
}
.brand_list .container .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
.brand_list .container .list li {
  width: 32%;
  transition: all 0.3s;
  margin-bottom: 1%;
  cursor: pointer;
}
.brand_list .container .list li .info {
  padding: 10px;
}
.brand_list .container .list li .info .date {
  font-size: 12px;
  color: #333;
  margin-bottom: 10px;
}
.brand_list .container .list li .info .title {
  color: var(--on-color);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: bold;
}
.brand_list .container .list li .info .desc {
  font-size: 14px;
  margin-bottom: 20px;
}
.brand_list .container .list li .info a {
  font-size: 16px;
  color: var(--on-color);
}
.pagination{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination li{
    margin: 20px 10px;
}
.pagination li a{
    padding: 10px 18px;
    color: var(--on-color);
    border: 1px solid var(--on-color);
}
.pagination li.active a {
    color: #fff;
    background: var(--on-color);
}
@media screen and (max-width: 1200px) {
  header {
    display: none;
  }
  .m-header {
    display: flex;
  }
  footer{
      padding-top: 20px;
  }
  footer .container {
    /*flex-direction: column;*/
    padding: 0 15px;
  }
  footer .container .list:nth-child(2) {
    padding: 0;
  }
  footer::before {
    display: none;
  }
  footer .container .list_contact{
      margin-top: 10px;
  }
  footer .container .list_contact h3{
      margin-bottom: 10px;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    bottom: 25%!important;
  }
  .banner .swiper-button-next:after,
  .banner .swiper-button-prev:after {
    font-size: 44px;
  }
  .banner>h3{
      font-size: 30px;
  }
  .about{
    margin-top: 20px;
}
  .about .container {
    flex-direction: column;
  }
  .about .container .left {
    display: none;
  }
  .join .container {
    flex-direction: column;
  }
  .join .container .left {
    width: 100%;
  }
  .join .container .right {
    width: 100%;
  }
  .brand_list .container .list li {
    width: 49%;
  }
  .contact .container {
    flex-direction: column;
  }
  .contact .container .left {
    width: 100%;
  }
  .contact .container .right {
    width: 100%;
  }
  .breadcrumb {
    font-size: 16px;
  }
  .product .container .list li,
  .category .con .list li {
    width: 48%!important;
  }
  .show .container .con {
    flex-direction: column;
  }
  .show .container .con .img {
    width: 100%;
  }
  .show .container .con .list {
    width: 100%;
  }
  .news_list .container .list .grid-item {
    width: 48%;
  }
  .news .container ul li {
    flex-direction: column;
  }
  .news .container ul li .info {
    width: 100%;
  }
  .news .container ul li .img {
    width: 100%;
    margin-top: 10px;
  }
  .about .container .right{
      width: 100%;
  }
}
@media screen and (max-width: 760px) {
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    bottom: 26%!important;
  }
  .banner .swiper-button-next {
    right: 10%;
  }
  .banner .swiper-button-prev {
    left: 10%;
  }
  .banner .swiper-button-next:after,
  .banner .swiper-button-prev:after {
    font-size: 24px;
  }
  .brand_banner img{
      max-width: 160%;
      width: 160%;
  }
}
