鸿宇研学生前端代码
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.

161 lines
2.8 KiB

  1. .page__view {
  2. width: 100vw;
  3. min-height: 100vh;
  4. position: relative;
  5. /deep/ .nav-bar__view {
  6. position: fixed;
  7. top: 0;
  8. left: 0;
  9. }
  10. }
  11. .main {
  12. padding: calc(var(--status-bar-height) + 144rpx) 32rpx 326rpx 32rpx;
  13. }
  14. .card {
  15. margin-top: 24rpx;
  16. padding: 32rpx;
  17. font-family: PingFang SC;
  18. font-weight: 400;
  19. line-height: 1.4;
  20. background: #FFFFFF;
  21. border: 2rpx solid #FFFFFF;
  22. border-radius: 32rpx;
  23. &-header {
  24. font-family: PingFang SC;
  25. font-weight: 500;
  26. font-size: 36rpx;
  27. line-height: 1.4;
  28. color: #252545;
  29. }
  30. }
  31. .form {
  32. &-item {
  33. margin-top: 16rpx;
  34. border-bottom: 2rpx solid #EEEEEE;
  35. &-label {
  36. font-family: PingFang SC;
  37. font-weight: 400;
  38. font-size: 26rpx;
  39. line-height: 1.4;
  40. color: #181818;
  41. .icon {
  42. margin-right: 8rpx;
  43. width: 16rpx;
  44. height: auto;
  45. }
  46. }
  47. &-content {
  48. .row {
  49. justify-content: space-between;
  50. .text {
  51. padding: 2rpx 0;
  52. font-family: PingFang SC;
  53. font-weight: 400;
  54. font-size: 32rpx;
  55. line-height: 1.4;
  56. &.placeholder {
  57. color: #C6C6C6;
  58. }
  59. }
  60. }
  61. }
  62. }
  63. }
  64. .notice {
  65. margin-top: 40rpx;
  66. font-family: PingFang SC;
  67. font-weight: 400;
  68. &-header {
  69. font-size: 28rpx;
  70. line-height: 1.4;
  71. color: #393939;
  72. }
  73. &-content {
  74. margin-top: 24rpx;
  75. font-size: 24rpx;
  76. line-height: 1.4;
  77. color: #BABABA;
  78. }
  79. }
  80. .bottom {
  81. position: fixed;
  82. left: 0;
  83. bottom: 0;
  84. width: 100vw;
  85. // height: 270rpx;
  86. background: #FFFFFF;
  87. box-sizing: border-box;
  88. .agreement {
  89. display: flex;
  90. align-items: center;
  91. padding: 16rpx 40rpx;
  92. background: #E9F8FF;
  93. box-sizing: border-box;
  94. /deep/ .uv-checkbox-group {
  95. flex: none;
  96. }
  97. .desc {
  98. flex: 1;
  99. font-family: PingFang SC;
  100. font-size: 24rpx;
  101. font-weight: 400;
  102. line-height: 40rpx;
  103. color: #8B8B8B;
  104. }
  105. .highlight {
  106. color: $uni-color;
  107. }
  108. }
  109. .bar {
  110. padding: 24rpx 40rpx;
  111. padding-bottom: calc(env(safe-area-inset-bottom) + 24rpx);
  112. box-sizing: border-box;
  113. column-gap: 32rpx;
  114. .col {
  115. flex: 1;
  116. }
  117. .btn {
  118. width: 100%;
  119. // padding: 14rpx 74rpx;
  120. padding: 14rpx 0;
  121. font-family: PingFang SC;
  122. font-weight: 500;
  123. font-size: 36rpx;
  124. line-height: 1;
  125. color: #252545;
  126. border: 2rpx solid #252545;
  127. border-radius: 41rpx;
  128. &-primary {
  129. color: #FFFFFF;
  130. background: linear-gradient(to right, #21FEEC, #019AF9);
  131. border-color: #00A9FF;
  132. }
  133. }
  134. }
  135. }