123456789101112131415161718192021222324252627282930 |
- .layer {
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- width: 100%;
- >image{
- width: 34rpx;
- height: 34rpx;
- }
- text {
- font-size: 32rpx;
- color:#4C2508;
- display: inline-block;
- vertical-align: middle;
- margin: 0 20rpx;
- &.active {
- color: #4C2508;
- font-weight: bold;
- }
- }
- .number text {
- margin: 0 10rpx;
- cursor: pointer;
- &:first-of-type{
- margin-left: 0;
- }
- }
- }
|