 /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }
        
        /* 头部导航样式 */
        header {
            background-color: #ffffff;
            border-bottom: 1px solid #e5e5e5;
            padding: 12px 0;
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .logo-blue {
            color: #007bff;
        }
        
        .logo-black {
            color: #333;
        }
        
        .nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        
        .nav-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        
        .search-container {
            display: flex;
            align-items: center;
            background-color: #f5f5f5;
            border-radius: 4px;
            padding: 4px 8px;
            margin-left: 16px;
        }
        
        .search-select {
            background: none;
            border: none;
            color: #666;
            font-size: 14px;
            cursor: pointer;
        }
        
        .search-input {
            background: none;
            border: none;
            padding: 4px 8px;
            outline: none;
            font-size: 14px;
            width: 120px;
        }
        
        .search-btn {
            background: none;
            border: none;
            color: #666;
            cursor: pointer;
            font-size: 16px;
            padding: 0 4px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            max-width: 1200px;
            margin: 16px auto 0;
            padding: 0 20px;
            font-size: 14px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #666;
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: #007bff;
        }
        
        .breadcrumb span {
            margin: 0 8px;
            color: #999;
        }
        
        /* 主内容样式 */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* 矿池标题区域 */
        .pool-header {
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 8px;
        }
        
        .pool-header h1 {
            font-size: 24px;
            color: #333;
            font-weight: 500;
        }
        
        .pool-status {
            background-color: #e8f4fd;
            color: #0066cc;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
        }
        
        /* 矿池简介卡片 */
        .pool-intro-card {
            background-color: #f9f9f9;
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            padding: 24px;
            margin-bottom: 32px;
        }
        
        .pool-intro-card p {
            color: #333;
            line-height: 1.8;
            margin-bottom: 16px;
            text-align: justify;
        }
        
        .pool-intro-card p:last-child {
            margin-bottom: 0;
        }
        
        .warning-text {
            color: #ff6666;
        }
        
        .open-website-btn {
            display: inline-block;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            padding: 8px 24px;
            border-radius: 4px;
            font-size: 14px;
            margin-top: 16px;
            transition: background-color 0.3s;
        }
        
        .open-website-btn:hover {
            background-color: #0056b3;
        }
        
        /* 币种信息区域 */
        .coins-section {
            margin-bottom: 32px;
        }
        
        .coins-section h2 {
            font-size: 18px;
            color: #333;
            margin-bottom: 16px;
            font-weight: 500;
        }
        
        .section-note {
            color: #999;
            font-size: 14px;
            margin-bottom: 16px;
        }
        
        /* 币种表格 */
        .coins-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        
        .coins-table th {
            background-color: #f5f5f5;
            color: #666;
            font-weight: 500;
            padding: 12px 16px;
            text-align: left;
            border-bottom: 1px solid #e5e5e5;
        }
        
        .coins-table td {
            padding: 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .coins-table tr:hover {
            background-color: #fafafa;
        }
        
        .coin-icon {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .coin-icon div {
            width: 24px;
            height: 24px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 16px;
                padding: 0 16px;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .breadcrumb {
                padding: 0 16px;
                font-size: 12px;
            }
            
            main {
                padding: 16px;
            }
            
            .pool-intro-card {
                padding: 16px;
            }
            
            .coins-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
		
		
		   /* 底部样式 */
        footer {
            background: #2c3e50;
            color: #ecf0f1;
            padding: 0px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: #00a0e9;
        }
        .footer-column ul {
            list-style: none;
        }
        .footer-column ul li {
            margin-bottom: 10px;
        }
        .footer-column ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-column ul li a:hover {
            color: #00a0e9;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            font-size: 14px;
            color: #bdc3c7;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        .social-links a {
            color: #bdc3c7;
            font-size: 20px;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: #00a0e9;
        }
		
		
	
	
	
	
	
	
	
	        
        /* 主容器 */
        .mining-portal {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* 导航按钮区域 */
        .crypto-nav-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
        }
        
        .hash-button {
            flex: 1;
            max-width: 350px;
            height: 60px;
            border: 1px solid #00a854;
            background-color: #ffffff;
            color: #00a854;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hash-button:hover {
            background-color: #00a854;
            color: #ffffff;
        }
        
        /* 标题样式 */
        .block-title {
            font-size: 24px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 24px;
        }
        
        /* 文章列表容器 */
        .chain-articles {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        /* 文章列 */
        .article-chain {
            flex: 1;
            min-width: 300px;
            padding: 0 10px;display: flex;
    flex-wrap: wrap;
        }
        
        /* 文章链接项 */
        .article-block {
            padding: 12px 0;
            border-bottom: 1px solid #e9ecef;
			flex: 0 0 33.33%;
  box-sizing: border-box;
        }
        
        .article-block:last-child {
            border-bottom: none;
        }
        
        .article-node {
            color: #0066cc;
            text-decoration: none;
            font-size: 15px;
            display: block;
            transition: color 0.3s ease;
        }
        
        .article-node:hover {
            color: #004999;
            text-decoration: underline;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .crypto-nav-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hash-button {
                width: 100%;
                max-width: 500px;
            }
            
            .chain-articles {
                flex-direction: column;
            }
            
            .article-chain {
                min-width: 100%;
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 20px 15px;
            }
            
            .block-title {
                font-size: 20px;
            }
            
            .hash-button {
                font-size: 16px;
                height: 50px;
            }
        }
		
		
		
		
		
		
		
		
		
		
		
		
		      /* 主内容区域样式 */
        .crypto-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;padding-bottom: 30px;
        }
        
    
        
        /* 页面标题样式 */
        .mining-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .mining-header h1 {
            font-size: 32px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 12px;
        }
        
        .mining-header p {
            color: #666666;
            font-size: 16px;
        }
        
        /* 挖矿方案卡片容器 */
        .mining-options {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        /* 单个卡片样式 */
        .hash-power-card {
            width: 30%;
            
            background-color: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .hash-power-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }
        
        /* 卡片头部 */
        .power-card-header {
            background-color: #e6f7ff;
            padding: 16px 24px;
        }
        
        .power-card-header h2 {
            font-size: 20px;
            font-weight: bold;
            color: #333333;
        }
        
        .power-card-header p {
            font-size: 14px;
            color: #666666;
            margin-top: 4px;
        }
        
        /* 卡片内容 */
        .power-card-body {
            padding: 32px 24px;
        }
        
        /* 价格信息 */
        .hash-rate-price {
            margin-bottom: 24px;
        }
        
        .hash-rate-price .power-price {
            font-size: 24px;
            font-weight: bold;
            color: #333333;
        }
        
        .hash-rate-price .price-label {
            font-size: 14px;
            color: #666666;
            margin-left: 4px;
        }
        
        /* 特性列表 */
        .mining-features {
            margin-bottom: 32px;
        }
        
        .feature-point {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }
        
        .feature-point:last-child {
            margin-bottom: 0;
        }
        
        .feature-check {
            color: #00a854;
            margin-right: 12px;
            margin-top: 4px;
        }
        
        .feature-desc {
            color: #333333;
            font-size: 15px;
        }
        
        /* 购买按钮 */
        .mine-now-btn {
            width: 100%;
            background-color: #00a854;
            color: #ffffff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .mine-now-btn:hover {
            background-color: #00944a;
        }
        
     
        
        .mining-footer {
            text-align: center;
            color: #666666;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .mining-header h1 {
                font-size: 28px;
            }
            
            .mining-options {
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .mining-header h1 {
                font-size: 24px;
            }
            
            .power-card-header {
                padding: 12px 20px;
            }
            
            .power-card-body {
                padding: 24px 20px;
            }
        }