.inner-nav {
  background-color: #f5f5f5;
}
.content {
  background-color: #f5f5f5;
}
.content .box {
  width: 73.2%;
  margin: 0 auto;
  padding-bottom: 100px;
}
.content .box .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  font-weight: 500;
  line-height: 1;
}
.content .box .top .en {
  font-size: 16px;
  color: #999;
}
.content .box .top .title {
  margin-top: 23px;
  font-size: 48px;
  color: #c6150f;
}
.content .box .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
  overflow: hidden;
  margin-bottom: 60px;
}
.content .box .list .item {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 2.083333vw;
  margin-bottom: 45px;
  width: 48.852223%;
  height: 120px;
  color: #333;
  font-size: 20px;
  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: all 0.25s ease;
  border-radius: 50px;
  opacity: 0;
}
.content .box .list .item:hover::after {
  transform: scale(1);
  border-radius: 0;
  opacity: 1;
}
.content .box .list .item:hover .text {
  color: #fff;
}

.content .box .pagination {
  width: auto;
  margin-left: calc(50% - 247px);
}

.content .box .pagination::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  float: none;
  clear: both;
}

.content .box .pagination .prev {
  width: 100px;
  height: 45px;
  background-color: #f0f0f0;
  border-radius: 22.5px;
  float: left;
  transition: 0.4s;
}

.content .box .pagination .prev a {
  width: 100%;
  display: block;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  color: #323333;
  transition: 0.4s;
}

.content .box .pagination .prev:hover {
  background-color: #c6150f;
}

.content .box .pagination .prev:hover a {
  color: white;
}

.content .box .pagination .page-number {
  float: left;
  margin-left: 13px;
}

.content .box .pagination .page-number ul li {
  float: left;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 7px;
  transition: 0.4s;
}

.content .box .pagination .page-number ul li a {
  width: 100%;
  line-height: 45px;
  display: block;
  font-size: 14px;
  color: #666666;
  text-align: center;
  transition: 0.4s;
}

.content .box .pagination .page-number ul li:hover {
  background-color: #cd191c;
}

.content .box .pagination .page-number ul li:hover a {
  color: white;
}

.content .box .pagination .page-number ul li.active {
  background-color: #cd191c;
}

.content .box .pagination .page-number ul li.active a {
  color: white;
}

.content .box .pagination .next {
  width: 100px;
  height: 45px;
  background-color: #f0f0f0;
  border-radius: 22.5px;
  margin-left: 20px;

  transition: 0.4s;
}

.content .box .pagination .next a {
  width: 100%;
  display: block;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  color: #323333;
  transition: 0.4s;
}

.content .box .pagination .next:hover {
  background-color: #c6150f;
}

.content .box .pagination .next:hover a {
  color: white;
}
