/*搜索*/

.search-content {
    position: relative;
    float: right;
    margin-right: 10px;
}

.search-btn {
    width: 40px;
    height: 89px;
    background: url("../images/search-btn.png") no-repeat center center;
    cursor: pointer;
}

.search-btn.on {
    background: url("../images/search-btn-on.png") no-repeat center center;
}

.search-box {
    position: absolute;
    top: 120px;
    right: 0;
    width: 280px;
    height: 36px;
    opacity: 0;
    transform: rotateX(90deg);
    z-index: 21;
    transition: all 0.5s ease;
}

.search-box.on {
    opacity: 1;
    transform: none;
    top: 90px;
}

.search-box-i {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 5px #999;
}

.search-input {
    float: left;
    height: 36px;
    line-height: 36px;
    font-size: 13px;
    border: none;
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
    width: 210px;
    outline: none;
}

.search-submit {
    float: left;
    width: 50px;
    height: 36px;
    border: none;
    cursor: pointer;
    background: #FF0000 url("../images/search-icon.png") no-repeat center center;
}