index.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. .tui-common-words-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. .tui-common-words-box {
  14. position: absolute;
  15. width: 100%;
  16. height: 60%;
  17. bottom: 0;
  18. background: rgba(255, 255, 255, 1);
  19. padding-bottom: 68rpx;
  20. z-index: 200;
  21. }
  22. .tui-common-words-title {
  23. display: flex;
  24. flex-wrap: nowrap;
  25. justify-content: space-between;
  26. padding-left: 40rpx;
  27. padding-right: 40rpx;
  28. padding-top: 48rpx;
  29. font-family: PingFangSC-Medium;
  30. font-size: 36rpx;
  31. color: #000000;
  32. letter-spacing: 0;
  33. line-height: 50rpx;
  34. }
  35. .tui-search-bar {
  36. display: flex;
  37. flex-wrap: nowrap;
  38. align-items: center;
  39. margin: 32rpx 40rpx;
  40. width: 670rpx;
  41. height: 80rpx;
  42. background: #FFFFFF;
  43. border-radius: 40rpx;
  44. border-radius: 40rpx;
  45. background-color: #F8F8F8;
  46. }
  47. .tui-searchcion {
  48. display: inline-block;
  49. margin-left: 24rpx;
  50. width: 48rpx;
  51. height: 48rpx;
  52. }
  53. .tui-search-bar-input {
  54. margin-left: 16rpx;
  55. line-height: 40rpx;
  56. font-size: 28rpx;
  57. width: 100%;
  58. display: inline-block;
  59. }
  60. .tui-common-words-list {
  61. position: absolute;
  62. top: 242rpx;
  63. bottom: 68rpx;
  64. width: 750rpx;
  65. }
  66. .tui-common-words-item {
  67. width: 750rpx;
  68. height: 112rpx;
  69. border-bottom: 2rpx solid #EEF0F3;
  70. background-color: #FFFFFF;
  71. font-family: PingFangSC-Regular;
  72. font-size: 32rpx;
  73. color: #333333;
  74. letter-spacing: 0;
  75. line-height: 44rpx;
  76. padding: 0 40rpx;
  77. display: flex;
  78. align-items: center;
  79. }