common.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* 公共样式 */
  2. /*
  3. ==========
  4. bar相关
  5. ==========
  6. */
  7. .marginTopBottom {
  8. margin-top: 20rpx;
  9. margin-bottom: 30rpx;
  10. }
  11. .barTitle {
  12. width: 100%;
  13. height: 56rpx;
  14. padding: 20rpx 0rpx;
  15. text-align: center;
  16. }
  17. .Title-left {
  18. float: left;
  19. font-size: 37rpx;
  20. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  21. font-weight: 800;
  22. color: #333;
  23. }
  24. .Title-right {
  25. float: right;
  26. font-size: 26rpx;
  27. color: #aaa;
  28. }
  29. /*
  30. ===========
  31. 登录样式
  32. ===========
  33. */
  34. .logo {
  35. width: 128rpx;
  36. height: 128rpx;
  37. margin: 0rpx auto;
  38. position: relative;
  39. top: 200rpx;
  40. }
  41. .logoImg {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. .loginButton {
  46. width: 80%;
  47. margin: 0rpx auto;
  48. position: relative;
  49. top: 500rpx;
  50. }
  51. .wechatLogin, .phoneLogin {
  52. width: 100%;
  53. height: 80rpx;
  54. border-radius: 50rpx;
  55. border: 0rpx;
  56. outline: none;
  57. }
  58. .wechatLogin button {
  59. background-color: #70e500;
  60. border-radius: 50rpx;
  61. border: none;
  62. color: #fff;
  63. }
  64. .phoneLogin {
  65. margin-top: 40rpx;
  66. }
  67. .phoneLogin button {
  68. border-radius: 50rpx;
  69. border: 1rpx solid #70e500;
  70. background-color: #fff;
  71. color: #70e500;
  72. }
  73. /*
  74. ===========
  75. 搜索部分
  76. ===========
  77. */
  78. .title{
  79. width: 100%;
  80. height: 50rpx;
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. box-sizing: border-box;
  85. }
  86. .title-text{
  87. color: #000;
  88. font-weight: 700;
  89. }
  90. /*
  91. ==========
  92. 蒙板
  93. ==========
  94. */
  95. .cover{
  96. position: fixed;
  97. top: 0;
  98. right: 0;
  99. bottom: 0;
  100. left: 0;
  101. width: 100%;
  102. height: 100%;
  103. z-index: 9000;
  104. background: rgba(0, 0, 0, 0.6);
  105. opacity: 0.7;
  106. }