/* 首页样式 */
.highlight {
  margin-top: 103px;
}

/* 产品 */
.product-page {
  margin-top: 60px;
  margin-bottom: 87px;
}
.product-page .con {
  background: rgba(247, 248, 252, 1);
  padding: 25px;
  box-sizing: border-box;
}
.product-page .con .list {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fill, minmax(calc(25% - 4.5px), 1fr));
  gap: 22px 6px; /* 列间距 6px，行间距 12px */
}
.product-page .con .list .item {
  /* width: calc(); */
  overflow: hidden;
  cursor: pointer;
}
.product-page .con .list .item .text {
  padding: 25px;
  box-sizing: border-box;
}
.product-page .con .list .item .text .pro-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26.06px;
  color: #333333;
  text-align: center;
}
.product-page .con .list .item .text .pro-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.27px;
  color: #333333;
  text-align: center;
  margin-top: 8px;
}
.product-page .con .list .item img {
  display: block;
  width: 100%;
  height: 229px;
  object-fit: cover;
}
.product-page .con .list .item:hover .text {
  background: #12b7a4;
}
.product-page .con .list .item:hover .text .pro-title {
  color: #fff;
}
.product-page .con .list .item:hover .text .pro-desc {
  color: #fff;
}
 /* 响应式调整 */
 /* @media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 8px), 1fr));
  }
} */


@media (max-width: 1200px) {
  .product-page .con .list {
    grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 8px), 1fr));
  }
}
@media (max-width: 960px) {
  .product-page .con .list {
    grid-template-columns: repeat(auto-fill, minmax(calc(100%), 1fr));
  }
}


/* 产品详情页 */
.product-in {
  margin-top: 73px;
  margin-bottom: 97px;
}
.product-in .con {
  display: flex;
  justify-content: space-between;
}
.product-in .con .video-con {
  width: 800px;
  height: 593px;
  border-radius: 4px;
  position: relative;
  background-color: #eee;
}
.product-in .con .video-con #my-video {
  width: 100%;
  height: 100%;
}

.product-in .con .icon {
  width: 97.74px;
  height: 98.4px;
  border-radius: 50%;
  background-image: url(../img/bofang.png);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  cursor: pointer;
}

.product-in .con .right {
  flex: 1;
  margin-left: 100px;
}
.product-in .con .right .title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 57px;
  color: #333333;
  margin-bottom: 50px;
}
.product-in .con .right .description {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
  color: #737373;
  text-align: justify;
}

/* Product Parameters */
.product-para-bg {
  background-color: rgba(247, 248, 252, 1);
  padding-top: 70px;
  padding-bottom: 82px;
}
.product-para .con {
  width: 100%;
  max-height: 628px;
  overflow-y: auto;
  margin-top: 70px;
  padding: 76px 62px;
  box-sizing: border-box;
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  flex-wrap: wrap;
}
.product-para .con .item {
  width: 48%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 2px solid #e5e5e5;
  padding: 0 14px;
  padding-top: 22px;
  box-sizing: border-box;
  margin-bottom: 29px;
}
.product-para .con .key {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: #737373;
  width: 55%;
}
.product-para .con .val {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 20.27px;
  color: #333333;
  text-align: left;
  vertical-align: top;
  width: 31%;
}
.product-para .con .imgbox {
  width: 100%;
}
.product-para .con .imgbox img {
  width: 100%;
}

@media (max-width: 960px) {
  .product-in .con {
    flex-wrap: wrap;
  }
  .product-in .con .video-con {
    width: 100%;
    height: 260px;
  }
  .product-in .con .right {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
  .product-para .con {
    padding: 20px;
    height: auto;
    max-height: fit-content;
  }
  .product-para .con .item {
    width: 100%;
  }
  .product-para .con .item {
    flex-wrap: wrap;
  }
  .product-para .con .key {
    width: 100%;
    margin-bottom: 20px;
  }
  .product-para .con .val {
    width: 100%;
  }
}

/* solution */
.solution {
  width: 1540px;
  margin: 0 auto;
  margin-top: 72px;
  margin-bottom: 153px;
  position: relative;
}

.solution .solutionSwiper {
  margin-top: 63px;
}

@media (max-width: 1600px) {
  .solution {
    width: 90%;
  }
}
@media (max-width: 960px) {
  .solution {
    margin-bottom: 50px;
  }
}

/* download */
.download {
  background-color: rgba(247, 248, 252, 1);
  padding: 40px 0;
}
.download .con-width{
  display: flex;
  justify-content: space-between;
}
.download .text .title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 32px;
  color: #333333;
  text-align: left;
}

.download .text .info {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 20px;
  color: #737373;
  margin-top: 10px;
}

.download .btn {
  width: 160px;
  height: 58px;
  opacity: 1;
  border-radius: 5px;
  background: #12b7a4;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 28px;
  color: #ffffff;
  text-align: center;
  line-height: 58px;
}

