schools.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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: 112rpx;
  26. height: 112rpx;
  27. border: solid 1px #E0E0E0;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. margin-right: 22rpx;
  32. border-radius: 10rpx;
  33. image {
  34. width: 112rpx;
  35. height: 122rpx;
  36. }
  37. }
  38. .title {
  39. font-size: 26rpx;
  40. color: #6f6f6f;
  41. .name {
  42. font-size: 32rpx;
  43. color: #000;
  44. margin-bottom: 18rpx;
  45. font-weight: 600;
  46. }
  47. .grade {
  48. display: flex;
  49. .icon {
  50. margin-right: 84rpx;
  51. .icon-img {
  52. margin-right: 8rpx;
  53. }
  54. }
  55. }
  56. }
  57. }
  58. &-right {
  59. color: #000000;
  60. }
  61. }
  62. }
  63. }