/* 合集页面专用样式 */
* {
  box-sizing: border-box;
}
body {
  overflow-y: auto;
  user-select: none;
  height: 100%;
}
.g-bottom-indicator {
  width: 100%;
  text-align: center;
  padding: 30px 0;
  font-size: 18px;
  color: #c9c8c8;
  position: relative;
}
.heji-title {
  height: 40px;
  display: flex;
  align-items: center;
  margin: 36px 0 22px;
  font-size: 24px;
  color: #2c2c2c;
  font-weight: 600;
}
.heji-title .heji-icon {
  width: 40px;
  height: 40px;
  background: url("../images/heji-icons.png") no-repeat -8px -223px;
  margin-right: 12px;
}
.heji-title .change {
  margin-left: auto;
  font-size: 14px;
  color: #9e9e9e;
  cursor: pointer;
}
.heji-title .icon {
  margin-left: 6px;
  width: 12px;
  height: 12px;
  background: url("../images/heji-icons.png") no-repeat -164px -13px;
  display: inline-block;
  vertical-align: -1px;
}
.heji-icon.new {
  background-position: -57px -223px;
}
.heji-icon.list {
  background-position: -108px -178px;
}
.heji-icon.xghj {
  background-position: -6px -178px;
}
.heji-icon.xgwz {
  background-position: -57px -178px;
}
.heji-box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
}
.heji-box ul li {
  width: calc(33.3333% - 13.3333px);
  height: 290px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.heji-box ul li:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.14);
}
.heji-box ul li .img {
  width: 100%;
  height: 183px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.heji-box ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.heji-box ul li .top-tit {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  font-size: 16px;
  line-height: 45px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.heji-box ul li .liright {
  padding: 6px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.heji-box ul li .tit {
  font-size: 16px;
  line-height: 1;
  color: #070707;
  font-weight: 700;
  margin: 20px 0 24px;
}
.heji-box ul li .digest {
  display: none;
  font-size: 14px;
  line-height: 22px;
  color: #242424;
  margin: 8px 0 6px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.heji-box ul li:hover .digest {
  display: -webkit-box;
}
.heji-box ul li:hover .tit {
  display: none;
}
.heji-box ul li:hover .top-tit {
  display: block;
}

.heji-box ul li p {
  margin: 0;
}
.heji-box ul li .date {
  color: #929292;
  font-size: 14px;
}
.heji-box ul li .date span {
  margin-right: 20px;
}

/* 标题区样式，可用于精选合集 / 最新合集模块 */
.heji-section {
  margin-top: 50px;
}
.heji-section .section-title {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}
.heji-section .section-title .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 50%;
  background: #0b76e5;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.heji-section .section-title h2 {
  font-size: 26px;
  color: #222;
  font-weight: 700;
}
.heji-box .swiper {
  padding-top: 16px;
  margin-top: -16px;
}
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-size: 40px;
  --swiper-navigation-color: #d2d2d2;
  --swiper-navigation-sides-offset: -50px;
  border-radius: 50%;
  padding: 11px;
  border: solid 1px #e1e1e1;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  --swiper-navigation-color: #0b76e5;
  box-shadow: 0 0 6px -1px rgba(11, 116, 229, 0.39);
}
/* 合集详情 */
.heji-header {
  height: 436px;
  padding-top: 80px;
  background: url("../images/detail-bg.png") no-repeat;
  background-size: 100% 100%;
}
.header-info {
  height: 262px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 22px;
}
.header-info h1 {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 28px;
  color: #212121;
  font-weight: 700;
}
.header-info .heji-desc {
  width: 640px;
  font-size: 16px;
  margin-bottom: 24px;
  line-height: 36px;
  color: #212121;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.heji-tag {
  display: flex;
  gap: 12px;
}
.heji-tag div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(-90deg, #1371ff 0%, #12a4ff 100%),
    linear-gradient(#12a4ff, #12a4ff);
  background-blend-mode: normal, normal;
  border-radius: 5px;
  padding: 8px 10px;
  color: #fff;
  font-size: 12px;
}
.heji-tag i {
  width: 15px;
  height: 15px;
  display: block;
  margin-right: 4px;
  background: url("../images/heji-icons.png") no-repeat -28px -13px;
}
.heji-tag:nth-child(2) i {
  background-position: -57px -13px;
}
.heji-tag:nth-child(3) i {
  background-position: -83px -13px;
}
.heji-tag:nth-child(4) i {
  background-position: -108px -13px;
}
.heji-tag:nth-child(5) i {
  background-position: -136px -13px;
}
.header-info img {
  width: 520px;
  height: 260px;
  border-radius: 12px;
}
/* 软件清单 */
.soft-list {
  margin-top: 20px;
}
.soft-list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.soft-list ul li {
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.soft-list ul li a {
  max-width: 100%;
}
.soft-list ul li h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.soft-list ul li:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.14);
}
.soft-list img {
  width: 100px;
  height: 100px;
  margin-bottom: 40px;
}
.soft-list .soft-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 119px;
  height: 49px;
  display: inline-flex;
  background: url("../images/heji-icons.png") no-repeat -8px -268px;
}
.soft-list .soft-info {
  padding: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.soft-list .soft-word {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  color: #808080;
}
.soft-list .soft-info {
  font-size: 14px;
  line-height: 34px;
  color: #999999;
}
.soft-update,
.soft-star {
  width: 116px;
  display: flex;
  align-items: center;
}
.soft-list .soft-title {
  font-size: 20px;
  line-height: 1;
  color: #0b0a16;
  font-weight: 600;
}
.soft-list .soft-title:hover {
  color: #0a7bff;
}
.soft-list span.star {
  width: 74px;
  height: 14px;
  display: block;
  background: url(../images/heji-icons.png) no-repeat -8px -360px;
}
.soft-list span.star5 {
  background-position: -82px -341px;
}
.soft-list span.star4 {
  background-position: -82px -322px;
}
.soft-list span.star3 {
  background-position: -8px -360px;
}
.soft-list span.star2 {
  background-position: -8px -341px;
}
.soft-list span.star1 {
  background-position: -9px -322px;
}

.soft-list .soft-download {
  width: 306px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01ca44;
  border-radius: 21px;
  margin-left: auto;
  color: #ffffff;
  font-size: 16px;
}
.soft-list .soft-download .icon {
  width: 16px;
  height: 14px;
  margin-right: 6px;
  background: url("../images/heji-icons.png") no-repeat 0 -13px;
}
.soft-list .soft-download:hover {
  background: #40d872;
}
/* 相关文章推荐 */
.xgwz ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.xgwz ul li a {
  height: fit-content;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.xgwz ul li a:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.14);
}
.xgwz ul li:hover h3 {
  color: #0a7bff;
}
.xgwz ul li img {
  width: 276px;
  height: 138px;
  border-radius: 10px;
}
.wgwz-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 0;
}
.wgwz-info h3 {
  line-height: 32px;
  font-size: 18px;
  color: #070707;
  overflow: hidden;
  text-overflow: -o-ellipsis-lastline;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.wgwz-info p {
  font-size: 14px;
  color: #929292;
}
.wgwz-info p i {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: -2px;
  background: url("../images/heji-icons.png") no-repeat -182px -13px;
}
/* 排行榜 */
.heji-rank-header {
  position: relative;
  height: 796px;
  background: url("../images/heji-rank-header.png") no-repeat;
  background-size: 100% 100%;
  
}
.heji-rank-header .position a {
  color: #94cde9;
}
.heji-top-wrap {
  width: 1113px;
	height: 238px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  padding-left: 4px;
  transform: translateX(-50%);
  background: url("../images/rank-bg.png") no-repeat;
  background-size: 100% 100%;
}
.heji-top-wrap ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: -230px;
}
.heji-top-wrap ul li:nth-child(1) {
  margin-top: 54px;
}
.heji-top-wrap ul li:nth-child(3) {
  margin-top: 88px;
}
.heji-top-wrap ul li {
  width: 316px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.heji-top-wrap ul li:hover .top-btn{
  background-position: 0 -44px;
}
.heji-top-wrap ul li:hover .top-title {
  color: #88fffe;;
}
.heji-top-wrap ul li img {
  width: 125px;
	height: 125px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: solid 4px #ffffff;
}
.heji-top-wrap ul li .top-title {
  max-width: 100%;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right,transparent 0%, #4573ff 20%,#4573ff 80%, transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 600;
	color: #ffffff;
}
.heji-top-wrap ul li .top-btn {
  width: 172px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
	color: #ffffff;
  background: url(../images/heji-icons.png) no-repeat 0 -110px;
}
.heji-rank-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 34px;
  
}
.heji-rank-title {
  margin-bottom: 24px;
	font-size: 40px;
	line-height: 34px;
	font-weight: 700;
	color: #ffffff;
}
.heji-xgrj {
  margin-top: 20px;
  padding: 0 0;
  width: 100%;
  border: #eee solid 1px;
  background: #fff;
  border-radius: 20px;
}
.heji-xgrj dl {
  padding: 34px 32px;
  width: 100%;
  display: inline-block;
  position: relative;
}
.heji-xgrj dl:hover {
  box-shadow: 0 0 10px rgb(231, 231, 231);
}
.heji-xgrj .soft-title {
  max-width: 234px;
}
.heji-xgrj dl:after {
  content: "";
  width: 1158px;
  height: 30px;
  border-bottom: #eee dashed 1px;
  font-size: 0;
  line-height: 1;
  display: inline-block;
  position: absolute;
  left: 20px;
  bottom: 0;
}
.heji-xgrj dl:last-child:after,
.heji-xgrj dl:nth-of-type(30n):after {
  border-bottom: 0;
}
.heji-xgrj dl {
  display: flex;
  align-items: center;
}
.heji-xgrj dl .index {
  width: 35px;
  height: 23px;
  margin-right: 24px;
  font-size: 30px;
  letter-spacing: 2px;
  color: #c9c9c9;
  font-weight: bold;
  text-align: center;
}

