123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- html,
- body {
- height: 100%;
- background-color: #f5f5f5;
- font-size: 14px;
- }
- .banner {
- width: 750rpx;
- height: 300rpx;
- }
- .purchase-bg {
- width: 660rpx;
- margin: -86rpx 45rpx 30rpx;
- }
- .purchase-bg > view {
- background-color: white;
- border-radius: 16rpx;
- width: 100%;
- height: 450rpx;
- margin-bottom: 24rpx;
- box-shadow: 0 20rpx 52rpx 0 rgba(0, 0, 0, 0.04);
- position: relative;
- z-index: 10;
- }
- .purchase-bg > view > view:first-child {
- display: flex;
- height: 90rpx;
- font-size: 13px;
- color: #3296fb;
- line-height: 90rpx;
- border-bottom: 1px solid #f5f5f5;
- }
- .purchase-bg > view > view:first-child > text {
- margin-left: 45rpx;
- }
- .purchase-bg > view > view:first-child > image:nth-child(2),
- .person > image:nth-child(3) {
- width: 30rpx;
- height: 30rpx;
- margin: auto 45rpx auto auto;
- }
- .purchase-item {
- height: 180rpx;
- display: flex;
- margin-left: 50rpx;
- border-bottom: 1px solid #f5f5f5;
- }
- .purchase-item > image:nth-child(1) {
- width: 90rpx;
- height: 90rpx;
- margin: auto 24rpx auto 0;
- border-radius: 50%;
- }
- .purchase-item > view:nth-child(2) {
- display: flex;
- flex-direction: column;
- }
- .purchase-item > image:nth-child(3) {
- width: 20rpx;
- height: 30rpx;
- margin: auto 45rpx auto auto;
- }
- .purchase-item > view > text:first-child,
- .person > view > text:first-child {
- font-family: PingFangSC-Medium;
- font-size: 34rpx;
- color: #666666;
- line-height: 75rpx;
- margin-top: 24rpx;
- }
- .purchase-item > view > text:last-child,
- .person > view > text:last-child {
- font-family: PingFangSC-Regular;
- font-size: 26rpx;
- color: #999999;
- line-height: 36rpx;
- margin-top: 2rpx;
- }
- .person {
- width: 660rpx;
- height: 180rpx;
- display: flex;
- background-color: white;
- border-radius: 16rpx;
- margin: 0 45rpx 30rpx;
- box-shadow: 0 20rpx 52rpx 0 rgba(0, 0, 0, 0.04);
- position: relative;
- z-index: 10;
- }
- .person > image:nth-child(1) {
- width: 130rpx;
- height: 105rpx;
- margin: 45rpx 24rpx auto 50rpx;
- }
- .person > view {
- display: flex;
- flex-direction: column;
- }
- .footerbg {
- display: block;
- width: 280rpx;
- height: 56rpx;
- margin: 75rpx auto 45rpx;
- }
|