.warranty-container {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    padding: 12.5vh 0 0;
}

.search-title {
    font-size: 32px;
    color: #FFFFFF;
    padding: 120px 0 30px;
    text-align: center;
}

.flex-search {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    width: 800px;
    margin: 0 auto;
}

.flex-search .picker {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    font-size: 18px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.flex-search .picker::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/images/drop-arrow-down.png);
    background-size: cover;
    width: 11px;
    height: 10px;
}

.flex-search .picker .picker-input {
    height: 60px;
    width: 150px;
    border: none;
    outline: none;
    padding: 0 1em;
    font-size: 16px;
    color: #010101;
    cursor: pointer;
}

.flex-search .picker .picker-options {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    min-width: 150px;
    background-color: var(--select-background);
    max-height: 30vh;
    border-top: 1px solid #F2F3F7;
    overflow-y: auto;
    display: none;
}

.flex-search .picker .picker-options .picker-option {
    padding: 10px;
}

.flex-search .picker .picker-options .picker-option.active {
    color: var(--primary-color);
    background-color: var(--select-color);
}

.flex-search .picker .picker-options .picker-option:hover {
    color: var(--primary-color);
    background-color: var(--select-color);
}

.flex-search .line {
    width: 2px;
    height: 48px;
    background: #F2F3F7;
    flex-shrink: 0;
}

.flex-search .search-input {
    height: 60px;
    flex: 1;
    outline: none;
    border: none;
    padding: 0 1em;
    font-size: 18px;
}

.flex-search .btn-search {
    height: 60px;
    outline: none;
    border: none;
    width: 120px;
    background-color: #EFC41A;
    font-size: 18px;
    color: #010101;
    flex-shrink: 0;
}

.search-tips {
    font-size: 18px;
    color: #FFFFFF;
    padding: 15px 0;
    text-align: center;
}

.warranty-tips {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    line-height: 90px;
    background-color: rgba(1, 1, 1.5);
    font-size: 16px;
    color: #999EAD;
    text-align: center;
}

.warranty-detail-container {
    padding: 120px 0;
    margin: 0 120px;
}

.warranty-detail .title {
    font-size: 32px;
    color: #010101;
    background-image: url(/images/title-bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    padding: 30px 0 4px;
}

.warranty-detail .flex-group {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.warranty-detail .flex-group .group {
    width: 32%;
}

.warranty-detail .flex-group .group .part {
    background-color: #FFFFFF;
    box-shadow: 0px 5px 20px 0px rgba(145, 149, 166, 0.3);
    margin-top: 20px;
    padding-bottom: 10px;
}

.warranty-detail .flex-group .group .part .name {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #010101;
    padding: 12px 0;
}

.warranty-detail .flex-group .group .part .name .idx {
    width: 36px;
    height: 40px;
    background: #EFC41A;
    border-radius: 0px 10px 10px 0px;
    font-size: 20px;
    font-weight: bold;
    color: #010101;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.warranty-detail .flex-group .group .part .prop {
    display: flex;
    font-size: 16px;
    color: #010101;
    padding: 10px 45px;
}

.warranty-detail .flex-group .group .part .prop .key {
    width: 120px;
    flex-shrink: 0;
    color: #999EAD;
}

.warranty-detail .flex-group .group .part .prop .value {
    white-space: pre-line;
}

.warranty-detail .flex-group .group .card {
    background: #FFFFFF;
    box-shadow: 0px 5px 20px 0px rgba(145, 149, 166, 0.3);
    margin-top: 20px;
}

.warranty-detail .flex-group .group .card .card-title {
    border-bottom: 1px solid #F2F3F7;
    height: 60px;
    font-size: 20px;
    color: #010101;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.warranty-detail .flex-group .group .card .card-title::before {
    content: "";
    width: 20px;
    height: 20px;
    background-size: cover;
    margin-right: 10px;
}

.warranty-detail .flex-group .group .card .card-title.card-user::before {
    background-image: url(/images/card-user.png);
}

.warranty-detail .flex-group .group .card .card-title.card-img::before {
    background-image: url(/images/card-img.png);
}

.warranty-detail .flex-group .group .card .card-title.card-setting::before {
    background-image: url(/images/card-setting.png);
}

.warranty-detail .flex-group .group .card .card-title.card-film::before {
    background-image: url(/images/card-film.png);
}

.warranty-detail .flex-group .group .card .card-title.card-service::before {
    background-image: url(/images/card-service.png);
}

.warranty-detail .flex-group .group .card .card-title.card-car::before {
    background-image: url(/images/card-car.png);
}

.warranty-detail .flex-group .group .card .card-body {
    padding: 10px 0 20px;
}

.warranty-detail .flex-group .group .card .prop {
    display: flex;
    font-size: 16px;
    color: #010101;
    padding: 10px 45px;
}

.warranty-detail .flex-group .group .card .prop .key {
    width: 120px;
    flex-shrink: 0;
    color: #999EAD;
}

.warranty-detail .flex-group .group .card .prop .value.new-value {
    height: 24px;
    background: #0079FE;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.warranty-detail .flex-group .group .card .img-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px 30px;
}

.warranty-detail .flex-group .group .card .img-list .item {
    width: 32%;
    margin-top: 2%;
    margin-right: 2%;
    cursor: pointer;
}

.warranty-detail .flex-group .group .card .img-list .item:nth-child(3n) {
    margin-right: 0%;
}

.warranty-detail .flex-group .group .card .img-list .item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}