index.wxss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /**index.wxss**/
  2. /* 方块组件 */
  3. .rounded-chunk{
  4. width: 100%;
  5. height: 100vh;
  6. /* display: flex; */
  7. padding: 10px;
  8. box-sizing: border-box;
  9. overflow: scroll;
  10. }
  11. .rounded-chunk > .chunk{
  12. width: 100%;
  13. height: auto;
  14. display: flex;
  15. flex-direction: column;
  16. justify-content: center;
  17. align-items: center;
  18. background-color: #f5f5f5;
  19. border-radius: 3px;
  20. box-shadow: 1px 1px 5px black;
  21. }
  22. .chunk-title{
  23. width: 100%;
  24. height: 45px;
  25. font-size: large;
  26. height: auto;
  27. display: flex;
  28. /* justify-content: center; */
  29. align-items: center;
  30. padding: 5px;
  31. box-sizing: border-box;
  32. background-color: #f5f5f5;
  33. color: black;
  34. font-size: large;
  35. font-weight: bold;
  36. /* 字间距 */
  37. letter-spacing: 0.5em;
  38. }
  39. .c-content{
  40. width: 100%;
  41. height: auto;
  42. display: flex;
  43. flex-direction: column;
  44. text-align: left;
  45. /* justify-content: center; */
  46. /* align-items: center; */
  47. padding: 5px;
  48. box-sizing: border-box;
  49. background-color: #f5f5f5;
  50. }
  51. /* 小号-正文-样式 */
  52. .sm-text{
  53. font-size: small;
  54. /* 首行缩进 */
  55. text-indent: 2em;
  56. }
  57. .line{
  58. width: 100%;
  59. height: 35px;
  60. display: flex;
  61. box-sizing: border-box;
  62. align-items: center;
  63. background-color: #fff;
  64. padding: 5px;
  65. }
  66. .line > .info{
  67. width: 70%;
  68. height: 100%;
  69. display: flex;
  70. /* justify-content: center; */
  71. align-items: center;
  72. box-sizing: border-box;
  73. border-right: 1px solid #d9d9d9;
  74. }
  75. .line > .select{
  76. width: 30%;
  77. height: 100%;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. }
  82. .c-btn{
  83. width: 100%;
  84. height: 45px;
  85. display: flex;
  86. justify-content: center;
  87. align-items: center;
  88. box-sizing: border-box;
  89. }