.about-container {
  text-align: center;
}
.about-container > h3.title {
  font-weight: 500;
  color: var(--subColor);
  line-height: 0.47rem;
  position: relative;
  padding-bottom: 0.08rem;
  margin-bottom: 0;
}
.about-container > h3.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.57rem;
  height: 0.02rem;
  background-color: var(--subColor);
}
.about-container > .sub-title {
  font-weight: 500;
  color: #000000;
  line-height: 0.19rem;
  margin: 0.22rem auto 0.3rem;
}
.about-main {
  padding: 0.8rem 2.6rem;
}
.about-main > .about-t {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, auto);
  gap: 0.68rem;
  margin-bottom: 0.6rem;
}
.about-main > .about-t > .about-l {
  width: 6.24rem;
  height: 100%;
  overflow: hidden;
}
.about-main > .about-t > .about-l > img {
  object-fit: cover;
  transition: var(--transition);
   height: 100%;
    width: auto;
}
.about-main > .about-t > .about-l:hover > img {
  transform: scale(1.1);
}
.about-main > .about-t > .about-r > .icon-quotes {
  margin-left: -1em;
}
.about-main > .about-t > .about-r > .title {
  font-weight: bold;
  color: #000000;
  line-height: 1;
  margin: 0.2rem 0;
}
.about-main > .about-t > .about-r > .sub-title {
  font-weight: 500;
  color: var(--subColor);
  line-height: 1;
  margin-bottom: 0.32rem;
}
.about-main > .about-t > .about-r > .richText {
  display: grid;
  /*gap: 0.2rem;*/
  font-weight: 400;
  color: #333333;
  line-height: 2;
  /* 滚动条整体样式 */
}
.about-main > .about-t > .about-r > .richText::-webkit-scrollbar {
  width: 0.03rem;
  /* 滚动条的宽度 */
  /* 滚动条轨道 */
  /* 滚动条滑块 */
}
.about-main > .about-t > .about-r > .richText::-webkit-scrollbar-track {
  background: #d9d9d9;
  /* 轨道的背景色 */
}
.about-main > .about-t > .about-r > .richText::-webkit-scrollbar-thumb {
  background: var(--subColor);
  /* 滑块的背景色 */
  /* 当鼠标悬停在滚动条上时滑块的样式 */
}
.about-main > .about-t > .about-r > .richText::-webkit-scrollbar-thumb:hover {
  background: var(--thumbColor);
  /* 滑块的背景色 */
}
.about-main > .about-b {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #a2a2a2;
  border-left: none;
  border-right: none;
  padding: 0.43rem 0;
}
.about-main > .about-b > li {
  width: max-content;
}
.about-main > .about-b > li > .num-val {
  display: flex;
  align-items: end;
}
.about-main > .about-b > li > .num-val > span {
  font-family: DIN, DIN;
  font-weight: bold;
  color: #00507f;
  line-height: 1;
}
.about-main > .about-b > li > .num-val > .tip {
  text-align: center;
  border-radius: 50%;
  background-color: var(--subColor);
  margin-left: 0.12rem;
  color: #fff;
  font-weight: 500;
  display: block;
}
.about-main > .about-b > li > .num-text {
  font-weight: 500;
  color: #000000;
  line-height: 23px;
}
.culture {
  padding: 0.87rem 2.6rem 0.81rem;
  text-align: center;
  color: #fff;
}
.culture > .culture-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 0.7rem 0;
}
.culture > .culture-content > li {
  height: 192px;
}
.culture > .culture-content > li img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.culture > .culture-content > li.culture-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 0;
}
.culture > .culture-content > li.culture-text:nth-child(2) {
  background-color: #0070bd;
}
.culture > .culture-content > li.culture-text:nth-of-type(3) {
  background-color: #00af96;
}
.culture > .culture-content > li.culture-text:last-child {
  background-color: #00b2d5;
}
.culture > .culture-content > li.culture-text > .title {
  font-weight: 500;
  line-height: 2;
  position: relative;
  margin-bottom: 0.16rem;
}
.culture > .culture-content > li.culture-text > .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.53rem;
  height: 0.05rem;
  background-color: #fff;
}
.culture > .culture-content > li.culture-text > p {
  font-weight: 400;
  color: #ffffff;
  margin-top: 0.1rem;
}
.about-honor {
  padding: 1.11rem 2.6rem 0.58rem;
}
.about-honor > .honor-view {
  display: grid;
  gap: 1.07rem;
  margin-bottom: 1.07rem;
}
.about-honor > .honor-view > li {

  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.66rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.about-honor > .honor-view > li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.07rem;
  background: url(../img/icon-honor.png) no-repeat center bottom;
  background-size: 100% 100%;
}
.about-honor > .honor-view > li >.img> img {
  object-fit: cover;
  transition: all .5s ease;
  transform: scale(1);
  height: auto;
  width: 100%;
}
.about-honor > .honor-view > li >.img > img:hover{
    transform: scale(1.2);
}
.about-honor h5 a{
    color: var(--subColor);
}
.product {
  padding: 0.87rem 2.6rem 0.84rem;
}
.product > .product-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.product > .product-list > li {
  margin: 0 110px 50px 0;
  flex-basis: calc((100% - 220px) / 3);
}
.product > .product-list > li:hover > .product-img {
  border-color: var(--subColor);
}
.product > .product-list > li:hover > .product-img > span img {
  transform: scale(1.1);
}
.product > .product-list > li:hover > .product-content {
  background-color: var(--subColor);
}
.product > .product-list > li * {
  cursor: pointer;
  transition: var(--transition);
}
.product > .product-list > li > .product-img {
  width: 100%;
  height: 4.58rem;
  padding: 14px;
  margin-bottom: 17px;
  border: 2px solid #7d7d7d;
}
.product > .product-list > li > .product-img > span {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product > .product-list > li > .product-img > span img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product > .product-list > li > .product-content {
  width: 100%;
  text-align: center;
  padding: 0.14rem 0;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  background-color: #9d9999;
}
.product > .product-list > li > .product-content > img {
  position: absolute;
  right: 0.38rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.28rem;
  height: 0.28rem;
}
@media screen and (max-width: 768px) {
  a.look-more.look-view {
    line-height: 2;
    font-size: 16px;
  }
  .product .product-list-view > a {
    flex-basis: calc((100% - 36px) / 3);
    margin: 0 18px 18px 0;
  }
  .product .product-list-view > a:nth-child(3n) {
    margin-right: 0;
  }
  .product .look-more.look-view {
    margin-top: 30px;
  }
  .product > .product-list > li {
    flex-basis: 100% !important;
    margin-right: 0 !important;
  }
  .product > .product-list > li:nth-child(2n) {
    margin-right: 0 !important;
  }
  .product > .product-list > li > .product-img {
    padding: 30px;
    height: 23rem !important;
    border-width: 3px;
  }
  .product > .product-list > li > .product-content {
    line-height: 2.5;
  }
  .product > .product-list > li > .product-content > img {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1199px) {
  .product > .product-list > li:nth-child(3n) {
    margin-right: 0;
  }
  .product > .product-list > li > .product-img {
    height: 6rem;
  }
}
@media screen and (min-width: 1201px) {
  .about-main .richText {
    /*max-height: 2.22rem;*/
    /*overflow: hidden;*/
    /*overflow-y: scroll;*/
    /*padding-right: 0.15rem;*/
  }
  .about-main .icon-quotes {
    width: 0.37rem;
    height: 0.3rem;
  }
  .about-main .num-val > .tip {
    width: 0.26rem;
    line-height: 0.26rem;
  }
  .product > .product-list > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .about-main {
    padding: 0.8rem var(--auto);
  }
  .about-main > .about-t {
    grid-template-columns: 1fr;
  }
  .about-main > .about-t > .about-l {
    width: 100%;
  }
  .about-main > .about-t > .about-r {
    grid-row-start: 1;
  }
  .about-main > .about-t > .about-r .icon-quotes {
    width: 20px;
    height: 20px;
  }
  .about-main > .about-t > .about-r > .richText > p {
    font-size: 13px;
  }
  .about-main > .about-b {
    padding: 20px 0;
  }
  .about-main .num-val > .tip {
    width: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .about-main .num-text {
    font-size: 14px;
  }
  .culture {
    padding: 0.87rem var(--auto) 0.81rem;
  }
  .culture > .culture-content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .culture > .culture-content > li {
    height: 25vh;
    display: flex;
    justify-content: center;
  }
  .culture > .culture-content > li.culture-text:nth-child(2) {
    grid-row-start: 1;
  }
  .culture > .culture-content > li.culture-text:last-of-type {
    grid-row-start: 5;
  }
  .culture > .culture-content > li.culture-text > .title {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .culture > .culture-content > li.culture-text > p {
    font-size: 14px;
  }
  .about-honor {
    padding: 1.11rem var(--auto) 0.58rem;
  }
  .about-honor > .honor-view > li {
    height: 4rem;
  }
  .product {
    padding: 0.87rem var(--auto) 0.84rem;
  }
  .product > .product-list > li {
    margin-right: 80px;
    flex-basis: calc((100% - 160px) / 3);
  }
  .product > .product-list > li:nth-child(3n) {
    margin-right: 0;
  }
  .product > .product-list > li > .product-img {
    height: 6.8rem;
  }
}
