login.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. .flex-col {
  2. display: flex;
  3. flex-direction: column;
  4. }
  5. .flex-row {
  6. display: flex;
  7. flex-direction: row;
  8. }
  9. .flex-row-reverse {
  10. display: flex;
  11. flex-direction: row-reverse;
  12. }
  13. .bord{
  14. border: 1px solid red;
  15. }
  16. .justify-start {
  17. display: flex;
  18. justify-content: flex-start;
  19. }
  20. .justify-center {
  21. display: flex;
  22. justify-content: center;
  23. }
  24. .justify-end {
  25. display: flex;
  26. justify-content: flex-end;
  27. }
  28. .justify-evenly {
  29. display: flex;
  30. justify-content: space-evenly;
  31. }
  32. .justify-around {
  33. display: flex;
  34. justify-content: space-around;
  35. }
  36. .justify-between {
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .align-start {
  41. display: flex;
  42. align-items: flex-start;
  43. }
  44. .align-center {
  45. display: flex;
  46. align-items: center;
  47. }
  48. .align-end {
  49. display: flex;
  50. align-items: flex-end;
  51. }
  52. .sticky {
  53. display: flex;
  54. position: -webkit-sticky;
  55. position: sticky;
  56. top: 0rpx;
  57. z-index: 99;
  58. }
  59. .bord{
  60. border: 1px solid red;
  61. }
  62. .page{
  63. padding: 0 60rpx;
  64. }
  65. .title{
  66. height: 152rpx;
  67. font-size: 48rpx;
  68. font-family: PingFangSC-Semibold, PingFang SC;
  69. font-weight: 600;
  70. color: #333333;
  71. line-height: 76rpx;
  72. }
  73. .h-logo{
  74. margin-top: 40rpx;
  75. }
  76. .logo-img{
  77. width: 320rpx;
  78. height: 244rpx;
  79. }
  80. .login-btn{
  81. width: 638rpx;
  82. height: 84rpx;
  83. background: #FFE05C;
  84. border-radius: 42rpx;
  85. margin-top: 160rpx;
  86. }
  87. .weixinLogin{
  88. font-size: 28rpx;
  89. font-family: PingFangSC-Regular, PingFang SC;
  90. font-weight: 400;
  91. color: #333333;
  92. line-height: 84rpx;
  93. margin-left: 16rpx;
  94. }
  95. .login-form{
  96. margin-top: 40rpx;
  97. font-size: 28rpx;
  98. font-family: PingFangSC-Regular, PingFang SC;
  99. font-weight: 400;
  100. color: #999999;
  101. line-height: 44rpx;
  102. }
  103. .o{
  104. width: 24rpx;
  105. height: 24rpx;
  106. border: 1px solid #999999;
  107. border-radius: 20rpx;
  108. margin-top: 8rpx;
  109. }
  110. .text1{
  111. margin-left: 10rpx;
  112. }
  113. .login-form1{
  114. width: 595rpx;
  115. font-size: 28rpx;
  116. font-family: PingFangSC-Regular, PingFang SC;
  117. font-weight: 400;
  118. color: #999999;
  119. line-height: 35rpx;
  120. }
  121. .bottom{
  122. margin-top: 120rpx;
  123. }