css布局实现外卖美食平台app首页手机端h5页面代码

代码语言:html

所属分类:布局界面

代码描述:css布局实现外卖美食平台app首页手机端h5页面代码

代码标签: 外卖 美食 平台 app 首页 手机 h5 页面

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>黄色美食首页</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>
        *::-webkit-input-placeholder {
    color: white;
}
*:-moz-placeholder {
    /* FF 4-18 */
    color: white;
}
*::-moz-placeholder {
    /* FF 19+ */
    color: white;
}
*:-ms-input-placeholder {
    /* IE 10+ */
    color: white;
}

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: #fff;
    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;
}

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: #f5f7fc;
    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: 20px;
    width: 90%;
    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%;
}

.aui-arrow {
    position: relative;
    padding-right: 0.8rem;
    color: #7f8699;
    font-size: 0.85rem;
}

.aui-arrow span {
    font-size: 0.8rem;
    color: #9b9b9b;
}

.aui-arrow:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #848484;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: relative;
    top: -2px;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 2px;
    border-radius: 1px;
}

.aui-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px;
    position: relative;
}

.aui-flex-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    font-size: 14px;
    color: #333;
}

/* 必要布局样式css */
.aui-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;
}

.aui-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;
    padding-bottom: 13px;
}

.aui-navBar {
    height: 44px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 102;
    background-color: #f44e01;
    background: -webkit-linear-gradient(to right,#ffa50d, #f44e01);
    background: -o-linear-gradient(to right,#ffa50d, #f44e01);
    background: -moz-linear-gradient(to right,#ffa50d, #f44e01);
    background: linear-gradient(to right,#ffa50d, #f44e01);
    color:white;
    border:none;
}

.aui-navBar-item {
    height: 44px;
    min-width: 15%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    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;
}

.aui-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;
}

.aui-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;
    font-size: 14px;
    color: #333333;
}

.aui-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: 80%;
    margin-left: 25%;
}

.aui-center-title {
    text-align: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    font-size: 0.95rem;
    color: #333;
    font-weight: bold;
}

.icon {
    width: 19px;
    height: 19px;
    display: block;
    border: none;
    float: left;
    background-size: 19px;
    background-repeat: no-repeat;
    margin:0 auto;
}

.aui-flex-box h1 {
    color: #000000;
    font-weight: 500;
    font-size: 1.1rem;
    overflow: hidden;
}

.aui-flex-box h2 {
    color: #303741;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align:left;
    height:25px;
    line-height:25px;
}

.aui-flex-box p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
    text-overflow: ellipsis;
    color: #8a8a8a;
    font-size: 0.7rem;
    margin-bottom: 0.3rem;
    text-align:left;
}

.aui-flex-box h3 {
    font-size: 0.9rem;
    color: #8a8a8a;
    font-weight: normal;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.3rem;
}

.aui-palace {
    padding: 0.4rem 0;
    position: relative;
    overflow: hidden;
}

.aui-palace-grid {
    position: relative;
    float: left;
    padding: 1px;
    width: 25%;
    box-sizing: border-box;
    margin: 10px 0;
}

.aui-palace-grid-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto;
}

.aui-palace-grid img {
    width: 100%;
    margin: 0 auto;
}

.aui-palace-grid p {
    text-align: center;
    font-size: 12px;
    color: #919191;
}

.aui-palace-grid-text {
    display: block;
    text-align: center;
    color: #333;
    font-size: 0.95rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-top: 0.3rem;
}

.aui-palace-grid-text h2 {
    font-size: 0.85rem;
    font-weight: normal;
    color: #666;
}

.m-slider {
    overflow-x: hidden;
    width: 92%;

    margin:-90px auto 0;
    position: relative;
    border-radius:5px;
    box-shadow:0 4px 10px #00000054;

}




.tab-nav {
    height: 45px;
    line-height: 45px;
    display: block;
    position: relative;
    background: #fff;
    z-index: 1;
    width: 100%;
    margin: 0 auto 0.1rem;
}

.tab-nav-item {
    height: 45px;
    line-height: 45px;
    position: relative;
    text-align: center;
    color: #585858;
    font-size: 0.9rem;
    display: block;
    float: left;
    width: 20%;
}

.tab-nav-item.tab-active {
    /* background-color: #51bd03; */
}

.tab-nav-item.tab-active a {
    color: #f55b04;
    font-size: 1.2rem;
    font-weight:bold;
}

.tab-nav-item a {
    display: inherit;
    font-size: 0.8rem;
    color: #333;
    font-weight: bold;
}

.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;
    border-radius: 100px;
    background-color: #f55b04;
}


.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: 100px;
    background-color: rgba(255,255,255,0.8);
}

.slider-pagination > .slider-pagination-item.slider-pagination-item-active {
    background-color: #f44b00;
    width:15px;
}

.aui-search-box {
    background-color: rgba(255,255,255,0.5);
    border-radius: 5px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: 32px;
}

.aui-search-box input {
    width: 90%;
    background: none;
    border: none;
    font-size: 0.85rem;
    text-align: left;
    height: 32px;
    border-radius: 100px;
    padding: 0.5rem 0 0.55rem 1.8rem;
    color: #fff;
}

.icon-search {
    background-image:url('data:image/png;base64,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');
    position: absolute;
    left: 7px;
    top: 7px;
    background-size: 19px;
}












.aui-bg-list{
    background-image:url("//repo.bfw.wiki/bfwrepo/image/60851ddd30081.png");
    background-size:100%;
    height:8rem;
    width:100%;
}














.aui-bg-list .aui-flex-box{
    text-align:center;
    margin-top:-90px;
    color:white;
}



.aui-goods-img{
    width:100px;
    margin-right:0.8rem;
    border-radius:5px;
    overflow:hidden;
}

