@charset "UTF-8";
/*
 * @Description: 二级栏目
 * @Author: 程姣姣
 * @Date: 2025-07-31
 */
.banner {
  position: relative;
  min-width: 1200px;
  height: 280px;
  overflow: hidden;
  z-index: 5;
}
.banner .banner-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -2;
}
.banner .description {
  color: #fff;
  display: flex;
  align-items: flex-end;
  margin-top: 72px;
}
.banner .description h5 {
  font-size: 50px;
  font-weight: bold;
}
.banner .description span {
  font-size: 20px;
  margin: 0 0 6px 25px;
}
.banner .description span::before {
  content: "/";
  padding-right: 20px;
}
.banner .btn-wrap {
  display: flex;
  margin-top: 38px;
}
.banner .btn-wrap > a {
  position: relative;
  width: 180px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  padding-left: 60px;
  background: #fff;
  border-radius: 2px;
  margin-right: 32px;
  transition: color 0.3s;
}
.banner .btn-wrap > a:hover {
  color: #c8000a;
}
.banner .btn-wrap > a::before {
  position: absolute;
  left: 22px;
  top: 50%;
  content: "";
  width: 32px;
  height: 30px;
  transform: translateY(-50%);
}
.banner .btn-wrap > a:nth-child(1)::before {
  background: url("../images/column/btn-icon1.png") center center no-repeat;
}
.banner .btn-wrap > a:nth-child(2)::before {
  background: url("../images/column/btn-icon2.png") center center no-repeat;
}
.banner .btn-wrap > a:nth-child(3)::before {
  background: url("../images/column/btn-icon3.png") center center no-repeat;
}
.banner .btn-wrap .enter {
  display: flex;
  justify-content: center;
  width: 180px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  background: #fff;
  border-radius: 2px;
}
.banner .btn-wrap .enter a {
  transition: color 0.3s;
}
.banner .btn-wrap .enter a:hover {
  color: #c8000a;
}
.banner .btn-wrap .enter a:first-child {
  margin-right: 16px;
}
.banner .btn-wrap .enter a:first-child::after {
  display: inline-block;
  content: "";
  height: 13px;
  margin-left: 16px;
  border-left: 1px solid #b8becc;
}

.info-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.info-items .item:nth-child(n+3) {
  margin-top: 16px;
}
.info-items .item a {
  width: 592px;
  height: 168px;
  background: #fff;
  display: flex;
  align-items: center;
  padding-left: 13px;
  border: 1px solid #fff;
  transition: border-color 0.3s;
}
.info-items .item a:hover {
  border-color: #c8000a;
}
.info-items .item a .img-ct {
  width: 230px;
  height: 150px;
  text-align: center;
  line-height: 150px;
}
.info-items .item a .img-ct img {
  max-width: 230px;
  max-height: 150px;
  vertical-align: middle;
}
.info-items .item a .info {
  margin-left: 10px;
}
.info-items .item a .info h5 {
  font-size: 16px;
  font-weight: bold;
}
.info-items .item a .info p {
  color: #999;
  margin-top: 12px;
}
.info-items .item a .info p span {
  font-family: "OPPOSans-R";
  padding-right: 4px;
  color: #c8000a;
  font-weight: bold;
  font-size: 20px;
}