policyInfo.scss 2.1 KB

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