body {
  padding-top: 50px;
  /* background: linear-gradient(180deg, rgba(250, 248, 245, 1) 0%, rgba(250, 248, 245, 0) 100%);
  background-repeat: no-repeat; */
}
.banner-container {
  color: #fff;
  height: 300px;
  background: #F7C234 url(../images/exam_banner.png) no-repeat center center / cover;
}
.banner-container .operate-btns {
  padding-top: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner-container .operate-btns .operate-btn {
  background-color: rgba(229, 229, 229, 0.2);
  width: 200px;
  height: 160px;
  border-radius: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 16px;
  box-sizing: border-box;
  cursor: pointer;
}
.banner-container .operate-btns .operate-btn .icon {
  width: 60px;
  height: 60px;
}
.banner-container .operate-btns .operate-btn .name {
  color: #fff;
  font-size: 24px;
}
.exam-container {
  width: 1184px;
  margin: 75px auto 0;
}
.exam-container ul {
  width: 110%;
  overflow: hidden;
}
.exam-container li.exam-item {
  float: left;
  width: 382px;
  height: 268px;
  margin: 0 18px 18px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff linear-gradient(90deg, rgba(223, 178, 53, 0.1) 0%, rgba(251, 239, 238, 0) 100%);
}
.exam-container li.exam-item a {
  display: block;
  width: 382px;
  height: 268px;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
}
.exam-container li.exam-item a:hover {
  box-shadow: 0 16px 40px 0 rgb(138 149 158 / 20%);
  transition: all 0.4s;
}
.exam-item .img-wrapper {
  position: relative;
  width: 100%;
  height: 152px;
  overflow: hidden;
}
.exam-item .img-wrapper img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exam-item .theme-wrapper {
  margin-top: 20px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  padding: 0 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 45px;
}
.exam-item .theme-wrapper .status {
  display: inline-block;
  width: 68px;
  text-align: center;
  border-radius: 0 6px 6px 0;
  font-size: 10px;
  margin-left: -20px;
  color: #fff;
}
.exam-item .theme-wrapper .status.live {
  background-color: #43cf7c;
}
.exam-item .theme-wrapper .status.close {
  background-color: #ff5733;
}
.exam-item .theme-wrapper .status.notice {
  background-color: #ffc300;
}
.exam-item .content {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}
.exam-item .content p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
