.mp .header {
  box-shadow: 0px 1px 1px 0px rgba(1, 32, 90, 0.1);
}
.mp .container {
  margin-top: 20px;
}
.mp .mp-container .mp-desc {
  font-size: 20px;
  color: #333333;
  line-height: 40px;
  text-align: center;
}
.mp .mp-container .mp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
  padding-bottom: 50px;
}
.mp .mp-container .mp-list .item {
  display: flex;
  align-items: center;
  width: 373px;
  height: 220px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #eeeeee;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.mp .mp-container .mp-list .item:hover .mask {
  transform: translateY(0);
  opacity: 1;
}
.mp .mp-container .mp-list .item .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 47px;
  height: 47px;
  z-index: 10;
}
.mp .mp-container .mp-list .item .img1 {
  width: 107px;
  height: 179px;
  margin: 0 20px;
}
.mp .mp-container .mp-list .item .right {
  flex: 1;
  height: 100%;
  padding-top: 40px;
  padding-right: 10px;
  box-sizing: border-box;
  position: relative;
}
.mp .mp-container .mp-list .item .right .title {
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  padding-bottom: 15px;
}
.mp .mp-container .mp-list .item .right .desc {
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mp .mp-container .mp-list .item .right .btn {
  width: 118px;
  height: 36px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eeeeee;
  font-size: 15px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 20px;
}
.mp .mp-container .mp-list .item .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  align-items: center;
  background-color: #fff;
  transition: all 0.24s ease-in-out;
}
.mp .mp-container .mp-list .item .mask .img2 {
  width: 160px;
  height: 160px;
  margin: 0 20px;
}
.mp .no-data {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  width: 100%;
  color: #999;
  font-size: 18px;
}
.mp .no-data.show {
  display: flex;
}