@charset "UTF-8";
/**
 * @desc 海尼曼_style
 * @author Tven
 * @date 2023-07-21
 */
/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.125rem;
  z-index: 990;
  transition: all 0.5s ease-out;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header.active {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header > .container {
  height: 100%;
}

.logo {
  height: 100%;
  margin-right: auto;
}

.logo a {
  height: 100%;
}

.logo a img {
  height: 100%;
}

.pc_nav > ul > li {
  position: relative;
  height: 7.125rem;
  display: flex;
  align-items: center;
}

.pc_nav > ul > li:hover ul {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pc_nav > ul > li.active > a {
  color: #eb5312;
}

.pc_nav > ul > li.active > a i {
  color: #eb5312;
}

.pc_nav > ul > li:not(:first-child) {
  margin-left: 3.75rem;
}

.pc_nav > ul > li:last-child {
  margin-left: 1.5rem;
}

.pc_nav > ul > li:last-child a {
  padding-right: 0;
}

.pc_nav > ul > li > a {
  font-size: 1.125rem;
  padding: 0 1.5rem;
  color: #000;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.pc_nav > ul > li > a i {
  margin-left: .5rem;
  color: #666;
}

.pc_nav > ul > li > a:hover {
  color: #eb5312;
}

.pc_nav > ul > li > a:hover i {
  color: #eb5312;
}

.pc_nav > ul > li ul {
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-2rem);
  background: #fff;
  min-width: 100%;
  padding: 1rem 1.25rem;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.pc_nav > ul > li ul.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pc_nav > ul > li ul li {
  margin-bottom: 1rem;
}

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

.pc_nav > ul > li ul li a {
  font-size: 1rem;
  font-weight: lighter;
  color: #595858;
  padding: .5rem 0;
  white-space: nowrap;
  transition: all .3s ease;
}

.pc_nav > ul > li ul li a:hover {
  color: #eb5312;
}

.xs_bg {
  opacity: 0;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  transition: all 0.3s ease;
}

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

/* banner
---------------------------------------------------------------- */
.banner {
  width: 100%;
  height: calc(100vh - 7.125rem);
  margin-top: 7.125rem;
  position: relative;
}

.banner .swiper {
  height: 100%;
}

.banner .swiper .swiper-slide {
  height: 100%;
}

.banner .banner_swiper_more {
  position: absolute;
  left: 0;
  padding-left: calc(16.875rem + 15px);
  bottom: 5rem;
  z-index: 3;
  display: flex;
  align-content: center;
  color: #fff;
}

.banner .banner_swiper_more .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  margin: 0;
  background: #fff;
  width: .625rem;
  height: .625rem;
  border-radius: 50%;
  margin-right: 2rem;
  position: relative;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}

.banner .banner_swiper_more .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  width: 1rem;
  opacity: 1;
  transform: translateX(-50%) translateY(-1rem);
}

.banner .banner_swiper_more .swiper_autoplay {
  cursor: pointer;
}

.banner .banner_swiper_more .swiper_autoplay.active i:first-child {
  display: block;
}

.banner .banner_swiper_more .swiper_autoplay.active i:last-child {
  display: none;
}

.banner .banner_swiper_more .swiper_autoplay i:first-child {
  display: none;
}

/* about 样式
---------------------------------------------------------------- */
.about {
  padding: 5rem 0;
  background: #fff;
}

.about ul {
  margin-bottom: 6.875rem;
}

.about ul li {
  text-align: center;
}

.about ul li span {
  font-size: 6.625rem;
  line-height: 1;
  color: #eb5312;
}

.about ul li p {
  margin: 0;
  margin-top: .5rem;
  font-size: 20px;
  color: #595858;
}

.about .left {
  width: 50%;
}

.about .left img {
  max-height: 10.375rem;
}

.about .right {
  width: 50%;
  font-size: 20px;
  color: #595858;
  line-height: 1.6;
  text-indent: 2em;
}

.about .right p {
  margin: 0;
  font-size: 20px;
}

/* service 样式
---------------------------------------------------------------- */
.product {
  padding: 5rem 0;
  background: #fbfaf9;
}

.product ul li {
  width: 25%;
  border-radius: 1.5rem;
  background: #fbfaf9;
  transition: all .3s ease;
  color: #595858;
  padding: 2.5rem 0;
  text-align: center;
}

.product ul li:nth-child(1) i::before {
  background-image: url("../img/ico_1.png");
}

.product ul li:nth-child(1) i::after {
  background-image: url("../img/ico_1s.png");
}

.product ul li:nth-child(2) i::before {
  background-image: url("../img/ico_2.png");
}

