schools.scss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* 学院列表 */
  2. .school {
  3. background-color: #f2f2f2;
  4. min-height: calc(100vh - 44px);
  5. /* 搜索 */
  6. &-search {
  7. width: calc(100% - 60rpx);
  8. margin: 0 auto;
  9. padding: 29rpx 0;
  10. }
  11. /* 列表 */
  12. &-list {
  13. &-item {
  14. margin-bottom: 20rpx;
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. background-color: #fff;
  19. border-radius: 10rpx;
  20. padding: 40rpx 30rpx;
  21. &-left {
  22. display: flex;
  23. align-items: center;
  24. .image {
  25. width: 98rpx;
  26. height: 98rpx;
  27. border: solid 1px #E0E0E0;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin-right: 22rpx;
  32. image {
  33. width: 78rpx;
  34. height: 78rpx;
  35. }
  36. }
  37. .title {
  38. font-size: 22rpx;
  39. color: #9B9B9B;
  40. .name {
  41. font-size: 32rpx;
  42. color: #000;
  43. margin-bottom: 18rpx;
  44. }
  45. .grade {
  46. display: flex;
  47. .icon {
  48. margin-right: 84rpx;
  49. .icon-img {
  50. margin-right: 8rpx;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. &-right {
  57. color: #000000;
  58. }
  59. }
  60. }
  61. }