service.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* pages/feedback/service.wxss */
  2. .container {
  3. min-height: 100vh;
  4. background: #ffffff;
  5. padding: 40rpx 32rpx;
  6. box-sizing: border-box;
  7. }
  8. .greeting {
  9. font-size: 30rpx;
  10. color: #333333;
  11. margin-bottom: 40rpx;
  12. }
  13. .problem-list {
  14. display: flex;
  15. flex-direction: column;
  16. gap: 24rpx;
  17. }
  18. .problem-card {
  19. display: flex;
  20. align-items: center;
  21. background: #f5f5f5;
  22. border-radius: 16rpx;
  23. padding: 32rpx;
  24. box-sizing: border-box;
  25. }
  26. .icon-wrapper {
  27. margin-right: 24rpx;
  28. flex-shrink: 0;
  29. }
  30. .chat-icon {
  31. position: relative;
  32. width: 80rpx;
  33. height: 80rpx;
  34. }
  35. .chat-bubble {
  36. width: 80rpx;
  37. height: 80rpx;
  38. background: #6b56fe;
  39. border-radius: 16rpx 16rpx 16rpx 4rpx;
  40. position: relative;
  41. }
  42. .chat-bubble::after {
  43. content: "";
  44. position: absolute;
  45. bottom: -8rpx;
  46. left: 0;
  47. width: 0;
  48. height: 0;
  49. border-left: 12rpx solid #6b56fe;
  50. border-top: 8rpx solid transparent;
  51. border-bottom: 8rpx solid transparent;
  52. }
  53. .chat-dots {
  54. position: absolute;
  55. top: 50%;
  56. left: 50%;
  57. transform: translate(-50%, -50%);
  58. display: flex;
  59. gap: 8rpx;
  60. align-items: center;
  61. justify-content: center;
  62. }
  63. .dot {
  64. width: 12rpx;
  65. height: 12rpx;
  66. background: #fff;
  67. border-radius: 50%;
  68. }
  69. .problem-content {
  70. flex: 1;
  71. display: flex;
  72. flex-direction: column;
  73. }
  74. .problem-title {
  75. font-size: 32rpx;
  76. font-weight: bold;
  77. color: #333333;
  78. margin-bottom: 12rpx;
  79. }
  80. .problem-hint {
  81. font-size: 24rpx;
  82. color: #999999;
  83. }