1234567891011121314151617181920212223242526272829303132333435 |
- /* 搜索和轮播图 */
- .business-header{
- width:750rpx;
- position: relative;
- }
- .lw-search {
- position: absolute;
- top:20rpx;
- z-index: 1000;
- }
- .lw-search .search-form {
- width:544rpx;
- }
- .lw-tab {
- width:200rpx;
- position: absolute;
- bottom: 200rpx;
- left: 20rpx;
- z-index: 1000;
- background:white;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .lw-tab .tab-item {
- text-align: center;
- height:50rpx;
- line-height: 50rpx;
- }
- .lw-tab .border-bottom{
- border-bottom: 1px solid #eee;
- }
- .lw-tab .tab-item.active {
- background: #e60012;
- color:white;
- }
|