/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
}

#app {
    max-width: 750px;
    margin: 0 auto;
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    min-height: 100vh;
    padding-bottom: 30px;
}

/* Page */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Logo Area */
.logo-area {
    text-align: center;
    padding: 40px 20px 20px;
}

.logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo::after {
    content: '花';
    font-size: 36px;
    color: #FF6B35;
    font-weight: bold;
}

.title {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* Notice Bar */
.notice-bar {
    background: rgba(255,255,255,0.2);
    margin: 15px 15px;
    border-radius: 10px;
    padding: 12px 15px;
    overflow: hidden;
    height: 80px;
}

.notice-content {
    animation: scrollNotice 20s linear infinite;
}

.notice-item {
    font-size: 12px;
    color: #fff;
    padding: 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes scrollNotice {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Loan Banner */
.loan-banner {
    background: #fff;
    margin: 15px;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-title {
    font-size: 14px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.loan-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: #FF6B35;
    font-weight: bold;
}

.amount {
    font-size: 48px;
    color: #FF6B35;
    font-weight: bold;
    letter-spacing: 2px;
}

.loan-tip {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.loan-fee {
    font-size: 12px;
    color: #666;
}

/* Form Section */
.form-section {
    background: #fff;
    margin: 15px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px 20px;
    margin-bottom: 15px;
}

.input-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
}

.input-group input::placeholder {
    color: #ccc;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Agreement */
.agreement-area {
    text-align: center;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.checkbox-wrapper input:checked + .checkmark {
    background: #FF6B35;
    border-color: #FF6B35;
}

.checkbox-wrapper input:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
}

.agree-text {
    color: #666;
    font-size: 12px;
}

.agreement-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.link {
    color: #FF6B35;
    text-decoration: none;
    font-size: 12px;
}

/* Steps Section */
.steps-section {
    background: #fff;
    margin: 15px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.steps-title {
    text-align: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.steps {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon::after {
    content: '1';
    font-size: 20px;
    color: #FF6B35;
    font-weight: bold;
}

.form-icon::after {
    content: '2';
    font-size: 20px;
    color: #FF6B35;
    font-weight: bold;
}

.loan-icon::after {
    content: '3';
    font-size: 20px;
    color: #FF6B35;
    font-weight: bold;
}

.step-num {
    display: none;
}

.step-text {
    font-size: 13px;
    color: #666;
}

/* Form Page */
.page-form {
    background: #f5f5f5;
    padding-bottom: 20px;
}

.form-header {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 15px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.back-icon {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M15 18l-6-6 6-6'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

.form-header h2 {
    color: #fff;
    font-size: 18px;
}

.form-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    margin-top: 5px;
}

.form-content {
    background: #fff;
    margin: 15px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.section-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.radio-group {
    display: flex;
    gap: 10px;
}

.radio-group.vertical {
    flex-direction: column;
    gap: 8px;
}

.radio-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.radio-btn.active {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.input-wrapper input:focus {
    border-color: #FF6B35;
}

.city-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
}

.dropdown-icon {
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

/* Verify Modal */
.verify-modal {
    padding: 25px;
    text-align: center;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.verify-input-group {
    margin-bottom: 20px;
}

.verify-input-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 8px;
    outline: none;
}

.verify-input-group input:focus {
    border-color: #FF6B35;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-cancel, .btn-resend {
    flex: 1;
    padding: 12px;
    border: 1px solid #eee;
    background: #fff;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

.btn-resend {
    color: #FF6B35;
    border-color: #FF6B35;
}

.btn-verify {
    margin-bottom: 0;
}

/* Risk Modal */
.risk-modal {
    padding: 20px;
    max-height: 85vh;
}

.risk-modal .modal-header {
    text-align: left;
}

.risk-modal .modal-header h3 {
    color: #FF6B35;
    margin-bottom: 10px;
}

.risk-modal .modal-header p {
    font-size: 13px;
    color: #666;
}

.risk-content {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    max-height: 50vh;
    overflow-y: auto;
    margin: 15px 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.risk-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.risk-content p {
    margin-bottom: 10px;
    text-align: justify;
}

.btn-agree {
    width: 100%;
    padding: 14px;
    background: #ccc;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    cursor: pointer;
}

.btn-agree.active {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
}

.btn-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

/* Error Modal */
.error-modal {
    padding: 30px;
    text-align: center;
}

.error-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M12 8v4M12 16h.01'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

.error-modal h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.error-modal p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

/* Disclaimer */
.disclaimer {
    background: #fff;
    margin: 15px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.disclaimer p {
    font-size: 12px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

.company-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
}

.company-info p {
    color: #999;
    margin-bottom: 5px;
}

/* Toast */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
}

/* Responsive */
@media (max-width: 320px) {
    .title {
        font-size: 24px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .radio-group {
        flex-wrap: wrap;
    }
    
    .radio-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* Products Page */
.page-products {
    background: #f5f5f5;
    min-height: 100vh;
}

.products-header {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.products-header h2 {
    color: #fff;
    font-size: 18px;
}

.products-header .back-btn {
    position: absolute;
    left: 15px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.products-list {
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-card.featured {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
}

.product-card.featured .product-limit,
.product-card.featured .product-rate {
    color: rgba(255,255,255,0.9);
}

.product-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-logo::after {
    content: '贷';
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.product-logo.beixiaomi {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
}

.product-logo.beixiaomi::after {
    content: '呗';
}

.product-logo.duxiaoman {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.product-logo.duxiaoman::after {
    content: '度';
}

.product-logo.jietiao {
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
}

.product-logo.jietiao::after {
    content: '借';
}

.product-info {
    flex: 1;
    min-width: 100px;
}

.product-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.product-card.featured .product-info h3 {
    color: #fff;
}

.product-slogan {
    font-size: 12px;
    color: #999;
}

.product-detail {
    width: 100%;
    text-align: center;
}

.product-limit-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
}

.product-limit {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.product-card.featured .product-limit {
    color: #fff;
}

.product-rate {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

.btn-product {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #FF6B35;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

.btn-product-outline {
    padding: 8px 20px;
    background: transparent;
    color: #FF6B35;
    border: 1px solid #FF6B35;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
}

.more-products {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

.more-products-title {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.more-products-tip {
    font-size: 13px;
    color: #ccc;
}

/* City Modal */
.city-modal {
    height: 70vh;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: 20px 20px 0 0;
}

.city-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.city-header input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
}

.city-header input:focus {
    border-color: #FF6B35;
}

.city-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.city-section {
    margin-bottom: 15px;
}

.city-section-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding: 8px 0;
    position: sticky;
    top: 0;
    background: #fff;
}

.city-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-item {
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.city-item:hover {
    background: #FF6B35;
    color: #fff;
}

.city-sidebar {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 5px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
}

.city-sidebar span {
    font-size: 10px;
    color: #FF6B35;
    cursor: pointer;
    padding: 2px;
    transition: all 0.2s;
}

.city-sidebar span:hover {
    color: #FF8C42;
    transform: scale(1.2);
}

/* Agreement Modal */
.agreement-modal {
    max-width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.agreement-header {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.agreement-header h2 {
    color: #fff;
    font-size: 18px;
}

.agreement-header .back-btn {
    position: absolute;
    left: 15px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.agreement-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.agreement-content h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.agreement-content h4 {
    font-size: 15px;
    color: #333;
    margin: 15px 0 10px;
}

.agreement-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: justify;
}

.agreement-content p.important {
    color: #FF6B35;
    font-weight: bold;
}

.agreement-content .date-info {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.agreement-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.agreement-content li {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ==================== 城市选择页 ==================== */
.page-citys {
    background: #f5f5f5;
    min-height: 100vh;
}

.citys-header {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
}

.citys-header h2 {
    color: #fff;
    font-size: 18px;
}

.citys-header .back-btn {
    position: absolute;
    left: 15px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-decoration: none;
}

.citys-search {
    background: #fff;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.citys-search input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    background: #f5f5f5;
}

.citys-search input:focus {
    border-color: #FF6B35;
    background: #fff;
}

.citys-list {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    padding-bottom: 100px;
    max-height: calc(100vh - 150px);
}

.citys-sidebar {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 5px;
    background: rgba(0,0,0,0.05);
    border-radius: 10px;
    z-index: 100;
}

.citys-sidebar span {
    font-size: 10px;
    color: #FF6B35;
    cursor: pointer;
    padding: 2px;
    transition: all 0.2s;
    user-select: none;
}

.citys-sidebar span:hover {
    color: #FF8C42;
    transform: scale(1.2);
}

/* ==================== 协议页 ==================== */
.page-agreement {
    background: #fff;
    min-height: 100vh;
}

.page-agreement .agreement-header {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    padding: 15px;
    padding-top: 40px;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.page-agreement .agreement-header h2 {
    color: #fff;
    font-size: 18px;
}

.page-agreement .agreement-header .back-btn {
    position: absolute;
    left: 15px;
    top: 40px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-decoration: none;
}

.page-agreement .agreement-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.page-agreement .agreement-body h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.page-agreement .agreement-body h4 {
    font-size: 15px;
    color: #333;
    margin: 15px 0 10px;
    font-weight: bold;
}

.page-agreement .agreement-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: justify;
}

.page-agreement .agreement-body p.important {
    color: #FF6B35;
    font-weight: bold;
}

.page-agreement .agreement-body .date-info {
    font-size: 12px;
    color: #999;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.page-agreement .agreement-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.page-agreement .agreement-body li {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ==================== 首页 ==================== */
.page-home {
    padding-bottom: 30px;
}

/* ==================== 修复返回按钮样式 ==================== */
a.back-btn {
    display: block;
    text-decoration: none;
}

/* ==================== 产品结果页 ==================== */
.page-product {
    background: linear-gradient(180deg, #FF6B35 0%, #FF8C42 100%);
    min-height: 100vh;
    padding-bottom: 30px;
}

.product-result-header {
    padding: 20px;
    padding-top: 50px;
    text-align: center;
}

.result-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.result-logo .logo {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-logo .logo::after {
    content: '花';
    font-size: 24px;
    color: #FF6B35;
    font-weight: bold;
}

.result-logo h1 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.result-welcome {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}

.result-welcome span {
    font-weight: bold;
    color: #fff;
}

.result-card {
    background: #fff;
    margin: 0 15px;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.result-amount-section {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 20px;
}

.result-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.result-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.result-amount .currency {
    font-size: 28px;
    color: #FF6B35;
    font-weight: bold;
}

.result-amount .amount {
    font-size: 48px;
    color: #FF6B35;
    font-weight: bold;
    letter-spacing: 2px;
}

.result-tip {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

.result-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.result-info-item {
    text-align: center;
}

.info-label {
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.info-value {
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

.result-actions {
    text-align: center;
}

.btn-apply {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.apply-tip {
    font-size: 12px;
    color: #FF6B35;
    margin-top: 10px;
}

.result-products-section {
    margin: 20px 15px;
}

.section-title {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.result-products-list {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.result-product-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.result-product-item:last-child {
    border-bottom: none;
}

.rp-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.rp-logo::after {
    content: '呗';
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.rp-logo.rp-duxiaoman {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
}

.rp-logo.rp-duxiaoman::after {
    content: '度';
}

.rp-logo.rp-360 {
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
}

.rp-logo.rp-360::after {
    content: '360';
    font-size: 11px;
}

.rp-logo.rp-weijinshe {
    background: linear-gradient(135deg, #9ACD32 0%, #6B8E23 100%);
}

.rp-logo.rp-weijinshe::after {
    content: '微';
}

.rp-info {
    flex: 1;
}

.rp-info h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.rp-info p {
    font-size: 12px;
    color: #999;
}

.rp-info p span {
    color: #FF6B35;
    font-weight: bold;
}

.btn-rp-apply {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
}

.result-footer {
    text-align: center;
    padding: 30px 15px;
}

.footer-tip {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.footer-company {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
