index.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .container{
  2. padding: 18rpx 0 30rpx;
  3. .ac_header{
  4. width: 100%;
  5. height: 104rpx;
  6. background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  7. position: relative;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. box-sizing: border-box;
  12. padding: 0 80rpx 0 56rpx;
  13. &::before,&::after{
  14. content: '';
  15. width: 100%;
  16. height: 4rpx;
  17. position: absolute;
  18. bottom: 0;
  19. background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 100%);
  20. }
  21. &::before{
  22. bottom: unset;
  23. top: 0;
  24. }
  25. .dateselect{
  26. display: inline-block;
  27. max-height: 48rpx;
  28. }
  29. .new_btn{
  30. color: #4C2508;
  31. >image {
  32. height: 54rpx;
  33. display: inline-block;
  34. vertical-align: middle;
  35. }
  36. }
  37. }
  38. .ac_select{
  39. display: flex;
  40. justify-content: space-between;
  41. padding-right: 40rpx;
  42. margin-top: 40rpx;
  43. >view{
  44. display: inline-block;
  45. width: 48%;
  46. text-align: right;
  47. >image{
  48. height: 40rpx;
  49. display: inline-block;
  50. vertical-align: middle;
  51. &:first-of-type{
  52. height: 50rpx;
  53. margin-right: 20rpx;
  54. }
  55. }
  56. }
  57. }
  58. .ac_room{
  59. width: 100%;
  60. margin-top: 30rpx;
  61. height: calc(100% - 310rpx);
  62. overflow-y: auto;
  63. overflow-x: hidden;
  64. .roomitem{
  65. .roominfo{
  66. margin-bottom: 30rpx;
  67. }
  68. }
  69. }
  70. .toast{
  71. opacity: 0;
  72. pointer-events: none;
  73. transition: ease .3s all;
  74. }
  75. .toast_show{
  76. opacity: 1;
  77. pointer-events: auto;
  78. }
  79. }