Sanakey
2022-10-28 0e185fa6db8e3f4209e63c079750a26fe3feddaa
提交 | 用户 | age
d98d05 1 /* pages/experience.wxss */
S 2 .container{
3   margin: 10rpx 20rpx;
4   background-color: #fff;
5 }
6 .nav-img{
7   position: relative;
8 }
9 .desc{
10   position: absolute;
11   bottom: 40rpx;
12   font-size: 36rpx;
13   color: #fff;
14   left: 30rpx;
15   font-weight: bold;
16 }
17
18 .navBar{
19   display: flex;
20   flex-direction: row;
21   justify-content: flex-start;
22   margin-bottom: 20rpx;
23 }
24 .title{
25   font-size: 32rpx;
26   color: #cacaca;
27   font-weight: bold;
28   padding: 0 16rpx;
29 }
30 .title+.title{
31   margin-left: 30rpx;
32 }
33 .selected{
34   font-size: 36rpx;
35   color: #333;
36   position: relative;
37 }
38 .selected::after{
39   content: ' ';
40   position: absolute;
41   top: 0;
42   right: 0;
43   width: 16rpx;
44   height: 16rpx;
45   border-radius: 10rpx;
46   background-color: #f23232;
47 }
48