/* 顶部标题 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f5f5f5;
}

.title {
    font-size: 18px;
    font-weight: 500;
    color: #00B578;
}

.focus-btn {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border: none;
    background: none;
    color: #666;
    font-size: 14px;
}

.focus-btn i {
    margin-left: 4px;
    font-size: 12px;
}

/* 添加爱车 */
.add-car {
    margin: 12px 16px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.add-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.add-icon i {
    font-size: 24px;
    color: #999;
}

.add-info {
    flex: 1;
}

.add-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.add-info p {
    font-size: 12px;
    color: #999;
}

.add-btn {
    padding: 6px 16px;
    background: #00B578;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
}

/* 车辆估值 */
.valuation {
    margin: 12px 16px;
    padding: 20px 16px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
}

.valuation h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.valuation p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.estimate-btn {
    width: 100%;
    height: 44px;
    background: #00B578;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 16px;
}

/* 高价卖车 */
.sell-section {
    margin: 12px 16px;
    background: #fff;
    border-radius: 8px;
}

.sell-header {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
}

.sell-title {
    font-size: 16px;
    color: #00B578;
    margin-right: 8px;
}

.sell-subtitle {
    flex: 1;
    font-size: 12px;
    color: #999;
}

.sell-header i {
    color: #999;
    font-size: 12px;
}

/* 信息填写 */
.info-section {
    padding: 16px;
}

.info-section h3 {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.info-item span {
    font-size: 14px;
    color: #333;
}

.info-item i {
    color: #999;
    font-size: 12px;
}

/* 高价寻找买家 */
.find-buyer {
    padding: 16px;
}

.find-btn {
    width: 100%;
    height: 44px;
    background: #00B578;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 12px;
}

.auth-check {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.auth-check input {
    margin-right: 8px;
} 