* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 70px; /* 为固定按钮预留空间 */
}

.container {
    width: 100%;
    padding: 0px;
}
.banner {
    width: 100%;
}
.notice {
    background: linear-gradient(
        to bottom,
        #E0F7FA,   /* 顶部：浅青色 */
        #ffffff    /* 底部：白色 */
    );
    border: 1px solid #B2DFDB;
    border-radius: 8px;           /* 圆角 */
    padding: 10px 16px;           /* 内边距 */
    display: flex;                /* 图标+文字水平排列 */
    align-items: center;          /* 垂直居中 */
    margin: 0px 10px;               /* 上下外边距 */
  }
.notice-img {
    width: 8vw;
    height: 8vw;
}
.notice-text {
    font-size: 13px;
    color: #033c28;
    margin-left: 15px;
}

.money-section {
    background: 
        linear-gradient(
            to bottom,
            #E0F7FA,   /* 顶部：浅青色 */
            #ffffff    /* 底部：白色 */
        );
    border: 1px solid #B2DFDB;
    border-radius: 8px;
    padding: 24px 5px;
    margin: 10px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.background-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(200, 200, 200, 0.2);
}

.line-1 {
    top: 20%;
    margin-left: 20px;
    margin-right: 20px;
}

.line-2 {
    top: 27%;
    margin-left: 20px;
    margin-right: 20px;
}

.line-3 {
    top: 34%;
    margin-left: 20px;
    margin-right: 20px;
}

.line-4 {
    top: 41%;
    margin-left: 20px;
    margin-right: 20px;
}

.line-5 {
    top: 48%;
    margin-left: 20px;
    margin-right: 20px;
}

.money-title {
    font-size: 12px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.money-amount {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 15px;
    color: #666666;
    font-weight: normal;
}

.amount-min, .amount-max {
    color: #333333;
}

.separator {
    margin: 0 5px;
    color: #666666;
    font-weight: normal;
}
.apply-button {
    background: linear-gradient(135deg, #00BCD4, #0097A7);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 16px;
    margin-top: 20px;
    width: 80%;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.apply-button:hover {
    background: linear-gradient(135deg, #0097A7, #00838F);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 188, 212, 0.4);
}

.apply-button.loading {
    background: linear-gradient(135deg, #B0BEC5, #90A4AE) !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
}

.apply-button:disabled {
    opacity: 0.8;
    pointer-events: none;
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.money-subtitle {
    font-size: 12px;
    color: #666666;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* 服务列表样式 */
.services-section {
    background: linear-gradient(
        to bottom,
        #E0F7FA,   /* 顶部：浅青色 */
        #ffffff    /* 底部：白色 */
    );
    padding: 10px 10px;
    margin-top: 10px 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid #B2DFDB;
}

.services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 8px;
}

.diamonds-left,
.diamonds-right {
    display: flex;
}

.diamond {
    width: 8px;
    height: 8px;
    background: #00BCD4;
    transform: rotate(45deg);
}

.diamond-white {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid #00BCD4;
    transform: rotate(45deg);
}

.services-title {
    color: #333333;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #B2DFDB;
}

.service-image {
    width: 100%;
    height: auto;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
}

.service-title {
    color: #333333;
    font-size: 14px;
    margin: 0 0 4px 0;
}

.service-description {
    color: #666666;
    font-size: 11px;
    line-height: 1.4;
    margin: 0;
}
.money-subtitle-bottom {
    font-size: 12px;
    color: #666666;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
    background-color: #B2DFDB;
    padding: 10px;
}
.banner-bottom {
    margin-top: 10px;
    width: 100%;
    padding-bottom: 80px;
}

/* 固定底部按钮 */
.fixed-bottom-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    height: 50px;
}

.bottom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    gap: 8px;
    transition: all 0.3s ease;
}

.phone-btn {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #FF6B00, #FF4500);
}

.line-btn {
    background: linear-gradient(135deg, #00C851, #00A041);
}

.line-btn:hover {
    background: linear-gradient(135deg, #00A041, #007E33);
}

.bottom-btn img {
    width: 20px;
    height: 20px;
}

.btn-text {
    font-size: 16px;
    font-weight: 500;
}

/* 全屏加载蒙层 */
.global-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2000;
}

.global-loading.show {
    display: flex;
}

.global-loading-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    animation: spin 1s linear infinite;
}
