1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .product-wrapper{
- background: #fff;
- width: 100%;
- height: 100%;
- padding-top: 44rpx;
- }
- .product-box{
- width: 680rpx;
- height: 658rpx;
- background-image: url('http://reader-wx.ai160.com/images/reader/pay/product-bg.png');
- background-size: 100% 100%;
- margin: 0 auto;
- position: relative;
- padding-top: 15rpx;
- box-sizing: border-box;
- }
- .product-box .title{
- width: 100%;
- height: 125rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 35rpx;
- padding: 50rpx;
- box-sizing: border-box;
- }
- .product-box .title .name{
- color: #fff;
- font-weight: 500;
- font-size: 42rpx;
- /* margin-left: 35rpx; */
- /* margin-right: 50rpx; */
- }
- .product-box .title .price{
- font-size: 84rpx;
- font-weight: 600;
- color: #fff;
- }
- .product-box .title .price-tag{
- font-size: 48rpx;
- font-weight: 600;
- color: #fff;
- display: flex;
- align-items: center;
- }
- .product-box .origin{
- font-size: 33rpx;
- font-weight: 500;
- color: rgba(255,255,255,.7);
- position: absolute;
- top: 167rpx;
- left: 408rpx;
- text-decoration: line-through;
- }
- .product-box .btn{
- width: 480rpx;
- height: 80rpx;
- border-radius: 41rpx;
- background: #ff9c00;
- text-align: center;
- line-height: 80rpx;
- color: #fff;
- font-size: 40rpx;
- font-weight: 500;
- position: absolute;
- left: 0;
- right: 0;
- margin: 0 auto;
- bottom: 54rpx;
- }
|