.main-container {
  width: 100vw;
  height: 100vh;
  background: url(../images/news-list-bg.png) no-repeat;
  background-size: cover;
}

.page-container {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 19.2rem;
  height: 100%;
  background: url(../images/page-container-bg.png) no-repeat;
  background-size: cover;
  margin: 0 auto;
}

.page-container .title-box {
  position: absolute;
  top: 45px;
  left: 40px;
  width: 290px;
  height: 90px;
  padding-top: 54px;
  padding-left: 80px;
  color: #fff;
  font-size: 30px;
  z-index: 5;
  font-family: "xiaozi";
  box-sizing: border-box;
}

.page-container .title-box > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  object-fit: cover;
} 
.page-container .title-box a {
  color: #fff;
  text-decoration: none;
}

.page-container .title-box a:hover {
  color: #ff6a13;
}

.page-container .content {
  width: 9.4rem;
  height: calc(100vh - 1.67rem);
  margin: 0 auto;
  padding-top: 1.27rem;
}


.content .tabs {
  width: 100%;
  height: 100%;
}

.content .tabs a {
  color: inherit;
  text-decoration: none;
}

.content .tabs .tabs-header {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #3b3b3b;
  padding: 0.12rem;
  box-sizing: border-box;
  margin-bottom: 0.16rem;
}

.content .tabs .tabs-header .tabs-nav {
  width: 0.9rem;
  height: 100%;
  text-align: center;
  font-size: 0.16rem;
  font-family: "HYYaKuHei-75J";
  color: #999999;
  cursor: pointer;
}

.content .tabs .tabs-header .tabs-nav.active {
  color: #ff6a13;
  /* border-bottom: 2px solid #ff6a13; */
}

.content .tabs .tabs-content {
  width: 100%;
  height: calc(100% - 0.56rem);
}

.content .news-list {
  width: 100%;
  height: auto;
}

.content .news-list .news-item {
  width: 100%;
  height: 1.6rem;
  background: url("../images/news-list-item-bg.png");
  background-size: 100% 100%;
  margin-bottom: 0.2rem;
  cursor: pointer;
}

.content .news-list .news-item:hover {
  background: url("../images/news-list-item-active-bg.png");
  background-size: 100% 100%;
}

.content .news-list a {
  display: block;
  text-decoration: none;
}

.news-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0.25rem 0.32rem 0.22rem 0.28rem;
}

.news-item .left {
  width: 2.1rem;
  height: 1.1rem;
  margin-right: 0.3rem;
}

.news-item .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item .right {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-item .right .type {
  color: #845539;
  font-size: 0.12rem;
  font-family: "xiaozi";
}

.news-item .right .title {
  color: #fff;
  font-size: 0.28rem;
  font-family: "xiaozi";
  padding: 0.08rem 0 0.06rem;
  border-bottom: 1px solid #303030;
}

.news-item .right .summary {
  color: #845539;
  font-size: 0.12rem;
  font-family: "xiaozi";
  padding: 0.06rem 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-item .right .info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 0.12rem;
  font-family: "xiaozi";
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-item .right .info .date {
  color: #ababab;
}

.news-item .right .info .more-btn {
  text-decoration: none;
  color: inherit;
}



.list-swiper {
  width: 100%;
  height: calc(100% - 40px);
  overflow: hidden;
}

.list-swiper .list-swiper-pagination {
  width: 0.01rem !important;
  height: 4.75rem !important;
  position: absolute;
  top: 2.92rem !important;
  left: 2.92rem !important;
}

.list-swiper .list-swiper-pagination.swiper-pagination-progressbar {
  background: #ffffff !important;
}
.list-swiper .list-swiper-pagination .swiper-pagination-progressbar-fill {
  top: -0.01rem !important;
  width: 0.02rem !important;
  background: #ff6a13 !important;
}

.list-swiper .list-swiper-button-prev {
  position: absolute;
  left: 2.82rem;
  top: 2.62rem;
  width: 0.29rem;
  height: 0.25rem;
  background: url(../images/news-list-swiper-prev-btn.png) no-repeat;
  background-size: cover;
  cursor: pointer;
}

.list-swiper .list-swiper-button-prev:hover {
  /* background: url(../images/news-list-swiper-prev-active-btn.png) no-repeat; */
}

.list-swiper .list-swiper-button-next {
  position: absolute;
  left: 2.82rem;
  top: 7.77rem;
  width: 0.29rem;
  height: 0.25rem;
  background: url(../images/news-list-swiper-next-btn.png) no-repeat;
  background-size: cover;
  cursor: pointer;
}

.list-swiper .list-swiper-button-next:hover {
  /* background: url(../images/news-list-swiper-next-active-btn.png) no-repeat; */
}

.back-btn {
  position: absolute;
  right: 2.52rem;
  top: 1.56rem;
  width: 0.55rem;
  height: 0.55rem;
  background: url(../images/news-list-back-btn.png) no-repeat;
  background-size: cover;
  cursor: pointer;
}
.back-btn:hover {
  background: url(../images/news-list-back-active-btn.png) no-repeat;
  background-size: cover;
}

.page {
  font-size: 0.16rem;
  display: flex;
  color: #999;
  gap: 0.2rem;
  margin-top: 10px;
}

.page a {
  color: #ff6a13;
}
