search.wxss 1.59 KB
/* stylelint-disable-next-line */
page {
    background-color: #ebebeb;
}

.eps {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-page {
    width: 100%;
    max-width: 750rpx;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    color: #444;
}

.search-page .search {
    width: 750rpx;
    height: 104rpx;
    background-color: #fff;
    box-sizing: border-box;
    padding: 16rpx 30rpx;
}

.search-page .search input {
    height: 72rpx;
    line-height: 12rpx;
    background-color: #f8f8f8;
    border-radius: 30rpx;
    width: 604rpx;
    float: left;
    padding-left: 30rpx;
    box-sizing: border-box;
    font-size: 28rpx;
}

.search-page .search text {
    text-align: right;
    width: 86rpx;
    float: left;
    line-height: 72rpx;
    font-size: 28rpx;
}

.search-result {
    background-color: #fff;
    margin-top: 20rpx;
}

.search-result .result-item {
    margin-left: 30rpx;
    height: 160rpx;
    background-color: #fff;
    box-sizing: border-box;
    padding: 32rpx 30rpx 28rpx 0;
    border-bottom: solid 1rpx #e0e0e0;
}

.search-result .result-item:last-child {
    border-bottom: 0;
}

.search-result .result-item image {
    height: 100rpx;
    width: 100rpx;
    float: left;
    margin-right: 30rpx;
}

.search-result .result-item text {
    height: 100rpx;
    line-height: 100rpx;
    display: block;
    float: left;
    font-size: 28rpx;
    width: 560rpx;
}

.search-page .no-result {
    margin-top: 100rpx;
}

.search-page .no-result view {
    text-align: center;
    font-size: 28rpx;
    line-height: 40rpx;
    color: #b0b0b0;
}