policyInfo.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /* #ifndef H5 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. }
  6. /* #endif */
  7. .policyInfo{
  8. &-title{
  9. width: 100%;
  10. height: 82rpx;
  11. text-align: center;
  12. background: #FFF0DF;
  13. view:first-child{
  14. padding-top: 20rpx;
  15. font-size: 28rpx;
  16. font-family: PingFangSC-Regular, PingFang SC;
  17. font-weight: 400;
  18. color: #EB5F29;
  19. line-height: 40rpx;
  20. letter-spacing: 1px;
  21. }
  22. }
  23. &-list{
  24. padding: 30rpx 30rpx 120rpx;
  25. .list-container{
  26. padding: 0 32rpx;
  27. margin-bottom: 20rpx;
  28. background-color: #FFFFFF;
  29. border-radius: 10rpx;
  30. .item{
  31. display: flex;
  32. flex-wrap: wrap;
  33. justify-content: space-between;
  34. .title{
  35. width: 70%;
  36. padding: 30rpx 0;
  37. font-size: 30rpx;
  38. font-family: PingFangSC-Regular, PingFang SC;
  39. font-weight: 400;
  40. color: #000000;
  41. line-height: 42rpx;
  42. letter-spacing: 1px;
  43. }
  44. .item-image{
  45. padding: 30rpx 0;
  46. .image{
  47. width: 128rpx;
  48. height: 101rpx;
  49. box-shadow: 0 0 10rpx 0 rgba(77, 77, 77, 0.23);
  50. border-radius: 7rpx;
  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. z-index: 998;
  67. box-sizing: content-box;
  68. background-color: #FFFFFF;
  69. .policybtn-content{
  70. flex: 1;
  71. justify-content: center;
  72. width: 100%;
  73. height: 100%;
  74. padding: 6px 0;
  75. display: flex;
  76. flex-direction: column;
  77. align-items: center;
  78. position: relative;
  79. background-color: #FFFFFF;
  80. view:first-child{
  81. width: 100%;
  82. padding: 8rpx 30rpx;
  83. .policysubmitbtn{
  84. width: 100%;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. }