product.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .product-wrapper{
  2. background: #fff;
  3. width: 100%;
  4. height: 100%;
  5. padding-top: 44rpx;
  6. }
  7. .product-box{
  8. width: 680rpx;
  9. height: 658rpx;
  10. background-image: url('http://reader-wx.ai160.com/images/reader/pay/product-bg.png');
  11. background-size: 100% 100%;
  12. margin: 0 auto;
  13. position: relative;
  14. padding-top: 15rpx;
  15. box-sizing: border-box;
  16. }
  17. .product-box .title{
  18. width: 100%;
  19. height: 125rpx;
  20. display: flex;
  21. align-items: center;
  22. justify-content: space-between;
  23. margin-top: 35rpx;
  24. padding: 50rpx;
  25. box-sizing: border-box;
  26. }
  27. .product-box .title .name{
  28. color: #fff;
  29. font-weight: 500;
  30. font-size: 42rpx;
  31. /* margin-left: 35rpx; */
  32. /* margin-right: 50rpx; */
  33. }
  34. .product-box .title .price{
  35. font-size: 84rpx;
  36. font-weight: 600;
  37. color: #fff;
  38. }
  39. .product-box .title .price-tag{
  40. font-size: 48rpx;
  41. font-weight: 600;
  42. color: #fff;
  43. display: flex;
  44. align-items: center;
  45. }
  46. .product-box .origin{
  47. font-size: 33rpx;
  48. font-weight: 500;
  49. color: rgba(255,255,255,.7);
  50. position: absolute;
  51. top: 167rpx;
  52. left: 408rpx;
  53. text-decoration: line-through;
  54. }
  55. .product-box .btn{
  56. width: 480rpx;
  57. height: 80rpx;
  58. border-radius: 41rpx;
  59. background: #ff9c00;
  60. text-align: center;
  61. line-height: 80rpx;
  62. color: #fff;
  63. font-size: 40rpx;
  64. font-weight: 500;
  65. position: absolute;
  66. left: 0;
  67. right: 0;
  68. margin: 0 auto;
  69. bottom: 54rpx;
  70. }