/*顶部菜单*/
.menu {
    height: 45px;
    border-bottom: 1px solid #f3f3f3;
    font-size: 15px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background-color: white;
    justify-content: space-between;
    overflow: hidden;
}

.menu .select {
    width: 20px;
    height: 20px;
    transform: rotatez(0deg);
    display: none;
}
.menu .select1{
    width: 14px;
    margin-right: 17px;
}

.menu .overflowbox {
    width: 88%;
    height: 45px;
    overflow: hidden;
    margin: 0 5px;
}

.menu .overflowbox ul {
    width: 100%;
    height: 53px;
    color: #747373;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.menu .overflowbox ul li {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: auto;
    margin: -8px 10px 0;
}

.menu .overflowbox ul li a {
    color: #717171;
}

.menu .overflowbox ul li.active {
    color: #cc4134;
    position: relative;
}

.menu .overflowbox ul .active a {
    color: #cc4134;
}

.menu .overflowbox ul li.active::after {
    display: block;
    content: "";
    height: 3px;
    width: 50%;
    margin: 0 auto;
    background-color: #cc4134;
    position: absolute;
    left: 25%;
    bottom: 8px;
    border-radius: 3px;
}

.menu .expand {
    height: 20px;
    display: flex;
    align-items: center;
}

.menu .select.in_transform {
    transform: rotatez(180deg);
    -ms-transform: rotatez(180deg); /* ie9 */
    -moz-transform: rotatez(180deg); /* firefox */
    -webkit-transform: rotatez(180deg); /* safari和chrome */
    -o-transform: rotatez(180deg); /* opera */
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out; /*firefox 4 */
    -webkit-transition: all 0.5s ease-in-out; /* safari和chrome */
    -o-transition: all 0.5s ease-in-out; /* opera */
}

.menu .select.out_transform {
    transform: rotatez(0deg);
    -ms-transform: rotatez(0deg); /* ie9 */
    -moz-transform: rotatez(0deg); /* firefox */
    -webkit-transform: rotatez(0deg); /* safari和chrome */
    -o-transform: rotatez(0deg); /* opera */
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out; /*firefox 4 */
    -webkit-transition: all 0.5s ease-in-out; /* safari和chrome */
    -o-transition: all 0.5s ease-in-out; /* opera */
}

.openmenu .expand {
    align-self: flex-end;
    display: flex;
    margin-right: 15px;
    margin-bottom: 10px;
}

.menu .innerbox {
    width: 100%;
    padding: 15px 7.5px;
}

.openmenu .innerbox ul {
    display: flex;
    flex-wrap: wrap;
}

.openmenu .innerbox ul li {
    width: 21%;
    height: 30px;
    margin: 2%;
    border: 1px solid #979797;
    text-align: center;
    line-height: 30px;
    position: relative;
}

.openmenu .innerbox ul li > a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
}

.openmenu a, .openmenu {
    color: #717171 !important;
}

.openmenu {
    flex-direction: column;
    font-weight: 400;
}

.openmenu .font {
    margin-right: 9.5px
}

.openmenu .innerbox .active {
    border: 1px solid #cc4134;
}

.openmenu .innerbox .active a {
    color: #cc4134 !important;
}

/*搜索页*/
.searchpage {
    width: 100%;
    height: 100vh;
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 999;
    right: -100%;
}

.searchpage .searcharea {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 5px 10px;
    border-bottom: 1px solid #e5e5e5;
}

.searchpage .searcharea .icon {
    width: 14px;
    height: 14px;
    position: absolute;
    left: 20px;
}

.searchpage .searcharea .innerinput {
    width: 88%;
    background-color: #e5e5e5;
    border: none;
    outline: none;
    height: 30px;
    /*border-radius: 20px;*/
    text-indent: 3em;
}

.searchpage .searcharea > span {
    font-size: 16px;
    margin-left: 7px;
}

.top-box .swiper-container{
    /*background-color: #c13224 !important;*/
}

.top-box .swiper-slide{
    /*background: #c13224 !important;*/
}
