sidebar.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .container {
  2. height: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: space-between;
  7. padding: 100px 0;
  8. box-sizing: border-box;
  9. }
  10. page,.page {
  11. height: 100%;
  12. font-family: 'PingFang SC', 'Helvetica Neue', Helvetica, 'Droid Sans Fallback', 'Microsoft Yahei', sans-serif;
  13. }
  14. .page-bottom{
  15. height: 100%;
  16. width: 725px;
  17. position: fixed;
  18. background-color: #07c160;
  19. z-index: 0;
  20. }
  21. .wc{
  22. color: white;
  23. padding: 15px 0 15px 20px;
  24. }
  25. .page-content{
  26. padding-top: 150px;
  27. }
  28. .page-top{
  29. height: 100%;
  30. position: fixed;
  31. width: 725px;
  32. background-color: var(--weui-BG-1);
  33. z-index: 0;
  34. transition: All 0.4s ease;
  35. -webkit-transition: All 0.4s ease;
  36. }
  37. .c-state1{
  38. transform: rotate(0deg) scale(1) translate(40%,0%);
  39. -webkit-transform: rotate(0deg) scale(1) translate(40%,0%);
  40. }
  41. .c-state2{
  42. transform: rotate(0deg) scale(.8) translate(40%,0%);
  43. -webkit-transform: rotate(0deg) scale(.8) translate(40%,0%);
  44. }
  45. .item-title {
  46. margin: 10px 10px 5px;
  47. font-size: 18px;
  48. width: 100%;
  49. }
  50. .item-desc {
  51. margin: 5px 10px 0;
  52. width: 100%;
  53. color: #00000080
  54. }