12345678910111213141516171819202122232425262728293031323334353637 |
- .imagesize {
- width: 120rpx;
- height: 92rpx;
- }
- .n-horbar {
- white-space: nowrap;
- &-item {
- display: inline-block;
- }
- }
- .highup-border {
- border: 4rpx solid transparent;
- padding: 16rpx 8rpx 24rpx 8rpx;
- border-radius: 16rpx;
- margin-right: 16rpx;
- color: #777;
- font-size: 22rpx;
- transition: border-color linear 0.1s;
- &:nth-last-child(1) {
- margin-right: 0;
- }
- .text {
- text-align: center;
- }
- &-selected {
- border-color: #555;
- .text {
- color: #333;
- }
- }
- }
|