app.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /**app.wxss**/
  2. page{
  3. background: #FFC674;
  4. }
  5. .li{
  6. margin: 0 24rpx;
  7. background: #fff;
  8. border-radius:24rpx;
  9. text-align: center;
  10. position: relative;
  11. }
  12. .li-title{
  13. color: #393939;
  14. font-size: 34rpx;
  15. /* text-align: center; */
  16. padding: 68rpx 0 32rpx 24rpx;
  17. }
  18. .answer{
  19. color: #7C819D;
  20. font-size: 30rpx;
  21. padding: 60rpx 0 50rpx 58rpx;
  22. border-top: 1rpx solid #DADCE6;
  23. text-align: left;
  24. }
  25. .li-img-answer-yes{
  26. width:78rpx;
  27. height:78rpx;
  28. }
  29. .container {
  30. padding: 0rpx;
  31. }
  32. .wrapper{
  33. padding-top: 120rpx;
  34. }
  35. .block{
  36. position: fixed;
  37. top: 0rpx;
  38. left: 24rpx;
  39. width: 40rpx;
  40. height: 34rpx;
  41. z-index: 10000;
  42. }
  43. .guide-img{
  44. width: 100%;
  45. height: 1158rpx;
  46. }
  47. .li-red-title{
  48. color: #E19220;
  49. font-size: 34rpx;
  50. font-weight: 600;
  51. text-align: left;
  52. padding-top: 30rpx;
  53. padding-left: 24rpx;
  54. }
  55. .guide-btn{
  56. color: #000000;
  57. font-size: 36rpx;
  58. margin: 0 auto;
  59. width:314rpx;
  60. height:88rpx;
  61. background:rgba(235,129,2,1);
  62. border-radius:44rpx;
  63. line-height: 88rpx;
  64. text-align: center;
  65. position: absolute;
  66. bottom: 10%;
  67. left: 29%;
  68. }
  69. button,
  70. button::after {
  71. border: none;
  72. border-radius: 0;
  73. padding: 0;
  74. margin: 0;
  75. transition: all .3s;
  76. background: none;
  77. }
  78. .showModel{
  79. width: 100%;
  80. height: 100%;
  81. position: fixed;
  82. top: 0;
  83. left: 0;
  84. background: #000;
  85. opacity: 0.5;
  86. overflow: hidden;
  87. z-index: 1000;
  88. color: #fff;
  89. }
  90. .model{
  91. z-index: 1001;
  92. position: fixed;
  93. top: 30%;
  94. margin: 0 50rpx;
  95. background: #FFC674;
  96. border-radius:30rpx;
  97. text-align: center;
  98. border: 6rpx solid #000;
  99. }
  100. .white{
  101. position:absolute;
  102. top:0;
  103. left:0;
  104. z-index: 10000;
  105. width:93.6%;
  106. height:1158rpx;
  107. padding:0;
  108. background: #fff;
  109. margin:177rpx 3.2%;
  110. transition: all .5s;
  111. border-radius:24rpx;
  112. /* animation: line 0.5s infinite ease-in-out; */
  113. }
  114. /* @keyframes line {
  115. 10% {
  116. width: 100%;
  117. }
  118. 100% {
  119. width: 10%;
  120. }
  121. } */