hotel.wxss 1.2 KB

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