﻿@charset "utf-8";
/* CSS Document */
/*home banner*/
        *, *:before, *:after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            color: #555;
            background: #eee;
        }

        h1 {
            padding: 50px 0;
            font-weight: 400;
            text-align: center;
        }

        p {
            margin: 0 0 20px;
            line-height: 1.5;
        }

        main {
            min-width: 320px;
            max-width: 640px;
            padding: 8px;
            margin: 0 auto;
            background: #fff;
        }

        section {
            display: none;
            margin: 0 auto;
            padding: 8px 0 0;
            border-top: 1px solid #ddd;
        }

        input {
            display: none;
        }

        label {
            display: none !important; /* 隐藏原有的label */
        }

        label:before {
            font-family: fontawesome;
            font-weight: normal;
            margin-right: 11px;
        }

        label:hover {
            color: #888;
            cursor: pointer;
        }

        input:checked + label {
            color: #000;
            border: 1px solid #ddd;
            border-top: 2px solid orange;
            border-bottom: 1px solid #fff;
        }

        #tab1:checked ~ #content1,
        #tab2:checked ~ #content2,
        #tab3:checked ~ #content3,
        #tab4:checked ~ #content4,
        #tab5:checked ~ #content5,
        #tab6:checked ~ #content6,
        #tab7:checked ~ #content7,
        #tab8:checked ~ #content8 {
            display: block !important;
        }

        @media screen and (max-width: 60px) {
            label {
                font-size: 0;
            }

            label:before {
                margin: 0;
                font-size: 18px;
            }
        }
        @media screen and (max-width: 40px) {
            label {
                padding: 26px;
            }
        }

        /* 分页样式 */
        .pagination-container {
            margin: 20px 0;
            text-align: center;
        }
        
        .pagination {
            display: inline-block;
            padding: 8px 12px;
            background: #f5f5f5;
            border-radius: 4px;
        }
        
        .pagination a, .pagination span {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 2px;
            text-decoration: none;
            color: #333;
            background: white;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
        }
        
        .pagination a:hover {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .pagination .current {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .pagination .disabled {
            color: #999;
            cursor: not-allowed;
        }
        
        .page-info {
            margin-top: 10px;
            color: #666;
            font-size: 14px;
        }
        
        .pagination-select {
            margin-left: 10px;
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 3px;
            font-size: 14px;
        }
        
        /* 简单版权样式 */
        .simple-copyright {
            background: #f8f9fa;
            padding: 15px;
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
            border-top: 1px solid #eee;
        }
        
        .simple-copyright a {
            color: #3498db;
            text-decoration: none;
            margin: 0 5px;
        }
        
        .simple-copyright a:hover {
            text-decoration: underline;
        }
        
        .copyright-line {
            margin: 5px 0;
        }

        /* 置顶标记样式 - 新增 */
        .top-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #ff5722;
            color: white;
            padding: 3px 8px;
            font-size: 12px;
            border-radius: 4px;
            z-index: 10;
            font-weight: bold;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .game-card {
            position: relative; /* 为绝对定位的子元素提供参考 */
        }

        /* 游戏图片容器样式调整 */
        .game-image-container {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        /* 游戏按钮垂直排列容器 - 改为上下排列 */
        .game-buttons-row {
            display: flex;
            flex-direction: column; /* 改为上下排列 */
            gap: 6px; /* 减小间隙 */
            margin-top: 10px;
            width: 100%;
        }

        /* 左边演示按钮 - 减小尺寸 */
        .demo-btn-left {
            flex: 1;
            display: inline-block;
            background: #2ecc71;
            color: white;
            padding: 4px 0; /* 减小内边距 */
            border-radius: 4px; /* 减小圆角 */
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px; /* 减小字体 */
            text-align: center;
        }

        .demo-btn-left:hover {
            background: #27ae60;
            text-decoration: none;
        }

        /* 右边查看详情按钮 - 减小尺寸 */
        .detail-btn-right {
            flex: 1;
            display: inline-block;
            background: #3498db;
            color: white;
            padding: 4px 0; /* 减小内边距 */
            border-radius: 4px; /* 减小圆角 */
            text-decoration: none;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px; /* 减小字体 */
            text-align: center;
        }

        .detail-btn-right:hover {
            background: #2980b9;
            text-decoration: none;
        }

        /* 调整游戏名称高度 - 可调节大小 */
        .game-name {
            font-size: 16px; /* 调大游戏名称字体 */
            font-weight: bold;
            color: #2c3e50;
            margin: 8px 0 10px 0; /* 调大边距 */
            min-height: 40px; /* 调大最小高度 */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1.4; /* 调整行高 */
            flex-shrink: 0;
        }

/* 直接调整原始按钮样式，使其更小 */
.demo-btn-left,
.detail-btn-right {
    padding: 4px 0;  /* 从4px 0减小到3px 0 */
    font-size: 14px; /* 从14px减小到12px */
    border-radius: 4px; /* 从4px减小到3px */
}

/* 调整游戏名称以适应更小的按钮 */
.game-name {
    font-size: 14px;  /* 从14px减小到13px */
    min-height: 35px; /* 从40px减小到35px */
    margin: 6px 0 8px 0;
}

/* 手机响应式调整 */
@media(max-width: 768px) {
    .game-buttons-row {
        gap: 4px;
        margin-top: 8px;
    }
    
    .demo-btn-left,
    .detail-btn-right {
        padding: 3px 0;  /* 更小的内边距 */
        font-size: 12.5px; /* 更小的字体 */
    }
    
    .game-name {
        font-size: 12px;
        min-height: 30px;
        margin: 5px 0 6px 0;
    }
}

@media(max-width: 480px) {
    .game-buttons-row {
        gap: 3px;
        margin-top: 6px;
    }
    
    .demo-btn-left,
    .detail-btn-right {
        padding: 3px 0;  /* 最小内边距 */
        font-size: 12.5px; /* 最小字体 */
    }
    
    .game-name {
        font-size: 10px;
        min-height: 26px;
        margin: 4px 0 5px 0;
    }
}
        /* 如果您想进一步调整游戏名称大小，可以修改以下数值 */
        /* 游戏名称大小调整类 */
        .game-name-small {
            font-size: 14px;
            min-height: 32px;
        }
        
        .game-name-medium {
            font-size: 16px;
            min-height: 40px;
        }
        
        .game-name-large {
            font-size: 18px;
            min-height: 48px;
        }


/* ============ 新添加的友情提示样式 ============ */
.notice-section {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto 15px;
    max-width: 600px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.notice-title {
    color: #e74c3c;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

.notice-content p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
}

.notice-content h3, 
.notice-content h2, 
.notice-content h4 {
    color: #333;
    margin: 10px 0 5px 0;
}

.notice-content h3 {
    font-size: 16px;
}

.notice-content h2 {
    font-size: 17px;
    color: #e50005;
}

.notice-content h4 {
    font-size: 15px;
    color: #666;
}

/* ============ 新添加的游戏网格布局样式 ============ */
.games-grid {
    display: grid;
    /* 改为固定4列布局 */
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* 减小间隙，确保4列能放下 */
    padding: 15px 10px;
    margin-top: 10px;
}

.game-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-2px);
}

/* 游戏图片容器 - 完全自适应图片大小 */
.game-image-container {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 游戏图片 - 完全按原始尺寸显示 */
.game-image {
    max-width: 100%;
    height: auto; /* 高度自适应 */
    display: block;
}

.game-name {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin: 8px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    flex-shrink: 0; /* 防止名称被压缩 */
}

.demo-btn {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 6px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 14px;
    margin-top: 10px;
    flex-shrink: 0; /* 防止按钮被压缩 */
}

.demo-btn:hover {
    background: #27ae60;
    color: white;
    text-decoration: none;
}

/* 修改跑马灯样式 */
marquee {
    margin: 10px auto;
    max-width: 640px;
}

/* 调整卡片内元素的间距 */
.game-card > *:not(:last-child) {
    margin-bottom: 1px;
}

/* 响应式调整 - 主要调整网格布局 */
@media(max-width: 768px) {
    .games-grid {
        /* 平板电脑显示3列 */
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 12px 8px;
    }
    
    .game-name {
        font-size: 14px;
        min-height: 35px;
    }
    
    .demo-btn {
        padding: 5px 15px;
        font-size: 13px;
    }
}

@media(max-width: 600px) {
    .games-grid {
        /* 小屏幕显示2列 */
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 10px 5px;
    }
    
    .game-card {
        padding: 8px;
    }
    
    .game-name {
        font-size: 13px;
        min-height: 30px;
    }
}

@media(max-width: 640px) {
    .games-grid {
        /* 超小屏幕保持2列，但进一步减小间隙 */
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .game-name {
        font-size: 14px;
    }
    
    .demo-btn {
        padding: 4px 10px;
        font-size: 12px;
    }
}

/* ============ 新添加的分类标签网格布局样式 ============ */
.tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 15px 10px;
    margin-bottom: 10px;
}

.category-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 15px 5px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, background-color 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 55px;
}

.category-card:hover {
    transform: translateY(-2px);
    background: #e8f4fc;
}

.category-card.active {
    background: #3498db;
    border-color: #2980b9;
    color: white;
}

.category-card.active:hover {
    background: #2980b9;
}

.category-card .category-title {
    font-size: 14px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.category-card.active .category-title {
    color: white;
}

.category-card .category-subtitle {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.category-card.active .category-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* 隐藏原有的label标签 */
.bav main label {
    display: none;
}

/* 修改原有的main样式以容纳新的分类网格 */
.bav main {
    padding-top: 5px; /* 减少顶部内边距 */
}

/* 响应式调整 */
@media(max-width: 768px) {
    .tabs-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        padding: 12px 8px;
    }
    
    .category-card {
        height: 70px;
        padding: 12px 3px;
    }
    
    .category-card .category-title {
        font-size: 13px;
    }
    
    .category-card .category-subtitle {
        font-size: 10px;
    }
}

@media(max-width: 480px) {
    .tabs-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 10px 5px;
    }
    
    .category-card {
        height: 65px;
        padding: 10px 2px;
    }
    
    .category-card .category-title {
        font-size: 12px;
    }
    
    .category-card .category-subtitle {
        font-size: 9px;
    }
}

@media(max-width: 640px) {
    .tabs-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px;
        padding: 8px 3px;
    }
    
    .category-card {
        height: 45px;
        padding: 8px 2px;
    }
}


/* 游戏图片容器样式调整 */
.game-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


/* 修改分类卡片容器的下边距 */
.tabs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 8px 8px;  /* 减小上下内边距 */
    margin-bottom: 5px;  /* 减小下边距 */
}

