eapp
Version:
109 lines (97 loc) • 1.76 kB
CSS
html, body {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
/*页面布局,flex定住头部和底部*/
.root {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.statusBar{
height: 20px;
background: #2484E8;
}
.titleBar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background: #2484E8;
padding: 10px 0;
}
.titleBar > button {
margin: 0 6px;
}
.titleBar > span {
flex: 1;
font-size: 1.6rem;
color: white;
text-align: center;
}
.content_wrap {
position: absolute;
top: 66px;
bottom: 30px;
left: 0;
right: 0;
overflow: hidden;
overflow-y: scroll; /*超出垂直部分可滚动*/
/*解决ios手机列表滑动不顺畅问题*/
-webkit-overflow-scrolling: touch;
background: #c1c0c6;
padding-bottom: 10px;
}
.bottom {
height: 30px;
background-color: #0a456f;
position: absolute;
bottom: 0;
left: 0;
right: 0;
text-align: center;
font-size: 16px;
line-height: 30px;
color: #ffffff;
}
.titleTxt{
color: #03101c;
font-size: 24px;
text-align: center;
padding: 1.5rem 3px;
}
.step{
font-size: 16px;
padding: 8px 8px;
}
.noteMsg{
font-size: 16px;
font-weight: 300;
color: #000000;
padding: 8px 8px 0px 8px;
}
.tip{
color: #2218ff;
font-size: 14px;
padding: 5px 2px;
}
.zhu{
color: #bf1d03;
font-weight: 600;
}
.appPage{
margin: 5px 10%;
}
/*.imageB{*/
/*width: 100%;*/
/*height: 100%;*/
/*background-image: url('images/eapp_doc.png');*/
/*background-repeat:no-repeat;*/
/*-webkit-background-size: cover;*/
/*background-size: cover;*/
/*}*/