@charset "utf-8";
/* 自定义样式前缀加wj- */
.wj-bg-primary {
	background-color: #0066cc;
}
.wj-btn-primary {
	background-color: #0066cc;
	border-color: #0055aa;
}
.wj-btn-primary:hover {
	background-color: #0050a0;
	border-color: #004488;
}
.wj-text-accent {
	color: #009ee3;
}
.wj-border-bottom {
	border-bottom: 2px solid #f0f5ff;
}
.wj-news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
.wj-tag {
	display: inline-block;
	background: #f0f8ff;
	color: #0066cc;
	padding: 2px 10px;
	border-radius: 20px;
	font-size: 0.85rem;
	margin: 2px;
}
.wj-hot-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #ff4d4d;
	color: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}
.wj-category-label {
	position: absolute;
	top: 15px;
	left: 0;
	background: rgba(0, 102, 204, 0.8);
	color: white;
	padding: 3px 15px;
	font-size: 0.85rem;
	border-radius: 0 15px 15px 0;
}

.card {
    border: none;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.card-text {
    color: #666;
    line-height: 1.4;
}



/*友情链接*/
.wj-friends-section {
	padding: 3rem 0;
	background-color: #f8f9fa;
}

.wj-section-header {
	text-align: center;
	margin-bottom: 2rem;
}

.wj-section-title {
	font-weight: 500;
	color: #495057;
	position: relative;
	display: inline-block;
	padding-bottom: 12px;
	margin-bottom: 1.5rem;
}

.wj-section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 2px;
	background-color: #6c757d;
}

.wj-section-subtitle {
	color: #6c757d;
	font-size: 0.95rem;
	max-width: 600px;
	margin: 0 auto 1.5rem;
}

.wj-friend-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 1rem;
	max-width: 1000px;
	margin: 0 auto;
}

.wj-friend-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #ffffff;
	border-radius: 8px;
	padding: 1rem;
	transition: all 0.25s ease;
	border: 1px solid #e9ecef;
	position: relative;
	height: 100%;
	text-decoration: none;
	color: #495057;
}

.wj-friend-item:hover {
	border-color: #adb5bd;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(108, 117, 125, 0.1);
}

.wj-logo-container {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #f1f3f5;
	margin-bottom: 0.8rem;
}

.wj-logo-container i {
	font-size: 1.25rem;
	color: #6c757d;
}

.wj-friend-title {
	font-size: 0.9rem;
	font-weight: 500;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 0.3rem;
}

.wj-friend-domain {
	font-size: 0.75rem;
	color: #868e96;
	text-align: center;
	line-height: 1.4;
	word-break: break-all;
}

.wj-view-more {
	margin-top: 2.5rem;
	text-align: center;
}

.wj-view-btn {
	color: #6c757d;
	background-color: transparent;
	border: 1px solid #ced4da;
	padding: 0.5rem 1.25rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.wj-view-btn:hover {
	background-color: #e9ecef;
	border-color: #adb5bd;
}

.wj-view-btn i {
	margin-left: 0.5rem;
	font-size: 0.8rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.wj-friend-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 576px) {
	.wj-friend-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}























.wj-navbar {
	border-bottom: 3px solid #0d6efd;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.wj-brand {
	font-weight: 700;
	color: #0d6efd;
	font-size: 1.8rem;
}

.wj-tagline {
	font-size: 0.8rem;
	color: #6c757d;
}

.wj-hero {
	background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../static/images/header_top_bg.webp') center/cover no-repeat;
	background-size: cover;
	color: white;
	padding: 4rem 0;
	margin-bottom: 2rem;
	border-radius: 0 0 0 0;
}


.wj-card {
	transition: transform 0.3s, box-shadow 0.3s;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 20px;
	border: none;
}

.wj-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.wj-footer {
	background-color: #f8f9fa;
	padding: 2rem 0;
	margin-top: 4rem;
	border-top: 3px solid #0d6efd;
}

.wj-img-cover {
	height: 200px;
	object-fit: cover;
}

.wj-category-tag {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
}

.wj-feature-stats {
	background: #0d6efd;
	padding: 30px 0;
	border-radius: 15px;
	color: white;
	margin: 2rem 0;
}

.wj-social-icon {
	font-size: 1.5rem;
	color: #0d6efd;
	transition: transform 0.3s;
}

.wj-social-icon:hover {
	transform: scale(1.2);
	color: #0a58ca;
}

.wj-news-ticker {
	background: #f8f9fa;
	padding: 10px;
	border-left: 4px solid #0d6efd;
	margin-bottom: 15px;
	border-radius: 0 8px 8px 0;
}

.wj-subscribe-form {
	background: #e9ecef;
	padding: 20px;
	border-radius: 15px;
}

.wj-feature-icon {
	font-size: 2rem;
	color: #0d6efd;
	margin-bottom: 15px;
}

.wj-stats-number {
	font-size: 2rem;
	font-weight: 700;
}

