survey.wxss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .survey-content {
  2. height: 100%;
  3. width: 90%;
  4. margin: 0 auto;
  5. overflow-y: auto;
  6. }
  7. .survey-content .s-title {
  8. font-family: PingFang SC;
  9. font-weight: 800;
  10. font-size: 42rpx;
  11. color: #FFFFFF;
  12. margin-top: 1vh;
  13. margin-bottom: 15rpx;
  14. }
  15. .survey-content .s-type {
  16. background: #00A4FF;
  17. border-radius: 20rpx;
  18. font-family: Microsoft YaHei;
  19. font-weight: 400;
  20. font-size: 26rpx;
  21. color: #FFFFFF;
  22. padding: 5rpx;
  23. padding-left: 20rpx;
  24. padding-right: 20rpx;
  25. }
  26. .survey-content .s-img {
  27. width: 100%;
  28. margin-top: 15rpx;
  29. height: 22vh;
  30. }
  31. .survey-content .s-list {
  32. display: flex;
  33. justify-content: space-between;
  34. color: white;
  35. margin-top: 2vh;
  36. font-family: Microsoft YaHei;
  37. font-weight: 400;
  38. }
  39. .s-list .s-item .s-item-f {
  40. font-size: 26rpx;
  41. }
  42. .s-list .s-item .s-item-t {
  43. font-size: 32rpx;
  44. }
  45. .s-list .s-item .s-item-t .s-item-num {
  46. font-size: 42rpx;
  47. }
  48. .survey-content .s-use {
  49. font-family: Microsoft YaHei;
  50. font-weight: 400;
  51. font-size: 32rpx;
  52. color: #FFFFFF;
  53. margin-top: 2vh;
  54. }
  55. .survey-content .s-use text {
  56. border-radius: 8rpx;
  57. border: 1px solid #00FFFF;
  58. color: #00FFFF;
  59. margin-left: 20rpx;
  60. padding: 1rpx;
  61. padding-left: 10rpx;
  62. padding-right: 10rpx;
  63. }
  64. .survey-content .s-hr {
  65. height: 1rpx;
  66. width: 100%;
  67. background: #30A1DB;
  68. opacity: 0.5;
  69. margin-top: 3vh;
  70. }