*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
    color: #333;
    font-size: 12px;
}
.container {
    max-width: 375rem;
    margin: 0 auto;
    background: linear-gradient(to bottom, #F9E3B1, #FFF4D5 50%, #FFF4D5 50%, #FAE8BA);
    min-height: 100vh;
    box-sizing: border-box;
    padding-bottom: 24rem;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16rem 12rem 8rem 12rem;
    background: #fff7e6;
    font-size: 18rem;
    font-weight: bold;
}
.header .back-arrow,
.header .menu {
    color: #888;
    font-size: 20rem;
}
.header .title {
    flex: 1;
    text-align: center;
    color: #222;
    font-size: 18rem;
    font-weight: bold;
}
.banner {
    position: relative;
    text-align: center;
}
.banner-img.placeholder {
    width: 100%;
    height: 120rem;
    background: #ffe1b0;
    border-radius: 16rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8a35a;
    font-size: 18rem;
    margin-bottom: 8rem;
}
.banner-title .main-title {
    font-size: 28rem;
    font-weight: bold;
    color: #e94d2e;
    line-height: 1.2;
}
.banner-title .sub-title {
    font-size: 14rem;
    color: #e94d2e;
    margin-top: 4rem;
}
.card {
    background: #fff;
    border-radius: 20rem;
    margin: 0 16rem 16rem 16rem;
    box-shadow: 0 4rem 16rem 0 rgba(233,77,46,0.08);
    padding: 24rem 0 16rem 0;
    position: relative;
    text-align: center;
}
.card-content .card-title {
    font-size: 18rem;
    color: #e94d2e;
    font-weight: bold;
    margin-bottom: 8rem;
}
.card-content .card-desc {
    font-size: 16rem;
    color: #e94d2e;
    margin-bottom: 8rem;
}
.card-content .card-detail {
    font-size: 12rem;
    color: #bfa16b;
    margin-bottom: 8rem;
}
.card-content .card-yuan {
    font-size: 20rem;
    color: #e94d2e;
    display: inline-block;
    margin-right: 2rem;
}
.card-content .card-price {
    font-size: 18rem;
    color: #bfa16b;
    display: inline-block;
}
.claim-btn {
    width: calc(100% - 32px);
    margin: 16rem 16rem 16rem 16rem;
    height: 54rem;
    background: url(../images/btn.png) no-repeat center center;
    background-size: contain;
    border: none;
    color: #e94d2e;
    font-size: 20rem;
    font-weight: bold;
    cursor: pointer;
}
.claim-btn.full {
    background-size: 100% 100%;
    width: 301rem;
}
.price-tip {
    text-align: center;
    color: rgba(218, 66, 42, 1);
    font-size: 12rem;
    margin-bottom: 16rem;
}
.agreement {
    display: flex;
    align-items: flex-start;
    font-size: 12rem;
    color: rgba(102, 102, 102, 1);
    margin: 0 16rem 12rem 16rem;
}
.agreement input[type="checkbox"] {
    margin-right: 6rem;
    margin-top: 2rem;
    flex: 0 0 auto;
    width: 14rem;
    height: 14rem;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
}
.agreement input[type="checkbox"]:checked {
    background: transparent;
    border-color: #DA422A;
}
.agreement input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #DA422A;
    font-size: 8rem;
    font-weight: bold;
}
.rights-desc {
    background: #FEFBF0;
    border-radius: 16rem;
    margin: 0 16rem;
    padding: 16rem;
    box-shadow: 0 2rem 8rem 0 rgba(233,77,46,0.04);
}
.rights-title {
    font-size: 16rem;
    color: #e94d2e;
    /* font-weight: bold; */
    margin-bottom: 8rem;
}
.rights-list {
    list-style: decimal inside;
    padding-left: 0;
    color: rgba(192, 91, 9, 1);
    font-size: 12rem;
    line-height: 1.7;
}
.rights-list > li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 12rem;
    font-weight: 500;
    padding-left: 0.2rem;
    color: rgba(192, 91, 9, 1);
}
.rights-list ol {
    list-style: disc inside;
    padding-left: 1em;
    color: rgba(192, 91, 9, 1);
    font-size: 12rem;
}
.rights-list ol li {
    margin-bottom: 0.2rem;
    line-height: 1.6;
    font-size: 12rem;
    font-weight: 400;
    color: rgba(192, 91, 9, 1);
    list-style: none;
}
@media (max-width: 400px) {
    .container {
        max-width: 100vw;
    }
}
.simple-toast {
    position: fixed;
    white-space: nowrap;
    left: 50%;
    bottom: 80rem;
    transform: translateX(-50%) scale(0.9);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 16rem 32rem;
    border-radius: 32rem;
    font-size: 14rem;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s;
}
.simple-toast.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.agreement-link {
    color: rgba(218, 66, 42, 1);
    text-decoration: none;
    margin: 0 2px;
}

/* 自定义 checkbox 样式 */
.checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14rem;
    height: 14rem;
    border-radius: 2rem;
    background: #ddd;
    color: transparent;
    font-size: 8rem;
    font-weight: bold;
    margin-right: 4rem;
    margin-top: -2rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.agreement input[type="checkbox"]:checked + label .checkmark {
    background: #4CAF50;
    color: white;
}
/* 手机号输入区域样式 */
.phone-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12rem 0 0 0;
}
.phone-title {
    overflow: hidden;
    width: 180rem;
    height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-title-img {
    width: 180rem;
}
.phone-input {
    width: 301rem;
    padding: 12rem 20rem;
    border: none;
    border-radius: 40rem;
    background: #fff;
    font-size: 16rem;
    box-shadow: 0 2rem 8rem rgba(0,0,0,0.04);
    outline: none;
    text-align: center;
    height: 54rem;
}
.phone-btn {
    width: 80%;
    padding: 12rem 20rem;
    border: none;
    border-radius: 40rem;
    background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
    color: #ff7e5f;
    font-size: 20rem;
    font-weight: bold;
    box-shadow: 0 2rem 8rem rgba(0,0,0,0.04);
    margin-bottom: 10rem;
}
.phone-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
} 

/* 支付确认弹窗样式 */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.payment-modal.show {
    display: flex;
}

.payment-modal-content {
    background: #fff;
    border-radius: 20rem;
    padding: 20rem 16rem;
    text-align: center;
    max-width: 300rem;
    width: 90%;
    box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.2);
}

.payment-modal-title {
    font-size: 18rem;
    color: #333;
    margin-bottom: 40rem;
    font-weight: 500;
}

.payment-modal-buttons {
    display: flex;
    gap: 20rem;
}

.payment-modal-btn {
    flex: 1;
    height: 44rem;
    border: none;
    border-radius: 22rem;
    font-size: 16rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-modal-btn.secondary {
    background: #f5f5f5;
    color: #666;
}

.payment-modal-btn.secondary:hover {
    background: #e8e8e8;
}

.payment-modal-btn.primary {
    background: #00C851;
    color: #fff;
}

.payment-modal-btn.primary:hover {
    background: #00A347;
}

.breathe {
    animation: breathe 1s infinite linear;
}
@keyframes breathe {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}


.copy-right{
    font-size: 12rem;
    line-height: 16rem;
    color: #C05B09;
    text-align: center;
}

.company-name{
    position: absolute;
    left: 15rem;
    top: 10rem;
    font-size: 12rem;
    line-height: 16rem;
    color: #323234;
}