index.wxss 654 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .i-panel {
  2. position: relative;
  3. overflow: hidden
  4. }
  5. .i-panel-title {
  6. font-size: 14px;
  7. line-height: 1;
  8. color: #1c2438;
  9. text-align: center;
  10. padding: 20px 16px 10px
  11. }
  12. .i-panel-title-hide-top {
  13. padding-top: 0
  14. }
  15. .i-panel-content {
  16. position: relative;
  17. background: #fff;
  18. overflow: hidden
  19. }
  20. .i-panel-content::after {
  21. content: '';
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. width: 200%;
  26. height: 200%;
  27. transform: scale(.5);
  28. transform-origin: 0 0;
  29. pointer-events: none;
  30. box-sizing: border-box;
  31. border: 0 solid #e9eaec;
  32. border-top-width: 1px;
  33. border-bottom-width: 1px
  34. }
  35. .i-panel-without-border::after {
  36. border: 0 none
  37. }