1
0

helpInfo.wxss 651 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. page, .container {
  2. width: 750rpx;
  3. height: 100%;
  4. overflow-x: hidden;
  5. overflow-y: auto;
  6. background: #f4f4f4;
  7. position: relative;
  8. }
  9. .help-container {
  10. background-color: #fff;
  11. padding: 0 30rpx;
  12. }
  13. .help-box {
  14. position: relative;
  15. }
  16. .help-box::after {
  17. content: " ";
  18. position: absolute;
  19. left: 0;
  20. bottom: 0;
  21. right: 0;
  22. height: 1px;
  23. border-bottom: 1px solid #d9d9d9;
  24. color: #d9d9d9;
  25. -webkit-transform-origin: 0 100%;
  26. transform-origin: 0 100%;
  27. -webkit-transform: scaleY(0.5);
  28. transform: scaleY(0.5);
  29. }
  30. .help-box .help-title{
  31. padding-top: 30rpx;
  32. font-weight: bold;
  33. }
  34. .help-box .help-content{
  35. padding: 30rpx 0;
  36. }