policyInfo.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .policyInfo{
  2. min-height: calc(100vh - 88rpx);
  3. background-color: #f2f2f2;
  4. // &-banner {
  5. // margin-top: 88rpx;
  6. // }
  7. &-title{
  8. width: 100%;
  9. height: 82rpx;
  10. text-align: center;
  11. background: #FFF0DF;
  12. view:first-child{
  13. padding-top: 20rpx;
  14. font-size: 28rpx;
  15. font-family: PingFangSC-Regular, PingFang SC;
  16. font-weight: 400;
  17. color: #EB5F29;
  18. line-height: 40rpx;
  19. letter-spacing: 1px;
  20. }
  21. }
  22. &-list{
  23. padding: 30rpx 30rpx 120rpx;
  24. .list-container{
  25. padding: 0 32rpx;
  26. margin-bottom: 20rpx;
  27. background-color: #FFFFFF;
  28. border-radius: 10rpx;
  29. .item{
  30. display: flex;
  31. flex-wrap: wrap;
  32. justify-content: space-between;
  33. .title{
  34. width: 70%;
  35. padding: 30rpx 0;
  36. font-size: 30rpx;
  37. font-family: PingFangSC-Regular, PingFang SC;
  38. font-weight: 400;
  39. color: #000000;
  40. line-height: 42rpx;
  41. letter-spacing: 1px;
  42. }
  43. .item-image{
  44. padding: 30rpx 0;
  45. .image{
  46. width: 128rpx;
  47. height: 101rpx;
  48. box-shadow: 0 0 10rpx 0 rgba(77, 77, 77, 0.23);
  49. border: solid 1px #E0E0E0;
  50. border-radius: 10rpx;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. .policybtn{
  57. .policybtn-container{
  58. padding-bottom: env(safe-area-inset-bottom);
  59. display: flex;
  60. flex-direction: row;
  61. align-items: center;
  62. position: fixed;
  63. bottom: 0;
  64. left: 0;
  65. width: 100%;
  66. height: 96rpx;
  67. line-height: 96rpx;
  68. z-index: 998;
  69. box-sizing: content-box;
  70. background-color: #709078;
  71. .policybtn-content{
  72. flex: 1;
  73. justify-content: center;
  74. width: 100%;
  75. height: 100%;
  76. display: flex;
  77. flex-direction: column;
  78. align-items: center;
  79. position: relative;
  80. background-color: #709078;
  81. view:first-child{
  82. width: 100%;
  83. // padding: 8rpx 30rpx;
  84. .policysubmitbtn{
  85. width: 100%;
  86. background-color: #709078;
  87. font-size: 36rpx;
  88. }
  89. }
  90. }
  91. }
  92. }
  93. }