        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #2c3e50, #4ca1af);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 0;
            padding: 20px;
            box-sizing: border-box;
            min-height: 100vh;
        }
        h1 {
            font-size: 30px; /* 缩小标题字体 */
            margin-bottom: 10px; /* 缩小标题下边距 */
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 500px; /* 缩小容器宽度 */
            margin: 10px 0;
        }
        .box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            padding: 5px; /* 缩小内边距 */
            text-align: center;
            position: relative;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        .link-box {
            background: linear-gradient(90deg, #007bff, #00c6ff);
            color: white;
            border-radius: 8px;
            padding: 15px; /* 缩小内边距 */
            margin: 8px auto; /* 缩小外边距 */
            text-decoration: none;
            transition: background 0.3s, transform 0.3s;
            display: inline-block;
            width: 80%;
            max-width: 250px; /* 缩小宽度 */
            font-size: 14px; /* 缩小字体 */
        }
        .link-box:hover {
            background: linear-gradient(90deg, #0056b3, #0099cc);
            transform: scale(1.05);
        }
        .description {
            margin-top: 8px; /* 缩小上边距 */
            color: #fff;
            font-size: 12px; /* 缩小字体 */
            cursor: pointer;
            text-decoration: underline;
            transition: color 0.3s;
        }
        .description:hover {
            color: #00c6ff;
        }
        .icon {
            font-size: 20px; /* 缩小图标字体 */
            margin: 5px 0;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        .left-align {
            text-align: left;
        }
        .center-align {
            text-align: center;
        }
        .icon-img {
            width: 16px;
            vertical-align: middle;
            margin-left: 5px;
        }
		.uniform-font-size {
        font-size: 14px; /* 提示设置统一的字体大小 */
        }
		.description {
    text-decoration: none; /* 去除下划线 */
        }
		.link-text {
    color: #00c6ff; /* 设置链接颜色 */
    font-size: 14px; /* 设置字体大小 */
    padding: 5px; /* 添加内边距 */
    border-radius: 5px; /* 添加圆角 */
    transition: background 0.3s; /* 添加过渡效果 */
	text-decoration: none; /* 去除下划线 */
}
.link-container {
    display: flex;
    justify-content: center; /* 中心对齐 */
    margin-top: 10px; /* 顶部间距 */
}

.link-text {
    color: #00c6ff; /* 链接颜色 */
    font-size: 14px; /* 字体大小 */
    padding: 5px 10px; /* 内边距 */
    border-radius: 5px; /* 圆角 */
    text-decoration: none; /* 去除下划线 */
    transition: background 0.3s; /* 添加过渡效果 */
}