/* 首页模板1自定义样式 */
body {
    background: linear-gradient(to bottom, #3b82f6, #93c5fd);
    min-height: 100vh;
}

.container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

/* 品牌标识样式 */
.brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brand-header i {
    color: white;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.brand-header h1 {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
}

/* 功能特点样式 */
.features-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
}

.feature-item i {
    color: #eab308;
    margin-right: 0.5rem;
}

.feature-item span {
    color: #374151;
}

/* 额度信息样式 */
.amount-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.amount-card h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* 手机号输入样式 */
.phone-input-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.phone-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.phone-input-wrapper i {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    color: #9ca3af;
}

.phone-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
}

.phone-input:focus {
    box-shadow: 0 0 0 2px #3b82f6;
}

.agreement-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.agreement-wrapper input {
    margin-right: 0.5rem;
}

.agreement-wrapper label {
    color: #6b7280;
    font-size: 0.875rem;
}

.submit-button {
    width: 100%;
    background: #3b82f6;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background: #2563eb;
}

/* 产品优势样式 */
.advantages-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.advantages-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.advantage-icon {
    background: #dbeafe;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-right: 1rem;
}

.advantage-icon i {
    color: #3b82f6;
}

.advantage-content h4 {
    font-weight: bold;
    color: #1f2937;
}

.advantage-content p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* 快速借款流程样式 */
.process-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-step {
    text-align: center;
}

.process-step-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.process-step-number span {
    font-size: 0.875rem;
}

.process-step p {
    color: #6b7280;
    font-size: 0.875rem;
}

.process-arrow {
    color: #9ca3af;
}

.process-arrow i {
    font-size: 1.25rem;
}

/* 客服电话样式 */
.service-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card .flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-card i {
    color: #3b82f6;
    margin-right: 0.5rem;
}

.service-card span {
    color: #1f2937;
    font-weight: bold;
}

/* 温馨提示样式 */
.notice-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.notice-card p {
    margin-bottom: 0.25rem;
}

.notice-card p:first-child {
    margin-bottom: 0.5rem;
}
