*,
::after,
::before {
    box-sizing: border-box;
}

body,
ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, PingFangSC-Regular, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #f3f5f8;
    background-color: #050505;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

ul {
    list-style-type: none;
}

a {
    color: #e6e7ea;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(12, 15, 17, 0.8);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    box-shadow: 0 4px 16px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(60px);
    z-index: 1000;
    transition: all 0.5s ease;
    height: 60px; /* 坑太多不建议维护建议重做 */
}

.header .logo img {
    height: 35px;
}

.header .menu {
    display: flex;
    gap: 20px;
}

.header .menu a {
    color: white;
    position: relative;
    padding: 10px 0;
    transition: color 0.2s;
}

.header .menu a:hover,
.header .menu a.active {
    color: #3498db;
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    padding-top: 80px;
}

.intro {
    padding: 24px 0;
    overflow: hidden;
}

.intro h2 {
    font-size: clamp(32px, 5vw, 58px);
    margin-bottom: 32px;
    color: #f3f5f8;
}

.download-container {
    background-color: #111112;
    border-radius: 10px;
    padding: clamp(20px, 4vw, 40px);
    margin-bottom: 32px;
}

.version-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

#version-number {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.pushButton {
    display: inline-block;
    min-height: 35px;
    margin: 6px 0;
    cursor: default;
    padding: 5px 12px 6px 12px;
    font-size: 13.5px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 5px;
    border: 1px solid rgba(185, 185, 185, 0.073);
    border-bottom: 1px solid rgba(50, 50, 50, 0.183);
    text-align: center;
    vertical-align: center;
    -webkit-user-drag: none;
    user-drag: none;
}

.pushButton.primary {
    color: #1c1c1c;
    background-color: #3498db;
}

.update-log {
    background-color: #111112;
    border-radius: 10px;
    padding: clamp(20px, 4vw, 40px);
}

.update-log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.update-log h2 {
    font-size: 26px;
    color: #f3f5f8;
    margin: 0;
}

.history-link {
    color: #3498db;
    font-size: 14px;
    transition: all 0.3s ease;
}

.history-link:hover {
    opacity: 0.8;
}

#update-log-list li {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.version-tag {
    color: #3498db;
    font-size: 14px;
    min-width: 80px;
    padding: 4px 8px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 4px;
    text-align: center;
}

.update-content {
    flex: 1;
}

#update-log-list li:hover {
    background: rgba(52, 152, 219, 0.05);
    transform: translateX(8px);
}

footer {
    background-color: #161719;
    width: 100%;
}

footer .wrapper {
    display: flex;
    justify-content: space-between;
    padding: 24px 20px;
}

footer .left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

footer .left p {
    opacity: 0.8;
}

footer .left .desc {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

footer .left .desc a {
    font-size: 13px;
    opacity: 0.8;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.loading {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }

    .wrapper {
        padding: 0 15px;
    }

    .intro {
        padding: 90px 0;
    }

    #update-log-list li {
        flex-direction: column;
        gap: 8px;
    }

    .version-tag {
        min-width: auto;
    }

    footer .left .desc {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header .menu {
        gap: 10px;
    }

    .version-info {
        flex-direction: column;
        align-items: flex-start;
    }
}
        }