contacts.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .but{
  2. width:80%;
  3. height:40px;
  4. line-height: 40px;
  5. text-align: center;
  6. border-radius: 20px;
  7. background-color:#007aff ;
  8. color:#fff;
  9. margin:0 auto;
  10. margin-top: 100px;
  11. }.contacts_container {
  12. box-sizing: border-box;
  13. /* height: 100%; */
  14. /* overflow-y: auto; */
  15. }
  16. .contacts_navbar_center {
  17. width: 98px;
  18. height: 22px;
  19. }
  20. .u-nav-slot {
  21. display: flex;
  22. align-items: center;
  23. justify-content: space-between;
  24. border-width: 0.5px;
  25. border-radius: 100px;
  26. border-color: #ccc;
  27. padding: 3px 7px;
  28. }
  29. .contacts_header_container {
  30. background: #fff;
  31. }
  32. .search_container {
  33. height: 40px;
  34. width: 100%;
  35. box-sizing: border-box;
  36. padding: 4px;
  37. background: #fff;
  38. margin-bottom: 5px;
  39. }
  40. .searching_container {
  41. height: 40px;
  42. width: 100%;
  43. box-sizing: border-box;
  44. padding: 4px;
  45. background: #fff;
  46. margin-bottom: 5px;
  47. }
  48. .search_icon_box {
  49. width: 100%;
  50. height: 36px;
  51. background: #f1f2f3;
  52. display: flex;
  53. flex-direction: row;
  54. align-items: center;
  55. justify-content: center;
  56. border-radius: 4px;
  57. }
  58. .search_text {
  59. /* Input */
  60. width: 32px;
  61. height: 22px;
  62. /* 简体中文/文本/大 */
  63. font-family: 'PingFang SC';
  64. font-style: normal;
  65. font-weight: 400;
  66. font-size: 16px;
  67. line-height: 22px;
  68. /* identical to box height, or 138% */
  69. /* Neutral/6 */
  70. color: #919ba1;
  71. /* Inside auto layout */
  72. flex: none;
  73. order: 1;
  74. flex-grow: 0;
  75. }
  76. .header_title {
  77. /* 简体中文/次级标题/中 */
  78. font-family: 'PingFang SC';
  79. font-style: normal;
  80. font-weight: 500;
  81. font-size: 16px;
  82. line-height: 22px;
  83. /* identical to box height, or 138% */
  84. /* Neutral/1 */
  85. color: #171a1c;
  86. /* Inside auto layout */
  87. flex: none;
  88. order: 0;
  89. flex-grow: 0;
  90. }
  91. .contacts_item_cell {
  92. background: #fff;
  93. }