12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .navbar{
- position: relative
- }
- .back-icon, .home-icon{
- width: 28px;
- height: 100%;
- position: absolute;
- transform: translateY(-50%);
- top: 50%;
- display: flex;
- }
- .back-icon{
- left: 16px;
- }
- .home-icon{
- left: 44px
- }
- .back-icon image{
- width: 28px;
- height: 28px;
- margin: auto;
- }
- .home-icon image{
- width: 20px;
- height: 20px;
- margin: auto;
- }
- .nav-title, .nav-icon{
- position: absolute;
- transform: translate(-50%, -50%);
- left: 30%;
- top: 50%;
- font-size: 0;
- font-weight: bold;
- width: 60%;
- }
- .input-box {
- width: 100%;
- height: 100%;
- /* background-color: #eee; */
- justify-content: center;
- align-items: center;
- float: left;
- margin-left: 3%;
- display: flex;
- }
-
- .input-box input {
- font-size: 12px;
- color: #333;
- width: 90%;
- height: 30px;
- background-color: #ffffff;
- border-radius: 44rpx;
- padding-left: 7%;
- padding-right: 3%;
- border: 1rpx solid #E5E5E5;
- }
- .weui-icon-search_in-box{
- margin-left: -60rpx;
- }
|