Authored by zhangxiaoru

ordersure

... ... @@ -257,21 +257,33 @@
.address-bottom {
display: none;
position: fixed;
background: #000;
left: 0;
bottom: 60px;
width: 96%;
height: 3rem;
width: 100%;
height: 70px;
overflow: hidden;
line-height: 2rem;
padding-left: 4%;
filter: alpha(opacity=70); /*IE滤镜,透明度50%*/
-moz-opacity: 0.7; /*Firefox私有,透明度50%*/
opacity: 0.7;/*其他,透明度50%*/
color: #fff;
font-size: 24px;
text-overflow: ellipsis;
white-space: nowrap;
bottom: 100px;
.back {
width: 100%;
height: 100%;
background: #000;
filter: alpha(opacity=70); /*IE滤镜,透明度70%*/
-moz-opacity: 0.7; /*Firefox私有,透明度70%*/
opacity: 0.7;/*其他,透明度70%*/
}
span {
color: #fff;
display: block;
padding-left: 4%;
position: relative;
top: -70px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
}
... ...