pt.wxss 546 B

123456789101112131415161718192021222324252627282930
  1. page{
  2. padding:44rpx 38rpx 0 88rpx;
  3. box-sizing: border-box;
  4. font-size: 25rpx;
  5. }
  6. .title{
  7. line-height: 31rpx;
  8. letter-spacing: 3rpx;
  9. color: #c94b3e;
  10. }
  11. .ul{
  12. position: relative;
  13. margin-top: 42rpx;
  14. margin-bottom: 50rpx;
  15. color: #2e2e2e;
  16. line-height: 53rpx;
  17. letter-spacing: 1px;
  18. counter-reset:sectioncounter;
  19. }
  20. .li:before {
  21. content:counter(sectioncounter) "、";
  22. counter-increment:sectioncounter;
  23. position: absolute;
  24. left: -32rpx;
  25. }
  26. .copyright{
  27. font-size: 22rpx;
  28. line-height: 31rpx;
  29. color: #36a0db;
  30. }