entrepreneurshipGuidelines.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. &-item {
  11. background-color: #fff;
  12. padding: 31rpx 32rpx;
  13. margin-bottom: 20rpx;
  14. &-title {
  15. font-size: 36rpx;
  16. color: #000;
  17. margin-bottom: 14rpx;
  18. }
  19. &-content {
  20. color: #545454;
  21. font-size: 28rpx;
  22. margin-bottom: 14rpx;
  23. overflow : hidden;
  24. text-overflow: ellipsis;
  25. display: -webkit-box;
  26. -webkit-line-clamp: 2;
  27. -webkit-box-orient: vertical;
  28. }
  29. &-bottom {
  30. display: flex;
  31. justify-content: space-between;
  32. .right {
  33. color: #9F9F9F;
  34. font-size: 26rpx;
  35. }
  36. .left {
  37. font-size: 26rpx;
  38. }
  39. .waiting {
  40. color: #EF6622;
  41. }
  42. .had {
  43. color: #028DFE;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. .bottom-btn {
  50. position: fixed;
  51. bottom: 0;
  52. width: 100%;
  53. height: 166rpx;
  54. background-color: #fff;
  55. display: flex;
  56. justify-content: center;
  57. &-box {
  58. background-color: #709078;
  59. width: calc(100% - 60rpx);
  60. height: 80rpx;
  61. line-height: 80rpx;
  62. margin-top: 26rpx;
  63. text-align: center;
  64. font-size: 30rpx;
  65. color: #fff;
  66. }
  67. }