css实现移动端手机端个人空间个人动态朋友圈效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现移动端手机端个人空间个人动态朋友圈效果代码

代码标签: 手机 个人空间 个人 动态 朋友 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>社交论坛app个人主页页面模板</title>
    <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport" />
    <meta content="yes" name="apple-mobile-web-app-capable" />
    <meta content="black" name="apple-mobile-web-app-status-bar-style" />
    <meta content="telephone=no" name="format-detection" />
    <style>
        html, body {
            color: #333;
            margin: 0;
            height: 100%;
            font-family: "Myriad Set Pro", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-weight: normal;
        }
        * {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
        }
        a {
            text-decoration: none;
            color: #000;
        }
        a, label, button, input, select {
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }
        img {
            width: 100%;
            height: auto;
            display: block;
            border: 0;
        }
        body {
            background: #fefefe;
            color: #666;
        }
        html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
            margin: 0;
            padding: 0;
        }
        a {
            text-decoration: none;
            color: #08acee;
        }
        button {
            outline: 0;
        }
        img {
            border: 0;
        }
        button, input, optgroup, select, textarea {
            margin: 0;
            font: inherit;
            color: inherit;
            outline: none;
        }
        li {
            list-style: none;
        }
        a {
            color: #666;
        }
        .clearfix::after {
            clear: both;
            content: ".";
            display: block;
            height: 0;
            visibility: hidden;
        }
        .clearfix {}
        .divHeight {
            width: 100%;
            height: 10px;
            background: #f5f5f5;
            position: relative;
            overflow: hidden;
        }
        .r-line {
            position: relative;
        }
        .r-line:after {
            content: '';
            position: absolute;
            z-index: 0;
            top: 0;
            right: 0;
            height: 100%;
            border-right: 1px solid #D9D9D9;
            -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
            -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
        }
        .b-line {
            position: relative;
        }
        .b-line:after {
            content: '';
            position: absolute;
            z-index: 2;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            border-bottom: 1px solid #e2e2e2;
            -webkit-transform: scaleY(0.5);
            transform: scaleY(0.5);
            -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
        }
        .flex {
            display: -webkit-box;
            display: -webkit-flex;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            align-items: center;
            padding: 15px;
            position: relative;
        }
        .flex-box {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            flex: 1;
            min-width: 0;
            font-size: 14px;
            color: #333;
        }
        /* 必要布局样式css */

        .flexView {
            width: 100%;
            height: 100%;
            margin: 0 auto;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
        }
        .scrollView {
            width: 100%;
            height: 100%;
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
            position: relative;
        }
        .navBar {
            height: 44px;
            position: relative;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            z-index: 102;
            background: #fff;
        }
        .navBar-item {
            height: 44px;
            min-width: 25%;
            -webkit-box-flex: 0;
            -webkit-flex: 0 0 25%;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            padding: 0 0.9rem;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 0.7rem;
            white-space: nowrap;
            overflow: hidden;
            color: #808080;
            position: relative;
        }
        .navBar-item:first-child {
            -webkit-box-ordinal-group: 2;
            -webkit-order: 1;
            -ms-flex-order: 1;
            order: 1;
            margin-right: -25%;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .navBar-item:last-child {
            -webkit-box-ordinal-group: 4;
            -webkit-order: 3;
            -ms-flex-order: 3;
            order: 3;
            -webkit-box-pack: end;
            -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }
        .center {
            -webkit-box-ordinal-group: 3;
            -webkit-order: 2;
            -ms-flex-order: 2;
            order: 2;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            height: 44px;
            width: 50%;
            margin-left: 25%;
        }
        .center-title {
            text-align: center;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            display: block;
            text-overflow: ellipsis;
            font-size: 0.95rem;
            color: #333;
        }
        .icon {
            width: 20px;
            height: 20px;
            display: block;
            border: none;
            float: left;
            background-size: 20px;
            background-repeat: no-repeat;
        }
        .icon-return {
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAABzElEQVRoQ93b7U0DMQwGYHcCGIEN8AhlBEZhAsoGbFI2ADbwBjACbIBeKZUq1NJLLrZf49/NNc/lQxdb2UiBUNVrEXkUERWRTxF5MLOvka5vRhpFtmnY14Y9/LWJyN0Imhp8BntAY5Sfe18+LfgCFs4nM9v9C/AC7DemuJlhPXcF3QgvxG7NDOu4O6jA3li8HRpwBJYGHIWlAEdi08HR2FRwBjYNnIVNAWdiw8HZ2FAwAzYMzIINATNh3cFsWFcwI9YNzIp1ATNjp4PZsVPBFbDTwFWwU8CqeiMi+1954+NcExJuwzmo7qTVhQarUjyqikoAkuSoDJwKKuyqEa6IHQa3NftRaWQP029oSqsqMv4obpWYxsed9AAPF7pmb1CnnjcKxiaFMsfVmU7SoofAQLZN660aehhcFb0KXBG9GlwNPQVcCT0NXAU9FVwBPR3MjnYBM6PdwKxoVzAj2h3c0MiKvIjIbfa3dwi4oXHgwLd3KjoMzIIOBTOgw8HZ6BRwJjoNnIVOBWeg08HRaApwJJoGHIWmAkeg6cDeaErwQvS9meFA0hW04AVo3FvCYaQrqMF/oN/NbNslbT+mBx+hcSkLBXiM6m7kVhqe9QNGkmNMIjcbqQAAAABJRU5ErkJggg==');
        }
        .icon-more {
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAACC0lEQVRoQ+1W0VXDMAy8TAAbABuICWAD2g1gAtiAsgGdADagbNBOEG0AbNBOAO+C09eWtHLS8GFH+nVy0t3JsgoMLIqB8YUTzt1xd9gdzkwBb+nMDP1Dxx12hzNTwFs6M0N9aHlLe0tnpoC3dGaG+pT2lvaWzkyBrZYWEQFwBeCUPIuimJdlueiLs4gQl/jMw1AAC1Vd9pjjOuQgJHGJzzxVVIRDIY8AHhoSzwHcqernMUWJyAjASy3mBhaLIv7sSPzzgE/Cu/EM4InC1oSZ7OZAQpK97OpEIPtmEBp3JR0MKwGQ9L6Yqeq4iCyGIFNVbeqAgzxCMR8Nzu7+R6cvuogqInTwPqJDKsJsWd4rM1S19TPWQlDm7+SyiHybxf9+sCBhKnsS+QPbej0AYv4RkQkAzoeY4D3j99ERBi3bOSaWQyO8GmRL87mwJuixQ4tT3ro2K07Zfx9aZCIi1rP0xc+6FBPwY0TtNLACPhcazpazAxf5XVVHm4sHh0XTaOemddvT4vHa4DSdJX4fiwfxm16cKYDJevGoVQkTj5tKtVoCmKsqn61eIrzJxN9cLZmj79Wy3raIS/zt1bIXNomAtF4kEuG1t0wnnLqDVv3usKVQ6ufucOoOWvW7w5ZCqZ+7w6k7aNXvDlsKpX7uDqfuoFW/O2wplPq5O5y6g1b97rClUOrn7nDqDlr1/wBmt6+c3d5OyQAAAABJRU5ErkJggg==');
        }
        .m-slider {
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }
        .slider-wrapper {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
            height: 100%;
            -webkit-transform: translate3d(0px, 0px, 0px);
            transform: translate3d(0px, 0px, 0px);
            position: relative;
            z-index: 1;
            -webkit-transition-property: -webkit-transform;
            transition-property: -webkit-transform;
            transition-property: transform;
            transition-property: transform, -webkit-transform;
        }
        .slider-item {
            width: 100%;
            height: 100%;
            -webkit-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            background: #f6f6f6;
        }
        .slider-item img {
            width: 100%;
            height: auto;
            display: block;
            border: none;
        }
        .slider-pagination {
            text-align: right;
            position: absolute;
            width: 100%;
            z-index: 2;
            right: 0;
            bottom: 10px;
            pointer-events: none;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: end;
            -webkit-align-items: flex-end;
            -ms-flex-align: end;
            align-items: flex-end;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
        }
        .slider-pagination > .slider-pagination-item {
            margin: 0 .25rem;
            width: 8px;
            height: 8px;
            display: inline-block;
            border-radius: 100%;
            background-color: rgba(255,255,255,0.4);
        }
        .slider-pagination > .slider-pagination-item.slider-pagination-item-active {
            background-color: #fff;
            border-radius: 100%;
        }
        .palace {
            padding: 0.5rem 0;
            position: relative;
            overflow: hidden;
        }
        .palace-grid {
            position: relative;
            float: left;
            padding: 1px;
            width: 20%;
            box-sizing: border-box;
            margin: 5px 0;
        }
        .palace-grid-icon {
            width: 30px;
            height: 30px;
            margin: 0 auto;
        }
        .palace-grid-icon img {
            display: block;
            width: 100%;
            height: 100%;
            border: none;
        }
        .palace-grid-text {
            display: block;
            text-align: center;
            color: #333;
            font-size: 0.85rem;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            padding-top: 0.2rem;
        }
        .palace-grid-text h2 {
            font-size: 0.8rem;
            font-weight: normal;
            color: #666666;
        }
        .m-actionsheet {
            text-align: center;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: #EFEFF4;
            -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
            -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
        }
        .mask-black {
            background-color: rgba(0, 0, 0, 0.4);
            position: fixed;
            z-index: 500;
            bottom: 0;
            right: 0;
            left: 0;
            top: 0;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            z-index: 998;
        }
        .actionsheet-action {
            display: block;
            margin-top: .15rem;
            font-size: 0.28rem;
            color: #555;
            height: 1rem;
            line-height: 1rem;
            background-color: #FFF;
        }
        .m-actionsheet {
            text-align: center;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 10005;
            background-color: #ffffff;
            -webkit-transform: translate(0, 100%);
            transform: translate(0, 100%);
            -webkit-transition: -webkit-transform .3s;
            transition: -webkit-transform .3s;
            transition: transform .3s;
            transition: transform .3s, -webkit-transform .3s;
        }
        .actionsheet-toggle {
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }
        .actionsheet-item {
            display: block;
            position: relative;
            font-size: 0.85rem;
            color: #555;
            height: 2rem;
            line-height: 2rem;
            background-color: #FFF;
        }
        .actionsheet-item {
            display: block;
            position: relative;
            font-size: 0.85rem;
            color: #555;
            height: 2rem;
            line-height: 2rem;
            background-color: #FFF;
        }
        .coll-cancel a {
            height: 45px;
            line-height: 45px;
            font-size: 12px;
            background: #f9f9f9;
            display: block;
            text-align: center;
            width: 100%;
        }
        .coll-share-img {
            width: 38px;
            height: 38px;
            margin: 0 auto;
        }
        .coll-share-img img {
            width: 100%;
            height: auto;
            display: block;
            border: none;
        }
        .coll-share-box {
            position: relative;
            overflow: hidden;
            padding: 10px 0;
        }
        .coll-cancel a {
            height: 45px;
            line-height: 45px;
            font-size: 12px;
            background: #f9f9f9;
            display: block;
            text-align: center;
            width: 100%;
        }
        .coll-share-item {
            position: relative;
            float: left;
            padding: 8px 10px;
            width: 33.333%;
            box-sizing: border-box;
            font-size: 12px;
            height: 85px;
        }
        .rule {
            position: absolute;
            right: 0;
            top: 1rem;
            background: #54ca9a;
            border-radius: 50px 0 0 50px;
            font-size: 0.8rem;
            padding: 0.2rem 0.6rem;
            color: #fff;
        }
        .head-box {
            width: 100%;
            position: relative;
        }
        .user-img {
            width: 55px;
            height: 55px;
            position: absolute;
            left: 1.2rem;
            bottom: 6.8rem;
            overflow: hidden;
            border-radius: 55px;
        }
        .user-name {
            position: absolute;
            left: 1.2rem;
            bottom: 4.5rem;
        }
        .user-name {
            color: #fff;
        }
        .user-name i {
            font-style: normal;
            font-weight: normal;
            font-size: 1.2rem;
            float: left;
            text-shadow: 1px 1px 5px #000;
        }
        .user-name em {
            font-style: normal;
            font-size: 1.2rem;
            float: left;
            color: #fc9c09;
            text-shadow: 1px 1px 5px #000;
        }
        .user-name img {
            width: 30px;
            height: 30px;
            float: left;
            margin-top: -3px;
        }
        .user-tag {
            position: absolute;
            left: 1.2rem;
            bottom: 2.8rem;
        }
        .user-tag span {
            background: #ec6899;
            color: #fff;
            font-size: 0.7rem;
            border-radius: 22px;
            padding: 0.1rem 0.6rem 0.1rem 1.5rem;
            display: inline-block;
        }
        .user-tag .tag-one {
            background: #f29919;
            padding-left: 0.6rem;
        }
        .user-tag .tag-two {
            background: #7e7cdd;
            padding-left: 0.6rem;
        }
        .user-tag .tag-the {
            padding-left: 0.6rem;
            background-color: rgba(255,255,255,0.35);
        }
        .user-tag .tag-fov {
            background: #5f51c2;
            padding-left: 0.6rem;
        }
        .icon-n {
            background-size: 12px;
            height: 12px;
            width: 15px;
            position: absolute;
            left: 0.5rem;
            top: 0.3rem;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAEiklEQVRoQ+2ai1EUQRCGuyNQIhAjECJQIhAiUCIQIhAiUCNQIhAiECIQIxAiECP4rf+qh2qn5nW7s7soN1UUV7A7M1+/pqf7VB7Z0EfGKxvg/13jGw1vNDyBBADsiMgTEXll02+LyI195u8bVb2aYOn5ghaA1wa4LyIEbBnnIsKfK1UNAml5L/vM5D4MgIAf1oBMbfZORD6KyCdV5efBYzJgADTX985sc5u8NXN+KiIvKiQrcFU9HUo8CTCAtyLyObGp3yJyaWZ6ntOWCYuWwZ9niXlo5odDtN0dGABBCewHQamZk3U1Y/B872X07rVB83fz6AqcgaX5EXaU75nV0I8Z3cPgnHuq2gzdDRgAN/PObYZaPVLVL83irzwIgNGd5ux9nbCEbhJoF+CEzxL21TqSbxUKAAY3CpHHXBiXqrrXMsdoYJP6z2ix3SlgwxoGzeDnNX3aEiN6AFPabxwwo2c3M85pzQRNcw4+TZN+XjPtUcAWQb+5TV2oKo+SWYYlNV/dYkxMjkqLjwUmbMiHuQ4l3CUFbJUYAJq2P7KKexgMnPDdM1WNz9/WfQ9+LmFlx6rKEyM5xgDH2dSkgaokEQD05RDArlV1dwpgnofhaLhV1dYb0GBtFgIYMzHm7WFs5YLXGA1jnWDRndJNaPfr7y0nRS/gA1WlxhcbALwCsmfyIOBEoGBqx2i52ADA0yHcrCYHnv04iiUbHU/ZfKCLhlV10Dw9zSECZknI5wf3Sw3aaMKkFzuSAsmsGrbr2dI+zAtMOBq7+zCvaL+cSf7fUZqgUVRcJK105kx/9ZeYrAIG+bAB+2vhnapu9QxC68wVV1tKQXQM8EPKpb3/Fq+oY4BjP2bZ9WAdzfR4NnEnLhYgBgMnzJp/mj3jAuC1y1radqnqMRaYx4CvZzUX0zppl9UNtnHCqNa1isAAVrUqVT3LbRBAXNOqllk6wbIDychM1+Jgy2ZncE0LgL9jflHVw9RGrYLIC7hviUxayLM1aVkBlltrygWyGgbgL/icsAQdn4N8fhJoKy2xcEcNh9GcB5SAOSHTRd/aSEKbxHkBj6sebLEc9zBhC5IULGG9ZrMXhdS6NR+uQhssfclL3K9FoTGYDM61bQ22ceJm3A/rcDS1WVbxqCZ9K58kNZ2B5dHgrSIsweDGgNbc+HKgjMZeq5zzgl3KWpCK+arAZkpJTZtWvWZXPSXbHAFTvV1WJsJXGXgC3H+Xw/yT73BOFvSTd1oTXLHgnlNkE3AB2s/7VwPNtMP6sG/D1Ayq9n8K52SMezQDV6Cz3ULTGn1vDDjPWIKO7lmtC0w/SgWoah5t4MFMaaopP/caZkBamf46fl8zkWbghmicPaczCYv3T35efT9rFUlHRPQuwIVozPmr53RtE3P+v6rhAmzQUFNyMidUaa1a4pHy2TgaV5OThwJbTTwAxP3fZDQuJScPCbYInGhQFb+okoEu9mqXEEbNpEPflefgfu14SED/c8D0Yfoom8xNCbpBM9Hg8/yeVtN7c2m7GqXn2shc62yA55L0UutsNLyU5Oda99Fp+A8q2Q1bcpa6uwAAAABJRU5ErkJggg==');
        }
        .user-text {
            position: absolute;
            left: 1.2rem;
            bottom: 0.8rem;
        }
        .user-text span {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            text-shadow: 1px 1px 5px #000;
            margin-right: 0.9rem;
        }
        .user-text span em {
            font-size: 1rem;
            font-style: normal;
            font-weight: bold;
        }
        .tab-nav {
            height: 40px;
            line-height: 40px;
            display: block;
            position: relative;
            background: #fff;
            z-index: 1;
            width: 70%;
            margin: 0 auto;
        }
        .tab-nav-item {
            height: 40px;
            line-height: 40px;
            position: relative;
            text-align: center;
            color: #585858;
            font-size: 0.9rem;
            display: block;
            float: left;
            width: 33.333%;
        }
        .tab-nav-item.tab-active {
            /* background-color: #51bd03; */
        }
        .tab-nav-item.tab-active a {
            color: #ff1767;
            font-size: 0.9rem;
        }
        .tab-nav-item a {
            display: inherit;
            font-size: 0.9rem;
            color: #666;
        }
        .tab-panel {
            position: relative;
            overflow: hidden;
        }
        .tab-panel .tab-panel-item {
            width: 100%;
            position: absolute;
            top: 0;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }
        .tab-panel .tab-panel-item.tab-active ~ .tab-panel-item {
            -webkit-transform: translateX(100%);
            transform: translateX(100%);
        }
        .tab-panel .tab-panel-item.tab-active {
            position: relative;
            -webkit-transition: -webkit-transform .15s;
            transition: -webkit-transform .15s;
            transition: transform .15s;
            transition: transform .15s, -webkit-transform .15s;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        .tab-nav-item.tab-active:before {
            content: '';
            width: 50%;
            height: 3px;
            position: absolute;
            left: 50%;
            bottom: 0;
            margin-left: -25%;
            z-index: 4;
            background-color: #ff6143;
            border-radius: 10px;
        }
        .flex-one {
            padding: 10px 15px;
        }
        .flex-one .head-info {
            font-size: 0.85rem;
            color: #999;
            margin-right: 1.5rem;
        }
        .flex-box span {
            background: #f0efef;
            display: inline-block;
            border-radius: 5px;
            margin-top: 0.8rem;
            line-height: 32px;
            padding-right: 1rem;
            font-size: 0.8rem;
            color: #686868;
        }
        .flex-box span img {
            width: 32px;
            height: 32px;
            float: left;
        }
        .flx-time {
            position: absolute;
            top: 1rem;
            left: 1rem;
        }
        .flex-box {
            padding-left: 4rem;
            padding-right: 6rem;
        }
        .flex-box h3 {
            font-weight: normal;
            margin-bottom: 0.5rem;
            width: auto;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            word-wrap: normal;
            word-wrap: break-word;
            word-break: break-all;
        }
        .flx-time h1 {
            color: #333;
            font-weight: normal;
        }
        .flx-time p {
            color: #9d9d9d;
            font-weight: normal;
            font-size: 0.8rem;
        }
        .flex-one .flex-box {
            padding-left: 0;
        }
        .read {
            position: absolute;
            right: 1rem;
            bottom: 1.2rem;
            font-size: 0.85rem;
        }
        .footer {
            width: 100%;
            position: relative;
            z-index: 100;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            padding: 10px 20px 10px 20px;
            background: #eeeeee;
        }
        .tabBar-item {
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
            color: #474747;
            border-radius: 5px;
            padding: 0.5rem 0;
        }
        .tabBar-item-text {
            display: inline-block;
            font-size: 0.9rem;
            color: #474747;
            padding-top: 2px;
        }
        .footer-fixed {
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 49;
        }

    </style>
</head>
<body>
    <section class="flexView">
        <header class="navBar navBar-fixed">
            <a href="javascript:;" class="navBar-item">
                <i class="icon icon-return"></i>
            </a>
            <div class="center">
                <span class="center-title"></span>
            </div>
            <a href="javascript:;" class="navBar-item" data-ydui-actionsheet="{target:'#actionSheet',closeElement:'#cancel'}">
                <i class="icon icon-more"></i>
            </a>
        </header>
        <section class="scrollView">
            <div class="head-box">
                <div class="user-img">
                    <img src="//repo.bfw.wiki/bfwrepo/image/5d653bd0990d0.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_100,h_100,/quality,q_90" alt="">
                </div>
                <div class="user-name">
                    <h2><i>Nicole .</i> <img src="//repo.bfw.wiki/bfwrepo/image/608b2e64cec75.png" alt=""> <em>63</em></h2>
                </div>
                <div class="user-tag">
                    <span> <i class="icon icon-n"></i> 90后</span>
                    <span class="tag-one">188cm</span>
                    <span class="tag-two">北京</span>
                    <span class="tag-the">双子座</span>
                    <span class="tag-fov">关注</span>
                </div>
                <div class="user-text">
                    <span>粉丝 <em>2819</em></span>
                    <span>热度 <em>12</em></span>
                    <span>排名 <em>109</em></span>
                </div>
                <img src="//repo.bfw.wiki/bfwrepo/image/5d65eaff5a217.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_400,h_250,/quality,q_90" alt="">
            </div>
            <div class="tab" data-ydui-tab>
                <div class="b-line">
                    <ul class="tab-nav">
                        <li class="tab-nav-item tab-active">
                            <a href="javascript:;">
                                <span>主页</span>
                            </a>
                        </li>
                        <li class="tab-nav-item">
                            <a href="javascript:;">
                                <span>视频</span>
                            </a>
                        </li>
                        <li class="tab-nav-item">
                            <a href="javascript:;">
                                <span>相册</span>
                            </a>
                        </li>
                    </ul>
                </div>
                <div class="tab-panel">
                    <div class="flex flex-one b-line">
                        <div class="head-info">
                            职业
                        </div>
                        <div class="flex-box">
                            模特
                        </div>
                    </div>
                    <div class="tab-panel-item tab-active">
                        <a href="javascript:;" class="flex b-line">
                            <div class="flx-time">
                                <h1>06.09</h1>
                                <p>
                                    22:42
                                </p>
                            </div>
                            <div class="flex-box">
                                <h3>亲爱的大长腿们 该睡觉了</h3>
                                <img src="//repo.bfw.wiki/bfwrepo/image/5fb34aff14a0f.png" alt="">
                                <span>
                                    <img src="//repo.bfw.wiki/bfwrepo/image/60d1927e8765c.png" alt="">北京.学院路43号院
                                </span>
                            </div>
                            <div class="read">
                                <span>12次阅读</span>
                            </div>
                        </a>
                        <a href="javascript:;" class="flex b-line">
                            <div class="flx-time">
                                <h1>06.09</h1>
                                <p>
                                    22:42
                                </p>
                            </div>
                            <div class="flex-box">
                                <h3>亲爱的大长腿们 该睡觉了</h3>
                                <img src="//repo.bfw.wiki/bfwrepo/image/5fc8aa82a7330.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_300,h_500,/quality,q_90" alt="">
                                <span>
                                    <img src="//repo.bfw.wiki/bfwrepo/image/60d1927e8765c.png" alt="">北京.学院路43号院
                                </span>
                            </div>
                            <div class="read">
                                <span>12次阅读</span>
                            </div>
                        </a>
                        <a href="javascript:;" class="flex b-line">
                            <div class="flx-time">
                                <h1>06.09</h1>
                                <p>
                                    22:42
                                </p>
                            </div>
                            <div class="flex-box">
                                <h3>亲爱的大长腿们 该睡觉了</h3>
                                <img src="//repo.bfw.wiki/bfwrepo/image/5fc8aa82a7330.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_300,h_500,/quality,q_90" alt="">
                                <span>" alt="">
                                <span>
                                    <img src="//repo.bfw.wiki/bfwrepo/image/60d1927e8765c.png" alt="">北京.学院路43号院
                                </span>
                            </div>
                            <div class="read">
                                <span>12次阅读</span>
                            </div>
                        </a>
                        <a href="javascript:;" class="flex b-line">
                            <div class="flx-time">
                                <h1>06.09</h1>
                                <p>
                                    22:42
                                </p>
                            </div>
                            <div class="flex-box">
                                <h3>亲爱的大长腿们 该睡觉了</h3>
                                <img src="//repo.bfw.wiki/bfwrepo/image/5fc8aa82a7330.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_300,h_500,/quality,q_90" alt="">
                                <span>" alt="">
                                <span>
                                    <img src="//repo.bfw.wiki/bfwrepo/image/60d1927e8765c.png" alt="">北京.学院路43号院
                                </span>
                            </div>
                            <div class="read">
                                <span>12次阅读</span>
                            </div>
                        </a>
                        <a href="javascript:;" class="flex b-line">
                            <div class="flx-time">
                                <h1>06.09</h1>
                                <p>
                                    22:42
                                </p>
                            </div>
                            <div class="flex-box">
                                <h3>亲爱的大长腿们 该睡觉了</h3>
                                <img src="//repo.bfw.wiki/bfwrepo/image/5fc8aa82a7330.png?x-oss-process=image/auto-orient,1/resize,m_fill,w_300,h_500,/quality,q_90" alt="">
                                <span>" alt="">
                                <span>
                                    <img src="//repo.b.........完整代码请登录后点击上方下载按钮下载查看

网友评论0