sync.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. page {
  2. height: 100%;
  3. }
  4. .container {
  5. background: linear-gradient(to bottom, #ffffff, #F5F5F5);
  6. height: 100%;
  7. width: 100%;
  8. display: flex;
  9. padding: 30rpx 30rpx 0;
  10. flex-direction: column;
  11. }
  12. .search{
  13. position: relative;
  14. height: 80rpx;
  15. border: 1px solid rgba(0,0,0,0.1);
  16. border-radius: 40rpx;
  17. background: #fff;
  18. margin-bottom: 30rpx;
  19. }
  20. .search view{
  21. background: none;
  22. width: 80%;
  23. border: none;
  24. padding-left: 20rpx;
  25. font-size: 24rpx;
  26. color: #fff;
  27. line-height: 24rpx;
  28. vertical-align: middle;
  29. }
  30. .search input{
  31. color:rgba(0,0,0,0.3);
  32. height: 100%;
  33. padding: 0 28rpx 0 70rpx;
  34. position: relative;
  35. z-index: 999;
  36. border-radius: 8rpx;
  37. font-size: 28rpx;
  38. border: none;
  39. }
  40. .search image{
  41. width: 28rpx;
  42. height: 28rpx;
  43. display: inline-block;
  44. position: absolute;
  45. top: 50%;
  46. transform: translateY(-50%);
  47. left: 28rpx;
  48. }
  49. .room-list {
  50. padding-bottom: 30rpx;
  51. flex: 1;
  52. overflow-y: auto;
  53. }
  54. .sign {
  55. margin-bottom: 20rpx;
  56. box-shadow: 0px 0px 12rpx 0px rgba(0,0,0,0.1);
  57. border-radius: 12rpx;
  58. overflow: hidden;
  59. }
  60. .sign image {
  61. width: 100%;
  62. display: block;
  63. }
  64. .footer {
  65. padding: 20rpx;
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. }
  70. .info {
  71. flex: 1;
  72. }
  73. .title {
  74. font-size: 28rpx;
  75. font-family: PingFangSC-Medium, PingFang SC;
  76. font-weight: 500;
  77. color: #333333;
  78. line-height: 40rpx;
  79. margin-bottom: 6rpx;
  80. }
  81. .time {
  82. font-size: 22rpx;
  83. font-family: PingFangSC-Regular, PingFang SC;
  84. font-weight: 400;
  85. color: #666666;
  86. line-height: 32rpx;
  87. }
  88. .actions {
  89. flex: none;
  90. }
  91. .actions button {
  92. width: 144rpx;
  93. height: 60rpx;
  94. background-color: #FFFFFF;
  95. border-radius: 30rpx;
  96. border: 1px solid #ED5D18;
  97. color: #ED5D18;
  98. font-size: 22rpx;
  99. padding: 0;
  100. }
  101. .actions button.active {
  102. background-color: #ED5D18;
  103. color: #fff;
  104. }
  105. .unbrand {
  106. margin-top: 180rpx;
  107. text-align: center;
  108. }
  109. .unbrand image {
  110. display: inline-block;
  111. width: 250rpx;
  112. height: 274rpx;
  113. }
  114. .unbrand .text {
  115. color: #666C7D;
  116. font-size: 30rpx;
  117. margin-top: 40rpx;
  118. }