body {
    margin: 0;
    font-family: "Segoe UI", Arial;
    background: #f4f6f9;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.info {
    display: flex;
    flex-direction: column;
}

.name {
    font-size: 16px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.name:hover {
    text-decoration: underline;
}

.meta {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.btn {
    padding: 8px 16px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
}

.btn:hover {
    background: #0056b3;
}

.netdisk {
    margin-top: 40px;
}

.netdisk h2 {
    margin-bottom: 15px;
    font-size: 20px;
}

.net-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.net-info {
    display: flex;
    flex-direction: column;
}

.net-name {
    font-weight: bold;
    font-size: 15px;
}

.net-desc {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.net-btn {
    padding: 6px 14px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.net-btn:hover {
    background: #218838;
}

.code {
    background: #eee;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
}