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,5 @@
body,ul,li{
margin: 0;
padding: 0;
list-style: none;
}

View File

@@ -0,0 +1,40 @@
body{
height: 5000px;
background-color: #9b9b9b;
}
.menu{
position: absolute;
top: 60px;
right: 100px;
width: 50px;
display: flex;
align-items: center;
flex-direction: column;
background-color: #c7c7c7;
border-radius: 15px;
box-sizing: border-box;
}
.fixed {
position: fixed;
top: 0;
right: 100px;
width: 50px;
display: flex;
align-items: center;
flex-direction: column;
background-color: #c7c7c7;
border-radius: 15px;
box-sizing: border-box;
}
.menu li{
padding: 0 8px;
text-align: center;
font-size: 13px;
height: 40px;
}
.bamenuli{
background-color: rgb(170, 73, 73);
}
.bamenul{
background-color: seagreen;
}

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>仿淘宝右侧滚动切换激活样式</title>
<link rel="stylesheet" href="./css/clear.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<ul class="menu">
</ul>
</body>
<script src="./js/index.js"></script>
</html>

View File

@@ -0,0 +1,54 @@
var body = document.querySelector("body");
var Menu = document.querySelector(".menu");
var menus = {
status: 200,
result: {
menu: [
{ id: 1, menuli: '爱逛好货', min: 20, max: 60 },
{ id: 2, menuli: '好店直播', min: 70, max: 120 },
{ id: 3, menuli: '品质特色', min: 122, max: 172 },
{ id: 4, menuli: '实惠热卖', min: 173, max: 223 }
]
}
}
body.onscroll = function () {
var y = document.documentElement.scrollTop;
menus.result.menu.forEach(function(val,index){
if (val.min < y && y < val.max) {
Roll()
document.querySelectorAll(".menu li")[index].className = "bamenuli"
index == 0 ? document.querySelector("ul").className = "menu fixed" : ''
} else if (y<20){
document.querySelector("ul").className = "menu"
}
});
}
function Renderli() {
menus.result.menu.forEach( function(val,index) {
Menu.innerHTML += `<li class="${ index == 0 ? 'bamenuli' : ''}">${val.menuli}</li>`
} );
document.querySelectorAll(".menu li").forEach(function(val,index) {
val.onclick = function() {
if (menus.result.menu[index].min > 20) {
document.querySelector("ul").className = "menu fixed"
}
Roll()
val.className = "bamenuli"
document.documentElement.scrollTop = menus.result.menu[index].min
// console.log("index: ", index)
}
})
}
function Roll(){
var Menu = document.querySelectorAll(".menu li")
Menu.forEach(function(val,index){
val.className = ""
})
}
Renderli()

View File

@@ -0,0 +1,115 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body,ul,li,input{
margin: 0;
padding: 0;
list-style: none;
}
.main {
width: 520px;
height: 280px;
border: 1px solid #000;
overflow: hidden;
position: relative;
margin: 30px auto;
}
.daohang {
position: absolute;
width: 520px;
height: 36px;
top: 50%;
margin-top: -18px;
z-index: 2;
}
.fs {
width: 40px;
height: 40px;
border-radius: 50%;
color: #fff;
background: #000;
text-align: center;
line-height: 40px;
cursor: pointer;
}
.dh_left {
float: left;
}
.dh_right {
float: right;
}
.lb_img{
width: 1560px;
position: relative;
transition: all 0.3s ease;
}
.lb_img li {
float: left;
}
.yd {
position: absolute;
bottom: 15px;
left: 50%;
margin-left: -37.5px;
}
.yd li {
width: 15px;
height: 15px;
border-radius: 100%;
background: #fff;
float: left;
margin-right: 10px;
}
.active {
background: red !important;
}
</style>
</head>
<body>
<div class="main">
<div class="daohang">
<div class="fs dh_left"> < </div>
<div class="fs dh_right"> > </div>
</div>
<ul class="lb_img" style="left: 0px">
</ul>
<ul class="yd">
</ul>
</div>
</body>
<script src="./swiper.js"></script>
<script>
var ListData = [
{ id: 1, href: 'https://www.baidu.com', imgUrl: 'https://aecpm.alicdn.com/simba/img/TB1XotJXQfb_uJkSnhJSuvdDVXa.jpg' },
{ id: 1, href: 'https://www.baidu.com', imgUrl: 'https://aecpm.alicdn.com/simba/img/TB1JNHwKFXXXXafXVXXSutbFXXX.jpg' },
{ id: 1, href: 'https://www.baidu.com', imgUrl: 'https://img.alicdn.com/tfs/TB1VZo7x4v1gK0jSZFFXXb0sXXa-520-280.jpg_q90_.webp' }
];
new Swiper({
time: 1,
containerClassName: '.lb_img',
NavigationClassName: '.yd',
next: '.dh_left',
previous: '.dh_right',
data: ListData,
OuterClassName: '.main',
autoPlay: true
})
</script>
</html>

View File

