123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /* 返回 */
- .nav {
- background-color: #101010;
- z-index: 3;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- /* height: 10%; */
- height: .88rem;
- display: flex;
- }
- .back{
- position: absolute;
- left: 0;
- top: 0;
- z-index: 3;
- width: 10%;
- height: .88rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .back img {
- width: .18rem;
- }
- /* 页面标题 */
- .pageTitle {
- height: .88rem;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- background-color: #000;
- }
- /* 页面容器 */
- .container {
- width: 100%;
- min-height: 100vh;
- position: relative;
- }
- /* 搜索 */
- .searchContent {
- padding: 1.2rem .26rem 0;
- }
- .search {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 50px;
- border-radius: 8px;
- background-color: #1C1A1B;
- }
- .searchLeft {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 80px;
- }
- .searchImg {
- width: 20px;
- height: 20px;
- }
- .searchInput {
- background-color: #1C1A1B;
- border: none;
- outline: none;
- resize: none;
- height: 100%;
- line-height: 100%;
- width: 100%;
- color: #fff;
- text-align: left;
- /* font-size: .3rem; */
- }
- .clearTextImg {
- width: 20px;
- height: 20px;
- margin-right: .3rem;
- }
- .main {
- margin: .26rem .26rem 0;
- min-height: 73vh;
- }
- .title {
- margin-top: .3rem;
- font-size: .3rem;
- color: #E4E4E4;
- }
- .history {
- }
- .history li {
- margin-top: .22rem;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .history li p {
- color: #E4E4E4;
- font-size: .28rem;
- }
- .history li img {
- width: .4rem;
- height: .4rem;
- }
- .footer {
- width: 100%;
- position: relative;
- bottom: 0;
- }
|