/* 重置与基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* 头部样式 */
.header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.header p {
    opacity: 0.8;
    font-size: 1.1em;
}

/* 列表项 */
.list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* 间距 */
}

.item {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 15px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.icon {
    font-size: 2em;
    margin-right: 15px;
}

.info {
    flex: 1;
    overflow: hidden;
}

.info h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info p {
    font-size: 0.9em;
    color: #666;
}

.arrow {
    font-size: 0.8em;
    color: #999;
    margin-left: 10px;
}

/* 底部 */
.footer {
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

/* 针对超小屏幕（如老式手机）的微调 */
@media (max-width: 360px) {
    .header h1 {
        font-size: 1.5em;
    }
    .info h3 {
        font-size: 1em;
    }
}