* {
  margin: 0;
  padding: 0;
}
body {
  min-width: 1200px;
  font-family: "Microsoft YaHe";
}
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: 100%;
  height: 443px;
  background-image: url(/Public/Home/images/thank_remarks_img/1.1.png);
  background-size: 100% 100%;
}
.bannerWrap img {
  display: block;
  width: 1054px;
  height: 268px;
  margin: 82px auto 0 auto;
}
/*banner 结束*/
/*内容列表 开始*/
.contWrap {
  width: 100%;
  background-color: #f7f7f7;
}
.contWrap .cont {
  width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 13px;
  padding-bottom: 20px;
}
.contWrap .contItem {
  display: flex;
  width: 585px;
  height: 218px;
  border-radius: 32px 0 32px 32px;
  overflow: hidden;
  margin-top: 20px;
  background-image: url(/Public/Home/images/thank_remarks_img/2.0.png);
  background-size: 100% 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 2px 20px 2px 2px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.contWrap .contItem:hover {
  transform: translateY(-10px);
}
.contWrap .contItem .label {
  position: absolute;
  width: 31px;
  height: 31px;
  top: 1px;
  right: 0;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 31px;
  text-align: center;
  transform: rotate(45deg);
}
.contWrap .contItem img {
  width: 162px;
  height: 212px;
  margin-top: 3px;
  display: block;
  border-radius: 30px 0 0 30px;
  margin-right: 20px;
}
.contWrap .contItem section {
  font-size: 14px;
  color: #000000;
  line-height: 28px;
}
.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: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}
/*内容列表 结束*/
