.content {
  background-color: #f5f5f5;
}
.content .box {
  width: 88%;
  margin: 0 auto;
  padding-bottom: 8rem;
}

.content .box .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  font-weight: 500;
  line-height: 1;
}

.content .box .top .en {
  font-size: 1.2rem;
  color: #999;
}

.content .box .top .title {
  margin-top: 1.3rem;
  font-size: 3.8rem;
  color: #c6150f;
}

.content .box .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  overflow: hidden;
  margin-bottom: 4rem;
}

.content .box .list .item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 8rem;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #fff;
  box-sizing: border-box;
}

.content .box .list .item .text {
  position: relative;
  z-index: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.content .box .list .item::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: radial-gradient(0% 0% at 0% 0%, #933232 0%, #a90206 0%, #d00005 100%), #ffffff;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.content .box .list .item:hover::after {
  transform: scale(1);
}

.content .box .list .item:hover .text {
  color: #fff;
}