    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #eef1f5;
            padding: 0px;
            color: #333;
        }

        .container {
            padding: 0px;
            max-width: 600px;
            margin: 0 auto;
        }
        .gk-container{
            padding: 10px;
            max-width: 600px;
            margin: 0 auto;
        }
 /* 头部样式 */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border-radius: 0px 0px 10px 10px;
            position: sticky;
            top: 0;
            z-index: 100;
            background: #d8d1cb url(/img/header_bg.png) repeat center top;
            position: relative;
            width: 100%;
            padding-top: 4%; /* (9 / 16) * 100% */
            background-size: cover;
            background-position: center;
        }
        .logo { width: 110px;
    height: 35px;font-weight: bold; font-size: 1.2rem; color: #2563eb; }
        
        .logo img {
    width: 110px;
    height: 35px;
    margin-right: 10px;
    border-radius: 8px;
}



.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.menu-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
}

        
        @media (min-width: 768px){
            .logo img {
    width: 120px;
    height: 35px;
          }
        }
        
        
        
        @media (min-width: 768px){
  .header {
    height: 50px;
    padding: 0 30px;
}
        }
        
        .header-right { display: flex; gap: 10px; }
        .btn { 
            padding: 6px 12px; 
            border: 1px solid #ddd; 
            background: #73b842; 
            cursor: pointer; 
            border-radius: 50px; 
            font-size: 0.9rem; 
        }
        .btn-primary { 
            background: #000; 
            border: 1px solid #ddd; 
            color: white; 
            
        }
        .btn-primary:hover { background: #1d4ed8; }

        /* 侧边栏 */
        .sidebar {
            position: fixed;
            top: 0; right: -280px; width: 280px;
            height: 100%; background: white;
            background: #d8d1cb url(https://ts4.tc.mm.bing.net/th/id/OIP-C.mzyl9ii56llXIQfgorES6QAAAA?rs=1&pid=ImgDetMain&o=7&rm=3) repeat center top;
            transition: right 0.3s ease;
            padding-top: 60px;
            box-shadow: -2px 0 5px rgba(0,0,0,0.1);
            z-index: 99;
        }
        .sidebar.open { right: 0; }
        .sidebar li { padding: 12px 20px; border-bottom: 1px solid #eee; }
        .sidebar a { color: #333; text-decoration: none; display: block; }
        
        
        ul, ol {
  list-style: none;
}
        
           /* 弹窗 */
        .modal { 
            display: none; 
            position: fixed; 
            top: 0; left: 0; 
            width: 100%; height: 100%; 
            background: rgba(0,0,0,0.5); 
            align-items: center; 
            justify-content: center; 
            z-index: 101; 
        }
        .modal-content { 
            background: white; 
            padding: 10px; 
            border-radius: 8px; 
            border: 1px solid #ddd;
            width: 90%; 
            max-width: 400px; 
            text-align: -webkit-left;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
        }
        

        .menu-icon {
            font-size: 28px;
            color: #999;
            cursor: pointer;
        }

        .banner {
            position: relative;
            border-radius: 15px;
            
            overflow: hidden;
            height: 200px;
            margin-bottom: 25px;
            color: white;
            text-align: center;
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
            padding: 10px;
        }

        .time {
            font-size: 48px;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .date {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .week {
            font-size: 18px;
            opacity: 0.9;
        }
        
           /* 搜索引擎下拉菜单样式 */
    .engine-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 6px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 10;
        min-width: 100px;
        margin-top: 4px;
    }

    .engine-item {
        padding: 8px 15px;
        cursor: pointer;
        font-size: 14px;
        color: #333;
    }

    .engine-item:hover {
        background-color: #f0f8ff;
    }

        .search-bar {
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }

        .search-input {
            flex: 1;
            border: none;
            padding: 12px 15px;
            font-size: 16px;
            outline: none;
        }

        .search-engine {
            display: flex;
            align-items: center;
            padding: 0 15px;
            background-color: #f0f0f0;
            color: #333;
            cursor: pointer;
            font-weight: bold;
        }
        

        .dropdown-icon {
            color: #999;
            font-size: 20px;
        }

        .section-title {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: bold;
            color: #2c3e50;
        }

        .section-title-icon {
            font-size: 24px;
            margin-right: 10px;
            color: #3498db;
        }

        .section-title-line {
            flex: 1;
            height: 2px;
            background-color: #95a5a6;
            margin-left: 10px;
        }

        .blog-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .blog-item {
            flex: 1 1 40%;
            background-color: #fff;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
            transition: transform 0.2s;
        }

        .blog-item:hover {
            transform: translateY(-2px);
        }

        .blog-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            border-radius: 4px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #333;
        }

        .icon-dai { background-color: #f04b5d; color: white; }
        .icon-man { background-color: #c0392b; color: white; }
        .icon-g { background-color: #d35400; color: white; }
        .icon-blogger { background-color: #3498db; color: white; }
        .icon-ink { background-color: #2c3e50; color: white; }

        .blog-name {
            font-size: 16px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }