:root {
    --primary-color: #01a982;
    --secondary-color: #02a982;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(135deg, #01a982, #028a6e);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

.animation-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.particle-1 {
    animation: animParticle 60s linear infinite;
    height: 1px;
    width: 1px;
}

.particle-2 {
    animation: animParticle 120s linear infinite;
    height: 2px;
    width: 2px;
}

.particle-3 {
    animation: animParticle 180s linear infinite;
    height: 3px;
    width: 3px;
}

.particle-4 {
    animation: animParticle 600s linear infinite;
    height: 1px;
    width: 1px;
}

@keyframes animParticle {
    from { transform: translateY(0px); }
    to { transform: translateY(-1920px); }
}

.wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main {
    position: relative;
    z-index: 10;
}

.main h1 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    letter-spacing: 1px;
}

.content {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    transition: var(--transition);
}

.content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-top {
    padding: 1.5rem;
}

.content-top h2 {
    font-size: 1.4rem;
    color: var(--white);
    text-align: center;
    background-color: var(--primary-color);
    padding: 12px 0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.content-top ul {
    list-style: none;
}

.content-top ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.content-top ul li:last-child {
    border-bottom: none;
}

.content-top ul li strong {
    color: var(--dark-color);
    font-weight: 600;
}

.content-top ul li font[color="blue"] {
    color: #1e88e5;
    font-weight: 500;
}

.content-top ul li font[color="red"] {
    color: #e53935;
    font-size: 0.9rem;
    line-height: 1.5;
    display: inline-block;
    margin-top: 0.5rem;
}

.link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.link a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.go {
    background-color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 100px;
}

.go:hover {
    background-color: #028a6e;
    transform: translateY(-2px);
}

.go a {
    color: white !important;
    text-decoration: none;
    display: block;
}

.go a:hover {
    text-decoration: none;
}

.title {
    margin: 1.5rem 0;
    color: var(--dark-color);
    font-weight: 600;
    text-align: center;
}

.title a {
    color: var(--white);
    background-color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.title a:hover {
    background-color: #028a6e;
}

.footer {
    text-align: center;
    color: var(--white);
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

#momk {
    color: var(--white);
    font-weight: bold;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main h1 {
        font-size: 2rem;
    }
    
    .content-top h2 {
        font-size: 1.2rem;
    }
    
    .content {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .main h1 {
        font-size: 1.8rem;
    }
    
    .content-top {
        padding: 1rem;
    }
    
    .go {
        padding: 6px 12px;
        min-width: 80px;
        font-size: 0.9rem;
    }
}

/* 添加一些动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content {
    animation: fadeIn 0.6s ease-out;
}

.content-top ul li {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.content-top ul li:nth-child(1) { animation-delay: 0.2s; }
.content-top ul li:nth-child(2) { animation-delay: 0.4s; }
.content-top ul li:nth-child(3) { animation-delay: 0.6s; }
.content-top ul li:nth-child(4) { animation-delay: 0.8s; }