web.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. .tui-contact-info {
  2. width: 100%;
  3. height: 100%;
  4. background: #f7f8fa;
  5. display: flex;
  6. padding: 30px;
  7. box-sizing: border-box;
  8. flex-direction: column;
  9. overflow: hidden;
  10. &-basic {
  11. display: flex;
  12. justify-content: space-between;
  13. padding-bottom: 15px;
  14. border-bottom: 1px solid #ddd;
  15. overflow: hidden;
  16. box-sizing: border-box;
  17. width: 100%;
  18. &-text {
  19. flex: 1;
  20. &-name {
  21. font-size: 24px;
  22. padding-bottom: 10px;
  23. }
  24. &-other {
  25. font-size: 16px;
  26. padding: 6px 0;
  27. font-weight: 400;
  28. color: #999;
  29. }
  30. }
  31. &-avatar {
  32. width: 80px;
  33. height: 80px;
  34. }
  35. }
  36. &-more {
  37. padding: 15px 0;
  38. overflow: hidden;
  39. &-item {
  40. display: flex;
  41. padding: 6px 0;
  42. font-size: 16px;
  43. font-weight: 400;
  44. min-height: 56px;
  45. &-label {
  46. color: #999;
  47. height: fit-content;
  48. }
  49. &-left {
  50. flex-direction: row;
  51. align-items: center;
  52. .tui-contact-info-more-item-label {
  53. width: 80px;
  54. }
  55. }
  56. &-top {
  57. flex-direction: column;
  58. }
  59. &-content {
  60. flex: 1;
  61. display: flex;
  62. flex-direction: row;
  63. color: #333;
  64. overflow: hidden;
  65. &-text {
  66. display: flex;
  67. overflow: hidden;
  68. &-data {
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. white-space: nowrap;
  72. }
  73. &-icon {
  74. display: flex;
  75. flex-direction: row;
  76. justify-content: center;
  77. align-items: center;
  78. }
  79. }
  80. &-input,
  81. &-textarea {
  82. flex: 1;
  83. border: 1px solid #e8e8e9;
  84. border-radius: 4px;
  85. padding: 4px;
  86. color: inherit;
  87. }
  88. &-input {
  89. height: 22px;
  90. font-size: 16px;
  91. }
  92. &-textarea {
  93. resize: none;
  94. height: 100px;
  95. }
  96. }
  97. }
  98. }
  99. &-button {
  100. display: flex;
  101. padding: 30px;
  102. justify-content: center;
  103. &-item {
  104. margin: 15px;
  105. min-width: 142px;
  106. height: 36px;
  107. padding: 8px 20px;
  108. border-radius: 4px;
  109. border: none;
  110. font-size: 14px;
  111. text-align: center;
  112. line-height: 20px;
  113. font-weight: 400;
  114. letter-spacing: 0;
  115. cursor: pointer;
  116. user-select: none;
  117. &-submit {
  118. border: 1px solid #006eff;
  119. background: #006eff;
  120. color: #fff;
  121. }
  122. &-cancel {
  123. border: 1px solid #e54545;
  124. background: transparent;
  125. color: #e54545;
  126. }
  127. }
  128. }
  129. }