index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. .content {
  2. text-align: center;
  3. }
  4. .chat-box {
  5. background: #f4f5f7;
  6. padding-top: 3%;
  7. padding-bottom:100rpx;
  8. }
  9. .tips-box {
  10. background:#D5D5DA;
  11. font-size: 28rpx;
  12. color: #fff;
  13. border-radius: 30rpx;
  14. width: 50%;
  15. margin: 0 auto;
  16. height: 50rpx;
  17. line-height: 50rpx
  18. }
  19. .tips-title{
  20. width: 70%;
  21. margin-top: 5%;
  22. font-size: 30rpx;
  23. height: 70rpx;
  24. line-height: 70rpx
  25. }
  26. .send-box {
  27. width: 100%;
  28. height: 90rpx;
  29. position: fixed;
  30. bottom: 0;
  31. background: #F4F0ED;
  32. display: -webkit-box;
  33. display: -webkit-flex;
  34. display: -ms-flexbox;
  35. display: flex;
  36. -webkit-box-align: center;
  37. -webkit-align-items: center;
  38. -ms-flex-align: center;
  39. align-items: center;
  40. }
  41. .talk-box {
  42. display: -webkit-box;
  43. display: -webkit-flex;
  44. display: -ms-flexbox;
  45. display: flex;
  46. -webkit-box-pack: start;
  47. -webkit-justify-content: flex-start;
  48. -ms-flex-pack: start;
  49. justify-content: flex-start;
  50. -webkit-box-align: center;
  51. -webkit-align-items: center;
  52. -ms-flex-align: center;
  53. align-items: center;
  54. margin-top: 3%;
  55. }
  56. .talk-box-end{
  57. -webkit-box-pack: end;
  58. -webkit-justify-content: flex-end;
  59. -ms-flex-pack: end;
  60. justify-content: flex-end;
  61. }
  62. .talk-head-box {
  63. width: 80rpx;
  64. height:80rpx;
  65. border-radius: 30rpx;
  66. margin-left: 2%;
  67. margin-right: 2%;
  68. }
  69. .talk-head {
  70. width: 100%;
  71. height: 100%;
  72. border-radius: 50%;
  73. }
  74. .talk-content {
  75. padding: 2%;
  76. background: #fff;
  77. /* height:50rpx;
  78. line-height: 50rpx; */
  79. font-size: 28rpx;
  80. border-top-right-radius: 20rpx;
  81. border-bottom-left-radius: 20rpx;
  82. border-bottom-right-radius:20rpx;
  83. text-align: left;
  84. max-width: 70%;
  85. }
  86. .enter-box {
  87. width: 78%;
  88. height: 70rpx;
  89. margin-left: 5px;
  90. background: #fff;
  91. border-radius: 1%;
  92. }
  93. .submit-message {
  94. width: 18%;
  95. height: 70rpx;
  96. font-size: 28rpx;
  97. line-height: 70rpx;
  98. color: #fff;
  99. background-color: #0A98D5!important;
  100. }
  101. .logo {
  102. height: 200rpx;
  103. width: 200rpx;
  104. margin-top: 200rpx;
  105. margin-left: auto;
  106. margin-right: auto;
  107. margin-bottom: 50rpx;
  108. }
  109. .text-area {
  110. display: -webkit-box;
  111. display: -webkit-flex;
  112. display: -ms-flexbox;
  113. display: flex;
  114. -webkit-box-pack: center;
  115. -webkit-justify-content: center;
  116. -ms-flex-pack: center;
  117. justify-content: center;
  118. }
  119. .title {
  120. font-size: 36rpx;
  121. color: #8f8f94;
  122. }