index.wxss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .page {
  2. margin-bottom: 138rpx;
  3. }
  4. .page_item{
  5. border-radius: 5px;
  6. box-shadow: 0rpx 3rpx 5rpx #DBDBDB;
  7. margin: 30rpx;
  8. padding: 0rpx;
  9. overflow: hidden;
  10. display: flex;
  11. flex-direction: column;
  12. justify-content: center;
  13. align-items: center;
  14. }
  15. .item_pic{
  16. border-top-right-radius: 5px;
  17. border-top-left-radius: 5px;
  18. width:695rpx;
  19. }
  20. .item_title {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. text-align: center;
  25. padding: 0 30rpx 0 30rpx;
  26. font-size: 36rpx;
  27. }
  28. .item_price {
  29. display: flex;
  30. flex-direction: row;
  31. justify-content: center;
  32. padding: 30rpx;
  33. align-items: center;
  34. font-size:36rpx;
  35. color:#ff9900;
  36. }
  37. .item_null {
  38. margin: 50rpx 30rpx 30rpx 30rpx;
  39. padding: 0rpx;
  40. height: 60rpx;
  41. display: flex;
  42. flex-direction: row;
  43. align-items: center;
  44. justify-content: center;
  45. }
  46. .item_null .text {
  47. color: #707070;
  48. margin: 0 20rpx 0 20rpx;
  49. font-size: 35rpx;
  50. }
  51. .item_null .left_line, .right_line{
  52. width: 120rpx;
  53. height: 1rpx;
  54. }
  55. .item_null .left_line{
  56. background: linear-gradient(to right, #DBDBDB , #999);
  57. }
  58. .item_null .right_line{
  59. background: linear-gradient(to left, #DBDBDB , #999);
  60. }
  61. .nxh__button3 {
  62. width: 300rpx;
  63. }
  64. .cash {
  65. position: fixed;
  66. bottom: 0rpx;
  67. height: 138rpx;
  68. width: 750rpx;
  69. background: #fff;
  70. display: flex;
  71. flex-direction: row;
  72. justify-content: space-around;
  73. align-items: center;
  74. }