school.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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: #FF6465;
  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: 29rpx;
  21. height: 29rpx;
  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. }
  54. .li-nodata{
  55. font-size:30rpx;
  56. color: #393939;
  57. text-align: center;
  58. margin: 30% auto;
  59. font-weight: bold
  60. }