/*
 * @Descripttion: 科纽斯
 */

 .pm-advantages {
  font-size: 14px;
 }
 .pm-product-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FBF2E5;
  margin-top: 25px;
  margin-bottom: 25px;
}

.pm-product-list-info {
  box-sizing: border-box;
  width: 43%;
  font-size: 14px;
  line-height: 24px;
  padding: 5rem 20px;
  margin: 0 auto;
  text-align: center;
}

.pm-product-list-info :nth-child(1) {
  text-align: center;
  font-size: 25px;
  font-weight:bold;
}
.pm-product-list-info :nth-child(2) {
  padding-top: 10px;
  padding-bottom: 25px;
  text-align: center;
  font-size: 25px;
  font-weight:bold;
}
.pm-product-list-info :nth-child(3) {
  padding: 10px 0px;
  font-size: 14px;
  text-align: center;
  border: #000 solid 1px;
  margin: 10px 0;
}

.pm-product-list-info :nth-child(4) {
  padding-top: 6rem;
}

.pm-product-list-info :nth-child(4) a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  border-radius: 25px;
  text-align: center;
  display: inline-block;
  background-color: #166EB7;
  padding: 10px;
}



.pm-product-list-pic {
  width: 53%;
  text-align: center;
  overflow: hidden; /*图片超出div部分隐藏*/
}
.pm-product-list-pic img {
  max-width: 500px;
  max-height: 500px;
  transition: all 1.5s; /*设置动画执行的时间为0.6s*/
}
.pm-product-list-pic img:hover {
  transform: scale(1.1); /*设置图片按照比例放大1.3倍*/
}