/* 修改游戏网格的上边距和内边距 */
.games-grid {
    display: grid;
    gap: 6px;  /* 减小间距 */
    padding: 6px 6px;  /* 减小内边距 */
    margin-top: 5px;  /* 减小上边距 */
}

/* 减小游戏卡片的padding */
.game-card {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 6px;  /* 稍微减小圆角 */
    padding: 5px;  /* 减小内边距 */
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}


/* 复制链接按钮样式 */
.copy-link-btn {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: #ff9900;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold; /* 添加这一行使字体加粗 */
    transition: background-color 0.3s;
    margin-top: 5px;
}

.copy-link-btn:hover {
    background: #e68a00;
    color: white;
    text-decoration: none;
    font-weight: bold; /* 确保悬停时也保持加粗 */
}

.copy-link-btn:active {
    background: #cc7a00;
    font-weight: bold; /* 确保点击时也保持加粗 */
}

.copy-success {
    background: #4CAF50 !important;
    font-weight: bold; /* 复制成功状态也加粗 */
}


            /* 音乐按钮样式 - 移除点击放大的动画效果 */
        .music-btn {
            position: fixed !important;
            bottom: 60px !important;
            right: 20px !important;
            z-index: 99999 !important;
            background: linear-gradient(135deg, #151B0B, #151B0B) !important;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* 减小阴影 */
            border: 2px solid rgba(255, 255, 255, 0.2); /* 减小边框透明度 */
            visibility: visible !important;
            opacity: 1 !important;
            transition: all 0.2s ease; /* 缩短过渡时间 */
        }
        
        /* 移除鼠标悬停时的放大效果 */
        .music-btn:hover {
            opacity: 0.9; /* 只改变透明度 */
            transform: none; /* 移除缩放 */
        }
        
        /* 移除点击状态的缩放效果 */
        .music-btn:active {
            background: linear-gradient(135deg, #151B0B, #151B0B) !important;
            transform: none; /* 移除缩放 */
        }
        
        /* 移动端样式 */
        @media (max-width: 768px) {
            .music-btn {
                width: 40px;
                height: 40px;
                right: 15px !important;
                bottom: 55px !important;
                font-size: 16px;
            }
        }
        
        /* 超小屏幕 */
        @media (max-width: 480px) {
            .music-btn {
                width: 38px;
                height: 38px;
                right: 12px !important;
                bottom: 52px !important;
                font-size: 15px;
            }
        }
        
        /* 搜索悬浮按钮样式 - 添加在客服按钮上方 */
        .search-float-btn {
            position: fixed;
            right: 20px;
            bottom: 220px; /* 在客服按钮上方70px位置 */
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6B6B, #FF4757);
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }
        
        .search-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
        }
        
        .search-icon {
            font-size: 20px;
            color: white;
            line-height: 1;
        }
        
        /* 客服悬浮按钮样式 - 调整位置 */
        .service-float-btn {
            position: fixed;
            right: 20px;
            bottom: 140px; /* 调整位置，在搜索按钮下方 */
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1E9FFF, #0081FF);
            box-shadow: 0 4px 15px rgba(30, 159, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            /*animation: float 3s ease-in-out infinite;*/
        }
        
        .service-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(30, 159, 255, 0.6);
        }
        
        .service-icon {
            font-size: 20px;
            color: white;
            line-height: 1;
        }
        
        /*@keyframes float {*/
        /*    0%, 100% { transform: translateY(0); }*/
        /*    50% { transform: translateY(-8px); }*/
        /*}*/
        
        /* 搜索弹窗样式 */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        /* 搜索弹窗内容 */
        .search-modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 600px; /* 增加宽度，容纳更多内容 */
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: modalSlideIn 0.3s ease;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        @keyframes modalSlideIn {
            from {
                transform: translate(-50%, -60%);
                opacity: 0;
            }
            to {
                transform: translate(-50%, -50%);
                opacity: 1;
            }
        }
        
        .search-modal-header {
            background: linear-gradient(135deg, #FF6B6B, #FF4757);
            color: white;
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
        }
        
        .search-close-btn {
            cursor: pointer;
            font-size: 28px;
            line-height: 1;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .search-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .search-modal-body {
            padding: 25px;
        }
        
        .search-input-container {
            position: relative;
            margin-bottom: 20px;
            display: block;
            width: 100%;
        }
        
        .search-input {
            width: 100% !important;
            padding: 15px 50px 15px 15px !important;
            border: 2px solid #e0e0e0 !important;
            border-radius: 8px !important;
            font-size: 16px !important;
            box-sizing: border-box !important;
            transition: border 0.3s !important;
            background: white !important;
            color: #333 !important;
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
            height: auto !important;
            line-height: normal !important;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #FF6B6B !important;
        }
        
        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #FF6B6B, #FF4757);
            color: white;
            border: none;
            border-radius: 6px;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .search-btn:hover {
            background: linear-gradient(135deg, #FF4757, #ff3f34);
        }
        
        /* 搜索提示 */
        .search-hint {
            margin-top: 10px;
            color: #666;
            font-size: 14px;
            padding: 8px 12px;
            background: #f9f9f9;
            border-radius: 6px;
            border-left: 3px solid #FF6B6B;
        }
        
        /* 搜索结果区域 */
        .search-results {
            max-height: 500px; /* 增加高度，容纳更多结果 */
            overflow-y: auto;
            margin-top: 20px;
            border-top: 1px solid #eee;
            padding-top: 15px;
            display: block;
        }
        
        .search-result-item {
            padding: 15px;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.3s;
            margin-bottom: 15px;
        }
        
        .search-result-item:hover {
            background: #f9f9f9;
        }
        
        .search-result-title {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }
        
        .search-result-title a {
            color: #333;
            text-decoration: none;
        }
        
        .search-result-title a:hover {
            color: #FF6B6B;
        }
        
        .search-result-category {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .search-result-description {
            font-size: 14px;
            color: #777;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        /* 搜索结果中的按钮样式 - 与主页保持一致 */
        .search-result-buttons {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .search-result-demo-btn {
            flex: 1;
            background: linear-gradient(135deg, #FF6B6B, #FF4757);
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .search-result-demo-btn:hover {
            background: linear-gradient(135deg, #FF4757, #ff3f34);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
        }
        
        .search-result-detail-btn {
            flex: 1;
            background: linear-gradient(135deg, #1E9FFF, #0081FF);
            color: white;
            padding: 10px 15px;
            border-radius: 6px;
            text-align: center;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .search-result-detail-btn:hover {
            background: linear-gradient(135deg, #0081FF, #0072e0);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(30, 159, 255, 0.4);
        }
        
        .no-results {
            text-align: center;
            padding: 40px 20px;
            color: #999;
            font-size: 16px;
        }
        
        .search-count {
            text-align: center;
            padding: 10px;
            color: #666;
            font-size: 14px;
            background: #f8f9fa;
            border-radius: 6px;
            margin-bottom: 15px;
        }
        
        .loading-spinner {
            text-align: center;
            padding: 30px;
        }
        
        .spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #FF6B6B;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* 客服二维码弹窗样式 - 修复页面偏移问题 */
        .service-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        
        /* 弹窗内容 - 修复电脑端偏移问题 */
        .service-modal-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 380px; /* 增大宽度，容纳更大的二维码 */
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            animation: modalSlideIn 0.3s ease;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* 确保弹窗位置准确，不会导致页面偏移 */
        }
        
        .service-modal-header {
            background: linear-gradient(135deg, #1E9FFF, #0081FF);
            color: white;
            padding: 18px 25px; /* 增大内边距 */
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: bold;
        }
        
        .service-close-btn {
            cursor: pointer;
            font-size: 28px;
            line-height: 1;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .service-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .service-modal-body {
            padding: 30px 25px; /* 增大内边距 */
            text-align: center;
        }
        
        .qr-code-container {
            margin-bottom: 20px;
        }
        
        /* 增大二维码图片尺寸，防止压缩 */
        .qr-code-img {
            width: 220px; /* 从180px增加到220px */
            height: 220px; /* 从180px增加到220px */
            border: 1px solid #eee;
            padding: 12px; /* 增加内边距 */
            border-radius: 8px;
            margin-bottom: 20px;
            background: white;
            object-fit: contain; /* 确保图片不会被压缩变形 */
        }
        
        .qr-code-text {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .qr-code-text p {
            margin: 10px 0; /* 增加间距 */
        }
        
        .wechat-id {
            color: #1E9FFF;
            font-weight: bold;
            font-size: 18px; /* 增大字体 */
            margin: 12px 0 !important;
        }
        
        .service-time {
            color: #999;
            font-size: 13px;
            margin-top: 8px !important;
        }
        
        .copy-btn-container {
            margin-top: 25px; /* 增加间距 */
        }
        
        .service-copy-btn {
            width: 100%;
            padding: 14px; /* 增加按钮内边距 */
            background: linear-gradient(135deg, #5FB878, #4CAF50);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .service-copy-btn:hover {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(95, 184, 120, 0.4);
        }
        
        /* 响应式调整 - 确保移动端也有良好显示 */
        @media (max-width: 768px) {
            .search-float-btn {
                width: 40px;
                height: 40px;
                right: 15px;
                bottom: 175px; /* 移动端调整位置 */
            }
            
            .search-icon {
                font-size: 18px;
            }
            
            .service-float-btn {
                width: 40px;
                height: 40px;
                right: 15px;
                bottom: 115px; /* 移动端调整位置 */
            }
            
            .service-icon {
                font-size: 18px;
            }
            
            .search-modal-content {
                width: 95%;
                max-width: 500px; /* 移动端稍小一点 */
            }
            
            .service-modal-content {
                width: 95%;
                max-width: 350px; /* 移动端稍小一点 */
            }
            
            .qr-code-img {
                width: 200px; /* 移动端也适当增大 */
                height: 200px;
            }
            
            .search-result-buttons {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .search-float-btn {
                width: 38px;
                height: 38px;
                right: 12px;
                bottom: 168px; /* 小屏幕调整位置 */
            }
            
            .search-icon {
                font-size: 17px;
            }
            
            .service-float-btn {
                width: 38px;
                height: 38px;
                right: 12px;
                bottom: 110px; /* 小屏幕调整位置 */
            }
            
            .service-icon {
                font-size: 17px;
            }
            
            .search-modal-content {
                max-width: 320px;
            }
            
            .service-modal-content {
                max-width: 320px;
            }
            
            .qr-code-img {
                width: 180px;
                height: 180px;
            }
        }
        
        /* 防止页面滚动和偏移的样式 */
        body.modal-open {
            overflow: hidden !important;
            position: relative; /* 改为relative，避免页面跳动 */
            width: 100%;
            height: 100%;
        }
        
        /* 确保弹窗在所有内容之上 */
        .search-modal,
        .service-modal {
            z-index: 9999;
        }

a:visited {color: #000}	/* 已访问的链接 */
.flexslider {margin: 0;padding: 0;}
.flexslider .slides > li {display: none;-webkit-backface-visibility: hidden;}
.flexslider .slides img {width:100%;display: block;}
.no-js .slides > li:first-child {display: block;}
.flexslider{margin: 0 auto;position: relative;width:100%;zoom:1;}
.flexslider .flex-viewport {-webkit-transition: all 1s ease;-moz-transition: all 1s ease;transition: all 1s ease;}
.flexslider .slides {zoom: 1;}
.flexslider .flex-direction-nav {display:none;}
.flexslider .flex-control-nav {width:100%;position: absolute;bottom:10px; height:10%; left:0px;z-index:1;text-align:center; }

.flexslider .flex-control-nav li {margin:2% 2% 0px 0px;display:inline-block;zoom:1;z-index:1;}
.flexslider .flex-control-paging li a {
	display:block;
	height: 12px;
	overflow: hidden;
	text-indent:990em;
	width: 12px;
	cursor: pointer; border-radius:12px;
	background-color:#ffffff;
}
.flexslider .flex-control-paging li a.flex-active {
	background-color:#e50005;
}

.nav{padding:20px 0px; position:relative; overflow:hidden; }
.logo{position:absolute;  width:25%; max-width:170px; left:37%; top:37%;}

.nav li{ float:left; width:46%; margin:2%; border-radius:3px; overflow:hidden; position:relative;-webkit-box-shadow:0 0 8px rgba(0, 0, 0, .5);  
  -moz-box-shadow:0 0 8px rgba(0, 0, 0, .5); box-shadow:0 0 8px rgba(0, 0, 0, .5);   }

.nav li p{ background-color:rgba(0,0,0,0.82); position:absolute; left:0px; width:100%; bottom:0px; color:#FFF; text-align:center; line-height:30px; font-size:16px; border-bottom-left-radius:3px;border-bottom-right-radius:3px;}

.nynav{ background-color:#f2f2f2;}
.nynav li{width:25%; float:left; text-align:center; padding:10px 0px 5px 0px; line-height:28px; }
.nynav li img{width:50%;}
.nynav li.cur{background:#fff;}
.nynav li.cur a{ color:#e50005}
.nynav li a{ color:#666666}

.nxhs{ border-bottom:1px solid #b2b2b2; text-align:center; padding:20px 0px;}
.nxhs li{ background-color:#f2f2f2; display:inline-block; padding:5px 10px; border-radius:3px; margin:0px 5px;}
.nxhs li a{display:block;}
.nxhs li.cur{ background-color:#e50005;}
.nxhs li.cur a{ color:#FFF;}
.ny_box{padding:10px 15px 20px; line-height:30px;}
.ny_about p{padding:10px 0px;}


.ny_linian dl{overflow:hidden; margin:40px 0px;}
.ny_linian dt{ width:80px; height:65px; background-color:#262626; border-radius:100px; color:#FFF; text-align:center; font-size:18px; line-height:25px; padding-top:15px; margin:0 auto;}
.ny_linian dd{text-align:center;}
.ny_linian dd p{ font-size:18px; line-height:30px; margin:15px 0px;}
.ny_linian dd span{color:#666;  display:block; line-height:24px;}

.ny_linian dl.cur dt{background-color:#e50005;}
.ny_linian dl.cur dd p{color:#e50005;}


.ny_hexin dt{ color:#FFF; font-size:18px; background:url(../images/jixs.jpg) no-repeat right center #333333; padding:0px 30px 0px 10px; line-height:40px; display:inline-block; margin-bottom:20px;}
.ny_hexin dl{margin:30px 0px;}
.ny_hexin dd p{text-indent:2em; margin-top:10px;}

.ny_jiyu  p{padding:10px 0px;}
.nsgad{width:50%; float:left; margin-right:10px;}
.ny_news{padding:20px 0px; overflow:hidden}
.ny_news li{overflow:hidden; padding:15px;}
.ny_news li a{display:block;}
.newsleft{float:left; width:42%;}
.newsright{width:55%; float:right;}
.newsright p{line-height:25px; font-size:14px; overflow:hidden; height:25px;white-space: nowrap;
text-overflow: ellipsis;}
.newsright p em{font-style:normal; float:right; font-size:12px;}
.newsright span{line-height:20px; height:60px; overflow:hidden; display:block; font-size:13px; color:#666666}

.ny_news li:nth-child(even){background-color:#f6f6f6;}

a.jiazai{ font-size:16px; background-color:#ebebeb; padding:5px 15px; margin:10px auto; width:80px; display:block; border-radius:3px; color:#787878}
a.jiazai:hover{background-color:#e50005; color:#FFF;}

.biatixs{font-size:16px; text-align:center; line-height:24px; margin:15px 0px;}
.bssiatixs{font-size:14px; font-weight:normal; text-align:center; line-height:20px; color:#666666}

.ny_newsshowxs{padding:10px 0px;}
.ny_newsshowxs p{padding:10px 0px;}
.disng{ border:1px solid #dadada; padding:10px; overflow:hidden;}
.disng a{width:50%; float:left; border-left:1px solid #dadada; margin-left:-1px; text-align:center; font-size:16px; display:block;}
.disng a:first-child{border:none;}

.sosu{background-color:#f2f2f2; padding:10px 3%; overflow:hidden;}
.sosu p{border:1px solid #d3d3d3;border-radius:3px; overflow:hidden; background-color:#FFF;}
.inintn{ height:35px; line-height:35px; font-size:14px;font-family:microsoft yahei; width:77%; float:left; padding-left:2%; border:none}
.inbtn{ width:35px; height:35px; background:url(../images/soso.jpg) no-repeat center #ffffff; background-size:20px; width:15%; float:right;border:none}
.fenleis{padding:10px 0px;}
.fenleis li{width:44%; float:left; margin:3%;}
.xinpings{ background-color:#f2f2f2; text-align:center; line-height:40px; font-size:18px;}
.huijih{overflow:hidden; padding:20px 0px;}
.huijih li{ border-top:1px solid #ebebeb; line-height:50px;}
.huijih li:first-child{border:none;}
.huijih li a{display:block; padding:0px 3%; height:100%;white-space: nowrap;
text-overflow: ellipsis; overflow:hidden; font-size:16px;}
.huijih li a span{float:right;}

.fenleis li p{text-align:center; font-size:15px;white-space: nowrap;text-overflow:ellipsis;line-height:50px;height:50px;overflow:hidden;}
.propics{ overflow:hidden; margin:20px 0px;}
.zhongxs h1{font-size:18px; line-height:30px;}
.tabshd{margin:20px 0px;}
.tabshd th{text-align:left; background-color:#818888; color:#FFF; padding:5px 10px;}
.tabshd td{padding:5px; line-height:24px;}
.leibias{padding:10px 3%;}
.leibias dt{line-height:50px; font-size:18px;}
.leibias dt img{width:6%; max-width:35px; margin-top:-2px;}
.leibias dd{overflow:hidden; display:block;}
.leibias dd a{line-height:22px; border:1px solid #ccc; display:block; float:left; text-align:center; padding:5px 10px; margin-top:3%; margin-right:3%; bhttp://localhost:1331/Images/index/b1.pngorder-radius:2px;}

.cnsgds{margin-top:20px;}
.cnsjidas{margin-bottom:30px; overflow:hidden;}
.cnsjidas span{width:50%; height:40px; background-color:#f2f2f2; display:block; float:left; font-size:18px; text-align:center; line-height:40px;}
.cnsjidas span.cur{ background-color:#e50005; color:#FFF}
.mhsgf{display:none;}
.mhsgf:first-child{display:block;}
.mhsgf li{margin-bottom:30px;}
.mhsgf li p{text-indent:2em;}
.mhsgf li div{position:relative; margin-bottom:10px;}
.mhsgf li div span{width:100%; display:block; height:30px; background-color:rgba(0,0,0,0.5); color:#FFF; text-align:center; line-height:30px; left:0px; bottom:0px; position:absolute; font-size:16px;}





.footer{position: fixed;max-width: 640px;width: 100%;bottom: 0;z-index: 99;background: #000000;padding:3px 0;}
.footer li{width: 50%;background: #000000;text-align: center;line-height: 46px;color:#fff;float: left;box-sizing: border-box;}
.footer li:first-child{border-right:1px solid #fff;}
.footer li a{width: 100%;display: block;color: #fff;}
.footer li img{width: 100%;vertical-align: top;}
.footer li.cur{ background-color:#1b1b1b;}



.index_bg {position:absolute;z-index:-1;top:0}
.index_bg img {width:100%;height:100%;max-width:640px;}
.index_banner {margin-top:17%;}
.navs{ width:100%; text-align:center;font-size:18px;}
.navs li{float:left;width:33.3333%;display:block;}
.navs li a{ display:block; color:#221815;position:relative;}
.navs li a span{position:absolute;z-index:9;left:0;top:32%;width:100%;color:#fff;}


.index_a {padding:0; width:50%;}

.index_a .a1 {margin:0 0 0 51%;}
.index_a .a2 {margin:29% 0 0 51%;}
.index_a .a3 {margin:29% 0 0 51%;}

.index_b {width:100%;padding-top:36%;}
.index_b .swiper-slide img{width:85%;max-width:556px;padding-left:12%;}
.index_bg2 {position: relative;margin-top: 12%}
.index_bg2s {width: 45%;max-width: 288px;display: block;position: absolute;left: 30%; top: 50%;}

.index_bg2 {position: relative;margin-top: 0%}
.index_bg2s {width: 45%;max-width: 288px;display: block;position: absolute;left: 45%; top: 40%;}

.index_bg3 {position: relative;}
.index_bg3s {width: 45%;max-width: 288px;display: block;position: absolute;left: 45%; top: 70%;}



.cases_a .a1 {background:none;width:50%;max-width: 318px;display: block;margin:109% 0 0 25%;}


.content_a .a1 {background:none;width:91%;max-width: 579px;display: block;margin:76% 0 0 5%;}
.content_a span{display:block;font-size:1.5vw;text-align:right;}
.content_a span a{color:#2c90dd;text-decoration:underline;}
.content_a span.span1{margin:19.5% 8% 0;}
.content_a span.span2{margin:2.5% 11% 0;}
.content_a span.span3{margin:2% 14% 0;}

.content_a span.span4{margin:12.5% 8% 0;}
.content_a span.span5{margin:2.1% 11% 0;}
.content_a span.span6{margin:2.2% 14% 0;}

.content_b .a1 {background:none;width:30%;max-width: 191px;display: block;margin:43% 0% 0 50%;}
.content_c{padding-top:26.8%;}
.content_c ul li{width:33.3%;float:left;}
.content_c ul li a {display:block;}
.content_c .content_c_a{text-align:center;}

.products_a,.products_b,.products_c,.products_d{padding-bottom:77.7%;}
.products_a p,.products_b p,.products_c p,.products_d p{background:#3d3b46;color:#d2b76f;position:relative;}
.products_a p span,.products_b p span,.products_c p span,.products_d p span{position:absolute;top:20%;left:15%;font-size:20px;width:85%;}
.products_a p span a,.products_b p span a,.products_c p span a,.products_d p span a{float:right;color:#fff;padding:1% 2% 0 0;font-size:16px;}

.pic span{background:none;width:20%;max-width: 131px;display: block;float:left;font-size: 16px;text-align:center;}
.pic span a{display: block;margin-bottom: 16%;}

.pic span.a1{margin:7% 0 0 9%;}
.pic span.a2{margin:7% 0 0 11.7%;}
.pic span.a3{margin:7% 0 0 11.5%;}
.pic span.a4{margin:8% 0 0 9%;}
.pic span.a5{margin:8% 0 0 11.7%;}
.pic span.a6{margin:8% 0 0 11.5%;}


@media(min-width:1000px) {
.products_a p span,.products_b p span,.products_c p span,.products_d p span{font-size:26px;top:28%;}
.products_a p span a,.products_b p span a,.products_c p span a,.products_d p span a {font-size:20px;}
.navs{ font-size:22px;}
.pic span {font-size:24px;}
}

@media(max-width:800px) {
.products_a p span,.products_b p span,.products_c p span,.products_d p span{font-size:22px;top:28%;}
.products_a p span a,.products_b p span a,.products_c p span a,.products_d p span a {font-size:18px;}
.navs{ font-size:20px;}
.pic span {font-size:24px;}
}

@media(max-width:600px) {
.products_a p span,.products_b p span,.products_c p span,.products_d p span{font-size:17px;top:26%;}
.products_a p span a,.products_b p span a,.products_c p span a,.products_d p span a{font-size:14px;}
.navs li a span{top:32%;}
.navs{ font-size:16px;}
.pic span {font-size:16px;}
.pic span a{margin-bottom: 14%;}
}

@media(max-width:350px) {
.products_a p span,.products_b p span,.products_c p span,.products_d p span{font-size:15px;top:20%;}
.products_a p span a,.products_b p span a,.products_c p span a,.products_d p span a {font-size:12px;}
.navs{ font-size:14px;}
.pic span {font-size:12px;}
.pic span a{margin-bottom: 12%;}

}

