    /** {*/
    /*        margin: 0;*/
    /*        padding: 0;*/
    /*        box-sizing: border-box;*/
    /*        font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;*/
    /*    }*/
        
    /*    body {*/
    /*        background: linear-gradient(135deg, #1a2a6c, #2a3c7f, #4a6ee0);*/
    /*        color: #333;*/
    /*        line-height: 1.6;*/
    /*        min-height: 100vh;*/
    /*        padding: 20px;*/
    /*    }*/
        
        .geo-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }
        
        .geo-header {
            background: linear-gradient(135deg, #1a2a6c, #4a6ee0);
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .geo-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
        }
        
        .geo-logo {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .geo-title {
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .geo-subtitle {
            font-size: 16px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Banner图区域 */
        /*.geo-banner {*/
        /*    width: 100%;*/
        /*    height: 200px;*/
        /*    background-color: #f0f5ff;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    color: #4a6ee0;*/
        /*    font-size: 18px;*/
        /*    border-bottom: 1px solid #eaeaea;*/
        /*    overflow: hidden;*/
        /*}*/
        
        /*.geo-banner img {*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    object-fit: cover;*/
        /*}*/
        
        .geo-update-list {
            padding: 20px;
        }
        
        .geo-update-item {
            border-bottom: 1px solid #eaeef5;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .geo-update-item:last-child {
            border-bottom: none;
        }
        
        .geo-date-header {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.2s;
            background: #f8faff;
        }
        
        .geo-date-header:hover {
            background-color: #eef3ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(74, 110, 224, 0.1);
        }
        
        .geo-date {
            font-size: 18px;
            font-weight: 600;
            color: #1a2a6c;
            margin-right: 20px;
            min-width: 100px;
            display: flex;
            align-items: center;
        }
        
        .geo-date::before {
            content: "日期:";
            margin-right: 8px;
            font-size: 14px;
            font-weight: normal;
            color: #666;
        }
        
        .geo-version {
            background: linear-gradient(135deg, #4a6ee0, #6a11cb);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 5px rgba(74, 110, 224, 0.3);
        }
        
        .geo-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 15px;
        }
        
        .geo-content.active {
            max-height: 2000px;
            padding: 20px 15px;
        }
        
        .geo-content ul {
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .geo-content li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 15px;
            line-height: 1.5;
        }
        
        .geo-content li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            background: #4a6ee0;
            border-radius: 50%;
        }
        
        .geo-expand-icon {
            margin-left: auto;
            transition: transform 0.3s ease;
            color: #7a8ccc;
            font-size: 14px;
            background: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            font-weight: bold;
        }
        
        .geo-date-header.active .geo-expand-icon {
            transform: rotate(180deg);
            background: #4a6ee0;
            color: white;
        }
        
        .geo-client-version {
            background-color: #fff9e6;
            border-left: 4px solid #ffc107;
            padding: 12px 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .geo-client-version::before {
            content: "客户端:";
            margin-right: 8px;
            font-size: 14px;
            font-weight: bold;
            color: #e6a700;
        }
        
        .geo-note {
            background-color: #f0f8ff;
            border-left: 4px solid #4a6ee0;
            padding: 12px 15px;
            margin: 15px 0;
            border-radius: 0 8px 8px 0;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .geo-note::before {
            content: "备注:";
            margin-right: 8px;
            font-size: 14px;
            font-weight: bold;
            color: #4a6ee0;
        }
        
        .geo-footer {
            text-align: center;
            padding: 25px;
            color: #666;
            font-size: 14px;
            border-top: 1px solid #eaeaea;
            margin-top: 20px;
            background: #f8faff;
        }
        
        .geo-search {
            padding: 15px 20px;
            background: #f8faff;
            border-bottom: 1px solid #eaeaea;
        }
        
        .geo-search-box {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .geo-search-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #d1d9ff;
            border-radius: 8px 0 0 8px;
            font-size: 15px;
            outline: none;
            transition: all 0.3s;
        }
        
        .geo-search-input:focus {
            border-color: #4a6ee0;
            box-shadow: 0 0 0 2px rgba(74, 110, 224, 0.2);
        }
        
        .geo-search-btn {
            background: linear-gradient(135deg, #4a6ee0, #6a11cb);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .geo-search-btn:hover {
            background: linear-gradient(135deg, #3a5ec0, #5a01bb);
        }
        
        @media (max-width: 768px) {
            .geo-container {
                border-radius: 12px;
            }
            
            .geo-header {
                padding: 30px 20px;
            }
            
            .geo-logo {
                font-size: 28px;
            }
            
            .geo-title {
                font-size: 22px;
            }
            
            .geo-date-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .geo-date {
                margin-bottom: 10px;
            }
            
            .geo-expand-icon {
                position: absolute;
                right: 15px;
                top: 15px;
            }
            
            .geo-banner {
                height: 150px;
            }
        }
        
        .geo-highlight {
            background-color: #fffacd;
            padding: 2px 4px;
            border-radius: 3px;
        }