12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- html {
- background-color: #F3F3F3;
- font-size: 100px;
- }
- nav {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- font-size: 0rem;
- height: 0.44rem;
- width: 100%;
- background-color: #5d7dff;
- }
- nav i {
- display: inline-block;
- width: 0.16rem;
- height: 0.16rem;
- line-height: 0.44rem;
- margin-left: 0.1rem;
- background-image: url(../img/back.png);
- background-repeat: no-repeat;
- background-size: 100% auto;
- }
- nav p {
- display: inline-block;
- width: 90%;
- text-align: center;
- line-height: 0.44rem;
- color: #fff;
- font-size: 0.17rem;
- }
- /*search*/
- .search{
- height: 0.35rem;
- margin: 0 0.1rem;
- margin-top: 0.1rem;
- background: #F3F3F3;
- border-radius: 0.06rem;
- display: flex;
- align-items: center;
- }
- .search i{
- display: inline-block;
- width: 0.17rem;
- height: 0.17rem;
- background: url(../img/search.png) no-repeat;
- background-size:100% ;
- margin-left: 0.1rem;
- }
- .search em{
- display: block;
- width: 0.17rem;
- height: 0.17rem;
- background: url(../img/delete.png) no-repeat;
- background-size:100% ;
- margin-right: 0.09rem;
- display: none;
- }
- .search input{
- border: none;
- outline: none;
- font-size: 0.16rem;
- margin-left: 0.08rem;
- flex: 1;
- background: #F3F3F3;
- }
- .container{
- background: #FFFFFF;
- padding-top: 0.44rem;
- }
- .container ul {
- padding-top: 0.1rem;
- }
- .container ul li{
- height: 0.52rem;
- border-top: 0.01rem solid #D8D8D8;
- line-height: 0.52rem;
- font-size: 0.16rem;
- color: #222222;
- padding-left: 0.2rem;
- }
- .container ul li:nth-of-type(1){
- border-top: none;
- }
- .container ul .searchActive{
- text-align: center;
- color: #D8D8D8;
- padding-left: 0;
- }
|