login.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /* pages/login/login.wxss */
  2. .login_background{
  3. width: 100%;
  4. min-height: 100vh;
  5. position: absolute;
  6. top: 0px;
  7. left: 0px;
  8. z-index: 1px;
  9. }
  10. .login{
  11. width: 100%;
  12. min-height: 100vh;
  13. z-index: 9;
  14. position: absolute;
  15. }
  16. .login_logo{
  17. width: 100%;
  18. height: 500rpx;
  19. text-align: center;
  20. }
  21. .login_logo image{
  22. width:460rpx;
  23. height:85rpx;
  24. margin:120rpx 0rpx 0rpx 0rpx;
  25. }
  26. .login_logo text{
  27. font-size:26rpx;
  28. letter-spacing:3rpx;
  29. color:#63576c;
  30. }
  31. .input{
  32. width: 70%;
  33. margin: 0 auto;
  34. }
  35. .input_1{
  36. margin:30rpx 0rpx;
  37. position:relative;
  38. }
  39. .input_1 image{
  40. width:45rpx;
  41. height:45rpx;
  42. padding: 10rpx 20rpx 10rpx 10rpx;
  43. position: relative;
  44. top: 12rpx;
  45. left: 20rpx;
  46. z-index:9;
  47. }
  48. .input_1 input{
  49. width:85%;
  50. display:block;
  51. float:right;
  52. background:#fff;
  53. border-radius:50rpx;
  54. height:80rpx;
  55. line-height:80rpx;
  56. padding:0rpx 0rpx 0rpx 80rpx;
  57. position: absolute;
  58. top: 0rpx;
  59. border: 0.5rpx solid #867d91;
  60. background: #F4F4F7;
  61. font-size: 34rpx;
  62. }
  63. .input button{
  64. background: linear-gradient(to right, #5a4e63 , #867d91);
  65. border: none;
  66. color: #fff;
  67. border-radius: 50rpx;
  68. position: relative;
  69. top: 30rpx;
  70. height:80rpx;
  71. line-height: 80rpx;
  72. }