青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

demo_38 关注页导航栏实现

效果图

 页面布局

 全部样式

<style lang="scss" scoped>
    .follow {
        // height: 100%;
        display: flex;
        flex-direction: column;
        flex: 1;
        box-sizing: border-box;

        .follow-tab {
            height: 30px;
            padding: 10px 20px;

            .follow-tab__box {
                display: flex;
                width: 100%;
                height: 100%;
                border-radius: 5px;
                border: 1px $mk-base-color solid;

                .follow-tab__item {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    color: #666;
                    font-size: 14px;
                    width: 100%;

                    &:first-child {
                        border-right: 1px $mk-base-color solid;
                    }

                    &.active {
                        color: $mk-base-color;
                    }

                }
            }
        }
        .follow-list {
            flex: 1;

            .follow-list__swiper {
                height: 100%;

                .swiper-item {
                    height: 100%;
                }
            }
        }
    }

    .no-data {
        padding: 50px;
        font-size: 14px;
        color: #999;
        text-align: center;
    }
</style>

posted on 2020-09-27 08:01  芦苇の  阅读(90)  评论(0)    收藏  举报