@@ -0,0 +1,167 @@
(function (win) {
var timer;
var defaultSetting = {
time: 3,
containerClassName: '.container',
NavigationClassName: '.navigation',
next: '.next',
previous: '.prev',
autoPlay: false,
data: [],
imgWidth: 0,
OuterClassName: '.man'
}
// es5 构造函数
// 主要做 变量的保存和校验
function LunBo(setting) {
defaultSetting.OuterClassName = setting.OuterClassName || defaultSetting.OuterClassName
defaultSetting.time = setting.time || defaultSetting.time
defaultSetting.containerClassName = setting.containerClassName || defaultSetting.containerClassName
defaultSetting.NavigationClassName = setting.NavigationClassName || defaultSetting.NavigationClassName
defaultSetting.next = setting.next || defaultSetting.next
defaultSetting.previous = setting.previous || defaultSetting.previous
defaultSetting.autoPlay = setting.autoPlay || defaultSetting.autoPlay
defaultSetting.data = setting.data || defaultSetting.data
if ( defaultSetting.data.length == 0 || (document.querySelector(defaultSetting.containerClassName) == null ||
document.querySelector(defaultSetting.NavigationClassName) == null||
document.querySelector(defaultSetting.next) == null||
document.querySelector(defaultSetting.previous) == null||
document.querySelector(defaultSetting.OuterClassName) == null )) {
console.error("类名不存在或data数据源为空请仔细检查")
} else {
this.init()
}
}
LunBo.prototype = {
init() {
this.RenderContainer()
this.RenderNavigation()
this.BindPreviousClick()
this.BindNextClick()
defaultSetting.autoPlay ? this.AutoPlay() : ''
defaultSetting.autoPlay ? this.Seout() : ''
this.Seover()
setTimeout(() => defaultSetting.imgWidth = document.querySelector("img").width, 300)
},
AutoPlay() {
timer = setInterval( () => {
this.OffSetDistance(-defaultSetting.imgWidth)
this.changeActiveYd()
}, (defaultSetting.time)*1000 )
},
Seover(){
this.$(defaultSetting.OuterClassName).onmouseover = () => {
clearInterval(timer)
}
},
Seout(){
this.$(defaultSetting.OuterClassName).onmouseout = () => {
this.AutoPlay()
}
},
// 渲染 轮播图的数据到页面
RenderContainer() {
defaultSetting.data.forEach((val,index) => {
this.$(defaultSetting.containerClassName).innerHTML +=
`
<li>
<a target="_blank" href="${val.href}">
<img src="${val.imgUrl}" alt="">
</a>
</li>
`
});
},
// 渲染小圆点
RenderNavigation() {
defaultSetting.data.forEach((val,index) => {
this.$(defaultSetting.NavigationClassName).innerHTML +=
`
<li class="${index == 0 ? 'active' : ''}"></li>
`
});
this.BindYdClick()
},
changeActiveYd() {
var index = Math.abs(parseInt(this.$(defaultSetting.containerClassName).style.left)) / defaultSetting.imgWidth;
var LiArr = document.querySelectorAll(`${defaultSetting.NavigationClassName} li`);
LiArr.forEach(function(val){
val.className = ""
})
LiArr[index].className = "active"
},
// 小圆点绑定事件
BindYdClick() {
var LiArr = document.querySelectorAll(`${defaultSetting.NavigationClassName} li`);
LiArr.forEach((val,index) => {
val.onclick = () => {
LiArr.forEach(function(v){
v.className = ""
})
val.className = "active"
this.$(defaultSetting.containerClassName).style.left = `${index * -defaultSetting.imgWidth}px`;
}
})
},
// 右侧下一页数
BindPreviousClick() {
this.$(defaultSetting.previous).onclick = () => {
this.OffSetDistance(-defaultSetting.imgWidth)
this.changeActiveYd()
}
},
// 左侧上一页
BindNextClick() {
this.$(defaultSetting.next).onclick = () => {
this.OffSetDistance(defaultSetting.imgWidth)
this.changeActiveYd()
}
},
OffSetDistance(nums) {
var Offset = parseInt(this.$(defaultSetting.containerClassName).style.left) + nums;
// console.log("Offset: ", Offset)
var maxWidth = defaultSetting.imgWidth * (defaultSetting.data.length - 1);
// console.log("maxWidth: ", maxWidth)
this.$(defaultSetting.containerClassName).style.left = `${Offset}px`
if (Offset < -maxWidth ) {
this.$(defaultSetting.containerClassName).style.left = "0px";
}
if (Offset > 0) {
this.$(defaultSetting.containerClassName).style.left = `-${maxWidth}px`;
}
},
$(calssName) {
return document.querySelector(calssName)
}
}
win.Swiper = LunBo
})(window)

View File

