schoolDetails.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /* 学校详情 */
  2. .school-details {
  3. min-height: calc(100vh - 88rpx);
  4. background-color: #f2f2f2;
  5. padding-bottom: 50rpx;
  6. &-bg {
  7. height: 606rpx;
  8. background-image: url(../../static/img/details-bg.png);
  9. background-repeat: no-repeat;
  10. background-position: center center;
  11. background-size: cover;
  12. margin-top: -88rpx;
  13. }
  14. &-content {
  15. margin: -520rpx auto 0;
  16. text-align: center;
  17. &-logo {
  18. background-color: rgba(255, 255, 255, 0.3);
  19. width: 156rpx;
  20. height: 156rpx;
  21. border-radius: 50%;
  22. margin: 45rpx auto 25rpx;
  23. display: flex;
  24. align-items: center;
  25. justify-content: center;
  26. image {
  27. width: 139rpx;
  28. height: 139rpx;
  29. border-radius: 50%;
  30. background-color: rgba($color: #fff, $alpha: 0.8);
  31. }
  32. }
  33. &-name {
  34. font-family: 'PingFangSC-Heavy, PingFang SC';
  35. font-size: 32rpx;
  36. font-weight: bold;
  37. color: #fff;
  38. }
  39. &-evaluate {
  40. width: calc(100% - 60rpx);
  41. height: 64rpx;
  42. line-height: 64rpx;
  43. margin: 36rpx auto 0;
  44. background-color: rgba($color: #fff, $alpha: 0.8);
  45. border-radius: 32rpx;
  46. padding: 0 31rpx;
  47. display: flex;
  48. justify-content: space-between;
  49. .left {
  50. display: flex;
  51. align-items: center;
  52. .evaluate {
  53. font-size: 26rpx;
  54. color: #EF651F;
  55. margin-right: 19rpx;
  56. }
  57. .describe {
  58. font-size: 24rpx;
  59. color: #000;
  60. font-weight: 400;
  61. margin-right: 14rpx;
  62. }
  63. .grade {
  64. color: #EF651F;
  65. margin-left: 14rpx;
  66. font-weight: 400;
  67. }
  68. }
  69. .right {
  70. color: #666;
  71. font-size: 24rpx;
  72. .icon {
  73. margin-left: 9rpx;
  74. }
  75. }
  76. }
  77. /* 学校信息 */
  78. &-survey {
  79. width: calc(100% - 60rpx);
  80. margin: 63rpx auto 0;
  81. background-color: #fff;
  82. border-radius: 10rpx;
  83. padding: 28rpx 33rpx;
  84. text-align: left;
  85. .title {
  86. color: #000;
  87. font-size: 36rpx;
  88. font-weight: 400;
  89. margin-bottom: 10rpx;
  90. }
  91. .item {
  92. color: #545454;
  93. font-size: 28rpx;
  94. line-height: 48rpx;
  95. .home {
  96. display: flex;
  97. justify-content: space-between;
  98. text {
  99. color: #EF651F;
  100. }
  101. }
  102. .address {
  103. display: flex;
  104. justify-content: space-between;
  105. image {
  106. width: 20rpx;
  107. height: 26rpx;
  108. vertical-align: middle;
  109. margin-right: 10rpx;
  110. }
  111. view:last-child {
  112. color: #058fff;
  113. margin-left: 60rpx;
  114. }
  115. }
  116. }
  117. }
  118. /* 公司介绍 */
  119. &-introduce {
  120. width: calc(100% - 60rpx);
  121. margin: 20rpx auto 0;
  122. background-color: #fff;
  123. border-radius: 10rpx;
  124. padding: 28rpx 33rpx;
  125. text-align: left;
  126. .title {
  127. color: #000;
  128. font-size: 36rpx;
  129. font-weight: 400;
  130. margin-bottom: 10rpx;
  131. }
  132. .content {
  133. font-size: 28rpx;
  134. color: #545454;
  135. line-height: 40rpx;
  136. }
  137. }
  138. /* 公司相册 */
  139. &-album {
  140. width: calc(100% - 60rpx);
  141. margin: 20rpx auto 0;
  142. background-color: #fff;
  143. border-radius: 10rpx;
  144. padding: 28rpx 33rpx;
  145. text-align: left;
  146. .title {
  147. color: #000;
  148. font-size: 36rpx;
  149. font-weight: 400;
  150. margin-bottom: 20rpx;
  151. }
  152. .pic-list {
  153. display: flex;
  154. justify-content: space-between;
  155. flex-wrap: wrap;
  156. &-item {
  157. width: calc(50% - 8rpx);
  158. margin-bottom: 8rpx;
  159. image {
  160. width: 100%;
  161. height: 206rpx;
  162. border-radius: 5rpx;
  163. }
  164. }
  165. }
  166. }
  167. /* 特色专业 */
  168. &-major {
  169. width: calc(100% - 60rpx);
  170. margin: 20rpx auto 0;
  171. background-color: #fff;
  172. border-radius: 10rpx;
  173. padding: 28rpx 33rpx;
  174. text-align: left;
  175. .title {
  176. color: #000;
  177. font-size: 36rpx;
  178. font-weight: 400;
  179. margin-bottom: 20rpx;
  180. }
  181. .major-list {
  182. &-item {
  183. display: flex;
  184. justify-content: space-between;
  185. border-bottom: dashed 1px #DBDBDB;
  186. padding: 20rpx 0;
  187. color: #545454;
  188. font-size: 28rpx;
  189. font-family: 'PingFangSC-Regular, PingFang SC';
  190. }
  191. }
  192. }
  193. }
  194. }