191 lines
3.1 KiB
CSS
191 lines
3.1 KiB
CSS
.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;
|
|
} |