schools.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. border-radius: 10rpx;
  33. image {
  34. width: 78rpx;
  35. height: 78rpx;
  36. }
  37. }
  38. .title {
  39. font-size: 24rpx;
  40. color: #9B9B9B;
  41. .name {
  42. font-size: 32rpx;
  43. color: #000;
  44. margin-bottom: 18rpx;
  45. }
  46. .grade {
  47. display: flex;
  48. .icon {
  49. margin-right: 84rpx;
  50. .icon-img {
  51. margin-right: 8rpx;
  52. }
  53. }
  54. }
  55. }
  56. }
  57. &-right {
  58. color: #000000;
  59. }
  60. }
  61. }
  62. }