conference.wxss 2.4 KB

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