.show {
  background-color: rgba(246, 247, 252, 1);
}
.show-banner {
  width: 100%;
  height: 400px;
}
.wrapper {
  min-width: 1200px;
  width: 1200px;
}
.section .title {
  height: 37px;
  line-height: 37px;
  font-size: 26px;
  color: #333333;
  padding-left: 10px;
  margin-bottom: 35px;
  box-sizing: border-box;
  border-left: 4px solid rgba(13, 109, 212, 1);
  display: flex;
  justify-content: space-between;
}
.items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.items-wrapper .item {
  background-color: #fff;
  display: inline-block;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-right: 30px;
}
.item:nth-child(3n) {
  margin-right: 0;
}
.item:hover {
  cursor: pointer;
}
.item img {
  width: 380px;
  height: 166px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.item-text-wrapper {
  width: 350px;
  margin: auto;
  padding-bottom: 15px;
}
.item-title {
  font-weight: 900;
  font-size: 18px;
  margin: 10px 0 0 0;
  color: #333;
}
.item-desc {
  font-size: 16px;
  color: #7f7f7f;
  line-height: 34px;
  display: flex;
  align-items: center;
}
.item:hover .item-desc {
  color: rgb(64, 64, 64);
}
.item-desc img {
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
.item-read{
  display: flex;
  flex-direction: row-reverse;
  margin: 8px 0;
}
.item-read .item-read-btn{
  display: block;
  width: 115px;
  height: 40px;
  background: #C73001;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-read .item-read-btn.over{
  background: #999999;
}

