123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .item-list-simple-container {
- display: flex;
- align-items: center;
- justify-content: flex-start;
- flex-direction: column;
- .list-item {
- width: 100%;
- height: 120rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20rpx;
- .item-icon{
- width: 38rpx;
- height: 42rpx;
- display: flex;
- flex-shrink: 0;
- }
- .list-item-right{
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- margin-left: 30rpx;
- >view{
- width: 100%;
- text-align: left;
- }
- .item-title{
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #333333;
- }
- .item-content{
- box-sizing: border-box;
- font-family: "PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
- font-weight: 650;
- color: #aaaaaa;
- font-size: 28rpx;
- }
- }
- }
- }
|