project.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .head {
  2. width: 100vw;
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. height: 86rpx;
  7. line-height: 86rpx;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. font-size: 24rpx;
  11. font-family: PingFang SC-Regular, PingFang SC;
  12. color: #666666;
  13. .picker {
  14. display: flex;
  15. font-size: 28rpx;
  16. font-family: PingFang SC-Regular, PingFang SC;
  17. color: #333333;
  18. .icon-daoruxialajiantou {
  19. display: block;
  20. color: #999999;
  21. font-size: 16rpx;
  22. margin-left: 10rpx;
  23. transform: rotateX(180deg);
  24. }
  25. }
  26. }
  27. .project {
  28. position: relative;
  29. width: 100vw;
  30. height: 158rpx;
  31. background-color: #ffffff;
  32. box-sizing: border-box;
  33. padding: 20rpx 30rpx;
  34. border-bottom: 1px solid #ddd;
  35. >view {
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #999999;
  39. line-height: 36rpx;
  40. }
  41. .title {
  42. font-size: 28rpx;
  43. font-family: PingFang SC-Regular, PingFang SC;
  44. color: #000000;
  45. margin-bottom: 15rpx;
  46. width: 550rpx;
  47. }
  48. .iconfont {
  49. position: absolute;
  50. font-size: 32rpx;
  51. color: #999999;
  52. top: 20rpx;
  53. right: 30rpx;
  54. width: 80rpx;
  55. text-align: right;
  56. }
  57. }
  58. /* 目标 */
  59. .target {
  60. display: flex;
  61. width: 100vw;
  62. height: 124rpx;
  63. background-color: #ffffff;
  64. box-sizing: border-box;
  65. >view {
  66. width: 33.33%;
  67. .lable {
  68. font-size: 24rpx;
  69. font-family: PingFang SC-Regular, PingFang SC;
  70. color: #666666;
  71. height: 34rpx;
  72. line-height: 34rpx;
  73. text-align: center;
  74. margin-top: 20rpx;
  75. }
  76. .value {
  77. font-size: 28rpx;
  78. font-family: PingFang SC-Regular, PingFang SC;
  79. color: #333333;
  80. height: 40rpx;
  81. line-height: 40rpx;
  82. text-align: center;
  83. margin-top: 10rpx;
  84. }
  85. }
  86. }
  87. .footer {
  88. position: fixed;
  89. width: 100vw;
  90. height: 130rpx;
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. bottom: 0;
  95. background-color: #fff;
  96. z-index: 9;
  97. .but {
  98. width: 500rpx;
  99. height: 90rpx;
  100. background: #3874F6;
  101. border-radius: 100rpx;
  102. font-size: 28rpx;
  103. font-family: PingFang SC-Bold, PingFang SC;
  104. font-weight: bold;
  105. color: #FFFFFF;
  106. }
  107. }