        @font-face {
        font-family: 'AlimamaYuan';
        src: url('https://bucket-bj-1.oss-cn-beijing.aliyuncs.com/cache/fonts/AlimamaFYT.ttf?Expires=1764866596&OSSAccessKeyId=TMP.3KnAV2GGWGyYKrZxTCTeAkjH34wx1FkFYPZ5x4eXnaheGrJeUHFf4eKZudRxk2P7rEncBFgnZezy9hi3uW1du638SVyPfJ&Signature=V71bh6Hs%2B0do2gJXQ%2BgdcrIzXU8%3D') format('truetype'),
        font-display: swap;ttf
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'AlimamaYuan', 'PingFang SC', sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            padding: 20px;
            background-image: linear-gradient(to bottom, #f0f9ff, #ffffff);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px 0;
            position: relative;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #222222;
        }
        
        .subtitle {
            font-size: 1.2rem;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .patch-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            overflow: hidden;
            border: 1px solid #eaeaea;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .patch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }
        
        .patch-header {
            background: linear-gradient(135deg, #a8e6cf, #dcedc1);
            padding: 20px;
            color: #333;
            position: relative;
            overflow: hidden;
        }
        
        .patch-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff9a9e, #fad0c4, #fad0c4, #a8e6cf);
        }
        
        .patch-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .version {
            font-size: 1.8rem;
            font-weight: bold;
            color: #222;
        }
        
        .date {
            font-size: 1rem;
            color: #555;
            background: rgba(255, 255, 255, 0.7);
            padding: 5px 12px;
            border-radius: 20px;
        }
        
        .patch-body {
            padding: 25px;
        }
        
        .update-section {
            margin-bottom: 25px;
        }
        
        .section-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #f0f0f0;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .section-title::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 20px;
            background: #a8e6cf;
            margin-right: 10px;
            border-radius: 3px;
        }
        
        .update-list {
            list-style-type: none;
        }
        
        .update-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .update-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ff9a9e;
            font-size: 1.2rem;
        }
        
        .badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            margin-left: 8px;
            font-weight: bold;
        }
        
        .badge-new {
            background: #a8e6cf;
            color: #1a5d3e;
        }
        
        .badge-fix {
            background: #ffd3b6;
            color: #8b4513;
        }
        
        .badge-improve {
            background: #d4e2ff;
            color: #1e3a8a;
        }
        
        .screenshot-section {
            margin-top: 30px;
        }
        
        .screenshot-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #333;
            display: flex;
            align-items: center;
        }
        
        .screenshot-title::before {
            content: '🖼️';
            margin-right: 8px;
        }
        
        .screenshot-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        
        .screenshot {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid #eaeaea;
            background: #f8f9fa;
            position: relative;
        }
        
        .screenshot img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .screenshot-caption {
            padding: 10px 15px;
            background: white;
            font-size: 0.9rem;
            color: #33AEB9;
            border-top: 1px solid #eaeaea;
        }
        
        .screenshot-placeholder {
            height: 200px;
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 1rem;
        }
        
        .aurora-effect {
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4, #a8e6cf, #d4e2ff);
            opacity: 0.1;
            border-radius: 50%;
            filter: blur(20px);
            z-index: 0;
        }
        
        footer {
            text-align: center;
            margin-top: 50px;
            padding: 20px;
            color: #666;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .patch-title {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .date {
                margin-top: 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .screenshot {
                min-width: 100%;
            }
        }