.aui-list-goods h2{
    color:#000000;
    font-size:1rem;
    margin-bottom:0.3rem;
}


.aui-list-goods span{
    color:#ff5900;
    font-size:0.8rem;
    background:#fefaf1;
}

.aui-right-text h2{
    color:#010101;
}

.aui-right-text h2 i{
    font-style:normal;
    font-size:0.8rem;
    font-weight:normal;
}


.aui-flex-box h3{
    color: #000000;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight:normal;
}



.aui-flex-box p em{
    background:#ff0000;
    color:#fff;
    font-size:0.7rem;
    font-style:normal;
    padding:0 0.1rem;
    margin-right:0.2rem;
}

.aui-flex-box h3{
    overflow:hidden;
}
.aui-flex-box h3 em img{
    float:left;
    width:13px;
    height:13px;
    margin-top:3px;
}

.aui-flex-box h3 i{
    color:#999;
    font-style:normal;
    font-size:0.8rem;
}


.aui-flex-box h3 em{
    float:left;
}


.aui-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: 7px 5px 7px 5px;
    background: #fefefe;
    box-shadow: 0 0 1px #a5a5a5;
}

.aui-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: #979797;
    position: relative;
}

.aui-tabBar-item-text {
    display: inline-block;
    font-size: 0.65rem;
    color: #7d7d7d;
    padding-top: 2px;
}

.aui-tabBar-item-active .aui-tabBar-item-text {
    color: #f44e01;
}

.icon-return{
    background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAADZUlEQVR4Xu2bTahNURTHf/+ZFMmUgYER8hklJSYklImXkJKPvGLAgCEyMsBA+chTijdhQDHwTDwlBoqUJ6IYMPVVZLa0rvNe13X3vUfn3H3Oe/au2711117/df9r3b3P2msv0TTM7BiwAFgFTGv+rsPnEeCxpD055UsRM7OjwGZgbk6FX4Bh4Lkk/52NodEPZvbiH5S1w9wh6WpOYwqJmdlJ4HABJSOS5o0RYGZDwJoCCn3qDUl9BXXkmm5m97MozSUfELonaa2yUBoLiQIaL0jqLzA/99SSCHC8407AXWBtbvSw4HZJgyXo6arCzPYDZ7sKdhcYcgK+AlMDst+Bl4C/h8ZH4JykR93xypMwsw3AFmBGB61TgCUdvv/mBFhAwFf3PklOwLgdZuZr2+nQAh8i4AewdLz/+FGvmdkc4AkwudWTIQKeSVo8bt3exnAzewosykvAsKTVE4yAtltnKAISASkC0l8grQFpEfxfdoF2aXC0xCYWyWZ2HtjXgjfi26Bngn640Dw2SroTy7gYOFnucLsFq79xIJIdMGwFfgInJQ3EMCo2hpntBo4Ak4DLfjI0diIU25i64CUC6uKJquxIEVAV83XBTRFQF09UZUeKgKqYrwtuioDsUfgMsLAuXolkx4PGo3AgGYpkQ+Uw/U7AG2B25aZUY8BbJ+AdMKsa/MpR3zsB14BtlZtSjQG/0+FsHdgFzKzGjuioH4ABScfTNhid+5oBpgiomUOim5MiIDrlNQNMEVAzh0Q3J0VAdMprBjj6KHwQmJ+Vxh7GuvAYm4usPrg+K409lXTWkyGvmHrltHmsiH3xsddkZHXBSy04faHzgEFJ23ttVEz9gXOPRnm83U3RiXhLrO2N2ERAioD0F0hrQFoE22xH//0u8ETSspj7dK+xQo0hoW3QW2SWTaCGCS/8eAHor9GtZWalpE+99k4v9ZuZ9wydANaFCPjcoUvUW2deA95YFRqvgOgJlJkdALyrpVNVa3qW5IVs/+IRcBPYVIIXoiVQZuYts9dLsPlWmY2T0RKoEgu6vytDJfQNu5orknaW4JWuKkoq6Db6h5ubp4v2Dx+S5Bctej7M7CKwtwDQWJ/zH2eCWR/xcsBfoW7SVty3wClJFwoY9M9TM1v98nPegq4XRB8Dt5u73H8Bg0OWI1PrkR0AAAAASUVORK5CYII=');

}


.icon-news{
    background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAGmElEQVR4XuVbaaiVVRRd609lmM1UkoElDRSVFk+bsCgqyAYjKxp+aGGDUBmImVGKWSFSGWSJVNKASUqizQP5I8oyLAULmrCyicpGy+rHivU693Hued+997vD9971vg2Pd7n3DHuvs88+++y9D9EPJGk3APsA2DdM/wOAH0n+3tfssMgJJe0CYDyACwEcEgS24P4+i7YbCAAG5BMASwG8SPLvovhsOQCS9gJwPoBzAIwDsHOTzBsUA/ESgJdJ/trkeGXdWwaApKMBXA/gYgB7tpLJaKyfACwHsJDkxlbM0TQAkkYEwS18s6udVyZviYUBiE/zdspq1zAAkoZGgudZ8TUAvo/+vgufzdd+APYP//3Zf6fmEOznCIhvcrTv1aQhACSNAvAkgCNqTPoOgOcAPE7yy3oYlHRAMKATcoDxsReD5Ov1zOG2dQMg6WRbZgCDK0zmlVgcrLcBaJokHRsM62QA1rxKJ8jVJJ+qZ8K6AJB0pi1xDcEXkfy2Hibytg1aYRCqATGFpO1DLsoNgKRrATyUMepfAOYBKEzwdM4IiFsB7JTB0wyS9+RBIBcAkm4BcHfGgJu8G.........完整代码请登录后点击上方下载按钮下载查看

网友评论0