普兆健康管家前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
1.9 KiB

  1. .page__view {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: $uni-bg-color;
  5. position: relative;
  6. /deep/ .nav-bar__view {
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. }
  11. }
  12. .main {
  13. padding: calc(var(--status-bar-height) + 144rpx) 32rpx 224rpx 32rpx;
  14. }
  15. .card {
  16. padding: 32rpx;
  17. background: #FAFAFF;
  18. border: 2rpx solid #FFFFFF;
  19. border-radius: 32rpx;
  20. & + & {
  21. margin-top: 40rpx;
  22. }
  23. &-header {
  24. font-family: PingFang SC;
  25. font-weight: 500;
  26. font-size: 36rpx;
  27. line-height: 1.4;
  28. color: #252545;
  29. margin-bottom: 32rpx;
  30. }
  31. }
  32. .row {
  33. justify-content: space-between;
  34. font-family: PingFang SC;
  35. font-weight: 400;
  36. line-height: 1.4;
  37. column-gap: 24rpx;
  38. & + & {
  39. margin-top: 32rpx;
  40. }
  41. &-label {
  42. flex: none;
  43. font-size: 26rpx;
  44. color: #8B8B8B;
  45. }
  46. &-content {
  47. font-size: 32rpx;
  48. color: #181818;
  49. }
  50. }
  51. .form {
  52. padding: 8rpx 0 0 0;
  53. &-item {
  54. border-bottom: 2rpx solid #EEEEEE;
  55. &:last-child {
  56. border: none;
  57. }
  58. & + & {
  59. margin-top: 40rpx;
  60. }
  61. &-label {
  62. font-family: PingFang SC;
  63. font-weight: 400;
  64. font-size: 26rpx;
  65. line-height: 1.4;
  66. color: #181818;
  67. }
  68. &-content {
  69. margin-top: 14rpx;
  70. padding: 6rpx 0;
  71. .text {
  72. padding: 2rpx 0;
  73. font-family: PingFang SC;
  74. font-weight: 400;
  75. font-size: 32rpx;
  76. line-height: 1.4;
  77. &.placeholder {
  78. color: #C6C6C6;
  79. }
  80. }
  81. }
  82. }
  83. }
  84. .bottom {
  85. position: fixed;
  86. left: 0;
  87. bottom: 0;
  88. width: 100vw;
  89. height: 200rpx;
  90. padding: 24rpx 40rpx;
  91. background: #FFFFFF;
  92. box-sizing: border-box;
  93. .btn {
  94. width: 100%;
  95. padding: 16rpx 0;
  96. box-sizing: border-box;
  97. font-family: PingFang SC;
  98. font-weight: 500;
  99. font-size: 36rpx;
  100. line-height: 1;
  101. color: #FFFFFF;
  102. background-image: linear-gradient(to right, #4B348F, #845CFA);
  103. border-radius: 41rpx;
  104. }
  105. }