.product ul li:nth-child(2) i::after {
  background-image: url("../img/ico_2s.png");
}

.product ul li:nth-child(3) i::before {
  background-image: url("../img/ico_3.png");
}

.product ul li:nth-child(3) i::after {
  background-image: url("../img/ico_3s.png");
}

.product ul li:nth-child(4) i::before {
  background-image: url("../img/ico_4.png");
}

.product ul li:nth-child(4) i::after {
  background-image: url("../img/ico_4s.png");
}

.product ul li .title {
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0 1.5rem;
}

.product ul li i {
  display: block;
  margin: 2.875rem auto;
  width: 8.375rem;
  height: 6.75rem;
  position: relative;
}

.product ul li i::after, .product ul li i::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .3s ease;
}

.product ul li i::after {
  opacity: 0;
}

.product ul li p {
  font-size: 1.125rem;
  line-height: 1.8;
  padding: 0 2.875rem;
}

.product ul li:hover {
  color: #fff;
  background: #eb5312;
}

.product ul li:hover i::before {
  opacity: 0;
}

.product ul li:hover i::after {
  opacity: 1;
}

/* product 样式
---------------------------------------------------------------- */
.product {
  padding-top: 5rem;
}

/* footer 样式
---------------------------------------------------------------- */
.footer {
  color: #fff;
  padding-top: 3.125rem;
  padding-bottom: 1.25rem;
  background: #eb5312;
}

.footer .left {
  padding-bottom: 5rem;
}

.footer .left img {
  max-height: 3rem;
}

.footer .left .title {
  font-size: 1rem;
  margin-top: 1.25rem;
}

.footer .left .title a {
  color: #fff;
}

.footer .right {
  width: 13.75rem;
  height: 5.625rem;
  display: flex;
  justify-content: space-between;
}

.footer .right img {
  height: 100%;
}

.footer .foot_di {
  color: rgba(255, 255, 255, 0.65);
}

.footer .foot_di p {
  display: flex;
  flex-wrap: wrap;
}

.footer .foot_di p a {
  color: rgba(255, 255, 255, 0.65);
  margin-left: 1rem;
  display: flex;
  align-items: center;
  transition: all .3s ease;
}

.footer .foot_di p a:hover {
  color: #fff;
}

.footer .foot_di p a img {
  margin-right: .5rem;
}

/* zl_mod 通用样式
---------------------------------------------------------------- */
.maodian {
  position: absolute;
  left: 0;
  top: -6.25rem;
}

.mod_more.white {
  background: #fff;
}

.mod_more.white a {
  width: 12.5rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  box-shadow: none;
}

.mod_more.bg {
  display: flex;
  justify-content: center;
}

