123456789101112131415161718192021222324252627282930313233343536 |
- /* common/components/drop-down/index.wxss */
- .drop-container{
- width: 100%;
- height: 100%;
- color: #000;
- background: rgba(0, 0, 0, 0.5);
- overflow: hidden;
- }
- .drop-body{
- background: #fff;
- padding: 0 40rpx 40rpx;
- font-size: 28rpx;
- overflow: hidden;
- }
- .drop-nav{
- display: flex;
- justify-content: space-between;
- height: 120rpx;
- line-height: 120rpx;
- font-weight: bold;
- }
- .drop-tag{
- display: flex;
- align-items: center;
- }
- .drop-item{
- height: 120rpx;
- line-height: 120rpx;
- display: flex;
- justify-content: space-between;
- }
- .drop-item-active{
- color: #E02F2F;
- }
|