51 lines
767 B
CSS
Executable File
51 lines
767 B
CSS
Executable File
.scroll_out{
|
|
position: fixed;
|
|
top: 66px;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
.block{
|
|
width: 100%;
|
|
height: 135px;
|
|
border-bottom: 6px solid #ebebeb;
|
|
background: white;
|
|
position: relative;
|
|
}
|
|
.block p{
|
|
width: calc(100% - 150px);
|
|
position: absolute;
|
|
left: 15px;
|
|
top: 25px;
|
|
color: black;
|
|
font-size: 15.6px;
|
|
}
|
|
|
|
.block img{
|
|
width: 102px;
|
|
height: 102px;
|
|
position: absolute;
|
|
right: 12px;
|
|
top: 12px;
|
|
}
|
|
.block span{
|
|
color: #909090;
|
|
position: absolute;
|
|
left: 15px;
|
|
height: 30px;
|
|
line-height: 30px;
|
|
bottom: 10px;
|
|
text-indent: 20px;
|
|
font-size: 12px;
|
|
}
|
|
.block span o{
|
|
width: 15px;
|
|
height: 15px;
|
|
background: #909090;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 7px;
|
|
}
|