/* slution-desc */
.wiunp {
  margin-top: 73px;
}
.wiunp .h {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.wiunp .h .info {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 20px;
  color: rgba(115, 115, 115, 1);
  width: 50%;
  margin-bottom: 40px;
}


.whyunp {
  padding-top: 71px;
  padding-bottom: 102px;
  background-color: rgba(247, 248, 252, 1);
}
.whyunp .list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(25% - 33.75px), 1fr));
  gap: 0px 45px; /* 列间距 6px，行间距 12px */
}
.whyunp .list .item {
  background: #fff;
}
.whyunp .list .item .imgbox {
  height: 311px;
}
.whyunp .list .item .text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 28.96px;
  color: rgba(51, 51, 51, 1);
  padding: 48px 20px;
  height: 163px;
  box-sizing: border-box;
  text-align: center;
}

.solution-info {
  margin-top: 88px;
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solution-info .left  {
  width: 27%;
}
.solution-info .textlist p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 30px;
  color: rgba(115, 115, 115, 1);
  text-align: justify;
  margin-bottom: 6px;
  position: relative;
  padding-left: 20px;
}
.solution-info .textlist p::before {
  display: block;
  content: '';
  width: 10px;
  height: 12px;
  background-image: url(../img/dbx.png);
  position: absolute;
  left: 0;
  top: 8px;
} 
.solution-info .imglist {
  width: 63%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.solution-info .imglist .imgbox {
  width: calc(50% - 7px);
  margin-bottom: 14px;
}

.ben {
  padding-top: 71px;
  padding-bottom: 102px;
  background-color: rgba(247, 248, 252, 1);
}
.ben .con {
  padding: 40px 76px;
  box-sizing: border-box;
  background-color: #fff;
}
.ben .con .item {
  display: flex;
  border-bottom: 2px solid rgba(229, 229, 229, 1);
  padding-top: 28px;
  padding-bottom: 28px;
}
.ben .con .item:last-child {
  border-bottom: none;
}
.ben .con .item .key {
  width: 40%;
}
.ben .con .item .val {
  width: 60%;
}

@media (max-width: 960px) {
  .wiunp .h {
    flex-wrap: wrap;
  }
  .wiunp .h .info {
    width: 100%;
  }
  .whyunp .list {
    grid-template-columns: repeat(auto-fill, minmax(calc(100%), 1fr));
    gap: 20px 45px;
  }
  .whyunp .list .item {
    width: 100%;
  }
  .solution-info {
    flex-wrap: wrap;
  }
  .solution-info .left {
    width: 100%;
    margin-bottom: 20px;
  }
  .solution-info .imglist {
    width: 100%;
  }
  .ben .con {
    padding: 20px;
  }
  .ben .con .item {
    flex-wrap: wrap;
  }
  .ben .con .item .key {
    width: 100%;
    margin-bottom: 20px;
  }
  .ben .con .item .val {
    width: 100%;
  }
}

/* 新闻 */
.news-page {
  margin-top: 60px;
  margin-bottom: 58px;
}
.news-page .con {
  margin-top: 40px;
  border-top: 1px rgba(224, 224, 224, 1) solid;
  padding-top: 30px;
}
.news-page .con .item {
  display: flex;
  width: 100%;
  padding: 30px 0;
  transition: all .3s;
  border-bottom: 1px rgba(238, 238, 238, 1) dashed;
}
.news-page .con .item .text {
  flex: 1;
  overflow: hidden;
  margin-left: 30px;
}
.news-page .con .item .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 28.96px;
  color: rgba(51, 51, 51, 1);
  text-align: left;
}
.news-page .con .item .desc {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20.27px;
  color: rgba(153, 153, 153, 1);
  text-align: justify;
  margin-top: 22px;
  margin-bottom: 13px;
}
.news-page .con .item .btn {
  width: 90px;
  height: 30px;
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(238, 238, 238, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20.27px;
  color: rgba(170, 170, 170, 1);
}
.news-page .con .item .icon {
  width: 12px;
  height: 12px;
  background-image: url(../img/news-jiantou.png);
  margin-left: 9px;
}

.news-page .con .item .imgbox {
  width: 219px;
  height: 146px;
}

.news-page .con .item:hover {
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0px 3px 16px  rgba(18, 183, 164, 0.26);
}
.news-page .con .item:hover .btn{
  background: rgba(18, 183, 164, 1);
  color: #fff;
}
.news-page .con .item:hover .btn .icon{
  background-image: url(../img/news-jiantou-a.png);
}

@media (max-width: 960px) {
  .news-page .con .item {
    flex-wrap: wrap;
  }
  .news-page .con .item .imgbox {
    width: 100%;
    height: 200px;
  }
  .news-page .con .item .text {
    width: 100%;
    margin-left: 0;
    flex: none;
    margin-top: 20px;
    box-sizing: border-box;
  }
  .news-page .con .item:hover {
    padding: 20px;
  }
  .news-page .con {
    border: none;
    padding-top: 0px;
  }
}

/* 新闻内页 */
.news-desc-page {
  margin-top: 60px;
  margin-bottom: 57px;
}
.news-desc-page .con {
  padding: 30px 70px;
  box-sizing: border-box;
  border: 1px solid rgba(238, 238, 238, 1);
}
.news-desc-page .con .title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 34.75px;
  color: rgba(51, 51, 51, 1);
  text-align: center;
}
.news-desc-page .con .time {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 20.27px;
  color: rgba(170, 170, 170, 1);
  text-align: center;
  margin-top: 13px;
  margin-bottom: 28px;
}
.news-desc-page .con .main {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(238, 238, 238, 1);

}

