/* Bitfufu vs AlphaMining 页面专用样式 */
.vs-hero-container {
    padding: 0 40px;
}
/* Hero Section 样式 */
.vs-hero h1{
    font-size: 2.5rem;
}
.vs-hero p {
     font-size: 1.1rem;
     line-height: 1.6;
     font-weight: bold;
     color: #231815;
     text-align: left;
 }
.hero-title {
    font-family: Roboto, Roboto;
    font-weight: bold;
    font-size: 54px;
    line-height: 59px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg, #231815 0%, #B0AFB0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    padding: 0;
}

.hero-subtitle {
    font-family: Roboto, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #333;
    margin: 20px 0;
}

.hero-description {
    margin: 20px 0;
}

.hero-description p {
    font-family: Roboto, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    margin: 15px 0;
}

.hero-image {
    max-width: 300px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 内容区域图片尺寸控制 */
.vs-section img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 20px 0;
}

/* 特定图片尺寸控制 */
.vs-section img[th\\:src*="2.png"] {
    max-width: 400px;
    max-height: 300px;
    width: auto;
    height: auto;
}
.vs-section {
    padding: 40px 40px;
}

/* 占位符图片样式 */
.placeholder-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #999;
    margin: 20px 0;
}

/* 使用场景部分样式 */
.use-case-section {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.use-case-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-family: Roboto, sans-serif;
    font-weight: 600;
}

.use-case-section ul {
    margin: 0;
    padding-left: 20px;
}

.use-case-section li {
    margin-bottom: 8px;
    color: #555;
    font-family: Roboto, sans-serif;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 24px;
    }
    
    .hero-image {
        max-width: 250px;
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .hero-image {
        max-width: 200px;
        max-height: 120px;
    }
}

/* AlphaMining优势部分样式 */
.advantage-container {
    margin: 20px 0;
}

.advantage-item {
    display: flex;
    align-items: stretch;
    margin: 30px 0;
    gap: 30px;
}

.advantage-item.reverse {
    flex-direction: row-reverse;
}

.advantage-image {
    flex: 0 0 375px;
    display: flex;
    align-items: center;
}

.advantage-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-content h5 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    font-family: Roboto, sans-serif;
}

.advantage-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .advantage-item,
    .advantage-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advantage-image {
        flex: 0 0 auto;
    }
    
    .advantage-content h5 {
        font-size: 1.1rem;
    }
    
    .advantage-content p {
        font-size: 13px;
    }
}

/* 成本和收益部分样式 */
.cost-cards,
.revenue-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.cost-card,
.revenue-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cost-image,
.revenue-image {
    flex: 0 0 120px;
}

.cost-image img,
.revenue-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cost-content,
.revenue-content {
    flex: 1;
}

.cost-content h5,
.revenue-content h5 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: Roboto, sans-serif;
}

.cost-content p,
.revenue-content p {
    margin: 0;
    line-height: 1.5;
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cost-cards,
    .revenue-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cost-card,
    .revenue-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cost-image,
    .revenue-image {
        flex: 0 0 auto;
        margin-bottom: 15px;
    }
    
    .cost-content h5,
    .revenue-content h5 {
        font-size: 1rem;
    }
    
    .cost-content p,
    .revenue-content p {
        font-size: 12px;
    }
}

/* 结论部分样式 */
.conclusion-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.conclusion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform 0.2s ease;
}

.conclusion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conclusion-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.conclusion-content h5 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    font-family: Roboto, sans-serif;
}

.conclusion-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .conclusion-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .conclusion-card {
        padding: 25px 20px;
    }
    
    .conclusion-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .conclusion-content h5 {
        font-size: 1.2rem;
    }
    
    .conclusion-content p {
        font-size: 13px;
    }
}

/* 表格响应式设计 */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .comparison-table thead {
        display: none;
    }
    
    .comparison-table tbody {
        display: block;
    }
    
    .comparison-table tr {
        display: block;
        padding: 15px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border: 1px solid #e0e0e0;
    }
    
    .comparison-table td {
        display: block;
        text-align: left;
        padding: 8px 0;
        border: none;
        position: relative;
        padding-left: 120px;
        line-height: 1rem;
    }
    
    .comparison-table td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 110px;
        font-weight: 600;
        color: #333;
        font-size: 14px;
    }
    
    .comparison-table td:first-child {
        font-weight: 700;
        color: #333;
        font-size: 16px;
        padding-left: 0;
        margin-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 10px;
    }
    
    .comparison-table td:first-child:before {
        display: none;
    }
}

@media (max-width: 480px) {
    .comparison-table td {
        padding-left: 120px;
        min-height: 20px;
    }
    
    .comparison-table td:before {
        width: 110px;
        font-size: 13px;
        top: 10px;
    }
    
    .comparison-table td:first-child {
        font-size: 15px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}

/* 服务时长对比部分样式 */
.service-duration-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.service-duration-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 120px;
}

.service-duration-image {
    flex: 0 0 150px;
}

.service-duration-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-duration-content {
    flex: 1;
}

.service-duration-content h5 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: Roboto, sans-serif;
}

.service-duration-content p {
    margin: 0;
    line-height: 1.5;
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-duration-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-duration-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-height: auto;
    }
    
    .service-duration-image {
        flex: 0 0 auto;
        margin-bottom: 15px;
        max-width: 200px;
    }
    
    .service-duration-content h5 {
        font-size: 1rem;
    }
    
    .service-duration-content p {
        font-size: 12px;
    }
}

/* 使用场景部分样式 */
.use-case-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.use-case-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 120px;
}

.use-case-image {
    flex: 0 0 150px;
}

.use-case-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.use-case-content {
    flex: 1;
}

.use-case-content h5 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: Roboto, sans-serif;
}

.use-case-content p {
    margin: 0;
    line-height: 1.5;
    color: #666;
    font-family: Roboto, sans-serif;
    font-size: 13px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .use-case-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .use-case-card {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        min-height: auto;
    }
    
    .use-case-image {
        flex: 0 0 auto;
        margin-bottom: 15px;
        max-width: 200px;
    }
    
    .use-case-content h5 {
        font-size: 1rem;
    }
    
    .use-case-content p {
        font-size: 12px;
    }
}

/* 确保段落中的换行符正常工作 */
.advantage-content p,
.use-case-content p {
    white-space: pre-line !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.73rem;
}

/* 手机端隐藏特定图片 */
@media (max-width: 768px) {
    .bitfufu_1 {
        display: none !important;
    }
}
