hotel.wxss 1.3 KB

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