index.wxss 2.4 KB

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