login.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* pages/login/login.wxss */
  2. .btn{
  3. height: 200rpx;
  4. border:5rpx solid black
  5. }
  6. .container {
  7. height: 100%;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: space-between;
  12. padding: 150rpx 0 100rpx 0;
  13. box-sizing: border-box;
  14. }
  15. .userinfo {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. color: #aaa;
  20. }
  21. .userinfo-avatar {
  22. overflow: hidden;
  23. width: 128rpx;
  24. height: 128rpx;
  25. margin: 20rpx;
  26. border-radius: 50%;
  27. }
  28. .van-cell{
  29. background-color: transparent !important;
  30. height: 120rpx;
  31. align-items: center;
  32. }
  33. .van-cell__title{
  34. color: white;
  35. }
  36. .usermotto {
  37. margin-top: 200px;
  38. }
  39. .bdy{
  40. position: absolute;
  41. top: 450rpx;
  42. width: 100%;
  43. }
  44. .border{
  45. height: 100vh;
  46. width: 100%;
  47. background-color: black;
  48. }
  49. .btn{
  50. position: absolute;
  51. top: 70%;
  52. left: 50%;
  53. transform: translate(-50%,0);
  54. background-color: red;
  55. line-height: 90rpx;
  56. height: 100rpx;
  57. width: 300rpx;
  58. }
  59. .container{
  60. background-image:url('https://zh.qingyaokeji.com/logo.png');
  61. width: 220rpx;
  62. height: 220rpx;
  63. background-repeat: no-repeat;
  64. position: absolute;
  65. top: 12%;
  66. left: 50%;
  67. transform: translate(-50%,0);
  68. background-size: contain;
  69. z-index: 2;
  70. }
  71. .van-field__input{
  72. color: white !important;
  73. }