/* 基础样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Microsoft YaHei", sans-serif;
}
body {
	font-family: 'Microsoft YaHei', sans-serif;
	line-height: 1.6;
	background: #f8f6f6;
}
a {
    color: black; /* 改变文字颜色 */
    text-decoration: none; /* 移除下划线 */
}
ul{list-style:none}
li{list-style:none}
/* 导航容器 */
.nav-container {
	
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	position: relative;
}

/* 导航主内容 */
.nav-wrapper {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 80px;
}

/* LOGO区域 */
.nav-brand {
	width: 180px;
	height: auto;
	margin-right: 40px;
}
.nav-brand img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 导航菜单 */
.main-nav {
	display: flex;
	gap: 35px;
	flex-grow: 1;
	justify-content: space-between;
}
.nav-item {
	position: relative;
	display: flex;
	align-items: center;
	color: #fff;
}
.nav-item > a {
	color: #333;
	text-decoration: none;
	font-size: 16px;
	display: flex;
	align-items: center;
	transition: color 0.3s;
}
.nav-item:hover > a {
	color: #5cc1f8;
}
.nav-item:hover > span {
	color: #5cc1f8;
}
.arrow-down{font-size:10px;}
.nav-container {
	border-bottom: 1px solid #eee;
	border-top: 1px solid #eee;
	position: relative;
	background-color:#000;
}
.nav-item a {
	color: #fff;
	padding: 0.8rem 0.5rem;
	transition: all 0.3s;
}

/* 二级菜单指示器 */
.has-submenu > a::after {
	content: "▾";
	font-size: 12px;
	margin-left: 5px;
	transition: transform 0.3s;
}

/* 二级菜单 */
.submenu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	border-radius: 6px;
	min-width: 200px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 999;
}
.nav-item:hover .submenu {
	opacity: 1;
	visibility: visible;
}
.submenu-item a {
	padding: 10px 20px;
	display: block;
	color: #666;
}
.submenu-item:hover a {
	background: #f8f8f8;
	color: #5a67d8;
}

/* 汉堡菜单 */
.menu-toggle {
	display: none;
	width: 30px;
	height: 20px;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}
.menu-toggle span {
	height: 2px;
	background: #fff;
	transition: all 0.3s;
}
.close-btn{display: none;}


@media (max-width: 992px) {
	.close-btn{display: block;}
	.nav-wrapper {
		height: 60px;
		padding: 0 15px;
	}
	.main-nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		height: calc(100vh - 60px);
		background: #000;
		flex-direction: column;
		gap: 0;
		transition: left 0.3s;
		padding: 20px 0;
		overflow-y: auto;
	}
	.nav-item {
		padding: 0;
	}
	.nav-item > a {
		padding: 15px 20px;
	}
	.has-submenu.active .submenu {
		max-height: 500px;
	}
	.menu-toggle {
		display: flex;
	}
	.nav-brand {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 150px;
	}
	
}

/* 激活状态 */
.nav-item.active > a {
	color: #5cc1f8;
	font-weight: 500;
}
.close-btn {
	position: absolute;
	right: 20px;
	top: 15px;
	font-size: 30px;
	color: #fff;
	cursor: pointer;
}

/* 响应式导航 */
.nav-container {
	position: relative;
}
.main-nav {
	display: flex;
	justify-content: space-around;
	list-style: none;
}
.mobile-menu {
	display: none;
	color: white;
	font-size: 2rem;
}
/* 轮播图模块 */
.carousel {
	width: 100%;
	height: 56.25vw; /* 16:9比例 */
	max-height: 600px;
	background: linear-gradient(45deg, #ff7eb9, #7ec8ff);
}
/* 内容模块通用样式 */
.section {
    margin: 0 auto;
    width: 1250px;
	background: #fff;
}
.section-color{background:#fff;padding-top: 20px;}
.section-title-color {
    margin: 0 20px 20px 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5a67d8;
    
}
.section-banner{background: none;}

/* 容器样式 */
.slider {
	max-width: 820px;
	position: relative;
}

/* 轮播主容器 */
.slideBox {
	border-radius: 12px;  /* 圆角值 */
	overflow: hidden;     /* 确保圆角生效 */
}

/* 图片容器 */
.slideBox .bd {
	width: 100%;
	height: 420px;        /* 固定高度 */
}

/* 单个轮播项 */
.slideBox li {
	width: 100%;
	height: 420px;
	list-style: none;
}

/* 图片样式 */
.slideBox img {
	width: 100%;
	height: 100%;
	object-fit: cover;    /* 保持图片比例 */
	border-radius: 12px;  /* 与容器保持一致 */
}

/* 导航按钮 */
.slideBox .prev,
.slideBox .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0,0,0,0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	z-index: 10;
	cursor: pointer;
	transition: all 0.3s;
}

.slideBox .prev:hover,
.slideBox .next:hover {
	background: rgba(0,0,0,0.7);
}

.slideBox .prev { left: 20px;font-size: 20px;}
.slideBox .next { right: 20px;font-size: 20px;}

/* 按钮图标 */
.slideBox .fa {
	font-size: 24px;
}
.f-main-container {
	width: 1250px;
	margin: 14px auto;
	display: flex;
	gap: 30px;
}
.d-main-container {
	width: 1250px;
	margin: 14px auto;
	display: flex;
	gap: 30px;
}

/* 左侧内容区 */
.f-left-section {
	width: 900px;
	padding: 20px;
	border-right: 1px solid #c1c1c1;
}
.d-left-section {
	width: 900px;
	padding: 20px;
	border-right: 1px solid #c1c1c1;
}
/* 左侧标题 */


/* 卡片容器 */
.f-card-container {
	display: flex;
	flex-wrap: wrap;
}
.d-card-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

/* 单个卡片 */
.f-card {
  flex: 1 1 calc(19% - 19px); 
  opacity: 0;
  animation: cardEntrance 0.6s ease forwards;
  will-change: transform, opacity;
}

/* 延迟设置 */

.d-card {
	width: 200px;
}
/* 图片区域 */
.f-card-image {
	position: relative;
	width: 160px;
	height: 160px;
	background: #f5f5f5;
	border-radius: 4px;
	overflow: hidden;
	transform: scale(1);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}
.d-card-image {
	position: relative;
	width: 200px;
	height: 200px;
	background: #f5f5f5;
	border-radius: 4px;
	overflow: hidden;
	transform: scale(1);
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
}
.f-card-image img{
	width:160px;
	height:160px;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.d-card-image img{
	width:200px;
	height:200px;
	object-fit: cover;
}
/* 标签样式 */
.tag-group {
	position: absolute;
	top: 8px;
	left: 8px;
	display: flex;
	gap: 5px;
}

.tag {
	padding: 3px 6px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 12px;
	border-radius: 2px;
	line-height: 1;
}

/* 文字信息 */

/* 通用卡片文字动画 */
.d-card-title, 
.f-card-title {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block; /* 必须声明 */
  transform-origin: left center; /* 从左侧开始缩放 */
}

/* D卡片悬停效果 */
.d-card:hover .d-card-info a{
  color: #5a67d8; /* 原有效果继承 */
}

.f-card:hover .f-card-info a{
  color: #5a67d8; /* 原有效果继承 */
}
/* 差异化调节（可选） */
.d-card:hover .d-card-title {
  color: #5a67d8; /* 原有效果继承 */
}

.f-card:hover .f-card-title {
  color: #5a67d8; /* 新增蓝色系 */
}


.f-card-content {
	padding: 10px 5px;
	width: 200px;
}
.f-k{width: 170px !important;}
.d-card-content {
	padding: 10px 5px;
	width: 200px;
}
.f-card-title {
	font-size: 14px;
	color: #333;
	line-height: 1.4;
	height: 40px;
	overflow: hidden;
	font-weight: 500;
}
.d-card-title {
	font-size: 14px;
	color: #333;
	line-height: 1.4;
	height: 40px;
	overflow: hidden;
	margin-bottom: 8px;
	font-weight: 500;
}
.f-card-info {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #999;
}
.f-card-info a{
	color: #999;
}
.d-card-info {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #999;
}
.d-card-info a{
	color: #999;
}
/* 右侧边栏 */
.right-sidebar {
	flex: 1;
	padding: 20px 20px 0 0;
	max-width:320px;
}

.article-right-sidebar{
	padding:0;
}
.news-section-list{
	background: #fff;
    padding: 20px
}
.news-section-tag{
	margin-top: 20px;
	height: 520px;
}
.function_c ul {
    margin: 0;
    list-style: none;
	margin-left: 6px;
}
.function_c ul li {
    margin-top: 10px;
	position: unset;
    padding: 0;
}
#divTags a, #side-hot-view-item_tag a {
    color: #333;
    text-align: center;
}
#divTags a, #side-hot-view-item_tag a {
    display: inline-block;
    margin: 0 8px 10px 0;
    padding: 0 6px;
    border: 1px solid #e5e5e5;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    width: 30%;
    float: left;
    height: 30px;
    border-radius: 2px;
    overflow: hidden;
}
#divTags a:hover,#side-hot-view-item_tag a:hover{background-color:#111;color:#fff;border:1px solid #111}
/* 排行榜标题 */
.ranking-title {
	font-size: 20px;
	color: #333;
}

