businessDetails.scss 4.8 KB

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