/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    min-height: 100vh;
}

/* 页面布局 */
.page-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

/* 标题样式 */
.title {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    margin: 40px 0;
    color: #333;
}

/* 链接容器 */
.links-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

/* 链接项样式 */
.link-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.link-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.link-item img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 16px;
    object-fit: cover;
}

.link-item span {
    font-size: 16px;
    color: #333;
    font-weight: 400;
}

/* 响应式设计 */
@media (max-width: 480px) {
    .page-wrap {
        padding: 15px 0;
    }
    
    .title {
        margin: 30px 0;
    }
    
    .links-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .link-item {
        padding: 16px;
    }
    
    .link-item img {
        width: 36px;
        height: 36px;
        margin-right: 14px;
    }
} 