| 1234567891011121314151617181920212223242526272829303132333435 |
- <style lang="scss" scoped>
- .partner-container {
- min-height: 100vh;
- background-color: #ffffff;
-
- .content-wrap {
- padding: 20rpx;
- margin-bottom: 120rpx;
- :deep(img) {
- display: block;
- width: 100% !important;
- margin: 0 !important;
- vertical-align: top;
- }
- :deep(.rich-text-content) {
- font-size: 0;
- line-height: 0;
- }
- }
-
- .bottom-btn-wrap {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- background-color: #ffffff;
- padding: 20rpx;
- display: flex;
- justify-content: center;
- box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
- }
- }
- </style>
|