.search-container {
    background-color: #ffd700;
    border: 1px solid #000;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    min-height: 100px;
    box-sizing: border-box;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 16px;
    white-space: nowrap;
    color: #333;
}

.filter-select {
    font-size: 16px;
    padding: 6px 10px;
    border: 1px solid #dbdbdb;
    background-color: #000;
    color: #fff;
    border-radius: 4px;
    min-width: 80px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-select:focus {
    outline: none;
    border-color: #666;
}

.search-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.search-input {
    background-color: #000;
    color: #fff;
    border: 1px solid #ccc;
    width: 250px;
    padding: 7px 10px;
    border-radius: 4px;
    font-size: 16px;
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    outline: none;
    border-color: #666;
}

.search-btn, .reset-btn {
    background-color: #000;
    color: #fff;
    border: none;
    width: 80px;
    height: 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover, .reset-btn:hover {
    background-color: #333;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .search-group {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }
    
    .search-input {
        width: 200px;
    }
}

@media (max-width: 768px) {
    .search-container {
        padding: 15px;
        gap: 10px;
    }
    
    .search-input {
        width: 150px;
    }
    
    .search-btn, .reset-btn {
        width: 60px;
        font-size: 14px;
    }
}
   @layer utilities {
        .content-auto {
            content-visibility: auto;
        }
        .ad-border {
            border: 2px solid #FFD700; /* 亮金色边框 */
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); /* 金色光晕阴影 */
            background-color: #8B0000; /* 深姨妈红底色 */
            background-image: linear-gradient(145deg, #8B0000, #6d0000); /* 渐变质感 */
        }
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        .legend-bg {
            /*background-image: url('https://picsum.photos/id/1015/1200/800');*/
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }
        .float-ad-item {
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .float-ad-item:hover {
            transform: translateX(5px) scale(1.05);
            box-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
        }
        .ad-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 8px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            font-size: 12px;
        }
        .float-ad-item:hover .ad-overlay {
            transform: translateY(0);
        }
        .ad-title {
            font-weight: bold;
            color: #ff0800; /* 标题用金色，与边框呼应 */
            margin-bottom: 3px;
            font-size: 13px;
        }
        .custom-blue-text {
        color: #00fff5 !important; /* 确保优先级 */
        font-size: 19px;
    }
    }
    .header-row {
    font-size: 18px;
    background-color: #FFFF37; /* 对应rgb(255,255,55) */
}

/* 表格总宽度固定为1397px */
#main-table {
    width: 1397px;
    table-layout: fixed; /* 固定布局，确保宽度分配生效 */
    border-collapse: collapse; /* 合并边框，避免间隙 */
}

/* 各列宽度分配（总和=1397px） */
#a2 {
    width: 700px; /* 主标题列，占比最大 */
    padding: 6px;
    text-align: left;
    border: 1px solid #000;
}

#b {
    width: 180px; /* 登录器下载列 */
    padding: 6px;
    border: 1px solid #000;
    text-align: center; /* 按钮/操作列建议居中 */
}

#g {
    width: 180px; /* 登陆会员站列 */
    padding: 6px;
    border: 1px solid #000;
    text-align: center;
}

/* 处理重复id="a"的问题（HTML中id应唯一，这里用class区分） */
.col-a {
    width: 168.5px; /* 两个"a"列平分剩余宽度：(1397-700-180-180)/2=168.5 */
    padding: 6px;
    border: 1px solid #000;
    text-align: center;
}

