sonTopic.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* pages/sonTopic/sonTopic.wxss */
  2. /* .topic .topicTable {
  3. display: flex;
  4. }
  5. .topic .topicTable .topicItem {
  6. flex: 1;
  7. padding: 5px 10px;
  8. } */
  9. .topTable {
  10. display: flex;
  11. margin-bottom: 10px;
  12. }
  13. .topTable .topicTable {
  14. flex: 1;
  15. white-space: nowrap;
  16. }
  17. .topTable .topicTable .topicItem {
  18. padding: 5px 0 5px 5px;
  19. }
  20. .topic .itemView,
  21. .topic .mainTitle{
  22. padding: 5px 10px;
  23. }
  24. .topic .mainTitle{
  25. font-size: 18px;
  26. font-weight: 400;
  27. border-bottom-color:red;
  28. }
  29. .show{
  30. display: inline-block;
  31. /* border: 1rpx solid #e2dd52;
  32. color: #e2dd52; */
  33. border: 1rpx solid #1989fa;
  34. color: #1989fa;
  35. width: var(--tips-btn);
  36. height: var(--tips-btn);
  37. line-height: var(--tips-btn);
  38. font-size: 12px;
  39. text-align: center;
  40. border-radius: 50%;
  41. }
  42. .modolBg{
  43. position: fixed;
  44. top: 0;
  45. left: 0;
  46. right: 0;
  47. bottom: 0;
  48. z-index: 1;
  49. background-color: rgba(0,0,0,.5);
  50. }
  51. .local_dialog {
  52. top: 50%;
  53. left: 50%;
  54. width: 600rpx;
  55. position: absolute;
  56. border-radius: 1em;
  57. background-color: #eee;
  58. transform: translate(-50%, -50%);
  59. }
  60. .local_dialog_title {
  61. position: relative;
  62. text-align: right;
  63. padding: 8px 15px;
  64. margin-bottom: 1rpx;
  65. line-height: 1.5em;
  66. }
  67. .local_dialog_close {
  68. float: right;
  69. position: relative;
  70. width: 1.5em;
  71. height: 1.5em;
  72. }
  73. .local_dialog_title .title {
  74. font-size: 16px;
  75. height: 25px;
  76. white-space: pre-wrap;
  77. text-align: center;
  78. line-height: 25px;
  79. color: #121212;
  80. text-align: center;
  81. }
  82. .local_dialog_close_left,
  83. .local_dialog_close_right {
  84. position: absolute;
  85. width: 100%;
  86. height: 1rpx;
  87. background-color: #121212;
  88. top: 50%;
  89. transform: rotate(45deg);
  90. }
  91. .local_dialog_close_right {
  92. transform: rotate(135deg);
  93. }
  94. .local_dialog_body {
  95. max-height: 60vh;
  96. overflow-y: scroll;
  97. padding: 8px 15px 15px 15px;
  98. white-space: normal;
  99. line-height: 2em;
  100. font-size: 14px;
  101. color: #222;
  102. }