12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <template>
- <div v-html="html" class="content"></div>
- </template>
- <script>
- export default {
- props: {
- html: {
- type: String,
- default: ""
- }
- }
- };
- </script>
- <style lang="less" scoped>
- .content {
- margin-top: 20px;
- font: 18px/29px "Golos Text";
- ::v-deep iframe {
- width: 100%;
- height: auto;
- aspect-ratio: 16 / 9;
- }
- ::v-deep a {
- color: #a6d0ff;
- }
- ::v-deep .style1 {
- display: block;
- background: rgba(255, 255, 255, 0.15);
- padding: 33px;
- margin-top: 20px;
- strong {
- font-weight: bold;
- font-size: 24px;
- }
- }
- @media screen and(max-width: 768px) {
- ::v-deep .style1 {
- padding: 5px;
- strong {
- font-size: 18px;
- }
- }
- }
- }
- </style>
|