app.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. }
  30. .login{
  31. position: fixed;
  32. width: 100%;
  33. height: 100vh;
  34. z-index: 10;
  35. background: rgba(0, 0, 0, .5);
  36. left: 0;
  37. top: 0;
  38. }
  39. .login>view{
  40. width: 90%;
  41. background: #fff;
  42. border-radius: 4px;
  43. text-align: center;
  44. position: absolute;
  45. top: 0;
  46. bottom: 0;
  47. left: 0;
  48. right: 0;
  49. margin: auto;
  50. height: 400rpx;
  51. padding: 40rpx;
  52. }
  53. .login .xx{
  54. display: block;
  55. padding: 0px 20px 20px;
  56. }
  57. .login button{
  58. width: 100% !important;
  59. height: 80rpx;
  60. color: #fff;
  61. background-color: #3780CD;
  62. border-radius: 18rpx;
  63. padding: 0;
  64. line-height: 80rpx;
  65. }
  66. image{
  67. max-height: 100%;
  68. }
  69. .login image{
  70. width: 300rpx;
  71. max-height: 100rpx;
  72. }
  73. .xx{
  74. margin: 30rpx 0 40rpx;
  75. }