appointmentGuide.css 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @charset "UTF-8";
  2. /* reset背景颜色 */
  3. body{
  4. background: #F0F1F7;
  5. overflow: auto;
  6. }
  7. /* 列表 */
  8. .listbox{
  9. margin-top: 50px;
  10. overflow: auto;
  11. }
  12. .listbox li{
  13. background: #fff;
  14. border-bottom: 1px #ebebeb solid;
  15. overflow: auto;
  16. }
  17. .listbox .title{
  18. padding: 15px;
  19. }
  20. .listbox .body{
  21. height: auto !important;
  22. padding: 0 15px 15px;
  23. background: #fff;
  24. display: none;
  25. }
  26. .listbox .body p{
  27. text-indent:20px;
  28. word-wrap: break-word;
  29. word-break: normal;
  30. text-align: justify;
  31. font-size: .9rem;
  32. line-height: 2rem;
  33. }
  34. .listbox .body table{
  35. border-collapse: collapse;
  36. }
  37. .listbox .body table td{
  38. border: 1px #424242 solid;
  39. padding: 10px;
  40. }
  41. .listbox .body table td:nth-child(odd){
  42. background: #aae2e1;
  43. }
  44. .listbox .body table td:nth-child(even){
  45. line-height: 1.5rem;
  46. }
  47. .listbox li i{
  48. float: right;
  49. }