falvpingtai/src/Answer.vue

165 lines
3.8 KiB
Vue
Raw Normal View History

2019-11-27 14:48:03 +08:00
<template>
<div class="box">
<heads></heads>
<div class="bodys">
<div class="nav">
<p class="selection">为你推荐</p>
<p>全站热门</p>
<p>邀请回答(68)</p>
<p></p>
</div>
<div class="Recommend" v-show="false">
<input type="text" placeholder="添加擅长话题" />
</div>
<div class="Popular" v-show="false">
<div class="strip">
<p class>如何评价谷歌的优化GEMM论文The Indirect Convolution Algorithm</p>
<p>3 个回答 · 255 人关注</p>
</div>
<div class="strip">
<p class>如何评价谷歌的优化GEMM论文The Indirect Convolution Algorithm</p>
<p>3 个回答 · 255 人关注</p>
</div>
<div class="strip">
<p class>如何评价谷歌的优化GEMM论文The Indirect Convolution Algorithm</p>
<p>3 个回答 · 255 人关注</p>
</div>
</div>
<div class="Invitation">
2019-11-27 16:13:57 +08:00
<div class="screen">
<p class="selection">所有人(72)</p>
<p>我关注的人(0)</p>
</div>
<div class="list">
<div class="strip">
<div>
<p>如何评价谷歌的优化GEMM论文The Indirect Convolution Algorithm</p>
<p>3 个回答 · 255 人关注</p>
</div>
<p>忽略</p>
</div>
</div>
2019-11-27 14:48:03 +08:00
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
.box {
padding-top: 90px;
.bodys {
width: 100%;
min-height: 360px;
background-color: #fff;
.nav {
display: flex;
padding: 18px 30px;
> p {
font-size: 30px;
color: #666;
padding: 22px 32px;
border-bottom: #ccc solid 1px;
}
> p:last-child {
width: 10px;
}
.selection {
border: #ccc solid 1px;
border-bottom: none;
}
}
.Recommend {
margin-top: 27px;
margin-left: 30px;
> input {
width: 510px;
height: 80px;
box-sizing: border-box;
font-size: 26px;
padding: 27px 21px;
border: #ccc solid 1px;
border-radius: 5px;
}
}
.Popular {
padding: 0 30px;
.strip {
padding: 26px 0 40px 0;
border-bottom: #ccc solid 1px;
// width: 100%;
> p {
font-size: 30px;
color: #465a33;
width: 604px;
}
> p:last-child {
font-size: 26px;
color: #999;
margin-top: 18px;
}
}
}
.Invitation {
padding: 0 30px;
.strip {
padding: 26px 0 40px 0;
border-bottom: #ccc solid 1px;
// width: 100%;
2019-11-27 16:13:57 +08:00
display: flex;
> div {
width: 560px;
> p {
font-size: 30px;
color: #465a33;
width: 100%;
}
> p:last-child {
font-size: 26px;
color: #999;
margin-top: 18px;
}
2019-11-27 14:48:03 +08:00
}
2019-11-27 16:13:57 +08:00
>p{
margin-top: 24px;
width: 130px;
height: 60px;
border: #6B9147 solid 1px;
font-size: 28px;
text-align: center;
line-height: 60px;
color: #6B9147;
2019-11-27 14:48:03 +08:00
}
}
.screen {
2019-11-27 16:13:57 +08:00
border-bottom: #ccc solid 1px;
display: flex;
padding-bottom: 20px;
> p {
font-size: 28px;
color: #95998f;
padding-right: 29px;
margin-right: 29px;
border-right: #ccc solid 1px;
}
> p:last-child {
border: none;
}
.selection {
color: #333;
}
2019-11-27 14:48:03 +08:00
}
}
}
}
</style>
<script>
import heads from "./components/indexhead";
export default {
name: "Answer",
data() {
return {};
},
components: {
heads
}
};
</script>