handheld.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .hanheld {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. }
  6. .hanheld > img {
  7. display: flex;
  8. width: 100%;
  9. }
  10. .pw-list {
  11. display: flex;
  12. width: 100%;
  13. justify-content: center;
  14. }
  15. .pw-list > ul {
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. width: 94%;
  20. padding: 20px 0;
  21. }
  22. .pw-list > ul > li {
  23. display: flex;
  24. justify-content: flex-start;
  25. align-items: center;
  26. width: 100%;
  27. padding: 5px 0;
  28. }
  29. .pw-list > ul > li > div {
  30. display: flex;
  31. justify-content: center;
  32. align-items: center;
  33. flex: 1;
  34. }
  35. .pw-list > ul > li > div > img {
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. width: 96%;
  40. }
  41. .pw-list > ul > li > .content {
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. .pw-list > ul > li > .content > div {
  46. width: 96%;
  47. }
  48. .pw-list > ul > li > .content > div > section {
  49. display: flex;
  50. flex-direction: row;
  51. }
  52. .pw-list > ul > li > .content > div > .title {
  53. display: flex;
  54. align-items: flex-start;
  55. margin-bottom: 4px;
  56. border-bottom: 2px solid #333333;
  57. padding: 4px 0;
  58. }
  59. .pw-list > ul > li > .content > div > section > span {
  60. display: flex;
  61. justify-content: center;
  62. align-items: center;
  63. width: 18px;
  64. height: 18px;
  65. background-color: #9a0000;
  66. color: #ffffff;
  67. font-size: 16px;
  68. border-radius: 3px;
  69. margin-right: 3px;
  70. }
  71. .pw-list > ul > li > .content > div > section > h5 {
  72. margin: 0;
  73. white-space: normal;
  74. font-size: 12px;
  75. color: #333333;
  76. font-weight: bold;
  77. }
  78. .pw-list > ul > .active {
  79. display: flex;
  80. flex-direction: row-reverse;
  81. }
  82. .pw-list > ul > li > .content > div > section > p {
  83. font-size: 12px;
  84. white-space: normal;
  85. color: #333333;
  86. }