.banner {
  width: 70%;
  margin: 0 auto;
  cursor: pointer;
}
.banner img {
  width: 100%;
  object-fit: cover;
}
.message {
  width: 70%;
  margin: 0 auto;
}
.message img {
  width: 100%;
  object-fit: cover;
}

.container {
  padding: 0 15%;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}

.container .left {
  width: 17%;
}
.container .left .left-item {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  border-bottom: 1px solid #a6a6a6;
}

.left .left-item .item-title {
  width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #1a1a1a;
  height: 30px;
  line-height: 30px;
  transition: all 0.4s;
}
.left .left-item .item-title:hover {
  color: lightpink;
  transition: all 0.4s;
}
.left .left-item .item-name {
  overflow: hidden;
  width: 64px;
  text-align: right;
  white-space: normal;
  text-overflow: ellipsis;
  color: #b3b3b3;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
}
.container .right {
  width: 17%;
}
.container .middle {
  width: 60%;
}
.container .container-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  overflow: hidden;
  height: 24px;
  padding-bottom: 4px;
  color: #1a1a1a;
  border-bottom: 1px solid #a6a6a6;
}

.container .middle .banner img {
  width: 100%;
  object-fit: cover;
}
.middle-card {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #a6a6a6;
}
.middle-card .card-item {
  width: 31%;
}
.middle-card .card-item .item-title {
  font-size: 18px;
  overflow: hidden;
}
.middle-card .card-item .item-number {
  color: #bf2c24;
}
.middle-card .card-item .item-desc {
  font-size: 10px;
  line-height: 20px;
  overflow: hidden;
  height: 36px;
  color: #666;
}
.top {
  padding: 0 15%;
  display: flex;
  justify-content: space-between;
}
.top .top-left {
  width: 17%;
}
.top .top-right {
  width: 17%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.top-right .right-title {
  font-size: 20px;
  color: #262626;
  margin-bottom: 10px;
}
.top-right .right-text {
  background-color: #fcfcfa;
  padding: 5px;
  font-size: 15px;
}
.top-right .right-item {
  cursor: pointer;
  margin: 10px 0;
  transition: all 0.4s;
}
.top-right .right-item:hover {
  color: pink;
  transition: all 0.4s;
}
.top-right .right-active {
  cursor: pointer;
  margin: 10px 0;
  color: #bf2c24;
  transition: all 0.4s;
}
.top-right .right-active:hover {
  color: pink;
  transition: all 0.4s;
}
.top .top-middle {
  width: 60%;
}
.top .top-middle img {
  width: 100%;
  object-fit: cover;
}
.right-text .right-active span {
  display: inline-block;
  background-color: red;
  color: #fff;
  margin-right: 20px;
  font-size: 14px;
  padding: 5px;
}
