index.acss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* pages/rlxf_index/rlxf_index.wxss */
  2. page {
  3. width: 100%;
  4. height: 100%;
  5. background-color: white;
  6. }
  7. .title-self {
  8. width: 100%;
  9. height: 200rpx;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. flex-direction: column;
  14. }
  15. .title-bottom {
  16. text-decoration: underline;
  17. margin-top: 300rpx;
  18. }
  19. .centerBox {
  20. width: 100%;
  21. /* height: 90vh; */
  22. }
  23. .inputText {
  24. margin-top: 10px;
  25. height: 60px;
  26. width: 163px;
  27. border-bottom: 1rpx solid white;
  28. }
  29. input[type="text"],
  30. input[type="idcard"] {
  31. text-align: center;
  32. color: white;
  33. }
  34. .border-red {
  35. border: 3rpx solid #e54d42 !important;
  36. /* color: #e54d42; */
  37. }
  38. .btn {
  39. /* margin-left: 0 !important; */
  40. height: 40px;
  41. width: 163px;
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. margin-top: 20px;
  46. font-size: 16px;
  47. background-color: #70a2ff;
  48. backdrop-filter: blur(20px);
  49. color: white;
  50. }
  51. .btn2 {
  52. height: 40px;
  53. width: 163px;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. margin-top: 50px;
  58. font-size: 16px;
  59. font-weight: 700;
  60. background-color: #3f37bb;
  61. color: white;
  62. }
  63. .width-self {
  64. width: 400rpx;
  65. }
  66. /* zyh 2021-9-22 修改 */
  67. .page {
  68. width: 750rpx;
  69. height: 100%;
  70. }
  71. .page > .bg {
  72. width: 100%;
  73. height: 100%;
  74. position: absolute;
  75. z-index: -999;
  76. }
  77. .page > .logo {
  78. width: 122px;
  79. height: 53px;
  80. left: 50%;
  81. transform: translateX(-50%);
  82. position: absolute;
  83. }
  84. .page > .logo2 {
  85. width: 300rpx;
  86. height: 72rpx;
  87. top: 10px;
  88. right: 16px;
  89. position: absolute;
  90. }
  91. .page > .title {
  92. width: 540rpx;
  93. height: 84rpx;
  94. top: 50px;
  95. left: 50%;
  96. transform: translateX(-50%);
  97. position: absolute;
  98. }
  99. .page > .bottom-title {
  100. width: 140px;
  101. height: 21px;
  102. bottom: 16px;
  103. left: 50%;
  104. transform: translateX(-50%);
  105. position: absolute;
  106. }
  107. .input-box {
  108. position: absolute;
  109. top: 35%;
  110. left: 50%;
  111. transform: translateX(-50%);
  112. width: 249px;
  113. /* height: 324px; */
  114. padding: 30rpx 0 100rpx 0;
  115. border-radius: 14px;
  116. background-color: rgba(193, 216, 231, 0.3);
  117. backdrop-filter: blur(20px);
  118. display: flex;
  119. justify-content: center;
  120. align-items: center;
  121. flex-direction: column;
  122. box-shadow: 3px 3px 6px 3px rgba(0, 0, 0, 0.3);
  123. }
  124. .input-box > view {
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. flex-direction: column;
  129. }
  130. .sub-title {
  131. font-size: 13px;
  132. display: block;
  133. margin-top: 10px;
  134. color: #f1f1f1;
  135. position: absolute;
  136. left: 50%;
  137. bottom: 10px;
  138. transform: translateX(-50%);
  139. }
  140. .text-warning {
  141. color: #ec5048;
  142. }