@charset "UTF-8";
.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 0 auto;
  max-width: 1296px;
  margin-bottom: 128px;
}

.blog .bItem {
  border-radius: 20px;
}

.blog .bItem img {
  width: 343px;
  height: 202px;
  border-radius: 20px;
}

.blog .bItem .box {
  width: 343px;
  height: 103px;
  background: #F7F4EB;
  box-shadow: 0px 1 3px 0px rgba(234, 225, 208, 0.75);
  border-radius: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  padding: 16px 30px;
}

.blog .bItem .box .name {
  height: 42px;
  font-size: 17px;
  font-family: 'PlusJakartaSans SemiBold';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制在2行内 */
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog .bItem .box .more {
  margin-top: 6px;
  font-size: 15px;
  text-decoration: underline;
  color: #F79A1D;
  font-family: 'PlusJakartaSans bold';
}

.detail {
  max-width: 1296px;
  margin: 63px auto;
  font-family: 'PlusJakartaSans semibold';
}

.detail .tit {
  font-size: 36px;
  text-align: center;
  font-family: 'PlusJakartaSans semibold';
  margin-bottom: 22px;
}

.detail .detailBox {
  background-color: #fff;
  box-shadow: 0px 1 3px 0px rgba(234, 225, 208, 0.75);
  overflow: hidden;
  border-radius: 40px;
}

.detail .detailBox img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.detail .detailBox .infoBox {
  padding: 50px 70px;
  font-family: 'PlusJakartaSans semibold';
}
