3.css 823 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #PolicyTxt
  2. {
  3. background-color: #EBEBEB;
  4. padding: 12px;
  5. word-wrap:break-word;
  6. overflow-y: scroll;
  7. min-height: 200px;
  8. text-indent: 2em;
  9. }
  10. #PolicyTxt::-webkit-scrollbar {/*滚动条整体样式*/
  11. width: 5px; /*高宽分别对应横竖滚动条的尺寸*/
  12. height: 1px;
  13. }
  14. #PolicyTxt::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
  15. border-radius: 10px;
  16. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  17. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  18. background-color: #AAAAAA;
  19. }
  20. #PolicyTxt::-webkit-scrollbar-track {/*滚动条里面轨道*/
  21. -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  22. box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
  23. border-radius: 10px;
  24. background: #EDEDED;
  25. }
  26. #C_List li
  27. {
  28. margin-left: 4em;
  29. }
  30. p
  31. {
  32. text-indent:2em;
  33. margin-bottom: 2px;
  34. }