
        /* 使用scoped styles技术确保不影响页面其他部分 */
        .subscription-module-scope * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Mavericks', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
        }
        
        .subscription-module-scope {
            background-color: white;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .subscription-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 100%;
        }
        
        .subscription-box {
            width: 100%;
            min-height: 540px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .green-box {
            background: linear-gradient(to bottom, #2ecc71, #27ae60);
        }
        
        .blue-box {
            background: linear-gradient(to bottom, #3498db, #2980b9);
        }
        
        .box-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .coverage-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 15px 0 12px 0;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: 0.5px;
        }
        
        .benefits-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 20px 0 12px 0;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: 0.5px;
        }
        
        .features {
            flex-grow: 1;
            margin-bottom: 15px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .checkmark {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 22px;
            height: 22px;
            background-color: #fff;
            border-radius: 50%;
            margin-right: 12px;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
        
        .green-box .checkmark {
            color: #27ae60;
        }
        
        .blue-box .checkmark {
            color: #2980b9;
        }
        
        .price-container {
            margin-top: auto;
            padding-top: 15px;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        .price {
            text-align: center;
            margin: 15px 0;
        }
        
        .price-amount {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .price-desc {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .subscribe-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .green-box .subscribe-btn {
            color: #27ae60;
        }
        
        .blue-box .subscribe-btn {
            color: #2980b9;
        }
        
        .subscribe-btn:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }
        
        .subscribe-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        /* 响应式设计 - 大屏幕并排显示 */
        @media (min-width: 992px) {
            .subscription-container {
                flex-direction: row;
                justify-content: center;
            }
            
            .subscription-box {
                width: 48%;
                max-width: 500px;
                min-height: 520px;
            }
        }
        
        /* 响应式设计 - 中等屏幕 */
        @media (max-width: 768px) {
            .subscription-module-scope {
                padding: 15px;
            }
            
            .subscription-box {
                padding: 25px;
                min-height: 500px;
            }
            
            .box-title {
                font-size: 1.7rem;
            }
            
            .coverage-title, .benefits-title {
                font-size: 1.2rem;
            }
            
            .price-amount {
                font-size: 2rem;
            }
            
            .subscribe-btn {
                padding: 12px;
                font-size: 1rem;
            }
        }

        /* 响应式设计 - 小屏幕 */
        @media (max-width: 480px) {
            .subscription-module-scope {
                padding: 10px;
            }
            
            .subscription-box {
                padding: 20px;
                min-height: 480px;
                border-radius: 12px;
            }
            
            .box-title {
                font-size: 1.5rem;
            }
            
            .coverage-title, .benefits-title {
                font-size: 1.1rem;
                margin: 12px 0 10px 0;
            }
            
            .feature {
                font-size: 1rem;
                margin-bottom: 10px;
            }
            
            .price-amount {
                font-size: 1.8rem;
            }
        }
    