app.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /**app.wxss**/
  2. page,view,text,input,scroll-view,form{
  3. box-sizing: border-box;
  4. font-size: 28rpx;
  5. color: #333;
  6. }
  7. page{
  8. background: #EEEEEE;
  9. padding: 20rpx 30rpx 0;
  10. }
  11. .search{
  12. position: relative;
  13. }
  14. .search input{
  15. display: block;
  16. height: 64rpx;
  17. background: #fff;
  18. border-radius: 15rpx;
  19. width: 100%;
  20. padding: 0 24rpx;
  21. }
  22. .search image{
  23. width: 34rpx;
  24. position: absolute;
  25. right: 24rpx;
  26. top: 0;
  27. bottom: 0;
  28. margin: auto;
  29. z-index: 999;
  30. }
  31. .login{
  32. position: fixed;
  33. width: 100%;
  34. height: 100vh;
  35. z-index: 10;
  36. background: rgba(0, 0, 0, .5);
  37. left: 0;
  38. top: 0;
  39. }
  40. .login>view{
  41. width: 90%;
  42. background: #fff;
  43. border-radius: 4px;
  44. text-align: center;
  45. position: absolute;
  46. top: 0;
  47. bottom: 0;
  48. left: 0;
  49. right: 0;
  50. margin: auto;
  51. height: 400rpx;
  52. padding: 40rpx;
  53. }
  54. .login .xx{
  55. display: block;
  56. padding: 0px 20px 20px;
  57. }
  58. .login button{
  59. width: 100% !important;
  60. height: 80rpx;
  61. color: #fff;
  62. background-color: #3780CD;
  63. border-radius: 18rpx;
  64. padding: 0;
  65. line-height: 80rpx;
  66. }
  67. image{
  68. max-height: 100%;
  69. }
  70. .login image{
  71. width: 300rpx;
  72. max-height: 100rpx;
  73. }
  74. .xx{
  75. margin: 30rpx 0 40rpx;
  76. }
  77. .nowrap{
  78. text-overflow: ellipsis !important;
  79. overflow: hidden !important;
  80. white-space: nowrap !important;
  81. padding-right: 20rpx !important;
  82. }
  83. .fixed{
  84. position: fixed;
  85. top: 0;
  86. left: 0;
  87. height: 100vh;
  88. overflow: hidden;
  89. width: 100%;
  90. padding: 30rpx;
  91. }