@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
li {
font-size: 20px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<ul>
</ul>
</body>
<script src="./js/index.js"></script>
<script>
var page = 1;
document.querySelector("body").onscroll = function () {
// 检测高度
var scrollTop = document.documentElement.scrollTop || document.body.scrollTop;
var clientHeight = document.documentElement.clientHeight || document.body.clientHeight;
var scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight;
if(scrollHeight > clientHeight && scrollTop + clientHeight === scrollHeight) {
console.log("滚动到底部")
page+=1
getIndexData()
}
}
function getIndexData() {
http({
method: 'GET',
url: 'http://127.0.0.1/mcf/juhe.php',
data: {
page: page
},
success: function(res) {
console.log(res.result.data)
res.result.data.forEach((val,index) => {
document.querySelector("ul").innerHTML += `<li>${index + 1}: ${val.content}</li>`
});
},
error: function(err) {
// alert(err)
}
});
}
getIndexData()
</script>
</html>

View File

@@ -0,0 +1,36 @@
/**
*
* @param {*} params
* {
* method: '' // 请求方法
* url: '' //请求网址
* success: function(){}
* }
*/
function http(params) {
var http = new XMLHttpRequest();
var par = ""
if (params.hasOwnProperty("data")) {
for (const key in params.data) {
par+=`&${key}=${params.data[key]}`
}
params.url = params.url + par.replace("&", "?")
}
http.open(params.method, params.url);
http.send();
http.onreadystatechange = function () {
if (http.readyState == 4 ) { // 浏览器自带的
if (http.status == 200) { // 浏览器自带的
var res = JSON.parse(http.responseText);
if (res.reason == "Success") {
params.success(res)
} else {
params.error(res)
}
} else {
alert("网络不好")
}
}
}
}

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>

View File

@@ -0,0 +1,370 @@
.header{
width: 100%;
height: 60px;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background-color: #2b2c31;
}
.header_core{
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header_left{
height: 100%;
display: flex;
align-items: center;
}
.header_left img{
width: 125px;
margin-right: 60px;
}
.header_left ul{
display: flex;
align-items: center;
justify-content: space-around;
width: 586px;
}
.header_left ul a{
font-size: 14px;
color: #fff;
}
.header_right{
height: 100%;
display: flex;
align-items: center;
}
.header_right input{
width: 100px;
height: 30px;
background: #6e44e6;
border: none;
border-radius: 100px;
font-size: 14px;
color: #ffffff;
text-align: center;
line-height: 30px;
margin-right: 40px;
}
.header_sign{
margin-right: 16px;
height: 22px;
line-height: 22px;
}
.header_sign span{
margin-right: 16px;
font-size: 14px;
}
.header_sign span:first-child {
color: #fff;
}
.header_sign span:last-child{
color: #949494;
}
.header_phone{
color: #fff;
margin-right: 34px;
padding-left: 16px;
border-left: 1px solid #d2d2d2;
font-size: 14PX;
}
.icon-dianhua{
border: #fff;
}
.header::after{
content: '';
width: 100%;
height: 1px;
left: 0;
bottom: 0;
position: absolute;
background: linear-gradient(90deg, #2117a8, #8117f7);
}
.search{
height: 100px;
width: 100%;
padding: 15px 0px;
background-color: #111;
margin-top: 60px;
box-sizing: border-box;
}
.search_bar{
display: flex;
align-items: center;
width: 546px;
height: 40px;
margin: 0 auto;
position: relative;
}
.search_bar input{
width: 700px;
border: none;
height: 100%;
text-indent: 20px;
font-size: 14px;
background-color: #ffffff;
border-radius: 20px 0 0 20px;
}
.search_bar span{
position: absolute;
display: inline-block;
width: 60px;
height: 100%;
background-color: #6E44E6;
border-radius: 0 20px 20px 0;
padding-top: 3px;
padding-left: 12px;
right: -60px;
box-sizing: border-box;
}
.icon-sousuo{
color: #fff;
font-size: 30px !important;
}
.search_keywords{
display: flex;
justify-content: center;
margin-top: 14px;
}
.search_keywords li{
height: 16px;
line-height: 16px;
padding-right: 15px;
margin-right: 15px;
border-right: 1px solid #d2d2d2;
}
.search_keywords li a{
font-size: 12px;
color: #fff;
}
.login{
height: 790px;
width: 100%;
background-color: #1B1E2A;
}
.login_core{
display: flex;
align-items: center;
flex-direction: column;
height: 790px;
background-color: #1B1E2A;
}
.login_top{
display: flex;
align-items: center;
justify-content: space-around;
flex-direction: column;
width: 426px;
padding-top: 60px;
margin: 0 auto;
}
.login_top img{
width: 142px;
}
.login_top .tab{
display: flex;
margin-top: 30px;
height: 46px;
}
.login_top .tab .tab1{
width: 213px;
color: #fff;
background-color: #704aff;
height: 100%;
font-size: 18px;
text-align: center;
border-radius: 5px 0 0 5px;
line-height: 46px;
}
.login_top .tab .tab2{
width: 213px;
color: #fff;
background-color: #262939;
height: 100%;
text-align: center;
border-radius: 0 5px 5px 0;
font-size: 18px;
line-height: 46px;
}
.login_bottom{
box-sizing: border-box;
margin-top: 40px;
height: 462px;
width: 426px;
}
.username{
box-sizing: border-box;
padding-left: 17px;
width: 100%;
background-color: #363852;
height: 46px;
border: none;
border-radius: 5px;
}
.password{
box-sizing: border-box;
padding-left: 17px;
width: 100%;
background-color: #363852;
height: 46px;
border: none;
border-radius: 5px;
margin-top: 25px;
}
.verify{
width: 100%;
height: 46px;
margin-top: 25px;
display: flex;
justify-content: space-between;
}
.verify input{
width: 198px;
height: 100%;
padding-left: 17px;
box-sizing: border-box;
background-color: #363852;
border: none;
border-radius: 5px;
}
.verify p{
width: 198px;
height: 100%;
padding-left: 17px;
box-sizing: border-box;
background-color: #363852;
border: none;
border-radius: 5px;
}
.rmfPw{
display: flex;
justify-content: space-between;
margin-top: 16px;
width: 100%;
height: 46px;
box-sizing: border-box;
margin-left: 0;
}
.rmfPw p{
color: #a1a2b3;
font-size: 14px;
}
.loginBtn{
width: 426px;
height: 50px;
line-height: 50px;
background: #704AFF;
border-radius: 25px;
font-size: 18px;
letter-spacing: 10px;
margin-top: 50px;
font-size: 18px;
color: #fff;
text-align: center;
}
.thirdLogin{
display: flex;
justify-content: center;
margin-top: 44px;
width: 100%;
height: 20px;
box-sizing: border-box;
}
.thirdLogin .linecontent{
margin: 0 27px;
height: 20px;
font-size: 14px;
color: #a1a2b3;
}
.thirdLogin .lineLeft{
margin-top: 9.5px;
display: inline-block;
width: 170px;
height: 1px;
background: #363852;
}
.thirdLogin .lineright{
margin-top: 9.5px;
display: inline-block;
width: 170px;
height: 1px;
background: #363852;
}
.icons{
margin-top: 28px;
display: flex;
justify-content: space-around;
}
.icons p i{
color: #363852;
font-size: 40px;
}
.icon-qq{
margin-right: 60px;
}
.footer{
height: 227px;
background-color: #262939;
}
.footer_top{
display: flex;
height: 167px;
padding-top: 24px;
box-sizing: border-box;
}
.footer_top .img{
width: 149px;
height: 65px;
color: rgba(255, 255, 255, 0.616);
margin-left: 90px;
margin-right: 96px;
}
.footer_top UL{
margin-top: 10px;
margin-right: 80PX;
}
.footer_top UL li{
font-size: 14px;
color: #9E9E9E;
margin-bottom: 15px;
}
.footer_top UL li:first-child{
color: #fff;
margin-bottom: 20px;
}
.footer_top p {
margin-right: 66px;
height: 123px;
width: 100px;
text-align: center;
}
.footer_top p img{
width: 100px;
height: 100px;
}
.footer_top p:last-child{
margin-right: 0;
}
.footer_top span{
display: block;
color: #9E9E9E;
}
.footer_bottom{
height: 60px;
background-color: #1c1c1c;
color: #939393;
font-size: 12px;
text-align: center;
line-height: 60px;
}

View File

@@ -0,0 +1,327 @@
.header{
width: 100%;
height: 60px;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background-color: #2b2c31;
}
.header_core{
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header_left{
height: 100%;
display: flex;
align-items: center;
}
.header_left img{
width: 125px;
margin-right: 60px;
}
.header_left ul{
display: flex;
align-items: center;
justify-content: space-around;
width: 586px;
}
.header_left ul a{
font-size: 14px;
color: #fff;
}
.header_right{
height: 100%;
display: flex;
align-items: center;
}
.header_right input{
width: 100px;
height: 30px;
background: #6e44e6;
border: none;
border-radius: 100px;
font-size: 14px;
color: #ffffff;
text-align: center;
line-height: 30px;
margin-right: 40px;
}
.header_sign{
margin-right: 16px;
height: 22px;
line-height: 22px;
}
.header_sign span{
margin-right: 16px;
font-size: 14px;
}
.header_sign span:first-child a{
color: #fff;
}
.header_sign span:last-child{
color: #949494;
}
.header_phone{
color: #fff;
margin-right: 34px;
padding-left: 16px;
border-left: 1px solid #d2d2d2;
font-size: 14PX;
}
.icon-dianhua{
border: #fff;
}
.header::after{
content: '';
width: 100%;
height: 1px;
left: 0;
bottom: 0;
position: absolute;
background: linear-gradient(90deg, #2117a8, #8117f7);
}
.search{
height: 100px;
width: 100%;
padding: 15px 0px;
background-color: #111;
margin-top: 60px;
box-sizing: border-box;
}
.search_bar{
display: flex;
align-items: center;
width: 546px;
height: 40px;
margin: 0 auto;
position: relative;
}
.search_bar input{
width: 700px;
border: none;
height: 100%;
text-indent: 20px;
font-size: 14px;
background-color: #ffffff;
border-radius: 20px 0 0 20px;
}
.search_bar span{
position: absolute;
display: inline-block;
width: 60px;
height: 100%;
background-color: #6E44E6;
border-radius: 0 20px 20px 0;
padding-top: 3px;
padding-left: 12px;
right: -60px;
box-sizing: border-box;
}
.icon-sousuo{
color: #fff;
font-size: 30px !important;
}
.search_keywords{
display: flex;
justify-content: center;
margin-top: 14px;
}
.search_keywords li{
height: 16px;
line-height: 16px;
padding-right: 15px;
margin-right: 15px;
border-right: 1px solid #d2d2d2;
}
.search_keywords li a{
font-size: 12px;
color: #fff;
}
/* 头图 */
.banner{
height: 560px;
}
.banner_core img{
height: 560px;
width: 100%;
}
.checkMoreWrap{
background-color: #262939;
}
.checkMoreWrap_bore{
display: flex;
align-items: center;
justify-content: center;
height: 90px;
}
.checkMoreWrap_bore p{
width: 200px;
height: 45px;
line-height: 45px;
background: #704aff;
border-radius: 25px;
font-size: 16px;
text-align: center;
}
.content_core{
width: 100%;
height: 690px;
background-color: #1B1E2A;
display: flex;
align-items: center;
}
.responsive{
display: flex;
align-items: center;
height: 420px;
width: 1500px;
}
.responsive_left{
margin-right: 160px;
}
.title span:first-child{
display: inline-block;
width: 8px;
height: 40px;
background-color: #6E44E6;
vertical-align: middle;
margin-right: 22px;
}
.title span:last-child{
font-size: 38px;
font-weight: bold;
color: #ffffff;
vertical-align: middle;
}
.responsive_left{
position: relative;
}
.responsive_left .des{
padding-top: 20px;
box-sizing: border-box;
font-size: 14px;
color: #ffffff;
line-height: 30px;
text-align: left;
height: 275px;
width: 318px;
}
.checkMore{
position: absolute;
bottom: 0;
left: 0;
width: 147px;
height: 45px;
line-height: 45px;
background: #6e44e6;
border-radius: 23px;
text-align: center;
color: #fff;
}
/* 过度 */
.responsive_right{
height: 420px;
width: 1022px;
display: flex;
}
.responsive_right .card{
position: relative;
width: 314px;
height: 100%;
margin-right: 40px;
border-radius: 5px;
transform: width 1.5s, heigth 1.5s;
}
.responsive_right .card:last-child{
margin-right: 0;
}
.responsive_right .shodow{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: rgba(38, 41, 57, 0.5);
}
.responsive_right .card:hover{
width: 324px;
height: 430px;
}
/* 过度结束 */
.bottomLine{
height: 20px;
background-color: #262939;
}
.uniaue{
padding-left: 340px;
}
.unique{
margin-right: 0;
}
.footer{
height: 227px;
background-color: #262939;
}
.footer_top{
display: flex;
height: 167px;
padding-top: 24px;
box-sizing: border-box;
}
.footer_top .img{
width: 149px;
height: 65px;
color: rgba(255, 255, 255, 0.616);
margin-left: 90px;
margin-right: 96px;
}
.footer_top UL{
margin-top: 10px;
margin-right: 80PX;
}
.footer_top UL li{
font-size: 14px;
color: #9E9E9E;
margin-bottom: 15px;
}
.footer_top UL li:first-child{
color: #fff;
margin-bottom: 20px;
}
.footer_top p {
margin-right: 66px;
height: 123px;
width: 100px;
text-align: center;
}
.footer_top p img{
width: 100px;
height: 100px;
}
.footer_top p:last-child{
margin-right: 0;
}
.footer_top span{
display: block;
color: #9E9E9E;
}
.footer_bottom{
height: 60px;
background-color: #1c1c1c;
color: #939393;
font-size: 12px;
text-align: center;
line-height: 60px;
}

View File

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

View File

@@ -0,0 +1,224 @@
.header{
width: 100%;
height: 60px;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background-color: #2b2c31;
}
.header_core{
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header_left{
height: 100%;
display: flex;
align-items: center;
}
.header_left img{
width: 125px;
margin-right: 60px;
}
.header_left ul{
display: flex;
align-items: center;
justify-content: space-around;
width: 586px;
}
.header_left ul a{
font-size: 14px;
color: #fff;
}
.header_right{
height: 100%;
display: flex;
align-items: center;
}
.header_right input{
width: 100px;
height: 30px;
background: #6e44e6;
border: none;
border-radius: 100px;
font-size: 14px;
color: #ffffff;
text-align: center;
line-height: 30px;
margin-right: 40px;
}
.header_sign{
margin-right: 16px;
height: 22px;
line-height: 22px;
}
.header_sign span{
margin-right: 16px;
font-size: 14px;
}
.header_sign span:first-child a{
color: #fff;
}
.header_sign span:last-child{
color: #949494;
}
.header_phone{
color: #fff;
margin-right: 34px;
padding-left: 16px;
border-left: 1px solid #d2d2d2;
font-size: 14PX;
}
.icon-dianhua{
border: #fff;
}
.header::after{
content: '';
width: 100%;
height: 1px;
left: 0;
bottom: 0;
position: absolute;
background: linear-gradient(90deg, #2117a8, #8117f7);
}
.search{
height: 100px;
width: 100%;
padding: 15px 0px;
background-color: #111;
margin-top: 60px;
box-sizing: border-box;
}
.search_bar{
display: flex;
align-items: center;
width: 546px;
height: 40px;
margin: 0 auto;
position: relative;
}
.search_bar input{
width: 700px;
border: none;
height: 100%;
text-indent: 20px;
font-size: 14px;
background-color: #ffffff;
border-radius: 20px 0 0 20px;
}
.search_bar span{
position: absolute;
display: inline-block;
width: 60px;
height: 100%;
background-color: #6E44E6;
border-radius: 0 20px 20px 0;
padding-top: 3px;
padding-left: 12px;
right: -60px;
box-sizing: border-box;
}
.icon-sousuo{
color: #fff;
font-size: 30px !important;
}
.search_keywords{
display: flex;
justify-content: center;
margin-top: 14px;
}
.search_keywords li{
height: 16px;
line-height: 16px;
padding-right: 15px;
margin-right: 15px;
border-right: 1px solid #d2d2d2;
}
.search_keywords li a{
font-size: 12px;
color: #fff;
}
.footer{
height: 227px;
background-color: #262939;
}
.footer_top{
display: flex;
height: 167px;
padding-top: 24px;
box-sizing: border-box;
}
.footer_top .img{
width: 149px;
height: 65px;
color: rgba(255, 255, 255, 0.616);
margin-left: 90px;
margin-right: 96px;
}
.footer_top UL{
margin-top: 10px;
margin-right: 80PX;
}
.footer_top UL li{
font-size: 14px;
color: #9E9E9E;
margin-bottom: 15px;
}
.footer_top UL li:first-child{
color: #fff;
margin-bottom: 20px;
}
.footer_top p {
margin-right: 66px;
height: 123px;
width: 100px;
text-align: center;
}
.footer_top p img{
width: 100px;
height: 100px;
}
.footer_top p:last-child{
margin-right: 0;
}
.footer_top span{
display: block;
color: #9E9E9E;
}
.footer_bottom{
height: 60px;
background-color: #1c1c1c;
color: #939393;
font-size: 12px;
text-align: center;
line-height: 60px;
}

View File

@@ -0,0 +1,551 @@
.header{
width: 100%;
height: 60px;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
background-color: #2b2c31;
}
.header_core{
height: 60px;
display: flex;
align-items: center;
justify-content: space-between;
}
.header_left{
height: 100%;
display: flex;
align-items: center;
}
.header_left img{
width: 125px;
margin-right: 60px;
}
.header_left ul{
display: flex;
align-items: center;
justify-content: space-around;
width: 586px;
}
.header_left ul a{
font-size: 14px;
color: #fff;
}
.header_right{
height: 100%;
display: flex;
align-items: center;
}
.header_right input{
width: 100px;
height: 30px;
background: #6e44e6;
border: none;
border-radius: 100px;
font-size: 14px;
color: #ffffff;
text-align: center;
line-height: 30px;
margin-right: 40px;
}
.header_sign{
margin-right: 16px;
height: 22px;
line-height: 22px;
}
.header_sign span{
margin-right: 16px;
font-size: 14px;
}
.header_sign span:first-child a{
color: #fff;
}
.header_sign span:last-child{
color: #949494;
}
.header_phone{
color: #fff;
margin-right: 34px;
padding-left: 16px;
border-left: 1px solid #d2d2d2;
font-size: 14PX;
}
.icon-dianhua{
border: #fff;
}
.header::after{
content: '';
width: 100%;
height: 1px;
left: 0;
bottom: 0;
position: absolute;
background: linear-gradient(90deg, #2117a8, #8117f7);
}
.search{
height: 100px;
width: 100%;
padding: 15px 0px;
background-color: #111;
margin-top: 60px;
box-sizing: border-box;
}
.search_bar{
display: flex;
align-items: center;
width: 546px;
height: 40px;
margin: 0 auto;
position: relative;
}
.search_bar input{
width: 700px;
border: none;
height: 100%;
text-indent: 20px;
font-size: 14px;
background-color: #ffffff;
border-radius: 20px 0 0 20px;
}
.search_bar span{
position: absolute;
display: inline-block;
width: 60px;
height: 100%;
background-color: #6E44E6;
border-radius: 0 20px 20px 0;
padding-top: 3px;
padding-left: 12px;
right: -60px;
box-sizing: border-box;
}
.icon-sousuo{
color: #fff;
font-size: 30px !important;
}
.search_keywords{
display: flex;
justify-content: center;
margin-top: 14px;
}
.search_keywords li{
height: 16px;
line-height: 16px;
padding-right: 15px;
margin-right: 15px;
border-right: 1px solid #d2d2d2;
}
.search_keywords li a{
font-size: 12px;
color: #fff;
}
.wheel_core{
height: 520px;
}
.roll{
width: 1200px;
height: 470px;
overflow: hidden;
}
.roll_core{
margin-top: 30px;
width: 4800px;
height: 100%;
}
.roll_core img{
width: 1200px;
height: 100%;
}
.wheel_dots{
display: flex;
align-items: center;
justify-content: center;
height: 50px;
}
.wheel_dots span{
width: 26px;
height: 5px;
border-radius: 3px;
background-color: #626262;
margin-right: 20px;
}
.wheel_dots span:first-child{
background-color: #fff;
}
.industry_core{
height: 165px;
}
.industry_top{
display: flex;
justify-content: space-between;
height: 40px;
background-color: #1A1B1F;
}
.industry_top span{
display: inline-block;
width: 125px;
height: 100%;
text-align: center;
line-height: 40px;
}
.industry_top_l span:first-child{
border-radius: 5px 5px 0 0;
background-color: #5953D9;
}
.industry_top span a{
font-size: 14px;
color: #fff;
}
.industry_top_r span a{
color: #6e44e6;
}
.industry_b{
display: flex;
justify-content: space-around;
height: 125px;
border-radius: 0 0 5px 5px;
background: linear-gradient(90deg, #5953d9, #827be2);
}
.industry-iteem{
height: 100%;
width: 150px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.industry-iteem img{
width: 38px;
height: 38px;
}
.industry-iteem span{
font-size: 14px;
margin-top: 16px;
color: #fff;
}
.new_products{
overflow: hidden;
}
.NewProducts_core{
height: 634px;
margin-top: 30px;
margin-bottom: 60px;
}
.products_title{
width: 100%;
height: 48px;
}
.products_right{
position: relative;
top: 25px;
font-size: 18px;
color: #6E44E6;
}
.products_left .cube{
display: inline-block;
width: 8px;
height: 40px;
background-color: #5953D9;
margin-right: 21px;
position: relative;
top: 9px;
}
.products_left .newp{
font-size: 36px;
font-weight: bold;
align-self: flex-end;
position: relative;
top: 4px;
margin-right: 17px;
color: #fff;
}
.products_left .sub{
color: rgb(76, 76, 83);
font-size: 22px;
position: relative;
top: 5px;
}
.cards{
height: 556px;
margin-top: 30px;
}
.cards_top{
width: 100%;
height: 328px;
display: flex;
justify-content: space-between;
}
.cardstop_core{
height: 100%;
width: 447px;
}
.cardstop_core_t{
height: 269px;
}
.cardstop_core_t img{
width: 100%;
height: 100%;
border-radius: 5px;
}
.cardstop_core_b{
width: 100%;
margin-top: 10px;
}
.cardstop_core_b p:first-child{
font-size: 14px;
color: #fff;
}
.cardstop_core_b p:last-child{
margin-top: 10px;
}
.cardstop_core_b span{
margin-right: 15px;
color: #D3D3D4;
}
.cardstop_core_b span:last-child{
margin-right: 0;
}
.cardstop_core_b span i{
font-size: 16px;
margin-right: 5px;
}
.cards_b{
display: flex;
justify-content: space-between;
height: 228px;
width: 100%;
}
.cardsb_core{
height: 124px;
width: 220px;
margin-top: 44px;
}
.cardsb_core img{
width: 100%;
height: 100%;
border-radius: 5px;
}
.cardsbcore_b{
width: 100%;
margin-top: 10px;
}
.cardsbcore_b p:first-child{
width: 100%;
margin-bottom: 10px;
font-size: 14px;
color: #fff;
}
.cardsbcore_b span{
margin-right: 15px;
color: #D3D3D4;
}
.cardsbcore_b span:last-child{
margin-right: 0;
}
.cardsbcore_b span i{
font-size: 16px;
margin-right: 5px;
}
.productline{
width: 100%;
height: 560px;
background-color: #1D1E22;
}
.productline_core{
padding: 54px 0;
height: 560px;
}
.productline_title{
width: 100%;
height: 48px;
}
.productline_right{
position: relative;
top: 25px;
font-size: 18px;
color: #6E44E6;
}
.productline_left .cube{
display: inline-block;
width: 8px;
height: 40px;
background-color: #5953D9;
margin-right: 21px;
position: relative;
top: 9px;
}
.productline_left .newp{
font-size: 36px;
font-weight: bold;
align-self: flex-end;
position: relative;
top: 4px;
margin-right: 17px;
color: #fff;
}
.productline_left .sub{
color: rgb(76, 76, 83);
font-size: 22px;
position: relative;
top: 5px;
}
.productline_core .crds{
margin-top: 40px;
width: 100%;
height: 364px;
display: flex;
justify-content: space-around;
}
.productline_core .crds .crds_core{
position: relative;
width: 273px;
height: 364px;
}
.productline_core .crds .crds_core img{
width: 100%;
position: absolute;
height: 100%;
}
.crds_core .zz{
position: absolute;
display: none;
width: 100%;
height: 100%;
background-color: rgba(209, 209, 209, 0.623);
}
.crdsp{
display: none;
position: absolute;
font-size: 32px;
font-weight: bold;
color: #fff;
margin-top: 161px;
margin-left: 46px;
}
.crdspt{
display: none;
width: 224px;
position: absolute;
font-size: 14px;
color: #D4D4D4;
text-align: left;
text-indent: 20px;
margin-top: 220px;
margin-left: 20px;
height: 100px;
overflow: hidden;
}
.crds_core{
transition: 1.5s;
background-image: url("../img/hsjy11.png");
background-size: 100% 100%;
}
.crds_core:hover{
transform: scale(1.2);
}
.crds_core:hover .zz{
display: block;
}
.crds_core:hover .crdspt{
display: block;
}
.crds_core:hover .crdsp{
display: block;
}
.devices{
width: 100%;
height: 100px;
background-color: #202124;
}
.devices_core{
height: 100px;
display: flex;
align-items: center;
justify-content: space-around;
}
.devices_core .device{
text-align: center;
color: #fff;
width: 170px;
height: 40px;
line-height: 40px;
background-color: #363852;
border-radius: 20px;
}
.devices_core span:first-child{
color: #fff;
margin: 0 15px;
}
.check-all{
text-align: center;
line-height: 100px;
height: 100px;
background-color: #1D1E22;
}
.check-all span{
color: #6743D1;
font-size: 18px;
}
.icon-hanbaoanniu{
font-size: 20px !important;
color: #6743D1;
}
.footer{
height: 227px;
background-color: #262939;
}
.footer_top{
display: flex;
height: 167px;
padding-top: 24px;
box-sizing: border-box;
}
.footer_top .img{
width: 149px;
height: 65px;
color: rgba(255, 255, 255, 0.616);
margin-left: 90px;
margin-right: 96px;
}
.footer_top UL{
margin-top: 10px;
margin-right: 80PX;
}
.footer_top UL li{
font-size: 14px;
color: #9E9E9E;
margin-bottom: 15px;
}
.footer_top UL li:first-child{
color: #fff;
margin-bottom: 20px;
}
.footer_top p {
margin-right: 66px;
height: 123px;
width: 100px;
text-align: center;
}
.footer_top p img{
width: 100px;
height: 100px;
}
.footer_top p:last-child{
margin-right: 0;
}
.footer_top span{
display: block;
color: #9E9E9E;
}
.footer_bottom{
height: 60px;
background-color: #1c1c1c;
color: #939393;
font-size: 12px;
text-align: center;
line-height: 60px;
}

View File

@@ -0,0 +1,108 @@
.w_width{
width: 1500px;
}
.ww_width{
width: 1528px;
}
.m_margin{
margin: 0 auto;
}
.b_backrg{
background-color: #1D1E22;
}
.left{
float: left;
}
.right{
float: right;
}
.apply{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 750px;
background-image: url("../img/bg1.997b778b.png");
}
.apply .title{
font-size: 40px;
font-weight: bold;
color: #fefefe;
}
.apply .des{
margin-top: 75px;
font-size: 20px;
font-weight: 500;
color: #fefefe;
line-height: 50px;
text-align: center;
}
.applyBtn{
margin-top: 105px;
width: 220px;
height: 60px;
line-height: 60px;
text-align: center;
color: #fff;
background: linear-gradient(-14deg, rgba(33, 23, 168, 0.75), rgba(103, 13, 237, 0.75));
border-radius: 30px;
font-size: 18px;
}
.advance{
height: 900px;
padding-top: 150px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #F4F4F4;
}
.advance .title{
font-size: 36px;
}
.advance .des{
font-size: 22px;
margin-top: 60px;
}
.advance .advances{
display: flex;
margin-top: 150px;
}
.advance .advances .avd{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 336px;
height: 400px;
margin: 0 25px;
background-color: #FFFFFF;
}
.advance .avd .adv1{
text-align: center;
margin-top: 99px;
font-size: 24px;
}
.advance .avd .advDes{
text-align: center;
padding-left: 40px;
padding-right: 40px;
font-size: 18px;
margin-top: 30px;
}
.process{
display: flex;
justify-content: center;
background-image: url("../img/bg2.55ea1efc.jpg");
height: 900px;
margin-bottom: -80px;
background-position: center;
overflow: hidden;
}
.process span{
color: #fff;
font-size: 26px;
margin-top: 90px;
}

View File

@@ -0,0 +1,148 @@
<!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/Product.css">
<link rel="stylesheet" href="../css/Entrance.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1720385_vg9tcqgi8c.css">
<title>VRBOX-VR行业应用平台登录</title>
</head>
<body>
<!-- 导航 -->
<div class="header">
<div class="header_core w_width m_margin">
<div class="header_left">
<img src="./img/logo.png" alt="">
<ul>
<li><a href="../index.html">首页</a></li>
<li><a href="../html/Product.html">产品系列</a></li>
<li><a href="">K12专区</a></li>
<li><a href="">GVRTALK社区</a></li>
<li><a href="./developer.html">开发者平台</a></li>
<li><a href="">3D CITY</a></li>
</ul>
</div>
<div class="header_right">
<input type="button" value="申请试用">
<div class="header_sign">
<span>登录</span>
<span>注册</span>
</div>
<div class="header_phone">
<i class="iconfont icon-dianhua"></i>
4008 233 766
</div>
</div>
</div>
</div>
<!-- 搜索框 -->
<div class="search">
<div class="search_bar">
<input type="text" placeholder="请输入搜索内容">
<span>
<i class="iconfont icon-sousuo"></i>
</span>
</div>
<ul class="search_keywords">
<li><a href="">教育</a></li>
<li><a href="">红色教育</a></li>
<li><a href="">安全</a></li>
<li><a href="">红色</a></li>
<li><a href="">汽车</a></li>
<li><a href="">机械</a></li>
<li><a href="">建筑</a></li>
</ul>
</div>
<div class="login">
<div class="login_core ww_width m_margin">
<div class="login_top">
<img src="../img/logo.png" alt="">
<div class="tab">
<p class="tab1">登录</p>
<p class="tab2">注册</p>
</div>
</div>
<div class="login_bottom">
<input class="username" type="text" placeholder="请输入电话号码" value="">
<input class="password" type="text" placeholder="请输入密码">
<div class="verify">
<input type="text" placeholder="请输入验证码">
<p></p>
</div>
<div class="rmfPw">
<p>
<img src="../img/xz5.png" alt="">
记住密码
</p>
<p>忘记密码?</p>
</div>
<div class="loginBtn">登录</div>
<div class="thirdLogin">
<span class="lineLeft"></span>
<span class="linecontent">其他</span>
<span class="lineright">
</span>
</div>
<div class="icons">
<p><i class="iconfont icon-qq"></i></p>
<p><i class="iconfont icon-weixin"></i><p>
<p><i class="iconfont icon-weibo"></i></p>
</div>
</div>
</div>
</div>
<!-- 底部导航 -->
<div class="footer">
<div class="footer_top m_margin w_width">
<img class="img" src="./img/logo.png" alt="">
<ul>
<li>关于我们</li>
<li>关于曼恒</li>
<li>关于VRBOX</li>
</ul>
<ul>
<li>法律信息</li>
<li>望着你协议</li>
<li>开发者协议</li>
</ul>
<ul>
<li>开发者</li>
<li>开发者平台</li>
<li>应用上传指南</li>
</ul>
<ul>
<li>帮助中心</li>
<li>常见问题</li>
<li>用户社区</li>
</ul>
<ul>
<li>联系我们</li>
<li>4008-233-766</li>
<li>boxservice@gdi.com.cn</li>
</ul>
<p>
<img src="../img/gdi.be66ab72.png" alt="">
<span>曼恒数字</span>
</p>
<p>
<img src="../img/vrbox-qr-code.77f16e47.png" alt="">
<span>VRBOX 平台</span>
</p>
</div>
<div class="footer_bottom">
<span>
Copyright © 2019-2020 VR盒子 GVRbox备案号: 沪ICP备08005943号-8
</span>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,194 @@
<!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/Product.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1720385_xpi54tol70j.css">
<title>VRBOX-VR行业应用平台产品系列</title>
</head>
<body>
<!-- 导航 -->
<div class="header">
<div class="header_core w_width m_margin">
<div class="header_left">
<img src="./img/logo.png" alt="">
<ul>
<li><a href="../index.html">首页</a></li>
<li><a href="">产品系列</a></li>
<li><a href="">K12专区</a></li>
<li><a href="">GVRTALK社区</a></li>
<li><a href="./developer.html">开发者平台</a></li>
<li><a href="">3D CITY</a></li>
</ul>
</div>
<div class="header_right">
<input type="button" value="申请试用">
<div class="header_sign">
<span><a href="./Entrance.html">登录</a></span>
<span>注册</span>
</div>
<div class="header_phone">
<i class="iconfont icon-dianhua"></i>
4008 233 766
</div>
</div>
</div>
</div>
<!-- 搜索框 -->
<div class="search">
<div class="search_bar">
<input type="text" placeholder="请输入搜索内容">
<span>
<i class="iconfont icon-sousuo"></i>
</span>
</div>
<ul class="search_keywords">
<li><a href="">教育</a></li>
<li><a href="">红色教育</a></li>
<li><a href="">安全</a></li>
<li><a href="">红色</a></li>
<li><a href="">汽车</a></li>
<li><a href="">机械</a></li>
<li><a href="">建筑</a></li>
</ul>
</div>
<!-- 头图 -->
<div class="banner">
<div class="banner_core">
<img src="../img/20200329234226.png" alt="">
</div>
</div>
<!-- 查看全部 -->
<div class="checkMoreWrap">
<div class="checkMoreWrap_bore ww_width m_margin">
<p>查看全部 >></p>
</div>
</div>
<!-- 内容 -->
<div class="content">
<div class="content_core ww_width m_margin">
<div class="responsive m_margin">
<div class="responsive_left">
<p class="title">
<span></span>
<span>医学类</span>
</p>
<p class="des">VR在医疗医学领域的应用主要在三个方向分别为临床医学、临床问诊、中医药。通过还原整个医疗场景模拟不同医疗过程及原理的形式帮助学习者更好地掌握医疗知识。可用于医疗规培和学生实训等场景。</p>
<span class="checkMore">了解更多</span>
</div>
<!-- 过渡 -->
<div class="responsive_right">
<div class="card">
<img src="../img/zyy11.png" alt="">
<span class="shodow"></span>
</div>
<div class="card">
<img src="../img/slkp11.png" alt="">
<span class="shodow"></span>
</div>
<div class="card">
<img src="../img/lcyx11.png" alt="">
<span class="shodow"></span>
</div>
</div>
</div>
</div>
<div class="bottomLine"></div>
</div>
<div class="content">
<div class="content_core ww_width m_margin">
<div class="responsive m_margin">
<!-- 过渡 -->
<div class="responsive_right uniaue">
<div class="card">
<img src="../img/ggaq11.png" alt="">
<span class="shodow"></span>
</div>
<div class="card">
<img src="../img/scaq11.png" alt="">
<span class="shodow"></span>
</div>
</div>
<div class="responsive_left unique">
<p class="title">
<span></span>
<span>安全教育</span>
</p>
<p class="des">安全教育系列内容分为校园安全公共消防安全和VR禁毒三个方面。通过在虚拟环境中模拟出真实的危险环境帮助使用者进行模拟安全训练也可以通过模拟毒品对人体的伤害达到安全教育保护自身的目的。</p>
<span class="checkMore">了解更多</span>
</div>
</div>
</div>
<div class="bottomLine"></div>
</div>
<div class="content">
<div class="content_core ww_width m_margin">
<div class="responsive m_margin">
<div class="responsive_left">
<p class="title">
<span></span>
<span>红色教育</span>
</p>
<p class="des">VR +红色教育则是一种创新的教育方式将科技与教育结合运用VR技术以展馆的形式呈现党史教育新时代历程建国70周年民族精神等发展历史和重大事件通过沉浸式体验帮助学生感受历史艰难与辉煌感受新时代思想提升思想高度。</p>
<span class="checkMore">了解更多</span>
</div>
<!-- 过渡 -->
<div class="responsive_right">
<div class="card">
<img src="../img/hsjy11.png" alt="">
<span class="shodow"></span>
</div>
</div>
</div>
</div>
</div>
<!-- 底部导航 -->
<div class="footer">
<div class="footer_top m_margin w_width">
<img class="img" src="./img/logo.png" alt="">
<ul>
<li>关于我们</li>
<li>关于曼恒</li>
<li>关于VRBOX</li>
</ul>
<ul>
<li>法律信息</li>
<li>望着你协议</li>
<li>开发者协议</li>
</ul>
<ul>
<li>开发者</li>
<li>开发者平台</li>
<li>应用上传指南</li>
</ul>
<ul>
<li>帮助中心</li>
<li>常见问题</li>
<li>用户社区</li>
</ul>
<ul>
<li>联系我们</li>
<li>4008-233-766</li>
<li>boxservice@gdi.com.cn</li>
</ul>
<p>
<img src="../img/gdi.be66ab72.png" alt="">
<span>曼恒数字</span>
</p>
<p>
<img src="../img/vrbox-qr-code.77f16e47.png" alt="">
<span>VRBOX 平台</span>
</p>
</div>
<div class="footer_bottom">
<span>
Copyright © 2019-2020 VR盒子 GVRbox备案号: 沪ICP备08005943号-8
</span>
</div>
</div>
</body>
</body>
</html>

View File

@@ -0,0 +1,162 @@
<!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/developer.css">
<link rel="stylesheet" href="https://at.alicdn.com/t/font_1720385_xpi54tol70j.css">
<title>VRBOX-VR行业应用平台</title>
</head>
<body>
<!-- 导航 -->
<div class="header">
<div class="header_core w_width m_margin">
<div class="header_left">
<img src="./img/logo.png" alt="">
<ul>
<li><a href="../index.html">首页</a></li>
<li><a href="../html/Product.html">产品系列</a></li>
<li><a href="">K12专区</a></li>
<li><a href="">GVRTALK社区</a></li>
<li><a href="">开发者平台</a></li>
<li><a href="">3D CITY</a></li>
</ul>
</div>
<div class="header_right">
<input type="button" value="申请试用">
<div class="header_sign">
<span><a href="./Entrance.html">登录</a></span>
<span>注册</span>
</div>
<div class="header_phone">
<i class="iconfont icon-dianhua"></i>
4008 233 766
</div>
</div>
</div>
</div>
<!-- 搜索框 -->
<div class="search">
<div class="search_bar">
<input type="text" placeholder="请输入搜索内容">
<span>
<i class="iconfont icon-sousuo"></i>
</span>
</div>
<ul class="search_keywords">
<li><a href="">教育</a></li>
<li><a href="">红色教育</a></li>
<li><a href="">安全</a></li>
<li><a href="">红色</a></li>
<li><a href="">汽车</a></li>
<li><a href="">机械</a></li>
<li><a href="">建筑</a></li>
</ul>
</div>
<!-- 内容 -->
<div class="devWrap">
<div class="apply">
<p class="title">VRBOX开发者平台</p>
<p class="des">
VRBOX是一个面向行业用户的虚拟现实行业应用发行平台链接的英文应用文教开发团队与文教内<br>容使用者的桥梁。要添加您的应用至平台,请注册为开发者
</p>
<span class="applyBtn">
申请成为开发者
</span>
</div>
<div class="advance">
<p class="title">平台优势</p>
<p class="des">建造用户与开发者之间的同轴,助力合作伙伴实现内容价值最大化</p>
<div class="advances">
<div class="avd">
<img src="../img/xz.png" alt="">
<p class="adv1">
打通营销之路
</p>
<p class="advDes">
建造用户与开发者之间的主轴,让更多人看到你的内容
</p>
</div>
<div class="avd">
<img src="../img/xz2.png" alt="">
<p class="adv1">
多类型内容开发
</p>
<p class="advDes">
支持Unity3D,UnreaLEngine4,ldeaVR等开发引擎创作的内容接收
</p>
</div>
<div class="avd">
<img src="../img/xz3.png" alt="">
<p class="adv1">
多硬件设备适应
</p>
<p class="advDes">
适应HTC VIVEWindows MRVR平方VR立方VR-Touch等
</p>
</div>
<div class="avd">
<img src="../img/xz4.png" alt="">
<p class="adv1">
内容版权保护
</p>
<p class="advDes">
采用国际主流加密方式,保护内容安全
</p>
</div>
</div>
</div>
<div class="process">
<span>接入流程</span>
</div>
</div>
<!-- 底部导航 -->
<div class="footer">
<div class="footer_top m_margin w_width">
<img class="img" src="./img/logo.png" alt="">
<ul>
<li>关于我们</li>
<li>关于曼恒</li>
<li>关于VRBOX</li>
</ul>
<ul>
<li>法律信息</li>
<li>望着你协议</li>
<li>开发者协议</li>
</ul>
<ul>
<li>开发者</li>
<li>开发者平台</li>
<li>应用上传指南</li>
</ul>
<ul>
<li>帮助中心</li>
<li>常见问题</li>
<li>用户社区</li>
</ul>
<ul>
<li>联系我们</li>
<li>4008-233-766</li>
<li>boxservice@gdi.com.cn</li>
</ul>
<p>
<img src="../img/gdi.be66ab72.png" alt="">
<span>曼恒数字</span>
</p>
<p>
<img src="../img/vrbox-qr-code.77f16e47.png" alt="">
<span>VRBOX 平台</span>
</p>
</div>
<div class="footer_bottom">
<span>
Copyright © 2019-2020 VR盒子 GVRbox备案号: 沪ICP备08005943号-8
</span>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 105 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 219 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 151 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 986 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 978 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Some files were not shown because too many files have changed in this diff Show More