| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- .but{
- width:80%;
- height:40px;
- line-height: 40px;
- text-align: center;
- border-radius: 20px;
- background-color:#007aff ;
- color:#fff;
- margin:0 auto;
- margin-top: 100px;
- }.contacts_container {
- box-sizing: border-box;
- /* height: 100%; */
- /* overflow-y: auto; */
- }
- .contacts_navbar_center {
- width: 98px;
- height: 22px;
- }
- .u-nav-slot {
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-width: 0.5px;
- border-radius: 100px;
- border-color: #ccc;
- padding: 3px 7px;
- }
- .contacts_header_container {
- background: #fff;
- }
- .search_container {
- height: 40px;
- width: 100%;
- box-sizing: border-box;
- padding: 4px;
- background: #fff;
- margin-bottom: 5px;
- }
- .searching_container {
- height: 40px;
- width: 100%;
- box-sizing: border-box;
- padding: 4px;
- background: #fff;
- margin-bottom: 5px;
- }
- .search_icon_box {
- width: 100%;
- height: 36px;
- background: #f1f2f3;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 4px;
- }
- .search_text {
- /* Input */
- width: 32px;
- height: 22px;
- /* 简体中文/文本/大 */
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 400;
- font-size: 16px;
- line-height: 22px;
- /* identical to box height, or 138% */
- /* Neutral/6 */
- color: #919ba1;
- /* Inside auto layout */
- flex: none;
- order: 1;
- flex-grow: 0;
- }
- .header_title {
- /* 简体中文/次级标题/中 */
- font-family: 'PingFang SC';
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- line-height: 22px;
- /* identical to box height, or 138% */
- /* Neutral/1 */
- color: #171a1c;
- /* Inside auto layout */
- flex: none;
- order: 0;
- flex-grow: 0;
- }
- .contacts_item_cell {
- background: #fff;
- }
|