index.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /**index.wxss**/
  2. .flex-column {
  3. display: flex;
  4. display: -webkit-flex;
  5. -webkit-flex-direction: column;
  6. flex-direction: column;
  7. align-items: center;
  8. -webkit-align-items: center;
  9. justify-content: space-between;
  10. -webkit-justify-content: space-between;
  11. }
  12. .dialog-wrap {
  13. position: relative;
  14. padding: 0rpx 40rpx 50rpx 40rpx;
  15. box-sizing: border-box;
  16. display: flex;
  17. display: -webkit-flex;
  18. width: 100%;
  19. flex-direction: column;
  20. -webkit-flex-direction: column;
  21. }
  22. .send-message .text-detail {
  23. color: #9B9B9B;
  24. }
  25. .dialog-part {
  26. position: absolute;
  27. left: 0;
  28. top: 0;
  29. bottom: 257rpx;
  30. right: 0;
  31. z-index:1;
  32. }
  33. .user-input {
  34. flex: 1;
  35. height: 60rpx;
  36. box-sizing: border-box;
  37. margin: 0 10px;
  38. border-radius: 10rpx;
  39. }
  40. .text-content {
  41. margin: 0 48px 0 0;
  42. box-sizing: border-box;
  43. }
  44. .edit-icon {
  45. position: absolute;
  46. right: 10rpx;
  47. bottom: 0;
  48. padding: 0 8rpx;
  49. }
  50. .play-icon {
  51. position: absolute;
  52. right: 10rpx;
  53. bottom: 14rpx;
  54. padding: 0 8rpx;
  55. display: flex;
  56. align-items: center;
  57. }
  58. .play-loud-icon {
  59. position: absolute;
  60. right: 0;
  61. bottom: 14rpx;
  62. padding: 0 8rpx;
  63. display: flex;
  64. align-items: center;
  65. }
  66. .text-detail {
  67. font-size: 18px;
  68. line-height: 24px;
  69. /*margin-right: 25px;*/
  70. box-sizing: border-box;
  71. font-family: "PingFang-SC-Regular", "SimSun", "Microsoft Yahei";
  72. font-variant-ligatures: none;
  73. }
  74. .translate-message {
  75. position: relative;
  76. }
  77. .send-message {
  78. position: relative;
  79. }
  80. .create-time {
  81. font-size: 14px;
  82. color: #B2B2B2;
  83. margin-bottom: 5px;
  84. display: flex;
  85. display: -webkit-flex;
  86. justify-content: center;
  87. -webkit-justify-content: center;
  88. }
  89. .filter-blur {
  90. -webkit-filter: blur(5px);
  91. filter: blur(5px);
  92. }
  93. .empty-tip {
  94. position: absolute;
  95. margin: auto;
  96. top: 0;
  97. left: 0;
  98. bottom: 0;
  99. right: 0;
  100. height: 24px;
  101. width: 100px;
  102. font-size: 24px;
  103. color: #000000;
  104. opacity: 0.1
  105. }
  106. .translate-fake {
  107. width:100%;
  108. height:1px
  109. }
  110. .foot-group {
  111. position: fixed;
  112. left: 0;
  113. bottom: 0;
  114. z-index: 40;
  115. width: 100%;
  116. }