@charset "utf-8";
/* 自定义样式前缀加 wj- */
.wj-bg-gradient {
	background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
}

.wj-navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wj-card {
	transition: transform 0.3s, box-shadow 0.3s;
	border: none;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.wj-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.wj-btn-primary {
	background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
	border: none;
	border-radius: 30px;
	padding: 10px 25px;
	font-weight: 600;
}

.wj-btn-primary:hover {
	background: linear-gradient(135deg, #162172 0%, #1fc7c5 100%);
	transform: translateY(-2px);
}

.wj-tag {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

.wj-hot {
	background-color: rgba(255, 59, 48, 0.1);
	color: #ff3b30;
}

.wj-breaking {
	background-color: rgba(255, 149, 0, 0.1);
	color: #ff9500;
}

.wj-exclusive {
	background-color: rgba(52, 199, 89, 0.1);
	color: #34c759;
}

.wj-section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.wj-section-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #1a2980 0%, #26d0ce 100%);
	border-radius: 2px;
}

.wj-trending-box {
	background: rgba(248, 249, 250, 0.7);
	border-left: 4px solid #1a2980;
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 0 8px 8px 0;
}

.wj-footer {
	background: linear-gradient(135deg, #2c3e50 0%, #4a235a 100%);
	color: #FFFFFF;
}

.wj-footer-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}

.wj-footer-title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: linear-gradient(90deg, #26d0ce 0%, #1a2980 100%);
	border-radius: 2px;
}

.wj-form-control {
	border-radius: 30px;
	padding: 12px 20px;
}

.wj-input-group {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border-radius: 30px;
}

.wj-social-icon {

	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	transition: background 0.3s;
}

.wj-social-icon:hover {
	background: #26d0ce;
}

.wj-hero-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	background: linear-gradient(90deg, #1a2980, #26d0ce);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wj-bg-primary {
	background-color: #0066cc;
}
.wj-card-hover:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.wj-card-hover:hover {
	transform: translateY(-5px);
	transition: transform 0.3s ease;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}










:root {
	--primary-color: #1a56db;
	--secondary-color: #0e2a52;
	--accent-color: #ff6b35;
	--light-color: #f8f9fa;
	--dark-color: #212529;
}

/* 自定义样式前缀 */
.kjcjsb-bg-primary {
	background-color: var(--primary-color) !important;
}

.kjcjsb-text-primary {
	color: var(--primary-color) !important;
}

.kjcjsb-btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	transition: all 0.3s ease;
}

.kjcjsb-btn-primary:hover {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.kjcjsb-section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: 2px solid #eaeaea;
}

.kjcjsb-section-title:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 80px;
	height: 2px;
	background: var(--accent-color);
}

.kjcjsb-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 20px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.kjcjsb-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.kjcjsb-card-img-top {
	height: 180px;
	object-fit: cover;
}

.kjcjsb-badge {
	background-color: var(--accent-color);
	color: white;
	font-weight: 500;
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 0.8rem;
}

.kjcjsb-tag {
	display: inline-block;
	padding: 4px 12px;
	background: #f0f4f8;
	border-radius: 20px;
	font-size: 0.85rem;
	margin: 2px;
	color: #4a5568;
	transition: all 0.2s;
}

.kjcjsb-tag:hover {
	background: var(--primary-color);
	color: white;
	text-decoration: none;
}

.kjcjsb-featured-post {
	position: relative;
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 30px;
}

.kjcjsb-featured-post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kjcjsb-featured-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	color: white;
}

.kjcjsb-newsletter {
	background: linear-gradient(135deg, #1a56db 0%, #0e2a52 100%);
	color: white;
	border-radius: 10px;
	padding: 30px;
}

/* 增强的头部样式 */
.kjcjsb-header {
	background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	padding: 5px 0;
}

.kjcjsb-top-bar {
	background-color: rgba(0,0,0,0.1);
	padding: 8px 0;
	font-size: 0.9rem;
}

.kjcjsb-top-bar a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.2s;
	margin-right: 15px;
}

.kjcjsb-top-bar a:hover {
	color: white;
}

.kjcjsb-top-bar i {
	margin-right: 5px;
}

.kjcjsb-navbar {
	padding: 15px 0;
}

.kjcjsb-navbar .navbar-brand {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
}

.kjcjsb-navbar .nav-link {
	color: rgba(255,255,255,0.9) !important;
	font-weight: 500;
	padding: 8px 15px !important;
	margin: 0 5px;
	border-radius: 4px;
	transition: all 0.3s;
}

.kjcjsb-navbar .nav-link:hover {
	background: rgba(255,255,255,0.1);
	color: white !important;
}

.kjcjsb-navbar .nav-link.active {
	background: rgba(255,255,255,0.15);
	color: white !important;
}

.kjcjsb-navbar .dropdown-menu {
	border: none;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-radius: 8px;
}

.kjcjsb-navbar .dropdown-item {
	padding: 10px 15px;
	transition: all 0.2s;
}

.kjcjsb-navbar .dropdown-item:hover {
	background: var(--primary-color);
	color: white;
}

/* 增强的页脚样式 */
.kjcjsb-footer {
	background: linear-gradient(to right, var(--secondary-color), var(--dark-color));
	color: rgba(255,255,255,0.8);
	padding: 60px 0 0;
}

.kjcjsb-footer h5 {
	color: white;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.kjcjsb-footer h5:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: var(--accent-color);
}

.kjcjsb-footer a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.2s;
	display: block;
	margin-bottom: 12px;
}

.kjcjsb-footer a:hover {
	color: white;
	padding-left: 5px;
}

.kjcjsb-footer a i {
	margin-right: 8px;
	width: 20px;
	text-align: center;
}

.kjcjsb-social-box {
	display: flex;
	margin-top: 20px;
}

.kjcjsb-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s;
	color: white;
	font-size: 1.2rem;
}

.kjcjsb-social-icon:hover {
	background: var(--accent-color);
	transform: translateY(-3px);
}

.kjcjsb-copyright {
	background-color: rgba(0,0,0,0.2);
	padding: 20px 0;
	font-size: 0.9rem;
	margin-top: 50px;
}

.kjcjsb-footer-logo {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
	display: block;
	color: white;
}

.kjcjsb-footer-logo:hover {
	color: white;
}

.kjcjsb-footer-contact li {
	display: flex;
	margin-bottom: 15px;
	align-items: flex-start;
}

.kjcjsb-footer-contact i {
	margin-top: 5px;
	margin-right: 15px;
	font-size: 1.2rem;
	color: var(--accent-color);
}

/* 其他样式 */
.kjcjsb-breaking-news {
	background-color: var(--accent-color);
	color: white;
	padding: 10px 0;
	font-weight: 500;
}

.kjcjsb-breaking-news a {
	color: white;
	text-decoration: none;
	margin-left: 10px;
	font-weight: 600;
}

.kjcjsb-breaking-news a:hover {
	text-decoration: underline;
}

.kjcjsb-date-bar {
	background-color: var(--light-color);
	padding: 10px 0;
	font-size: 0.9rem;
	border-bottom: 1px solid #eee;
}

.kjcjsb-date-bar i {
	margin-right: 5px;
	color: var(--primary-color);
}

.kjcjsb-post-meta {
	display: flex;
	align-items: center;
	font-size: 0.85rem;
	color: #6c757d;
	margin-top: 10px;
}

.kjcjsb-post-meta i {
	margin-right: 5px;
}

.kjcjsb-post-meta span {
	margin-right: 15px;
}

.kjcjsb-author {
	display: flex;
	align-items: center;
	margin-top: 15px;
}

.kjcjsb-author img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}