h5.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. .TUI-contact-H5{
  2. height:100%;
  3. overflow-y: auto;
  4. .TUI-contact{
  5. &-left {
  6. min-width: 0;
  7. width: 100%;
  8. height: 100%;
  9. flex: 1;
  10. position: static;
  11. }
  12. &-main {
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. z-index: 2;
  17. flex-direction: column;
  18. background: #EFEFEF;
  19. &-h5{
  20. &-title {
  21. display: flex;
  22. align-items: center;
  23. padding: 12px 16px;
  24. background: #FFFFFF;
  25. justify-content: center;
  26. position: relative;
  27. .icon {
  28. position: absolute;
  29. left: 16px;
  30. }
  31. h1 {
  32. flex: 1;
  33. width: 0;
  34. word-break: keep-all;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. padding: 0 30px;
  38. font-weight: 500;
  39. font-size: 16px;
  40. text-align: center;
  41. }
  42. }
  43. }
  44. &-info {
  45. padding: 12px 0;
  46. &-header {
  47. background: #FFFFFF;
  48. padding: 12px 16px;
  49. flex-direction: row-reverse;
  50. justify-content: flex-end;
  51. align-items: center;
  52. .list {
  53. padding-left: 12px;
  54. }
  55. }
  56. &-main {
  57. background: #FFFFFF;
  58. padding: 12px 16px;
  59. textarea {
  60. background: #EFEFEF;
  61. }
  62. }
  63. &-footer {
  64. padding-top: 12px;
  65. flex-direction: column;
  66. p {
  67. text-align: center;
  68. background: #FFFFFF;
  69. padding: 10px 0;
  70. opacity: 1;
  71. }
  72. .btn {
  73. flex: 1;
  74. background: #FFFFFF;
  75. border-bottom: 1px solid #EEEEEE;
  76. margin: 0;
  77. padding: 15px 0;
  78. }
  79. }
  80. }
  81. }
  82. &-system {
  83. flex: 1;
  84. position: static;
  85. }
  86. &-list {
  87. position: static;
  88. overflow-y: scroll;
  89. }
  90. }
  91. .btn {
  92. &-cancel {
  93. color: #FF584C;
  94. }
  95. &-default {
  96. color: #006EFF;
  97. }
  98. &:disabled {
  99. opacity: 0.3;
  100. }
  101. }
  102. }