:root {
    --primary: #e53935;
    --primary-dark: #c62828;
    --secondary: #6c757d;
    --success: #4caf50;
    --danger: #f44336;
    --warning: #ff9800;
    --light: #f8f9fa;
    --dark: #212529;
    --border-radius: 4px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
a{
    color:#000;
    text-decoration: none;
}
/* 顶部导航 */
.top-nav {
    display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
}
.top-nav .nav{
    max-width: 1200px;
    margin: 0 auto;
}
.header{
    background: url(/Public/Index/images/banner.jpg) no-repeat center center;
    align-items: center;
    height: 300px;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.header h1{
    color:#fff;
}
.logo {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

.auth-buttons a {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 14px;
}

.login {
    color: var(--primary);
}

.register {
    background-color: var(--primary);
    color: white;
}
.search-container {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    font-size: 1.2rem;
    outline: none;
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.2);
}

.search-btn {
    position: absolute;
    right: 3px;
    top:3px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 18px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: var(--primary-dark);
}
.search-top{
    width: 100%;
    max-width: 700px;
    position: relative;
}
.search-top .search-input{
    width: 100%;
    padding: 15px 15px;
    border-radius: 5px;
    border: 3px solid #e0e0e0;
    font-size: 1.2rem;
    outline: none;
    transition: var(--transition);
}
.search-top .search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.search-top .search-btn {
    position: absolute;
    right: 5px;
    top:4px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 40px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-links {
    float:right;
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* 主要内容区 */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 快速入口 */
.quick-access {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.quick-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.quick-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-color: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.quick-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.quick-desc {
    font-size: 0.85rem;
    color: var(--secondary);
}

/* 营销服务模块 */
.marketing-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card.hot::before {
    content: '热销';
    position: absolute;
    top: 4px;
    right: -23px;
    background: var(--primary);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-desc {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.service-features i {
    color: var(--success);
}

.service-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary);
    margin-right: 10px;
}

.original-price {
    font-size: 1rem;
    color: var(--secondary);
    text-decoration: line-through;
}

.service-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.gszai-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-dark);
}

/* 合规模块 */
.compliance-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 40px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.compliance-card {
    background: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.compliance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.compliance-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.compliance-desc {
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 服务优势展示 */
.advantages-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 30px;
    margin-bottom: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.advantage-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.advantage-item p {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* 热门企业 */
.section-title {
    font-size: 1.4rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title i {
    color: var(--primary);
    margin-right: 10px;
}

.more-link {
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.company-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.company-header {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.company-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--secondary);
}

.company-body {
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.info-label {
    color: var(--secondary);
}


/* 表格样式 */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .info-table th {
            background: #f8f9fa;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            color: var(--dark);
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9rem;
        }

        .info-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #f0f0f0;
            transition: var(--transition);
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        .info-table tr:hover td {
            background: #f8f9fa;
        }

        .info-label {
            font-weight: 500;
            color: var(--secondary);
            width: 35%;
            font-size: 0.9rem;
        }

       .cate-title{
           width:150px;
           background: #FAFAFA;
       }
.company-footer {
    padding: 10px 15px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
}

.status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    background: #e8f5e9;
    color: var(--success);
}

.detail-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 5px 15px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.detail-btn:hover {
    background-color: var(--primary-dark);
}

/* 风险提示 */
.risk-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-top: 30px;
}

.risk-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--danger);
}

.risk-list {
    list-style: none;
}

.risk-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.risk-item:last-child {
    border-bottom: none;
}

.risk-company {
    font-weight: 500;
}

.risk-type {
    color: var(--danger);
    font-size: 0.85rem;
}

/* 图片弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    overflow: hidden;
}
.gszclose {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
}

.gszclose:hover {
    color: var(--primary);
}
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 10;
}

.close:hover {
    color: var(--primary);
}

.modal-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.modal-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

#modalImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 20px;
}

#modalSubtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

#modalDescription {
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.modal-feature i {
    color: var(--success);
}

.modal-footer {
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    background: #f9f9f9;
}

.modal-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn.primary {
    background: var(--primary);
    color: white;
}

.modal-btn.primary:hover {
    background: var(--primary-dark);
}

.modal-btn.secondary {
    background: #e0e0e0;
    color: var(--dark);
}

.modal-btn.secondary:hover {
    background: #d0d0d0;
}
.info-left{
    float:left;
    width:30%;
}
.info-right{
    float:left;
    width:60%;
}
/* 底部 */
        .footer {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-section h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        .contact-info {
            color: #ccc;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 0.9rem;
        }
        .beian{
            color: #999;
        }
        
        
        /* 面包屑导航 */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            color: var(--secondary);
        }

        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }

        /* 公司头部信息 */
        .company-header {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 20px;
        }

        .company-title {
            
            margin-bottom: 20px;
        }
        .company-name .info-value a{
            color: var(--primary);
        }
        .company-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }

       

        .company-basic {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            margin-top: 10px;
            gap: 20px;
            margin-bottom: 20px;
        }

        .basic-item {
            display: flex;
            flex-direction: column;
        }

        .basic-label {
            font-size: 0.9rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .basic-value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        .action-buttons {
            display: flex;
            gap: 10px;
        }

        .action-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            padding: 10px 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .action-btn.secondary {
            background: #f0f0f0;
            color: var(--dark);
        }

        .action-btn:hover {
            background: var(--primary-dark);
        }

        .action-btn.secondary:hover {
            background: #e0e0e0;
        }

        /* 标签页导航 */
        .tab-nav {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }

        .tab-list {
            display: flex;
            border-bottom: 1px solid #e0e0e0;
        }

        .tab-item {
            padding: 15px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: var(--transition);
        }

        .tab-item.active {
            border-bottom-color: var(--primary);
            color: var(--primary);
            font-weight: 500;
        }

        .tab-item:hover {
            color: var(--primary);
        }

        /* 标签页内容 */
        .tab-content {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
        }

        .info-section {
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .info-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
        }

        .info-label {
            color: var(--secondary);
            font-weight: 500;
        }

     

        /* 股东信息表格 */
        .shareholder-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .shareholder-table th,
        .shareholder-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #f0f0f0;
        }

        .shareholder-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: var(--dark);
        }

        /* 风险信息 */
        .risk-item {
            background: #fff3e0;
            border-left: 4px solid var(--warning);
            padding: 15px;
            margin-bottom: 15px;
            border-radius: var(--border-radius);
        }

        .risk-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--warning);
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            
            
            .search-container {
                margin: 10px 0;
                max-width: 100%;
            }
            
            .company-title {
                flex-direction: column;
                gap: 15px;
            }
            
            .company-basic {
                grid-template-columns: 1fr;
            }
            
            .tab-list {
                flex-wrap: wrap;
            }
            
            .tab-item {
                padding: 10px 15px;
            }
            
            .info-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* 搜索结果头部 */
        .search-header {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 20px;
            margin-bottom: 20px;
        }

        .search-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .search-keyword {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
        }

        .result-count {
            color: var(--secondary);
        }

        .filter-options {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #f5f5f5;
            border: 1px solid #e0e0e0;
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* 搜索结果列表 */
        .results-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .result-item {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 20px;
            transition: var(--transition);
            cursor: pointer;
        }

        .result-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .company-header {
            margin-bottom: 15px;
        }

        .company-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 5px;
        }

        .company-basic-info {
            display: flex;
            gap: 20px;
            color: var(--secondary);
            font-size: 0.9rem;
        }

        .company-status-success {
            background: var(--success);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .company-status-secondary {
            background: var(--secondary);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .company-status-warning {
            background: var(--warning);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        .company-status-danger {
            background: var(--danger);
            color: #fff;
            padding: 3px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .company-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top:10px ;
        }

        .detail-item {
            display: flex;
            flex-direction: column;
        }

        .detail-label {
            font-size: 0.85rem;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .detail-value {
            font-weight: 500;
        }

        .view-detail-btn {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            padding: 8px 20px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 15px;
        }

        .view-detail-btn:hover {
            background: var(--primary-dark);
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
        }

        .num {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
            margin: 0px 5px;
        }
        .prev {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        .next {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        .first {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        .end {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: var(--border-radius);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
        }
        .current {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            padding: 8px 15px;
            cursor: pointer;
            transition: var(--transition);
            margin: 0px 5px;
        }

        .num:hover:not(.active) {
            border-color: var(--primary);
        }
       

        .info-value:hover {
            color: var(--primary);
        }

        .value-copy-btn {
            right: 0;
            top: 50%;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            padding: 4px;
            border-radius: 3px;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .info-value a:hover{
            color: var(--primary);
        }
        .info-value:hover .value-copy-btn {
            opacity: 1;
            visibility: visible;
        }

        .value-copy-btn:hover {
            background: rgba(229, 57, 53, 0.1);
        }
        /* 复制成功提示 */
        .copy-toast {
            position: fixed;
            top: 150px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--success);
            color: white;
            padding: 12px 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            z-index: 2000;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .copy-toast.show {
            opacity: 1;
        }
        
/* 动画效果 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 响应式设计 */
@media (max-width: 768px) {
    
    .logo img{
        width:80px;
        height: auto;
    }
    .search-top .search-input{
        padding: 5px 15px;
    }
   .search-top .search-btn{
       padding: 5px 10px;
   }
    
    .search-container {
        margin: 0 0 15px;
    }
    
    .search-input {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .search-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    
    
    .quick-access {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-services {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .image-container {
        height: 200px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}