policyInfo.scss 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* #ifndef H5 */
  2. page {
  3. height: 100%;
  4. background-color: #f2f2f2;
  5. }
  6. /* #endif */
  7. .policyInfo{
  8. &-banner{
  9. }
  10. &-title{
  11. width: 100%;
  12. height: 82rpx;
  13. text-align: center;
  14. background: #FFF0DF;
  15. view:first-child{
  16. padding-top: 20rpx;
  17. font-size: 28rpx;
  18. font-family: PingFangSC-Regular, PingFang SC;
  19. font-weight: 400;
  20. color: #EB5F29;
  21. line-height: 40rpx;
  22. letter-spacing: 1px;
  23. }
  24. }
  25. &-wrap{
  26. display: flex;
  27. flex-direction: column;
  28. min-height: 60vh;
  29. width: 100%;
  30. .swiper-box{
  31. flex: 1;
  32. .swiper-item{
  33. height: 100%;
  34. .page-box{
  35. padding: 20rpx 30rpx;
  36. .policyInfo-container{
  37. padding: 0 32rpx;
  38. margin-bottom: 20rpx;
  39. background-color: #FFFFFF;
  40. border-radius: 10rpx;
  41. .item{
  42. display: flex;
  43. flex-wrap: wrap;
  44. justify-content: space-between;
  45. .title{
  46. padding: 55rpx 0;
  47. font-size: 30rpx;
  48. font-family: PingFangSC-Regular, PingFang SC;
  49. font-weight: 400;
  50. color: #000000;
  51. line-height: 42rpx;
  52. letter-spacing: 1px;
  53. }
  54. .item-image{
  55. padding: 26rpx 0;
  56. text-align: center;
  57. .image{
  58. width: 128rpx;
  59. height: 101rpx;
  60. box-shadow: 0 0 10rpx 0 rgba(77, 77, 77, 0.23);
  61. border-radius: 7rpx;
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }
  68. }
  69. }
  70. }