style.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. .modal-bd{
  2. padding: 24px 0;
  3. }
  4. .user-top{
  5. display: flex;
  6. padding-bottom: 16px;
  7. border-bottom: 1px solid #e5e5e5;
  8. .user-avatar{
  9. width: 60px;
  10. height: 60px;
  11. line-height: 60px;
  12. border-radius: 4px;
  13. margin-right: 12px;
  14. position: relative;
  15. overflow: hidden;
  16. cursor: pointer;
  17. img{
  18. width: 100%;
  19. height: 60px;
  20. border-radius: 4px;
  21. vertical-align: middle;
  22. }
  23. &:hover{
  24. p{
  25. bottom: 0;
  26. }
  27. }
  28. p{
  29. font-size: 12px;
  30. text-align: center;
  31. color: #ffffff;
  32. height: 16px;
  33. line-height: 16px;
  34. position: absolute;
  35. left: 0;
  36. right: 0;
  37. bottom: -16px;
  38. transition: .2s all ease-in;
  39. background-color: rgba($color: #000000, $alpha: .4);
  40. }
  41. }
  42. .r-info{
  43. flex: 1;
  44. text-align: left;
  45. font-size: 14px;
  46. color: #333333;
  47. }
  48. .name{
  49. font-weight: bold;
  50. display: block;
  51. margin-bottom: 12px;
  52. }
  53. }
  54. .account-wrap{
  55. text-align: left;
  56. font-size: 14px;
  57. color: #333333;
  58. padding-top: 10px;
  59. .title{
  60. margin-bottom: 16px;
  61. }
  62. .type{
  63. height: 20px;
  64. line-height: 20px;
  65. margin-bottom: 10px;
  66. }
  67. .fr{
  68. float: right;
  69. span{
  70. font-size: 12px;
  71. color: #999999;
  72. display: inline-block;
  73. margin-right: 6px;
  74. }
  75. }
  76. strong{
  77. font-weight: bold;
  78. }
  79. .key{
  80. font-size: 12px;
  81. color: #333333;
  82. }
  83. }
  84. .account-item{
  85. margin-bottom: 26px;
  86. }
  87. .send-msg-btn{
  88. display: block;
  89. width: 100%;
  90. outline: none;
  91. border: none;
  92. height: 34px;
  93. line-height: 34px;
  94. text-align: center;
  95. color: #ffffff;
  96. font-size: 14px;
  97. border-radius: 4px;
  98. background-color: #239af2;
  99. &:hover{
  100. opacity: .8;
  101. }
  102. }
  103. .edit-name-input{
  104. height: 20px;
  105. line-height: 20px;
  106. outline: none;
  107. border: none;
  108. background-color: #efefef;
  109. margin-bottom: 4px;
  110. border-radius: 2px;
  111. width: 120px;
  112. padding-left: 10px;
  113. font-size: 12px;
  114. color: #333333;
  115. }