.heji-xgrj dl img {
  width: 91px;
  height: 91px;
  margin-right: 22px;
}
.heji-xgrj dl p {
  width: 210px;
  display: inline-block;
}
.heji-xgrj dl .tit {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #040404;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.heji-xgrj dl .tit:hover {
  color: #0c84ff;
}
.heji-xgrj dl .digest {
  padding-top: 22px;
  font-size: 16px;
  color: #808080;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.heji-xgrj dl p {
  width: 210px;
  font-size: 16px;
  color: #808080;
  text-align: left;
  line-height: 65px;
  display: inline-block;
}
.heji-xgrj dl p.datetime {
  width: 180px;
  margin-left: 85px;
}
.heji-xgrj dl p.size {
  width: 150px;
}
.heji-xgrj dl a.but {
  width: 120px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01b951;
  border-radius: 21px;
  margin-left: auto;
  color: #ffffff;
  font-size: 16px;
}
.heji-xgrj dl a.but .btn-icon {
  width: 16px;
  height: 14px;
  margin-right: 6px;
  background: url("../images/heji-icons.png") no-repeat 0 -13px;
}
.heji-xgrj dl a.but:hover {
  background: #40d872;
}
.heji-introduce {
  	width: 1200px;
	height: 248px;
  margin-top: 26px;
  padding: 20px 40px 36px;
	background-color: #ffffff;
	border: solid 1px #eeeeee
}
.introduce-title {
  width: 171px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  background: url("../images/heji-title-bg.png") no-repeat;
  background-size: 100% 100%;
  font-size: 24px;
	color: #040404;
  font-weight: 600;
}
.heji-introduce p {
  font-size: 16px;
	line-height: 36px;
	letter-spacing: 0px;
	color: #161616;
  text-indent: 2em;
}