.center {
  width: 100%;
}
.center .list {
  display: grid;
  grid-template-columns: repeat(4, 20.35714286rem);
  justify-content: space-between;
  gap: 1.42857143rem;
}
.center .list .item {
  background: #F9F9F8;
  border: 0.07142857rem solid #BFBFBF;
  text-align: center;
}
.center .list .item .text-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 7.14285714rem;
  line-height: 1.5;
  font-size: 1.42857143rem;
  font-weight: bold;
  color: #000;
  border-bottom: #BFBFBF solid 0.07142857rem;
}
.center .list .item .text-2 {
  height: 3.85714286rem;
  line-height: 3.85714286rem;
  font-size: 1.14285714rem;
  color: #AEAEAE;
}
.center .list .item:hover {
  background: #0064AA;
  border-color: #0064AA;
}
.center .list .item:hover .text-1 {
  color: #fff;
  border-bottom-color: #AEAEAE;
}
.center .list .item:hover .text-2 {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .center .list {
    grid-template-columns: repeat(3, 32%);
    gap: 0.71428571rem 0;
  }
}
@media screen and (max-width: 768px) {
  .main .left {
    display: block;
  }
  .center .list {
    grid-template-columns: repeat(2, 49%);
    gap: 0.71428571rem 0;
  }
  .center .list .item .text-1 {
    font-size: 1.28571429rem;
  }
}
@media screen and (max-width: 576px) {
  .center .list {
    grid-template-columns: repeat(1, 100%);
    gap: 0.71428571rem 0;
  }
  .center .list .item .text-1 {
    font-size: 1.14285714rem;
  }
}
