﻿/*
===============================
 *        01. 目录            * 
===============================

01. FONTS INSTALLER

02. GENERAL
	2.1 Social Links
	2.2 Progress Bar

03. SECTION HEADER
	3.1 Topbar
		3.1.1 Topbar 01
		3.1.5 Navbar Search
	3.2 Navbar Menu
	3.3 Navbar Menu Dark
	3.4 Sticky Menu
	3.5 Burger Menu
	3.6 Mega Menus
	3.7 Breadcrumb
		3.7.1 Breadcrumb 1
	3.8 Slider
		3.8.1 Slider 01

04. TEMPLATES

05. SECTIONS And BLOCKS
	5.3. side list button - 侧边：按钮式导航
	5.4. DA - 广-告
	5.5. side list img - 侧边：图片列表
	5.6. Block Style 6 - 侧边：推特列表
	5.8. list arts - 纯文章列表样式
	5.10. side list withimg - 侧边：文章列表-带缩略图
	5.10. side list art - 侧边：文章列表
	5.12. list item ab - 上下图文项目列表（带作者）
	5.14. list item lr - 左右图文项目列表
	5.22. art detail - 文章详情页
	5.27. page form - 页面表单
	5.29. user login page - 会员登录页
	5.32. side login - 侧边：会员登录及登录后
	5.33. friendly link - 友情链接

06. SECTION FOOTER

07. 响应式


/*============================
 *        02. 通用            *
 *===========================*/

 /* 通用颜色变量 */
 :root {
	--primary-color: #F96D00;   /* 主色调 */
	--primary-bg-color: #f2f2f8;   /* 背景颜色 */
	--text-color: #393e46;   /* 文字颜色 */
 }

/* 禁止打印（打印时不显示内容） */
@media print {
	body {
		display: none;
	}
}


html, body {
	font-family: "Microsoft YaHei UI Light";
	font-size: 14px;
	height: 100%;
	background-color: var(--primary-bg-color);
}

body {
	color: var(--text-color);
}

header {
	margin-bottom: -20px;
}

form label span {
	color: var(--primary-color);
	top: 0;
	font-size: inherit;
}

form div {
	margin: 3px 0;
}

table {
	white-space: nowrap;
	overflow-x: auto;
}

p {
	color: var(--text-color);	
	line-height: 30px;
	margin-top: 0;
	margin-bottom: 0;
}

p b {
	font-weight: bold;
}

