You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.1 KiB
70 lines
1.1 KiB
/* pages/index/index.wxss */
|
|
page {
|
|
background: rgb(242, 242, 245);
|
|
}
|
|
|
|
.searchBoxs {
|
|
position: relative;
|
|
margin: 20rpx 0rpx;
|
|
height: 76rpx;
|
|
}
|
|
|
|
.searchInps {
|
|
background-color: #fff;
|
|
width: 542rpx;
|
|
height: 76rpx;
|
|
border-radius: 8rpx;
|
|
padding-left: 32rpx;
|
|
padding-right: 144rpx;
|
|
border: 1px solid rgba(225, 225, 225, 0.44);
|
|
position: absolute;
|
|
top: -2rpx;
|
|
left: 16rpx;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.btnSearch {
|
|
width: 128rpx;
|
|
height: 68rpx;
|
|
line-height: 68rpx;
|
|
border-radius: 8rpx;
|
|
color: #fff;
|
|
font-size: 28rpx;
|
|
background: linear-gradient(180deg, #1979ff 0%, #1979ff 100%);
|
|
position: absolute;
|
|
top: 6rpx;
|
|
right: 28rpx;
|
|
z-index: 10;
|
|
}
|
|
|
|
.searchFixed {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
box-shadow: 0rpx -4rpx 20rpx #c2c2c2;
|
|
z-index: 10;
|
|
}
|
|
|
|
.box {
|
|
padding: 20rpx;
|
|
box-shadow: 0rpx 0rpx 10rpx #ccc;
|
|
overflow: hidden;
|
|
line-height: 50rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
/* 暂无数据 */
|
|
.noData {
|
|
width: 254rpx;
|
|
height: 298rpx;
|
|
display: block;
|
|
margin: 450rpx auto 16rpx;
|
|
}
|
|
|
|
.noTxt {
|
|
font-size: 30rpx;
|
|
color: #999;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|