/* order_form页面专用样式 */

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

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    max-width: 800px;
    margin: 0px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

.form-content {
    padding: 20px;
}

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

.form-label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #0066cc;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #0066cc;
}

.required {
    color: #e74c3c;
}

.form-tips {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.package-info {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-title {
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 15px;
}

.package-title-monthly {
    display: none;
    margin-left: 8px;
    color: #e53935;
    font-size: 1.08em;
    font-weight: 700;
    vertical-align: middle;
}

.package-details {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.package-item {
    display: table-cell;
    text-align: center;
    padding: 20px 15px;
    border-right: 1px solid #e9ecef;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.package-item:last-child {
    border-right: none;
}

.package-item:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.package-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-value {
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.package-description {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-description h4 {
    color: #0066cc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.package-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.package-fee-info {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-fee-info h4 {
    color: #0066cc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.package-fee-info p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.package-fee-details {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.package-fee-details h4 {
    color: #0066cc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

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

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0066cc;
}

.fee-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.fee-value {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .package-details {
        display: block;
    }
    .package-item {
        display: block;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 15px;
    }
    .package-item:last-child {
        border-bottom: none;
    }
    .fee-details {
        grid-template-columns: 1fr;
    }
    .package-description,
    .package-fee-info,
    .package-fee-details {
        padding: 15px;
        margin-top: 15px;
    }
    .package-description h4,
    .package-fee-info h4,
    .package-fee-details h4 {
        font-size: 16px;
    }
    .fee-item {
        padding: 8px 12px;
    }
    .package-title-monthly {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .package-details {
        display: table;
        width: 100%;
    }
    .package-item {
        display: table-cell;
        width: 50%;
    }
    .package-item-monthly {
        display: none !important;
    }
} 