/* 地区选择 */
.pc-areaSel-wrap {
    position: relative;
    width: 160px;
}

.pc-areaSel-input {
    width: 100%;
    height: 36px;
    padding: 0 15px;
    color: #C10B00;
    border: 1px solid #C10B00;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pc-areaSel-input.active {
    border-color: #C10B00;
    box-shadow: 0 0 0 2px rgba(172, 13, 13, 0.1);
}

.pc-areaSel-placeholder {
    color: #C10B00;
}
.pc-areaSel-arrow {
    color: #C10B00;
    transition: transform 0.3s;
}
.pc-areaSel-input.active .pc-areaSel-arrow {
    transform: rotate(180deg);
}

.pc-areaSel-panel {
    position: absolute;
    top: 44px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
    z-index: 999;
    display: none;
    overflow: hidden;
}
.pc-areaSel-panel.show {
    display: block;
}

.pc-areaSel-title {
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 13px;
    color: #595959;
    background: #fafafa;
}

.pc-areaSel-list {
    max-height: 280px;
    overflow-y: auto;
    padding: 8px 0;
}
.pc-areaSel-list::-webkit-scrollbar {
    width: 6px;
}
.pc-areaSel-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.pc-areaSel-item {
    padding: 8px 16px;
    font-size: 13px;
    color: #262626;
    cursor: pointer;
    transition: 0.2s;
}
.pc-areaSel-item:hover {
    background: #f0f0f0;
    color: #C10B00;
}

.pc-areaSel-tip {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #8c8c8c;
}
.pc-areaSel-tip.error {
    color: #ff4d4f;
}

.pc-areaSel-btn-group {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-top: 1px solid #e8e8e8;
    background: #fafafa;
}
.pc-areaSel-btn {
    flex: 1;
    height: 32px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
}
.pc-areaSel-btn-back {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #595959;
}
.pc-areaSel-btn-clear {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #595959;
}
/* 列表 */
.pc-zuopin{
    max-width: 1200px;
    margin: 0 auto;
    /* border: 1px solid #C10B00; */
}
.pc-zuopin-filter{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 20px 0 0 20px;
}
.pc-zuopin-select{
    width: 140px;
    padding: 0 10px;
    height: 36px;
    border: 1px solid #C10B00;
    border-radius: 50px;
    color: #C10B00;
}
.pc-zuopin-select option{
    width: 100%!important;
    height: 36px!important;
    background: #fff!important;
}