partner.vue 578 B

1234567891011121314151617181920212223242526272829303132333435
  1. <style lang="scss" scoped>
  2. .partner-container {
  3. min-height: 100vh;
  4. background-color: #ffffff;
  5. .content-wrap {
  6. padding: 20rpx;
  7. margin-bottom: 120rpx;
  8. :deep(img) {
  9. display: block;
  10. width: 100% !important;
  11. margin: 0 !important;
  12. vertical-align: top;
  13. }
  14. :deep(.rich-text-content) {
  15. font-size: 0;
  16. line-height: 0;
  17. }
  18. }
  19. .bottom-btn-wrap {
  20. position: fixed;
  21. bottom: 0;
  22. left: 0;
  23. right: 0;
  24. background-color: #ffffff;
  25. padding: 20rpx;
  26. display: flex;
  27. justify-content: center;
  28. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  29. }
  30. }
  31. </style>