app.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. .f24 {
  39. font-size: 24rpx;
  40. }
  41. .f28 {
  42. font-size: 28rpx;
  43. }
  44. .col333 {
  45. color: #333;
  46. }
  47. .colef524d {
  48. color: #ef524d;
  49. }
  50. .f_left {
  51. float: left;
  52. }
  53. .f_right {
  54. float: right;
  55. }
  56. .vux-1px-b {
  57. position: relative;
  58. }
  59. .vux-1px-b::after {
  60. content: " ";
  61. position: absolute;
  62. left: 0;
  63. bottom: 0;
  64. right: 0;
  65. height: 1px;
  66. border-bottom: 1px solid #c7c7c7;
  67. color: #c7c7c7;
  68. -webkit-transform-origin: 0 100%;
  69. transform-origin: 0 100%;
  70. -webkit-transform: scaleY(0.5);
  71. transform: scaleY(0.5);
  72. }
  73. .comment-1px-b::after {
  74. content: " ";
  75. position: absolute;
  76. left: 24rpx;
  77. bottom: 0;
  78. right: 0;
  79. height: 1px;
  80. border-bottom: 1px solid #c7c7c7;
  81. color: #c7c7c7;
  82. -webkit-transform-origin: 0 100%;
  83. transform-origin: 0 100%;
  84. -webkit-transform: scaleY(0.5);
  85. transform: scaleY(0.5);
  86. }