

/* ===== 布局 ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
	flex-wrap: wrap;
    gap: 20px 32px;
    align-items: flex-start;
}
.main-left {
	width: 808px;
    display: flex;
    flex-direction: column;
	background-color: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
	border-radius: 8px;
}
.main-right {
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.dev-wrapper {
  width: 1200px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
}

/* 左侧 */
.dev-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.dev-logo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.06), 0 0 2px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

.dev-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dev-title {
  font-size: 26px;
  font-weight: 600;
  color: #222;
}

.dev-claim {
  color: #888;
  font-size: 15px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s;
}

.dev-claim i {
  color: #aaa;
  font-size: 18px;
}

.dev-claim:hover {
  color: #00a0e9;
}

.dev-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

/* 右侧 */
.dev-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 260px;
}

/* 粉丝与访问量 */
.dev-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.dev-stat-item {
  text-align: center;
}

.dev-stat-item span {
  display: block;
  font-size: 20px;
  color: #444;
  margin-bottom: 2px;
}

.dev-stat-item p {
  margin: 0;
  font-size: 14px;
  color: #888;
}

.dev-divider {
  width: 1px;
  height: 28px;
  background: #ddd;
}

/* 按钮 */
.dev-follow button {
  background: #00c063;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 10px 46px;
  border-radius: 30px;
  cursor: pointer;
}

.dev-follow button:hover {
  background: #00b15a;
}
/* ===== 左栏内容 ===== */
.dev-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

/* 顶部导航 */
.dev-nav-bar {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 30px;
  padding: 0 28px;
}

.dev-nav-bar span,.dev-nav-bar a {
  display: inline-block;
  padding: 20px 0;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  position: relative;
}

.dev-nav-bar span.dev-active::after,.dev-nav-bar a.dev-active::after {
  content: "";
  position: absolute;
  left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
  background-color: #23c268;
}

.dev-section {
	padding: 0 28px;
}

/* 模块标题 */
.dev-section-title {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.dev-section-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 20px;
  background: #23c268;
  margin-right: 9px;
  border-radius: 2px;
    margin-top: 2px;
}

/* 内容文本 */
.dev-section-content {
  margin-top: 12px;
  margin-bottom: 35px;
}
.dev-section-content p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 10px 0;
}
.dev-section-content p:last-child {
  margin-bottom: 0px;
}
/* 整体卡片容器 */
.app-card {
    padding: 0 28px 10px 28px;
}

/* 内部列表 */
.app-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 一行两端对齐 */
}

/* 每个应用条目 */
.app-card li {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 内部内容两端分布 */
  width: 46%; /* 一行两个 */
  padding: 25px 0;
  box-sizing: border-box;
}

.app-card li:last-child {
    border-bottom: none;
}

/* logo */
.app-logo {
    width: 70px;
    height: 70px;
    border-radius: 18%;
    overflow: hidden;
    margin-right: 16px;
    flex-shrink: 0;
    border: 1px solid #efefef;
}
.app-logo img {
    width: 70px;
    height: 70px;

}

/* 信息区 */
.app-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
}
.app-title a {
    font-size: 17px;
    color: #000;
    text-decoration: none;
}
.app-title a:hover {
    color: #00b26a;
}
.app-desc {
    color: #9d9d9d;
    font-size: 12px;
    line-height: 1;
    margin: 6px 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.app-tags a {
    display: block;
    font-size: 11px;
    color: #8d8d8d;
    border: 1px solid #CFD1D0;
    padding: 3px 6px;
    border-radius: 3px;
}
.app-tags a:hover {
    border-color: #23C268;
    color: #0AAC3C;
}

/* 右侧评分区 */
.app-score {
    position: relative;
    min-width: 90px;
    height: 68px;
}
.app-score .app-score-top {
    position: absolute;
    top: 31%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.app-score .app-score-top i {
    color: #00b26a;
    font-size: 15px;
    margin-right: 6px;
}
.app-score .score {
    color: #00b26a;
    font-weight: bold;
    font-size: 20px;
}
.app-reviews {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    color: #8d8d8d;
    font-size: 12px;
}
.app-reviews i {
    font-size: 12px;
    margin-right: 4px;
}

/* ===== 右侧统计卡片 ===== */
.app-stats {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
}
.stat-card {
    background: #fff;
    padding: 10px 14px 9px 14px;
    min-width: 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all .25s ease;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
}
.stat-card:hover {
    background: #f9fafb;
}
.stat-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
}
.stat-icon {
    font-size: 13px;
    color: #444;
    position: relative;
    padding-left: 16px;
}
.stat-card .stat-icon i {
    position: absolute;
    font-size: 14px;
    left: -3px;
}
.stat-card:nth-child(2) .stat-icon i {
    font-size: 15px;
    top: -2px;
}
.stat-value {
    font-size: 14px;
    color: #999;
}
/* ===== Tabs 导航 ===== */
.app-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 24px 0;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.app-tab {
    position: relative;
    font-size: 16px;
    color: #111;
    cursor: pointer;
    padding-bottom: 16px;
}
.app-tab.active {
    font-weight: 700;
    font-size: 18px;
}
.app-tab.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 18px;
    height: 2px;
    background: #22c55e;
    border-radius: 3px;
    transform: translateX(-50%);
}
.app-tab span {
    color: #A7A8A7;
    font-size: 12px;
}
/* ===== 正文 ===== */
.app-content {
    background: #fff;
    padding: 24px 24px 20px 24px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}
