123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /* pages/school/school.wxss */
- @import '../../templates/nodata/nodata.wxss';
- .search-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- background: #FF6465;
- }
- .search-wrapper {
- margin: 25rpx 30rpx;
- background: #fff;
- border-radius: 100rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding: 15rpx 30rpx;
- }
- .search-label {
- width: 29rpx;
- height: 29rpx;
- margin-right: 20rpx;
- }
- .search-input {
- flex: 1;
- }
- .list {
- margin: 129rpx 0 30rpx 0;
- background: #fff;
- border-top: solid 1rpx #EAEAEA;
- border-bottom: solid 1rpx #EAEAEA;
- padding: 0 30rpx;
- }
- .li {
- padding: 30rpx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: solid 1rpx #EAEAEA;
- cursor: pointer;
- }
- .li:nth-last-of-type(1) {
- border-bottom: none;
- }
- .li-title {
- font-size: 30rpx;
- color: #393939;
- margin-bottom: 15rpx;
- }
- .li-text {
- font-size: 24rpx;
- color: #7e7e7e;
- }
- .li-nodata{
- font-size:30rpx;
- color: #393939;
- text-align: center;
- margin: 30% auto;
- font-weight: bold
- }
|