signup.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* miniprogram/signup/signup.wxss */
  2. .viewMask {
  3. width: 100vw;
  4. height: 100vh;
  5. position: fixed;
  6. top: 0rpx;
  7. left: 0rpx;
  8. background-color: rgba(0, 0, 0, 0.4);
  9. z-index: 99999;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. .viewBlock {
  15. width: 80%;
  16. height: 500rpx;
  17. background-color: #fff;
  18. border-radius: 20rpx;
  19. position: relative;
  20. box-sizing: border-box;
  21. overflow: hidden;
  22. padding: 80rpx 0rpx;
  23. }
  24. .viewTitle {
  25. width: 100%;
  26. height: 80rpx;
  27. text-align: center;
  28. line-height: 80rpx;
  29. font-size: 30rpx;
  30. color: #333333;
  31. font-weight: 600;
  32. border-bottom: 1rpx solid #f2f2f2;
  33. position: absolute;
  34. top: 0rpx;
  35. left: 0rpx;
  36. }
  37. .viewButton {
  38. width: 100%;
  39. height: 80rpx;
  40. text-align: center;
  41. line-height: 80rpx;
  42. position: absolute;
  43. bottom: 0rpx;
  44. left: 0rpx;
  45. font-size: 30rpx;
  46. background-color: #F96400;
  47. border-radius: 0rpx;
  48. color: #fff;
  49. }
  50. .viewContent {
  51. width: 100%;
  52. height: 100%;
  53. box-sizing: border-box;
  54. padding: 20rpx;
  55. }
  56. .viewInput {
  57. width: 100%;
  58. height: 80rpx;
  59. display: flex;
  60. align-items: center;
  61. border: 2rpx solid #f2f2f2;
  62. border-radius: 10rpx;
  63. box-sizing: border-box;
  64. padding: 0rpx 20rpx;
  65. margin-bottom: 20rpx;
  66. }
  67. .viewInput > view {
  68. font-size: 28rpx;
  69. margin-right: 20rpx;
  70. color: #999999;
  71. }
  72. .viewInput > view > text {
  73. color: red;
  74. }
  75. .viewInput > input {
  76. flex: 1;
  77. font-size: 28rpx;
  78. }