body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0 0 70px;
    background-color: #007bff;
    box-sizing: border-box;
}

/* 支付确认容器样式 */
.pay-confirm-container {
    background-color: #fff;
    margin: 20px 15px 15px;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* 支付确认头部样式 */
.pay-confirm-header {
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* 步骤指示器样式 */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 400px;
}

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

.step-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.step-text {
    font-size: 12px;
    color: #6c757d;
}

.step.active .step-circle {
    background-color: #007bff;
    color: white;
}

.step.completed .step-circle {
    background-color: #28a745;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background-color: #dee2e6;
    margin: 0 10px;
}

.step.completed + .step-line {
    background-color: #28a745;
}

/* 支付确认主体样式 */
.pay-confirm-body {
    padding: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.info-label {
    width: 100px;
    font-weight: 500;
    color: #495057;
}

.info-value {
    flex: 1;
    color: #212529;
}

/* 金额部分样式 */
.amount-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.amount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.amount-left {
    display: flex;
    align-items: center;
}

.amount-label {
    font-size: 16px;
    font-weight: 500;
    color: #495057;
    margin-right: 10px;
}

.amount-value {
    font-size: 24px;
    font-weight: bold;
    color: #dc3545;
}

.payment-method {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 4px;
}

.payment-method img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.payment-method span {
    color: #495057;
    font-size: 14px;
}

.payment-icon {
    margin-right: 8px;
}

/* 支付确认底部样式 */
.pay-confirm-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-pay {
    background-color: #fd7e14;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-pay:hover {
    background-color: #e85d04;
}

.btn-back {
    background-color: white;
    color: #495057;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-back:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
}
/* 导航头部样式 */
.nav-header {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
/* 用户信息样式 */
.user-section {
    background-color: #fff;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}
.user-info {
    display: flex;
    align-items: center;
}
.user-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.user-welcome {
    font-size: 14px;
    color: #6c757d;
    margin: 5px 0 0 0;
}
/* 菜单样式 */
.menu-item {
    background-color: #fff;
    padding: 15px;
    margin: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}
.menu-item:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
}
.menu-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #6c757d;
}
.menu-text {
    font-size: 16px;
    font-weight: 500;
}
.header {
    background: linear-gradient(135deg, #1890ff 0%, #36cfc9 100%);
    color: #fff;
    padding: 0;
    text-align: center;
}
.header-image {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
}
.form-container {
    background-color: #fff;
    margin: 20px 15px 15px;
    border-radius: 15px;
    padding: 10px 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}
.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.form-control:focus {
    outline: none;
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}
.radio-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.radio-item:hover {
    border-color: #1890ff;
}
.radio-item input[type="radio"] {
    position: static;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}
.radio-item input[type="radio"]:checked {
    accent-color: #1890ff;
}
.radio-item input[type="radio"]:checked + label {
    color: #1890ff;
}
.radio-item:has(input[type="radio"]:checked) {
    border-color: #1890ff;
    background-color: #e6f7ff;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}
.checkbox-group label {
    font-size: 14px;
    color: #666;
}
.btn-primary {
    width: 100%;
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #40a9ff;
}
.btn-primary:disabled {
    background-color: #d9d9d9;
    cursor: not-allowed;
}
.law-section {
    margin: 20px 15px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.law-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}
.law-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.law-title {
    background-color: #1890ff;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.law-content {
    background-color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    text-align: center;
}
.footer {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #999;
    margin-bottom: 0px;
}
.footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}
.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6c757d;
    font-size: 12px;
}
.footer-item.active {
    color: #007bff;
}
.footer-icon {
    font-size: 20px;
    margin-bottom: 5px;
}
/* 搜索按钮样式 */
.search-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.search-input {
    flex: 1;
}
.search-btn {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.search-btn:hover {
    background-color: #40a9ff;
}
/* 滚动提示样式 */
.scroll-tip {
    background-color: #e6f7ff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}
.scroll-content {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #1890ff;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* 弹窗样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background-color: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.modal-header {
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}
.modal-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
}
.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-result-item:hover {
    background-color: #fafafa;
}
.company-info {
    flex: 1;
}
.company-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}
.company-detail {
    font-size: 12px;
    color: #666;
}
.btn-confirm {
    background-color: #1890ff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-confirm:hover {
    background-color: #40a9ff;
}
.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e8e8e8;
    text-align: center;
}
.btn-cancel {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #d9d9d9;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cancel:hover {
    background-color: #e8e8e8;
}