/* 基础样式 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: auto;
}

.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 600px;
	overflow: auto;
}

header {
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

header p {
    font-size: 1em;
    color: #f5f5f9;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.link-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: calc(33.333% - 20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.link-card a {
    text-decoration: none;
    color: #ffffff;
    display: inline-block;
}

.link-card i {
    font-size: 3em;
    margin-bottom: 10px;
}

.link-card h2 {
    font-size: 1.2em;
    margin: 0;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #e0e0e0;
}
body::-webkit-scrollbar {
  width: 0.5em;
  background-color: #F5F5F5;
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
}

body::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}
body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
/* 响应式布局 */
@media (max-width: 768px) {
    .link-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .link-card {
        width: 100%;
    }
}