sonTopic.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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: 500rpx;
  55. padding: 5px 10px;
  56. position: absolute;
  57. border-radius: 1em;
  58. background-color: #fff;
  59. transform: translate(-50%, -50%);
  60. }
  61. .local_dialog_title{
  62. width: 100%;
  63. height: 1.5em;
  64. text-align: right;
  65. line-height: 1.5em;
  66. }
  67. .local_dialog_close{
  68. display: inline-block;
  69. position: relative;
  70. width: 1.5em;
  71. height: 1.5em;
  72. }
  73. .local_dialog_close_left,
  74. .local_dialog_close_right{
  75. position: absolute;
  76. width: 100%;
  77. height: 1rpx;
  78. background-color: #121212;
  79. top: 50%;
  80. transform: rotate(45deg);
  81. }
  82. .local_dialog_close_right{
  83. transform: rotate(135deg);
  84. }
  85. .local_dialog_body{
  86. white-space:normal;
  87. line-height: 1.5em;
  88. padding: 10px 0;
  89. font-size: 14px;
  90. color: #222;
  91. }