/* 特色文章 */
.featured-article {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.featured-image {
	width: 80px;
	height: 80px;
	border-radius: 3px;
	position: relative;
}

/* 资讯列表 */
.f-news-list {
	list-style: none;
}
.d-news-list {
	list-style: none;
}
.f-news-item {
    position: relative;
    padding-left: 10px;
}

.f-news-item a {
  transition: color 0.2s ease;
  display: block; /* 使整个区域可点击 */
}

/* 悬停文字颜色变化 */
.f-news-item:hover a {
  color: #1890ff; /* 品牌色突出 */
}
.f-news-item a{
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    display: block;
    color: #57606f;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.d-news-item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.4;
}
.f-news-item::before {
    content: attr(data-index);
    left: 0;
    top: 2px;
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background-color: #d4d4d4; /* 默认背景色（原文字颜色） */
    color: #fff; /* 统一文字颜色改为白色 */
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}
.d-news-item::before {
	content: attr(data-index);
	position: absolute;
	left: 0;
	top: 2px;
	font-weight: bold;
	font-size: 16px;
}
/* 不同序号颜色 */
.f-news-item:nth-child(1)::before { 
    background-color: #c00; /* 原第1项文字颜色 */
}
.f-news-item:nth-child(2)::before { 
    background-color: #09c; /* 原第2项文字颜色 */
}
.f-news-item:nth-child(3)::before { 
    background-color: #f90; /* 原第3项文字颜色 */
}
.f-news-item:nth-child(4)::before { 
    background-color: #6c6; /* 原第4项文字颜色 */
}
.recommend-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	width:1250px;
	margin: 0 auto;
	padding-top: 30px;
}
.banner{
	display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    width: 1250px;
	margin: 20px 0;
}
.mod1 {
    display: grid;
    grid-template-columns: repeat(3, 33.33%);
    padding-left: 10px;
    border-radius: 10px;
}
.mod-right{background-color:#fff;}

.card {
	padding-bottom: 10px;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.tagbqs {
	position: absolute;
	top: 5px;
	left: 5px;
	display: flex;
	gap: 3px;
	z-index: 2;
}

.tagbq {
	padding: 2px 5px;
	border-radius: 3px;
	font-size: 12px;
	color: white;
	font-family: Arial;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.tagbq:hover {
	transform: scale(1.1);
}

.tagbq1 { background: #ff4757; }
.tagbq2 { background: #2ed573; }
.tagbq3 { background: #1e90ff; }
.tagbq4 { 
	background: #ff4757;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 2;
 }
.tag-group img{width:80px;height:80px;}
.card-img {
	width: 120px;
	height: 120px;
	border-radius: 5px;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 8px;
    background-position: 50%;
}

.card:hover .card-img {
	transform: scale(1.05);
}
.f-card:hover .f-card-image {
	transform: scale(1.05);
}
.d-card:hover .d-card-image {
	transform: scale(1.05);
}
.title {
	font-size: 15px;
	margin: 5px 0 2px;
	font-family: Arial;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: 500;
}

.subtitle {
	font-size: 11px;
	color: rgb(152, 152, 153);
	font-family: Arial;
	margin: 0;
	height: 18px;
    overflow: hidden;
}

/* 加载动画 */
@keyframes cardEntrance {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.card {
	animation: cardEntrance 0.5s ease forwards;
	opacity: 0;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s; }
.card:nth-child(9) { animation-delay: 0.9s; }
.recommend-card {
	aspect-ratio: 1/1.5;
	background: #f5f5f5;
	border-radius: 8px;
	overflow: hidden;
}
/* 特色模块 */
.feature-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
}
.feature-main {
	height: 500px;
	background: #e8f4ff;
}
.feature-side {
	display: grid;
	gap: 1rem;
}
/* 下载引导 */
.download-cta {
    background: #ff7eb9;
    color: #696767;
    padding: 3rem;
    text-align: center;
    max-width: 1250px;
    background: linear-gradient(145deg, #f8f5ff, #e7efff);
    box-shadow: 0 8px 30px rgba(147, 122, 204, 0.2);
    padding: 20px;
}
.daohang .nav-dh {
    border-radius: 5px;
    transition: all 0.3s;
    color: #666;
}
/* 主导航项悬停效果 */
.nav-dh:hover,
.submenu-item:hover {

	color:#fff;
}
.submenu-item:a hover{
	color:#fff;
}
/*文章列表*/
.post{position:relative;overflow:hidden;margin-bottom:16px;padding:30px;border-radius:2px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);background-color:#fff;-webkit-transition:all .4s ease;transition:all .4s ease}
.post h2 strong{color:#FF3657}
.postimg{border-radius:2px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,1);margin-bottom:16px}
.postimgb{margin-bottom:22px}
.postimg img{width:100%;display:block}
@media screen and (max-width:480px){.postimg{margin-bottom:5px}
}.article_top{color:red;padding-right:5px}
.istop{padding:15px 30px}
.post header{position:relative}
.post header h2{margin-bottom:16px;font-size:16px;line-height:24px;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-weight: 400;}
.istop .post-title{font-size:18px}
.post-img{position:relative;float:left;margin-right:3%;height:150px;width:230px;overflow:hidden;max-width:100%}
.post-img img{width:230px;height:150px;object-fit:cover}
.post-img img,.previous-one-img img,#side-tui-article-item article .image img{-webkit-transition:-webkit-transform .3s linear;-moz-transition:-moz-transform .3s linear;-o-transition:-o-transform .3s linear;transition:transform .3s linear}
.post-img:hover img,.previous-one-img:hover img,#side-tui-article-item article .image:hover img{transition:All .7s ease;-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1)}
.post-img:hover img,.previous-one-img:hover img,#side-tui-article-item article .image:hover img{transition:All .7s ease;-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-o-transform:scale(1.1);-ms-transform:scale(1.1)}
.post-img .mask-tags{position:absolute;top:0;left:0;z-index:50;display:block;padding:5px 10px;background-color:#111;color:#fff;font-size:12px;opacity:.8}
.post-img .mask-tags a{color:#fff}
.post-text{display:block;font-size:14px;line-height:24px;color:#888;overflow:hidden;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;position:relative;height:58px}
.post footer{
	margin: 8px 0 0;
    height: auto;
    color: #999;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;}
.post footer span{display:inline-block;color:#888;font-size:12px;margin:0 4px 4px 0;background:#F3F4F7;padding:3px 11px;border-radius:15px 15px 15px 0}
.post footer span a{color:#888}
.post footer span a:hover{color:#FF3657}
.post footer span .fa{display:inline-block;margin-right:4px;width:13px;font-size:13px}
#content-index-control{position:absolute;top:3px;right:5px;color:red;cursor:pointer}
#content-index-wrap{position:relative;float:right;margin:10px 0 0;max-width:280px;background:#fff;font-size:14px}
#content-index{float:right;margin-left:5px;padding:0 6px 0 10px;min-width:120px;border:1px solid #DEDFE1;background:#F7F7F7;line-height:24px}
#content-index b{display:block;font-weight:700;line-height:30px}
#index-ul{margin:0;padding-bottom:5px;border-top:1px dashed #DDD}
#index-ul li{margin:3px 0 3px 20px;padding:0;background:none repeat scroll 0 0 transparent;list-style-type:decimal}
#index-ul li:before{content:""}
#index-ul a{text-decoration:none}
.pages{clear:both;margin:40px auto 20px auto;overflow:hidden;text-align:center;font-size:14px;border-top:5px solid #f4f5f6}
.pages ul li{display:inline-block;border:1px solid #ccc;padding:6px 15px;margin:0 1px;line-height:24px;background:#fff;color:#999;border-radius:100px}
.pages ul li:hover{background:#FF3657;color:#fff;border:1px solid #FF3657}
.pages ul li:hover a{color:#fff}
.pages ul li.thisclass{display:inline-block;border:1px solid #FF3657;padding:6px 15px;margin:0 1px;background:#FF3657;color:#fff}
.pages ul li.thisclass a{color:#fff}
.pages ul li a{display:block;color:#999}
.pages ul li a:hover{color:#fff}


/* 子菜单定位修正 */
.nav-dh {
    position: relative;
}
.nav-dh:hover .sub-nav {
    display: block;
}

@media (max-width: 768px) {
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #2a2a2a;
		flex-direction: column;
		z-index:999;
	}
	
	.nav-wrapper .active{        display: block !important;}
	.news-section-tag{display:none;}
	.mobile-menu {
		display: block;
	}
	.nav-active {
		display: flex;
	}
	.feature-grid {
		grid-template-columns: 1fr;
	}
}
		/* 新增全局容器 */
.global-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}
/* 头部区域改造 */
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.site-h1 {
	font-size: 14px;
    color: #c1c1c1;
    margin: 0;
}
.header-links {
	display: flex;
	gap: 1.5rem;
}
.header-links a {
	color: #666;
	transition: color 0.3s;
	font-size:14px;
	
}
.header-links a:hover {
	color: #5a67d8;
}
/* 原有导航调整 */
.nav-container {
	
}
/* 新增页脚样式 */
.footer-container {
	width: 100%;
	padding: 2rem 0;
	margin-top: 3rem;
	background-image: url(/static/skin/images/f-bg.jpg);
	background-repeat: repeat-x;
	background-size: cover;
	overflow: hidden;
}

.content {
  position: relative; /* 确保内容在遮罩上方 */
  z-index: 1; /* 必须高于伪元素的层级 */
  color: white;
}


.footer-grid {
	display: grid;
	grid-template-columns: 2fr 3fr 2fr;
	gap: 2rem;
	padding: 2rem 0;
}
.footer-grid ul{
	margin-top:10px;
}
.footer-grid p{
	margin-top:10px;
}
.footer-grid ul li a{
	line-height:1.8;
}
.qrcode-group {
	display: flex;
	gap: 1rem;
}
.qrcode-item img {
	width: 120px;
	height: 120px;
	border: 1px solid #ddd;
}
.footer-bottom {
	text-align: center;
	padding: 1rem 0;
	border-top: 1px solid #eee;
	margin-top: 2rem;
}
.friend-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
	align-items: center;
}
/* 功能模块通用样式 */
.strategy-module {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* 积分兑换 */
.credit-system {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	align-items: center;
}
.time-progress {
	height: 12px;
	background: #f0f0f0;
	border-radius: 6px;
	overflow: hidden;
}
.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #9ec9ff, #5a67d8);
	width: 65%;
	transition: width 0.5s;
}
/* 订阅套餐 */
.subscription-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.subscription-card {
	padding: 1.5rem;
	border: 2px solid #eee;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s;
}
.subscription-card:hover {
	transform: translateY(-5px);
	border-color: #5a67d8;
}
.recommended {
	border-color: #9ec9ff;
	background: #f8fbff;
}
.price {
	font-size: 2rem;
	color: #5a67d8;
	margin: 1rem 0;
}
/* 邀请返利 */
.invite-box {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}
.invite-code {
	flex: 1;
	padding: 1rem;
	border: 2px dashed #9ec9ff;
	border-radius: 8px;
	text-align: center;
	font-family: monospace;
	font-size: 1.2rem;
}
.share-buttons {
	display: flex;
	gap: 0.8rem;
}
.share-button {
	padding: 0.8rem 1.2rem;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
}
.wechat { background: #07c160; color: white; }
.weibo { background: #e6162d; color: white; }
.qq { background: #12b7f5; color: white; }
@media (max-width: 768px) {
	.container { flex-direction: column; }
	.credit-system { grid-template-columns: 1fr; }
	.subscription-grid { grid-template-columns: 1fr; }
	.invite-box { flex-direction: column; }
}
#canvas {
	display: block;
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
}
/* 响应式布局容器 */
.archive-head{position:relative;overflow:hidden;margin-bottom:16px;border-radius:2px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2)}
.headline{position:relative;color:#d986ab;font-size:14px;line-height:28px;display:-ms-flexbox;display:flex}
.headline .text-xl{width: 100%;line-height: 2; background: rgba(165, 180, 252, 0.1) !important;margin: 10px 0;}
i.fa.fa-folder-open{float:left;margin-right:10px;width:28px;height:28px;background-color:#FF3657;color:#FFF;text-align:center;font-size:14px;line-height:28px;margin: 14px;}
i.fa-rss{float:right;margin:6px 0 0 20px;color:#111}
.media{position:relative;display:block;overflow:hidden;padding:0;-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0;border-radius:inherit;color:#fff}
.media-content{background-size:cover;background-repeat:no-repeat;background-position:50% 50%;background-color:rgba(120,120,120,0.1);width: 100%;height: 400px;object-fit: cover;}
.overlay-grad{width:100%;height:100%;position:absolute;opacity:.75;top:0;left:0;-webkit-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;background:#161d27;background:-o-linear-gradient(top,rgba(35,41,50,0.1),rgba(35,41,50,0.8));background:-webkit-gradient(linear,left top,left bottom,from(rgba(35,41,50,0.1)),to(rgba(35,41,50,0.8)));background:linear-gradient(to bottom,rgba(35,41,50,0.1),rgba(35,41,50,0.8))}
.media:after{content:'';display:block;padding-top:42.857143%}
.list-content{position:absolute;z-index:1;left:0;right:0;bottom:0;padding:25px}
.flex-fill{-ms-flex:1 1 auto;flex:1 1 auto}
.border-white{position:relative;border-top:1px solid rgba(255,255,255,0.3);color:#fff;padding-top:15px;margin-top:15px}
.border-white:before{position:absolute;top:-2px;left:0;width:80px;height:3px;background-color:#FF3657;content:""}
.archive-list p{line-height:22px}
.post{position:relative;overflow:hidden;margin-bottom:16px;padding:30px;border-radius:2px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);background-color:#fff;-webkit-transition:all .4s ease;transition:all .4s ease}
.post h2 strong{color:#FF3657}
.postimg{border-radius:2px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,1);margin-bottom:16px}
.postimgb{margin-bottom:22px}
.postimg img{width:100%;display:block}
.media{height:400px;}
.has-submenu{background:#fff;color:red;}
.article-container{margin:0 0 20px;padding:20px;-webkit-box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);box-shadow:0px 0px 10px -2px rgba(158,158,158,0.2);background:#fff;position:relative}
.article-container img{max-width:100%}
.article-header{padding:0 20px 10px;border-bottom:1px solid #e3e3e3}
.article-header h1{font-size:22px;color:#333;overflow:hidden;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;text-align: center;}
.article-padding{padding:20px 0 0}
/*.article-title{margin-top:0;margin-bottom:12px;text-align:center;font-size:26px}*/
.article-meta{text-align:center}
.article-meta span{display:inline-block;margin:0 10px 10px 0;display:inline-block;color:#888;font-size:12px;background:#F3F4F7;padding:3px 11px;border-radius:15px 15px 15px 0}
.article-meta span span{margin: 0 !important;}
.dr_show_hits_53{margin: 0 !important;}
.dr_show_hits_57{margin: 0 !important;}
.post-navigation .page_left{font-size: 16px;width: 100%;color: #000;padding: 10px;border-bottom: 1px dashed #cfcfcf;}
.post-navigation .page_right{font-size: 16px;width: 100%;color: #000;padding: 10px;}
.article-meta span a{display:inline-block;color:#999;font-size:13px}
.articlehead span a{font-size:12px}
.articlehead span a:hover{color:#FF3657}
.article-meta span .fa{display:inline-block;margin-right:4px;width:13px;font-size:13px}
.article-content{overflow:hidden;padding:18px 0 0;word-wrap:break-word;line-height:25px}
.article-content p{color:#444;font-size:16px}
.article-content img{height:auto!important;max-width:100%}
/*.article-content h2,.article-content h3,.article-content h4,.article-content h5{margin:25px 0;color:#444;font-weight:700;padding:10px 0 10px 10px;border-left:5px solid #FF3657;font-size:22px;line-height:20px;background-color:#f6f6f6}*/
.entry .entry-content h2,.entry .entry-content h3{font-weight:bold;background-color:#f6f6f6;margin:20px 0;border-bottom:0px solid #4169E1;padding:5px 12px;border-left:5px solid #4169E1;margin:12px 0px;border-radius:0rem}
.article-content h3{font-size:18px;font-weight: 400;}
.article-content{list-style-type:inherit}
.dr_conpic_wrap{text-align:center;}
.article-content h4{font-size:15px}
.article-content h5{font-size:14px}
.article-content ol,.article-content ul{margin:0 0 18px 15px}
.article-content ul{}
.article-content ol{}
.article-content li{margin-bottom:6px}
.article-content p{padding:0 0 8px 0;word-wrap:break-word;line-height:190%}
.article-content pre{word-wrap:break-word}
.article-content table{margin-bottom:18px;width:100%;border-top:solid 1px #ddd;border-left:solid 1px #ddd}
.article-content table th{background-color:#f9f9f9;text-align:center}
.article-content table td,.article-content table th{padding:5px 10px;border-right:solid 1px #ddd;border-bottom:solid 1px #ddd}
.article-content a{color:#FF3657}
.article-content a:hover{color:#111}
.article-content pre,.comment pre{margin:20px 0;padding:10px 15px;border:none;background:#272822;color:#F8F8D4;font:13px/20px 'courier new'}
.article-content blockquote{margin:30px 30px;padding:15px 20px 1px;border-left:5px solid #EEE;color:#999;font-size:16px}
.article-content blockquote p{margin:0;margin-bottom:10px;padding:0}
.post-copyright{margin-top:40px;padding:5px 0;padding-right:30px;background-color:#eee;color:#aaa;text-align:center;font-size:12px}
.article-content embed{display:block;margin-right:auto;margin-left:auto;max-width:100%}
/* 左侧导航 */
.nav-title, .ranking-title {
    font-size: 22px;
    background: #5a67d8;
    margin-bottom: 15px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 3;
}

/* 主导航菜单 - 提高字体清晰度 */
.nav-dh > a {
    display: block;
    padding: 12px 20px;
    color: #5a3a5e; /* 加深文字颜色 */
    font-size: 16px; /* 增大字号 */
    font-weight: 500;
    letter-spacing: 0.5px; /* 增加字间距 */
    transition: all 0.2s ease;
    -webkit-font-smoothing: antialiased; /* 字体抗锯齿 */
}

/* 悬停状态保持清晰 */
.nav-dh > a:hover {
    background: rgba(165, 180, 252, 0.1);
    color: #5a67d8 !important;
    transform: translateX(5px);
    text-shadow: 0 2px 3px rgba(255,45,125,0.1);
}

/* 子菜单优化 */
.sub-nav {
    margin-left: 10px;
}

.submenu-item a {
    color: #66738a !important; /* 增强对比度 */
    font-size: 14px !important;
    padding: 10px 20px !important;
}

/* 标签云清晰化 */
.function_c li a {
    background: rgba(165, 180, 252, 0.1);
    color: #4c4c4c !important;
    border: 1px solid #5cc1f8;
    font-weight: 500;
    font-size: 13px;
}

.function_c li a:hover {

    color: #fff !important; /* 提高标签颜色对比度 */

}
/* 当前选中状态强化 */
.nav-dh > a[style*="color:#5a67d8"],
.submenu-item a[style*="color:red"] {
    background: rgba(165, 180, 252, 0.1) !important;
    color: #5a67d8 !important;
    border-radius: 8px;
}

/* 移除模糊效果 */
.daohang, .news-section-tag {
    background: #fff;
    backdrop-filter: none !important;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .side-nav {
        width: 200px;
        padding: 15px;
        font-size: 14px;
    }
    .nav-dh > a {
        font-size: 14px;
        padding: 10px 15px;
    }
}

/* 面包屑导航 */
.breadcrumb {
	color: #999;
	margin-bottom: 2rem;
}
.breadcrumb a {
	color: #666;
}
/* 文章列表 */
/*
.article-list {
	margin-top: 2rem;
}
.article-item {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #eee;
}*/
.article-title {
	font-size: 1.3rem;
	color: #333;
	margin-bottom: 0.8rem;
}
.article-desc {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1rem;
}
.article-meta {
	font-size: 0.9rem;
	color: #999;
}
.article-tag {
	display: inline-block;
	padding: 0.2rem 0.8rem;
	background: #f0f0f0;
	border-radius: 15px;
	margin-right: 0.5rem;
}
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}
	.side-nav {
		width: 100%;
		padding: 1rem;
		display: none;
	}
	.mobile-menu {
		display: block;
	}
	.main-content {
		padding: 1.5rem;
	}
	.nav-active {
		display: block;
	}
}
.global-wrapper { max-width: 1250px; margin: 0 auto; }
.header-container, .nav-container { /* 保持原有头部样式 */ }
/* 内容区域重构 */
.main-container {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 2rem;
	padding: 2rem 0;
}
.content-area {
	display: grid;
	gap: 2rem;
}
.article-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	overflow: hidden;
	transition: transform 0.3s;
}
.article-card:hover {
	transform: translateY(-5px);
}
.article-header {
	position: relative;
	padding: 1.5rem;
}
.article-type {
	position: absolute;
	top: -15px;
	right: 20px;
	background: #5a67d8;
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 20px;
	font-size: 0.9rem;
}
.article-meta {
	color: #666;
	font-size: 0.9rem;
	margin: 0.5rem 0;
}
.article-body {
	padding: 1.5rem;
}
.article-tags {
	display: flex;
	gap: 0.8rem;
	margin-top: 1rem;
}
.tag {
	padding: 0.4rem 1rem;
	border-radius: 15px;
	background: #f5f5f5;
	font-size: 0.85rem;
}
.pagination {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding: 2rem 0;
}
.page-item {
	padding: 0.8rem 1.2rem;
	border-radius: 8px;
	background: #f8f8f8;
	cursor: pointer;
}
.page-item.active {
	background: linear-gradient(45deg, #5a67d8, #9ec9ff);
	color: white;
}
@media (max-width: 1200px) {
	.main-container {
		grid-template-columns: 1fr;
	}
	.side-nav {
		display: none; /* 移动端隐藏侧边栏 */
	}
	.article-card {
		margin: 0 1rem;
	}
}
@media (max-width: 768px) {
	.article-header {
		padding: 1rem;
	}
	.article-type {
		font-size: 0.8rem;
		padding: 0.3rem 1rem;
	}
}

.side-nav {
    width: 280px;
    background: #fff;
    padding: 2rem 1rem;
    float: left;
	top: 0px;
	position: sticky;
    border-right: 1px solid #d7d7d7;
}

.right-show{
	width: 330px !important;
	border-right: unset !important;
}
.right-show ul li{
	font-size:14px;
}
.right-show li {
    position: relative;
    padding: 10px 0 10px 30px;
    margin: 4px 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* 序号样式 */
.right-show li em {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    text-align: center;
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
	color:#fff;
}

/* 前3名特殊颜色 */
.right-show li:nth-child(1) em { background-color: #ff4757; }
.right-show li:nth-child(2) em { background-color: #ffa502; }
.right-show li:nth-child(3) em { background-color: #2ed573; }

/* 4-10名统一颜色 */
.right-show li:nth-child(n+4) em { background-color: #a4b0be; }

/* 链接样式 */
.right-show li a {
    display: block;
    color: #57606f;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    padding-left: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 悬停效果 */
.right-show li:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}
.right-show li:hover a {
    color: #2d3436;
    text-decoration: underline;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .right-show li {
        padding-left: 28px;
    }
    .right-show li em {
        font-size: 13px;
    }
    .right-show li a {
        font-size: 13px;
    }
}

/* 短漫专题样式 */
.comic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.comic-card {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}
.comic-card:hover {
	transform: translateY(-5px);
}
.comic-cover {
	height: 200px;
	background: #ddd;
	position: relative;
}
.vip-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(45deg, #5a67d8, #9ec9ff);
	color: white;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
}
.comic-info {
	padding: 1.5rem;
	background: #fff;
}
.comic-title {
	font-size: 1.2rem;
	margin-bottom: 0.8rem;
	color: #333;
}
.comic-desc {
	color: #666;
	line-height: 1.6;
	height: 4.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
/* 解锁任务模块 */
.unlock-section {
	background: #f8f8f8;
	border-radius: 12px;
	padding: 2rem;
	margin: 3rem 0;
	text-align: center;
}
.progress-bar {
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	margin: 1.5rem auto;
	width: 60%;
}
.progress-fill {
	width: 33%;
	height: 100%;
	background: linear-gradient(90deg, #5a67d8, #9ec9ff);
	border-radius: 4px;
	transition: width 0.5s;
}
.task-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}
.task-button {
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s;
}
.share-button {
	background: linear-gradient(45deg, #6c5ce7, #a363d9);
	color: white;
}
.recharge-button {
	background: linear-gradient(45deg, #5a67d8, #5a67d8);
	color: white;
}
@media (max-width: 768px) {
	.container { flex-direction: column; }
	.side-nav { width: 100%; padding: 1rem; }
	.progress-bar { width: 80%; }
	.task-buttons { flex-direction: column; }
}

/* 文章页定制样式 */
.breadcrumb {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 1rem;
}
.article-header {
	border-bottom: 2px solid #eee;
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
}
.article-title {
	font-size: 2.2rem;
	color: #333;
	margin-bottom: 1rem;
}
.meta-info {
	display: flex;
	gap: 2rem;
	color: #666;
}
.read-count::before {
	content: "👀 ";
}
.fa-book{
    font-size: 14px;
    font-weight: 600;
    color: #8d8e8e;
	font-family: 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}
/*.article-content {
	line-height: 1.8;
	font-size: 1.1rem;
	margin-bottom: 3rem;
}*/
.article-content img {
	max-width: 100%;
	border-radius: 8px;
	margin: 2rem 0;
}
/* 相关推荐 */
.related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}
.related-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}
.related-card:hover {
	transform: translateY(-5px);
}
.related-image {
	height: 180px;
	background: #ddd;
}
.related-info {
	padding: 1.2rem;
}
.related-title {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}
/* 随机推荐 */
.random-list {
	background: white;
	border-radius: 8px;
	margin-top: 2rem;
}
.list-item {
	display: flex;
	justify-content: space-between;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
	transition: background 0.3s;
}
.list-item:hover {
	background: #f8fbff;
}
.category-tag {
	color: #9ec9ff;
	font-size: 0.9rem;
}
.article-date {
	color: #666;
}
@media (max-width: 768px) {
	.container { flex-direction: column; }
	.side-nav { width: 100%; padding: 1rem; }
	.article-title { font-size: 1.8rem; }
	.meta-info { flex-direction: column; gap: 0.5rem; }
	.related-grid { grid-template-columns: 1fr; }
	.list-item { flex-wrap: wrap; }
	.article-date { width: 100%; }
}
/* 新增优化样式 */
.theater-container {
	max-width: 950px;
	float: right;
}
/* 上部双模块布局 */
.top-modules {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	margin-bottom: 1.6rem;
}
.ranking-list {
	counter-reset: ranking;
}
.ranking-item {
	display: flex;
	align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid #eee;
}
.ranking-item::before {
	counter-increment: ranking;
	content: counter(ranking);
	width: 28px;
	height: 28px;
	background: #f0f0f0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
}
.ranking-item:nth-child(1)::before {
	background: #ffd700;
	color: white;
}
.ranking-item:nth-child(2)::before {
	background: #c0c0c0;
	color: white;
}
.ranking-item:nth-child(3)::before {
	background: #cd7f32;
	color: white;
}
/* 限时独享模块 */
.vip-module {
	background: linear-gradient(135deg, #5a67d8 0%, #9ec9ff 100%);
	color: white;
}
.unlock-progress {
	height: 8px;
	background: rgba(255,255,255,0.2);
	border-radius: 4px;
	margin: 1rem 0;
}
.unlock-bar {
	width: 70%;
	height: 100%;
	background: white;
	border-radius: 4px;
	transition: width 0.3s;
}
.theater-module {
	background: white;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.vip-module {
	background: linear-gradient(135deg, #5a67d8 0%, #9ec9ff 100%);
	color: white;
}
/* 声优专属模块 */
.actors-module {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.actor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 1.5rem;
}
/* 声优卡片优化 */
.actor-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem;
	border-radius: 12px;
	transition: all 0.3s;
	cursor: pointer;
	background: #fafafa;
}
.actor-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.actor-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 1rem;
	background: #ddd;
	object-fit: cover;
}
@media (max-width: 1024px) {
	.actor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.top-modules {
		grid-template-columns: 1fr;
	}
	.actor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.actor-grid {
		grid-template-columns: 1fr;
	}
}

/* 标签详情页定制 */
.tag-banner {
	background: linear-gradient(135deg, #5a67d8, #9ec9ff);
	padding: 3rem;
	border-radius: 16px;
	color: white;
	margin-bottom: 2rem;
}
.tag-title {
	font-size: 2.8rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.tag-stats {
	display: flex;
	gap: 2rem;
	margin: 1.5rem 0;
}
.stat-item {
	background: rgba(255,255,255,0.2);
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
}
/* 内容展示 */
.content-tabs {
	margin: 2rem 0;
}
.tab-nav {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
}
.tab-button {
	padding: 0.8rem 1.5rem;
	border-radius: 30px;
	background: #eee;
	cursor: pointer;
	transition: all 0.3s;
}
.tab-button.active {
	background: linear-gradient(45deg, #5a67d8, #9ec9ff);
	color: white;
}
.article-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.article-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
}
.article-card:hover {
	transform: translateY(-5px);
}
.article-cover {
	height: 200px;
	background: #ddd;
}
.article-info {
	padding: 1.5rem;
}
.article-meta {
	color: #666;
	font-size: 0.9rem;
}
/* 相关标签 */
.related-tags {
	margin: 3rem 0;
	padding: 2rem;
	background: white;
	border-radius: 12px;
}
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}
.tag-item {
	padding: 0.6rem 1.2rem;
	border-radius: 30px;
	background: #f5f5f5;
	cursor: pointer;
	transition: all 0.3s;
}
.tag-item:hover {
	background: linear-gradient(45deg, #5a67d8, #9ec9ff);
	color: white;
}
@media (max-width: 768px) {
	.tag-title { font-size: 2rem; }
	.tag-stats { flex-wrap: wrap; }
	.article-grid { grid-template-columns: 1fr; }
}

.tag-header {
	background: linear-gradient(135deg, #9ec9ff, #5a67d8);
	padding: 3rem;
	border-radius: 16px;
	color: white;
	margin-bottom: 3rem;
}
.tag-search {
	width: 100%;
	padding: 1rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
}
.tag-cloud {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}/*
.tag-group {
	background: white;
	padding: 1.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}*/
.tag-group h3 {
	color: #5a67d8;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.tag-item {
	display: inline-block;
	padding: 0.6rem 1.2rem;
	border-radius: 20px;
	background: #f5f5f5;
	transition: all 0.3s;
	cursor: pointer;
}
.tag-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.heat-1 { background: #e8f4ff; color: #3d8bfd; }
.heat-2 { background: #ffe8f1; color: #ff4d94; }
.heat-3 { background: #fff3e8; color: #ff9f43; }
.heat-4 { background: #e8fff4; color: #42ba96; }
@media (max-width: 768px) {
	.container { flex-direction: column; }
	.tag-header { padding: 2rem; }
	.tag-cloud { grid-template-columns: 1fr; }
	.tag-item { padding: 0.5rem 1rem; }
}
/*.container-body { display: flex; min-height: 100vh;justify-content: center; }*/
.container { width:1250px;margin:0 auto; margin-top: 20px;}

.main-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 950px;
    float: right;
    width: 950px;
    float: right;
}
/* 声优详情页定制样式 */
.voice-actor-header {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 2rem;
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.profile-avatar {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.basic-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.stage-name {
	font-size: 2.4rem;
	margin-bottom: 0.5rem;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin: 2rem 0;
}
.stat-item {
	text-align: center;
	padding: 1rem;
	background: white;
	border-radius: 8px;
}
.stat-number {
	font-size: 1.8rem;
	color: #5a67d8;
}
/*滑动e*/
.section-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
	margin-bottom: 20px;
	border-bottom: 2px solid #5a67d8;
    padding-bottom: 10px;
}
.section-title-top {
    margin: 10px 10px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    border-bottom: unset;
}
.section-title-top h2 {
    font-size: 16px !important;
}
.section-title-top h2::before {
    
}
.section-title span{
	border: 1px solid #d1d1d1;
    color: #000;
    font-size: 14px;
    line-height: 26px;
    cursor: pointer;
    padding: 0 10px;
}
.section-title h2{
	font-size: 26px;
	color: #5a4a79;
	position: relative;
	padding-left: 20px;
}

.section-title h2::before {
	content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-40%);
    width: 4px;
    height: 60%;
    background: #a98fff;
    border-radius: 4px;
}

.article-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.article-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
}

.article-card:hover {
	transform: translateY(-5px);
}

.article-image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-bottom: 3px solid #f0ebff;
}

.article-content {
	padding: 15px;
}

.article-title {
	font-size: 18px;
	color: #5a4a79;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15px;
}

.article-tag {
	background: #f0ebff;
	color: #7e5fff;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
}

.article-actions {
	display: flex;
	gap: 10px;
}

.article-action {
	color: #c2b2ff;
	transition: color 0.3s ease;
	cursor: pointer;
}

.article-action:hover {
	color: #a98fff;
}

/* 修复原有响应式问题 */
@media (max-width: 768px) {
	.article-grid {
		grid-template-columns: 1fr;
	}
}
.article-section {
	max-width: 1250px;
	margin: 0px auto;
}
.article-section-img {
    max-width: 1250px;
    margin: 0px auto;
    background: #fff;
    padding: 20px;
}
/*
.article-list {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(147, 122, 204, 0.1);
	padding: 25px;
}

.article-item {
	display: flex;
	align-items: center;
	padding: 18px 25px;
	margin: 12px 0;
	background: rgba(240, 235, 255, 0.3);
	border-radius: 12px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid transparent;
}
*/
.article-item:hover {
	transform: translateX(10px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 15px rgba(169, 143, 255, 0.15);
	border-left-color: #a98fff;
}

.article-info {
	flex: 1;
	margin-right: 20px;
}

.article-title {
	color: #5a4a79;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 6px;
	position: relative;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
}

.article-category {
	background: rgba(169, 143, 255, 0.1);
	color: #7e5fff;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 13px;
	display: flex;
	align-items: center;
}

.article-category::before {
	content: "🏷️";
	margin-right: 6px;
}

.article-date {
	color: #9e8fbc;
	font-size: 13px;
	display: flex;
	align-items: center;
}

.article-date1::before {
	content: "🕒";
	margin-right: 6px;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.article-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px;
	}
	
	.article-info {
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.article-meta {
		flex-wrap: wrap;
		gap: 8px;
	}
}
.article-info {
    position: relative;
    max-width: 800px;
    margin: 14px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 新增缩略图样式 */
.article-thumbnail {
    position: relative;
    float: left;
    margin-right: 3%;
    height: 150px;
    width: 230px;
    overflow: hidden;
    max-width: 100%;
}

/* 新增描述样式 */
.article-desc {
    font-size: 14px;
    color: #666;
    margin: 8px 0 12px;
    line-height: 1.6;
}

/* 您原有的样式保留 */
.article-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.article-meta {
    font-size: 12px;
    color: #999;
    clear: both; /* 新增清除浮动 */
}

.article-category {
    padding: 2px 6px;
    background: #f0f0f0;
    border-radius: 4px;
}

/* 响应式适配 */
@media (max-width: 480px) {
    .article-thumbnail {
        width: 100%;
        height: auto;
        margin: 0 0 10px 0;
        float: none;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    .article-desc {
        font-size: 13px;
    }
}
.index-news-list{
	width: 1250px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
	margin-top: 20px;
}
/*滑块*/
.anime-module {
	width: 1250px;
	margin: 14px auto;
	padding: 25px;
	display: flex;
	gap: 25px;
}

/* 导航栏样式保持不变 */
.nav1-container { width: 220px; display: flex; flex-direction: column; gap: 15px; }

.lnav-item {
	padding: 18px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

/* 图标样式 */
.lnav-item::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 12px;
	vertical-align: middle;
	background-size: contain;
}

.lnav-item[data-icon="new"]::before { /* 图标内容保持 */ }


/* 主图区 */
.main-illust {
	flex: 1;
	overflow: hidden;
	position: relative;
    height: 390px;
    border-right: 1px solid #c1c1c1;
    padding-right: 24px;
}

.anime-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.5s ease;
}

/* 右侧内容区 */
.content-panel {
	width: 300px;
	background: rgba(255,255,255,0.98);
}

.view-button {
	display: block;
	padding: 12px;
	background: #5a67d8;
	color: white;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s;
    margin-top: 20px;	
}
.content-panel {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}

.tag-container {
	order: 4;
	width: 260px;
	height: 30px;
	overflow: hidden;
}

.anime-desc {
  order: 3;
  height: 160px;
}

.view-button {
  order: 4;
  position: absolute;
  bottom: 8px;
}

.anime-module {
	width: 1250px;
	margin: 14px auto;
	padding: 0 25px 25px 25px;
	display: flex;
	gap: 25px;
}

/* 导航栏交互特效 */
.lnav-item {
	position: relative;
	padding: 18px;
	box-shadow: 0 4px 15px rgb(0 0 0 / 10%);
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid transparent;
}

/* 鼠标悬停特效 */
.lnav-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(142, 118, 199, 0.2);
	background: linear-gradient(145deg, #ffffff, #f8f4ff);
}

.lnav-item:hover::before {
	animation: iconFloat 1s ease infinite;
}

/* 当前导航特效 */
.lnav-item.active {
	background: #f8f4ff;
	border-color: #5a67d8;
	transform: translateX(8px) scale(1.02);
}

/* 图标动画 */
@keyframes iconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

@keyframes activePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}

/* 响应式布局 */
@media (max-width: 1280px) {
	.anime-module {
		width: 95%;
		padding: 20px;
		flex-wrap: wrap;
	}

	.nav1-container {
		width: 100%;
		flex-direction: row;
		order: 2;
		margin-top: 20px;
	}

	.main-illust {
		width: 60%;
		order: 1;
	}

	.content-panel {
		width: 35%;
		order: 3;
	}
}

@media (max-width: 768px) {
	.anime-module {
		flex-direction: column;
		gap: 15px;
		padding: 0 0 20px 0 !important;
	}

	.lnav-item.active{transform:unset;}
	.nav1-container {
		flex-direction: column;
	}

	.main-illust,
	.content-panel {
		width: 100%;
	}

	.lnav-item.active::after {
		right: -10px;
		width: 5px;
	}

	.lnav-item:hover {
		transform: none;
		box-shadow: 0 3px 10px rgba(142, 118, 199, 0.2);
	}
}

@media (max-width: 480px) {
	.anime-module {
		border-radius: 8px;
		padding: 15px;
	}

	.lnav-item {
		padding: 12px;
		font-size: 14px;
	}

	.lnav-item::before {
		width: 20px;
		height: 20px;
	}

	.view-button {
		padding: 10px;
		font-size: 14px;
	}
}		
/*咨询顶部*/
:root {
	--main-color: #ff7a90; /* 樱花粉主色 */
	--accent-color: #6bd9ff; /* 二次元青 */
	--bg-gradient: linear-gradient(145deg, #fff5f8 0%, #f0fcff 100%);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
}

/* 主容器 */
.anime-container {
    padding: 30px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f5ff, #e7efff);
}

/* 顶部装饰效果 */
.anime-container::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -30px;
	width: 120px;
	height: 120px;
	background: var(--main-color);
	opacity: 0.1;
	border-radius: 30% 70% 70% 30%;
	filter: blur(20px);
}

/* 上部布局 */
.top-section {
	display: flex;
	gap: 25px;
	margin-bottom: 35px;
}

.cover-image {
	flex: 0 0 280px;
	position: relative;
}

.cover-image::after {
	content: 'FM广播剧';
	position: absolute;
	top: 10px;
	left: -15px;
	background: var(--main-color);
	color: white;
	padding: 5px 20px;
	font-size: 14px;
	transform: rotate(-15deg);
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.cover-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cover-image:hover img {
	transform: scale(1.05);
}

.top-content {
	flex: 1;
	padding-top: 10px;
}

.anime-title {
    color: #2b2b52;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    min-height: 46px;
    max-height: 88px;
    font-weight: 500;
}

.anime-desc {
    height: 160px;
    font-size: 15px;
    color: #57606f;
    line-height: 1.8;
}

.anime-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 60%;
	height: 3px;
	background: #8fa2f1;
}

.description {
	color: #666;
	line-height: 1.8;
	font-size: 15px;
	text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

/* 标签部分 */
.tag-section {
	border-bottom: 3px solid rgba(107,217,255,0.2);
}

.section-header {
	color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--main-color);
    background: #5a67d8;
    width: 170px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.anime-tag {

}
.anime-tag span{
    padding: 8px;
    margin-right: 5px;
    border-radius: 0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #e7eafd;
    color: #2f3542;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.anime-tag a{
	border-radius: 0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2e2d2d;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #66738a;
}


.anime-tag::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent,
		rgba(255,255,255,0.3),
		transparent
	);
	transition: 0.5s;
}

.anime-tag:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255,122,144,0.3);
}

.anime-tag:hover::before {
	left: 100%;
}

/* 轮播部分 */
.carousel-section {
	margin-top: 35px;
	position: relative;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	animation: scroll 40s linear infinite;
	width: max-content;
}

.carousel-item {
	flex: 0 0 240px;
	margin-right: 25px;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease;
}

.carousel-item:hover {
	transform: perspective(1000px) rotateY(10deg) translateZ(20px);
}

.carousel-image {
	width: 100%;
	height: 160px;
	object-fit: cover;
	border-bottom: 3px solid var(--main-color);
}

.carousel-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 12px;
	background: linear-gradient(#00000057, rgba(0, 0, 0, 0.7));
	color: white;
	text-align: center;
	font-size: 15px;
	max-height: 64px;
    overflow: hidden;
}

.carousel-title a{
	color: white;
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}


@media (max-width: 768px) {
	.top-section {
		flex-direction: column;
	}

	.cover-image {
		flex: none;
		width: 100%;
		transform: none;
	}

	.tags-container {
		justify-content: center;
	}

	.carousel-item {
		flex: 0 0 200px;
	}

	.anime-title {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.anime-container {
		padding: 20px;
	}

	.cover-image::after {
		left: -25px;
		transform: rotate(-25deg);
	}

	.tags-container {
		gap: 8px;
	}

	.anime-tag {
		padding: 6px 15px;
		font-size: 13px;
	}
}
/*top*/
.welcome-bar {
    width: 100%;
    height: 22px;
    background-color: #333; 
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px; 
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	margin: 30px auto;
}
.container-top {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container-body{
    background: #fff;
}
.welcome-bar h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.welcome-bar span {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.actions {
    display: flex;
    gap: 10px;
}

.action-item {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.qrcode-popup {
    display: none; 
    position: absolute;
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}

.popup-content img {
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .welcome-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .actions {
        gap: 5px;
        margin-top: 5px;
    }
}
/* 二维码弹出框样式 */
.qrcode-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 400px;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    z-index: 1000;
    padding: 15px;   /* 适当内边距 */
    text-align: center; /* 内容居中 */
}

/* 二维码图片尺寸 */
.popup-content img {
    width: 160px;    /* 固定图片尺寸，避免拉伸 */
    height: 160px;
    margin: 8px auto; /* 上下留白，居中 */
}

/* 文字样式 */
.popup-content p {
    margin: 0;
    font-size: 14px;  /* 小字号适应空间 */
    color: #666;
    line-height: 1.4;
}
/* 动作项基础样式 */
.action-item {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 4px 8px;          /* 增加内边距，让背景色更明显 */
    border-radius: 4px;        /* 圆角效果 */
    transition: all 0.3s ease; /* 平滑过渡动画 */
}

/* 鼠标悬停时的效果 */
.action-item:hover {
    background-color: #444;    /* 背景色变化 */
    color: #fff;               /* 文字颜色保持白色（可调整） */
    cursor: pointer;           /* 鼠标指针变为手形 */
}

/* 下载APP的弹出框悬停逻辑（避免干扰） */
.download-app:hover .qrcode-popup {
    display: block;            /* 保持二维码弹出 */
}
/* 荷叶容器 */
.pond-container {
	position: fixed;
	bottom: -200px; /* 初始隐藏位置 */
	right: 20px;
	width: 160px;
	height: 160px;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 1000;
	opacity: 0;
}

/* 显示时的状态 */
.show-pond {
	bottom: 20px;
	opacity: 1;
}

.water-lily {
	width: 100%;
	height: 100%;
	background: url('/skin/images/bg-top1.png') no-repeat center;
	background-size: contain;
	filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* 青蛙元素 */
.frog {
	position: fixed;
    width: 140px;
    height: 80px;
	bottom: 70px;
	right: -130px; /* 初始隐藏位置 */
	background: url('/skin/images/bg-top2.png') no-repeat center;
	background-size: contain;
	cursor: pointer;
	z-index: 1001;
	transition: 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* 置顶箭头 */
.top-arrow {
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	animation: float 1.5s ease-in-out infinite;
	font-size: 10px;
	color: #666;
	width: 29%;
    text-align: center;
}

.top-arrow::before {
	content: "▲";
	font-size: 32px;
	color: #8d9d57;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(46, 204, 113, 0.4);
}

/* 动画定义 */
@keyframes frogJump {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

@keyframes float {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, -8px); }
}

/* 测试用滚动区域 */
.content {
	height: 200vh;
	padding: 50px;
	background: #fff;
}
/*2025年4月12日*/
/* 标题样式 */
.random-tuijian h3 {
    color: #4a4a4a;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff7f9f;
    font-family: 'M PLUS Rounded 1c', 'Segoe UI', sans-serif;
}

.random-list h3 {
    color: #4a4a4a;
    font-size: 1rem;
    margin: 0;
    padding: 0.5rem;
    border-bottom: 0;
    font-family: 'M PLUS Rounded 1c', 'Segoe UI', sans-serif;
}
.related-image img{
    width: 100%;
    height: 178px;
    object-fit: cover;
}
/* 相关推荐区块 */
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.related-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.related-card:hover {
    box-shadow: 0 4px 12px rgba(255,127,159,0.15);
}

.related-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #ff7f9f;
}

.related-info {
    padding: 1rem;
}

.category-tag {
    margin-bottom: 0.8rem;
}

.category-tag a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #ffebf0;
    border-radius: 15px;
    color: #ff5c8d !important;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    text-decoration: none;
}

.related-title {
    color: #333;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
}

.related-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 随机推荐区块 */
.random-list {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 6px;
    transition: background 0.2s;
}

.list-item:hover {
    background: rgba(165, 180, 252, 0.1);
}

.list-item h3 a {
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    font-weight: 500;
}

.list-item h3 a:hover {
    color: #5a67d8;
}

.article-date1 {
    color: #999;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }

    h3 {
        font-size: 1.5rem;
    }

    .related-image {
        height: 160px;
    }

    .list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-date {
        margin-top: 0.3rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 0 0.8rem;
		width:100%;
    }
	.banner{width:100%;grid-template-columns: unset;overflow: hidden;margin:0;}
	.section{width:100%;background-color:#fff;}
	.card-img{height:110px;width:110px;}
	.slider{width:100%;display:none;}
	.f-left-section{width:100%;padding:10px;border-right: none;}
	.f-main-container{width:100%;display:unset;padding:10px;}
	.f-card{flex: 1 1 calc(50% - 10px);box-sizing: border-box;overflow: hidden;}
	.right-sidebar{max-width:100%;padding:0;}
	.f-card-content{width:100% !important;gap:10px;}
	.f-card-container{gap:14px;}
	.f-card-content h3{font-size:12px;line-height: 1.8;}
	.d-main-container{width:100%;display:unset;padding:10px;}
	.d-left-section{width:100%;padding:0;border-right: none;}
	.d-card{width:48%;}
	.d-card-image{width:100%;}
	.d-card-content{width:100%;}
	.featured-image{width:30%;}
	.content-panel{padding-bottom:80px;}
	.anime-desc{height: auto;margin-bottom:10px;color: #666;font-size: 14px;}
	.index-news-list{width:100%;display:unset;padding:10px;}
	.append{width:100% !important;}
	.mod1{gap: 2px;padding:0;}
	.main-content{width:100% !important;padding:0;}
	.section-title-top{padding: 0;margin-bottom: 10px;padding-top: 10px;}
	.section-title h2{  font-size: 18px !important;font-weight: 600;}
	.author{display:none !important;}
	.post {
        position: relative;
        margin-bottom: 5px;
        padding: 10px;
        border: 0;
		width: 94% !important;
        margin: 0 auto;
    }
	.post-img, .post-img img {
        width: 68px;
        height: 68px;
        object-fit: cover;
    }
	.post-img, .post-img img {
        width: 68px;
        height: 68px;
        object-fit: cover;
    }
	.post header h2 {
        padding-bottom: 0;
		font-weight: 500;
		font-size: 14px;
		margin-bottom:0;
    }
	.blog-data, .post-text, .subscribe-wrap {
        display: none;
    }
	.post footer {
        margin: 5px 0 0;
    }
	
    .related-info {
        padding: 1rem;
    }

    .related-title {
        font-size: 1rem;
    }
}
/*sj*/
/* 响应式Footer样式 */
.footer-container {
  padding: 30px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.qrcode-pc{
    width: 260px;
    margin: 0 auto;
}
.qrcode-pc p{
	font-size: 15px;
    color: #bb3500;
}
.qrcode-pc-h5{
	background: rgb(156, 197, 105);
    color: #fff;
    padding: 14px 60px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 4px 4px 4px 0px rgb(189 189 189);
    margin: 20px 60px 20px 0px;
}
.qrcode-pc-h5 p{
	margin-top: 0;
}
.qrcode-pc-h5 p a{
	color : #fff;
}
.qrcode-pc-moniqi{
	background: rgb(156, 197, 105);
    color: #fff;
    padding: 14px 60px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 4px 4px 4px 0px rgb(189 189 189);
    margin: 20px 60px 20px 0px;
}
.qrcode-pc-moniqi p{
	margin-top: 0;
}
.qrcode-pc-moniqi p a{
	color : #fff;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .nav-list {
    column-count: 2; /* 双列导航布局 */
    margin-top: 10px;
  }

  .nav-list li {
    margin-bottom: 12px;
    break-inside: avoid; /* 防止列表项被分割 */
  }

  .qrcode-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-bottom {
    padding: 20px 15px;
  }
.global-wrapper {
	background: #000000d4;
	color: #fff;
}
.frog {
	position: fixed;
	width: 30px;
	height: 40px;
	bottom: 40px;
	background:unset;
}
.pond-container{
	width: 60px;
	height: 60px;
	display: none;
}
.top-arrow {
	font-size: 0;
}
}

/* 通用样式 */
.footer-bottom {
    border-top: 1px solid #404040;
    margin-top: 40px;
    padding: 25px 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 30px;
}


.qrcode-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 20px;
}

.qrcode-group h3 {
    width: 100%;
    text-align: left;
}

.qrcode-item {
    margin-right: 20px;
}

.qrcode-item:last-child {
    margin-right: 0;
}

.qrcode-group > div {
    display: flex;
}

.qrcode-item {
  text-align: center;
}

.qrcode-item img {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.friend-links {
  margin-top: 20px;
  font-size: 0.9em;
}

.friend-links a {
  display: inline-block;
  margin: 5px 10px 5px 0;
  color: #aaa;
}


/* 移动端特殊优化 */
@media (max-width: 480px) {
  .nav-list {
    column-count: 1; /* 单列导航 */
  }

  .qrcode-item img {
    width: 100px; /* 缩小二维码尺寸 */
  }

  .footer-bottom p {
    font-size: 0.85em;
    line-height: 1.5;
    margin: 8px 0;
  }

  .footer-container {
    padding-top: 20px;
  }

  .friend-links{
    display: none;
    margin-bottom: 8px;
  }
  .footer-dh{
	  display:none;
  }
}
.entry-meta {
    overflow: hidden;
    margin-top: 10px;
}
.tag-wrap {
    float: left;
    margin-top: 10px;
}
.authorbio {
    margin: 10px 0 0 0;
    padding: 20px;
    border-radius: 2px;
    background: #F3F4F7;
    word-break: break-all;
}
.spostinfo li {
    margin-top: 1px;
    font-size: 14px;
    line-height: 25px;
}
.content-notice{
    background:#f8f9fa; border:1px solid #dee2e6; border-radius:4px; padding:12px 15px; margin-bottom:20px;
}
.content-notice span{color:red;font-weight: 600;}
/* 悬浮按钮样式 */
.download-float-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* 弹窗样式 */
.download-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    text-align: center;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
}

.download-modal .logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    background-image: url("/static/skin/images/1logo.jpg");
    background-size: cover; /* 图片覆盖整个容器 */
    background-repeat: no-repeat; /* 禁止重复 */
    background-position: center; /* 图片居中显示 */
}

.download-modal h3 {
    margin-bottom: 16px;
    font-size: 18px;
    color: #333;
}

.download-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}

.android-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
}
.android-btn a{
    background-color: #4CAF50;
    color: white;
    border: none;
}

.ios-btn {
    background-color: white;
    color: #4CAF50;
    border: 1px solid #4CAF50;
}
.download-modal p{
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}
.download-modal p{
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}
.tcys span {
    color: red;
    font-weight: bold;
}
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
}
/* 移动端显示 */
@media (max-width: 768px) {
    .download-float-btn {
        display: block;
    }
}