微信

page.scss 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .mainPage {
  2. background: url("../../../common/icon/bg.jpg") no-repeat 0 0;
  3. background-size: 100% calc(100% + 90px);
  4. position: relative;
  5. input::-webkit-input-placeholder {
  6. color: rgba(168,182,200,1);
  7. }
  8. .mask{
  9. width: 100%;
  10. height: 100%;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. // background: rgba(0,0,0,0.3);
  15. position: relative;
  16. .logo{
  17. position: absolute;
  18. top: .5rem;
  19. left: .3rem;
  20. width: 1.8rem;
  21. }
  22. .select {
  23. position: absolute;
  24. bottom: 0;
  25. left: 0;
  26. width: 100%;
  27. }
  28. .box{
  29. width: 3.25rem;
  30. height: 3.5rem;
  31. background:rgba(255,255,255,1);
  32. border-radius:8px;
  33. padding: .2rem;
  34. box-sizing: border-box;
  35. .title{
  36. font-size: .16rem;
  37. font-weight: bold;
  38. text-align: center;
  39. }
  40. .mobile,.sms{
  41. width: 2.85rem;
  42. height: .5rem;
  43. background:rgba(255,255,255,1);
  44. border-radius:8px;
  45. border:1px solid rgba(168,182,200,0.2);
  46. display: flex;
  47. align-items: center;
  48. position: relative;
  49. margin-top: .2rem;
  50. i{
  51. color: rgba(168,182,200,1);
  52. padding: .14rem;
  53. font-size: .18rem;
  54. }
  55. input{
  56. flex: 1;
  57. height: 100%;
  58. }
  59. .sand{
  60. padding: 0 .1rem;
  61. height: .24rem;
  62. border-radius:20px;
  63. border:1px solid rgba(218,218,218,1);
  64. color: rgba(218,218,218,1);
  65. font-size: .12rem;
  66. text-align: center;
  67. line-height: .24rem;
  68. position: absolute;
  69. right: .1rem;
  70. &.color{
  71. border:1px solid #DADADA;
  72. color: #DADADA;
  73. }
  74. }
  75. }
  76. .recommend{
  77. width: 2.85rem;
  78. height: .4rem;
  79. padding: .15rem 0;
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-between;
  83. span{
  84. color: rgba(168,182,200,1);
  85. white-space: nowrap;
  86. }
  87. i{
  88. color: rgba(168,182,200,1);
  89. font-size: .12rem;
  90. }
  91. div{
  92. height: 100%;
  93. display: flex;
  94. flex: 1;
  95. margin-left: .1rem;
  96. align-items: center;
  97. border-radius:8px;
  98. border:1px solid rgba(168,182,200,0.2);
  99. padding: .1rem;
  100. box-sizing: border-box;
  101. span{
  102. width: 85%;
  103. overflow:hidden;
  104. text-overflow:ellipsis;
  105. white-space:nowrap;
  106. }
  107. }
  108. }
  109. .submit{
  110. margin-top: .2rem;
  111. width: 2.85rem;
  112. height: .48rem;
  113. border-radius:25px;
  114. border:1px solid rgba(255,66,28,1);
  115. text-align: center;
  116. line-height: .48rem;
  117. div{
  118. font-size: .15rem;
  119. color: rgba(255,66,28,1);
  120. }
  121. }
  122. }
  123. }
  124. }
  125. .slide-enter-active {
  126. transition: all .3s ease;
  127. }
  128. .slide-leave-active {
  129. transition: all .3s ease;
  130. }
  131. .slide-enter, .slide-leave-to
  132. /* .slide-fade-leave-active for below version 2.1.8 */ {
  133. transform: translateY(2.6rem);
  134. opacity: 0;
  135. }