businessDetails.scss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /* 企业详情 */
  2. .business-details {
  3. position: relative;
  4. font-family: 'PingFangSC-Regular, PingFang SC';
  5. background-color: #f2f2f2;
  6. min-height: calc(100vh - 44px);
  7. padding-bottom: 100rpx;
  8. /* 背景 */
  9. &-bg {
  10. // position: relative;
  11. height: 606rpx;
  12. background-image: url(../../static/img/details-bg.png);
  13. background-repeat: no-repeat;
  14. background-position: center center;
  15. background-size: cover;
  16. margin-top: -88rpx;
  17. &-1 {
  18. height: 400rpx;
  19. background: linear-gradient(#456553, #3D5D4C);
  20. }
  21. &-2 {
  22. width: 100%;
  23. height: 200rpx;
  24. border-radius: 0 0 50% 50%;
  25. background-color: #3D5D4C;
  26. }
  27. image {
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. width: 520rpx;
  32. height: 520rpx;
  33. }
  34. }
  35. /* 内容 */
  36. &-content {
  37. width: 100%;
  38. margin-top: -520rpx;
  39. text-align: center;
  40. &-logo {
  41. background-color: rgba(255, 255, 255, 0.3);
  42. width: 156rpx;
  43. height: 156rpx;
  44. border-radius: 50%;
  45. margin: 45rpx auto 25rpx;
  46. display: flex;
  47. align-items: center;
  48. justify-content: center;
  49. image {
  50. width: 139rpx;
  51. height: 139rpx;
  52. border-radius: 50%;
  53. background-color: rgba($color: #fff, $alpha: 0.8);
  54. }
  55. }
  56. &-name {
  57. font-family: 'PingFangSC-Heavy, PingFang SC';
  58. font-size: 32rpx;
  59. font-weight: bold;
  60. color: #fff;
  61. }
  62. &-evaluate {
  63. width: calc(100% - 60rpx);
  64. height: 64rpx;
  65. line-height: 64rpx;
  66. margin: 36rpx auto 0;
  67. background-color: rgba($color: #fff, $alpha: 0.8);
  68. border-radius: 32rpx;
  69. padding: 0 31rpx;
  70. display: flex;
  71. justify-content: space-between;
  72. .left {
  73. display: flex;
  74. align-items: center;
  75. .evaluate {
  76. font-size: 26rpx;
  77. color: #EF651F;
  78. margin-right: 19rpx;
  79. }
  80. .describe {
  81. font-size: 24rpx;
  82. color: #000;
  83. font-weight: 400;
  84. margin-right: 14rpx;
  85. }
  86. .grade {
  87. color: #EF651F;
  88. margin-left: 14rpx;
  89. font-weight: 400;
  90. }
  91. }
  92. .right {
  93. color: #666;
  94. font-size: 24rpx;
  95. .icon {
  96. margin-left: 9rpx;
  97. }
  98. }
  99. }
  100. /* 公司概况 */
  101. &-survey {
  102. width: calc(100% - 60rpx);
  103. margin: 63rpx auto 0;
  104. background-color: #fff;
  105. border-radius: 10rpx;
  106. padding: 28rpx 33rpx;
  107. text-align: left;
  108. .title {
  109. color: #000;
  110. font-size: 36rpx;
  111. font-weight: 400;
  112. margin-bottom: 10rpx;
  113. }
  114. .item {
  115. color: #545454;
  116. font-size: 28rpx;
  117. line-height: 48rpx;
  118. .address {
  119. display: flex;
  120. justify-content: space-between;
  121. image {
  122. width: 20rpx;
  123. height: 26rpx;
  124. vertical-align: middle;
  125. margin-right: 10rpx;
  126. }
  127. view:last-child {
  128. color: #058fff;
  129. }
  130. }
  131. }
  132. }
  133. /* 公司介绍 */
  134. &-introduce {
  135. width: calc(100% - 60rpx);
  136. margin: 20rpx auto 0;
  137. background-color: #fff;
  138. border-radius: 10rpx;
  139. padding: 28rpx 33rpx;
  140. text-align: left;
  141. .title {
  142. color: #000;
  143. font-size: 36rpx;
  144. font-weight: 400;
  145. margin-bottom: 10rpx;
  146. }
  147. .content {
  148. font-size: 28rpx;
  149. color: #545454;
  150. line-height: 40rpx;
  151. }
  152. }
  153. /* 公司相册 */
  154. &-album {
  155. width: calc(100% - 60rpx);
  156. margin: 20rpx auto 0;
  157. background-color: #fff;
  158. border-radius: 10rpx;
  159. padding: 28rpx 33rpx;
  160. text-align: left;
  161. .title {
  162. color: #000;
  163. font-size: 36rpx;
  164. font-weight: 400;
  165. margin-bottom: 20rpx;
  166. }
  167. .pic-list {
  168. // display: flex;
  169. // justify-content: space-between;
  170. // flex-wrap: nowrap;
  171. &-item {
  172. width: calc(50% - 8rpx);
  173. margin-bottom: 8rpx;
  174. display: inline-block;
  175. margin-right: 10rpx;
  176. .image {
  177. width: 100%;
  178. height: 206rpx;
  179. border-radius: 5rpx;
  180. }
  181. }
  182. }
  183. }
  184. /* 公司职位 */
  185. &-position {
  186. width: calc(100% - 60rpx);
  187. margin: 20rpx auto 0;
  188. background-color: #fff;
  189. border-radius: 10rpx;
  190. padding: 28rpx 33rpx;
  191. text-align: left;
  192. .title {
  193. color: #000;
  194. font-size: 36rpx;
  195. font-weight: 400;
  196. margin-bottom: 16rpx;
  197. border-bottom: solid 1px #9F9F9F;
  198. padding-bottom: 20rpx;
  199. }
  200. .position-list {
  201. &-item {
  202. display: flex;
  203. justify-content: space-between;
  204. padding: 32rpx 0;
  205. margin-bottom: 8rpx;
  206. .left {
  207. display: flex;
  208. .logo {
  209. width: 112rpx;
  210. height: 112rpx;
  211. line-height: 112rpx;
  212. text-align: center;
  213. margin-right: 20rpx;
  214. border: solid 1px #f2f2f2;
  215. border-radius: 10rpx;
  216. image {
  217. width: 98%;
  218. height: 98%;
  219. }
  220. }
  221. .info {
  222. view {
  223. font-size: 28rpx;
  224. color: #9B9B9B;
  225. line-height: 40rpx;
  226. &:first-child {
  227. color: #000;
  228. font-size: 30rpx;
  229. }
  230. }
  231. }
  232. }
  233. .right {
  234. display: flex;
  235. flex-direction: column;
  236. view {
  237. font-size: 26rpx;
  238. text-align: right;
  239. color: #BCBCBC;
  240. &:first-child {
  241. flex: 1;
  242. color: #EE5A10;
  243. font-weight: 600;
  244. }
  245. }
  246. }
  247. }
  248. }
  249. }
  250. }
  251. }