first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,131 @@
.header{
height: 42px;
width: 100%;
background-color: #fff;
position: fixed;
top: 0;
left: 0;
}
.header h1{
font-size: 18px;
color: #191919;
text-align: center;
line-height: 42px;
}
.content{
margin-top: 42px;
margin-bottom: 52px;
}
.ShoppingCart{
width: 100%;
height: 223px;
background-color: #f9f9f9;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding-top: 20px;
}
.ShoppingCart img{
height: 105px;
width: 105px;
}
.ShoppingCart p{
margin-top: 10px;
font-size: 15px;
color: #999999;
}
.ShoppingCart input{
margin-top: 10px;
width: 90px;
height: 30px;
text-align: center;
border: 1px solid #999999;
border-radius: 20px;background-color: #77777700;
}
.SellWell{
width: 100%;
height: 54px;
background-color: #f9f9f9;
}
.SellWell h1{
font-size: 17px;
color: #333333;
text-align: center;
line-height: 54px;
}
.b{
width: 100%;
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
background-color: #f9f9f9;
}
.b li{
margin-bottom: 5px;
width: 48%;
background-color: #fff;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.b li img{
margin-top: 10px;
height: 136px;
width: 136px;
}
.b li .p_b{
margin-top: 10px;
font-size: 12px;
color: #333333;
}
.b li .p_y{
margin-top: 10px;
font-size: 15px;
color: red;
margin-bottom: 15px;
}
.b li span{
margin-left: 2px;
font-size: 10px;
color: #999999;
}
.foot{
height: 52px;
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 99999;
background-color: #f9f9f9;
}
.foot li{
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.foot li .ftimg{
width: 24px;
height: 24px;
}
.foot li span{
color: #787878;
font-size: 10px;
margin-top: 3px;
margin-bottom: 5px;
}
.foot li a{
color: #787878;
width: 24px;
height: 24px;
}

View File

@@ -0,0 +1,220 @@
.header{
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 9998;
background-color: #f9f9f9;
}
.header_top{
display: flex;
align-items: center;
justify-content: space-around;
position: relative;
left: 0;
right: 0;
width: 100%;
height: 42px;
}
.header_top .leftimg{
height: 14px;
width: 64px;
}
.header_top input{
width: 200px;
height: 33px;
border: none;
border-radius: 20px;
background-color: rgba(155,155,155,0.1);
background-image: url("../img/icon_search.png");
background-repeat: no-repeat;
background-position: 10px;
background-size: 14px;
padding-left: 35px;
box-sizing: border-box;
}
.header_top .rightimg{
margin-left: 5px;
height: 25px;
width: 25px;
}
.header_top span{
margin-right: 5px;
font-size: 14px;
}
/* 内容 */
.content{
width: 100%;
margin-top: 42px;
margin-bottom: 52px;
display: flex;
justify-content: space-between;
}
.content_left{
overflow: hidden;
padding-left: 5px;
box-sizing: border-box;
position: fixed;
height: 100%;
overflow-y: scroll;
}
.contentleft_core{
display: flex;
justify-content: space-around;
flex-direction: column;
height: 120%;
}
.contentleft_core li{
margin: 18px 0;
font-size: 13px;
color: #333333;
}
.content_right{
margin-left: 31%;
overflow-y: scroll;
}
.content_right .img1{
height: 70px;
margin-top: 8px;
margin-left: 5px;
width: 96%;
border-radius: 12px;
}
.details{
width: 100%;
margin-top: 10px;
}
.details .titlep{
font-size: 14px;
color: #333333;
text-align: center;
}
.details ul{
width: 100%;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.details ul li{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 33.333%;
margin-top: 8px;
}
.details ul li img{
height: 50px;
width: 50px;
}
.details ul li p{
margin-top: 8px;
width: 55px;
height: 28px;
font-size: 11px;
color: #666666;
overflow: hidden;
text-align: center;
}
/* 底部 */
.foot{
height: 52px;
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 99999;
background-color: #f9f9f9;
}
.foot li{
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.foot li .ftimg{
width: 24px;
height: 24px;
}
.foot li span{
color: #787878;
font-size: 10px;
margin-top: 3px;
margin-bottom: 5px;
}
.foot li a{
color: #787878;
width: 24px;
height: 24px;
}

View File

@@ -0,0 +1,7 @@
body,ul,li,p,input,a,h1,h2,h3,h4,h5,h6{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
outline: none;
}

View File

@@ -0,0 +1,166 @@
.header{
width: 100%;
height: 42px;
position: fixed;
top: 0;
left: 0;
background-color: #fff;
}
.header h1{
width: 342px;
margin: 0 auto;
font-size: 18px;
color: #191919;
text-align: center;
height: 42px;
line-height: 42px;
}
.Notice{
margin-top: 42px;
width: 100%;
height: 101px;
}
.Notice_core{
width: 342px;
height: 100%;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.Notice_core li{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.Notice_core li img{
width: 42px;
height: 42px;
}
.Notice_core li p{
margin-top: 3px;
font-size: 12px;
color: #9b9b9b;
}
.content{
margin-top: 42px;
margin-bottom: 52px;
}
.content .content_img{
height: 153px;
width: 100%;
border-radius: 10px;
background-position: center;
background-size: 100% 100%;
background-image: url("../img/1k4oKfuLF9GJWs7coytJ.jpg");
}
.content li{
margin-bottom: 20px;
padding: 0 5px;
}
.content .p_name{
margin-top: 10px;
margin-left: 5px;
font-size: 14px;
color: #333333;
}
.content .p_promotion{
margin-top: 10px;
margin-left: 5px;
font-size: 12px;
color: #666666;
}
.content .p_other{
margin-top: 10px;
margin-left: 5px;
font-size: 12px;
color: #999999;
display: flex;
justify-content: space-between;
margin-right: 5px;
}
.Headlines{
position: relative;
margin: 13px 0;
}
.Headlines h1{
font-size: 18px;
color: #333333;
text-align: center;
}
.Headlines span{
position: absolute;
font-size: 11px;
color: #999999;
bottom: 0;
right: 25px;
}
/* 底部 */
.foot{
height: 52px;
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 99999;
background-color: #f9f9f9;
}
.foot li{
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.foot li .ftimg{
width: 24px;
height: 24px;
}
.foot li span{
color: #787878;
font-size: 10px;
margin-top: 3px;
margin-bottom: 5px;
}
.foot li a{
color: #787878;
width: 24px;
height: 24px;
}

View File

@@ -0,0 +1,191 @@
.header{
width: 100%;
height: 42px;
position: fixed;
top: 0;
left: 0;
background-color: red;
display: flex;
justify-content: space-between;
z-index: 99;
}
.header_left{
margin-left: 15px;
display: flex;
align-items: center;
}
.header_left img{
height: 25px;
width: 25px;
}
.header_left p{
margin-left: 10px;
font-size: 17px;
color: #ffff;
}
.header_right{
display: flex;
align-items: center;
margin-right: 15px;
}
.header_right img{
margin-left: 10px;
height: 25px;
width: 25px;
}
.content{
margin-top: 42px;
margin-bottom: 52px;
background-color: #f9f9f9;
}
.SignIn{
position: relative;
width: 100%;
height: 140px;
}
.SignIn_core{
width: 100%;
height: 100%;
background-color: red;
border-bottom-left-radius: 40px;
border-bottom-right-radius: 40px;
}
.SignIn_dl{
margin-left: 15px;
display: flex;
}
.SignIn_dl img{
height: 63px;
width: 63px;
}
.SignIndl_right{
margin-left: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.SignIndl_right .b{
font-size: 20px;
color: #fff;
}
.SignIndl_right .p{
margin-top: 5px;
font-size: 12px;
color: #fff;
}
.property{
border-radius: 10px;
top: 100px;
left: 6%;
position: absolute;
width: 360px;
margin: 0 auto;
height: 70px;
display: flex;
align-items: center;
justify-content: space-around;
background-color: #fff;
}
.property li{
width: 100%;
border-right: 1px solid #eaeaea;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.property li:last-child{
border: none;
}
.property li p{
margin-top: 5px;
font-size: 11px;
color: #666666;
}
.property li span{
display: inline-block;
height: 1.5px;
width: 6px;
background-color: black;
}
.Order{
margin-top: 40px;
width: 100%;
height: 223px;
}
.Order_core{
width: 356px;
height: 223px;
margin: 0 auto;
background-color: #fff;
}
.tilite{
padding-top: 15px;
padding-left: 10px;
padding-right: 10px;
margin-top: 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
.tilite .l{
font-size: 15px;
color: #333;
}
.tilite .r{
font-size: 12px;
color: #6666;
}
.Order_b{
margin-top: 20px;
display: flex;
justify-content: space-around;
align-items: center;
}
.Order_b img{
height: 42px;
width: 42px;
}
.Order_b p{
font-size: 12px;
color: #666666;
}
.foot{
height: 52px;
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 99999;
background-color: #f9f9f9;
}
.foot li{
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.foot li .ftimg{
width: 24px;
height: 24px;
}
.foot li span{
color: #787878;
font-size: 10px;
margin-top: 3px;
margin-bottom: 5px;
}
.foot li a{
color: #787878;
width: 24px;
height: 24px;
}

View File

@@ -0,0 +1,433 @@
.header{
position: fixed;
left: 0;
top: 0;
width: 100%;
z-index: 9998;
background-color: #f9f9f9;
}
.header_top{
display: flex;
align-items: center;
justify-content: space-around;
position: relative;
left: 0;
right: 0;
width: 100%;
height: 42px;
}
.header_top .leftimg{
height: 14px;
width: 64px;
}
.header_top input{
width: 200px;
height: 33px;
border: none;
border-radius: 20px;
background-color: rgba(155,155,155,0.1);
background-image: url("../img/icon_search.png");
background-repeat: no-repeat;
background-position: 10px;
background-size: 14px;
padding-left: 35px;
box-sizing: border-box;
}
.header_top .rightimg{
margin-left: 5px;
height: 25px;
width: 25px;
}
.header_top span{
margin-right: 5px;
font-size: 14px;
}
.header_bottom{
width: 100%;
overflow-x: scroll;
}
.header_bottom ul{
width: 138%;
height: 36px;
display: flex;
align-items: center;
justify-content: space-around;
font-size: 14px;
color: #777777;
}
.header_bottom li:first-child{
border-bottom: 1px solid red;
color: red;
}
.headerbottom_zz{
position: absolute;
bottom: 0;
right: 0;
background-image: url("../img/more_down.png");
background-size: 10px;
background-repeat: no-repeat;
background-position: center;
background-color: rgb(255, 255, 255);
height: 36px;
width: 36px;
}
.menu{
display: none;
position: absolute;
width: 100%;
height: 144px;
top: 42px;
z-index: 9999;
background-color: #f9f9f9;
}
.menu h3{
height: 31px;
font-size: 15px;
color: #777;
margin-left: 16px;
}
.menu ul{
margin-top: 13px;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.menu ul li{
text-align: center;
width: 33.333%;
height: 48px;
border-radius: 20px;
border: 1 solid #777;
}
.menu ul li p{
height: 32px;
width: 104px;
line-height: 32px;
border-radius: 70px;
margin: 0 auto;
border: 1px solid #eaeaea;
}
.menu ul li:first-child p{
border: 1px solid red;
}
.headerbottom_zz:hover .menu{
display: block;
}
.content{
width: 100%;
margin-top: 78px;
margin-bottom: 52px;
}
.WheelPlanting{
position: relative;
padding-top: 4px;
width: 100%;
height: 153px;
background-color: #f9f9f9;
}
.dynamic{
display: flex;
height: 100%;
overflow: hidden;
}
.dynamic li{
padding: 0 6px;
}
.dynamic li img{
border-radius: 10px;
height: 100%;
}
.dot{
position: absolute;
width: 80px;
height: 20px;
display: flex;
justify-content: space-around;
right: 22px;
bottom: 0px;
}
.dot li{
width: 5px;
height: 5px;
border: 1px solid #fff;
border-radius: 50%;
}
.dot li:first-child{
background-color: #fff;
}
.backpic_squared{
background-color: #f9f9f9;
width: 100%;
box-sizing: border-box;
}
.backpic_core{
height: 92px;
width: 367px;
margin: 0 auto;
}
.backpic_top{
border-top: 5px solid #f9f9f9;
width: 100%;
height: 20px;
display: flex;
align-items: center;
justify-content: space-around;
font-size: 11px;
color: #777;
}
.icon-32{
font-size: 11px !important;
color: #777;
}
.backpic_bottom{
margin-top: 15px;
width: 100%;
height: 53px;
display: flex;
align-items: center;
justify-content: space-around;
}
.backpic_bottom li{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.backpic_bottom li .img1{
height: 31px;
width: 31px;
background-image: url("../img/69b0eb135ed10c45aa8c2272e8e57493.png");
background-position-x: 0%;
background-size: cover;
}
.backpic_bottom li .img2{
height: 31px;
width: 31px;
background-image: url("../img/69b0eb135ed10c45aa8c2272e8e57493.png");
background-position-x: 11.11%;
background-size: cover;
}
.backpic_bottom li .img3{
height: 31px;
width: 31px;
background-image: url("../img/69b0eb135ed10c45aa8c2272e8e57493.png");
background-position-x: 22.22%;
background-size: cover;
}
.backpic_bottom li .img4{
height: 31px;
width: 31px;
background-image: url("../img/69b0eb135ed10c45aa8c2272e8e57493.png");
background-position-x: 33.33%;
background-size: cover;
}
.backpic_bottom li .img5{
height: 31px;
width: 31px;
background-image: url("../img/69b0eb135ed10c45aa8c2272e8e57493.png");
background-position-x: 44.44%;
background-size: cover;
}
.backpic_bottom li span{
text-align: center;
width: 65px;
overflow: hidden;
font-size: 12px;
height: 16px;
}
.linone{
display: flex;
align-items: center;
justify-content: center;
height: 10px;
text-align: center;
background-color: #f9f9f9;
}
.linone span{
height: 2px;
width: 8px;
margin: 0 2px;
}
.linone span:first-child{
background-color: #777777;
}
.linone span:last-child{
background-color: #e5e5e5;
}
.channel_headline{
background-color: #f9f9f9;
}
.ChannelHeadline_core{
position: relative;
width: 338px;
height: 42px;
margin: 0 auto;
display: flex;
align-items: center;
}
.channel_lin{
width: 100%;
height: 1px;
position: absolute;
top: 0;
left: 0;
background-color: #f1f1f1;
}
.ChannelHeadline_core h2{
font-size: 14px;
color: #333333;
}
.ChannelHeadline_core .RollingTitle{
overflow: hidden;
font-size: 12px;
color: #4d4d4d;
}
.ChannelHeadline_core .dian{
height: 5px;
width: 5px;
border-radius: 50px;
background-color: #c9c9c9;
margin: 0 5px;
}
.ChannelHeadline_core .FootTitle{
font-size: 12px;
color: #4d4d4d;
margin-left: 94px;
}
.seckill{
width: 100%;
height: 160px;
background-color: #c7c7c741;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.seckill_core h3{
display: flex;
align-items: center;
justify-content: center;
}
.seckill_core .time1{
font-size: 14px;
color: #4d4d4d;
}
.seckill_core .time2{
vertical-align: middle;
width: 16px;
height: 16px;
margin: 0 5px;
background-size: 100% 100%;
background-image: url("../img/seckill_title.png");
}
.seckill_core .time3{
font-size: 16px;
color: #4d4d4d;
}
.seckill_core .time4{
font-size: 12px;
color: #9b9b9b;
margin-left: 3px;
}
.seckill_bootm{
position: relative;
width: 100%;
overflow-x: scroll;
margin-top: 10px;
height: 110px;
}
.seckill_bootm .Slide{
width: 280%;
overflow: hidden;
display: flex;
justify-content: space-around;
}
.seckill_bootm .Slide li{
width: 79px;
height: 90px;
border-radius: 15px;
background-color: #fff;
}
.seckill_bootm .Slide li{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.seckill_bootm .Slide li img{
width: 64px;
height: 64px;
}
.seckill_bootm .Slide li p{
width: 68px;
height: 18px;
font-size: 9px;
color: #999999;
overflow: hidden;
line-height: 18px;
text-align: center;
}
.Slide_bottom{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
bottom: 0;
left: -11px;
width: 280%;
}
.Slide_bottom li{
font-size: 9px;
color: #ca141d;
margin-right: 25px;
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.ChannelAds{
background-color: #f9f9f9;
}
.ChannelAds_core{
width: 363px;
margin: 0 auto;
}
.foot{
height: 52px;
width: 100%;
position: fixed;
display: flex;
bottom: 0;
left: 0;
z-index: 99999;
background-color: #f9f9f9;
}
.foot li{
width: 20%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.foot li .ftimg{
width: 24px;
height: 24px;
}
.foot li span{
color: #787878;
font-size: 10px;
margin-top: 3px;
margin-bottom: 5px;
}
.foot li a{
color: #787878;
width: 24px;
height: 24px;
}

View File

@@ -0,0 +1,87 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/clear.css">
<link rel="stylesheet" href="../CSS/public.css">
<link rel="stylesheet" href="../CSS/ShoppingCart.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1727743_xl704qtmd5h.css">
<title>华为商城</title>
</head>
<body>
<div class="header">
<h1>购物车</h1>
</div>
<div class="content">
<div class="ShoppingCart">
<img src="../img/new-cart-empty.cc2a5c0.png" alt="">
<p>您的购物车没有商品</p>
<input type="text" placeholder="去购物">
</div>
<div class="SellWell">
<h1>热销推荐</h1>
</div>
<ul class="b">
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
<li>
<img src="../img/428_428_ACF04CEA5203ABB146D3CA5FBC29E737FAB3F8E8D961A164mp.png" alt="">
<p class="p_b">Mate 30 Pro 5G</p>
<p class="p_y">¥6399<span>¥6599</span></p>
</li>
</ul>
</div>
<!-- 底部菜单 -->
<ul class="foot">
<li>
<a href="../index.html"><img class="ftimg" src="../img/sy.png" alt=""></a>
<span><a href="../index.html">首页</a></span>
<li>
<a href="../html/classification.html"><img class="ftimg" src="../img/category.png" alt=""></a>
<span><a href="../html/classification.html">分类</a></span>
</li>
<li>
<a href="../html/find.html"><img class="ftimg" src="../img/find.png" alt=""></a>
<span><a href="../html/find.html">发现</a></span>
</li>
<li>
<img class="ftimg" src="../img/cart.png" alt="">
<span><a href="">购物车</a></span>
</li>
<li>
<a href="../html/home.html"><img class="ftimg" src="../img/personal.png" alt=""></a>
<span><a href="../html/home.html">我的</a></span>
</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,155 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/clear.css">
<link rel="stylesheet" href="../CSS/public.css">
<link rel="stylesheet" href="../CSS/classification.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1727743_xl704qtmd5h.css">
<title>华为商城分类</title>
</head>
<body>
<!-- 头部菜单 -->
<div class="header">
<div class="header_top">
<img class="leftimg" src="../img/logo_vmall.png" alt="">
<input type="text" placeholder="老用户福利">
<img class="rightimg" src="../img/icon_message_black.png" alt="">
<span>登录</span>
</div>
</div>
<!-- 内容 -->
<div class="content">
<div class="content_left">
<ul class="contentleft_core">
<li>新品</li>
<li>华为手机</li>
<li>荣耀手机</li>
<li>笔记本&平板</li>
<li>智能穿戴&VR</li>
<li>智慧屏</li>
<li>智能家居</li>
<li>耳机音箱</li>
<li>专属配件</li>
<li>通用配件</li>
<li>生态产品</li>
<li>增值服务</li>
<li>智能计算</li>
</ul>
</div>
<div class="content_right">
<img class="img1" src="../img/699xFAijRAmtVrpOZQfY.jpg" alt="">
<img class="img1" src="../img/ug4zaI5tB2qaC7q6oN0w.jpg" alt="">
<div class="details">
<p class="titlep">手机</p>
<ul>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
</ul>
</div>
<div class="details">
<p class="titlep">手机</p>
<ul>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
<li>
<img src="../img/428_428_3D49606EC05C3B4ED89368F84D0B672CF5B647187113B9A2mp.png" alt="">
<p>HUAWEI P 40 5G</p>
</li>
</ul>
</div>
</div>
</div>
<!-- 底部菜单 -->
<ul class="foot">
<li>
<a href="../index.html"><img class="ftimg" src="../img/sy.png" alt=""></a>
<span><a href="../index.html">首页</a></span>
<li>
<img class="ftimg" src="../img/category.png" alt="">
<span><a href="">分类</a></span>
</li>
<li>
<a href="../html/find.html"><img class="ftimg" src="../img/find.png" alt=""></a>
<span><a href="../html/find.html">发现</a></span>
</li>
<li>
<a href="../html/ShoppingCart.html"><img class="ftimg" src="../img/cart.png" alt=""></a>
<span><a href="../html/ShoppingCart.html">购物车</a></span>
</li>
<li>
<a href="../html/home.html"><img class="ftimg" src="../img/personal.png" alt=""></a>
<span><a href="../html/home.html">我的</a></span>
</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,175 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/clear.css">
<link rel="stylesheet" href="../CSS/public.css">
<link rel="stylesheet" href="../CSS/find.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1727743_xl704qtmd5h.css">
<title>华为商城</title>
</head>
<body>
<div class="header">
<h1>发现频道</h1>
</div>
<div class="Notice">
<ul class="Notice_core">
<li>
<img src="../img/icon_headline.png" alt="">
<p>商城公告</p>
</li>
<li>
<img src="../img/tiHS593NPXbqgwfT47xk.png" alt="">
<p>企业购</p>
</li>
<li>
<img src="../img/icon_fans.png" alt="">
<p>粉丝互动</p>
</li>
<li>
<img src="../img/nwylDYIPCm4pn2hNwA46.png" alt="">
<p>视频专区</p>
</li>
<li>
<img src="../img/icon_public_surver.png" alt="">
<p>华为众测</p>
</li>
</ul>
</div>
<div class="Headlines">
<h1>商城头条</h1>
<span>声明</span>
</div>
<ul class="content">
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
<li>
<div class="content_img">
</div>
<p class="p_name">一张图看懂华为2019年年报</p>
<p class="p_promotion">长风万里,破浪前行</p>
<p class="p_other">
<span>2020-03-31</span>
<span>7413 阅读</span>
</p>
</li>
</ul>
<!-- 底部菜单 -->
<ul class="foot">
<li>
<a href="../index.html"><img class="ftimg" src="../img/sy.png" alt=""></a>
<span><a href="../index.html">首页</a></span>
<li>
<a href="../html/classification.html"><img class="ftimg" src="../img/category.png" alt=""></a>
<span><a href="../html/classification.html">分类</a></span>
</li>
<li>
<img class="ftimg" src="../img/find.png" alt="">
<span><a href="">发现</a></span>
</li>
<li>
<a href="../html/ShoppingCart.html"><img class="ftimg" src="../img/cart.png" alt=""></a>
<span><a href="../html/ShoppingCart.html">购物车</a></span>
</li>
<li>
<a href="../html/home.html"><img class="ftimg" src="../img/personal.png" alt=""></a>
<span><a href="../html/home.html">我的</a></span>
</li>
</ul>
</body>
</html>

View File

@@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../CSS/clear.css">
<link rel="stylesheet" href="../CSS/public.css">
<link rel="stylesheet" href="../CSS/home.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1727743_xl704qtmd5h.css">
<title>华为商城</title>
</head>
<body>
<div class="header">
<div class="header_left">
<img src="../img/defaultface_user_after.png" alt="">
<p>登录/注册</p>
</div>
<div class="header_right">
<img src="../img/icon_setting.3e822f4.png" alt="">
<img src="../img/homexz.png" alt="">
</div>
</div>
<div class="content">
<div class="SignIn">
<div class="SignIn_core">
<div class="SignIn_dl">
<img src="../img/defaultface_user_after.png" alt="">
<div class="SignIndl_right">
<p class="b">登录/领积分</p>
<p class="p">签到得积分</p>
</div>
</div>
</div>
<ul class="property">
<li>
<span></span>
<p>积分</p>
</li>
<li>
<span></span>
<p>积分</p>
</li>
<li>
<span></span>
<p>积分</p>
</li>
</ul>
</div>
<div class="Order">
<div class="Order_core">
<div class="tilite">
<p class="l">我的订单</p>
<p class="r">全部订单></p>
</div>
<ul class="Order_b">
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
</ul>
</div>
</div>
<div class="Order">
<div class="Order_core">
<div class="tilite">
<p class="l">我的订单</p>
<p class="r">全部订单></p>
</div>
<ul class="Order_b">
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
</ul>
</div>
</div>
<div class="Order">
<div class="Order_core">
<div class="tilite">
<p class="l">我的订单</p>
<p class="r">全部订单></p>
</div>
<ul class="Order_b">
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
<li>
<img src="../img/v7aUv4jiCp2BhZmmVXWn.png" alt="">
<p>待付款</p>
</li>
</ul>
</div>
</div>
</div>
<!-- 底部菜单 -->
<ul class="foot">
<li>
<a href="../index.html"><img class="ftimg" src="../img/sy.png" alt=""></a>
<span><a href="../index.html">首页</a></span>
<li>
<a href="../html/classification.html"><img class="ftimg" src="../img/category.png" alt=""></a>
<span><a href="../html/classification.html">分类</a></span>
</li>
<li>
<a href="../html/find.html"><img class="ftimg" src="../img/find.png" alt=""></a>
<span><a href="../html/find.html">发现</a></span>
</li>
<li>
<a href="../html/ShoppingCart.html"><img class="ftimg" src="../img/cart.png" alt=""></a>
<span><a href="../html/ShoppingCart.html">购物车</a></span>
</li>
<li>
<img class="ftimg" src="../img/personal.png" alt="">
<span><a >我的</a></span>
</li>
</ul>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 616 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 280 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 898 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

View File

@@ -0,0 +1,227 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/clear.css">
<link rel="stylesheet" href="./CSS/public.css">
<link rel="stylesheet" href="./CSS/index.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1727743_xl704qtmd5h.css">
<title>华为商城首页</title>
</head>
<body>
<!-- 头部菜单 -->
<div class="header">
<div class="header_top">
<img class="leftimg" src="./img/logo_vmall.png" alt="">
<input type="text" placeholder="老用户福利">
<img class="rightimg" src="./img/icon_message_black.png" alt="">
<span>登录</span>
</div>
<div class="header_bottom">
<ul>
<li>推荐</li>
<li>华为频道</li>
<li>荣耀新品</li>
<li>安心居家</li>
<li>Mate30系列</li>
<li>拼团</li>
</ul>
</div>
<div class="headerbottom_zz">
<div class="menu">
<h3>全部</h3>
<ul>
<li><p>推荐</p></li>
<li><p>华为频道</p></li>
<li><p>荣耀新品</p></li>
<li><p>安心居家</p></li>
<li><p>Mata30系列</p></li>
<li><p>拼团</p></li>
</ul>
</div>
</div>
</div>
<!-- 内容 -->
<div class="content">
<!-- 轮播图 -->
<div class="WheelPlanting">
<ul class="dot">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul class="dynamic">
<li><img src="./img/l3Ebf2v1az48QPoKekpb.jpg" alt=""></li>
<li><img src="./img/Ii8ptQJ39QaAq3GPQjaN.jpg" alt=""></li>
<li><img src="./img/giYHHSaa627RzKKQtwTL.jpg" alt=""></li>
<li><img src="./img/t7CkSZKSEBGgSElpWfBY.jpg" alt=""></li>
<li><img src="./img/eBpTeDSK3XmX2xe3csRB.jpg" alt=""></li>
<li><img src="./img/UuxYj39RYUAttKac80fy.jpg" alt=""></li>
</ul>
</div>
<!-- 轮播图结束-->
<div class="backpic_squared">
<div class="backpic_core">
<ul class="backpic_top">
<li>
<i class="iconfont icon-32"></i>
官方商城
</li>
<li>
<i class="iconfont icon-32"></i>
正品保障
</li>
<li>
<i class="iconfont icon-32"></i>
售后无忧
</li>
</ul>
<ul class="backpic_bottom">
<li>
<div class="img1"></div>
<span>会员领券</span>
</li>
<li>
<div class="img2"></div>
<span>华为数码</span>
</li>
<li>
<div class="img3"></div>
<span>HUAWEI商城</span>
</li>
<li>
<div class="img4"></div>
<span>荣耀数码</span>
</li>
<li>
<div class="img5"></div>
<span>以旧换新</span>
</li>
</ul>
</div>
</div>
<div class="linone">
<span></span>
<span></span>
</div>
<!-- 商城头条 -->
<div class="channel_headline">
<div class="ChannelHeadline_core">
<div class="channel_lin"></div>
<h2>商城头条</h2>
<p class="dian"></p>
<p class="RollingTitle">
一张图看懂华为2019年年报</p>
<P class="FootTitle">更多</P>
</div>
</div>
<!-- 限时购-->
<div class="seckill">
<div class="seckill_core">
<h3>
<span class="time1">限时购</span>
<span class="time2"></span>
<span class="time3">11:53:48</span>
<span class="time4">后结束</span>
</h3>
</div>
<div class="seckill_bootm">
<ul class="Slide">
<li>
<img src="./img/142_142_1555752016264mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_2F3A76D14CB25E4101278087C51487F4691E72674C684788mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_9F646DC4DD50AD8591CE902EB3438CCFD551FD9D5311E3E9mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_52F045B3A4ADEA60CD2CB0B1E1A203FE6A34A56891A300CDmp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_3FD06E7E9FCF1C3A6AAA5C15E31867DFC663110C94BEFE35mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_3CD2C9B9CA105737D3A361014B99F1CAD40D0F2A6EE06E65mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_909881D6BCBF027F47EEF3EF6AA5D8407613AA8228980DF8mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_C72517A4938F09A0E087E77DAE4A882A2A80674FAAC94C20mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_209B06923D36415DB4D1BC69E2660908D04315C7457F8783mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_A897196E7EA36622979AC0B41E9F1DF5BCDCF569450A388Fmp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_1545268730575mp.png" alt="">
<p>MateBook X Pro</p>
</li>
<li>
<img src="./img/142_142_100700F1A17202378058B2EA2459E89F4EE6F17C06A133CCmp.png" alt="">
<p>MateBook X Pro</p>
</li>
</ul>
<ul class="Slide_bottom">
<li>限时直降400</li>
<li>订金预定送耳机</li>
<li>限时直降50元</li>
<li>4.1特惠3999起</li>
<li>限时直降200元</li>
<li>预定送音箱免息</li>
<li>优惠100+赠品</li>
<li>优惠100享镌刻</li>
<li>最高直降1300</li>
<li>最高直降400</li>
<li>¥329</li>
<li>预定30抵50</li>
</ul>
</div>
</div>
<!-- 频道广告 -->
<div class="ChannelAds">
<div class="ChannelAds_core">
</div>
</div>
</div>
<!-- 底部菜单 -->
<ul class="foot">
<li><img src="./img/home_active.png" alt=""></li>
<li>
<a href="./html/classification.html"><img class="ftimg" src="./img/category.png" alt=""></a>
<span><a href="./html/classification.html">分类</a></span>
</li>
<li>
<a href="./html/find.html"><img class="ftimg" src="./img/find.png" alt=""></a>
<span><a href="./html/find.html">发现</a></span>
</li>
<li>
<a href="./html/ShoppingCart.html"><img class="ftimg" src="./img/cart.png" alt=""></a>
<span><a href="./html/ShoppingCart.html">购物车</a></span>
</li>
<li>
<a href="./html/home.html"><img class="ftimg" src="./img/personal.png" alt=""></a>
<span><a href="./html/home.html">我的</a></span>
</li>
</ul>
</body>
</html>