/* ===== 信息 ===== */
.info-section {
    padding: 0 24px 34px 24px;
}
.info-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: 8px;
}
.info-title::before {
    content: "";
    width: 4px;
    height: 16px;
    background: #22c55e;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
    position: relative;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    padding: 20px 20px 30px;
    font-size: 14px;
    background: #fbfafa;
    margin-top: 14px;
}
.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.info-label {
    color: #A7A8A7;
    font-size: 13px;
}
.info-value {
    color: #444;
    font-size: 14px;
}
.info-value a {
    color: #555;
}
.info-value .app-leixing a,.app-kfz a {
    color: #0AAC3C;
}
.info-value a i {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.info-value a.shejiao-youtube i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-twitter i {
    font-size: 14px;
	margin-right: 8px;
}
.info-value a.shejiao-facebook i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-instagram i {
    font-size: 15px;
	margin-right: 8px;
}
.info-value a.shejiao-tiktok i {
    font-size: 14px;
	margin-right: 7px;
}
.info-value a.shejiao-reddit i {
    font-size: 15px;
}
.info-value a i::after {
	content: attr(data-original-title);
	position: absolute;
	transform: translateX(-50%);
	background-color: #444;
	color: white;
	padding: 4px 8px;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
	margin-bottom: 0;
	z-index: 1000;
}
.info-value a.shejiao-youtube i::after {
    bottom: 21px;
    right: -48px;
}
.info-value a.shejiao-twitter i::after {
    bottom: 21px;
    right: -57px;
}
.info-value a.shejiao-facebook i::after {
    bottom: 21px;
    right: -53px;
}
.info-value a.shejiao-instagram i::after {
    bottom: 21px;
    right: -56px;
}
.info-value a.shejiao-tiktok i::after {
    bottom: 21px;
    right: -38px;
}
.info-value a.shejiao-reddit i::after {
    bottom: 21px;
    right: -39px;
}
.info-value a i:hover::after {
	opacity: 0.9;
}


















.highlight {

}
.highlight span {
    color: #555;
}
.highlight span i {
	position: relative;
	display: inline-block;
	cursor: pointer;
}
.highlight span.pingtai-web i {
    font-size: 15px;
	margin-right: 9px;
}
.highlight span.pingtai-windows i {
    font-size: 14px;
	margin-right: 7px;
}
.highlight span.pingtai-android i {
    font-size: 15px;
	margin-right: 7px;
}
.highlight span.pingtai-apple i {
    font-size: 14px;
}
.highlight span i::after {
	content: attr(data-original-title);
	position: absolute;
	transform: translateX(-50%);
	background-color: #444;
	color: white;
	padding: 4px 8px;
	font-size: 10px;
	white-space: nowrap;
	border-radius: 4px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease-in-out;
	margin-bottom: 0;
	z-index: 1000;
}
.highlight span.pingtai-web i::after {
    bottom: 21px;
    right: -29px;
}
.highlight span.pingtai-windows i::after {
    bottom: 21px;
    right: -54px;
}
.highlight span.pingtai-android i::after {
    bottom: 21px;
    right: -45px;
}
.highlight span.pingtai-apple i::after {
    bottom: 21px;
    right: -37px;
}
.highlight span i:hover::after {
	opacity: 0.9;
}
/* ===== 右栏 ===== */
/* === 通用模块容器 === */
.module-tags, .module-block {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 0 1px #f1f1f1;
    padding: 0 20px 25px 20px;
}
/* === 顶部标题栏 === */
.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 18px;
    height: 56px;
    line-height: 56px;
}
.module-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    position: relative;
}
.module-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #22c55e;
    border-radius: 1px;
}
.module-header a {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 3px;
}
.module-header a i {
    color: inherit;
    transition: all .2s;
}
.module-header a:hover {
    color: #22c55e;
}
.module-header a:hover i {
    transform: translateX(2px);
}

