conference.wxss 2.4 KB

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