12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- html,
- body {
- height: 100%;
- background-color: #f5f5f5;
- font-family: PingFangSC-Regular;
- color: #333333;
- }
- .container{
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .container > .contentNull {
- flex: 1;
- background: #ffffff;
- position: relative;
- }
- .container > .contentNull > view {
- position: absolute;
- top: 332rpx;
- left: 222rpx;
- display: flex;
- flex-direction: column;
- }
- .container > .contentNull > view > image {
- width: 308rpx;
- height: 308rpx;
- }
- .container > .contentNull > view > text {
- font-size: 28rpx;
- color: #9197a3;
- text-align: center;
- }
- .container .content>view{
- padding: 40rpx 66rpx 42rpx 32rpx;
- background: #ffffff;
- display: flex;
- flex-direction: column;
- margin-bottom: 20rpx;
- }
- .container .content>view>view{
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .container .content>view>view:first-child{
- font-size: 34rpx;
- margin-bottom: 18rpx;
- position: relative;
- }
- .container .content>view>view:first-child image{
- width: 14rpx;
- height: 24rpx;
- position: absolute;
- top: 12rpx;
- right: -34rpx;
- }
- .container .content>view>view:last-child{
- font-size: 28rpx;
- }
- .container .content>view>view:last-child{
- color: #999999;
- }
|