conference.wxss 2.5 KB

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