/*
.search-option input[type="checkbox"] {
    position: relative;
    outline: none;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    margin-bottom: 6px;
}

.search-option input[type="checkbox"]:after {
    content: ' ';
    display: block;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    border: 1px solid #ddd;
    background: #fff;
}

.search-option input[type="checkbox"]:checked:before {
    content: ' ';
    position: absolute;
    top: 4px;
    left: 3px;
    display: block;
    width: 7px;
    height: 4px;
    border-left: 1px solid red;
    border-bottom: 1px solid red;
    transform: rotate(-45deg);
}
*/
.search-option input[type="checkbox"] {
    position: relative;
    outline: none;
    display: inline-block;
    margin-right: 12px !important;
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.search-option input[type="checkbox"]:after {
    content: ' ';
    display: block;
    left: 0;
    top: 0;
    margin-top: -2px !important;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 2px;
}

.search-option input[type="checkbox"]:checked:before {
    content: ' ';
    position: absolute;
    top: 2px;
    left: 3px;
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid #1da1f2;
    border-bottom: 2px solid #1da1f2;
    transform: rotate(-45deg);
}
.search-option input[type="radio"] {
    position: relative;
    outline: none;
    display: inline-block;
    margin-right: 10px !important;
    margin-left: 2px;
    cursor: pointer;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.search-option input[type="radio"]:after {
    position: absolute;
    content: ' ';
    display: block;
    box-sizing: border-box;
    left: -2px;
    top: 1px;;
    margin-top: -2px !important;
    width: 16px;
    height: 16px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 20px;
}

.search-option input[type="radio"]:checked:before {
    content: ' ';
    position: absolute;
    box-sizing: border-box;
    top: 3px;
    left: 2px;
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1da1f2;
    border-radius: 20px;
    z-index: 10;
}


.search-option .num{
    color: #1da1f2;
    font-size: 16px;
}

.search-option h2 {
    font-size: 20px;
    font-weight: bold;
    padding: 20px 0;
}

.search-option .option-wrap {
    padding-bottom: 10px;
}

.search-option label {
    margin-right: 10px;
    cursor: pointer;
    font-weight: normal;
}

hr {
    height: 1px;
    border: none;
    border-top: 1px solid #ddd;
    margin: 0 !important;
}

.search-option .feedback {
    padding: 10px 0 10px 0;
}

.search-option .feedback .title{
    color: #333;
    font-size: 16px;
    margin-right: 20px;
}

.search-option .feedback .tips{
    color: #666;
}