hotel.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* pages/order/order.wxss */
  2. page{
  3. padding: 0;
  4. }
  5. .content{
  6. height: calc(100vh - 80rpx);
  7. overflow: auto;
  8. padding: 30rpx;
  9. }
  10. .list{
  11. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  12. border-radius: 20rpx;
  13. display: flex;
  14. /* padding: 20rpx; */
  15. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  16. /* margin: 0 20rpx 40rpx; */
  17. padding: 28rpx;
  18. background: #fff;
  19. position: relative;
  20. margin-bottom: 40rpx;
  21. }
  22. .list image{
  23. width: 25%;
  24. height: 210rpx;
  25. }
  26. .list>view{
  27. width: 75%;
  28. padding-left: 20rpx;
  29. vertical-align: middle;
  30. }
  31. .list .title{
  32. margin-bottom: 30rpx;
  33. text-overflow: ellipsis;
  34. overflow: hidden;
  35. white-space: nowrap;
  36. font-size: 28rpx;
  37. }
  38. .list text{
  39. color: #666;
  40. display: block;
  41. overflow: hidden;
  42. text-overflow: ellipsis;
  43. display: -webkit-box;
  44. -webkit-line-clamp: 2;
  45. -webkit-box-orient: vertical;
  46. white-space: normal;
  47. font-size: 26rpx;
  48. margin-bottom: 20rpx;
  49. }
  50. .btn{
  51. width: 132rpx;
  52. height: 56rpx;
  53. background: #09A65E;
  54. border-radius: 6px;
  55. text-align: center;
  56. line-height: 56rpx;
  57. color: #fff;
  58. font-size: 26rpx;
  59. position: absolute;
  60. bottom: 28rpx;
  61. right: 28rpx;
  62. }