eventDetail.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. }
  77. .form_tt{
  78. text-align: center;
  79. color: #333;
  80. font-size: 30rpx;
  81. margin-bottom: 50rpx;
  82. }
  83. .item{
  84. background: #F7F7F7;
  85. height: 72rpx;
  86. border-radius: 10rpx;
  87. position: relative;
  88. display: flex;
  89. margin-bottom: 18rpx;
  90. padding: 0 28rpx;
  91. }
  92. .item label{
  93. line-height: 72rpx;
  94. color: #999;
  95. width: 32%;
  96. }
  97. .item input{
  98. width: 63%;
  99. height: 72rpx;
  100. }
  101. .item picker{
  102. width: 63%;
  103. }
  104. .form .ts{
  105. display: block;
  106. text-align: center;
  107. color: #999;
  108. font-size: 22rpx;
  109. line-height: 50rpx;
  110. }
  111. .form .post{
  112. margin-top: 20rpx;
  113. }
  114. .picker{
  115. line-height: 72rpx;
  116. }
  117. .code{
  118. position: absolute;
  119. color: #1682DA;
  120. font-size: 22rpx;
  121. right: 24rpx;
  122. top: 0;
  123. line-height: 72rpx;
  124. }