.mod_more.bg a {
  width: 17.5rem;
  height: 4.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.375rem;
  background-image: linear-gradient(to right, #fe6727, #cf3f02);
  color: #fff;
}

.mod_more a {
  text-transform: uppercase;
  font-size: 1.125rem;
  font-family: 'MONTSERRAT-BOLD';
  color: #eb5312;
}

.mod_more a i {
  font-size: 1rem;
  margin-left: .5rem;
  text-shadow: 1px 0 0 #eb5312;
}

.mod_title {
  margin-bottom: 1.875rem;
  text-align: center;
}

.mod_title strong {
  font-size: 2.5rem;
  color: #585858;
  display: block;
}

.mod_title span {
  font-size: 2rem;
  color: #c8c8c9;
  text-transform: uppercase;
}

.swiper_fanye .ico_prev, .swiper_fanye .ico_next {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #888;
  transition: all .3s ease;
}

.swiper_fanye .ico_prev i, .swiper_fanye .ico_next i {
  font-size: 1.25rem;
}

.swiper_fanye .ico_prev.swiper-button-disabled, .swiper_fanye .ico_next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.swiper_fanye .ico_prev:hover, .swiper_fanye .ico_next:hover {
  background: #eb5312;
  color: #fff;
}

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

.mod_banner {
  margin-top: 7.125rem;
  height: calc(100vh - 7.125rem);
  display: flex;
  align-items: center;
}

.mod_banner .container img {
  max-height: 10.875rem;
  margin-bottom: 4rem;
}

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

.mod_fanye li.disabled {
  pointer-events: none;
}

.mod_fanye li.disabled.active a, .mod_fanye li.disabled.active span {
  background-color: #eb5312;
  color: #fff;
}

.mod_fanye li.active a {
  background-color: #eb5312;
  color: #fff;
}

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

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

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

.mod_fanye li a:hover {
  color: #eb5312;
}

.mod_fanye02 {
  margin-top: 3.75rem;
  border-top: 1px dashed #dedede;
  padding: 2.5rem 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.mod_fanye02 a {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  width: 48%;
  color: #474747;
  transition: all 0.3s;
}

.mod_fanye02 a:last-child {
  justify-content: flex-end;
}

.mod_fanye02 a:hover {
  color: #eb5312;
}

.mod_fanye02 a:hover i {
  color: #eb5312;
}

.mod_fanye02 a span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mod_fanye02 a i {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #999;
  transition: all 0.3s;
}

.product_list {
  padding: 5rem 0;
}

.product_list .item {
  margin-bottom: 4.25rem;
  width: calc(50% - 1.5rem);
  border-radius: 1.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.product_list .item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #585858;
  padding: 1.875rem;
}

.product_list .item a .left {
  width: 40%;
}

.product_list .item a .left .img {
  padding-top: 74%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.product_list .item a .right {
  width: calc(60% - 1.875rem);
}

.product_list .item a .right .title {
  font-size: 1.5rem;
  color: #eb5312;
}

.product_list .item a .right p {
  font-size: 1.125rem;
  margin-top: .5rem;
}

.product_list .item a .right p span {
  margin-left: 1rem;
}

.product_list .item a .right ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  margin-top: .75rem;
}

.product_list .item a .right ul li::after {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/dui.png) center no-repeat;
  background-size: cover;
}

.product_detail {
  padding: 2.5rem 0;
}

.product_detail .mod_content {
  padding: 0 20%;
}

.contact {
  padding: 7.5rem 0;
}

.contact .left {
  width: 50%;
}

.contact .left p {
  font-size: 1.125rem;
  color: #585858;
  line-height: 2;
  margin-bottom: 5rem;
  font-weight: bold;
}

.contact .left .group {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact .left .group.tm img {
  max-height: 3.25rem;
}

.contact .left .group.jd img {
  max-height: 2.25rem;
}

.contact .left .group a {
  padding: .75rem 2.5rem;
  background: #eb5312;
  border-radius: 2rem;
  color: #fff;
  font-size: 1rem;
}

.contact .right {
  width: 15%;
  margin-right: 10%;
}

.contact .right .group:last-child {
  margin-top: 3.75rem;
}

.contact .right .group .title {
  color: #eb5312;
  font-size: 1.25rem;
  font-weight: bold;
}

.contact .right .group p {
  font-size: 1rem;
  color: #585858;
  line-height: 1.6;
  margin: 0;
  margin-top: 1rem;
}

.brand_meaning {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.brand_meaning .left {
  width: 15.5rem;
}

.brand_meaning .right {
  width: calc(100% - 21.25rem);
}

.brand_meaning .right .mod_content {
  font-size: 1.25rem;
  color: #585858;
  line-height: 1.6;
}

.history {
  position: relative;
  background: #fbfaf9;
  padding: 5rem 0;
}

.history ul {
  margin-top: 5rem;
}

.history ul li {
  display: flex;
  align-items: center;
  margin-bottom: 3.125rem;
}

.history ul li .time {
  width: 10.875rem;
  height: 3.875rem;
  border-radius: 2rem;
  background: #eb5312;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.history ul li p {
  font-size: 1.25rem;
  color: #595858;
  line-height: 1.6;
}

.product_system {
  position: relative;
  padding: 5rem 0;
}

.product_system .group {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.product_system .group:last-child {
  margin-top: 5rem;
}

.product_system .group:last-child li:last-child .caption {
  padding: 4rem .5rem;
}

.product_system .group:last-child li:nth-last-child(2) .caption {
  padding: 5rem .5rem;
}

.product_system .group li {
  width: calc((100% - 4rem)/6);
  text-align: center;
}

.product_system .group li:last-child .caption {
  padding: 7rem .5rem;
}

.product_system .group li:nth-last-child(2) .caption {
  padding: 4rem .5rem;
}

.product_system .group li .title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #eb5312;
  margin-bottom: 2.5rem;
  text-align: left;
}

.product_system .group li img {
  width: 100%;
  border: 1px solid #dedede;
}

.product_system .group li .caption {
  margin-top: .5rem;
  padding: 3.5rem .5rem;
  background: #eb5312;
  color: #fff;
  border-radius: 1rem;
}

.product_system .group li .caption h4 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.product_system .group li .caption p {
  font-size: 12px;
  line-height: 1.8;
}

.product_system .group li .text h5 {
  font-size: 1.375rem;
  color: #eb5312;
  font-weight: bold;
  margin: 1rem 0;
}

.product_system .group li .text p {
  font-size: 1.25rem;
  color: #585858;
}

.bbj {
  margin-top: 10rem;
  padding-bottom: 5rem;
}

.bbj .items .item {
  position: relative;
  width: calc((100% - 5.5rem)/3);
  border-radius: 1.5rem;
  overflow: hidden;
}

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

.bbj .items .item:hover .text {
  opacity: 1;
}

.bbj .items .item .img {
  padding-top: 100%;
  position: relative;
}

.bbj .items .item .img span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}

.bbj .items .item .text {
  position: absolute;
  left: 0;
  top: 0;
  background: #eb5312;
  opacity: 0;
  color: #fff;
  transition: all .5s ease;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

.bbj .items .item .text .title {
  font-size: 2.5rem;
}

.bbj .items .item .text p {
  font-size: 1.25rem;
  line-height: 1.6;
}

/* 媒体查询
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .menu-link {
    display: block;
    transition: all 0.3s ease;
    margin-left: 2rem;
  }
  .menu-link span::before, .menu-link span::after {
    background: #eb5312;
  }
  .menu-link span i {
    background: #eb5312;
  }
  .menu-link.active {
    position: relative;
    z-index: 10;
  }
  .menu-link.active span::before, .menu-link.active span::after {
    background: #eb5312;
  }
  .header {
    position: relative;
    top: auto;
    left: auto;
  }
  .header.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header.active .pc_nav > ul > li > a {
    color: #fff;
  }
  .header.active .menu-link span::before, .header.active .menu-link span::after {
    background: #eb5312;
  }
  .header.active .menu-link span i {
    background: #eb5312;
  }
  .header.active .menu-link.active span::before, .header.active .menu-link.active span::after {
    background: #fff;
  }
  .header.active .menu-link.active span i {
    background: transparent;
  }
  .pc_nav {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    position: absolute;
    width: 70%;
    height: 100vh;
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
  }
  .pc_nav.active {
    opacity: 1;
    transform: translateX(0);
  }
  .pc_nav > ul {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background: #eb5312;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
  }
  .pc_nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #fe6727;
    border-top: 1px solid #cf3f02;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    padding: 1rem 0;
  }
  .pc_nav > ul > li:not(:first-child) {
    margin-left: 0;
  }
  .pc_nav > ul > li:not(:last-child) {
    padding-right: 0;
  }
  .pc_nav > ul > li.active > a {
    color: #fff;
  }
  .pc_nav > ul > li.active > a i {
    color: #fff;
  }
  .pc_nav > ul > li.active::after {
    display: none;
  }
  .pc_nav > ul > li:first-child {
    border-top: none;
  }
  .pc_nav > ul > li:last-child {
    border-bottom: none;
  }
  .pc_nav > ul > li > a {
    color: #fff;
    font-size: 18px;
    padding: 0;
    text-align: center;
    display: block;
  }
  .pc_nav > ul > li > a:hover {
    color: #fff;
  }
  .pc_nav > ul > li > a:hover i {
    color: #fff;
  }
  .pc_nav > ul > li > a i {
    color: #fff;
  }
  .pc_nav > ul > li ul {
    opacity: 1;
    position: static;
    pointer-events: auto;
    transform: translateY(0);
    display: flex;
    flex-wrap: wrap;
    margin-top: .5rem;
    background: none;
    box-shadow: none;
    border-radius: 0;
  }
  .pc_nav > ul > li ul li {
    margin-right: 1.5rem;
    margin-bottom: .5rem;
  }
  .pc_nav > ul > li ul li a {
    font-size: 14px;
    padding: 0;
    color: rgba(255, 255, 255, 0.85);
  }
  .pc_nav > ul > li ul li a:hover {
    color: rgba(255, 255, 255, 0.85);
  }
  .banner {
    width: 100%;
    height: 28vh;
    margin-top: 0;
    position: relative;
  }
  .banner .swiper {
    height: 100%;
  }
  .banner .swiper .swiper-slide {
    height: 100%;
  }
  .banner .banner_swiper_more {
    bottom: 2rem;
    padding-left: 30px;
  }
  .about {
    padding: 4rem 0;
  }
  .about ul {
    margin-bottom: 4rem;
  }
  .about ul li span {
    font-size: 3rem;
    font-weight: bold;
  }
  .about ul li p {
    font-size: 14px;
  }
  .about .flex {
    flex-wrap: wrap;
  }
  .about .flex .left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about .flex .left img {
    max-height: 5rem;
  }
  .about .flex .right {
    width: 100%;
    padding-top: 2rem;
  }
  .about .flex .right p {
    font-size: 14px;
  }
  .product {
    padding: 4rem 0;
    padding-top: 0;
  }
  .product ul {
    flex-wrap: wrap;
  }
  .product ul li {
    width: 48%;
    background: #eb5312;
    color: #fff;
    margin-bottom: 1.5rem;
  }
  .product ul li .title {
    font-size: 16px;
  }
  .product ul li i::before {
    opacity: 0;
  }
  .product ul li i::after {
    opacity: 1;
  }
  .product ul li p {
    font-size: 14px;
    line-height: 1.6;
  }
  .footer .left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
  }
  .footer .left img {
    max-height: 4rem;
  }
  .footer .left .title {
    font-size: 14px;
  }
  .footer .right {
    display: none;
  }
  .footer .foot_di {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer .foot_di p {
    justify-content: center;
    font-size: 12px;
  }
  .mod_banner {
    margin-top: 0;
    height: 28vh;
  }
  .mod_banner .container img {
    max-height: 5rem;
    margin-bottom: 2rem;
  }
  .brand_meaning .flex {
    flex-wrap: wrap;
  }
  .brand_meaning .flex .left {
    width: 50%;
    margin: 0 auto;
  }
  .brand_meaning .flex .right {
    margin-top: 2rem;
    width: 100%;
  }
  .brand_meaning .flex .right .mod_content {
    font-size: 14px;
  }
  .history {
    padding-bottom: 2rem;
  }
  .history ul li .time {
    font-size: 16px;
  }
  .history ul li p {
    font-size: 14px;
  }
  .product_system .group {
    flex-wrap: wrap;
  }
  .product_system .group:last-child li:last-child .caption {
    padding: 1.5rem 1rem;
  }
  .product_system .group:last-child li:nth-last-child(2) .caption {
    padding: 1.5rem 1rem;
  }
  .product_system .group:last-child li img {
    width: 40%;
  }
  .product_system .group:last-child li .caption {
    width: 60%;
  }
  .product_system .group li {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.5rem 0;
    border-bottom: 1px solid #dedede;
  }
  .product_system .group li:last-child .caption {
    padding: 1.5rem 1rem;
  }
  .product_system .group li:nth-last-child(2) .caption {
    padding: 1.5rem 1rem;
  }
  .product_system .group li .title {
    width: 100%;
    font-size: 16px;
  }
  .product_system .group li img {
    width: 50%;
    order: 1;
  }
  .product_system .group li .caption {
    order: 3;
    width: 100%;
    padding: 1.5rem 1rem;
  }
  .product_system .group li .caption h4 {
    font-size: 14px;
    font-weight: bold;
  }
  .product_system .group li .caption p {
    font-size: 12px;
  }
  .product_system .group li .text {
    order: 2;
    width: 50%;
  }
  .product_system .group li .text h5 {
    font-size: 16px;
  }
  .product_system .group li .text p {
    font-size: 14px;
  }
  .bbj {
    margin-top: 0;
  }
  .bbj .items .item {
    width: 100%;
  }
  .bbj .items .item:not(:nth-child(3n)) {
    margin: 0;
    margin-bottom: 2rem;
  }
  .bbj .items .item .text {
    top: auto;
    bottom: 0;
    height: auto;
    opacity: 1;
    padding: 1.5rem;
    background: rgba(237, 84, 18, 0.85);
  }
  .bbj .items .item .text .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .bbj .items .item .text p {
    font-size: 14px;
  }
  .bbj .items .item .img span {
    display: none;
  }
  .contact {
    padding: 5rem 0;
  }
  .contact .left {
    width: 100%;
  }
  .contact .left p {
    font-size: 14px;
  }
  .contact .left .group a {
    font-size: 14px;
  }
  .contact .right {
    width: 100%;
    margin: 0;
    margin-top: 3rem;
  }
  .contact .right .group .title {
    font-size: 16px;
  }
  .contact .right .group p {
    font-size: 14px;
  }
  .product_detail .mod_content {
    padding: 0;
  }
  .product_list {
    padding: 4rem 0;
  }
  .product_list .item {
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .product_list .item a {
    padding: 1.875rem 1.5rem;
  }
  .product_list .item a .left {
    width: 32%;
  }
  .product_list .item a .right {
    width: 68%;
    padding-left: 2rem;
  }
  .product_list .item a .right .title {
    font-size: 16px;
  }
  .product_list .item a .right p {
    font-size: 14px;
  }
  .product_list .item a .right ul li {
    font-size: 14px;
    margin-top: 0;
  }
  .maodian {
    top: 0;
  }
}

@media (min-width: 1201px) {
  .container {
    max-width: calc(100% - 33.75rem);
    width: calc(100% - 33.75rem) !important;
    padding: 0 15px;
  }
}
