Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

111 lines
1.9KB

  1. /* pages/login/login.wxss */
  2. .bg {
  3. position: absolute;
  4. width: 100%;
  5. height: 100%;
  6. z-index: -1;
  7. bottom: 0;
  8. }
  9. .logo {
  10. width: 445rpx;
  11. height: 486rpx;
  12. }
  13. .fromBox {
  14. width: 583rpx;
  15. margin: 56rpx auto 0 auto;
  16. height: 300rpx;
  17. }
  18. .item {
  19. position: relative;
  20. height: 95rpx;
  21. line-height: 95rpx;
  22. margin-bottom: 19rpx;
  23. font-size: 28rpx;
  24. box-sizing: border-box;
  25. color: #fff;
  26. border-bottom: 2rpx solid #fff;
  27. }
  28. .item>input {
  29. position: absolute;
  30. height: 100%;
  31. top: 1rpx;
  32. left: 70rpx;
  33. right: 0;
  34. }
  35. .btn {
  36. width: 600rpx;
  37. height: 98rpx;
  38. line-height: 98rpx;
  39. border-radius: 49rpx;
  40. color: #fff;
  41. font-size: 36rpx;
  42. text-align: center;
  43. margin-top: 111rpx;
  44. background: linear-gradient(-72deg, rgba(235, 97, 0, 1), rgba(255, 137, 42, 1));
  45. }
  46. .btn.select {
  47. background: #ccc;
  48. }
  49. .fromBox .tipBox{
  50. margin-top: 15rpx;
  51. }
  52. .fromBox .tipBox>.title{
  53. color: #cccccc;
  54. text-align: center;
  55. font-size: 30rpx;
  56. margin-bottom: 15rpx;
  57. }
  58. .fromBox .tipBox>.content{
  59. color: #cccccc;
  60. text-align: center;
  61. font-size: 25rpx;
  62. line-height: 45rpx;
  63. }
  64. .mask {
  65. position: absolute;
  66. left: 0;
  67. top: 0;
  68. width: 100%;
  69. height: 100%;
  70. background-color: rgba(0, 0, 0, 0.7);
  71. }
  72. .mask>.tipBox {
  73. position: absolute;
  74. left: 50%;
  75. top: 50%;
  76. transform: translate(-50%, -50%);
  77. width: 600rpx;
  78. height: 550rpx;
  79. background-color: #fff;
  80. border-radius: 15rpx;
  81. }
  82. .mask>.tipBox>.header {
  83. width: 100%;
  84. height: 80rpx;
  85. text-align: center;
  86. line-height: 80rpx;
  87. border-bottom: 2rpx solid #cccccc;
  88. }
  89. .mask>.tipBox>.contentTxt{
  90. line-height: 75rpx;
  91. margin: 30rpx 40rpx 0 40rpx;
  92. }
  93. .mask>.tipBox>button{
  94. position: absolute;
  95. width: 100%;
  96. bottom: 0rpx;
  97. color: #fffefe;
  98. font-size: 36rpx;
  99. background: linear-gradient(-72deg, rgba(235, 97, 0, 1), rgba(255, 137, 42, 1));
  100. }