index.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. .tui-cards-container {
  2. position: fixed;
  3. width: 100vw;
  4. height: 100vh;
  5. z-index: 100;
  6. top: 0;
  7. /* #ifdef H5 */
  8. top: calc(88rpx + constant(safe-area-inset-top));
  9. top: calc(88rpx + env(safe-area-inset-top));
  10. /* #endif */
  11. background: rgba(0, 0, 0, 0.5);
  12. }
  13. .service-evaluation {
  14. position: absolute;
  15. bottom: 0;
  16. right: 0;
  17. left: 0;
  18. background: #FFFFFF;
  19. padding: 48rpx 40rpx;
  20. }
  21. .header {
  22. display: flex;
  23. justify-content: space-between;
  24. font-family: PingFangSC-Regular;
  25. }
  26. .btn {
  27. width: 100%;
  28. padding: 0;
  29. margin: 0 auto;
  30. text-align: center;
  31. background: none;
  32. }
  33. .btn-close {
  34. color: #006EFF;
  35. }
  36. .header-label {
  37. font-size: 18px;
  38. color: #000000;
  39. letter-spacing: 0;
  40. line-height: 25px;
  41. }
  42. .header .btn {
  43. font-size: 16px;
  44. color: #006EFF;
  45. letter-spacing: 0;
  46. line-height: 24px;
  47. }
  48. .main {
  49. display: flex;
  50. flex-direction: column;
  51. padding: 48rpx 0;
  52. }
  53. .main-evaluation-score {
  54. padding: 0 60rpx 48rpx;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: flex-end;
  58. }
  59. .main-evaluation-score .score-star {
  60. width: 72rpx;
  61. height: 72rpx;
  62. }
  63. .main-textarea {
  64. background: #F8F8F8;
  65. border: 0 solid #D9D9D9;
  66. border-radius: 4px;
  67. font-size: 14px;
  68. padding: 16rpx 32rpx;
  69. }
  70. .textarea-placeholder {
  71. color: #B0B0B0;
  72. }
  73. .footer .btn {
  74. width: 100%;
  75. padding: 26rpx 0;
  76. background: #006EFF;
  77. border-radius: 24px;
  78. border-radius: 24px;
  79. font-size: 16px;
  80. color: #FFFFFF;
  81. }