index.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* pages/index/event/detail/index.wxss */
  2. /* pages/index/event/index.wxss */
  3. .content {
  4. margin-bottom: 10px;
  5. }
  6. .title {
  7. font-weight: 900;
  8. padding: 5px;
  9. margin: 5px;
  10. position: relative;
  11. }
  12. .time,
  13. .address {
  14. font-size: 12px;
  15. padding: 5px;
  16. margin: 5px;
  17. color: var(--weui-FG-1);
  18. }
  19. .address {
  20. border-top: 1px solid var(--weui-FG-3);
  21. border-bottom: 1px solid var(--weui-FG-3);
  22. }
  23. .blueText {
  24. color: cornflowerblue;
  25. font-size: 12px;
  26. }
  27. .slide-image {
  28. width: 100%;
  29. }
  30. .content_tip1,
  31. .content_tip2 {
  32. font-weight: 500;
  33. padding: 0 10px;
  34. position: absolute;
  35. border-radius: 20px;
  36. color: #fff;
  37. right: 0;
  38. top: -30px;
  39. z-index: 99;
  40. }
  41. .content_tip1 {
  42. background-color: #179415;
  43. }
  44. .content_tip2 {
  45. background-color: gray;
  46. }
  47. .eventSign1,.eventSign2 {
  48. padding: 10px;
  49. text-align: center;
  50. color: #fff;
  51. border-radius: 20px;
  52. }
  53. .eventSign1{
  54. background-color: #179415;
  55. }
  56. .eventSign2{
  57. background-color: gray;
  58. }
  59. [weui-modal-show=false] .weui-half-screen-dialog {
  60. -webkit-transition: -webkit-transform .3s;
  61. transition: -webkit-transform .3s;
  62. transition: transform .3s;
  63. transition: transform .3s, -webkit-transform .3s;
  64. -webkit-transform: translateY(100%);
  65. transform: translateY(100%)
  66. }