/* === 内容模块 === */
.module-block .module-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.module-block .module-content ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    margin: 0;
}
/* 单个内容块 */
.block-entry {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 9px 10px;
    margin: 0 -8px;
}
.block-entry:hover {
    background: #f2fbf6;
    border-radius: 8px;
}
.block-entry:first-child {
	margin-top: -7px;
}
.block-entry:last-child {
	margin-bottom: -9px;
}
.entry-thumb {
    width: 60px;
    height: 60px;
    border-radius: 18%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #efefef;
}
.entry-thumb img {
    width: 100%;
    height: 100%;
}
/* 右侧信息区 */
.entry-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 186px;
}
.entry-info .entry-name {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
}
.entry-info p {
    font-size: 12px;
    color: #9d9d9d;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 95%;
}
/* 评分与热度 */
.entry-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: #7a7d7a;
}
.entry-meta .score {
    color: #23c268;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
}
.entry-meta .score i {
    font-size: 10px;
    padding-right: 2px;
}

/* 响应式 */
@media(max-width:900px) {
.main-container {
    flex-direction: column;
}
.main-right {
    width: 100%;
}
.app-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.info-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
/* 评论块 */
/* === 整个评分+评论白块 === */
.rating-comment-wrap {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    padding: 24px;
}
/* ===== 顶部快爆评分部分 ===== */
.rating-comment-wrap .rating-section {
    display: flex;
    flex-direction: column;
    padding: 20px 32px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 30px;
}
.rating-comment-wrap .rating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.rating-comment-wrap .rating-left {
    flex: 1;
    min-width: 220px;
}
.rating-comment-wrap .rating-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.rating-comment-wrap .rating-title .bi-r-circle::before {
    font-weight: bold!important;
    padding-left: 2px;
    font-size: 13px;
}
.rating-comment-wrap .rating-score {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}
.rating-comment-wrap .rating-stars {
    color: #d0d0d0;
    font-size: 16px;
    margin-bottom: 18px;
}
.rating-comment-wrap .rating-stars i {
    margin-right: 3px;
}
/* 右侧评分条（星星右对齐 + 横条） */
.rating-comment-wrap .rating-right {
    width: 51%;
    min-width: 300px;
    margin-top: 18px;
}
.rating-comment-wrap .rating-bars {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.rating-comment-wrap .rating-line {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-line .stars-text {
    width: 90px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.rating-comment-wrap .rating-line .stars-text i {
    color: #d0d0d0;
    font-size: 12px;
    margin-left: 2px;
}
.rating-comment-wrap .rating-line .bar {
    flex: 1;
    height: 6px;
    background: #f2f2f2;
    border-radius: 3px;
    margin-left: 10px;
}
/* 下方一行：extra + users */
.rating-comment-wrap .rating-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    color: #999;
}
.rating-comment-wrap .rating-footer .rating-extra span {
    color: #666;
}
.rating-comment-wrap .rating-footer .rating-users {
    color: #999;
}
/* ===== 评论区 ===== */
.rating-comment-wrap .comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.rating-comment-wrap .comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f2f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 20px;
    margin-right: 10px;
}
.rating-comment-wrap .comment-label {
    font-size: 16px;
    color: #a7a8a7;
    margin-right: 10px;
}
.rating-comment-wrap .comment-stars {
    font-size: 20px;
    color: #d0d0d0;
}
.rating-comment-wrap .comment-stars i {
    margin-right: 4px;
}
/* 输入框 */
.rating-comment-wrap .comment-box {
    background: #fafbfc;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}
.rating-comment-wrap .comment-text {
    width: 100%;
    height: 100px;
    border: none;
    resize: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    padding: 14px 16px;
}
.rating-comment-wrap .comment-text::placeholder {
color:#999;
}
/* 发表评论按钮（靠右） */
.rating-comment-wrap .comment-submit {
    display: inline-block;
    background: #7be39b;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 36px;
    border: none;
    border-radius: 30px;
    margin-top: 16px;
    cursor: pointer;
    transition: .2s;
    float: right;
}
.rating-comment-wrap .comment-submit:hover {
    background: #6cd28d;
}
/* ===== 底部提示块 ===== */
.comment-bottom {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
    margin-top: 20px;
    padding: 70px 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.comment-bottom span {
    color: #666;
}


/*page*/
.pages {
    display: grid;
    background-color: #fff;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 24px 0;
	border-radius: 0 0 8px 8px;
}
.pages ul {
    margin: 0 auto;
}
.pages li {
	text-decoration:none;
	margin:0 4px;
	float:left;
}
.pages li.liuye,.pages li.active {
	display:inline-block;
}
.pages li a {
	display:inline-block;
	padding:6px 11px;
	background-color:#fff;
	border:1px solid #ddd;
	border-radius:4px;
	color:#121212;
	text-decoration:none;
	font-size:14px;
}
.pages li a:hover {
	color: #fff!important;
}
.pages li.active span,.pages li:hover span,.pages li a:hover,.pages li:hover a {
	display:inline-block;
	padding:6px 11px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#fff;
	background-color:#40e788;
	border:1px solid #40e788;
}
.pages li.shouye span{
	display:inline-block;
	padding:5px 14px;
	border-radius:4px;
	text-decoration:none;
	font-size:14px;
	color:#ccc;
	border:1px solid #ccc;
}
