app.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**app.wxss**/
  2. page {
  3. width: 100%;
  4. /* min-height: 100%; */
  5. color: #333;
  6. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  7. background: #F2F6FC;
  8. }
  9. view {
  10. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  11. }
  12. text {
  13. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  14. }
  15. .container {
  16. height: auto;
  17. box-sizing: border-box;
  18. font-family: PingFang SC, Microsoft Yahei, Source Han Sans CN, SimHei;
  19. }
  20. #share {
  21. width: 375px;
  22. height: 300px;
  23. position: absolute;
  24. left: -999rpx;
  25. top: -9999rpx;
  26. }
  27. .textOver {
  28. white-space: nowrap;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. }
  32. .resetBtn {
  33. padding: 0px;
  34. margin: 0;
  35. line-height: normal;
  36. background-color: transparent;
  37. }
  38. .resetBtn::after {
  39. border: none;
  40. }
  41. .seat {
  42. padding-bottom: calc(134rpx + env(safe-area-inset-bottom)) !important;
  43. }
  44. .seat2 {
  45. padding-bottom: calc(110rpx + env(safe-area-inset-bottom)) !important;
  46. }
  47. .isFixed {
  48. position: fixed;
  49. z-index: 999;
  50. }
  51. .isFixed2 {
  52. width: 100%;
  53. box-sizing: border-box;
  54. background-color: white;
  55. box-shadow: 0px 26rpx 24rpx rgba(0, 0, 0, 0.1);
  56. border-bottom-left-radius: 24rpx;
  57. border-bottom-right-radius: 24rpx;
  58. padding: 20rpx 15rpx 20rpx 26rpx !important;
  59. }
  60. .brace {
  61. /* 高度为一级分类的高度再加一丢丢 */
  62. height: 260rpx;
  63. }
  64. /* 转圈动画 */
  65. @keyframes identifier {
  66. 0% {
  67. transform: rotate(0deg);
  68. }
  69. 50% {
  70. transform: rotate(180deg);
  71. }
  72. 100% {
  73. transform: rotate(360deg);
  74. }
  75. }