| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 | 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;}
 |