@-webkit-keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.banner {
  height: 100%;
  clear: both;
  overflow: hidden;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner .swiper-container {
  height: 100%;
}
.banner .swiper-slide {
  width: 100% !important;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.banner img {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.banner .pc {
  display: block;
}
.banner .mobile {
  display: none;
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .text {
  width: 100%;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -4rem;
}
.banner .text .textC {
  max-width: 75rem;
}
.banner .text .title-1 {
  font-size: 3.2rem;
  font-weight: 700;
}
.banner .text .title-2 {
  font-size: 7rem;
  font-weight: 700;
}
.banner .text .title-3 {
  font-size: 3.2rem;
  font-weight: 700;
}
.banner .text .btnDiv {
  padding-top: 8rem;
}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
  font-size: 1.6rem;
}
.banner .swiper-button-prev:hover,
.banner .swiper-button-next:hover {
  background-color: var(--main-color);
  color: #fff;
}
.banner .swiper-button-prev {
  left: 3rem;
}
.banner .swiper-button-next {
  right: 3rem;
}
.banner .swiper-pagination {
  display: none;
}
.banner .swiper-pagination-bullet-active {
  background: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .banner {
    height: auto;
  }
  .banner .pc {
    display: none;
  }
  .banner .mobile {
    display: block;
  }
  .banner .swiper-button-next,
  .banner .swiper-button-prev {
    display: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .banner .swiper-button-next:after,
  .banner .swiper-button-prev:after {
    font-size: 12px;
  }
  .banner .swiper-pagination {
    display: block;
    line-height: 1;
  }
  .banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .banner .text {
    margin-top: -20px;
  }
  .banner .text .textC {
    max-width: 750px;
  }
  .banner .text .title-1 {
    font-size: 16px;
  }
  .banner .text .title-2 {
    font-size: 20px;
  }
  .banner .text .title-3 {
    font-size: 16px;
  }
  .banner .text .btnDiv {
    padding-top: 20px;
  }
}
.home-product {
  padding-top: 15rem;
  padding-bottom: 8rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.home-product .common-title {
  text-align: center;
  margin-bottom: 5rem;
}
.home-product .menuTabs {
  margin-bottom: 9rem;
}
.home-product .menuTabs .listMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-product .menuTabs li {
  margin-left: -4rem;
  position: relative;
}
.home-product .menuTabs .active {
  z-index: 1;
}
.home-product .menuTabs .active a {
  background: var(--main-color);
}
.home-product .menuTabs a {
  display: block;
  background: #2f2f2f;
  color: #fff;
  min-width: 46rem;
  line-height: 8rem;
  border-radius: 4rem;
  font-size: 4.5rem;
  font-weight: 700;
  padding-left: 6rem;
  padding-right: 6rem;
}
.home-product .menuTabs a:hover {
  background: var(--main-color);
  color: #fff;
}
.home-product .btnDiv {
  padding-top: 3rem;
  text-align: center;
}
.home-product .btnDiv a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 2rem;
  color: var(--main-color);
  text-transform: uppercase;
  position: relative;
}
.home-product .btnDiv span {
  position: relative;
}
.home-product .btnDiv span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  transition: .5s;
}
.home-product .btnDiv .icon {
  margin-left: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--main-color);
}
.home-product .btnDiv .icon svg {
  width: 2rem;
  height: 2rem;
  fill: #fff;
}
.home-product .btnDiv a:hover span::after {
  width: 0;
}
.home-product .conTabs .item {
  display: none;
}
@media screen and (max-width: 1023px) {
  .home-product {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-product .common-title {
    margin-bottom: 20px;
  }
  .home-product .menuTabs {
    margin-bottom: 40px;
  }
  .home-product .menuTabs li {
    margin-left: -20px;
  }
  .home-product .menuTabs a {
    line-height: 40px;
    border-radius: 20px;
    font-size: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .home-product .btnDiv {
    padding-top: 30px;
  }
  .home-product .btnDiv a {
    font-size: 16px;
  }
  .home-product .btnDiv .icon {
    margin-left: 10px;
    width: 20px;
    height: 20px;
  }
  .home-product .btnDiv .icon svg {
    width: 16px;
    height: 16px;
  }
}
.listPro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.listPro li {
  width: 33.33333333%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.listPro .box {
  display: block;
  position: relative;
}
.listPro .pic {
  overflow: hidden;
  position: relative;
}
.listPro .pic::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.listPro .pic img {
  -webkit-transition: .5s;
  transition: .5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.listPro .text {
  width: 100%;
  padding: 3rem 0 3rem 0;
}
.listPro .title {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.listPro .btn {
  display: block;
}
.listPro .btn span,
.listPro .btn a {
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: underline;
}
.listPro .box:hover .pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1023px) {
  .listPro {
    margin-left: -10px;
    margin-right: -10px;
  }
  .listPro li {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .listPro .text {
    padding: 20px 0 0 0;
    position: static;
  }
  .listPro .title {
    font-size: 14px;
    line-height: 24px;
    max-height: 96px;
    margin-bottom: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
  }
  .listPro .btn span,
  .listPro .btn a {
    font-size: 16px;
  }
}
.home-about {
  font-size: 1.6rem;
  line-height: 2.8rem;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
.home-about .playBtn {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  border: 0.8rem #ffffff solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
  cursor: pointer;
}
.home-about .playBtn svg {
  fill: #fff;
  width: 5rem;
  height: 5rem;
}
.home-about .text {
  color: #fff;
  width: 100%;
  text-align: center;
  padding-top: 16rem;
  padding-bottom: 16rem;
  z-index: 9;
}
.home-about .textC {
  max-width: 68rem;
  display: inline-block;
  text-align: left;
}
.home-about .common-title {
  text-align: center;
  margin-bottom: 3rem;
}
.home-about .btn,
.home-honor .btn {
  padding-top: 8rem;
  text-align: center;
}
.home-about .btn a {
  display: inline-block;
  line-height: 4rem;
  border-radius: 2rem;
  text-align: center;
  min-width: 14rem;
  padding: 0 1rem;
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
}
.home-about .btn a:hover {
  opacity: .8;
}
@media screen and (max-width: 1023px) {
  .home-about {
    font-size: 16px;
    line-height: 28px;
    height: auto;
    min-height: auto;
  }
  .home-about .playBtn {
    width: 60px;
    height: 60px;
    border: 4px #fff solid;
    margin-bottom: 10px;
  }
  .home-about .playBtn svg {
    width: 25px;
    height: 25px;
  }
  .home-about .text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-about .textC {
    max-width: 680px;
    text-align: center;
  }
  .home-about .common-title {
    margin-bottom: 30px;
  }
  .home-about .btn {
    padding-top: 20px;
  }
  .home-about .btn a {
    line-height: 40px;
    border-radius: 20px;
    min-width: 140px;
    padding: 0 10px;
    font-size: 16px;
  }
}
.shuju {
  background-color: #fff5f0;
  padding-top: 10rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 2;
}
.shuju .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.shuju .list li {
  width: 25%;
}
.shuju .list .box {
  min-height: 100%;
  display: block;
  color: var(--main-color);
  text-align: center;
  font-size: 1.8rem;
  border-right: 1px var(--main-color) solid;
  padding-left: 2rem;
  padding-right: 2rem;
}
.shuju .list .numDiv {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.shuju .list em {
  font-style: initial;
  font-weight: 700;
}
.shuju .list .num {
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
}
.shuju .list .icon {
  display: block;
  width: 6rem;
  height: 6rem;
  margin-left: auto;
  margin-right: auto;
}
.shuju .list li:last-child .box {
  border-right: none;
}
@media screen and (max-width: 1023px) {
  .shuju {
    background-color: #fff5f0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .shuju .list li {
    width: 25%;
  }
  .shuju .list .box {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: 1px var(--main-color) solid;
  }
  .shuju .list .numDiv {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .shuju .list .num {
    font-size: 30px;
  }
  .shuju .list .icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .shuju {
    padding-bottom: 20px;
  }
  .shuju .list li {
    width: 50%;
    padding-bottom: 20px;
  }
  .shuju .list .box {
    border: none;
  }
}
.home-honor {
  background: #fff;
  padding-top: 12rem;
  padding-bottom: 14rem;
  position: relative;
}
.home-honor .titleBig {
  text-align: center;
  color: #2f2f2f;
  font-weight: 700;
  font-size: 4rem;
  margin-bottom: 5rem;
}
.home-honor .swiper-container {
  padding: 14rem 0 10.8rem 0;
  margin-top: -4rem;
}
.home-honor .swiper-button-next,
.home-honor .swiper-button-prev {
  display: none;
}
.home-honor .list {
  text-align: center;
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.home-honor .list li {
  width: 49.4rem;
  margin-left: auto;
  margin-right: auto;
}
.home-honor .list .picDiv {
  display: block;
  background-size: cover;
  -webkit-box-shadow: 0 0 2rem 1rem rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 2rem 1rem rgba(0, 0, 0, 0.16);
}
.home-honor .list .pic {
  position: relative;
  background: #fff;
}
.home-honor .list .pic::after {
  content: "";
  display: block;
  padding-top: 128.32793522%;
}
.home-honor .list .text {
  padding-top: 3rem;
  opacity: 0;
}
.home-honor .list .swiper-slide {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 0;
}
.home-honor .list .swiper-slide-prev {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 1;
}
.home-honor .list .swiper-slide-next {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  z-index: 1;
}
.home-honor .list .swiper-slide-active {
  z-index: 9;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.home-honor .list .swiper-slide-active .text {
  opacity: 1;
 
}
.home-honor .list .title {
  font-size: 1.4rem;
  line-height: 2.4rem;
  height: 7.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1023px) {
  .home-honor {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-honor .titleBig {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .home-honor .swiper-container {
    padding: 20px 0;
    margin-top: 0;
  }
  .home-honor .list {
    font-size: 16px;
    line-height: 26px;
  }
  .home-honor .list li {
    width: 494px;
  }
  .home-honor .list .picDiv {
    -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.16);
  }
  .home-honor .list .text {
    padding-top: 20px;
  }
  .home-honor .list .swiper-slide-prev {
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1;
  }
  .home-honor .list .swiper-slide-next {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .home-honor .list .swiper-slide-active {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .home-honor .list .swiper-slide-active .text {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  .home-honor .list .title {
    font-size: 16px;
    line-height: 26px;
    height: 52px;
  }
}
.home-factoy {
  width: 100%;
  height: 100%;
  clear: both;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  z-index: 9;
}
.home-factoy .swiper-container {
  height: 100%;
}
.home-factoy .swiper-slide {
  width: 100% !important;
  height: 100%;
}
.home-factoy img {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.home-factoy .pc {
  display: block;
}
.home-factoy .mobile {
  display: none;
}
.home-factoy .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.home-factoy .text {
  width: 100%;
  text-align: left;
  color: #fff;
  position: absolute;
  bottom: 20rem;
}
.home-factoy .text .textC {
  max-width: 54rem;
  padding-left: 5rem;
}
.home-factoy .text .title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.home-factoy .text .info {
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.home-factoy .text .btnDiv {
  padding-top: 8rem;
}
.home-factoy .swiper-button-prev,
.home-factoy .swiper-button-next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.16);
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
.home-factoy .swiper-button-prev:after,
.home-factoy .swiper-button-next:after {
  font-size: 1.6rem;
}
.home-factoy .swiper-button-prev:hover,
.home-factoy .swiper-button-next:hover {
  background-color: var(--main-color);
  color: #fff;
}
.home-factoy .swiper-button-prev {
  left: 3rem;
}
.home-factoy .swiper-button-next {
  right: 3rem;
}
.home-factoy .swiper-pagination {
  margin-top: 5rem;
  position: static;
  line-height: 1;
}
.home-factoy .swiper-pagination .swiper-pagination-bullet {
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 50%;
  vertical-align: top;
}
.home-factoy .swiper-pagination-bullet-active {
  background: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .home-factoy {
    height: auto;
  }
  .home-factoy .pc {
    display: none;
  }
  .home-factoy .mobile {
    display: block;
  }
  .home-factoy .pic img {
    min-height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .home-factoy .swiper-button-next,
  .home-factoy .swiper-button-prev {
    display: none;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .home-factoy .swiper-button-next:after,
  .home-factoy .swiper-button-prev:after {
    font-size: 12px;
  }
  .home-factoy .swiper-pagination {
    margin-top: 30px;
    position: static;
    line-height: 1;
  }
  .home-factoy .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .home-factoy .text {
    width: 100%;
    text-align: left;
    color: #fff;
    position: absolute;
    bottom: 10px;
  }
  .home-factoy .text .textC {
    max-width: 540px;
    padding-left: 0;
  }
  .home-factoy .text .title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .home-factoy .text .info {
    font-size: 16px;
    line-height: 1.5;
  }
  .home-factoy .text .btnDiv {
    padding-top: 20px;
  }
}
.home-faq {
  background: #fff;
  padding-top: 12rem;
  padding-bottom: 12rem;
  color: #000;
  font-size: 2rem;
  line-height: 2;
  position: relative;
}
.home-faq.home-faq-2 {
  padding-top: 0;
}
.home-faq .common-title {
  margin-bottom: 5rem;
}
.home-faq .nr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.home-faq .left {
  width: 50%;
  padding-right: 5rem;
}
.home-faq .right {
  width: 50%;
  padding-left: 5rem;
}
.home-faq .list li {
  margin-bottom: 3rem;
}
.home-faq .list li:last-child {
  margin-bottom: 0;
}
.home-faq .list .box {
  display: block;
}
.home-faq .list .box:hover .title {
  color: var(--main-color);
}
.home-faq .list .box:hover .btn a,
.home-faq .list .box:hover .btn span {
  text-decoration: underline;
}
.home-faq .list .title {
  padding-left: 6rem;
  font-size: 2.4rem;
  line-height: 5rem;
  height: 5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  font-weight: 700;
  color: #2f2f2f;
  position: relative;
}
.home-faq .list .title::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: url(../images/icon/question.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.home-faq .list .info {
  padding-left: 6rem;
  font-size: 1.6rem;
  color: #2f2f2f;
  line-height: 2.6rem;
  height: 8.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-bottom: 1rem;
}
.home-faq .list .btn {
  font-size: 1.6rem;
  line-height: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px var(--main-color) solid;
  text-align: right;
  margin-left: 6rem;
}
.home-faq .list .btn span,
.home-faq .list .btn a {
  color: var(--main-color);
  position: relative;
}
.home-faq .form {
  padding-top: 5rem;
  padding-left: 6rem;
}
.home-faq .more {
  padding-top: 2rem;
  text-align: right;
}
.home-faq .more a {
  display: inline-block;
  line-height: 4rem;
  border-radius: 2rem;
  text-align: center;
  min-width: 14rem;
  padding: 0 1rem;
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
}
.home-faq .more a:hover {
  opacity: .8;
}
.home-faq .list-form textarea,.home-faq .list-form input {
  width: 100%;
  border: 1px #d2d2d2 solid;
  background: #f5f5f5;
  border-radius: 2rem;
  height: 15rem;
  padding: 2rem 3rem;
  font-size: 2rem;
  color: #000;
}
.home-faq .list-form input{height:5rem;margin-bottom:1rem;}
.home-faq .list-form .btn {
  padding-top: 2rem;
  text-align: right;
}
.home-faq .list-form .btn .tijiao {
  display: inline-block;
  line-height: 4rem;
  border-radius: 2rem;
  text-align: center;
  min-width: 14rem;
  padding: 0 1rem;
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
}
.home-faq .list-form .btn .tijiao:hover {
  opacity: .8;
}
@media screen and (max-width: 1023px) {
  .home-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .home-faq .common-title {
    margin-bottom: 30px;
  }
  .home-faq .left {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .home-faq .right {
    width: 100%;
    padding: 0;
  }
  .home-faq .list li {
    margin-bottom: 30px;
  }
  .home-faq .list li:last-child {
    margin-bottom: 0;
  }
  .home-faq .list .box {
    display: block;
  }
  .home-faq .list .title {
    padding-left: 35px;
    font-size: 16px;
    line-height: 25px;
    height: 25px;
  }
  .home-faq .list .title::before {
    width: 25px;
    height: 25px;
  }
  .home-faq .list .info {
    padding-left: 35px;
    font-size: 16px;
    line-height: 26px;
    height: 84px;
    margin-bottom: 10px;
  }
  .home-faq .list .btn {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-left: 0;
  }
  .home-faq .form {
    padding: 30px 0 0 0;
  }
  .home-faq .more {
    padding-top: 20px;
    text-align: center;
  }
  .home-faq .more a {
    line-height: 40px;
    border-radius: 20px;
    min-width: 140px;
    padding: 0 10px;
    font-size: 16px;
  }
  .home-faq .list-form textarea {
    border-radius: 20px;
    height: 300px;
    padding: 20px 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  .home-faq .list-form .btn {
    padding-top: 20px;
    text-align: center;
  }
  .home-faq .list-form .btn .tijiao {
    line-height: 40px;
    border-radius: 20px;
    min-width: 140px;
    padding: 0 10px;
    font-size: 16px;
  }
}
.home-news {
  background-color: #fff;
  padding-bottom: 12rem;
  position: relative;
  z-index: 1;
}
.home-news .common-title {
  margin-bottom: 4rem;
}
.home-news .nr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.home-news .left {
  width: 50%;
}
.home-news .right {
  width: 50%;
  padding-left: 8rem;
}
.home-news .list-1 .box {
  display: block;
}
.home-news .list-1 .pic {
  border-radius: 2rem;
  overflow: hidden;
}
.home-news .list-1 .text {
  padding-top: 3rem;
}
.home-news .list-1 .title {
  font-weight: 700;
  color: var(--main-color);
  font-size: 3rem;
  line-height: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.home-news .list-1 .info {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.8rem;
  height: 8.4rem;
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.home-news .list-1 .btn span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  line-height: 4rem;
  min-width: 14rem;
  text-align: center;
  border-radius: 2rem;
  font-size: 1.6rem;
}
.home-news .list-1 .btn span:hover {
  opacity: .8;
}
.home-news .list-2 li {
  padding-bottom: 2rem;
}
.home-news .list-2 .box {
  display: block;
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 1rem;
}
.home-news .list-2 .title {
  font-size: 2.4rem;
  color: #2f2f2f;
  font-weight: 700;
  margin-bottom: 1rem;
}
.home-news .list-2 .info {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.6rem;
  height: 7.9rem;
  overflow: hidden;
}
.home-news .list-2 .btn {
  text-align: right;
}
.home-news .list-2 .btn span {
  color: var(--main-color);
  font-size: 1.6rem;
}
.home-news .list-2 .box:hover .title {
  color: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .home-news {
    padding-bottom: 60px;
  }
  .home-news .common-title {
    margin-bottom: 30px;
  }
  .home-news .left {
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px #eee solid;
  }
  .home-news .right {
    width: 100%;
    padding: 0;
  }
  .home-news .list-1 .pic {
    border-radius: 20px;
  }
  .home-news .list-1 .text {
    padding-top: 30px;
  }
  .home-news .list-1 .title {
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .home-news .list-1 .info {
    font-size: 16px;
    line-height: 24px;
    height: 72px;
    margin-bottom: 20px;
  }
  .home-news .list-1 .btn span {
    line-height: 40px;
    min-width: 140px;
    border-radius: 20px;
    font-size: 16px;
  }
  .home-news .list-2 li {
    padding-bottom: 20px;
  }
  .home-news .list-2 .box {
    padding-bottom: 10px;
  }
  .home-news .list-2 .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home-news .list-2 .info {
    font-size: 16px;
    line-height: 26px;
  }
  .home-news .list-2 .btn span {
    font-size: 16px;
  }
}
.ny-banner {
  position: relative;
  z-index: 9;
}
.ny-banner .pc {
  position: relative;
}
.ny-banner .pc:after {
  content: "";
  display: block;
}
.ny-banner .pc img {
  width: 100%;
  vertical-align: top;
}
.ny-banner .mobile {
  display: none;
  position: relative;
}
.ny-banner .mobile:after {
  content: "";
  display: block;
}
.ny-banner .mobile img {
  width: 100%;
  vertical-align: top;
}
.ny-banner .text {
  width: 100%;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -4rem;
}
.ny-banner .text .textC {
  max-width: 75rem;
}
.ny-banner .text .title-1 {
  font-size: 3.2rem;
  font-weight: 700;
}
.ny-banner .text .title-2 {
  font-size: 7rem;
  font-weight: 700;
}
.ny-banner .text .title-3 {
  font-size: 3.2rem;
  font-weight: 700;
}
.ny-banner .text .btnDiv {
  padding-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .ny-banner .pc {
    display: none;
  }
  .ny-banner .mobile {
    display: block;
  }
  .ny-banner .text {
    margin-top: -20px;
  }
  .ny-banner .text .textC {
    max-width: 750px;
  }
  .ny-banner .text .title-1 {
    font-size: 16px;
  }
  .ny-banner .text .title-2 {
    font-size: 20px;
  }
  .ny-banner .text .title-3 {
    font-size: 16px;
  }
  .ny-banner .text .btnDiv {
    padding-top: 20px;
  }
}
.gsjj {
  font-size: 2rem;
  line-height: 2;
  color: #000;
  padding-top: 12rem;
}
.gsjj .img-1 {
  float: right;
  margin-left: 6rem;
}
.gsjj .common-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .gsjj {
    font-size: 16px;
    padding-top: 60px;
  }
  .gsjj .img-1 {
    margin-bottom: 20px;
  }
  .gsjj .common-title {
    margin-bottom: 20px;
  }
}
.culture {
  padding-top: 11rem;
  padding-bottom: 5rem;
  color: #000;
  font-size: 2rem;
  line-height: 2;
}
.culture .p-1 {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.culture .list-1 {
  background-position: center top;
  background-repeat: no-repeat;
  width: 73rem;
  height: 64.2rem;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 12rem;
}
.culture .list-1 li {
  position: relative;
}
.culture .list-1 .title {
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.culture .list-1 .info {
  position: absolute;
}
.culture .list-1 li:nth-child(1) {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.culture .list-1 li:nth-child(1) .title {
  font-size: 2rem;
  line-height: 6rem;
}
.culture .list-1 li:nth-child(1) .info {
  width: 48rem;
  top: 6.5rem;
  left: calc(50% + 10rem);
}
.culture .list-1 li:nth-child(2) {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.culture .list-1 li:nth-child(2) .title {
  font-size: 4rem;
  line-height: 6rem;
}
.culture .list-1 li:nth-child(2) .info {
  width: 48rem;
  top: 7rem;
  right: calc(50% + 18rem);
}
.culture .list-1 li:nth-child(3) {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.culture .list-1 li:nth-child(3) .title {
  font-size: 5rem;
  line-height: 6rem;
}
.culture .list-1 li:nth-child(3) .info {
  width: 48rem;
  top: 6.5rem;
  left: calc(50% + 30rem);
}
.culture .list-1 li:nth-child(4) {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.culture .list-1 li:nth-child(4) .title {
  font-size: 5.6rem;
  line-height: 6rem;
}
.culture .list-1 li:nth-child(4) .info {
  width: 35rem;
  top: 7rem;
  right: calc(50% + 36rem);
}
@media screen and (max-width: 1023px) {
  .culture {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 18px;
  }
  .culture .p-1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .culture .list-1 {
    width: auto;
    height: auto;
    font-size: 18px;
    margin-bottom: 40px;
    background: none !important;
  }
  .culture .list-1 li {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .culture .list-1 .title {
    color: #000;
    font-size: 24px !important;
    text-align: left;
  }
  .culture .list-1 .info {
    width: auto !important;
    position: static;
    top: 0 !important;
    left: 0 !important;
  }
}
.pictures {
  padding-top: 12rem;
  padding-bottom: 0rem;
}
.pictures.pictures-2 {
  padding-bottom: 12rem;
}
.pictures .common-title-2 {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 6rem;
}
.pictures .page {
  padding-top: 4rem;
}
.pictures .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.pictures .list li {
  width: 33.33333333%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.pictures .list .box {
  cursor: pointer;
  overflow: hidden;
  min-height: 100%;
  display: block;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
}
.pictures .list .box::after {
  content: "";
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .5s;
  transition: .5s;
}
.pictures .list .pic {
  overflow: hidden;
  position: relative;
}
.pictures .list .pic img{width:100%;height:100%;}
.pictures .list .pic::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.pictures .list .pic img {
  -webkit-transition: .5s;
  transition: .5s;
}
.pictures .list .text {
  width: 100%;
  color: #fff;
  padding: 0 3rem 3rem 3rem;
  position: absolute;
  bottom: 0;
  z-index: 9;
  -webkit-transition: .5s;
  transition: .5s;
}
.pictures .list .title {
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.pictures .list .btn {
  display: block;
}
.pictures .list .btn span,
.pictures .list .btn a {
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: underline;
}
.pictures .list .box:hover::after {
  opacity: 1;
}
.pictures .list .box:hover .pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.pictures .list .box:hover .text {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
}
.pictures .list .box:hover .text-2 {
  opacity: 1;
}
.pictures .list .text-2 {
  width: 100%;
  color: #fff;
  padding: 0 3rem 3rem 3rem;
  position: absolute;
  bottom: 0;
  z-index: 9;
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}
.pictures .list .text-2 .title {
  font-size: 1.6rem;
  font-weight: 700;
}
.pictures .moreDiv {
  text-align: center;
  padding-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .pictures {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .pictures.pictures-2 {
    padding-bottom: 60px;
  }
  .pictures .common-title-2 {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .pictures .page {
    padding-top: 20px;
  }
  .pictures .list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .pictures .list li {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .pictures .list .text {
    padding: 20px 0 0 0;
    position: static;
    color: #333;
  }
  .pictures .list .title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .pictures .moreDiv {
    padding-top: 0px;
  }
}
.pro-tj {
  text-align: center;
}
.advantage {
  padding-top: 6rem;
  padding-bottom: 12rem;
}
.advantage .common-title-2 {
  text-align: right;
  -webkit-transform: translateY(10rem);
  transform: translateY(10rem);
}
.advantage .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
.advantage .list li {
  width: 25%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}
.advantage .list .box {
  display: block;
  min-height: 40rem;
  padding: 0 4rem 4rem 4rem;
  background: #fff6f1;
}
.advantage .list li:nth-child(2n) .box {
  background: #f7f7f7;
}
.advantage .list .pic {
  height: 8rem;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateY(-4rem);
  transform: translateY(-4rem);
  margin-left: -2rem;
}
.advantage .list .pic img {
  -webkit-transition: .5s;
  transition: .5s;
}
.advantage .list .text {
  width: 100%;
  color: #2f2f2f;
  font-size: 1.8rem;
}
.advantage .list .title {
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.advantage .list .btn {
  display: block;
}
.advantage .list .btn span,
.advantage .list .btn a {
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: underline;
}
.advantage .list li:nth-child(2) {
  margin-top: 12rem;
}
.advantage .list li:nth-child(3) {
  margin-top: 24rem;
}
.advantage .list li:nth-child(4) {
  margin-top: 36rem;
}
.advantage .moreDiv {
  text-align: center;
  padding-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .advantage {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .advantage .common-title-2 {
    text-align: center;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    margin-bottom: 50px;
  }
  .advantage .list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .advantage .list li {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 40px;
    margin-top: 0 !important;
  }
  .advantage .list .box {
    min-height: 100%;
    padding: 0 20px 0 20px;
    background: #fff6f1;
  }
  .advantage .list .pic {
    width: 60px;
    height: 60px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  .advantage .list .text {
    padding: 0 0 20px 0;
    position: static;
  }
  .advantage .list .title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .advantage .list .btn span,
  .advantage .list .btn a {
    font-size: 16px;
  }
}
.honor {
  padding-top: 12rem;
  padding-bottom: 0rem;
}
.honor.honor-2 {
  padding-top: 4rem;
  padding-bottom: 12rem;
}
.honor .common-title-2 {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 6rem;
}
.honor .page {
  padding-top: 4rem;
}
.honor .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.honor .list li {
  width: 25%;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 6rem;
}
.honor .list .box {
  display: block;
  -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
}
.honor .list .pic {
  overflow: hidden;
  position: relative;
}
.honor .list .pic::after {
  content: "";
  display: block;
  padding-top: 142.85714286%;
}
.honor .list .pic img {
  -webkit-transition: .5s;
  transition: .5s;
}
.honor .list .text {
  width: 100%;
  color: #2f2f2f;
  font-size: 1.8rem;
}
.honor .list .title {
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.honor .list .btn {
  display: block;
}
.honor .list .btn span,
.honor .list .btn a {
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: underline;
}
.honor .list .box:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.honor .moreDiv {
  text-align: center;
  padding-top: 6rem;
}
@media screen and (max-width: 1023px) {
  .honor {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .honor.honor-2 {
    padding-bottom: 60px;
  }
  .honor .common-title-2 {
    margin-bottom: 40px;
    font-size: 24px;
  }
  .honor .page {
    padding-top: 20px;
  }
  .honor .list {
    margin-left: -10px;
    margin-right: -10px;
  }
  .honor .list li {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
  }
  .honor .list .text {
    padding: 20px 0 20px 0;
    position: static;
  }
  .honor .list .title {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .honor .list .btn span,
  .honor .list .btn a {
    font-size: 16px;
  }
}
.history {
  padding-top: 12rem;
  font-size: 2rem;
  line-height: 2;
  color: #000;
  padding-bottom: 0rem;
}
.history .common-title-2 {
  text-align: center;
  margin-bottom: 6rem;
}
.history .list {
  margin-top: 35rem;
  margin-bottom: 50rem;
  background-repeat: no-repeat;
  background-position: center top;
  width: 144rem;
  height: 63rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.history .list li {
  position: absolute;
}
.history .list .line {
  width: 0.4rem;
  height: 14rem;
  border-right: 0.4rem var(--main-color) dotted;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
}
.history .list .line::before {
  content: "";
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: var(--main-color);
  border: 1rem #f7e942 solid;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.history .list .info {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 2rem;
}
.history .list .title {
  font-size: 2.4rem;
  line-height: 1;
}
.history .list .date {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.history .list .num {
  width: 8.2rem;
  height: 8.2rem;
  border-radius: 50%;
  text-align: center;
  line-height: 8.2rem;
  font-size: 3.8rem;
  font-weight: 700;
  background: var(--main-color);
  color: #fff;
  position: absolute;
}
.history .list li:nth-child(2n+1) {
  padding-top: 16rem;
  padding-bottom: 9rem;
}
.history .list li:nth-child(2n+1) .num {
  bottom: 0;
}
.history .list li:nth-child(2n+1) .line::before {
  top: -5.2rem;
}
.history .list li:nth-child(2n) {
  padding-top: 9rem;
  padding-bottom: 16rem;
}
.history .list li:nth-child(2n) .line {
  top: initial;
  bottom: 0;
}
.history .list li:nth-child(2n) .line::before {
  bottom: -5.2rem;
}
.history .list li:nth-child(2n) .num {
  top: 0;
}
.history .list .li-1 {
  width: 40rem;
  top: 64rem;
  left: 6rem;
}
.history .list .li-2 {
  width: 40rem;
  bottom: 6.5rem;
  left: 27rem;
}
.history .list .li-3 {
  width: 35rem;
  top: 58.5rem;
  left: 49rem;
}
.history .list .li-4 {
  width: 35rem;
  bottom: 14.7rem;
  left: 71rem;
}
.history .list .li-5 {
  top: 45.5rem;
  left: 93rem;
}
.history .list .li-6 {
  width: 35rem;
  bottom: 35rem;
  left: 115rem;
  padding-bottom: 26rem !important;
}
.history .list .li-6 .line {
  height: 25rem;
}
.history .titleBig {
  text-align: right;
  color: var(--main-color);
  font-size: 3.8rem;
  font-weight: 700;
}
.history .titleBig > div {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.history .titleBig img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .history {
    padding-top: 60px;
    font-size: 16px;
    padding-bottom: 20px;
  }
  .history .common-title-2 {
    margin-bottom: 20px;
  }
  .history .list {
    margin-top: 0;
    margin-bottom: 0;
    background: none !important;
    width: auto;
    height: auto;
  }
  .history .list .line {
    display: none;
    width: 4px;
    height: 140px;
    border-right: 4px var(--main-color) dotted;
  }
  .history .list .line::before {
    width: 52px;
    height: 52px;
    background: var(--main-color);
    border: 10px #f7e942 solid;
  }
  .history .list li {
    position: static;
    border-bottom: 1px #eee solid;
  }
  .history .list .info {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .history .list .title {
    font-size: 24px;
  }
  .history .list .date {
    font-size: 30px;
  }
  .history .list .num {
    position: static;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
  }
  .history .list li:nth-child(2n+1) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .history .list li:nth-child(2n+1) .line::before {
    top: -40px;
  }
  .history .list li:nth-child(2n) {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .history .list li:nth-child(2n) .line::before {
    bottom: -40px;
  }
  .history .list .li-1 {
    width: auto;
    top: 0;
    left: 0;
  }
  .history .list .li-2 {
    width: auto;
    bottom: 0;
    left: 0;
  }
  .history .list .li-3 {
    width: auto;
    top: 0;
    left: 0;
  }
  .history .list .li-4 {
    width: auto;
    bottom: 0;
    left: 0;
  }
  .history .list .li-5 {
    top: 0;
    left: 0;
  }
  .history .list .li-6 {
    width: auto;
    bottom: 0;
    left: 0;
    padding-bottom: 0 !important;
  }
  .history .list .li-6 .line {
    height: auto;
  }
  .history .titleBig {
    margin-top: 40px;
    font-size: 24px;
    text-align: center;
  }
  .history .titleBig img {
    height: 40px;
  }
}
.promise {
  padding-bottom: 13rem;
}
.promise .container {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  font-size: 3.6rem;
  line-height: 6rem;
  padding: 10rem 4rem 10rem 4rem;
  min-height: 52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.promise .title {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 1023px) {
  .promise {
    padding-bottom: 40px;
  }
  .promise .container {
    font-size: 18px;
    line-height: 1.5;
    padding: 40px 20px;
    min-height: 320px;
  }
  .promise .title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.news {
  padding-top: 12rem;
}
.news.news-2 {
  padding-bottom: 12rem;
}
.news .common-title-2 {
  margin-bottom: 8rem;
}
.news .part {
  padding-bottom: 18rem;
}
.news .part:last-child {
  padding-bottom: 0;
}
.news .list-1 li {
  padding-bottom: 5rem;
}
.news .list-1 li:last-child {
  padding-bottom: 0;
}
.news .list-1 .box {
  display: block;
}
.news .list-1 .pic {
  border-radius: 2rem;
  overflow: hidden;
}
.news .list-1 .pic img {
  width: 100%;
  -webkit-transition: .5s;
  transition: .5s;
}
.news .list-1 .text {
  padding-top: 5rem;
}
.news .list-1 .title {
  font-weight: 700;
  color: var(--main-color);
  font-size: 3rem;
  line-height: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.news .list-1 .info {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.8rem;
  max-height: 8.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.news .list-1 .btn {
  padding-top: 2rem;
}
.news .list-1 .btn span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  line-height: 4rem;
  min-width: 14rem;
  text-align: center;
  border-radius: 2rem;
  font-size: 1.6rem;
}
.news .list-1 .btn span:hover {
  opacity: .8;
}
.news .list-1 .box:hover .title {
  text-decoration: underline;
}
.news .list-1 .box:hover .pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news .list-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10rem;
  margin-right: -10rem;
}
.news .list-2 li {
  width: 50%;
  padding-left: 10rem;
  padding-right: 10rem;
  padding-bottom: 2rem;
}
.news .list-2 .box {
  display: block;
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 1rem;
}
.news .list-2 .title {
  font-size: 2.4rem;
  color: #2f2f2f;
  font-weight: 700;
  margin-bottom: 1rem;
}
.news .list-2 .info {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.news .list-2 .btn {
  text-align: right;
}
.news .list-2 .btn span {
  color: var(--main-color);
  font-size: 1.6rem;
}
.news .list-2 .box:hover .title {
  color: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .news {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .news .common-title-2 {
    margin-bottom: 30px;
  }
  .news .part {
    padding-bottom: 60px;
  }
  .news .list-1 li {
    padding-bottom: 30px;
  }
  .news .list-1 li:last-child {
    padding-bottom: 0;
  }
  .news .list-1 .pic {
    border-radius: 10px;
  }
  .news .list-1 .text {
    padding-top: 30px;
  }
  .news .list-1 .title {
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    margin-bottom: 10px;
  }
  .news .list-1 .info {
    font-size: 16px;
    line-height: 24px;
    max-height: 72px;
  }
  .news .list-1 .btn {
    padding-top: 20px;
  }
  .news .list-1 .btn span {
    line-height: 40px;
    min-width: 140px;
    border-radius: 20px;
    font-size: 16px;
  }
  .news .list-2 {
    margin-left: 0;
    margin-right: 0;
  }
  .news .list-2 li {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .news .list-2 li:last-child {
    padding-bottom: 0;
  }
  .news .list-2 .box {
    padding-bottom: 10px;
  }
  .news .list-2 .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .news .list-2 .info {
    font-size: 16px;
    line-height: 26px;
  }
  .news .list-2 .btn span {
    font-size: 16px;
  }
}
.news-show {
  font-size: 2rem;
  line-height: 2;
  padding-top: 3rem;
}
.news-show .title-1 {
  font-weight: 700;
  font-size: 6rem;
  line-height: 1.5;
}
.news-show .container >div>p{text-indent:2em;}
.news-show img{margin:0 auto;display:flex}
@media screen and (max-width: 1023px) {
  .news-show {
    font-size: 16px;
    line-height: 2;
    padding-top: 30px;
  }
  .news-show .title-1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
.newsPro {
  padding-top: 12rem;
  padding-bottom: 0;
}
.newsPro .common-title-2 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 1023px) {
  .newsPro {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .newsPro .common-title-2 {
    margin-bottom: 30px;
  }
}
.contact {
  font-size: 2rem;
  color: #000;
  line-height: 1.5;
  padding-top: 12rem;
  padding-bottom: 0;
}
.contact img {
  vertical-align: top;
}
.contact .map {
  width: 98rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 2rem;
  line-height: 2;
  margin-top: 8rem;
  position: relative;
}
.contact .map .text {
  width: 42rem;
  background: #fff;
  padding: 2rem 3rem;
  border: 1px var(--main-color) solid;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contact .map img {
  max-width: 100%;
}
.contact .lxfs {
  padding-top: 18rem;
  padding-bottom: 18rem;
  max-width: 97rem;
  margin-left: auto;
  margin-right: auto;
}
.contact .lxfs .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact .lxfs .list li {
  width: 100%;
  padding-bottom: 3rem;
}
.contact .lxfs .list li:last-child {
  padding-bottom: 0;
}
.contact .lxfs .list li:nth-child(2) {
  padding-left: 50%;
}
.contact .lxfs .list .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact .lxfs .list .box .pic {
  width: 14.4rem;
  height: 14.4rem;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact .lxfs .list .box .pic img {
  width: 8rem;
  height: 8rem;
}
.contact .lxfs .list .box .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 4rem;
  padding-top: 2rem;
}
.contact .lxfs .list .box .title {
  color: #2f2f2f;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .contact {
    font-size: 16px;
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .contact .map {
    width: 100%;
    font-size: 16px;
    margin-top: 40px;
  }
  .contact .map .text {
    width: 100%;
    margin-top: 20px;
    position: static;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .contact .lxfs {
    padding-top: 30px;
    padding-bottom: 60px;
    max-width: 970px;
  }
  .contact .lxfs .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact .lxfs .list li {
    padding-bottom: 20px;
  }
  .contact .lxfs .list li:last-child {
    padding-bottom: 0;
  }
  .contact .lxfs .list li:nth-child(2) {
    padding-left: 0;
  }
  .contact .lxfs .list .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .contact .lxfs .list .box .pic {
    width: 64px;
    height: 64px;
  }
  .contact .lxfs .list .box .pic img {
    width: 40px;
    height: 40px;
  }
  .contact .lxfs .list .box .text {
    padding-left: 20px;
    padding-top: 5px;
  }
  .contact .lxfs .list .box .title {
    font-size: 24px;
  }
}
.message {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.4rem;
  line-height: 1.5;
}
.message .title-1 {
  text-align: center;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 3rem;
}
.message .list-form {
  padding-top: 4rem;
}
.message .list-form li {
  padding-bottom: 3.5rem;
  position: relative;
}
.message .list-form li:last-child {
  padding-bottom: 0;
}
.message .list-form .xh {
  color: var(--main-color);
  font-size: 2.4rem;
  line-height: 1;
  position: absolute;
  top: 4rem;
  left: 4rem;
}
.message .list-form input[type="text"],
.message .list-form textarea {
  width: 100%;
  border: none;
  background: #e8e8e8;
  border-radius: 5rem;
  line-height: 4rem;
  font-size: 2.4rem;
  padding-left: 5.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.message .list-form input[type="text"] {
  height: 10rem;
}
.message .list-form textarea {
  height: 24rem;
}
.message .list-form .btn {
  text-align: center;
}
.message .list-form .submitBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 30rem;
  padding: 0 1rem;
  line-height: 8rem;
  border-radius: 4rem;
  font-size: 2.4rem;
  background: var(--main-color);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
}
.message .list-form .submitBtn:hover {
  color: #fff;
  padding-left: 3rem;
  opacity: .8;
}
.message .list-form .submitBtn:hover .icon {
  opacity: 0;
  -webkit-transform: translateX(1rem) scale(1.2);
  transform: translateX(1rem) scale(1.2);
}
@media screen and (max-width: 1023px) {
  .message {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.5;
  }
  .message .title-1 {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .message .list-form {
    padding-top: 20px;
  }
  .message .list-form li {
    padding-bottom: 20px;
  }
  .message .list-form .xh {
    font-size: 18px;
    top: 25px;
    left: 25px;
  }
  .message .list-form input[type="text"],
  .message .list-form textarea {
    border-radius: 30px;
    line-height: 30px;
    font-size: 18px;
    padding-left: 40px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .message .list-form input[type="text"] {
    height: 60px;
  }
  .message .list-form textarea {
    height: 200px;
  }
  .message .list-form .submitBtn {
    min-width: 160px;
    padding: 0 10px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 18px;
  }
  .message .list-form .submitBtn:hover {
    padding-left: 0px;
    opacity: 1;
  }
}
.menuSub {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.menuSub .listMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -2rem;
  margin-right: -2rem;
}
.menuSub li {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
.menuSub .active {
  z-index: 1;
}
.menuSub .active a {
  background: var(--main-color);
}
.menuSub a {
  display: block;
  background: #000000;
  color: #fff;
  min-width: 36rem;
  line-height: 8rem;
  border-radius: 4rem;
  font-size: 4.5rem;
  font-weight: 700;
  padding-left: 3rem;
  padding-right: 3rem;
}
.menuSub a:hover {
  background: var(--main-color);
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .menuSub {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .menuSub .listMenu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -5px;
    margin-right: -5px;
  }
  .menuSub li {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
  }
  .menuSub a {
    min-width: 120px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .menuSub a:hover {
    background: var(--main-color);
    color: #fff;
  }
}
.product {
  padding-top: 12rem;
  padding-bottom: 12rem;
  font-size: 2rem;
  color: #000000;
  line-height: 2;
}
.product.product-2 {
  padding-bottom: 0;
}
.product .common-title-2 {
  margin-bottom: 6rem;
}
.product .page {
  padding-top: 4rem;
}
.product .jieshao-2 {
  text-align: center;
  font-size: 5rem;
  line-height: 1.5;
  padding-top: 18rem;
}
.product .jieshao-3 {
  padding-top: 12rem;
}
@media screen and (max-width: 1023px) {
  .product {
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 16px;
  }
  .product.product-2 {
    padding-bottom: 20px;
  }
  .product .common-title-2 {
    margin-bottom: 20px;
  }
  .product .page {
    padding-top: 30px;
  }
  .product .jieshao-2 {
    text-align: center;
    font-size: 20px;
    padding-top: 30px;
  }
  .product .jieshao-3 {
    padding-top: 30px;
  }
}
.review .common-title-2 {
  font-size: 6rem;
  margin-bottom: 6rem;
}
.review .list {
  background: #fafafa;
  border: 1px #898989 solid;
  padding: 6rem 6rem;
}
.review .list li {
  border-bottom: 1px #c8c8c8 solid;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.review .list li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}
.review .list .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.review .list .pic {
  display: block;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  overflow: hidden;
}
.review .list .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 4rem;
  padding-top: 2rem;
}
.review .list .title {
  font-size: 3.6rem;
  line-height: 1.5;
}
.review .list .info {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .review .common-title-2 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .review .list {
    padding: 20px 20px;
  }
  .review .list li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .review .list .pic {
    width: 60px;
    height: 60px;
  }
  .review .list .text {
    padding-left: 20px;
    padding-top: 10px;
  }
  .review .list .title {
    font-size: 18px;
  }
  .review .list .info {
    font-size: 16px;
  }
}
.product-show {
  padding-top: 13rem;
  font-size: 2rem;
  color: #000;
  line-height: 2;
}
.product-show .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.product-show .hd .left {
  width: 62.4rem;
}
.product-show .hd .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 50%;
  padding-left: 6rem;
}
.product-show .hd .btnDiv {
  padding-top: 4rem;
  text-align: right;
}
.product-show .hd .btnDiv .common-btn {
  min-width: 36rem;
  line-height: 8rem;
  border-radius: 4rem;
  font-size: 4.5rem;
}
.product-show .title-show {
  font-size: 2.4rem;
  line-height: 4rem;
}
.product-show .large {
  position: relative;
  text-align: center;
  background-color: #f4f4f6;
  margin-bottom: 3rem;
}
.product-show .large img {
  width: initial;
  height: initial;
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
}
.product-show .large .box {
  position: relative;
}
.product-show .large .box::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-show .large .box img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  text-align: center;
  margin: auto;
}
.product-show .large .swiper-pagination {
  width: 100%;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 2rem;
  left: 0;
}
.product-show .large .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
  margin: 0 0;
  opacity: 1;
  vertical-align: top;
  position: relative;
}
.product-show .large .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px #b5b5b5 solid;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.product-show .large .swiper-pagination-bullet:hover {
  opacity: 1;
}
.product-show .large .swiper-pagination-bullet:hover::before {
  border-color: var(--main-color);
  background: var(--main-color);
}
.product-show .large .swiper-pagination-bullet-active {
  opacity: 1;
}
.product-show .large .swiper-pagination-bullet-active::before {
  border-color: var(--main-color);
  background: var(--main-color);
}
.product-show .small {
  overflow: hidden;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  position: relative;
}
.product-show .small .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-show .small .list li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.product-show .small .swiper-container-initialized .list li {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.product-show .small li {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.product-show .small .box {
  background: #f4f4f6;
  margin: auto;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.product-show .small .box::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-show .small .box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px transparent solid;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 1;
}
.product-show .small .box img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  text-align: center;
  margin: auto;
}
.product-show .small .box:hover::before {
  border-color: var(--main-color);
}
.product-show .small .swiper-slide-thumb-active .box::before {
  border-color: var(--main-color);
}
.product-show .small .swiper-button-prev,
.product-show .small .swiper-button-next {
  border: none;
  width: 2rem;
  height: 100%;
  color: #999999;
  background: #fff;
  text-align: center;
  margin: auto;
  cursor: pointer;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  position: absolute;
  z-index: 1;
}
.product-show .small .swiper-button-prev:after,
.product-show .small .swiper-button-next:after {
  font-size: 3.2rem;
  font-weight: 700;
}
.product-show .small .swiper-button-prev:hover,
.product-show .small .swiper-button-next:hover {
  color: var(--main-color);
}
.product-show .small .swiper-button-prev {
  left: 0;
}
.product-show .small .swiper-button-next {
  right: 0;
}
.product-show .small .swiper-pagination {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: static;
  z-index: 9;
}
.product-show .small .swiper-pagination-bullet {
  width: 36px;
  height: 36px;
  background: none;
  border-radius: 0;
  margin: 0 0;
  opacity: 1;
  position: relative;
}
.product-show .small .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 1px #b5b5b5 solid;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.product-show .small .swiper-pagination-bullet:hover {
  opacity: 1;
}
.product-show .small .swiper-pagination-bullet:hover::before {
  border-color: var(--main-color);
  background: var(--main-color);
}
.product-show .small .swiper-pagination-bullet-active {
  opacity: 1;
}
.product-show .small .swiper-pagination-bullet-active::before {
  border-color: var(--main-color);
  background: var(--main-color);
}
.product-show .bd {
  padding-top: 10rem;
}
.product-show .jieshao-1 {
  padding-top: 15rem;
}
.product-show .jieshao-1 .title-4 {
  margin-bottom: 8rem;
}
.product-show .title-1 {
  font-size: 3.6rem;
  font-weight: 700;
}
.product-show .title-2 {
  font-size: 6rem;
  font-weight: 700;
}
.product-show .title-3 {
  color: var(--main-color);
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.product-show .title-4 {
  font-size: 4rem;
  text-align: center;
}
.product-show table td {
  border: 0.6rem #ffffff solid;
  background: #fff2eb;
  padding: 1rem 2rem;
}
.product-show table td:nth-child(1),
.product-show table td:nth-child(3) {
  background: #ffe9dd;
  width: 21rem;
  font-weight: 700;
}
.product-show .div-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 8rem;
  margin-bottom: 8rem;
}
.product-show .div-1 .pic {
  width: 50%;
  text-align: right;
}
.product-show .div-1 .text {
  width: 50%;
}
.product-show .div-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 8rem;
  margin-bottom: 8rem;
}
.product-show .div-2 .pic {
  width: 50%;
  padding-right: 2rem;
}
.product-show .div-2 .text {
  width: 50%;
  padding-left: 2rem;
}
.product-show .printing {
  padding-bottom: 12rem;
}
.product-show .printing .menuTabs {
  margin-top: 2rem;
  margin-bottom: 8rem;
}
.product-show .printing .menuTabs .listMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #2f2f2f;
  font-size: 3rem;
}
.product-show .printing .menuTabs .listMenu li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.product-show .printing .menuTabs .listMenu li::after {
  content: "/";
  margin-left: 2rem;
  margin-right: 2rem;
}
.product-show .printing .menuTabs .listMenu li:last-child::after {
  display: none;
}
.product-show .printing .menuTabs .listMenu .box {
  display: block;
  cursor: pointer;
}
.product-show .printing .menuTabs .listMenu .box:hover {
  color: var(--main-color);
}
.product-show .printing .menuTabs .listMenu .active .box {
  color: var(--main-color);
}
.product-show .printing .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-show .printing .list li {
  width: 33.33333333%;
}
.product-show .printing .list .box {
  display: block;
  position: relative;
}
.product-show .printing .list .box::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-show .printing .list .box img {
  width: 100%;
}
.product-show .printing .item {
  display: none;
  padding-left: 6rem;
  padding-right: 6rem;
  position: relative;
}
.product-show .printing .item.show {
  display: block;
}
.product-show .printing .swiper-button-next,
.product-show .printing .swiper-button-prev {
  color: #999999;
}
.product-show .printing .swiper-button-next::after,
.product-show .printing .swiper-button-prev::after {
  font-weight: 700;
  font-size: 4.8rem;
}
.product-show .printing .swiper-button-next:hover,
.product-show .printing .swiper-button-prev:hover {
  color: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .product-show {
    padding-top: 60px;
    font-size: 16px;
    line-height: 2;
  }
  .product-show .hd .left {
    width: 100%;
    padding-bottom: 40px;
  }
  .product-show .hd .right {
    width: 100%;
    padding-left: 0;
  }
  .product-show .hd .btnDiv {
    padding-top: 40px;
    text-align: center;
  }
  .product-show .hd .btnDiv .common-btn {
    min-width: 160px;
    line-height: 40px;
    border-radius: 20px;
    font-size: 18px;
  }
  .product-show .title-show {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .product-show .large {
    margin-bottom: 10px;
  }
  .product-show .large .swiper-pagination-bullet {
    width: 36px;
    height: 36px;
    background: none;
    border-radius: 0;
    margin: 0 0;
    opacity: 1;
    vertical-align: top;
    position: relative;
  }
  .product-show .large .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 1px #b5b5b5 solid;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .product-show .large .swiper-pagination-bullet:hover {
    opacity: 1;
  }
  .product-show .large .swiper-pagination-bullet:hover::before {
    border-color: var(--main-color);
    background: var(--main-color);
  }
  .product-show .small {
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-show .small li {
    padding-left: 5px;
    padding-right: 5px;
  }
  .product-show .small .swiper-button-prev,
  .product-show .small .swiper-button-next {
    border: none;
    width: 20px;
  }
  .product-show .small .swiper-button-prev:after,
  .product-show .small .swiper-button-next:after {
    font-size: 16px;
  }
  .product-show .small .swiper-pagination-bullet {
    width: 36px;
    height: 36px;
    background: none;
    border-radius: 0;
    margin: 0 0;
    opacity: 1;
    position: relative;
  }
  .product-show .small .swiper-pagination-bullet::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 1px #b5b5b5 solid;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .product-show .small .swiper-pagination-bullet:hover {
    opacity: 1;
  }
  .product-show .small .swiper-pagination-bullet:hover::before {
    border-color: var(--main-color);
    background: var(--main-color);
  }
  .product-show .small .swiper-pagination-bullet-active {
    opacity: 1;
  }
  .product-show .small .swiper-pagination-bullet-active::before {
    border-color: var(--main-color);
    background: var(--main-color);
  }
  .product-show .bd {
    padding-top: 40px;
  }
  .product-show .jieshao-1 {
    padding-top: 40px;
  }
  .product-show .jieshao-1 .title-4 {
    margin-bottom: 40px;
  }
  .product-show .title-1 {
    font-weight: 700;
    font-size: 24px;
  }
  .product-show .title-2 {
    font-size: 32px;
    line-height: 1.2;
  }
  .product-show .title-3 {
    font-size: 24px;
  }
  .product-show .title-4 {
    font-size: 20px;
  }
  .product-show .table-1 {
    overflow: auto;
    margin-top: 20px;
  }
  .product-show table td {
    border: 1px #fff solid;
    padding: 10px 10px;
  }
  .product-show table td:first-child {
    width: 100px;
  }
  .product-show .div-1 {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .product-show .div-1 .pic {
    width: 100%;
  }
  .product-show .div-1 .text {
    width: 100%;
  }
  .product-show .div-2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .product-show .div-2 .pic {
    width: 100%;
    padding: 0;
  }
  .product-show .div-2 .text {
    width: 100%;
    padding: 0 0 20px 0;
  }
  .product-show .printing {
    padding-bottom: 20px;
  }
  .product-show .printing .menuTabs {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .product-show .printing .menuTabs .listMenu {
    font-size: 16px;
  }
  .product-show .printing .menuTabs .listMenu li::after {
    margin-left: 5px;
    margin-right: 5px;
  }
  .product-show .printing .list li {
    width: 33.33333333%;
  }
  .product-show .printing .item {
    padding-left: 10px;
    padding-right: 10px;
  }
  .product-show .printing .swiper-button-next::after,
  .product-show .printing .swiper-button-prev::after {
    font-size: 24px;
  }
}
.why {
  font-size: 2rem;
  color: #000;
  line-height: 2;
  padding-top: 14rem;
}
.why .common-title-2 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1023px) {
  .why {
    font-size: 16px;
    padding-top: 40px;
  }
  .why .common-title-2 {
    margin-bottom: 40px;
  }
}
/*2025-12-8*/
.news .menuTabs {
  margin-bottom: 9rem;
}
.news .menuTabs .listMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news .menuTabs li {
  margin-left: -4rem;
  position: relative;
}
.news .menuTabs .active {
  z-index: 1;
}
.news .menuTabs .active a {
  background: var(--main-color);
}
.news .menuTabs a {
  display: block;
  background: #2f2f2f;
  color: #fff;
  line-height: 8rem;
  border-radius: 4rem;
  font-size: 4.5rem;
  font-weight: 700;
  padding-left: 6rem;
  padding-right: 6rem;
}
.news .menuTabs a:hover {
  background: var(--main-color);
  color: #fff;
}
.news .list-3 li {
  padding-bottom: 5rem;
}
.news .list-3 li:last-child {
  padding-bottom: 0;
}
.news .list-3 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news .list-3 .pic {
  width: 30rem;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
.news .list-3 .pic::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.news .list-3 .pic img {
  width: 100%;
  -webkit-transition: .5s;
  transition: .5s;
}
.news .list-3 .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 3rem;
}
.news .list-3 .title {
  font-weight: 700;
  color: var(--main-color);
  font-size: 3rem;
  line-height: 3rem;
  height: 4rem;
  margin-bottom: 2rem;

}
.news .list-3 .info {
  color: #2f2f2f;
  font-size: 1.6rem;
  line-height: 2.8rem;
  max-height: 14rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.news .list-3 .date {
  color: #999;
  padding-top: 3rem;
}
.news .list-3 .btn {
  padding-top: 2rem;
}
.news .list-3 .btn span {
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  line-height: 4rem;
  min-width: 14rem;
  text-align: center;
  border-radius: 2rem;
  font-size: 1.6rem;
}
.news .list-3 .btn span:hover {
  opacity: .8;
}
.news .list-3 .box:hover .title {
  text-decoration: underline;
}
.news .list-3 .box:hover .pic img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news .page {
  padding-top: 8rem;
}
@media screen and (max-width: 1023px) {
  .news {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  .news .menuTabs {
    margin-bottom: 40px;
  }
  .news .menuTabs li {
    margin-left: -20px;
  }
  .news .menuTabs a {
    line-height: 40px;
    border-radius: 20px;
    font-size: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .news .part {
    padding-bottom: 40px;
  }
  .news .list-3 li {
    padding-bottom: 30px;
  }
  .news .list-3 li:last-child {
    padding-bottom: 0;
  }
  .news .list-3 .pic {
    width: 100%;
    border-radius: 10px;
  }
  .news .list-3 .text {
    padding-top: 30px;
  }
  .news .list-3 .title {
    font-size: 18px;
    line-height: 24px;
    height: auto;
 
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
  }
  .news .list-3 .info {
    font-size: 16px;
    line-height: 24px;
    max-height: 120px;
  }
  .news .list-3 .btn {
    padding-top: 20px;
  }
  .news .list-3 .btn span {
    line-height: 40px;
    min-width: 140px;
    border-radius: 20px;
    font-size: 16px;
  }
  .news .page {
    padding-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .news .list-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  .news .list-3 li {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .news .list-3 .text {
    padding-left: 0;
  }
}
.prev-next {
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-size: 2.4rem;
}
.prev-next li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 8rem;
  position: relative;
  line-height: 6rem;
  border-bottom: 1px #eee solid;
}
.prev-next .bt {
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
.prev-next a {
  display: block;
  height: 6rem;
  line-height: 6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.prev-next a:hover {
  color: var(--main-color);
}
@media screen and (max-width: 1023px) {
  .prev-next {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 18px;
  }
  .prev-next li {
    padding-left: 60px;
    line-height: 60px;
  }
  .prev-next a {
    height: 60px;
    line-height: 60px;
  }
}
.home-honor .btn a,
.home-about .btn a,
.home-faq .more a,
.home-faq .list-form .btn a,
.home-news .list-1 .btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 22rem;
  padding: 0 1rem;
  line-height: 5.2rem;
  border: 0.2rem var(--main-color) solid;
  border-radius: 2.8rem;
  font-size: 2.4rem;
  background: var(--main-color);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s;
  transition: .5s;
}
.home-about .btn a .icon,
.home-honor .btn a .icon,
.home-faq .more a .icon,
.home-faq .list-form .btn a .icon,
.home-news .list-1 .btn span .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: .5s;
  transition: .5s;
}
.home-about .btn a .icon svg,
.home-honor .btn a .icon svg,
.home-faq .more a .icon svg,
.home-faq .list-form .btn a .icon svg,
.home-news .list-1 .btn span .icon svg {
  width: 1.4rem;
  height: 1.4rem;
  font-weight: 700;
  color: var(--main-color);
}
.home-about .btn a:hover,
.home-honor .btn a:hover,
.home-faq .more a:hover,
.home-faq .list-form .btn a:hover,
.home-news .list-1 .btn span:hover {
  color: #fff;
  padding-left: 3.8rem;
}
.home-about .btn a:hover .icon,
.home-honor .btn a:hover .icon,
.home-faq .more a:hover .icon,
.home-faq .list-form .btn a:hover .icon,
.home-news .list-1 .btn span:hover .icon {
  opacity: 0;
  -webkit-transform: translateX(1rem) scale(1.2);
  transform: translateX(1rem) scale(1.2);
}
@media screen and (max-width: 1023px) {
  .home-about .btn a,
  .home-honor .btn a,
  .home-faq .more a,
  .home-faq .list-form .btn a,
  .home-news .list-1 .btn span {
    min-width: 120px;
    line-height: 40px;
    border: 2px var(--main-color) solid;
    border-radius: 5px;
    font-size: 16px;
    padding: 0 10px;
  }
  .home-about .btn a .icon,
  .home-honor .btn a .icon,
  .home-faq .more a .icon,
  .home-faq .list-form .btn a .icon,
  .home-news .list-1 .btn span .icon {
    margin-left: 10px;
    width: 24px;
    height: 24px;
  }
  .home-about .btn a .icon svg,
  .home-honor .btn a .icon svg,
  .home-faq .more a .icon svg,
  .home-faq .list-form .btn a .icon svg,
  .home-news .list-1 .btn span .icon svg {
    width: 14px;
    height: 14px;
  }
}
.honor .list .box {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.honor .list .box .pic {
  -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.2);
}
.honor .list .title {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400;
  height: 4rem;
  line-height: 2rem;
padding-top:2rem;
}
