school.wxss 951 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* pages/school/school.wxss */
  2. @import '../../templates/nodata/nodata.wxss';
  3. .search-container {
  4. position: fixed;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. background: #F1F3FA;
  9. }
  10. .search-wrapper {
  11. margin: 25rpx 30rpx;
  12. background: #fff;
  13. border-radius: 100rpx;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. padding: 15rpx 30rpx;
  18. }
  19. .search-label {
  20. width: 34rpx;
  21. height: 34rpx;
  22. margin-right: 20rpx;
  23. }
  24. .search-input {
  25. flex: 1;
  26. }
  27. .list {
  28. margin: 129rpx 0 30rpx 0;
  29. background: #fff;
  30. border-top: solid 1rpx #EAEAEA;
  31. border-bottom: solid 1rpx #EAEAEA;
  32. padding: 0 30rpx;
  33. }
  34. .li {
  35. padding: 30rpx 0;
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. border-bottom: solid 1rpx #EAEAEA;
  40. cursor: pointer;
  41. }
  42. .li:nth-last-of-type(1) {
  43. border-bottom: none;
  44. }
  45. .li-title {
  46. font-size: 30rpx;
  47. color: #393939;
  48. margin-bottom: 15rpx;
  49. }
  50. .li-text {
  51. font-size: 24rpx;
  52. color: #7e7e7e;
  53. }