/* 标题文字样式 */
.header-text {
    color: black;
    font-size: 19px; /* 原size="5"对应约15px */
    font-weight: normal;
}
    
        
        /* 核心布局样式 - 修复移位问题 */
        .top-header-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        
            backdrop-filter: blur(8px);
            padding: 20px 0;
            z-index: 1000;
        
            display: flex;
            justify-content: center;
        }
        
        .image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 15px;
            padding: 0 15px;
            max-width: 95%;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
        }
        
        .image-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }
        
        .image-box {
            height: 95px;
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            transition: all 0.4s ease;
            border-radius: 10px;
            overflow: hidden;
          
            flex-shrink: 0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 100px;
        }
        
        /* 图片尺寸设置 */
        .image-box:nth-child(1) { width: 297px; } /* 297x95 */
        .image-box:nth-child(2) { width: 245px; } /* 285x54 */
		.image-box:nth-child(3) { width: 190px; } /* 183x54 */
        .image-box:nth-child(4) { width: 245px; } /* 245x54 */
        .image-box:nth-child(5) { width: 172px; } /* 172x54 */
        .image-box:nth-child(6) { width: 183px; } /* 183x54 */
        .image-box:nth-child(7) { width: 167px; } /* 167x54 */
        
        .image-box:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
            z-index: 100;
			cursor:pointer;
        }
        
        .image-box::after {
            content: attr(data-size);
            position: absolute;
            bottom: 8px;
            left: 0;
            right: 0;
            text-align: center;
            font-size: 12px;
            color: white;
            background: rgba(0, 0, 0, 0.6);
            padding: 2px 0;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .image-box:hover::after {
            cursor:pointer;
        }
        
        /* 内容区域 */
        .content {
            max-width: 1200px;
            width: 90%;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            padding: 40px;
            margin: 30px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 40px;
        }
        
        .feature {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            width: 350px;
            transition: all 0.4s ease;
        }
        
        .feature:hover {
			 
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .feature i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #ff9a9e, #fad0c4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ff9a9e;
        }
        
        .feature p {
            line-height: 1.7;
            color: #e0e0e0;
        }
        
        .info-box {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }
        
        .info-box h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fad0c4;
        }
        
        .dimension-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        .dimension {
            background: rgba(255, 255, 255, 0.15);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        footer {
            margin-top: 50px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            width: 100%;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .image-container {
                gap: 10px;
                padding: 0 10px;
            }
            
            .image-box {
                height: 85px;
            }
            
            .image-box:nth-child(1) { width: 260px; }
            .image-box:nth-child(2) { width: 250px; }
            .image-box:nth-child(3) { width: 215px; }
            .image-box:nth-child(4) { width: 150px; }
            .image-box:nth-child(5) { width: 160px; }
            .image-box:nth-child(6) { width: 145px; }
        }
        
        @media (max-width: 900px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .image-box {
                height: 75px;
            }
            
            .image-box:nth-child(1) { width: 220px; }
            .image-box:nth-child(2) { width: 210px; }
            .image-box:nth-child(3) { width: 180px; }
            .image-box:nth-child(4) { width: 125px; }
            .image-box:nth-child(5) { width: 135px; }
            .image-box:nth-child(6) { width: 120px; }
        }
        
        @media (max-width: 600px) {
            body {
                padding-top: 160px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .top-header-wrapper {
                padding: 15px 0;
            }
            
            .image-box {
                height: 65px;
            }
            
            .image-box:nth-child(1) { width: 180px; }
            .image-box:nth-child(2) { width: 170px; }
            .image-box:nth-child(3) { width: 150px; }
            .image-box:nth-child(4) { width: 105px; }
            .image-box:nth-child(5) { width: 115px; }
            .image-box:nth-child(6) { width: 100px; }
            
            .content {
                padding: 25px;
            }
            
            .feature {
                width: 100%;
            }
        }
        
        /* 动画效果 */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        /*  
        .floating {
            animation: float 4s ease-in-out infinite;
        }*/
        
         body{
        background-color: #e7dde2;
    }
    #flip {
        font-size: 14px;
        color: rgb(159, 159, 159);
        animation: just 2s ease-in-out infinite alternate;
    }
    #flip:hover {
        animation-play-state: paused;
    }
    .btn-lg-index, .btn-group-lg > .btn {
        padding: 1.1rem 1.1rem;
        font-size: 1.55rem;
        line-height: 1.5;
        border-radius: 0.3rem;
    }
    @keyframes just{
        0%{
            color: rgb(159, 159, 159);
        }
        100%{
            color: rgba(255,0,0,1);
        }
    }
	.fixed-top {
	 z-index:9999;
  position: fixed;
    width: 100%;
    text-align: center;
	
} 

 * {
            font-family: Tahoma, "Microsoft Yahei", Arial;
        }

        body {
            text-align: center;
            margin: 0 auto;
            padding: 0;
            background-color: #E8E8E8;
            font-size: 12px;
            font-family: Tahoma, Arial;
            color: #333;
        }

        h1 {
            font-size: 26px;
            font-weight: normal;
            padding: 0;
            margin: 0;
            color: #444444;
        }

        h1 small {
            font-size: 11px;
            font-family: Tahoma;
            font-weight: bold;
        }

        a {
            color: #000000;
            text-decoration: none;
        }

        a.black {
            color: #000000;
            text-decoration: none;
        }

        b {
            color: #999999;
        }

        table {
            clear: both;
            padding: 0;
            margin: 0 0 10px;
            border-collapse: collapse;
            border-spacing: 0;
        }

        th {
            padding: 6px 6px;
            font-weight: bold;
            background: #3066a6;
            color: #FFFFFF;
            border: 1px solid #3066a6;
            text-align: left;
        }

        .th_1 {
            padding: 6px 6px;
            font-weight: bold;
            background: #666699;
            color: #FFFFFF;
            border: 1px solid #3066a6;
            text-align: left;
        }

        tr {
            padding: 0;
            background: #FFFF37;
        }

        tr:hover {
            padding: 0;
            background: #F7F7F7;
        }

        td {
            padding: 6px 6px;
            border: 1px solid #000;
        }

        td:hover {
            padding: 6px 6px;
            background-color: #FFFFFF;
            border: 1px solid #000;
        }

        input {
            padding: 2px;
            background: #FFFFFF;
            border-top: 1px solid #666666;
            border-left: 1px solid #666666;
            border-right: 1px solid #CCCCCC;
            border-bottom: 1px solid #CCCCCC;
            font-size: 12px
        }

        input.btn {
            font-weight: bold;
            height: 20px;
            line-height: 20px;
            padding: 0 6px;
            color: #666666;
            background: #f2f2f2;
            border: 1px solid #999;
            font-size: 12px
        }

        .bar {
            border: 1px solid #999999;
            background: #FFFFFF;
            height: 5px;
            font-size: 2px;
            width: 89%;
            margin: 2px 0 5px 0;
            padding: 1px;
            overflow: hidden;
        }

        .bar_1 {
            border: 1px dotted #999999;
            background: #FFFFFF;
            height: 5px;
            font-size: 2px;
            width: 89%;
            margin: 2px 0 5px 0;
            padding: 1px;
            overflow: hidden;
        }

        .barli_red {
            background: #ff6600;
            height: 5px;
            margin: 0px;
            padding: 0;
        }

        .barli_blue {
            background: #0099FF;
            height: 5px;
            margin: 0px;
            padding: 0;
        }

        .barli_green {
            background: #36b52a;
            height: 5px;
            margin: 0px;
            padding: 0;
        }

        .barli_1 {
            background: #999999;
            height: 5px;
            margin: 0px;
            padding: 0;
        }

        .barli {
            background: #36b52a;
            height: 5px;
            margin: 0px;
            padding: 0;
        }

        #page { /*width: 920px; */
            padding: 0 20px;
            margin: 0 auto;
            text-align: left;
        }

        #header {
            position: relative;
            padding: 10px;
        }

        #footer {
            padding: 15px 15px;
            text-align: left;
            font-size: 12px;
            font-family: Tahoma, Verdana;
            line-height: 12px
        }

        #lnmplink {
            position: absolute;
            top: 20px;
            left: 200px;
            text-align: right;
            font-weight: bold;
            color: #06C;
        }

        #lnmplink a {
            color: #0000FF;
            text-decoration: underline;
        }

        #lnmplink2 {
            position: absolute;
            top: 20px;
            right: 80px;
            text-align: right;
            font-weight: bold;
            color: #06C;
        }

        #lnmplink2 a {
            color: #0000FF;
            text-decoration: underline;
        }

        .w_small {
            font-family: Courier New;
        }

        .w_number {
            color: #f800fe;
        }

        .sudu {
            padding: 0;
            background: #5dafd1;
        }


        .suduk {
            margin: 0px;
            padding: 0;
        }

        .resNo {
            color: #FF0000;
        }

        .word {
            word-break: break-all;
        }

        #a {
            width: 10%;
            text-align: center;
        }

        #a1 {
            width: 64%;
            text-align: left;
        }

        #a2 {
            width: 64%;
            text-align: center;
        }

        #b {
            width: 14%;
            text-align: center;
        }

        #c {
            width: 6%;
            text-align: center;
        }

        #d {
            width: 6%;
            text-align: center;
            background-color: wheat;
        }

        #e {
            width: 6%;
            text-align: center;
        }

        #f {
            width: 6%;
            text-align: center;
            background-color: wheat;
        }

        #f1 {
            width: 1%;
            background-color: black
        }

        #g {
            width: 12%;
            text-align: center;
        }

        #h {
            width: 100%;
            text-align: center;
        }
        .macos-button {
  /*background-color: white;背景色 */
  border: none; /* 无边框 */
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1); /* 阴影效果 */
  border-radius: 8px; /* 圆角 */
  font-size: 16px; /* 字体大小 */
  padding: 8px 9px; /* 内边距 */
  cursor: pointer; /* 鼠标光标变为指针形状 */
  outline: none; /* 点击时无轮廓 */
  user-select: none; /* 文字不可选中 */
  transition: box-shadow 0.3s ease; /* 盒子阴影变化过渡效果 */
}
 
.macos-button:hover {
  box-shadow: 5px 5px 15px rgba(0,0,0,0.6); /* 鼠标悬浮时阴影变化 */
}
 
.macos-button:active {
  background-color: #e0e0e0; /* 鼠标点击时背景色变化 */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* 盒子阴影变化 */
}

}