* {
  margin: 0;
  padding: 0;
  font-family: "MicrosoftYaHei";
}
a {
  text-decoration: none;
  cursor: pointer;
}
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.section.slide-in {
  opacity: 1;
  transform: translateY(0);
}
/*banner 开始*/
.bannerWrap {
  display: flex;
  width: 37.5rem;
  height: 20.2rem;
  background-image: url(/Public/Phone/images/thank_remarks_img/1.1.jpg);
  background-size: 100% 100%;
}
/*banner 结束*/
/*内容列表 开始*/
.contWrap {
  width: 100%;
  background-color: #f7f7f7;
}
.contWrap .cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  width: 34.5rem;
}
.contWrap .contItem {
  display: flex;
  width: 34.5rem;
  height: 19.2rem;
  border-radius: 3.2rem 0 3.2rem 3.2rem;
  overflow: hidden;
  margin-top: 1rem;
  background-image: url(/Public/Phone/images/thank_remarks_img/2.0.png);
  background-size: 100% 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 0.2rem 1.5rem 0.2rem 0.2rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.contWrap .contItem:hover {
  transform: translateY(-0.5rem);
}
.contWrap .contItem .label {
  position: absolute;
  width: 3rem;
  height: 3rem;
  top: 0.2rem;
  right: 0;
  font-weight: 400;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 3.1rem;
  text-align: center;
  transform: rotate(45deg);
}
.contWrap .contItem img {
  width: 13.8rem;
  height: 18.6rem;
  margin-top: 0.3rem;
  display: block;
  border-radius: 3.2rem 0 0 3.2rem;
  margin-right: 1.4rem;
}
.contWrap .contItem section {
  font-size: 1.4rem;
  color: #000000;
  line-height: 2.2rem;
}
.contWrap .contItem section .labelNam {
  font-weight: bold;
}
.contWrap .contItem section p {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 这里是超出几行省略 */
  overflow: hidden;
}
/*内容列表 结束*/