a, a:hover, a:focus {
	color: inherit;
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

button, button:hover, button:focus {
	text-decoration: none;
	outline: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

input, textarea, textarea:hover,
form-control,
.btn {
	margin-top: 2px;
	margin-bottom: 2px;
	font-size: inherit !important;
}

h1, h2, h3, h4, h5, h6 {
	/*margin-bottom:0;*/
	font-weight: normal;
	color: inherit;
}

h1, h2 {
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}

h2 span {
	top: -3px;
}


/* 内容中包含的图片自适应宽度 */
.div-fluid {
	width: 100%;
	max-width: 100%;
	height: auto;
	overflow: hidden;
}

/*背景图片的顶部对齐*/
.bg-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left top;
}

/* 卡片中的图片 */
.card img {
	margin: 10px auto;
}

/* 现代时尚卡片（大圆角边框、阴影、悬停上移） */
.card-modern {
	background-color: #fff;
	line-height: 1.5rem;
	padding: 20px;
	border: none;
	border-radius: 15px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.card-modern img {
	margin: 10px auto;
}

.card-modern:hover {
	transform: translateY(-5px);
}

.card-modern a:hover {
	color: var(--primary-color);
}

/* 玻璃拟物化效果 */
.glass-effects {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
}
/* 玻璃拟物化效果中的列表悬停时不出现阴影 */
.glass-effects .contents:hover {
	box-shadow: none !important;
}

/*背景图片的中心点对齐*/
.background-center {
	background-position: center;
	/* 或者 '50% 50%' */
	background-repeat: no-repeat;
	background-size: 100% auto;
	/* 宽度为100%，高度自适应 */
	width: 100%;
	height: 100%;
}

.bg-img-repeat {
	background-size: cover;
	background-position: left top;
}

.small a {
	font-size: inherit;
}

.top-0 {
	top: 0 !important;
}

.bottom-0 {
	margin-bottom: 0 !important;
}

.left--3px {
	left: -3px !important;
}

.left-0 {
	left: 0 !important;
}

.font-14,
.font-14:hover,
.font-14 a,
.font-14 span {
	font-size: 14px !important;
}

.font-16,
.font-16:hover,
.font-16 a,
.font-16 span {
	font-size: 16px;
}

.font-30,
.font-30:hover,
.font-30 a .font-30 span {
	font-size: 30px;
	color: var(--text-color);
}

.font-14 span,
.font-16 span,
.font-30 span {
	top: 0;
}

.rounded-20 {
	border-radius: 10px;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/* 文字阴影 */
.text-shadow {
	text-shadow: 2px 2px 6px var(--text-color);
}

/* 横线 */
.line {
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
	padding-bottom: 6px;
}

/* 横线-通用-实线 */
.line-general {
	border-bottom: 1px solid #CCC;
}

/* 横线通用-实线-粗 */
.line-general-b {
	border-bottom: 2px solid #ccc;
	margin-top: 10px;
}

/* 横线通用-实线-粗-橙色 */
.line-general-b-orange {
	border-bottom: 2px solid var(--primary-color);
}

/* 横线-灰色-虚线 */
.line-gray-dashed {
	border-bottom: 1px dashed #eee;
}

/* 横线-灰色-虚线-深色 */
.line-gray-dashed-dark {
	border-bottom: 1px dashed #999;
}

/* 表格不显示边框 */
.table-borderless {
	border: none;
}


/** 右上角角标 **/
/* 父层 */
.subscript-father {
	overflow: hidden;
	position: relative;
}

/* 角标 */
.subscript {
	background-color: #999;
	/* 默认为灰色，可在调用时通过class进行调整 */
	color: #fff;
	height: 30px;
	width: 105px;
	/* 如角标左侧的出现空白，可调用时用style调整此项 */
	position: absolute;
	right: -35px;
	text-align: center;
	line-height: 30px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* 粘性定位：内容下拉至底部后固定在页面上 */
.box-sticky {
	position: -webkit-sticky;
	position: sticky;
}

/* 取消粘性定位 */
.box-sticky-cancel {
	position: static;
	top: 0;
}

/* 作品标题 */
.title-art {
	text-align: center;
	font-size: 24px;
	padding: 20px 10px;
	font-weight: bold;
}

.title-art p {
	font-size: inherit;
}

.title-art a {
	font-size: 24px;
	color: var(--text-color);
}

.title-art a:hover {
	color: var(--primary-color);
}

.title-art span {
	font-size: 12px;
	color: #fff;
	top: -2px;
	font-weight: normal;
}

/* 子标题 */
.subtitle {
	color: #399;
	font-size: 14px;
}

/* 错误提示 */
.err-note {
	text-align: center;
	padding: 30px;
	font-size: 16px;
	color: var(--primary-color);
	background-color: #fff;
	border-radius: 5px;
}

.err-note a,
.err-note span,
.err-note p {
	font-size: inherit;
}

/* 卡片式列表 */
.list-div {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px 15px;
	margin-bottom: 20px !important;
	border: 1px solid #e6e6f2;
	transition: box-shadow 0.3s ease;
}

.list-div:hover {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.list-div a {
	font-size: inherit;
}

.list-div a:hover {
	color: var(--primary-color);
}

.list-div span {
	top: 0;
	left: -3px;
	font-size: inherit;
}

/* 常规白色div块 */
.div-white {
	background-color: #fff;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 20px;
}
.div-white span {
	font-size: inherit;
	top: 0;
	left: 0;
}
.div-white a {
	font-size: inherit;
}

/**
 * 悬停特效
 */
/* 发光（大范围）-蓝色 */
.hover-shine-blue:hover {
	background-color: #4cc9f0;
	-webkit-box-shadow: 10px 10px 99px 6px rgba(76, 201, 240, 1);
	-moz-box-shadow: 10px 10px 99px 6px rgba(76, 201, 240, 1);
	box-shadow: 10px 10px 99px 6px rgba(76, 201, 240, 1);
}

/* 发光（大范围）-紫粉色 */
.hover-shine-pink:hover {
	background-color: #f038ff;
	-webkit-box-shadow: 10px 10px 99px 6px rgba(240, 56, 255, 1);
	-moz-box-shadow: 10px 10px 99px 6px rgba(240, 56, 255, 1);
	box-shadow: 10px 10px 99px 6px rgba(240, 56, 255, 1);
}

/* 发光（大范围）-绿色 */
.hover-shine-green:hover {
	background-color: #b9e769;
	-webkit-box-shadow: 10px 10px 99px 6px rgba(185, 231, 105, 1);
	-moz-box-shadow: 10px 10px 99px 6px rgba(185, 231, 105, 1);
	box-shadow: 10px 10px 99px 6px rgba(185, 231, 105, 1);
}

/* 块上移，下方出现阴影 */
.hover-shadow-up {
	transition: all 0.3s ease;
}
.hover-shadow-up:hover {
	-webkit-box-shadow: 0 10px 6px -6px #d7d3d3;
	-moz-box-shadow: 0 10px 6px -6px #d7d3d3;
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	transform: translateY(-5px);
}

/* 背景色变为淡绿色 */
.hover-bg-green:hover {
	background-color: #e9f6ea;
	border-radius: 3px;
}


.lh0 {
	line-height: 0;
}

.container-fluid {
	padding: 0;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
	margin: 0;
}

.f-none {
	display: none !important;
}

/* 图片圆角 */
.img-radius-3 {
	border-radius: 3px;
}

.img-radius-5 {
	border-radius: 5px;
}

/* 空白 */
.ts-space10 {
	height: 10px;
	width: 100%;
}

.ts-space15 {
	height: 15px;
	width: 100%;
}

.ts-space20 {
	height: 20px;
	width: 100%;
}

.ts-space25 {
	height: 25px;
	width: 100%;
}

.ts-space30 {
	height: 30px;
	width: 100%;
}

.ts-space35 {
	height: 35px;
	width: 100%;
}

.ts-space40 {
	height: 40px;
	width: 100%;
}

.ts-space45 {
	height: 45px;
	width: 100%;
}

.ts-space50 {
	height: 50px;
	width: 100%;
}

/**
 * 固定高度
 */
/* 文章列表调取6条记录的侧边高度（不计标题） */
.height-248 {
	height: 248px;
}


/* box阴影 */
.box-shadow {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* 文章正文护眼背景 */
.article-body-bg {
	background-color: #e3edcd !important;
}


/**
 * 按钮
 */

 /* flex按钮组间距 */
 .btn-group-flex {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;  /* 按钮垂直间距 */
	column-gap: 10px;  /* 按钮水平间距 */
 }

 /* 玻璃拟物化按钮 */
.glass-button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    color: #393e46;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 5px 20px;
	
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* 悬停状态 */
.glass-button:hover {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    border-bottom-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--primary-color);
}
/* 激活/点击状态 */
.glass-button:active,
.glass-button.active {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.03),
        inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(1px);
    transition-duration: 0.1s;
	cursor: not-allowed;
	color: #393e46;
}
/* 焦点状态 */
.glass-button:focus {
    outline: none;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 0 3px rgba(249, 109, 0, 0.15);
}

/* 读取更多按钮 */
.load-more-btn {
	text-align: center;
	width: 100%;
}

.load-more-btn a {
	color: #6f7885;
	background: #d9d9d7;
	padding: 13px 15px;
	width: 100%;
	max-width: 200px;
}

.load-more-btn a:hover {
	color: #ffffff;
	background: var(--primary-color);
	padding: 13px 15px;
	width: 100%;
	max-width: 200px;
}

/* 作品页阅读正文按钮 */
.btn-readBodyContent {
	margin: 20px 20px 0;
	padding: 5px;
	border: 1px solid #99cccc;
	background: #EEE;
	color: #099;
	font-size: 15px;
	cursor: pointer;
	text-align: center;
	border-radius: 50px;
	line-height: 1.5em;
}

.btn-readBodyContent:hover {
	background: #99cccc;
	color: #fff;
}

/*彩色按钮*/
.btn-yellow {
	background: #990;
	color: #FFF;
}
.btn-yellow:hover {
	background: #C90;
	color: #FFF;
}

.btn-green {
	background: #396;
	color: #FFF;
}
.btn-green:hover {
	background: #0C6;
	color: #FFF;
}

/*翠绿色按钮*/
.btn-emerald {
	background: #9C3;
	color: #FFF;
}
.btn-emerald:hover {
	background: #996;
	color: #FFF;
}

.btn-blue {
	background: #5dcbff;
	color: #FFF;
}
.btn-blue:hover {
	background: #40b6ee;
	color: #FFF;
}

/*橙色按钮*/
.btn-orange {
	background: #ff5700;
	color: #FFF;
}
.btn-orange:hover {
	background: #e25d18;
	color: #FFF;
}

/*紫色按钮*/
.btn-purple {
	background: #6680ff;
	color: #FFF;
}
.btn-purple:hover {
	background: #425de0;
	color: #FFF;
}

.btn-gray {
	background: #7f7f7f;
	color: #FFF;
}
.btn-gray:hover {
	background: #999;
	color: #FFF;
}

/*返回顶部按钮*/
.ReturnTop {
	padding: 10px 20px;
	color: #fff;
	background: #64BFAE;
	text-align: center;
	position: fixed;
	right: 20px;
	bottom: 20px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 3px;
	background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0 !important;
	/*半透明*/
	filter: Alpha(opacity=40);
	/*针对IE的半透部*/
	display: none;
	transition: all 0.3s ease;
}

.ReturnTop:hover {
	background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0 !important;
	filter: Alpha(opacity=60);
}


/**
 * 列表页码
 */
.pagination {
	margin: 0;
	padding-left: 0;
}

.pagination li {
	font-size: 14px;
	color: #6f7885;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
	font-size: 14px;
	background-color: var(--primary-color);
	color: #ffffff;
	border-radius: 5px;
	width: 100px;
	margin-top: 7px;
}

.pagination .page-item span {
	margin-left: 3px;
}

.pagination .page-item:first-child .page-link {
	margin-right: 17px;
}

.pagination .page-item:last-child .page-link {
	margin-left: 20px;
}

.pagination .page-item .page-link {
	margin-left: 3px;
}

.pagination .page-item .page-link:hover {
	background-color: #d9d9d7;
}

.pagination .page-link,
.jump form input {
	font-size: 14px !important;
	margin-left: 3px;
	padding: 10px 0;
	font-size: 14px;
	color: #878787;
	position: relative;
	display: block;
	min-width: 40px;
	text-align: center;
	line-height: 1.25;
	background-color: transparent;
	border: 1px solid transparent !important;
	border-radius: 5px;
}

.pagination .page-link:hover {
	color: var(--primary-color);
	background-color: #C93;
}

.pagination .page-link:focus {
	outline: 0;
	border: 0;
	text-decoration: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.jump {
	display: flex;
	margin-top: 10px;
}

.jump form input {
	width: 80px;
}

.jump form input[type='text'] {
	background-color: #fff;
	color: #CCC;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-color: var(--primary-color) !important;
}

.jump form input[type='submit'] {
	background-color: var(--primary-color);
	color: #fff;
	cursor: pointer;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: 0;
}

.jump .page-link {
	width: auto;
}

.pagination .page-item.active .page-link {
	z-index: 1;
	margin-top: 6px;
	color: #999999;
	background-color: transparent;
	border-color: #d9d9d7 !important;
}

.pagination .page-item.disabled .page-link {
	z-index: 1;
	color: #878787;
	background-color: #d9d9d7;
}

/**
 * 内容按字数分页列表
 */
.text-page-list {
	color: #000;
	font-size: 12px;
	padding: 5px 8px;
	margin: 5px 20px;
	text-align: center;
}

.text-page-list a,
.text-page-list .curr {
	font-size: 12px !important;
	color: #fff;
	background-color: #C93;
	border-radius: 3px;
	margin: 3px;
	padding: 3px 15px 6px;
	text-align: center;
}

.text-page-list .curr {
	color: #000;
	background-color: #eee;
}

.text-page-list a:hover {
	background-color: #CC0;
	transition: all 0.3s ease-in-out;
}

/**
 * 集次（章次）列表
 */
.episodeNo {
	display: flex;
	flex-wrap: wrap;
	border-radius: 5px;
	margin-top: 30px;
}

.episodeNolist {
	width: 9.3%;
	min-width: 79px;
	margin: 6px;
	background-color: #fff;
	border-radius: 5px;
	font-size: 12px;
	text-align: center;
}

.episodeNolist a {
	font-size: 12px;
}

.episodeNolist .link {
	padding: 8px 2px;
	cursor: pointer;
}

.episodeNolist .link:hover {
	background: #9C0;
	color: #fff;
	border-radius: 5px;
}

.episodeNolist .current {
	padding: 8px 2px;
	background: #9C0;
	border-radius: 5px;
	color: #fff;
}

.episodeNolist .omit {
	padding: 8px;
	background: #fff;
	border-radius: 5px;
	font-size: smaller;
	text-align: center;
}

/* 作品类型列表（跟episodeNo结合使用） */
.art-class {
	width: 100%;
	background-color: var(--primary-bg-color);
	justify-content: flex-start;
	margin: 0 0 15px 0;
	padding: 0;
}

.art-class .episodeNolist {
	width: auto;
	min-width: auto;
	margin: 0;
	margin-right: 8px;
	margin-bottom: 5px;
}

.art-class .episodeNolist .link,
.art-class .episodeNolist .current {
	padding: 5px 15px;
}

.art-class .episodeNolist,
.art-class .episodeNolist a {
	font-size: 13px;
}

/* 上一篇、下一篇 （短按钮） */
.art-previous-next {
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin: 30px 20% 0;
	line-height: 1.5em !important;
}

.art-previous-next .ThePrevious,
.art-previous-next .TheNext,
.art-previous-next .TheEnd-Previous,
.art-previous-next .TheEnd-Next {
	padding: 8px 10px;
	width: 30%;
	border-radius: 5px;
}

.art-previous-next .ThePrevious {
	background-color: #9C0;
	cursor: pointer;
	float: left;
}

.art-previous-next .ThePrevious:hover {
	color: #FFF;
	background-color: #99CCCC;
}

.art-previous-next .TheNext {
	background-color: #9C0;
	cursor: pointer;
	float: right;
}

.art-previous-next .TheNext:hover {
	color: #FFF;
	background-color: #99CCCC;
}

.art-previous-next .TheEnd-Previous {
	background-color: #999;
	float: left;
}

.art-previous-next .TheEnd-Next {
	background-color: #999;
	float: right;
}

/**
 * 文字颜色
 */
.text-red,
.text-red p {
	color: #F00 !important;
}

/** 红色 **/
.text-yellow,
.text-yellow p {
	color: #FFE500;
}

/** 黄色 **/
.text-golden,
.text-golden p {
	color: #C90;
}

/** 金色 **/
.text-orange,
.text-orange p {
	color: #F79609;
}

/** 橙色 **/
.text-green,
.text-green p {
	color: green;
}

/** 绿色 **/
.text-emeraldgreen,
.text-emeraldgreen p {
	color: #99CC00;
}

/** 翠绿色 **/
.text-cyan,
.text-cyan p {
	color: #9F0;
}

/** 青色 **/
.text-darkblue,
.text-darkblue p {
	color: #006699;
}

/** 深蓝色 **/
.text-coffee,
.text-coffee p {
	color: #C60;
}

/** 咖啡色 **/
.text-white,
.text-white p {
	color: #FFF;
}

.text-gray,
.text-gray p {
	color: gray !important;
}

/**
 * 文字链接
 */
/** 蓝色 **/
.link-blue:link {
	color: blue;
}

.link-blue:hover {
	color: #CC3300;
}

.link-blue:visited {
	color: blue;
}

/** 红色 **/
.link-red:link {
	color: #F00;
}

.link-red:hover {
	color: #CC3300;
}

.link-red:visited {
	color: #F00;
}

/** 黄色 **/
.link-yellow:link {
	color: #FFE500;
}

.link-yellow:hover {
	color: #CC3300;
}

.link-yellow:visited {
	color: #FFE500;
}

/** 橙色 **/
.link-orange:link {
	color: #F79609;
}

.link-orange:hover {
	color: #CC3300;
}

.link-orange:visited {
	color: #F79609;
}

/** 绿色 **/
.link-green:link {
	color: #1f6608;
}

.link-green:hover {
	color: #CC3300;
}

.link-green:visited {
	color: #1f6608;
}

/** 青色 **/
.link-cyan:link {
	color: #9F0;
}

.link-cyan:hover {
	color: #FFE500;
}

.link-cyan:visited {
	color: #9F0;
}

/** 白色 **/
.link-white:link {
	color: #FFF;
}

.link-white:hover {
	color: #FC0;
}

.link-white:visited {
	color: #FFF;
}

/** 灰色 **/
.link-gray:link {
	color: gray;
}

.link-gray:hover {
	color: #F30;
}

.link-gray:visited {
	color: gray;
}

/** 金色 **/
.link-golden:link {
	color: #C90;
}

.link-golden:hover {
	color: #CC3300;
}

.link-golden:visited {
	color: #F79609;
}

/**
 * 背景色
 */
.bg-nocolor {
	background-color: none !important;
}

.bg-white {
	background-color: #FFF;
}

.bg-black {
	background-color: #000;
	color: #FFF;
}

.bg-red {
	background-color: #F00;
	color: #FFF;
}

.bg-green {
	background-color: #396;
	color: #FFF;
}

.bg-green-light {
	background-color: #F0FAEF !important;
}

.bg-yellow {
	background-color: #f1bd1c;
	color: #FFF;
}

.bg-yellow-light {
	background-color: #FFC;
}

.bg-gray {
	background-color: #eee;
}

.bg-gray-light {
	background-color: #F0F0F0;
}

.bg-gray-dark {
	background-color: #999;
}

.bg-cyan {
	background-color: #CBDBE8;
}

.bg-blue {
	background-color: #0082C8;
	color: #FFF;
}

.bg-blue-light {
	background-color: #ddf2fa !important;
}

.bg-orange-pink {
	background-color: #f1ddca;
}

/* 橙粉色 */
.bg-purple {
	background-color: #aa60d1;
	color: #FFF;
}

/* 橙色 */
.bg-orange {
	background-color: #f96d00;
	color: #FFF;
}

/**
 * 标签
 */
.tag {
	top: 0;
	padding: 3px;
	border-radius: 3px;
	display: inline-flex;
	/* 使用 inline-flex */
	align-items: center;
	/* 垂直居中 */
	line-height: 1;
	/* 调整行高 */
	margin: 0 0 0 3px;
	/* 确保没有额外的外边距 */
}

.tag,
.tag a,
.tag a:hover {
	font-size: 12px !important;
	line-height: 1;
}

/* 红字、红色外框 */
.tag-border-red {
	border: 1px solid red;
	color: red;
}

/* 红底白字 */
.tag-bg-red {
	color: #FFF;
	background: #F00;
}

/* 白字黄底 */
.tag-bg-yellow {
	color: #FFF !important;
	background: rgb(255, 183, 0);
}

/* 白字金底 */
.tag-bg-golden {
	color: #FFF;
	background: #C90;
}

/* 黑字灰底 */
.tag-bg-gray {
	color: #666;
	background: #CCC;
}

/*红底白字-数字专用*/
.tag-number-red {
	color: #FFF;
	background: #F00;
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 3px;
}

/* 灰字灰色外框（举报按钮） */
.tag-note {
	font-size: 12px;
	border: 1px solid #ccc;
	color: gray;
	border-radius: 20px;
	padding: 4px 20px !important;
}
.tag-note a {
	font-size: 12px;
	color: gray !important;
}
.tag-note:hover {
	color: #fff;
	background-color: #ccc;
}

/* 标签：灰字浅蓝底 */
.tag-keyword {
	color: #666;
	background: #D1E7DF;
	font-size: 12px;
	border-radius: 3px;
	padding: 4px 8px 5px;
}
.tag-keyword:link {
	color: #666;
}
.tag-keyword:hover {
	color: #FFF;
	background: #99cccc;
}

/* 标签：叶状 */
.tag-leaf {
	color: #FFF;
	font-size: 12px;
	padding: 5px 8px;
	background-color: #6C9;
	border-radius: 15px 0 15px 0;
	cursor: pointer;
}
.tag-leaf:hover {
	background: #093;
}
.tag-leaf a {
	font-size: 12px;
	color: #FFF;
}

/* 关注按钮 */
.tag-interest {
	color: white;
	background: red;
	border-radius: 6px;
	padding: 4px 20px 5px;
	top: 2px !important;
	left: 3px;
}

.tag-interest:hover {
	color: #FFF;
	background: rgb(204, 0, 20);
}

.tag-has-interested {
	color: #999;
	background: #c1e7d9;
	border-radius: 6px;
	padding: 4px 10px 5px;
	top: 1px !important;
	left: 3px;
}

.tag-has-interested:hover {
	text-decoration: none;
}

/**
 * 小字号内容
 */
.content-small {
	font-size: 13px;
	border-radius: 5px;
	padding: 8px 20px;
	margin-bottom: 10px;
	line-height: 1.8em;
}

.content-small a {
	font-size: 13px;
	color: blue;
}

.content-small a:hover {
	color: var(--primary-color);
}

.content-small span {
	top: 0;
	left: -4px;
	font-size: 13px !important;
}

/* 突出显示区域（黄色背景）*/
.highlight {
	font-size: 13px;
	background-color: #FFC;
	padding: 10px 8px;
	margin: 12px 0;
	border-radius: 5px;
	border: 1px solid #FC3;
}

.highlight a {
	font-size: inherit !important;
}

.highlight span {
	top: 0;
}

/* 头像 */
.face {
	border-radius: 50%;
	overflow: hidden;
	background-size: cover;
	background-position: 50%;
	background-color: #ddd;
	margin-left: auto;
	margin-right: auto;
}
.face:hover {
	transform: scale(1.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}


/* 顶、踩、收藏区域 */
.dig {
	margin-top: 30px;
	margin-bottom: 0;
	text-align: center;
}
.interaction-buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.action-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 18px;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	gap: 8px;
}

.action-item:hover {
	background-color: rgba(249, 109, 0, 0.05);
	border-color: rgba(249, 109, 0, 0.1);
	transform: translateY(-2px);
}

.action-item:active {
	transform: scale(0.98);
}

.action-item a {
	display: block;
	position: relative;
	z-index: 2;
}

.action-item b {
	font-family: "Microsoft YaHei";
	color: var(--primary-color);
	font-weight: bold;
	transition: all 0.3s ease;
}

.action-item:hover b {
	color: #e05d00;
}

.dig .action-item {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 12px 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	gap: 8px;
}

.dig .action-item:hover {
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: rgba(249, 109, 0, 0.2);
}

.dig img {
	width: 24px;
	border: 0;
	transition: transform 0.2s ease, filter 0.3s ease;
}

.dig a:hover img {
	transform: scale(1.2);
}

/* 已点击的按钮样式 */
.dig a[href="javascript:Dig"] img[src*="diggood.png"],
.dig a[href="javascript:Dig"] img[src*="digbad.png"],
.dig a[href="javascript:favorite"] img[src*="favorite.png"]:not([src*="gray"]) {
	filter: drop-shadow(0 0 3px rgba(249, 109, 0, 0.5));
}

.dig span {
	color: #666;
	margin: 0 2px;
	transition: color 0.2s ease;
}

.dig a:hover span {
	color: var(--primary-color);
}

.dig b {
	color: var(--primary-color);
}

.dig .note {
	color: #666;
	margin: 20px auto 0;
	padding: 8px 15px;
	background: #f8f8f8;
	border-radius: 30px;
	max-width: 80%;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.dig .note span {
	top: 0;
	color: #666;
}


/* 搜索框 */
.search-general {
	color: #666;
	background: #E7E9EB;
	border-radius: 3px;
	padding: 10px;
	border: 1px solid #CCCCCC;
	margin-bottom: 30px;
}

.search-general form {
	position: relative;
	margin-bottom: 0;
}

.search-general form input {
	min-width: 45px;
}

.search-general form input[type="text"] {
	font-size: 14px;
	color: #878787;
	vertical-align: middle;
}

.search-general form input[type="submit"] {
	font-size: 14px;
	padding: 5px 20px;
}

.search-general form input:focus,
#section-search form input:active {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	outline: 0;
}

/* 最近阅读者 */
.recent-reader {
	background-color: #fff;
	margin-bottom: 30px;
	border-radius: 5px;
}

.recent-reader .title {
	padding: 8px;
}

.recent-reader .recent-reader-content {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	padding-bottom: 10px;
	gap: 10px;
}

.recent-reader .recent-reader-content .item {
	width: 80px;
	margin-bottom: 6px;
}

.recent-reader ul {
	list-style-type: none;
}

/*作品正文上方tab，鼠标悬停切换内容*/
.tab {
	width: 100%;
	padding-bottom: 0;
	margin-top: 30px;
	background-color: var(--primary-bg-color);
	border-bottom: 2px solid #CC6600;
}

.tab ul {
	list-style: none;
	margin: 0 10px;
	padding: 0;
	display: flex;
	justify-content: space-between;
	text-align: center;
}

.tab li {
	background: #CBDBE8;
	font-size: 13px;
	width: 150px;
	padding: 10px;
	margin: 0;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
}

.tab .curr {
	color: #fff;
	background: #CC6600;
	padding-top: 10px;
	border-radius: 5px 5px 0 0;
}

/*作品列表上部tab（tab结合使用）*/
.tab-list {
	padding-top: 10px;
	margin: 10px 0;
	border-bottom: 2px solid #F79609;
}

.tab-list ul {
	display: flex;
	justify-content: flex-start;
}

.tab-list li {
	width: 100px;
	margin-right: 5px;
}

.tab-list .curr {
	background: #F79609;
}


/**
 * List Users 04
 */
.list-users-04 ul.images {
	padding: 0;
	margin: 0;
	margin-right: 10px;
	margin-left: 0;
	display: inline-block;
	float: left;
	position: relative;
}

.list-users-04 ul.images li {
	position: relative;
	list-style: none;
	display: inline-block;
}

.list-users-04 ul.images li img {
	width: 35px;
	height: 35px;
	border: 2px solid #ffffff;
	border-radius: 100%;
}

.list-users-04 p {
	color: #6f7885;
	font-size: 13px;
	margin-bottom: 0;
	line-height: 40px;
	display: inline-block;
}

.list-users-04 .comment-share {
	display: inline-block;
}

.list-users-04 .comment {
	font-size: 13px;
	color: #d2d2d2;
	line-height: 30px;
	margin-left: 60px;
	display: inline-block;
}

.list-users-04 .comment svg {
	width: 21px;
	height: 21px;
	fill: #d2d2d2;
	margin-right: 5px;
}

.list-users-04 .share {
	font-size: 13px;
	color: #d2d2d2;
	line-height: 30px;
	margin-left: 60px;
	display: inline-block;
}

.list-users-04 .share svg {
	width: 21px;
	height: 21px;
	fill: #d2d2d2;
	margin-right: 5px;
}


/*=============================
 *     03. SECTION HEADER     *
 *============================*/
/**
 * 3.1 Topbar
 */
/* 3.1.1 Topbar 01 */
/* 左侧部分 */
.topbar-01 {
	background-color: #fbfbfb;
	border-bottom: 1px solid #f0f0f7;
	position: relative;
	display: block;
	width: 100%;
	height: 35px;

}

.topbar-01 .left .today {
	display: inline-block;
	float: left;
	margin-left: 30px;
	padding-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.topbar-01 .left .today p {
	font-size: 14px;
	color: #6f7885;
}

.topbar-01 .left .today a {
	font-size: 13px;
	color: #6f7885;
	margin: 2px 5px;
	background-color: #EEE;
	padding: 3px 8px 5px;
	border-radius: 8px;
}

.topbar-01 .left .today a:hover {
	background-color: #dedbdb;
}

.topbar-01 .left .searchbar {
	display: inline-block;
	float: left;
	position: relative;
	width: 100%;
	max-width: 300px;
}

.topbar-01 .left .searchbar form {
	position: relative;
	margin-bottom: 0;
}

.topbar-01 .left .searchbar form input[type="text"] {
	font-size: 14px;
	color: #878787;
	background-color: #f5f5f5;
	padding-left: 40px;
	padding-bottom: 5px;
	width: 100%;
	height: 35px;
	border: none;
	border-radius: 0;
	vertical-align: middle;
}

.topbar-01 .left .searchbar form input:focus,
#section-search form input:active {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	outline: 0;
}

.topbar-01 .left .searchbar form button {
	position: absolute;
	right: 0px;
	background-color: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.topbar-01 .left .searchbar form img {
	position: absolute;
	right: 38px;
	top: 9px;
	z-index: 99;
	width: 17px;
	cursor: pointer;
}

.topbar-01 .left .searchbar ::-webkit-input-placeholder {
	font-size: 14px;
	color: #878787;
}

.topbar-01 .left .searchbar ::-moz-placeholder {
	font-size: 14px;
	color: #878787;
}

.topbar-01 .left .searchbar :-ms-input-placeholder {
	font-size: 14px;
	color: #878787;
}

.topbar-01 .left .searchbar :-moz-placeholder {
	font-size: 14px;
	color: #878787;
}

/** 右侧部分 **/
/* 登录/注册链接 */
.topbar-01 .right {
	text-align: right;
	height: 35px;
}

.topbar-01 .right .reg-login {
	padding-top: 2px;
}

.topbar-01 .right .reg-login p,
a {
	font-size: 14px;
	color: #6f7885;
}

.topbar-01 .right .reg-login a:hover {
	color: var(--primary-color);
}

/* 未读消息 */
.topbar-01 .right .notification {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.topbar-01 .right .notification img {
	height: 22px;
}

.topbar-01 .right .notification>span {
	font-size: 9px;
	color: #ffffff;
	background-color: #ff5738;
	padding: 2px 5px 1px;
	border-radius: 10px;
	text-align: center;
	position: relative;
	left: -16px;
	top: -1px;
}

.topbar-01 .right .notification .content-notification .header {
	width: 100%;
	padding: 12px 20px;
	border-bottom: 1px solid #41464f;
	text-align: left;
}

.topbar-01 .right .notification .content-notification .header p {
	font-size: 14px;
	color: #6f7885;
	line-height: 20px;
	margin-bottom: 0;
}

.topbar-01 .right .notification .content-notification {
	position: absolute;
	right: 0;
	opacity: 0;
	top: 60px;
	width: 150px;
	border-radius: 5px;
	z-index: -1;
	cursor: auto;
	background-color: #393e46;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .notification:hover .content-notification {
	opacity: 1;
	top: 35px;
	z-index: 9999;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .notification .content-notification .content {
	border-radius: 5px;
	display: inline-block;
	width: 100%;
	background-color: #3c4149;
}

.topbar-01 .right .notification .content-notification .content .item {
	border-radius: 5px;
	text-align: left;
	padding: 6px 20px;
	border-bottom: 1px solid #41464f;
}

.topbar-01 .right .notification .content-notification .content .item:hover {
	background-color: #41464f;
}

.topbar-01 .right .notification .content-notification .content .item .message {
	display: inline-block;
}

.topbar-01 .right .notification .content-notification .content .item .message p {
	font-size: 14px;
	color: #999;
}

.topbar-01 .right .notification .content-notification .content .item .message p:hover {
	color: #fff;
}

.topbar-01 .right .notification .content-notification .content .item .message p span {
	color: var(--primary-color);
	font-size: 14px;
	top: 0;
	left: 10px;
}

/* 客服图标 */
.topbar-01 .right .kefu {
	height: 25px;
	width: 25px;
	border-radius: 50%;
	position: relative;
	display: inline-block;
	cursor: pointer;	
}
.topbar-01 .right .kefu img {
	width: 23px;
}

/* 会员导航 */
.topbar-01 .right .user-profile {
	top: 7px;
	height: 100%;
	position: relative;
	display: inline-block;
	cursor: pointer;	
}

.topbar-01 .right .user-profile img {
	width: 23px;
	height: 23px;
	float: left;
	border-radius: 100%;
	display: inline-block;
	margin-right: 8px;
	top: -3px;
	position: relative;
}

.topbar-01 .right .user-profile p {
	font-size: 12px;
	color: #6f7885;
	top: -5px;
	display: inline-block;
}

.topbar-01 .right .user-profile p i,
span {
	font-size: 12px;
	color: #6f7885;
	margin-left: 5px;
	top: -6px;
	position: relative;
}

.topbar-01 .right .user-profile .user-menu {
	position: absolute;
	right: 0px;
	top: 50px;
	opacity: 0;
	background: #393e46;
	text-align: left;
	width: 220px;
	z-index: -1;
	border-radius: 5px;
	padding: 15px 0 0px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .user-profile:hover .user-menu,
.topbar-01 .right .user-profile .user-menu:hover {
	opacity: 1;
	top: 38px;
	z-index: 9999;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .user-profile .user-menu ul {
	padding: 0;
	margin: 0;
}

.topbar-01 .right .user-profile .user-menu ul li {
	list-style: none;
	display: block;
	padding: 8px 15px 8px 50px;
	position: relative;
}

.topbar-01 .right .user-profile .user-menu ul li:hover {
	background: #41464f;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .user-profile .user-menu ul li:hover:before {
	font-family: fontawesome;
	content: '\f0da';
	font-size: 14px;
	color: var(--primary-color);
	left: 25px;
	top: 10px;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .user-profile .user-menu ul li:last-child {
	border-top: 1px solid #41464f;
	margin-top: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.topbar-01 .right .user-profile .user-menu ul li:last-child:before {
	content: '';
	background-image: url(/images/svg/power-button-symbol.svg);
	background-size: cover;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 15px;
	top: auto;
	display: inline-block;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-01 .right .user-profile .user-menu ul li a {
	font-size: 14px;
	color: #6f7885;
}

.topbar-01 .right .user-profile .user-menu ul li:hover a {
	color: #ffffff;
}


/**
 * 3.2 顶部导航栏
 */
.navbar-menu .navbar-brand.background-logo:before {
	content: '';
	background: var(--primary-color);
	width: 600px;
	height: 61px;
	position: absolute;
	z-index: -1;
	top: -8px;
	left: -465px;
	cursor: auto;
}

.navbar-menu {
	background-color: #ffffff;
	z-index: 999;
	position: absolute;
	width: 100%;
	padding: 0;
}

.navbar-menu .dropdown-menu.active {
	display: block;
}

.navbar-menu .dropdown-menu.active.show {
	display: none;
}

.navbar-menu .navbar-toggler:focus {
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

.navbar-menu .megamenu-dropdown-list li a {
	display: block;
	padding: 10px 0;
	position: relative;
}

.navbar-menu .megamenu-dropdown-list li:last-child a {
	border-bottom: none;
	padding-bottom: 0;
}

.navbar-menu .dropdown-item {
	color: #6f7885;
	background-color: transparent;
	font-size: 14px;
	padding: 8.5px 50px;
	border-bottom: none;
	position: relative;
}

/*.navbar-menu .dropdown-item:focus, */
.navbar-menu .dropdown-menu .dropdown-submenu.dropdown:hover {
	background: var(--primary-color) !important;
	color: #ffffff !important;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li:hover .dropdown-item {
	color: #ffffff;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li a.dropdown-item {
	left: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li a.dropdown-item:hover {
	left: 5px;
	color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-menu .dropdown-item:before {
	content: '';
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	left: 0;
	height: 0;
	width: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-menu .dropdown-item:hover:before,
.navbar-menu .dropdown-item.active:before {
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-menu .dropdown-item.active {
	background-color: transparent;
}

.navbar-menu .dropdown-heading {
	padding-top: 10px;
}

.navbar-menu .navbar-brand {
	color: #265196;
	font-size: 24px;
	font-weight: bold;
	margin-right: 63px;
	z-index: 9999;
	position: relative;
}

.navbar-menu .navbar-nav .nav-item .nav-link {
	color: #393e46;
	padding: 20px;
	font-size: 14px;
	position: relative;
	display: inline-block;
}

.navbar-menu .navbar-nav .nav-item .nav-link:hover,
.navbar-menu .navbar-nav .nav-item .nav-link:hover .bi {
	color: var(--primary-color);
}

.navbar-menu .navbar-nav .nav-item .nav-link:before {
	content: "";
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 17px;
	left: 20px;
	right: 0;
	background: var(--primary-color);
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

/*Start*/
.navbar-menu .navbar-nav .nav-item .nav-link:after {
	content: "";
	width: 0;
	height: 3px;
	position: absolute;
	bottom: 17px;
	margin: 0 auto;
	left: 20px;
	right: 0;
	background: #ffffff;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-menu .navbar-nav .nav-item .nav-link:hover:after {
	width: 5px;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.navbar-menu .navbar-nav .nav-item.dropdown-submenu.dropdown .nav-link:after,
.navbar-menu .navbar-nav .nav-link.dropdown-toggle:after {
	display: inline-block;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	content: '\f078';
	font-family: fontawesome;
	color: #393e46;
	font-size: 8px;
	margin-left: 10px;
	position: relative;
	top: 1px;
	left: -9px;
}

.navbar-menu .navbar-nav .nav-item.dropdown-submenu.dropdown .nav-link:hover:after,
.navbar-menu .navbar-nav .nav-link.dropdown-toggle:after {
	width: 0 !important;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

/*End*/
.navbar-menu .navbar-nav .nav-item .dropdown-toggle.nav-link:before,
.navbar-menu .navbar-nav .nav-item .dropdown-toggle.nav-link {
	background: transparent;
}

.navbar-menu .dropdown-item:focus,
.navbar-menu .dropdown-item:hover {
	border-radius: 0;
}

.navbar-menu .navbar-nav .nav-item .nav-link:hover:before {
	width: 50%;
}

.navbar-menu .dropdown-menu {
	border: none;
	background-color: #393e46 !important;
	font-size: 14px;
}

.navbar-menu .dropdown-menu .nav-item .nav-link {
	color: #1c1c1c;
	padding: 6px 0;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li {
	position: relative;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li:hover {
	background: #41464f;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li:before {
	content: '';
	position: absolute;
	background: #ff5738;
	bottom: 50%;
	transform: translateY(50%);
	left: 0;
	height: 0;
	width: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.navbar-menu .dropdown-submenu ul.dropdown-menu>li:hover:before {
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* Submenu in Submenu */
.navbar-menu.navbar .dropdown-submenu .dropdown-submenu .dropdown-toggle:after {
	display: inline-block;
	margin-left: 10px;
	top: 2px;
	position: relative;
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
}

.navbar-menu.navbar .dropdown-submenu .dropdown-submenu>.dropdown-item:after {
	content: '\f054';
	font-family: fontawesome;
	font-size: 9px;
	margin-left: 10px;
	top: 2px;
}

.navbar-menu .dropdown-submenu .dropdown-submenu ul.dropdown-menu>li .dropdown-item {
	color: #6f7885;
}

/* 手机端顶部直显nav */
.navbox-m {
	position:relative; 
	clear:both; 
	width:100%; 
	margin: 78px auto -73px;
}
.nav-m {
	overflow:hidden;
	background-color: #fff;
	margin: 0 auto 5px;
	border-radius: 3px;
	padding: 8px 5px !important;
}
.nav-m a,
.nav-m span {
	float:left;
	text-align:center;
	font-size:16px;
	height:28px;
	line-height:28px;
	padding: auto 10px;
}
/* 每行4个导航项 */
.nav-4 a,
.nav-4 span {
	width:25%;	 
}
/* 每行6个导航项 */
.nav-6 a,
.nav-6 span {
	width:16.66%; 
}


/**
 * 3.4 Sticky Menu
 */
nav.sticky-menu {
    position: fixed;
    top: 0;
    -webkit-box-shadow: 0 5px 35px -15px #9cb1cf;
    box-shadow: 0 5px 35px -15px #9cb1cf;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


/* 剧本类别快速链接 */
.header-quick-class {
    padding-top: 95px;
	margin-bottom: -75px;
}

@media only screen and (max-width: 992px) {
    .header-quick-class {
        display: none;
    }
}


/**
 * 3.5 Burger Menu
 */
.navbar-menu #sidebarCollapse {
	width: 76px;
	/* height:50px; */
	background: transparent;
	cursor: pointer;
	margin-left: 10px;
	padding-top: 13px;
}

/* 自定义汉堡图标（需结合#sidebarCollapse调整） */
.custom-toggler {
	display: flex;
	align-items: center;
	border: 1px solid #f96c00c3;
	padding: 3px 10px !important;
}

.custom-toggler .bi-list {
	margin-right: 0.2rem;
	font-size: 1.5rem;
	color: var(--primary-color);
}

.toggler-text {
	font-size: 1.1rem;
	color: var(--primary-color);
	white-space: nowrap; /* 文字不换行 */
}

.navbar-menu #sidebarCollapse span {
	width: 33px;
	height: 2px;
	margin: 0 auto;
	display: block;

	transition: all 0.2s cubic-bezier(0.810, -0.330, 0.345, 1.375);
	transition-delay: 0.1s;
}

.navbar-menu #sidebarCollapse span:first-of-type {
	transform: rotate(45deg) translate(3px, 3px);
}

.navbar-menu #sidebarCollapse span:nth-of-type(2) {
	opacity: 0;
}

.navbar-menu #sidebarCollapse span:last-of-type {
	transform: rotate(-45deg) translate(1px, -2px);
}

.navbar-menu #sidebarCollapse.active span {
	width: 27px;
	transform: none;
	opacity: 1;
	margin: 5px auto;
}

.navbar-menu #sidebarCollapse span:nth-of-type(3) {
	opacity: 0
}

.navbar-menu #sidebarCollapse.active span:nth-of-type(3) {
	opacity: 1;
}


/**
 * 3.6 Mega Menus
 */
nav .dropdown,
nav .dropleft,
nav .dropright,
nav .dropup {
	position: initial;
}

nav li.mega-menu h6 {
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 25px;
	padding: 8.5px 0 8.5px 50px;
	position: relative;
}

nav li.mega-menu h6:before {
	content: "";
	width: 40px;
	height: 2px;
	background: #f2c5a5;
	position: absolute;
	bottom: -10px;
	margin: 0 auto;
	left: 50px;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

nav li.mega-menu h6:after {
	content: "";
	width: 5px;
	height: 2px;
	background: #393e46;
	position: absolute;
	bottom: -10px;
	margin: 0 auto;
	left: 55px;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

nav.navbar-menu.navbar .mega-menu .dropdown-menu {
	margin-top: 3px;
	background-color: transparent !important;
	margin: 0 auto;
	z-index: 9999;
}

nav.navbar-menu.navbar .mega-menu .dropdown-menu li {
	position: relative;
}

nav.navbar-menu.navbar .mega-menu .dropdown-menu li .container {
	background-color: #393e46;
	border: 1px solid #393e46;
	border-right: 2px solid #393d46;
	padding: 20px 0;
	border-radius: 8px;
	/**  background-image:url(/images/background-megamenu.png);  **/
	background-repeat: no-repeat;
	background-position: right;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li a {
	font-size: 14px;
	color: #6f7885;
	padding: 8.5px 0 8.5px 50px;
	position: relative;
	display: inline-block;
	left: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li a:hover {
	background: none;
	color: #ffffff;
	left: 8px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li:before {
	content: '';
	background: #ff5738;
	position: absolute;
	bottom: 50%;
	transform: translateY(50%);
	left: 0;
	height: 0;
	width: 2px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li:hover:before,
nav.navbar-menu .mega-menu .megamenu-dropdown-list li.active:before {
	height: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

nav.navbar-menu.navbar .mega-menu .dropdown-menu li .container .item {
	-ms-flex: 0 0 22.4%;
	flex: 0 0 22.4%;
	max-width: 22.4%;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li a.label:after {
	font-size: 10px;
	content: "New";
	background: #ff5738;
	color: #ffffff;
	border-radius: 3px;
	position: absolute;
	top: 9px;
	margin-left: 15px;
	padding: 3px 14px;
}

nav.navbar-menu .mega-menu .megamenu-dropdown-list li a:hover {}


/**
 * 3.8 Slider
 */
/* 3.8.5 会员登录页 */
#section-slider.slider05 {
	height: 100%;
	max-height: 560px;
	z-index: 99;
	overflow: hidden;
	position: relative;
	margin-top: -50px;
}

#section-slider.slider05 .slider-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#section-slider.slider05 .slider-content {
	position: absolute;
	width: 100%;
	top: 30px;
	text-align: center;
	transform: translateY(50%);
}

#section-slider.slider05 .slider-content img {
	width: 40px;
}

#section-slider.slider05 .slider-content span {
	font-size: 14px;
	color: #eeeeee;
	display: inline-block;
	margin-bottom: 16px;
}


/*============================
 *  05. SECTIONS And BLOCKS  *
 *===========================*/
#top-banner {
	padding-top: 100px;
	background-color: var(--primary-bg-color);
	overflow-x: hidden;
}

#section-contents {
	padding: 0 0 30px;
	background-color: var(--primary-bg-color);
	overflow-x: hidden;
	/* 防止右侧出现空白 */
}

#section-slider {
	background-color: var(--primary-bg-color);
}

/* Block Title 1 */
.block-title-1 {
	padding: 12px 30px;
	background-color: #fafafc;
	border: 1px solid #e6e6f2;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.block-title-1 h3 {
	font-size: 14px;
	color: #393e46;
	font-weight: bold;
	display: inline-block;
	letter-spacing: 1px;
	margin-bottom: 0;
}

.block-title-1 h3 span {
	font-size: 14px;
	color: red;
	top: 0;
	left: -2px;
}

.block-title-1 img {
	width: 18px;
	float: right;
}

/* Block Title 2 */
.block-title-2 {
	border-bottom: 2px solid #e5e5e5;
	margin-bottom: 20px;
}

.block-title-2 h3 {
	font-size: 16px;
	font-weight: bold;
	color: #393e46;
	display: inline-block;
	padding-bottom: 13px;
	letter-spacing: 1px;
	margin-bottom: 0;
	position: relative;
}

.block-title-2 h3:before {
	content: '';
	background-color: var(--primary-color);
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
}


/**
 * 5.3. list button
 */

.list-button {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}

.list-button a {
	color: #666;
	display: inline-block;
	padding: 10px;
	min-width: 100px;
	background-color: #eee;
	border-radius: 5px;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border: 1px solid #cccccc;
}

.side-list-button {
	margin-bottom: 30px;
}

.side-list-button .block-content {
	padding: 30px;
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	border-top: none;
	text-align: center;
	vertical-align: middle;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.side-list-button .block-content .block-item .block-button {
	width: 40%;
	height: 54px;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
	background-color: #eee;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-button .block-content .block-item .block-button:hover {
	background-color: var(--primary-color);
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.side-list-button .block-content .block-item .content {
	width: 100%;
	height: 100%;
	display: table;
	text-align: center;
	padding: 5px;
}

.side-list-button .block-content .block-item .content a {
	font-size: 14px;
	color: #6f7885;
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}

.side-list-button .block-content .block-item .block-button:hover a {
	color: #f2f2f2;
}

/**
 * 5.4. DA
 */
.DA {
	text-align: center;
	border-radius: 5px;
}

.DA img {
	border-radius: 5px !important;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.DA img:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.DA-sider {
	margin: 30px 0;
}

/* 最上部实战班 */
.DA-shizhanban {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	background-color: #CBDBE8;
	padding: 5px 8px;
	border-radius: 3px;
}

.DA-shizhanban span {
	top: 0;
	font-size: 14px;
	color: #F00;
	font-weight: bold;
}

.DA-shizhanban img {
	height: 23px;
	margin-right: 8px;
}

/* 频道页中插 */
.DA-channel-middle {
	margin-bottom: 20px;
}

.DA-bg {
	background: url('../images/bg-a-d.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/**
 * 5.5. side list img
 */
.side-list-img {
	padding: 21px 30px;
	background-color: #ffffff;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #e6e6f2;
}

.side-list-img:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.side-list-img .block-wrapper {
	margin-left: -8px;
	margin-right: -8px;
}

.side-list-img .block-content ul {
	padding: 0;
	margin: 0;
	text-align: center;
}

.side-list-img .block-content ul li {
	display: inline-block;
	margin: 8px 8px 11px;
}

.side-list-img .block-content ul li img {
	width: 143px;
	border-radius: 3px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-img .block-content ul li img:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


/**
 * 5.8. list arts
 */
.list-arts {
	margin-bottom: 30px;
}

.list-arts .contents {
	background-color: #ffffff;
	border-radius: 3px;
}

.list-arts .contents:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.list-arts .contents .title-image {
	height: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.list-arts .contents .title-image h3 {
	padding: 10px;
	font-size: 16px;
	color: #6f7885;
	display: table-cell;
	vertical-align: middle;
}

.list-arts .contents .content-wrapper {
	padding: 30px 30px 23px;
	background-color: #ffffff;
}

.list-arts .contents .content-wrapper .date {
	margin-bottom: 5px;
	display: inline-block;
}

.list-arts .contents .content-wrapper .date h5 {
	font-size: 11px;
	color: var(--primary-color);
	letter-spacing: 1px;
	text-transform: uppercase;
}

.list-arts .contents .content-wrapper .title {
	margin-bottom: 10px;
	display: inline-block;
}

.list-arts .contents .content-wrapper .title h2 {
	font-size: 18px;
	color: #393e46;
	line-height: 27px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-arts .contents .content-wrapper .title h2:hover {
	color: var(--primary-color);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

/* Small List Posts */
.list-arts .small-list-posts {
	padding: 20px 20px 15px;
}

.list-arts .small-list-posts .item {
	height: 30px;
	padding-bottom: 10px;
	margin-bottom: 5px;
	border-bottom: 1px dashed #eeeeee;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-arts .small-list-posts .item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.list-arts .small-list-posts .item:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-arts .small-list-posts .item .content {
	width: 100%;
	display: inline-block;
}

.list-arts .small-list-posts .item .content h3,
a {
	font-size: 15px;
	color: #393e46;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-arts .small-list-posts .item:hover h3 {
	padding-left: 10px;
	color: var(--primary-color);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-arts .small-list-posts .item:hover a {
	color: var(--primary-color);
}

.list-arts .small-list-posts .item .content span {
	font-size: 12px;
	color: #6f7885;
	text-align: right;
	top: -1px;
}


/**
 * 5.10. side list withimg
 */
.side-list-withimg .small-list-posts {
	padding: 30px;
	background-color: #ffffff;
	border: 1px solid #e6e6f2;
	border-top: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.side-list-withimg .small-list-posts .item {
	display: inline-block;
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eeeeee;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-withimg .small-list-posts .item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.side-list-withimg .small-list-posts .item:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-withimg .small-list-posts .item .thumbnail-img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    float: left;
    display: flex; /* 改为flex布局以便居中 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    position: relative;
    overflow: hidden;
    background-color: #ddd;
    border-radius: 6px;
}

.side-list-withimg .small-list-posts .item .thumbnail-img img {
    width: 100%; /* 改为100%以填充容器 */
    height: 100%; /* 改为100%以填充容器 */
    border-radius: 6px;
    object-fit: cover; /* 保持比例并覆盖整个容器 */
    object-position: center; /* 确保图片居中裁剪 */
}

.side-list-withimg .small-list-posts .item .content {
	width: 210px;
	padding-top: 6px;
	display: inline-block;
}

.side-list-withimg .small-list-posts .item .content h3 {
	font-size: 14px;
	color: #393e46;
	padding-left: 5px;
}

.side-list-withimg .small-list-posts .item:hover h3 {
	color: var(--primary-color);
}

.side-list-withimg .small-list-posts .item .content span {
	font-size: 12px;
	color: #6f7885;
}

/**
 * 5.10. side list art  侧边：文章列表
 */
.side-list-art {
	margin-bottom: 20px;
}

.side-list-art:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.side-list-art .small-list-posts {
	padding: 6px 20px;
	background-color: #ffffff;
	border: 1px solid #e6e6f2;
	border-top: 0;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.side-list-art .small-list-posts .item {
	display: inline-block;
	width: 100%;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px dashed #eeeeee;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-art .small-list-posts .item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
	padding-bottom: 6px;
}

.side-list-art .small-list-posts .item:hover {
	padding-left: 8px;
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-list-art .small-list-posts .item .content {
	width: 210px;
	padding-top: 6px;
	display: inline-block;
}

.side-list-art .small-list-posts .item a {
	font-size: 14px;
	color: #393e46;
	padding-left: 10px;
}

.side-list-art .small-list-posts .item:hover a {
	color: var(--primary-color);
}

.side-list-art .small-list-posts .item span {
	font-size: 12px;
	color: #999;
	top: -1px;
}


/**
 * 5.12. list item ab
 */
.list-item-ab {
	margin-bottom: 30px;
}

.list-item-ab .contents {
	background-color: #ffffff;
	border-radius: 3px;
}

.list-item-ab .contents:hover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.list-item-ab .contents .thumbnail-1 {
	position: relative;
}

.list-item-ab .contents .thumbnail-1>span {
	font-size: 12px;
	color: #ffffff;
	min-width: 100px;
	height: 28px;
	text-align: center;
	padding: 5px 15px;
	position: absolute;
	top: 87px;
	bottom: 20px;
	left: 25px;
	border-radius: 3px;
	z-index: 99;
}

.list-item-ab .contents .top-bg {
	height: 40px;
	background-size: cover;
	background-repeat: no-repeat;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.list-item-ab .contents img {
	width: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.list-item-ab .contents a:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-item-ab .contents .content-wrapper {
	padding: 30px 30px 23px;
	background-color: #ffffff;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.list-item-ab .contents .content-wrapper .title {
	display: inline-block;
}

.list-item-ab .contents .content-wrapper .title h3 {
	font-size: 18px;
	font-weight: bold;
	color: #393e46;
	line-height: 27px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f96d00;
}

.list-item-ab .contents .content-wrapper .title h3:hover {
	color: var(--primary-color);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-item-ab .contents .content-wrapper .subtitle {
	color: #C18044;
	font-size: 14px;
	margin-bottom: 12px;
}

.list-item-ab .contents .content-wrapper .desc p {
	font-size: 14px;
	line-height: 1.5em;
}

.list-item-ab .contents .content-wrapper .desc span {
	color: gray;
}

.list-item-ab .contents .peoples {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	background-color: #fafafa;
	padding: 12px 30px;
	margin-bottom: 20px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.list-item-ab .contents .peoples p {
	font-size: 13px;
	color: #6f7885;
	line-height: 35px;
}

/* V2 */
.list-item-ab.v2 .contents .content-wrapper .line {
	width: 25%;
}

.list-item-ab.v2 .contents .content-wrapper .title h2 {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 5px;
}

.list-item-ab.v2 .contents .content-wrapper .line {
	margin-bottom: 17px;
}


/**
 * 5.14. list item lr - 左右图文项目列表
 */
.list-item-lr {
	background-color: #ffffff;
	min-height: 205px;
	margin-bottom: 30px;
}

.list-item-lr .contents .thumbnail-1 {
    display: inline-block;
    float: left;
    width: 205px;
    height: 205px;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

.list-item-lr .contents .thumbnail-1>span {
    font-size: 12px;
    color: #ffffff;
    background-color: #ff5738;
    text-align: center;
    padding: 3px 10px;
    position: absolute;
    top: 8px;
    left: 5px;
    border-radius: 3px;
    z-index: 99;
}

.list-item-lr .contents .thumbnail-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* 显式设置居中裁剪 */
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.list-item-lr .contents .thumbnail-1 a:hover {
	opacity: 0.9;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.list-item-lr .contents .content-wrapper {
	width: 565px;
	display: inline-block;
	padding: 15px 30px;
	background-color: #ffffff;
}

.list-item-lr .contents .content-wrapper .fr {
	text-align: right;
}

.list-item-lr .contents .content-wrapper .fr span {
	font-size: 12px;
	display: inline-block;
}

.list-item-lr .contents .content-wrapper span {
	left: -5px;
}

.list-item-lr .contents .content-wrapper span a {
	font-size: 12px;
	color: blue;
}

.list-item-lr .contents .content-wrapper span a:hover {
	font-size: 12px;
	color: var(--primary-color);
}

.list-item-lr .contents .content-wrapper .title {
	display: inline-block;
	margin-bottom: 10px;
}

.list-item-lr .contents .content-wrapper .title h4 {
	font-size: 20px;
	color: #393e46;
	font-weight: bold;
}

.list-item-lr .contents .content-wrapper .title h4:hover {
	color: var(--primary-color);
}

.list-item-lr .contents .content-wrapper .title span {
	top: -3px;
}

.list-item-lr .contents .desc p {
	font-size: 13px;
	color: #333;
	line-height: 1.5em;
}

.list-item-lr .contents .desc a {
	font-size: 13px;
	color: green;
}

.list-item-lr .contents .desc a:hover {
	font-size: 13px;
	color: var(--primary-color);
}

/**
 * 左右图文项目列表-文章（结合list-item-lr使用）
 */
.list-item-arts {
	min-height: 150px;
	margin-bottom: 20px;
}

.list-item-arts .contents .thumbnail-1 {
	width: 150px;
	height: 150px;
}

.list-item-arts .contents .content-wrapper {
	width: 620px;
	padding: 10px 30px;
}

.list-item-arts .contents .content-wrapper .title {
	margin-bottom: 0;
}

.list-item-arts .contents .content-wrapper span a {
	color: green;
}


/**
 * 5.22. art detail
 */
.art-detail {
	margin-bottom: 20px;
	border-radius: 5px;
}

.art-detail .art-content {
	padding-bottom: 30px;
}

.art-detail .art-content .top {
	background-color: #fff;
	border-radius: 5px;
	padding: 20px;
}

.art-detail .art-content h3 {
	text-align: center;
	line-height: 27px;
	margin-bottom: 33px;
}

.art-detail .art-content,
.art-detail .art-content p {
	color: #000;
}

.art-detail .art-content,
.art-detail .art-content p,
.art-detail .art-content h3,
.art-detail .art-content span {
	font-size: 16px;
}

.art-detail .art-content .top-header {
	background-color: #DFF5E0;
	border-radius: 5px;
}

.art-detail .art-content .author {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	flex-wrap: wrap;
	margin: 8px;
}

.art-detail .art-content .author img {
	width: 25px;
	height: 25px;
	margin: 3px 8px;
	border-radius: 50%;
	object-fit: cover;
}

.art-detail .art-content .author a {
	color: blue;
	font-size: 14px;
}

.art-detail .art-content .author a:hover {
	color: var(--primary-color);
}

.art-detail .art-content .author span,
.art-detail .art-content .subtitle span {
	color: #fff;
	font-size: 12px;
}
.art-detail .art-content .author span {
	top:-2px;
}

.art-detail .art-content .bodyContent {
	padding: 30px 20px;
	border-radius: 0 0 5px 5px;
	background: #fff;
	line-height: 1.8em;
}

.art-detail .art-content .bodyContent span {
	color: #000;
	font-size: inherit;
	top: 0;
	left: -3px;
}

.art-detail .art-content .bodyContent a {
	font-size: inherit;
	left: -3px;
}

.bodyContent img {
	max-width: 100%;
	margin-top: 5px;
	margin-bottom: 5px;
	border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/**
 * 5.27. page form -页面表单
 */
.page-form {
	font-size: 14px;
	padding: 30px 20px 10px;
	border-radius: 5px;
	border: 1px solid #eeeeee;
	position: relative;
	z-index: 99;
	background-color: #ffffff;
}

.page-form h3 {
	font-size: 18px;
	color: #393e46;
	margin-bottom: 30px;
}

.page-form a {
	color: blue;
	font-size: inherit;
}

.page-form a:hover {
	color: var(--primary-color);
}

.page-form img {
	width: auto;
}

.page-form .form-content .form-group {
	margin-bottom: 20px;
}

.page-form .form-content form .row:last-of-type .form-group {
	margin-bottom: 0;
}

.page-form .form-content input,
.page-form .form-content select,
.page-form .form-content textarea {
	color: #6f7885;
	border: 2px solid #eeeeee !important;
	background: transparent;
	border-radius: 3px;
	padding: 8px 10px;
	letter-spacing: 0;
}

.page-form .form-content input[type='text'],
.page-form .form-content textarea {
	width: 100%;
}

.page-form .form-content input:focus,
.page-form .form-content textarea:focus {
	border: 2px solid #d8d8d8 !important;
}

.page-form .form-content textarea {
	font-size: 14px !important;
	height: 122px;
}

.page-form .form-content .form-row>.col,
.page-form .form-content .form-row>[class*=col-] {
	padding-right: 15px;
	padding-left: 15px;
}

.page-form .form-content ::-webkit-input-placeholder {
	color: #6f7885;
}

.page-form .form-content ::-moz-placeholder {
	color: #6f7885;
}

.page-form .form-content :-ms-input-placeholder {
	color: #6f7885;
}

.page-form .form-content :-moz-placeholder {
	color: #6f7885;
}

.page-form .form-content button {
	background: var(--primary-color);
	color: #ffffff;
	border: none;
	padding: 10px 15px;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.page-form .form-content button:hover {
	background: #d9d9d7;
	color: #6f7885;
}

.page-form .form-content .user-icon {
	top: 22px;
	margin-left: 28px;
	display: inline-block;
	position: relative;
}

.page-form .form-content .user-icon svg {
	width: 20px;
	fill: #6f7885;
}

.page-form .form-content .note {
	background-color: #eee;
	border-radius: 5px;
	margin: 10px 10px 20px 10px;
	padding: 10px;
	width: auto;
}

.page-form .form-content .note a {
	color: var(--primary-color);
}

/**
 * 5.29. user login page
 */
.user-login-page {
	border-radius: 5px;
	position: relative;
	max-width: 570px;
	margin: 40px auto 0;
	z-index: 99;
	text-align: center;
}

.user-login-page .login-wrapper {
	padding: 30px 50px 20px;
	border-bottom: 1px solid #eeeeee;
	background-color: #ffffff;
	border-radius: 5px;
}

.user-login-page .login-wrapper h3 {
	font-size: 24px;
	font-weight: bold;
	color: #393e46;
	margin-bottom: 40px;
}

.user-login-page .login-wrapper .note {
	background-color: #FFC;
	color: #FF0000;
	border-radius: 3px;
	padding: 5px;
	margin-bottom: 20px;
	text-align: center;
}

.user-login-page .form-content .form-group {
	font-size: 16px;
	margin-bottom: 20px;
}

.user-login-page .form-content input {
	color: #6f7885;
	font-size: 16px;
	border: 1px solid #ccc !important;
	background: transparent;
	border-radius: 3px;
	padding: 8px 30px;
	letter-spacing: 0;
}

.user-login-page .form-content button {
	font-size: 16px;
	background: var(--primary-color);
	color: #ffffff;
	border: none;
	padding: 8px 15px;
	width: 100%;
	max-width: 370px;
	margin-top: 7px;
	margin-bottom: 18px;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.user-login-page .form-content button:hover {
	opacity: 0.9;
}

.user-login-page .form-content p {
	color: #6f7885;
	font-size: 16px;
}

.user-login-page .form-content img {
	width: 40px;
}

.user-login-page .form-content p.tnc a {
	color: var(--primary-color);
}

.user-login-page .form-content ul {
	padding: 0;
	margin: 0;
	margin-top: 4px;
}

.user-login-page .form-content ul li {
	list-style: none;
	display: inline-block;
	margin: 0 10px;
}

.user-login-page .form-content ul li a {
	font-size: 16px;
	color: #8c929a;
}

.user-login-page .form-content ul li a:hover {
	text-decoration: underline;
}

.user-login-page .form-content ul li a.register {
	color: var(--primary-color);
}



/**
 * 5.32. side login
 */
.side-login {
	margin-bottom: 30px;
}

.side-login .block-content {
	padding: 20px 30px;
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	border-top: none;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

/* 登录框 */
.side-login .login-form .form-group {
	margin-bottom: 15px;
}

.side-login .login-form input {
	height: 35px;
	color: #6f7885;
	font-size: 14px;
	border: 1px solid #eeeeee !important;
	background: transparent;
	border-radius: 3px;
	padding: 10px 30px;
	letter-spacing: 0;
}

.side-login .login-form button {
	height: 35px;
	font-size: 14px;
	background: var(--primary-color);
	color: #ffffff;
	border: none;
	padding: 10px 15px;
	width: 100%;
	max-width: 370px;
	margin-top: 7px;
	margin-bottom: 18px;
	border-radius: 3px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-login .login-form button:hover {
	opacity: 0.9;
}

.side-login .login-form p {
	color: #6f7885;
	font-size: 14px;
}

.side-login .login-form p.tnc a {
	color: var(--primary-color);
}

.side-login .login-form ul {
	padding: 0;
	margin: 0;
	margin-top: 4px;
}

.side-login .login-form ul li {
	list-style: none;
	display: inline-block;
	margin: 0 10px;
}

.side-login .login-form ul li a {
	font-size: 14px;
	color: #8c929a;
}

.side-login .login-form ul li a:hover {
	text-decoration: underline;
}

.side-login .login-form ul li a.register {
	color: var(--primary-color);
}

/**
 * 5.33. 友情链接
 */
.friendly-link {
	margin-bottom: 5px;
}

.friendly-link .block-content {
	border-top: none;
}

.friendly-link .block-content .block-item .block-button {
	width: 100%;
	height: 40px;
	text-align: center;
	display: inline-block;
	border-radius: 4px;
	background-color: #fff;
}

.friendly-link .block-content .block-item .block-button:hover {
	background-color: var(--primary-color);
	border-bottom: 3px solid #900;
}

.friendly-link .block-content .block-item .content {
	width: 100%;
	height: 100%;
	display: table;
	text-align: center;
	padding: 5px;
}

.friendly-link .block-content .block-item .content a {
	font-size: 14px;
	color: #6f7885;
	width: 100%;
	display: table-cell;
	vertical-align: middle;
}

.friendly-link .block-content .block-item .block-button:hover a {
	color: #f2f2f2;
}

/**
 * PAGES
 */
#section-contents.art-detail {
	background-color: #ffffff;
	padding: 30px 0 0;
}

#section-contents.contact {
	padding: 30px 0 100px;
	background-color: var(--primary-bg-color);
}

#section-contents.error-404 {
	padding: 65px 0 65px;
	background-color: #f1ddca;
}

/*============================
 *    06. SECTION FOOTER     *
 *===========================*/
#section-footer {
	padding-top: 60px;
	position: relative;
	background-color: #2d323a;
}

#section-footer .ft-column {
	margin-bottom: 30px;
}

#section-footer .ft-column img {
	width: 15px;
}

#section-footer .ft-column .logo {
	margin-bottom: 35px;
}

#section-footer .ft-column p {
	font-size: 14px;
	color: #6f7885;
	line-height: 30px;
}

#section-footer .ft-column h4 {
	font-size: 18px;
	margin-bottom: 35px;
	color: #eeeeee;
}

#section-footer .ft-column ul {
	padding: 0;
	margin: 0;
}

#section-footer .ft-column li {
	list-style: none;
	margin-bottom: 10px;
}

#section-footer .ft-column ul.list li a,
#section-footer .ft-column a {
	font-size: 14px;
	color: #6f7885;
	left: 0;
	position: relative;
}

#section-footer .ft-column ul.list li a:hover,
#section-footer .ft-column a:hover  {
	color: #ffffff;
	left: 5px;
	position: relative;
}

#section-footer .ft-column ul.ft_social_links {
	margin-top: 35px;
}

#section-footer .ft-column ul.ft_social_links li {
	display: inline-block;
	width: 45px;
	height: 45px;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #41464f;
	margin-right: 10px;
	margin-bottom: 0;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#section-footer .ft-column ul.ft_social_links li:last-child {
	margin-right: 0;
}

#section-footer .ft-column ul.ft_social_links li:hover {
	background-color: var(--primary-color);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

#section-footer .ft-column ul.ft_social_links li a {
	color: #6f7885;
	font-size: 13px;
	line-height: 45px;
	display: block;
}

#section-footer .ft-column ul.ft_social_links li:hover a {
	color: #ffffff;
}

#section-footer .ft-column ul.ft_social_links li a i {
	line-height: 45px;
}

#section-footer .gongzhonghao {
	margin-bottom: 50px;
}

#section-footer .gongzhonghao img {
	width: 200px;
	border-radius: 3px;
}

/* Copyright */
#section-footer .copyright {
	font-size: 14px;
	padding: 10px 0;
	margin-top: 50px;
	background-color: #282c33;
}

#section-footer .copyright p {
	color: #6f7885;
}

#section-footer .copyright p a {
	color: #ffffff;
}

#section-footer .copyright p a:hover {
	color: var(--primary-color);
}


/*============================
 *      07. 响应式       *
 *===========================*/

@media only screen and (min-width:1904px) {
	.navbar-menu .navbar-brand.background-logo:before {
		width: 1604px;
		left: -1470px;
	}
}

@media only screen and (max-width:1366px) {
	.side-list-button0 .logo {
		margin-bottom: 70px;
	}
}

@media only screen and (min-width:1200px) {
	.container {
		max-width: 1170px;
		padding-right: 0;
		padding-left: 0;
	}

	#section-footer .ft-column:nth-of-type(1) p {
		padding-right: 65px;
	}

	.art-content h1 {
		max-width: 910px;
		margin: 0 auto;
	}
}

@media only screen and (max-width:1199px) {

	/** NAVIGATION & TOPBAR **/
	.topbar-01 .left .searchbar {
		width: 70%;
	}

	/** /.NAVIGATION & TOPBAR **/
	.pagination .page-item:first-child .page-link,
	.pagination .page-item:last-child .page-link {
		width: 120px;
	}

	.side-list-img .block-content ul li img {
		width: 105px;
	}

	/** 最近阅读者 **/
	.recent-reader .recent-reader-content .item {
		width: 72px;
	}
}

@media only screen and (min-width:992px) and (max-width:1199px) {

	/** NAVIGATION & TOPBAR **/
	.navbar-menu .navbar-nav .nav-item .nav-link {
		padding: 20px 15px;
	}

	/** /.NAVIGATION & TOPBAR **/
	.side-list-button .block-content .block-item .block-left {
		width: 145px;
		margin-right: 10px;
	}

	.side-list-button .block-content .block-item .block-left .followers {
		width: 95px;
		padding: 0 10px;
	}

	.side-list-button .block-content .block-item .block-left .social {
		width: 45px;
	}

	.list-arts .small-list-posts .item .content {
		width: 135px;
	}

	.side-list-withimg .small-list-posts .item .content {
		padding-top: 0;
		width: 133px;
	}

	.list-item-lr .contents .content-wrapper {
		width: 410px;
		padding: 20px 15px;
	}

	.list-item-lr .contents .content-wrapper .title {
		margin-bottom: 0px;
	}

	.list-item-lr .contents .content-wrapper>span {
		margin-bottom: 2px;
	}

	.list-item-arts .contents .content-wrapper {
		width: 100%;
	}
}

@media only screen and (min-width:992px) {

	/** NAVIGATION & TOPBAR **/
	.navbar-menu.navbar .dropdown-menu {
		background-color: #fff;
		border-radius: 8px;
		border: none;
		display: block;
		padding: 15px 0;
		margin-top: 2px;
		opacity: 0;
		left: 0;
		right: 0;
		top: 96%;
		width: 270px;
		-webkit-transition: 0.2s linear all;
		-moz-transition: 0.2s linear all;
		-ms-transition: 0.2s linear all;
		-o-transition: 0.2s linear all;
		transition: 0.2s linear all;
		visibility: hidden;
	}

	.navbar-menu.navbar .dropdown:hover>.dropdown-menu {

		opacity: 1;
		transform: none;
		-webkit-transition: 0.2s linear all;
		-moz-transition: 0.2s linear all;
		-ms-transition: 0.2s linear all;
		-o-transition: 0.2s linear all;
		transition: 0.2s linear all;
		visibility: visible;
	}

	.navbar-menu.navbar .dropdown-submenu {
		position: relative;
	}

	.navbar-menu.navbar .dropdown-menu .dropdown-menu {
		left: 100%;
		top: -15px;
		margin-top: 0;
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.navbar-menu.navbar .dropdown-submenu:hover>.dropdown-menu {
		opacity: 1;
		visibility: visible;
		-webkit-transition: 0.2s linear all;
		-moz-transition: 0.2s linear all;
		-ms-transition: 0.2s linear all;
		-o-transition: 0.2s linear all;
		transition: 0.2s linear all;
	}

	nav.navbar-menu.navbar .mega-menu .dropdown-menu {
		padding: 0;
		width: 100%;
		max-width: 1170px;
		margin-top: 2px;
	}

	/** /.NAVIGATION & TOPBAR **/


	/** 调取6个文章列表时的高度 **/
	.height-6row {
		height: 248px;
	}

	/** 调取10个文章列表时的高度 **/
	.height-10row {
		height: 380px;
	}

	.art-content .ArtContent {
		padding: 8px;
	}
}

@media only screen and (max-width:991px) {
	/** 该分辨率及以下，不显示右边侧边栏 **/

	/** NAVIGAITON & TOPBAR **/
	#navbarSupportedContent {
		position: absolute;
		top: 63px;
		background-color: #393e46;
		padding: 15px 20px 20px;
		width: 250px !important;
		/* 导航栏宽度 */
		left: 10px;
		/* 居左对齐 */
		height: auto !important;
		overflow-y: auto;
		border-radius: 8px;
		box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.5);
	}

	.navbar-menu .navbar-container {
		justify-content: flex-start;
		position: relative;
		padding-left: 15px;
		padding-right: 15px;
	}

	.navbar-menu .navbar-collapse .navbar-nav .nav-item .nav-link {
		padding: 6px 0;
		font-size: 16px;
		color: #6f7885;
	}

	.navbar-menu .navbar-collapse .navbar-nav .nav-item .nav-link:last-child {
		border-bottom: none;
	}

	.navbar-menu .navbar-nav .nav-item .nav-link:before {
		display: none;
	}

	.navbar-menu #sidebarCollapse {
		margin-left: auto;
		padding-right: 0;
		padding-left: 0;
	}

	nav.navbar-menu.navbar .mega-menu .dropdown-menu li .container .item {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.topbar-01 .left .searchbar {
		width: 59%;
	}

	.topbar-01 .left .searchbar form input[type="text"] {
		padding-left: 15px;
	}

	.topbar-01 .left .searchbar form img {
		right: 15px;
	}

	.navbar-menu .dropdown-submenu .dropdown-submenu ul.dropdown-menu {
		border-radius: 0;
		width: 100.1%;
	}

	.navbar-menu .navbar-nav .nav-item.dropdown-submenu.dropdown .nav-link:after,
	.navbar-menu .navbar-nav .nav-link.dropdown-toggle:after {
		color: #6f7885;
	}

	.navbar-menu .dropdown-item {
		padding: 5px 15px 5px 30px;
		font-size: 15px;
	}

	.navbar-menu .dropdown-submenu ul.dropdown-menu>li:before {
		display: none;
	}

	.navbar-menu .dropdown-submenu .dropdown-submenu ul.dropdown-menu>li .dropdown-item {
		padding: 5px 5px 5px 30px;
	}

	.navbar-menu .dropdown-submenu ul.dropdown-menu>li a.dropdown-item:hover {
		left: 0;
	}

	.navbar-menu .navbar-nav .nav-item .nav-link:after {
		display: none;
	}

	nav.navbar-menu.navbar .mega-menu .dropdown-menu {
		padding: 0 0 0 30px;
	}

	nav.navbar-menu.navbar .mega-menu .dropdown-menu li .container {
		background-image: none;
		padding: 0;
	}

	nav li.mega-menu h6 {
		color: #6c7885;
	}

	.navbar-menu .megamenu-heading {
		font-size: 15px;
		cursor: pointer;
		padding: 5px 0;
		position: relative;
	}

	.navbar-menu .megamenu-heading:after {
		content: "\f107";
		float: right;
		font-family: fontawesome;
		line-height: 30px;
		position: absolute;
		right: 0;
		top: 0;
	}

	nav li.mega-menu h6:after {
		left: auto;
	}

	.navbar-menu .megamenu-dropdown-list {
		display: none;
	}

	.navbar-menu .megamenu-dropdown-list.active {
		display: flex;
		flex-direction: column;
		margin-bottom: 15px;
	}

	.navbar-menu .megamenu-dropdown-list a {
		cursor: pointer;
	}

	nav li.mega-menu h6 {
		margin-bottom: 5px;
	}

	nav li.mega-menu h6:before {
		display: none;
	}

	nav.navbar-menu .mega-menu .megamenu-dropdown-list li a {
		padding: 5px 0 5px 10px;
	}

	nav.navbar-menu .mega-menu .col-lg-2.col-md-2.mt-md-2.mb-md-2.mt-lg-2.mb-lg-2 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.navbar-menu .navbar-nav .mega-menu a.nav-link.dropdown-toggle:after {
		content: '\f078';
		font-family: fontawesome;
		display: inline-block;
		color: #666e7a;
		font-size: 8px;
		margin-left: 10px;
		position: relative;
		top: 1px;
		left: -9px;
	}

	.navbar-search {
		position: absolute;
		right: 60px;
	}

	/** /.NAVIGATION & TOPBAR **/

	.list-arts .small-list-posts .item .content {
		width: 380px;
	}

	.list-item-lr {
		min-height: auto;
	}

	.list-item-lr,
	.list-item-lr .contents .content-wrapper {
		border-radius: 5px;
	}

	.list-item-lr .contents .content-wrapper {
		width: 100%;
		padding: 20px 20px;
	}

	.list-item-lr .contents .content-wrapper .title span {
		top: -4px;
	}

	.side-list-img .block-content ul li img {
		width: 130px;
	}

	.block-style-11 .recent-comments .item .comment-img img {
		margin-bottom: 10px;
	}

	#top-banner {
		padding-top: 80px;
	}

	#section-contents {
		padding: 0 0 30px;
	}

	/* 标签：灰字浅蓝底 */
	.tag-keyword {
		padding: 4px 8px;
	}

	/** 作品页上部 **/
	.art-detail .art-content .top-header {
		border-radius: 5px;
		padding-bottom: 8px;
	}

	/** 集次（章次）列表 **/
	.episodeNo {
		margin: 20px 0;
	}

	.episodeNolist {
		min-width: 73px;
	}

	/** 最近阅读者 **/
	.recent-reader .recent-reader-content .item {
		width: 83px;
	}
}

@media only screen and (min-width:768px) {
	.masonry-mode01.card-columns {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		-moz-column-gap: 30px;
		column-gap: 30px;
		orphans: 1;
		widows: 1;
	}
}

@media only screen and (max-width:769px) {
	/** NAVIGATION & TOPBAR **/

	.navbar-menu .navbar-brand:before {
		left: auto;
		right: 0;
	}

	.topbar-01 .left {
		padding-right: 0;
		padding-left: 0;
	}

	.topbar-01 .left .today {
		display: none;
	}

	.topbar-01 .left .searchbar {
		width: 100%;
	}

	.topbar-01 .right {
		position: unset;
	}

	.topbar-01 .right .notification {
		display: none;
	}

	.topbar-01 .right .user-profile {
		top: 8px;
	}

	.navbar-menu .navbar-brand.background-logo:before {
		left: auto;
		right: 0;
	}

	/** /.NAVIGATION & TOPBAR **/

	.DA img {
		border-radius: 0;
	}

	#section-slider.slider01 .slider-content .left h1 {
		font-size: 30px;
		line-height: 40px;
		margin-bottom: 25px;
	}

	.side-list-button .block-content {
		padding: 30px 15px;
	}

	.side-list-img {
		padding: 23px 15px;
	}

	.block-style-6 .tweets {
		padding: 30px 15px;
	}

	.list-arts .contents .content-wrapper {
		padding: 30px 15px 23px;
	}

	.list-arts .small-list-posts {
		padding: 30px 15px;
	}

	.list-arts .small-list-posts .item .content {
		width: 165px;
	}

	.list-arts .contents .thumbnail-1 .overlay .overlay-content {
		left: 15px;
	}

	.side-list-withimg .small-list-posts {
		padding: 30px 15px;
	}

	.side-list-withimg .small-list-posts .item .content {
		padding-top: 0;
		width: 163px;
	}

	.pagination .page-item:first-child .page-link,
	.pagination .page-item:last-child .page-link {
		width: 80px;
	}

	.pagination .page-link {
		padding: 10px 0;
		width: 40px;
	}

	.pagination .page-item:last-child .page-link {
		margin-left: 15px;
	}

	.pagination .page-item:first-child .page-link {
		margin-right: 15px;
	}

	/** 左右图文 **/
	.list-item-lr .contents .thumbnail-1 {
		width: 100%;
	}

	.list-item-lr .contents .thumbnail-1 img {
		height: 300px;
	}

	.list-item-lr .contents .content-wrapper {
		width: 100%;
		padding: 15px 15px;
	}

	.list-item-lr .contents .content-wrapper>span {
		margin-bottom: 10px;
	}

	.list-item-lr .contents .content-wrapper .title {
		margin-bottom: 0px;
	}

	.list-item-lr .contents .desc p {
		font-size: 15px;
	}

	.art-content {
		margin-bottom: 0;
	}

	.art-content h1 {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 50px !important;
	}

	#section-contents.art-detail {
		padding: 30px 0 0;
	}

	.page-form {
		padding: 47px 30px 27px;
		font-size: 16px;
	}
	.page-form .form-content textarea {
		font-size: 16px !important;
	}

	.page-form .form-content .checkbox {
		padding: 15px 15px 15px 15px;
		width: 100%;
	}

	.page-form .form-content .user-icon {
		display: none;
	}

	.page-form .form-content .form-group {
		margin-bottom: 20px;
	}

	/** 最近阅读者 **/
	.recent-reader .recent-reader-content .item {
		width: 80px;
	}
}

@media only screen and (max-width:768px) {
	body {
		font-size: 17px;
	}

	header {
		margin-bottom: -28px;
	}

	/* 客服图标 */
	.topbar-01 .right .kefu {
		top:-1px;
	}

	/* 粘性定位：内容下拉至底部后固定在页面上 */
	.box-sticky {
		position: static;
		top: 0;
	}

	/** 导航栏 **/
	.navbar-brand {
		margin-right: 0;
	}

	.nav-item ul li,
	.nav-item a {
		width: 100%;
	}

	.topbar-01 .left .searchbar ::-webkit-input-placeholder {
		font-size: 13px;
	}

	.topbar-01 .left .searchbar ::-moz-placeholder {
		font-size: 13px;
	}

	.topbar-01 .left .searchbar :-ms-input-placeholder {
		font-size: 13px;
	}

	.topbar-01 .left .searchbar :-moz-placeholder {
		font-size: 13px;
	}

	.DA-shizhanban span {
		font-size: 17px;
	}

	/* 标签 */
	.tag,
	.tag a,
	.tag a:hover {
		font-size: 14px !important;
	}

	/* 字体 */
	.font-14,
	.font-14:hover,
	.font-14 a,
	.font-14 span {
		font-size: 17px;
	}


	/* 会员登录页 */
	#section-slider.slider05 {
		bottom: 0;
	}

	#section-slider.slider05 .slider-content {
		top: 0;
	}

	.user-login-page .login-wrapper {
		padding: 30px 20px;
	}

	.user-login-page .form-content .form-group {
		margin-bottom: 15px;
	}

	.side-list-button .block-content .block-item .block-left {
		width: 154px;
		margin-right: 10px;
	}

	.side-list-button .block-content .block-item .block-left .followers {
		width: 104px;
		padding: 0 15px;
	}

	.side-list-button .block-content .block-item .block-button {
		width: 94px;
	}

	.side-list-img .block-wrapper {
		margin-left: -6px;
		margin-right: -6px;
	}

	.side-list-img .block-content ul li {
		margin: 6px 6px 9px;
	}

	.side-list-img .block-content ul li {
		width: 122px;
	}

	.page-form {
		padding: 30px 20px 20px;
	}

	.page-form .form-content button {
		margin-bottom: 0;
	}

	.block-style-28 .description {
		padding: 40px 20px 50px;
	}

	.block-style-28 .description .btn-buy a {
		padding: 15px 20px;
	}

	/** 纯文字作品列表 **/
	.list-arts .small-list-posts {
		padding: 10px;
	}

	.list-arts .small-list-posts .item .content h3,
	a {
		font-size: 17px;
	}

	.list-arts .small-list-posts .item .content span {
		font-size: 15px;
	}

	/** 侧边栏标题 **/
	.block-title-1 h3,
	.block-title-1 h3 span {
		font-size: 17px;
	}

	/** 侧边栏作品列表 **/
	.side-list-art .small-list-posts .item a {
		font-size: 17px;
	}

	.side-list-art .small-list-posts .item span {
		font-size: 15px;
	}

	/* 高亮区域 */
	.highlight,
	.highlight a {
		font-size: 15px;
	}

	/* 小字号内容 */
	.content-small {
		font-size: 15px;
		padding: 10px;
		border-radius: 5px;
	}

	.content-small a,
	.content-small span {
		font-size: inherit !important;
	}

	/** 集次（章次）列表 **/
	.episodeNolist {
		min-width: 66px;
	}

	/** 作品页的作者部分，小屏幕上显示为两行 **/
	.art-content .author {
		flex-direction: column;
	}

	/** 作品页正文tab **/
	.tab li {
		font-size: 14px;
		padding: 10px 3px 8;
		min-width: 75px;
		margin-right: 8px;
	}

	.tab li:last-child {
		margin-right: 0;
	}

	.tab .curr {
		padding-top: 10px;
	}

	/* 作品页 */
	.btn-readBodyContent {
		margin: 20px 0 0;
	}

	.art-detail .art-content .top {
		padding: 0 0 25px;
	}

	.title-art,
	.title-art p,
	.title-art a {
		font-size: 24px;
		padding: 5px 5px 20px;
	}

	.title-art span {
		font-size: 15px;
	}

	.art-detail .art-content .bodyContent {
		padding: 30px 10px 20px;
	}

	.art-detail .art-content .bodyContent,
	.art-detail .art-content .bodyContent p,
	.art-detail .art-content .bodyContent span,
	.art-detail .art-content .bodyContent a {
		font-size: 18px;
	}


	/*上一篇、下一篇*/
	.art-previous-next {
		margin: 30px 15% 0;
	}

	.art-previous-next .ThePrevious,
	.art-previous-next .TheNext,
	.art-previous-next .TheEnd-Previous,
	.art-previous-next .TheEnd-Next {
		width: 38%;
	}

	/** 上下图文 **/
	.list-item-ab .contents .content-wrapper .desc p {
		font-size: 15px;
	}

	.list-item-ab .contents .peoples p {
		font-size: 15px;
	}

	/** 左右图文 **/
	.list-item-lr .contents .content-wrapper .title h2 {
		line-height: 33px;
	}

	.list-item-lr .contents .content-wrapper .title span,
	.list-item-lr .contents .content-wrapper .title span a {
		font-size: 15px;
	}

	.list-item-lr .contents .content-wrapper .title span {
		top: -6px;
	}

	.list-item-lr .contents .content-wrapper .desc {
		padding-bottom: 10px;
	}

	.list-item-lr .contents .desc a,
	.list-item-lr .contents .desc a:hover {
		font-size: 16px;
	}

	/* 取消缩略图的高度限制，以便自适应 */
	.list-item-lr .contents .thumbnail-1,
	.list-item-lr .contents .thumbnail-1 img {
		height: auto;
	}

	/** 评论 **/
	.comment-add,
	.comment-add a,
	.comment-add span,
	.comment-add form input[type='text'],
	input[type='radio'],
	textarea,
	textarea:hover,
	.comments-list .contents {
		font-size: 17px !important;
	}

	/** 顶踩收藏区域 **/
	.dig {
		margin-bottom: 0;
	}

	.dig .note {
		background: #fff;
		padding: 5px 10px;
	}

	.action-item {
		padding: 8px 10px;
		gap: 5px;
	}
	

	/** 空白 **/
	.ts-space40,
	.ts-space45,
	.ts-space50 {
		height: 30px;
	}

	/** 最近阅读者 **/
	.recent-reader .recent-reader-content .item {
		width: 77px;
	}
}
