app.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. ::-webkit-scrollbar {
  2. width: 0;
  3. height: 0;
  4. color: transparent;
  5. display: none;
  6. }
  7. .FlexColumn {
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .FlexRow {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .container {
  20. width:100%;
  21. color: #fff;
  22. justify-content: flex-start;
  23. font-weight: 700;
  24. background-color: #004433;
  25. }
  26. .panelRemindParent{
  27. background-color: rgba(26,67,51,0.10);
  28. z-index: 20;
  29. position: fixed;
  30. bottom:0;
  31. }
  32. /* 弹窗上滑动画 */
  33. @keyframes slideUp {
  34. from { transform: translateY(100%); }
  35. to { transform: translateY(0); }
  36. }
  37. /* 弹窗下滑动画 */
  38. @keyframes slideDown {
  39. from { transform: translateY(0); }
  40. to { transform: translateY(100%); }
  41. }
  42. /* 上滑动画类 */
  43. .remind-slide-up {
  44. animation: slideUp 0.3s ease-out forwards;
  45. }
  46. /* 下滑动画类 */
  47. .remind-slide-down {
  48. animation: slideDown 0.3s ease-out forwards;
  49. }
  50. .panelGuideContainer{
  51. width: 100%;
  52. position: fixed;
  53. top:0;
  54. z-index: 20;
  55. }
  56. .panelGuideContainer .panelGuideContainer0{
  57. background-color:rgba(0,0,0,0.3);
  58. position: absolute;
  59. z-index: 20;
  60. }
  61. .panelGuideContainer .panelGuideContainerTop{
  62. width:100%;
  63. top:0;
  64. }
  65. .panelGuideContainer .panelGuideContainerLeft{
  66. left:0;
  67. }
  68. .panelGuideContainer .panelGuideContainerRight{
  69. right:0;
  70. width:750rpx;
  71. }
  72. .panelGuideContainer .panelGuideContainerBottom{
  73. width:100%;
  74. }
  75. .panelGuideContainer .panelGuideContainerText1{
  76. font-size: 32rpx;
  77. color:#1e1e1e;
  78. position: absolute;
  79. background-color: #fff;
  80. text-align: center;
  81. border-radius: 20rpx;
  82. padding: 20rpx;
  83. z-index: 110;
  84. }
  85. .panelGuideContainer .panelGuideContainerClose{
  86. width:212rpx;
  87. height:80rpx;
  88. position: absolute;
  89. z-index: 22;
  90. }
  91. .panelGuideContainer .panelGuideContainerImage{
  92. position: absolute;
  93. z-index: 21;
  94. }