common.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. /* padding-right: 20rpx; */
  82. display: flex;
  83. justify-content: space-between;
  84. align-items: center;
  85. box-sizing: border-box;
  86. }
  87. .title-text{
  88. color: #000;
  89. font-weight: 700;
  90. }
  91. /*
  92. ==========
  93. 蒙板
  94. ==========
  95. */
  96. .cover{
  97. position: fixed;
  98. top: 0;
  99. right: 0;
  100. bottom: 0;
  101. left: 0;
  102. width: 100%;
  103. height: 100%;
  104. z-index: 9000;
  105. background: rgba(0, 0, 0, 0.6);
  106. opacity: 0.7;
  107. }
  108. /*
  109. ==========
  110. 颜色类
  111. ==========
  112. */
  113. .text-red{
  114. color: #f00;
  115. }
  116. .text-orange{
  117. color: orange;
  118. }