        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        a{
            text-decoration-line: none;
        }
        body {
            min-height: 100vh;
            color: #333333;
            overflow-x: hidden;
        }
        
        /* 加载动画 */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #ffffff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .loader-spinner {
            width: 56px;
            height: 56px;
            border: 4px solid #f0f0f0;
            border-top: 4px solid #007AFF;
            border-radius: 50%;
            animation: spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            margin-bottom: 20px;
            position: relative;
        }
        
        .loader-spinner::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background-color: #007AFF;
            border-radius: 50%;
        }
        
        .loader-text {
            color: #8E8E93;
            font-size: 16px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            height: 20px;
        }
        
        .loader-text::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
            animation: shimmer 1.5s infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.05); }
            100% { transform: rotate(360deg) scale(1); }
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .loader-container.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        /* 顶部信息栏 */
        .top{
            width: 100%;
            background: #f3f3f3;
            border-bottom: 1px solid #e7e7e7;
            border-top: 1px solid #e7e7e7;
            transform: translateY(-100%);
            animation: slideDown 0.6s forwards 0.3s;
            box-shadow: 0 4px 12px #eee;
        }
        
        @keyframes slideDown {
            to { transform: translateY(0); }
        }
        
        .top-div{
            max-width: 1200px;
            color: #ff0000;
            display: flex;
            margin: 0 auto;
            flex-direction: column;
            align-items: center;
            padding: 8px 0px;
            font-size: 14px;
        }
        
        .top-text{
            padding: 0px 10px;
            text-align: justify;
        }
        
        .top-text a{
            color: #fff;
            padding: 0px 3px;
            border-radius: 3px;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            display: inline-block;
        }
        
        .top-text a:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .text-shengxiao{
            background: #007aff;
        }
        
        .text-jijie{
            background: rgb(247 86 24);
        }
        
        .text-nongli{
            background: #8ebd0f;
        }
        
        .text-nonglijieri{
            background: #ff9a32;
        }
        
        .text-yanglijieri{
            background: #ee006c;
        }
        
        /* 顶部导航栏 */
        header {
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInUp 0.6s forwards 0.5s;
        }
        
        @keyframes fadeInUp {
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .left-nav {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .safari-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #007AFF;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .safari-icon:hover {
            transform: rotate(15deg) scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
        }
        
        .safari-text {
            color: #8E8E93;
            font-size: 14px;
            position: relative;
        }
        
        .safari-text::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #007AFF;
            transition: width 0.3s ease;
        }
        
        .left-nav:hover .safari-text::after {
            width: 100%;
        }
        
        @media (min-width: 640px) {
            .safari-text {
                display: inline-block;
            }
        }
        
        .nav-text-btn {
            border: none;
            background: transparent;
            font-size: 14px;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.2s ease;
            margin: 0 2px;
        }
        .nav-text-btn:hover {
            background: rgba(255,255,255,0.1);
        }
        .user-text-link {
            color: #000;
            font-size: 14px;
            padding: 8px 12px;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.2s ease;
            margin-left: 5px;
        }
        .user-text-link:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .user-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #E5E5EA;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8E8E93;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .user-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to right,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0.3) 50%,
                rgba(255,255,255,0) 100%
            );
            transform: rotate(30deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) rotate(30deg); }
            100% { transform: translateX(100%) rotate(30deg); }
        }
        
        .user-icon:hover {
            transform: scale(1.1) rotate(5deg);
            color: #007AFF;
            background-color: #e1efff;
        }
        
        /* 主内容区 */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 64px;
        }
        
        /* 搜索框 */
        .search-container {
            width: 100%;
            max-width: 800px;
            margin-bottom: 48px;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            animation: fadeInUpScale 0.6s forwards 0.7s;
        }
        
        @keyframes fadeInUpScale {
            to { 
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .search-box {
            position: relative;
            border: 1px solid #D1D1D6;
            border-radius: 24px;
            background-color: white;
            padding: 12px 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .search-box:focus-within {
            box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3), 0 4px 20px rgba(0, 122, 255, 0.15);
            transform: translateY(-2px);
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #8E8E93;
            transition: all 0.3s ease;
        }
        
        .search-box:focus-within .search-icon {
            color: #007AFF;
            transform: translateY(-50%) scale(1.1);
        }
        
        .search-input {
            width: 100%;
            background: transparent;
            border: none;
            outline: none;
            color: #333333;
            font-size: 16px;
            text-align: center;
            padding: 0 40px;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            padding-left: 50px;
            padding-right: 50px;
        }
        
        .search-input::placeholder {
            color: #C7C7CC;
            transition: all 0.3s ease;
        }
        
        .search-box:focus-within .search-input::placeholder {
            color: #A9AAAD;
            letter-spacing: 0.5px;
        }
        
        .mic-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #8E8E93;
            background: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mic-icon:hover {
            color: #007AFF;
            background-color: rgba(0, 122, 255, 0.08);
            transform: translateY(-50%) rotate(15deg);
        }
        
        /* 常用网站 */
        .websites-section {
            width: 100%;
            opacity: 0;
            animation: fadeIn 0.8s forwards 0.9s;
            margin-bottom: 50px;
        }
        
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        
        .section-title {
            font-size: 14px;
            font-weight: 500;
            color: #8E8E93;
            margin-bottom: 16px;
            padding: 0 8px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 8px;
            width: 0;
            height: 2px;
            background-color: #007AFF;
            transition: width 0.5s ease;
        }
        
        .websites-section:hover .section-title::after {
            width: calc(100% - 16px);
        }
        
        .websites-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        
        .websites-uptime{
            position: absolute;
            top: 1px;
            right: 1px;
            padding: 2px;
            font-size: 10px;
            color: #fff;
            background: red;
            border-radius: 3px;
            z-index:999;
        }
        
        @media (min-width: 640px) {
            .websites-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 24px;
            }
        }
        
        @media (min-width: 768px) {
            .websites-grid {
                grid-template-columns: repeat(8, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .websites-grid {
                grid-template-columns: repeat(10, 1fr);
            }
        }
        
        .website-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px) scale(0.9);
            animation: popIn 0.5s forwards;
        }

        @keyframes popIn {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .website-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
            background-color: white;
        }
        
        .website-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            transition: all 0.6s ease;
        }
        
        .website-icon:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .website-icon:hover::before {
            left: 100%;
        }
        
        .website-icon img {
            width: 95%;
            height: 95%;
            border-radius: 12px;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .website-icon:hover img {
            transform: rotate(10deg) scale(1.1);
        }
        
        .website-name {
            font-size: 12px;
            color: #666666;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0.8;
        }
        
        .website-name::after {
            content: attr(data-name);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            color: #007AFF;
            clip-path: inset(0 100% 0 0);
            transition: clip-path 0.3s ease;
        }
        
        .website-link:hover .website-name {
            opacity: 1;
        }
        
        .website-link:hover .website-name::after {
            clip-path: inset(0 0 0 0);
        }
        
        /* 页脚 */
        footer {
            margin-top: 64px;
            padding-bottom: 32px;
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards 1.6s;
        }
        
        .footer-links {
            font-size: 12px;
            color: #8E8E93;
        }
        
        .footer-links a {
            color: inherit;
            text-decoration: none;
            margin: 0 8px;
            position: relative;
            transition: color 0.3s ease;
            padding: 2px 0;
        }
        
        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: #007AFF;
            transition: width 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #007AFF;
        }
        
        .footer-links a:hover::after {
            width: 100%;
        }
        
        /* 粒子背景装饰 */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(0, 122, 255, 0.1);
            animation: float 10s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }