:root {
    --primary-color: #FFD700;
    --secondary-color: #FFF5D5;
    --dark-text: #333333;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: var(--secondary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 修改后的导航栏 */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-text);
    text-decoration: none;
}

/* 修改后的菜单样式 */
.menu-items {
    display: flex;
    gap: 1rem;
}

.home-link {
    font-size: 1.2rem;
    color: var(--dark-text);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: bolder;

}

.home-link:hover {
    background-color: rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* 主要内容区域 */
.content {
    flex: 1;
    margin-top: 80px;
    padding: 2rem 5%;
}

/* 微信二维码容器 */
.wechat-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.qrcode-section {
    flex: 1;
    text-align: center;
}

.qrcode-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.qrcode-img:hover {
    transform: scale(1.05);
}

.description {
    flex: 1;
    padding: 1rem;
}

.description h2 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.description p {
    line-height: 1.6;
    color: #666;
}

.icp {
    position: bottom;
	bottom: 0;
	right: 0;
	margin: 10px 0;
	width: 100%;
	height: 36px;
	white-space: pre;
	text-align: center;
	color: gray;
	z-index: 1000;
}

.icp > a {
    color: gray;
    text-decoration: none;
}

.icp > a:hover {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wechat-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .qrcode-img {
        max-width: 200px;
    }

    .navbar {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .home-link {
        font-size: 1rem;
        padding: 6px 12px;
    }
}
.icp {
    font-size: 0.75rem; /* 调整版权信息的字体大小 */
}
