.hori-cate-area .cate-l-1 {
    padding: 0.15rem;
}

div.search {
	/*max-width: 5rem;*/
	flex: 2;
}

div.search * {
    box-sizing: border-box
}

.search form {
	position: relative;
}


.search input {
	width: 100%;
	height: 0.42rem;
	font-size: 0.14rem;
	padding-left: 0.10rem;
	padding-right: 0.50rem;
	border: 0.01rem solid #ff9900;
	border-radius: 0.02rem;
	outline: 0;
	background: #FFFFFF;
	color: #333;
}

.search .dropdown {
	/*color: #FFFFFF;*/
	position: absolute;
	top: 0;
	left: 0;
	width: 1.10rem;
	height: 0.42rem;
	border: 0;
	border-radius: 0.05rem 0 0 0.05rem;
	cursor: pointer;
	background: #ff9900;
}

.search button {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-weight: 500;
    padding: 0 10px;
    /* width: 0.42rem; */
    height: 0.42rem;
    border: 0;
	border-radius: 0 0.05rem 0.05rem 0;
	cursor: pointer;
	background: #ff9900;
}

.search button:before {
	content: "\f002";
	font-family: "FontAwesome","Font Awesome 5 Free";
	font-size: 0.16rem;
	color: #f9f0da;
    margin-right: 2px;
}

/* begin select style */
.search select {
    display: none;
}
.search .dropdown {
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#40FFFFFF', endColorstr='#00FFFFFF', GradientType=0);
    box-shadow: 0 0.01rem 0 rgba(0, 0, 0, 0.0075);
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-size: 0.14rem;
    font-weight: normal;

    line-height: 0.40rem;
    outline: none;
    padding-left: 0.18rem;
    padding-right: 0.30rem;

    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.search .dropdown:hover,
.search .dropdown:focus {
    /*background-color: #f2f2f2;*/
}
.search .dropdown:active,
.search .dropdown.open {
    /*background-color: #f2f2f2 !important;*/
    border-color: #e4e4e4;
    box-shadow: 0 0.01rem 0.04rem rgba(0, 0, 0, 0.05) inset;
}
.search .dropdown:after {
    height: 0;
    width: 0;
    border-left: 0.04rem solid transparent;
    border-right: 0.04rem solid transparent;
    border-top: 0.04rem solid #F0F0F0;
    -webkit-transform: origin(50% 20%);
    -ms-transform: origin(50% 20%);
    transform: origin(50% 20%);
    -webkit-transition: all 0.125s ease-in-out;
    transition: all 0.125s ease-in-out;
    content: '';
    display: block;
    margin-top: -0.02rem;
    pointer-events: none;
    position: absolute;
    right: 0.10rem;
    top: 50%;
}
.search .dropdown.open:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.search .dropdown.open .list {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}
.search .dropdown.open .option {
    cursor: pointer;
}
.search .dropdown.wide {
    width: 100%;
}
.search .dropdown.wide .list {
    left: 0 !important;
    right: 0 !important;
}
.search .dropdown .current{
	color: #F0F0F0;
	font-weight: 600;
}
.search .dropdown .list {
    box-sizing: border-box;
    -webkit-transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    box-shadow: 0 0 0 0.01rem rgba(0, 0, 0, 0.09);
    background-color: #fff;
    border-radius: 0.06rem;
    margin-top: 0.04rem;
    padding: 0.03rem 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
}
.search .dropdown .list:hover .option:not(:hover) {
    background-color: transparent !important;
}
.search .dropdown .option {
    cursor: default;
    font-weight: 400;
    line-height: 0.40rem;
    outline: none;
    padding-left: 0.18rem;
    padding-right: 0.29rem;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.search .dropdown .option:hover,
.search .dropdown .option:focus {
    background-color: #f8f8f8 !important;
}
.search .dropdown .option.selected {
    font-weight: 600;
}
.search .dropdown .option.selected:focus {
    background: #f8f8f8;
}