info.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /* pages/contest/contest.wxss */
  2. page {
  3. background: #fff;
  4. }
  5. .home {
  6. width: 40rpx;
  7. height: 40rpx;
  8. position: absolute;
  9. top: 70rpx;
  10. left: 50rpx;
  11. z-index: 99;
  12. }
  13. .page-title {
  14. position: relative;
  15. z-index: 1;
  16. width: 100%;
  17. font-size: 32rpx;
  18. font-weight: 400;
  19. color: #FFFFFF;
  20. padding-top: 68rpx;
  21. text-align: center;
  22. }
  23. .bg {
  24. width: 100%;
  25. position: absolute;
  26. z-index: 0;
  27. }
  28. .form {
  29. padding-top: 370rpx;
  30. }
  31. .form-item {
  32. position: relative;
  33. height: 166rpx;
  34. }
  35. .form-item-bg {
  36. width: 100%;
  37. position: absolute;
  38. z-index: 0;
  39. }
  40. .content {
  41. height: 166rpx;
  42. display: flex;
  43. align-items: center;
  44. position: relative;
  45. z-index: 9;
  46. }
  47. .form-item-label {
  48. padding: 0 40rpx 0 80rpx;
  49. font-size: 32rpx;
  50. font-weight: 550;
  51. color: #161616;
  52. }
  53. .form-item-picker{
  54. margin: 0 30rpx;
  55. z-index:99 !important;
  56. background-color:#fff;
  57. top:-300rpx;
  58. position:absolute;
  59. width:calc(100% - 60rpx);
  60. box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.06);
  61. border-radius: 50rpx;
  62. height:300rpx;
  63. transition:all .2s;
  64. overflow: auto;
  65. padding:20rpx;
  66. }
  67. .form-item-leaf{
  68. padding:20rpx;
  69. }
  70. input, .select {
  71. padding-left: 24rpx;
  72. width: 500rpx!important;
  73. height: 106rpx;
  74. position: relative;
  75. display: flex;
  76. align-items: center;
  77. }
  78. .picker {
  79. width: 500rpx;
  80. height: 106rpx;
  81. display: flex;
  82. align-items: center;
  83. }
  84. .arrow {
  85. width: 24rpx;
  86. position: absolute;
  87. right: 40rpx;
  88. z-index: 0;
  89. }
  90. .phcolor {
  91. font-size: 32rpx;
  92. line-height: 44rpx;
  93. font-weight: 400;
  94. color: rgba(22, 22, 22,.18);
  95. }
  96. .button {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. position: relative;
  101. height: 166rpx;
  102. }
  103. .button-bg {
  104. width: 712rpx;
  105. position: absolute;
  106. z-index: 0;
  107. }
  108. .button-text {
  109. background-image: linear-gradient(to right, #57A8EF, #6247FF);
  110. width: 656rpx;
  111. height: 110rpx;
  112. border-radius: 120rpx;
  113. text-align: center;
  114. position: relative;
  115. z-index: 9;
  116. color: #FFFFFF;
  117. font-size: 48rpx;
  118. line-height: 110rpx;
  119. }
  120. .warning {
  121. display: flex;
  122. align-items: center;
  123. height: 55rpx;
  124. position: relative;
  125. z-index: 10;
  126. }
  127. .warning-icon {
  128. width: 36rpx;
  129. margin: 0 24rpx 0 98rpx;
  130. }
  131. .warning-text {
  132. font-size: 28rpx;
  133. font-weight: 400;
  134. color: #59598D;
  135. }