ax-body{ display: block; height: 100%; background: #F6FAFF; } .page-background{ position: fixed; top: 0; left: 0; right: 0; z-index: 0; } .page-background image{ display: block; width: 100%; } .body{ display: flex; flex-direction: column; height: 100%; position: relative; z-index: 1; } /* 搜索框 */ .search-box{ display: flex; align-items: center; height: 50px; border-radius: 10px; background-color: #fff; font-size: 14px; color: #2b303a; padding: 0 10px; margin: 0 10px; } .search-box .input{ flex: 1; height: 50px; margin: 0 10px; } .search-box .icon{ font-weight: bold; } .search-box .clear{ margin: 0 10px; color: #f44033; } .search-box .txt{ transform: translateY(-1px); } /* 搜索历史 */ .history{ margin-top: 20px; } .history > .title{ display: flex; align-items: center; justify-content: space-between; padding: 0 10px; } .history > .title > .txt{ font-size: 16px; color: #2b303a; } .history > .title > .icon{ font-size: 18px; } .history > .list{ margin-top: 10px; padding: 0 10px; overflow: auto; } .history > .list .wrap{ white-space: nowrap; } .history > .list .item{ display: inline-flex; align-items: center; height: 30px; padding: 0px 15px; font-size: 14px; color: #2b303a; background-color: #fff; border-radius: 100pc; box-shadow: 0 0 5px rgba(0, 0, 0, 0.05); } .history > .list .item + .item{ margin-left: 10px; } /* 搜索结果 */ .result{ flex: 1; display: flex; flex-direction: column; margin-top: 20px; } .result > .title{ display: flex; align-items: center; justify-content: space-between; padding: 0 10px; } .result > .title > .total{ font-size: 14px; color: #aaa; } .result > .list{ flex: 1; margin-top: 10px; position: relative; } .result > .list > .wrap{ position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: auto; padding: 0 10px; } .result > .list .site{ background-color: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); } .result > .list .site + .site{ margin-top: 10px; } .result > .list .site .name{ font-size: 16px; font-weight: bold; color: #2b303a; } .result > .list .site .aux{ font-size: 12px; color: #aaa; margin-top: 10px; } .result > .list .site .info{ display: flex; align-items: center; justify-content: space-between; margin-top: 20px; font-size: 12px; } .result > .list .site .info .sta > .val{ margin: 0 5px; font-size: 16px; font-weight: bold; color: #222; } .result > .list .site .info .sta > .unit{ color: #aaa; } .result > .list .site .info .sta > .green{ color: #00aa3a; } .result > .list .site .info .sta > .blue{ color: #3071ff; } .result > .list .site .info .sta > .orange{ color: #fb9430; } .empty{ display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 14px; height: calc(100% - 10px); border-radius: 8px; background-color: #fff; box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); color: #ccc; } .empty .icon{ font-size: 20vw; margin-bottom: 10px; transform: translateX(5%); } .empty .txt{ color: #aaa; }