|
@@ -52,7 +52,7 @@
|
|
|
</div>
|
|
|
<div class="center">
|
|
|
<div class="title">简介</div>
|
|
|
- <div class="content">{{ info.brief || '暂无' }}</div>
|
|
|
+ <div class="content" v-if="info.brief" v-html="info.brief"></div>
|
|
|
</div>
|
|
|
<div class="bottom">
|
|
|
<div class="title">相关平台</div>
|
|
@@ -255,7 +255,7 @@ const toCollect = async () => {
|
|
|
}
|
|
|
.content {
|
|
|
padding: 20px;
|
|
|
- font-size: $global-font-size-16;
|
|
|
+ font-size: $global-font-size-18;
|
|
|
}
|
|
|
}
|
|
|
.bottom {
|
|
@@ -309,5 +309,27 @@ const toCollect = async () => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ :deep(table) {
|
|
|
+ border-collapse: collapse !important;
|
|
|
+ width: 100% !important;
|
|
|
+ text-align: center !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(th) {
|
|
|
+ border: 1px solid #ddd !important;
|
|
|
+ padding: 8px !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(td) {
|
|
|
+ border: 1px solid #ddd !important;
|
|
|
+ padding: 8px !important;
|
|
|
+ }
|
|
|
+ :deep(table tr:nth-child(even)) {
|
|
|
+ background-color: #f2f2f2 !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :deep(table tr:hover) {
|
|
|
+ background-color: #ddd !important;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|