12345678910111213141516171819202122232425262728293031323334353637 |
- html,
- body {
- height: 100%;
- font-family: PingFangSC-Regular;
- color: #333333;
- font-size: 32rpx;
- background: #ffffff;
- }
- .content,.content-X {
- box-sizing: border-box;
- padding-top: 24rpx;
- }
- .content-X{
- padding-bottom: 68rpx;
- }
- .content>view,.content-X>view{
- height: 100rpx;
- background: #ffffff;
- }
- .content>view:last-child,.content-X>view:last-child{
- box-sizing: border-box;
- padding-left: 40rpx;
- display: flex;
- align-items: center;
- }
- .content>.item>.wrap,.content-X>.item>.wrap{
- height: 98rpx;
- margin-left: 40rpx;
- border-bottom: 2rpx solid #eeeeee;
- display: flex;
- align-items: center;
- }
- .content>.item>.wrap>image,.content-X>.item>.wrap>image{
- width: 40rpx;
- height: 40rpx;
- margin-right: 40rpx;
- }
|