app.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /**app.wxss**/
  2. body {
  3. font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
  4. }
  5. page {
  6. background-color: #f9f9f9;
  7. }
  8. .container {
  9. height: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: 200rpx 0;
  15. box-sizing: border-box;
  16. }
  17. .flex_center {
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. }
  22. .abs_img {
  23. position: absolute;
  24. width: 100%;
  25. height: 100%;
  26. left: 0;
  27. top: 0;
  28. }
  29. .pos_rel {
  30. position: relative;
  31. }
  32. .one_line_hidden {
  33. white-space: nowrap;
  34. text-overflow: ellipsis;
  35. overflow: hidden;
  36. }
  37. .padLR30 {
  38. padding-left: 30px;
  39. padding-right: 30px;
  40. }
  41. .f0 {
  42. font-size: 0;
  43. }
  44. .f24 {
  45. font-size: 24rpx;
  46. }
  47. .f28 {
  48. font-size: 28rpx;
  49. }
  50. .f30 {
  51. font-size: 30rpx;
  52. }
  53. .mt10 {
  54. margin-top: 10rpx;
  55. }
  56. .mt20 {
  57. margin-top: 20rpx;
  58. }
  59. .cola7 {
  60. color: #a7a7a7;
  61. }
  62. .col333 {
  63. color: #333;
  64. }
  65. .coleb4e4f {
  66. color: #EB4E4F
  67. }
  68. .col09BB07 {
  69. color: #09BB07
  70. }
  71. .colef524d {
  72. color: #ef524d;
  73. }
  74. .bacfff {
  75. background: #fff;
  76. }
  77. .f_left {
  78. float: left;
  79. }
  80. .f_right {
  81. float: right;
  82. }
  83. .vux-1px-b {
  84. position: relative;
  85. }
  86. .vux-1px-b::after {
  87. content: " ";
  88. position: absolute;
  89. left: 0;
  90. bottom: 0;
  91. right: 0;
  92. height: 1px;
  93. border-bottom: 1px solid #c7c7c7;
  94. color: #c7c7c7;
  95. -webkit-transform-origin: 0 100%;
  96. transform-origin: 0 100%;
  97. -webkit-transform: scaleY(0.5);
  98. transform: scaleY(0.5);
  99. }
  100. .comment-1px-b::after {
  101. content: " ";
  102. position: absolute;
  103. left: 24rpx;
  104. bottom: 0;
  105. right: 0;
  106. height: 1px;
  107. border-bottom: 1px solid #c7c7c7;
  108. color: #c7c7c7;
  109. -webkit-transform-origin: 0 100%;
  110. transform-origin: 0 100%;
  111. -webkit-transform: scaleY(0.5);
  112. transform: scaleY(0.5);
  113. }