123456789101112131415161718192021222324252627282930 |
- /* pages/about/about.wxss */
- .about-li{
- width: calc(100vw - 34rpx);
- height: 102rpx;
- display: flex;
- align-items: center;
- margin-right: 20rpx;
- position: relative;
- margin: 0 0 0 34rpx;
- border-bottom: 1rpx solid #E0DCD7;
- }
- .about-li text {
- margin: 0;
- background: none;
- text-align: left;
- padding: 0;
- line-height: 102rpx;
- font-size: 30rpx;
- color: #353535;
- font-weight: 400;
- font-weight: bold;
- font-size: 32rpx;
- }
- .about-li image.j {
- height: 22rpx;
- position: absolute;
- top: 40rpx;
- right: 34rpx;
- }
|