conference.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /* pages/conference/conference.wxss */
  2. page{
  3. background: #fff;
  4. padding-bottom: 30rpx;
  5. }
  6. .banner{
  7. width: 100%;
  8. height: 300rpx;
  9. border-radius: 18rpx;
  10. }
  11. .name{
  12. font-size: 32rpx;
  13. margin-top: 20rpx;
  14. color: #333;
  15. margin-bottom: 30rpx;
  16. }
  17. .info text{
  18. color: #666;
  19. display: block;
  20. margin-bottom: 20rpx;
  21. }
  22. .title{
  23. font-size: 32rpx;
  24. color: #000;
  25. margin-bottom: 20rpx;
  26. }
  27. .content{
  28. color: #666;
  29. line-height: 52rpx;
  30. margin-bottom: 20rpx;
  31. }
  32. .post{
  33. width: 100% !important;
  34. background: #0580D3;
  35. color: #fff;
  36. display: block;
  37. font-size: 34rpx;
  38. height: 90rpx;
  39. line-height: 90rpx;
  40. padding: 0;
  41. border-radius: 18rpx;
  42. margin: 30rpx 0;
  43. }
  44. .bg{
  45. position: fixed;
  46. width: 100%;
  47. height: 100vh;
  48. top: 0;
  49. left: 0;
  50. z-index: 99;
  51. background: rgba(0,0,0,.5);
  52. padding: 50rpx 0;
  53. overflow: auto;
  54. }
  55. .form{
  56. background: #fff;
  57. border-radius: 18rpx;
  58. padding: 50rpx 60rpx;
  59. display: block;
  60. position: relative;
  61. width: 90%;
  62. margin: auto;
  63. }
  64. .form_tt{
  65. text-align: center;
  66. color: #333;
  67. font-size: 30rpx;
  68. margin-bottom: 50rpx;
  69. }
  70. .item{
  71. background: #F7F7F7;
  72. height: 72rpx;
  73. border-radius: 10rpx;
  74. position: relative;
  75. display: flex;
  76. margin-bottom: 18rpx;
  77. padding: 0 20rpx;
  78. }
  79. .item label{
  80. line-height: 72rpx;
  81. color: #999;
  82. width: 32%;
  83. }
  84. .item input{
  85. width: 63%;
  86. height: 72rpx;
  87. }
  88. .item picker{
  89. width: 63%;
  90. }
  91. .form .ts{
  92. display: block;
  93. text-align: center;
  94. color: #999;
  95. font-size: 22rpx;
  96. line-height: 50rpx;
  97. }
  98. .close{
  99. width: 50rpx;
  100. position: absolute;
  101. top: 20rpx;
  102. right: 20rpx;
  103. }
  104. .code{
  105. position: absolute;
  106. color: #1682DA;
  107. font-size: 22rpx;
  108. right: 24rpx;
  109. top: 0;
  110. line-height: 72rpx;
  111. z-index: 99;
  112. }
  113. .picker{
  114. line-height: 72rpx;
  115. }
  116. .list{
  117. /* box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.2); */
  118. /* border-radius: 20rpx; */
  119. display: flex;
  120. /* padding: 20rpx; */
  121. /* box-shadow: 0 0 15rpx 0px rgba(0, 0, 0, 0.2); */
  122. /* margin: 0 20rpx 40rpx; */
  123. border-bottom: 1px solid #F0F0F0;
  124. padding: 28rpx 0;
  125. }
  126. .list image{
  127. width: 20%;
  128. /* height: 50px; */
  129. }
  130. .list>view{
  131. width: 80%;
  132. vertical-align: middle;
  133. padding-left: 20rpx;
  134. }
  135. .list .tt{
  136. margin-bottom: 20rpx;
  137. text-overflow: ellipsis;
  138. overflow: hidden;
  139. white-space: nowrap;
  140. font-size: 28rpx;
  141. }
  142. .list text{
  143. color: #999;
  144. display: block;
  145. overflow: hidden;
  146. text-overflow: ellipsis;
  147. display: -webkit-box;
  148. -webkit-line-clamp: 2;
  149. -webkit-box-orient: vertical;
  150. white-space: normal;
  151. font-size: 26rpx;
  152. }