﻿/* 输入框样式 */
.discount-input {
    background-color: transparent;
    width: 100%;
    height: 45px;
    border: 0px;
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    position: absolute;
}

/* 页面头部区域 */
.discount-header {
    width: 100%;
    max-width: 1920px;
    height: 89px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    line-height: 97px;
    margin: 0 auto;
}

/* 主要内容区域 */
.discount-main {
    width: 100%;
    max-width: 1920px;
    min-height: 100vh;
    padding: 0px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* 内容容器 */
.discount-container {
    width: 100%;
    max-width: 1200px;
    padding: 0px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
}

/* 页面标题 */
.discount-title {
    width: 100%;
    height: auto;
    min-height: 36px;
    padding: 20px 0;
    margin-top: 102px;
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #105E8C;
    font-size: 30px;
    line-height: 1.2;
}

/* 内容区域 */
.discount-content {
    width: 100%;
    padding: 0px;
    margin-top: 58px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
}

/* 优惠项目 */
.discount-item {
    width: 100%;
    max-width: 1001px;
    height: auto;
    min-height: 380px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 项目内容容器 */
.discount-item-inner {
    width: 100%;
    max-width: 846px;
    height: auto;
    min-height: 227px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 124px;
}

/* 项目图片 */
.discount-image {
    flex: 0 0 380px;
    height: 227px;
    padding: 0px;
    margin-top: 0px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 227px;
}

.discount-image img {
    max-width: 100%;
    height: auto;
}

/* 项目信息 */
.discount-info {
    flex: 1;
    max-width: 342px;
    height: auto;
    min-height: 227px;
    padding: 0px;
    margin-top: 0px;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* 项目标题 */
.discount-info-title {
    width: 100%;
    height: auto;
    min-height: 37px;
    padding: 0px;
    margin-top: 25px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    font-size: 30px;
    line-height: 1.2;
}

/* 项目描述 */
.discount-info-desc {
    width: 100%;
    height: auto;
    min-height: 53px;
    padding: 0px;
    margin-top: 27px;
    margin-left: 0px;
    display: flex;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.4;
}

/* 按钮包装容器 */
.discount-btn-wrapper {
    width: 100%;
    max-width: 342px;
    height: 45px;
    padding: 0px;
    margin-top: 31px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    line-height: 47px;
}

/* 按钮 */
.discount-btn {
    width: 269px;
    height: 45px;
    padding: 0px;
    margin-top: 0px;
    margin-left: 5px;
    background-color: #105E8C;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 45px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.discount-btn:hover {
    background-color: #0d4d73;
}

/* 按钮文本 */
.discount-btn-text {
    width: 83px;
    height: 23px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 23px;
    pointer-events: none;
}

/* 平板设备 (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .discount-header {
        height: 60px;
        padding: 0px 15px;
    }
    
    .discount-title {
        font-size: 24px;
        margin-top: 60px;
        padding: 15px 0;
    }
    
    .discount-content {
        margin-top: 40px;
    }
    
    .discount-item {
        min-height: 300px;
        padding: 15px;
    }
    
    .discount-item-inner {
        gap: 60px;
    }
    
    .discount-image {
        flex: 0 0 280px;
        height: 167px;
    }
    
    .discount-info-title {
        font-size: 24px;
        margin-top: 15px;
    }
    
    .discount-info-desc {
        font-size: 16px;
        margin-top: 20px;
    }
    
    .discount-btn-wrapper {
        margin-top: 25px;
    }
    
    .discount-btn {
        width: 220px;
        height: 40px;
    }
    
    .discount-btn-text {
        font-size: 14px;
    }
}

/* 移动设备 (最大宽度 768px) */
@media screen and (max-width: 768px) {
    .discount-header {
        height: 50px;
        padding: 0px 10px;
    }
    
    .discount-main {
        padding: 0px 10px;
    }
    
    .discount-title {
        font-size: 20px;
        margin-top: 40px;
        padding: 10px 0;
    }
    
    .discount-content {
        margin-top: 30px;
    }
    
    .discount-item {
        min-height: auto;
        padding: 10px;
    }
    
    .discount-item-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .discount-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: auto;
        min-height: 180px;
    }
    
    .discount-info {
        max-width: 100%;
        text-align: center;
    }
    
    .discount-info-title {
        font-size: 20px;
        margin-top: 10px;
        justify-content: center;
    }
    
    .discount-info-desc {
        font-size: 14px;
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }
    
    .discount-btn-wrapper {
        margin-top: 20px;
        justify-content: center;
    }
    
    .discount-btn {
        width: 180px;
        height: 40px;
        margin-left: 0px;
    }
    
    .discount-btn-text {
        font-size: 14px;
    }
}

/* 小型移动设备 (最大宽度 480px) */
@media screen and (max-width: 480px) {
    .discount-header {
        height: 40px;
        padding: 0px 5px;
    }
    
    .discount-main {
        padding: 0px 5px;
    }
    
    .discount-title {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .discount-content {
        margin-top: 20px;
    }
    
    .discount-item {
        padding: 5px;
    }
    
    .discount-item-inner {
        gap: 20px;
    }
    
    .discount-image {
        max-width: 250px;
        min-height: 150px;
    }
    
    .discount-info-title {
        font-size: 18px;
    }
    
    .discount-info-desc {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .discount-btn {
        width: 150px;
        height: 35px;
    }
    
    .discount-btn-text {
        font-size: 12px;
        margin-left: 33px;
        margin-top: 6px;
    }
}