entrepreneurshipGuidelines.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* 创业指引 */
  2. page {
  3. min-height: calc(100vh - 88rpx);
  4. background-color: #f2f2f2;
  5. }
  6. .entrepreneurship {
  7. font-family: PingFangSC-Regular, PingFang SC;
  8. &-list {
  9. padding: 30rpx;
  10. margin-top: 88rpx;
  11. &-item {
  12. background-color: #fff;
  13. padding: 31rpx 32rpx;
  14. margin-bottom: 20rpx;
  15. &-title {
  16. font-size: 36rpx;
  17. color: #000;
  18. margin-bottom: 14rpx;
  19. }
  20. &-content {
  21. color: #545454;
  22. font-size: 28rpx;
  23. margin-bottom: 14rpx;
  24. overflow : hidden;
  25. text-overflow: ellipsis;
  26. display: -webkit-box;
  27. -webkit-line-clamp: 2;
  28. -webkit-box-orient: vertical;
  29. }
  30. &-bottom {
  31. display: flex;
  32. justify-content: space-between;
  33. .right {
  34. color: #9F9F9F;
  35. font-size: 26rpx;
  36. }
  37. .left {
  38. font-size: 26rpx;
  39. }
  40. .waiting {
  41. color: #EF6622;
  42. }
  43. .had {
  44. color: #028DFE;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. .bottom-btn {
  51. position: fixed;
  52. bottom: 0;
  53. width: 100%;
  54. height: 166rpx;
  55. background-color: #fff;
  56. display: flex;
  57. justify-content: center;
  58. &-box {
  59. background-color: #709078;
  60. width: calc(100% - 60rpx);
  61. height: 80rpx;
  62. line-height: 80rpx;
  63. margin-top: 26rpx;
  64. text-align: center;
  65. font-size: 30rpx;
  66. color: #fff;
  67. }
  68. }