/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* 首图：自动缩放，宽度撑满容器，高度自适应 */
header img {
    width: 100%;
    height: auto;
    display: block; /* 消除底部空白间隙 */
    border-radius: 6px; /* 可选：圆角更美观 */
}

/* 产品介绍 */
.product-intro {
    margin: 20px 0;
    padding: 15px;
    background-color: #fbfbfb;
    border-left: 5px solid #3498db;
    border-radius: 5px;
    line-height: 1.8;
}

.product-intro h2 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.product-intro p {
    text-indent: 2em;
    margin-bottom: 10px;
}


/* 下载导航 */
.user-nav {
    display: flex;
	padding: 15px;
    justify-content: center;
	background-color: #f7f7f7;
    gap: 315px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.user-nav a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.user-nav a:hover {
    background-color: #2980b9;
}

/* 按钮区域 */
.buy-section {
    text-align: center;
    margin: 30px 0;
}

.buy-section button {
    padding: 12px 24px;
    margin: 0 10px 10px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
}

.btn-primary {
    background-color: #007BFF;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary:hover {
    background-color: #545b62;
}

/* 联系信息 */
.contact-info {
    margin-top: 30px;
    padding: 15px;
    background-color: #f1f1f1;
    border-top: 1px solid #ccc;
    text-align: center;
    font-size: 14px;
    color: #555;
    border-radius: 0 0 8px 8px;
}

.contact-info p {
    margin: 5px 0;
}

/* 备案链接 */
.beian-link {
    color: #555;
    text-decoration: none;
}

.beian-link:hover {
    text-decoration: underline;
    color: #3498db;
}
/* 响应式图片：用于内容区域 */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 15px 0;
    border-radius: 4px; /* 可选：美观圆角 */
}

/* 响应式适配 */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    header img {
        border-radius: 4px;
    }

    .buy-section button {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 5px auto;
    }

    .user-nav {
        flex-direction: column;
        align-items: center;
    }

    .user-nav a {
        width: 100%;
        max-width:250px;
        text-align: center;
		
    }
	
}