server.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .server {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. width: 100%;
  6. }
  7. .server > .content {
  8. display: flex;
  9. flex-direction: column;
  10. width: 92%;
  11. }
  12. .server > .content > ul {
  13. display: flex;
  14. flex-direction: column;
  15. padding-bottom: 20px;
  16. }
  17. .server > .content > h5 {
  18. text-indent: 24px;
  19. white-space: normal;
  20. font-size: 15px;
  21. color: #111111;
  22. font-family: "微软雅黑";
  23. margin: 20px 0 10px 0;
  24. line-height: 20px;
  25. font-weight: 600;
  26. }
  27. h6 {
  28. font-size: 16px;
  29. color: #111111;
  30. font-weight: bold;
  31. }
  32. p {
  33. font-size: 14px;
  34. color: #333333;
  35. text-indent: 24px;
  36. font-weight: bold;
  37. }
  38. .server > .content > ul > li {
  39. display: flex;
  40. flex-direction: column;
  41. }
  42. .server > .content > ul > li > section {
  43. display: flex;
  44. align-self: center;
  45. flex-direction: column;
  46. width: 83.5%;
  47. }
  48. table {
  49. margin: 6px 0;
  50. }
  51. table tr th {
  52. font-size: 14px;
  53. color: #333333;
  54. font-weight: bold;
  55. }
  56. table tr th,
  57. td {
  58. text-align: center;
  59. border: 1px solid #333333;
  60. padding: 4px;
  61. }
  62. .server > .content > ul > li > section>div{
  63. display: flex;
  64. flex-direction: row;
  65. align-items: flex-start;
  66. }
  67. .server > .content > ul > li > section>div>section>p{
  68. text-indent: 0;
  69. font-weight: normal;
  70. white-space: nowrap;
  71. font-size: 13px;
  72. line-height: 20px;
  73. }