1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .wrapper {
- left: 0;
- right: 0;
- bottom: 0;
- padding: 15rpx;
- padding-top: 20px;
- position: fixed;
- z-index: 20;
- background-color: rgba(100,100,100, 1);
- border-top-left-radius: 1em;
- border-top-right-radius: 1em;
- min-height: 100px;
- }
- .area{
- width: 100%;
- height: 50px;
- padding: 3px;
- color: #efefef;
- }
- .tab{
- display: flex;
- margin-bottom: 5px;
- }
- .tab .tab-item{
- flex: 1;
- padding: 3px 5px;
- }
- .tab .tab-item .item{
- border: 1px solid rgba(80,80,80, 1);
- border-radius: 3px;
- color: #efefef;
- font-size: 14px;
- text-align: center;
- background-color: rgba(80,80,80, 1);
- }
- .tab .tab-item .itemborder{
- border-color: #fe2a54;
- }
|