index.wxss 1.4 KB

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