.news-desc-page .con .new-pa {
  width: 100%;
  display: flex;
  background-color: rgba(247, 248, 252, 1);
  height: 44px;
  padding: 0 34px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.news-desc-page .con .new-pa a {
  color: rgba(18, 183, 164, 1);
  position: relative;
  cursor: pointer;
}
.news-desc-page .con .new-pa .prev {
  padding-left: 50px;
}
.news-desc-page .con .new-pa .next {
  padding-right: 50px;
}
.news-desc-page .con .new-pa .prev::before {
  width: 42px;
  height: 9px;
  display: block;
  content: '';
  background-image: url(../img/new-prev.png);
  position: absolute;
  top: 5px;
  left: 0;
}
.news-desc-page .con .new-pa .next::before {
  width: 42px;
  height: 9px;
  display: block;
  content: '';
  background-image: url(../img/new-next.png);
  position: absolute;
  top: 5px;
  right: 0;
}

@media (max-width: 960px) {
  .news-desc-page .con {
    padding: 20px;
  }
}

/* about */
.about-page {
  margin-top: 60px;
  margin-bottom: 73px;
}
.about-page .con {
  border: 1px solid rgba(238, 238, 238, 1);
  margin-top: 40px;
  padding: 30px 70px;
  box-sizing: border-box;
}
.about-page .con p{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 23.17px;
  color: rgba(115, 115, 115, 1);
  text-align: justify;
}

@media (max-width: 960px) {
  .about-page .con {
    padding: 20px;
  }
}

/* 联系我们 */
.contact-page {
  display: flex;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 95px;
}
.contact-page .item-box {
  width: calc(100% / 3);
  height: 574px;
  align-items: center;
  display: flex;
}
.contact-page .item {
  width: 100%;
  height: 487px;
  background: rgba(243, 243, 243, 1);
  transition: all .3s;
  overflow: hidden;
}
.contact-page .item .icon {
  width: 110px;
  height: 110px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  margin-top: 74px;
}
.contact-page .item-box:nth-child(1) .icon {
  background-image: url(../img/c01.png);
}
.contact-page .item-box:nth-child(2) .icon {
  background-image: url(../img/c02.png);
}
.contact-page .item-box:nth-child(3) .icon {
  background-image: url(../img/c03.png);
}
.contact-page .item:hover {
  background: rgba(18, 183, 164, 1);
  height: 574px;
}
.contact-page .item-box:nth-child(1):hover .icon {
  background-image: url(../img/c01-a.png);
}
.contact-page .item-box:nth-child(2):hover .icon {
  background-image: url(../img/c02-a.png);
}
.contact-page .item-box:nth-child(3):hover .icon {
  background-image: url(../img/c03-a.png);
}
.contact-page .item:hover .title {
  color: #fff;
}
.contact-page .item:hover .con {
  color: #fff;
}
.contact-page .item .title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 40.54px;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  margin-top: 30px;
}
.contact-page .item .con {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 34.75px;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  margin-top: 31px;
  padding: 0 50px;
  box-sizing: border-box;
  hyphens: auto;
}


.form {
  margin-bottom: 80px;
}
.form .title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 69.5px;
  color: rgba(51, 51, 51, 1);
  text-align: left;
}
.form .info {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgba(51, 51, 51, 1);
  text-align: left;
  margin-top: 30px;
}

.form button {
  width: 188px;
  height: 64px;
  opacity: 1;
  border-radius: 5px;
  background: rgba(18, 183, 164, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgba(255, 255, 255, 1);
  border: none;
  margin-top: 45px;
}
.form button .icon {
  width: 22.41px;
  height: 22.41px;
  background-image: url(../img/c-04.png);
  margin-left: 12px;
  background-size: 100%;
}

#myForm {
  margin-top: 21px;
}

#myForm input {
  border-radius: 10px;
  background: rgba(246, 246, 246, 1);
  margin-bottom: 32px;
  height: 73px;
  line-height: 73px;
  border: none;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgba(115, 115, 115, 1);
}
#myForm .l-3 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#myForm .l-3 input {
  width: calc(33% - 20px);
}
#myForm .l-1 input {
  width: calc(100%);
  height: 179px;
}
#myForm textarea {
  width: 100%;
  border-radius: 10px;
  background: rgba(246, 246, 246, 1);
  margin-bottom: 32px;
  line-height: 73px;
  border: none;
  padding: 20px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 26.06px;
  color: rgba(115, 115, 115, 1);
}

@media (max-width: 960px) {
  #myForm .l-3 {
    flex-wrap: wrap;
  }
  #myForm .l-3 input {
    width: 100%;
  }
  .contact-page {
    flex-wrap: wrap;
  }
  .contact-page .item {
    width: 100%;
  }
}