eventDetail.wxss 1.9 KB

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