* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	line-height: 1.5;
	color: #333;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	word-wrap: break-word;
}

.container {
	max-width: 1000px;
	width: 100%;
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

header {
	background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
	color: white;
	padding: 25px 30px;
	text-align: center;
}

h1 {
	font-size: 2.2rem;
	margin-bottom: 10px;
}

.description {
	font-size: 1.1rem;
	opacity: 0.9;
}

article {
	padding: 30px;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.info-item {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 10px;
	transition: all 0.3s ease;
	border-left: 4px solid #2575fc;
}

.info-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: #eef4ff;
}

.icon {
	width: 50px;
	height: 50px;
	background: #2575fc;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	flex-shrink: 0;
}

.icon i {
	color: white;
	font-size: 1.4rem;
}

.info-content {
	flex-grow: 1;
}

.info-title {
	font-weight: 600;
	color: #2575fc;
	font-size: 1rem;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.info-value {
	font-size: 1.2rem;
	color: #333;
	word-break: break-all;
}

.url {
	color: #2575fc;
	text-decoration: none;
}

.url:hover {
	text-decoration: underline;
}

/* 热门文章样式 */
.hot-articles {
	background: #f8f9fa;
	border-radius: 10px;
	padding: 25px;
	margin-top: 20px;
}

.section-title {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #2575fc;
	color: #2575fc;
}

.section-title i {
	margin-right: 10px;
	font-size: 1.5rem;
}

.articles-list {
	list-style: none;
}

.articles-list li {
	margin-bottom: 15px;
	padding: 15px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.articles-list li:hover {
	transform: translateX(5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.articles-list a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.articles-list a:hover {
	color: #2575fc;
}

.articles-list i {
	margin-right: 10px;
	color: #2575fc;
}

.article-meta {
	display: flex;
	margin-top: 8px;
	font-size: 0.85rem;
	color: #6c757d;
}

.article-meta span {
	margin-right: 15px;
	display: flex;
	align-items: center;
}

.article-meta i {
	margin-right: 5px;
	font-size: 0.9rem;
}

/* 返回首页链接 */
.back-home {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #dee2e6;
}

.back-home a {
	display: inline-flex;
	align-items: center;
	padding: 12px 25px;
	background: #2575fc;
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.back-home a:hover {
	background: #1a68e6;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(37, 117, 252, 0.4);
}

.back-home i {
	margin-right: 8px;
}

footer {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	color: #6c757d;
	font-size: 0.9rem;
}

@media (max-width: 600px) {
	.info-item {
		flex-direction: column;
		text-align: center;
	}
	
	.icon {
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	h1 {
		font-size: 1.8rem;
	}
	
	.article-meta {
		flex-direction: column;
	}
	
	.article-meta span {
		margin-bottom: 5px;
	}
}


article h2{
	margin: 30px auto;
}

article .cycx{
	margin: 30px auto;
}

article .cycx a{
	margin-right:10px;
	
}

header p{
	margin: 10px auto;
}