ffb737e9 by 杨炀

no message

1 parent beb7d314
......@@ -7,7 +7,7 @@
.popo{position: absolute;left: 0;}
.no-pointer { pointer-events: none }
.blur20 { filter: blur(20px) }
.pt5 {
padding-top: 5px;
}
......@@ -1425,6 +1425,8 @@ img{display: block;}
.active{color: var(--el-color-primary);font-weight: bold;cursor: pointer;}
}
.mapBox{word-break: break-all;}
.as16_9{aspect-ratio: 16/9;}
.coverLimitHeight{max-height: 180px;object-fit: cover;aspect-ratio: 16 / 9;}
@media (max-width: 800px) {
//.liveImgbox{margin: 0 0 20px;}
//.videoImgbox{margin: 0 0 20px;}
......
......@@ -191,5 +191,4 @@ function goDetail(id) {
@media (max-width: 1450px) {
.block{width: 44px;font-size: 20px;}
}
.coverLimitHeight{max-height: 160px;object-fit: cover;}
</style>
......
......@@ -12,17 +12,17 @@
</div>
<div class="box mb20" v-else>
<el-card class="mb20">
<el-row :gutter="20">
<el-col :lg="7" :md="12" :xl="6">
<el-row :gutter="20" align="middle">
<el-col :lg="matchData.type=='0'?7:8" :md="12" :xl="6">
<div class="popo">
<el-tag v-if="matchData.signType==0">{{ language==0?'个人':'Individual' }}</el-tag>
<el-tag v-if="matchData.signType==1">{{ language==0?'团体':'Team' }}</el-tag>
<el-tag v-if="matchData.signType==2">{{ language==0?'个人/团体':'Individual/Team' }}</el-tag>
</div>
<img class="mauto w100" :src="fillImgUrl(matchData.coverUrl)">
<img class="mauto w100 as16_9" :src="fillImgUrl(matchData.coverUrl)">
</el-col>
<el-col :lg="9" :md="12" :xl="10" style="position: relative">
<el-col :lg="matchData.type=='0'?9:16" :md="12" :xl="10" style="position: relative">
<h3 style="margin: 0 0 10px">{{ matchData.name }}</h3>
<div v-if="matchData.type=='1'">
<p class="ppl">
......
......@@ -57,7 +57,7 @@
<div v-loading="loading">
<div class="matchItem" v-for="n in list" :key="n.id" @click="goDetail(n.id)">
<el-row :gutter="15">
<el-row :gutter="15" align="middle">
<el-col :lg="7" :md="24" :xl="6">
<div class="popo">
<el-tag v-if="n.signType==0">{{ language==0?'个人':'Individual' }}</el-tag>
......@@ -349,6 +349,6 @@ function goDetail(id) {
.el-button--primary:hover {
background: var(--el-color-primary)
}
.coverLimitHeight{max-height: 160px;object-fit: cover;}
.mw100{max-width: 100%;}
</style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!