|
@@ -239,12 +239,7 @@ const canShowMask = computed(() => {
|
|
|
</script>
|
|
|
<template>
|
|
|
<ContentLayout :need-ad="true" class="article-page-container">
|
|
|
- <el-skeleton
|
|
|
- style="width: 240px"
|
|
|
- :loading="ContentPageLoading"
|
|
|
- animated
|
|
|
- :throttle="500"
|
|
|
- >
|
|
|
+ <el-skeleton :loading="ContentPageLoading" animated :throttle="500">
|
|
|
<template slot="template">
|
|
|
<div class="article-container">
|
|
|
<content-header-skeleton />
|
|
@@ -451,6 +446,24 @@ const canShowMask = computed(() => {
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss" scoped>
|
|
|
+.article-page-container {
|
|
|
+ ::v-deep {
|
|
|
+ .content-container {
|
|
|
+ &.calc {
|
|
|
+ .content-main {
|
|
|
+ display: block;
|
|
|
+ width: calc(100% - 200px);
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .content-right {
|
|
|
+ width: 200px;
|
|
|
+ margin-left: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
.article-content-footer-container {
|
|
|
::v-deep {
|
|
|
.adsense {
|
|
@@ -493,7 +506,6 @@ const canShowMask = computed(() => {
|
|
|
}
|
|
|
|
|
|
.article-container {
|
|
|
- width: 980px;
|
|
|
margin: 20px;
|
|
|
margin-top: 0;
|
|
|
|