login.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* pages/login/login.wxss */
  2. page {
  3. background: #F5F5F5;
  4. }
  5. .layout {
  6. margin: 100rpx 80rpx 0;
  7. }
  8. image {
  9. width: 140rpx;
  10. height: 140rpx;
  11. }
  12. .title {
  13. display: block;
  14. font-size: 52rpx;
  15. margin-top: 14px;
  16. color: #323233;
  17. margin-bottom: 2px;
  18. }
  19. .hide {
  20. position: absolute !important;
  21. z-index: -111111111;
  22. left: -9999999px;
  23. top: -9999999px;
  24. }
  25. .desc {
  26. color: #646566;
  27. line-height: 40rpx;
  28. font-size: 28rpx;
  29. padding-bottom: 30rpx;
  30. }
  31. view:not(.layout) {
  32. border-bottom: 1px solid #E8E8E8;
  33. position: relative;
  34. }
  35. view:not(.layout) image {
  36. position: absolute;
  37. top: 50%;
  38. right: 16rpx;
  39. transform: translateY(-50%);
  40. width: 32rpx;
  41. height: 32rpx;
  42. }
  43. input {
  44. padding: 28rpx 16rpx;
  45. font-size: 28rpx;
  46. margin-top: 20rpx;
  47. color: #323233;
  48. width: 80%;
  49. }
  50. .btn {
  51. margin-top: 100rpx;
  52. width: 100%;
  53. height: 80rpx;
  54. line-height: 80rpx;
  55. text-align: center;
  56. font-size: 14px;
  57. color: #fff;
  58. background: rgba(38, 85, 155, 0.5);
  59. border-radius: 4px;
  60. }
  61. .success {
  62. background-color: #26559B;
  63. }