123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* components/navbar/index.wxss */
- .navbar {
- width: 100%;
- overflow: hidden;
- position: relative;
- top: 0;
- left: 0;
- z-index: 10;
- background: #00C7C6;
- }
- .nav_position {
- position: absolute;
- left: 24rpx;
- bottom: 24rpx;
- z-index: 100;
- color: #FFFFFF;
- display: flex;
- box-sizing: border-box;
- }
- .box {
- flex: auto;
- height: 40rpx;
- }
- .icon_position_image {
- width: 40rpx;
- height: 40rpx;
- }
- .icon_down_img {
- width: 40rpx;
- height: 40rpx;
- }
- .backhome {
- color: #FFFFFF;
- position: absolute;
- height: 40rpx;
- left: 30rpx;
- bottom: 24rpx;
- z-index: 100;
- color: #FFFFFF;
- display: flex;
- box-sizing: border-box;
- }
- .backimage {
- height: 40rpx;
- width: 40rpx;
- vertical-align: middle;
- }
- .navbar-title {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- position: absolute;
- bottom: 0;
- left: 0;
- z-index: 10;
- background-color: #00C7C6;
- color: #fff;
- font-size: 30rpx;
- }
- .navbar-action-wrap {
- position: absolute;
- left: 20rpx;
- bottom: 14rpx;
- z-index: 100;
- line-height: 1;
- padding-top: 8rpx;
- padding-bottom: 8rpx;
- }
- .navbar-action-group {
- border: 2rpx solid #e8e8e8;
- border-radius: 40rpx;
- overflow: hidden
- }
- .navbar-action_item {
- padding: 6rpx 0;
- color: #333;
- }
- .navbar-action-group .navbar-action_item {
- border-right: 2rpx solid #e8e8e8;
- padding: 6rpx 24rpx;
- }
|