index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* nova-werun/pages/my/my-profile/index.wxss */
  2. .popup {
  3. height: 70vh;
  4. overflow-y: auto;
  5. }
  6. .popup .topTitle {
  7. position: fixed;
  8. left: 0rpx;
  9. z-index: 9;
  10. }
  11. .popup .topBox {
  12. border-radius: 40rpx 40rpx 0 0;
  13. background: white;
  14. width: 100vw;
  15. padding: 20rpx;
  16. border-bottom: 1rpx solid #cecece;
  17. text-align: center;
  18. font-weight: bold;
  19. }
  20. .popup .registerStartDate {
  21. padding: 20rpx;
  22. display: flex;
  23. align-items: center;
  24. }
  25. .popup .registerStartDate .title {
  26. width: 220rpx;
  27. font-size: 28rpx;
  28. }
  29. .popup .registerStartDate .title text {
  30. color: red;
  31. }
  32. .popup .registerStartDate .date {
  33. font-size: 28rpx;
  34. font-weight: bold;
  35. }
  36. .popup .registerStartTime {
  37. padding: 20rpx;
  38. }
  39. .popup .registerStartTime .title {
  40. width: 220rpx;
  41. font-size: 28rpx;
  42. }
  43. .popup .registerStartTime .title text {
  44. color: red;
  45. }
  46. .popup .registerStartTime .box {
  47. display: flex;
  48. margin: 20rpx;
  49. align-items: center;
  50. justify-content: space-between;
  51. padding: 20rpx;
  52. box-shadow: 1rpx 1rpx 10rpx #cccccc;
  53. border-radius: 20rpx;
  54. }
  55. .popup .registerStartTime .box .time .from {
  56. margin: 10rpx 0;
  57. font-size: 35rpx;
  58. font-weight: bold;
  59. }
  60. .popup .registerStartTime .box .time .from van-icon {
  61. font-size: 35rpx;
  62. }
  63. .popup .registerStartTime .box .time .to {
  64. font-size: 28rpx;
  65. }
  66. .popup .registerStartTime .box .time .to van-icon {
  67. font-size: 35rpx;
  68. }
  69. .popup .registerStartTime .box .btn {
  70. font-size: 30rpx;
  71. background: #4F9AF7;
  72. padding: 10rpx 20rpx;
  73. border-radius: 100rpx;
  74. color: white;
  75. }
  76. .popup .btn_btm {
  77. width: 100vw;
  78. background: white;
  79. position: fixed;
  80. bottom: 0rpx;
  81. z-index: 9;
  82. }
  83. .popup .btn_btm button {
  84. color: white;
  85. font-size: 30rpx;
  86. }
  87. .popup .revise {
  88. float: right;
  89. background: #4F9AF7;
  90. margin: 20rpx;
  91. }
  92. .submitbox {
  93. width: 100%;
  94. height: 80rpx;
  95. display: flex;
  96. justify-content: center;
  97. align-items: center;
  98. margin-top: 40rpx;
  99. }
  100. .submitbox .submit {
  101. width: 200rpx;
  102. height: 80rpx;
  103. font-size: 30rpx;
  104. color: white;
  105. background-color: #4F9AF7;
  106. display: flex;
  107. justify-content: center;
  108. align-items: center;
  109. border-radius: 40rpx;
  110. }
  111. .company {
  112. margin: 20rpx;
  113. }
  114. .company .name {
  115. font-size: 26rpx;
  116. margin: 20rpx 40rpx;
  117. padding: 20rpx;
  118. border-bottom: 1rpx solid #f3f3f3;
  119. }