拓恒河湖长制全民护河平台WEB端
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.

133 lines
2.5KB

  1. /* pages/login/login.wxss */
  2. .login_box {
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: flex-start;
  8. align-items: center;
  9. }
  10. .logo_img {
  11. width: 180rpx;
  12. height: 180rpx;
  13. margin-top: 40rpx;
  14. }
  15. .login_main {
  16. width: 100%;
  17. margin-top: 40rpx;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: flex-start;
  21. align-items: flex-start;
  22. }
  23. .location_label {
  24. font-size: 34rpx;
  25. font-weight: bold;
  26. margin-left: 40rpx;
  27. }
  28. .select_container {
  29. width: 100%;
  30. height: 82rpx;
  31. background-color: #fff;
  32. display: flex;
  33. justify-content: space-around;
  34. align-items: center;
  35. }
  36. .form_item {
  37. width: 100%;
  38. padding: 0 60rpx;
  39. margin-top: 30rpx;
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: center;
  43. position: relative;
  44. font-size: 28rpx;
  45. color: #666666;
  46. }
  47. .value_box {
  48. width: 100%;
  49. min-height: 60rpx;
  50. display: flex;
  51. justify-content: space-between;
  52. align-items: center;
  53. border: 1rpx solid rgba(181, 181, 181, 1);
  54. border-radius: 4rpx;
  55. position: relative;
  56. color: #333333;
  57. font-size: 24rpx;
  58. }
  59. .text_box {
  60. width: 100%;
  61. margin-top: 20rpx;
  62. }
  63. .picker_box {
  64. width: 560rpx;
  65. padding: 0 30rpx 0 10rpx;
  66. font-size: 28rpx;
  67. color: #333333;
  68. display: flex;
  69. justify-content: space-between !important;
  70. align-items: center;
  71. position: relative;
  72. }
  73. .picker {
  74. width: 500rpx;
  75. margin-right: 30rpx;
  76. overflow: hidden;
  77. white-space: nowrap;
  78. text-overflow: ellipsis;
  79. }
  80. .select_img {
  81. width: 24rpx;
  82. height: 12rpx;
  83. position: absolute;
  84. right: 0rpx;
  85. top: 10rpx;
  86. }
  87. .picker_text {
  88. width: 100%;
  89. overflow: hidden;
  90. text-overflow: ellipsis;
  91. white-space: nowrap;
  92. }
  93. .tips{
  94. position: absolute;
  95. bottom: -40rpx;
  96. left: 40rpx;
  97. color: red;
  98. font-size: 24rpx;
  99. transform: translate(27rpx, -5rpx);
  100. display: none;
  101. }
  102. .form_item.warning .tips{
  103. display: block;
  104. }
  105. .login_btn {
  106. margin-top: 80rpx;
  107. color: #fff;
  108. font-weight: normal;
  109. border-radius: 39rpx;
  110. background-color: #2a82e4;
  111. }
  112. .footer {
  113. margin-top: 100rpx;
  114. width: 100%;
  115. padding: 60rpx;
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. }
  120. .enter_btn {
  121. width: 400rpx;
  122. height: 100rpx;
  123. border-radius: 50rpx;
  124. background-color: rgba(6, 138, 58, 0.78);
  125. color: #fff;
  126. line-height: 100rpx;
  127. text-align: center;
  128. }