app.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /**app.wxss**/
  2. /* 引入icon样式库 */
  3. @import 'icon.wxss';
  4. /* 登录样式 */
  5. .logo{
  6. width: 128rpx;
  7. height: 128rpx;
  8. margin: 0rpx auto;
  9. /* background-color: aqua */
  10. position: relative;
  11. top:200rpx;
  12. }
  13. .logoImg{
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .loginButton{
  18. width: 80%;
  19. margin: 0rpx auto;
  20. position: relative;
  21. top: 500rpx;
  22. }
  23. .wechatLogin,.phoneLogin{
  24. width: 100%;
  25. height: 80rpx;
  26. border-radius: 50rpx;
  27. border: 0rpx;
  28. outline: none;
  29. }
  30. .wechatLogin button{
  31. background-color: #70E500;
  32. border-radius: 50rpx;
  33. /* border: 1rpx solid #70E500; */
  34. border: none;
  35. color: #fff;
  36. }
  37. .phoneLogin{
  38. margin-top: 40rpx;
  39. }
  40. .phoneLogin button{
  41. border-radius: 50rpx;
  42. border: 1rpx solid #70E500;
  43. background-color: #fff;
  44. color: #70E500;
  45. }
  46. /* 搜索框 */
  47. .search{
  48. width: 90%;
  49. margin: 0rpx auto;
  50. height: 35rpx;
  51. /* border: 1rpx solid #cdcdcd; */
  52. border-radius: 10rpx;
  53. font-size: 25rpx;
  54. padding: 10rpx 0rpx;
  55. display: flex;
  56. justify-content: start;
  57. background-color: rgb(240, 240, 240);
  58. /* margin-top: 20rpx;
  59. margin-bottom: 20rpx; */
  60. }
  61. .search-box{
  62. width: 95%;
  63. height: 25rpx;
  64. margin-left: 10rpx;
  65. }
  66. .icon-search{
  67. margin-left: 20rpx;
  68. line-height: 35rpx;
  69. }
  70. .search>input{
  71. width: 90%;
  72. height: 25rpx;
  73. font-size: 25rpx;
  74. position: relative;
  75. top: -5rpx;
  76. left: 10rpx;
  77. /* background-color: red */
  78. }
  79. /* 公共类 */
  80. .marginTopBottom{
  81. margin-top: 20rpx;
  82. margin-bottom: 30rpx;
  83. }
  84. .barTitle{
  85. width: 100%;
  86. height: 56rpx;
  87. padding: 20rpx 0rpx;
  88. text-align: center;
  89. }
  90. .Title-left{
  91. float: left;
  92. font-size: 37rpx;
  93. font-weight: 470;
  94. color: #333;
  95. }
  96. .Title-right{
  97. float: right;
  98. font-size: 26rpx;
  99. color: #aaa;
  100. }