This commit is contained in:
pplokijuhyg 2019-12-20 09:18:23 +08:00
parent c6566e2551
commit 9b3f63ea96
6 changed files with 12 additions and 8 deletions

View File

@ -173,7 +173,7 @@
border-bottom: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf;
> div { > div {
width: 100%; width: 100%;
font-size: 32px; font-size: 28px;
text-align: center; text-align: center;
} }
.select { .select {

View File

@ -2,7 +2,7 @@
<div style="padding-top:0.88rem"> <div style="padding-top:0.88rem">
<heads></heads> <heads></heads>
<div class="picbox"> <div class="picbox">
<img :src=" 'http://lawpro.earnest.pro' +list.data.img" alt class="toppic" /> <img :src=" 'http://lawpro.earnest.pro' +list.data.img" alt class="toppic" v-if="list.data.img" />
</div> </div>
<follow <follow

View File

@ -54,7 +54,7 @@
.title { .title {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
font-size: 26px; font-size: 16px;
color: #95998f; color: #95998f;
margin-bottom: 28px; margin-bottom: 28px;
} }
@ -62,6 +62,7 @@
font-size: 30px; font-size: 30px;
color: #000; color: #000;
line-height: 46px; line-height: 46px;
font-weight: bold;
} }
.answer { .answer {
.user { .user {

View File

@ -66,7 +66,7 @@
height: auto; height: auto;
width: 100%; width: 100%;
color: #333333; color: #333333;
font-size: 0.36rem; font-size: 0.3rem;
text-indent: 0.3rem; text-indent: 0.3rem;
line-height: 0.45rem; line-height: 0.45rem;
font-weight: 500; font-weight: 500;
@ -144,6 +144,7 @@
} }
/deep/ *{ /deep/ *{
line-height: 1.5; line-height: 1.5;
font-size: 16px;
} }
> p { > p {
line-height: 40px; line-height: 40px;

View File

@ -106,8 +106,8 @@ export default {
background-color: white; background-color: white;
.title { .title {
color: #333333; color: #333333;
font-size: 34px; font-size: 30px;
font-weight: 500; font-weight: bold;
padding: 0 41px; padding: 0 41px;
text-indent: 0; text-indent: 0;
padding-top: 34px; padding-top: 34px;
@ -119,13 +119,14 @@ export default {
margin: 0 auto; margin: 0 auto;
display: flex; display: flex;
padding-bottom: 41px; padding-bottom: 41px;
// justify-content: center; // justify-content: center;
.left { .left {
width: 457px; width: 457px;
.text { .text {
color: #333333; color: #333333;
font-size: 28px; font-size: 21px;
line-height: 35px; line-height: 35px;
overflow: hidden; // overflow: hidden; //
display: -webkit-box; // display: -webkit-box; //
@ -164,6 +165,7 @@ export default {
height: 139px; height: 139px;
border-radius: 5px; border-radius: 5px;
margin-left: 23px; margin-left: 23px;
object-fit: cover;
} }
} }
} }

View File

@ -2,7 +2,7 @@
<div class="indexfindtab"> <div class="indexfindtab">
<p @click="change(0)" :class="no==0?'text':''">综合</p> <p @click="change(0)" :class="no==0?'text':''">综合</p>
<p @click="change(5)" :class="no==5?'text':''">用户</p> <p @click="change(5)" :class="no==5?'text':''">用户</p>
<p @click="change(2)" :class="no==2?'text':''">话题</p> <!-- <p @click="change(2)" :class="no==2?'text':''">话题</p> -->
</div> </div>
</template> </template>