﻿/*Search Result*/
.search-block {
    float: left;
    /*position: relative;*/
}
.search-block > i {
    padding: 12px 20px;
    font-size: 25px;
    color: #ffce6e;
    cursor: pointer;
}
.box-search {
    position: absolute;
    right: 15px;
    left: 13px;
    bottom: -35px;
    z-index: 9999;
    overflow: hidden;
    transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}
.box-search.active {
    visibility: visible;
    opacity: 0.9;
}
.page-content {
    padding: 10px 0 30px;
}
.caption-search {
    width: 100%;
    padding-bottom: 20px;
}
.box-search .input-text {
    border: 1px solid #e87618;
    padding: 7px 10px;
    width: 100%;
}
.box-search .btn-search {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
}
.box-search .btn-search > i {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    font-size: 15px;
    color: #888;
}
.box-search .btn-search > span {
    position: absolute;
    z-index: 99;
}
.box-search .search-button {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
}
/*Search Listing */
.caption-search span {
    text-transform: uppercase;
    color: #fb7000;
    font-weight: bold;
}
.searchlist {
    width: 100%;
}
.searchlist .item {
    background-color: #f8f8f8;
    border-bottom: solid 1px #e4dfdf;
    overflow: hidden;
    padding: 15px 0 10px;
    width: auto;
}
.searchlist .item.odd {
    background: #fff;
}
.searchlist .first {
    border-top: solid 1px #e4dfdf;
}
.searchlist .item .title {
    display: block;
    margin: 0 0 3px 0;
    width: 95%;
}
.searchlist .item .title a {
    color: #FF9600;
    line-height: 18px;
}
.searchlist .item .title a:hover {
}
.searchlist .item .desciption {
    color: #686868;
    font: 12px/16px Arial;
    overflow: hidden;
    text-align: justify;
    width: 100%;
}
.searchlist .item .order {
    color: #686868;
    text-align: right;
}
.searchlist .item .order b {
    border-right: 1px solid #686868;
    margin: 0 10px 0 5px;
    padding: 0 10px 0 0;
}
.searchlist .item .order b a {
    color: #686868;
    font-weight: bold;
    text-decoration: none;
}
.searchlist .item .order b a:hover {
    text-decoration: underline;
}
.searchlist .item .order a {
    color: #686868;
    font: 12px/17px Arial;
    text-decoration: underline;
}
.searchlist .pager {
    float: left;
    height: 25px;
    margin: 10px 20px;
    width: 480px;
}
.searchlist .pager a {
    border: 1px solid #fff;
    color: #767676;
    float: left;
    height: 25px;
    line-height: 25px;
    text-align: center;
    text-decoration: none;
    width: 18px;
}
.searchlist .pager .prev {
    margin-right: 5px;
    width: auto;
}
.searchlist .pager .next {
    margin-left: 5px;
}
.searchlist .pager .select {
    background: none;
    border: 1px solid #ffaf00;
    color: #767676;
    font-weight: normal;
    padding: 0;
}
.highlight {
    color: #2a2929;
    font-weight: bold;
}
.title .highlight {
    color: #FF9600;
    font-weight: bold;
}
@media screen and (max-width:1200px) {
    .search-block {
        background: none;
        float: right;
    }
    .search-block > i {
        padding: 12px 9px;
    }
    .box-search {
        left: 15px;
    }
}
@media screen and (max-width:480px) {
    .search-block > i {
        padding: 12px 9px 12px 0;
    }
    .search-block > i {
        font-size: 23px;
    }
}