problemList.wxss 614 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* problemList.wxss */
  2. .pro_list_wrap{
  3. padding: 30rpx 0 0;
  4. }
  5. .each_pro{
  6. height:100rpx;
  7. font-size: 24rpx;
  8. font-weight: bold;
  9. line-height: 100rpx;
  10. position: relative;
  11. color: #242424;
  12. background-color: #fff;
  13. padding: 0 0 0 36rpx;
  14. border-bottom: 1px solid #e2e2e2;
  15. }
  16. .with_arrow{
  17. position: absolute;
  18. top: 50%;
  19. right: 30rpx;
  20. width: 16rpx;
  21. height: 31rpx;
  22. margin-top:-15.5rpx;
  23. }
  24. .pro_footer{
  25. width: 100%;
  26. height: 98rpx;
  27. font-size: 24rpx;
  28. line-height: 98rpx;
  29. text-align: center;
  30. color:#fff;
  31. background-color: #b4a078;
  32. position: fixed;
  33. left: 0;
  34. bottom: 0;
  35. z-index: 2;
  36. }