app.wxss 1.7 KB

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