1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /* pages/school/school.wxss */
- @import '../../templates/nodata/nodata.wxss';
- .search-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- background: #F1F3FA;
- }
- .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: 34rpx;
- height: 34rpx;
- 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;
- }
|