app.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. }
  28. .wechatLogin button{
  29. background-color: #70E500;
  30. border-radius: 50rpx;
  31. border: 1rpx solid #70E500;
  32. color: #fff;
  33. }
  34. .phoneLogin{
  35. margin-top: 40rpx;
  36. }
  37. .phoneLogin button{
  38. border-radius: 50rpx;
  39. border: 1rpx solid #70E500;
  40. background-color: #fff;
  41. color: #70E500;
  42. }
  43. /* 搜索框 */
  44. .search{
  45. width: 90%;
  46. margin: 0rpx auto;
  47. height: 35rpx;
  48. /* border: 1rpx solid #cdcdcd; */
  49. border-radius: 10rpx;
  50. font-size: 25rpx;
  51. padding: 10rpx 0rpx;
  52. display: flex;
  53. justify-content: start;
  54. background-color: rgb(240, 240, 240);
  55. /* margin-top: 20rpx;
  56. margin-bottom: 20rpx; */
  57. }
  58. .search-box{
  59. width: 95%;
  60. height: 25rpx;
  61. margin-left: 10rpx;
  62. }
  63. .icon-search{
  64. margin-left: 20rpx;
  65. line-height: 35rpx;
  66. }
  67. .search>input{
  68. width: 90%;
  69. height: 25rpx;
  70. font-size: 25rpx;
  71. position: relative;
  72. top: -5rpx;
  73. left: 10rpx;
  74. /* background-color: red */
  75. }
  76. /* 公共类 */
  77. .marginTopBottom{
  78. margin-top: 20rpx;
  79. margin-bottom: 30rpx;
  80. }
  81. .barTitle{
  82. width: 100%;
  83. height: 56rpx;
  84. padding: 20rpx 0rpx;
  85. text-align: center;
  86. }
  87. .Title-left{
  88. float: left;
  89. font-size: 37rpx;
  90. font-weight: 470;
  91. color: #333;
  92. }
  93. .Title-right{
  94. float: right;
  95. font-size: 28rpx;
  96. color: #aaa;
  97. }