.bg-gy {
  background: #f7f8fa;
}
.title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 60px;
}
.title-box .title {
  font-weight: bold;
  font-size: 36px;
  color: #111111;
  max-width: 70%;
  line-height: 46px;
}
.title-box .time {
  display: flex;
  align-items: center;
}
.title-box .time span {
  font-weight: bold;
  font-size: 70px;
  color: #025872;
}
.title-box .time .text {
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  line-height: 20px;
  margin-left: 5px;
}
.news-list {
  max-height: 730px;
  overflow-y: auto;
}
.news-list .box {
  margin-bottom: 40px;
}
.news-list .box .img {
  aspect-ratio: 253/153;
  overflow: hidden;
  display: block;
}
.news-list .box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}
.news-list .box .title {
  font-weight: bold;
  font-size: 18px;
  color: #111111;
  line-height: 26px;
  margin: 15px 0 20px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .box .time {
  font-size: 16px;
  color: #777777;
}
.news-list .box {
  position: relative;
  padding-bottom: 15px;
}
.news-list .box::after,
.news-list .box::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: 0;
  background: #ebebeb;
}
.news-list .box::before {
  width: 0;
  z-index: 1;
  transition: all 0.3s;
}
.news-list .box:hover .title {
  color: #025872;
}
.news-list .box:hover img {
  transform: scale(1.2);
}
.news-list .box:hover::before {
  width: 100%;
  background: #025872;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 0;
  position: relative;
}
.container .content {
  flex: 1;
}
.container .content .page-detail {
  font-size: 18px;
  line-height: 26px;
}
.title-command {
  font-weight: bold;
  font-size: 24px;
  color: #111111;
  line-height: 36px;
  margin-bottom: 15px;
}
.container .command {
  width: 380px;
  margin-left: 80px;
  position: sticky;
  top: 84px;
}

.page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9e9e9;
  padding: 30px 0;
  margin-top: 50px;
}
.page .text {
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  line-height: 28px;
}
.page .text:hover {
  color: #e48020;
}
.page .page-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.page .page-btn span {
  font-weight: 400;
  font-size: 16px;
  color: #777777;
  margin: 0 17px;
}
.page .page-btn:hover span {
  color: #e48020;
}
.page .page-btn.page-next {
  flex-direction: row-reverse;
}
.page .page-btn.page-next svg {
  transform: rotate(180deg);
}
.page .page-btn:hover svg,
.page .page-btn:hover svg path[fill-rule="even"] {
  fill: #e48020;
}
.page .page-btn:hover svg path[fill-rule="evenodd"] {
  stroke: #e48020;
}

@media screen and (max-width: 1280px) {
  .container .command {
    width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .title-box {
    display: block;
    padding-bottom: 40px;
  }
  .title-box .title {
    font-size: 20px;
    max-width: 100%;
    line-height: 28px;
  }
  .title-box .time {
    margin-top: 20px;
    display: flex;
  }
  .title-box .time span {
    font-size: 32px;
  }
  .title-box .time br {
    display: none;
  }
  .title-box .time .text {
    padding-top: 5px;
  }
  .container {
    display: block;
    padding: 30px 0;
  }
  .container .content .page-detail {
    font-size: 15px;
  }
  .page {
    margin-top: 30px;
  }
  .page .page-btn svg {
    transform: scale(0.8);
  }
  .page .page-btn.page-next svg {
    transform: rotate(180deg) scale(0.8);
  }
  .page .page-btn span {
    margin: 0 6px;
    font-size: 14px;
  }
  .page .text {
    font-size: 14px;
  }
  .container .command {
    margin-left: 0;
    width: 100%;
  }
  .title-command {
    font-size: 18px;
  }

  .news-list .box {
    padding-bottom: 20px;
  }
  .news-list .box .title {
    font-size: 16px;
    margin: 15px 0 20px;
    height: auto;
    line-height: 24px;
  }
  .news-list .box .time {
    font-size: 14px;
  }
}
