|
@@ -148,7 +148,8 @@ font-size: 15px;
|
|
|
width: 210rpx;
|
|
|
height: 20rpx;
|
|
|
display: flex;
|
|
|
- flex-direction: row;
|
|
|
+ flex-flow: row nowrap;
|
|
|
+ justify-content: center;
|
|
|
position: absolute;
|
|
|
left: 50%;
|
|
|
transform: translateX(-50%);
|
|
@@ -164,17 +165,17 @@ font-size: 15px;
|
|
|
/*未选中时的小圆点样式 */
|
|
|
|
|
|
.dot {
|
|
|
- width: 70rpx;
|
|
|
+ width: 40rpx;
|
|
|
height: 10rpx;
|
|
|
border-radius: 14rpx;
|
|
|
- margin-right: 26rpx;
|
|
|
- background-color: #de8a78;
|
|
|
+ margin-right: 20rpx;
|
|
|
+ background-color: #ccc;
|
|
|
+ opacity: 0.5;
|
|
|
}
|
|
|
|
|
|
/*选中以后的小圆点样式 */
|
|
|
|
|
|
.active_dot {
|
|
|
- width: 70rpx;
|
|
|
- height: 10rpx;
|
|
|
- background-color: #fc4308;
|
|
|
+ background-color: #333;
|
|
|
+ opacity: 0.5;
|
|
|
}
|