12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* parents/pages/growth/growth.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- .list {
- padding: 10rpx 20rpx;
- position: relative;
- }
- .list::after {
- content: "";
- position: absolute;
- left: 30rpx;
- top: 0;
- height: 100%;
- border-left: dashed 1rpx #ccc;
- z-index: -1;
- }
- .li {
- margin: 20rpx auto;
- background: #fff;
- border-radius: 18rpx;
- padding: 30rpx;
- }
- .li-label {
- font-size: 26rpx;
- color: #000;
- margin: 40rpx auto 20rpx auto;
- padding-left: 34rpx;
- position: relative;
- }
- .li-label::after {
- content: "";
- position: absolute;
- top: 50%;
- left: 0;
- transform: translateY(-50%);
- width: 20rpx;
- height: 20rpx;
- border-radius: 100rpx;
- background: linear-gradient(90deg,rgba(81,206,255,1),rgba(0,183,255,1));
- }
|