tagDetail.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* pages/tagDetail/tagDetail.wxss */
  2. page {
  3. background-color: #ffffff;
  4. }
  5. .flex {
  6. display: flex;
  7. }
  8. .flex-center {
  9. align-items: center;
  10. }
  11. .flex-bet {
  12. justify-content: space-between;
  13. }
  14. .topic-info-wrap {
  15. padding: 40rpx 30rpx 50rpx 30rpx;
  16. background-color: #12264d;
  17. }
  18. .topic-info-wrap .tag-title {
  19. font-size: 42rpx;
  20. font-family: PingFangSC-Medium, PingFang SC;
  21. font-weight: 500;
  22. color: rgba(255, 255, 255, 1);
  23. }
  24. .topic-info-wrap .margin-bottom-18 {
  25. margin-bottom: 18rpx;
  26. }
  27. .topic-info-wrap .like-wrap {
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. background: rgba(59, 122, 255, 1);
  32. padding: 4rpx 10rpx;
  33. border-radius: 8rpx;
  34. margin-bottom: 18rpx;
  35. }
  36. .topic-info-wrap .normal {
  37. background: #efefef;
  38. }
  39. .topic-info-wrap .like-wrap .like-icon {
  40. width: 28rpx;
  41. height: 28rpx;
  42. }
  43. .topic-info-wrap .like-wrap .like {
  44. font-size: 26rpx;
  45. font-family: PingFangSC-Medium, PingFang SC;
  46. font-weight: 500;
  47. color: rgba(255, 255, 255, 1);
  48. }
  49. .topic-info-wrap .txt {
  50. font-size: 24rpx;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: rgba(255, 255, 255, 1);
  54. margin-right: 30rpx;
  55. }
  56. .content {
  57. padding: 20rpx 30rpx;
  58. font-size: 24rpx;
  59. font-family: PingFangSC-Regular, PingFang SC;
  60. font-weight: 400;
  61. color: rgba(102, 102, 102, 1);
  62. background: rgba(246, 246, 246, 1);
  63. }
  64. .tabs-wrap {
  65. padding: 10rpx 0;
  66. background-color: #ffffff;
  67. }
  68. .end-txt {
  69. height: 60rpx;
  70. line-height: 60rpx;
  71. font-size: 30rpx;
  72. color: #c0c0c0;
  73. text-align: center;
  74. padding-bottom: var(--safe-area-inset-bottom, 0);
  75. }