@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);
	}
}








:root {
	--xzk-primary: #4e73df;
	--xzk-secondary: #858796;
	--xzk-success: #1cc88a;
	--xzk-info: #36b9cc;
	--xzk-warning: #f6c23e;
	--xzk-danger: #e74a3b;
	--xzk-light: #f8f9fc;
	--xzk-dark: #5a5c69;
}

.xzk-bg-primary {
	background-color: var(--xzk-primary) !important;
}

.xzk-text-primary {
	color: var(--xzk-primary) !important;
}

.xzk-btn-primary {
	background-color: var(--xzk-primary);
	border-color: var(--xzk-primary);
}

.xzk-btn-primary:hover {
	background-color: #2e59d9;
	border-color: #2653d4;
}

.xzk-navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.xzk-hero {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1495020689067-958852a7765e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
	height: 500px;
}

.xzk-card {
	transition: transform 0.3s, box-shadow 0.3s;
	border: none;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.xzk-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.xzk-card-img {
	height: 200px;
	object-fit: cover;
}

.xzk-section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.xzk-section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--xzk-primary);
}

.xzk-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
}

.xzk-feature-box {
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	height: 100%;
}

.xzk-feature-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.xzk-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(78, 115, 223, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.xzk-footer {
	background: #2c3e50;
	color: #ecf0f1;
}

.xzk-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.xzk-social-icon:hover {
	background: var(--xzk-primary);
	transform: translateY(-5px);
}