Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

90 Zeilen
1.8KB

  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. .login_head {
  11. box-sizing: border-box;
  12. width: 100%;
  13. height: 350rpx;
  14. padding-left: 50rpx;
  15. margin-bottom: 70rpx;
  16. background: linear-gradient(90deg, rgba(115, 164, 255, 1) 0%, rgba(67, 160, 255, 1) 100%);
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: flex-start;
  21. color: #fff;
  22. font-size: 48rpx;
  23. }
  24. .form_box {
  25. display: flex;
  26. flex-direction: column;
  27. justify-content: flex-start;
  28. align-items: flex-end;
  29. }
  30. .login_box .form-item{
  31. padding-bottom:50rpx;
  32. position: relative;
  33. }
  34. .login_box .form-item input{
  35. width: 600rpx;
  36. height: 80rpx;
  37. padding-left: 20px;
  38. border-radius: 39rpx;
  39. background-color: rgba(218, 204, 204, 0.2);
  40. }
  41. .login_box .tips{
  42. position: absolute;
  43. bottom: 0;
  44. left:0;
  45. color: red;
  46. font-size:26rpx;
  47. transform: translate(20rpx,-10rpx);
  48. display: none;
  49. }
  50. .login_box .form-item.warning .tips{
  51. display: block;
  52. }
  53. .check_lable {
  54. box-sizing: border-box;
  55. height: 60rpx;
  56. display: flex;
  57. justify-content: flex-end;
  58. align-items: center;
  59. color: #666666;
  60. }
  61. .check_contanier {
  62. width: 100%;
  63. display: flex;
  64. justify-content: flex-start;
  65. align-items: center;
  66. }
  67. .check_box {
  68. width: 30rpx;
  69. height: 30rpx;
  70. margin-right: 20rpx;
  71. margin-bottom: 5rpx;
  72. }
  73. radio-group {
  74. width: 200rpx;
  75. align-self: flex-start !important;
  76. }
  77. checkbox .wx-checkbox-input {
  78. width: 30rpx;
  79. height: 30rpx;
  80. margin-bottom: 10rpx;
  81. }
  82. .login_btn {
  83. margin-top: 80rpx;
  84. color: #fff;
  85. font-weight: normal;
  86. border-radius: 39rpx;
  87. background: linear-gradient(90deg, rgba(115, 164, 255, 1) 0%, rgba(67, 160, 255, 1) 100%);
  88. }