app.wxss 1.5 KB

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