42 lines
595 B
CSS
42 lines
595 B
CSS
.con {
|
|
padding-top: 10px;
|
|
}
|
|
.row{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
padding: 10px;
|
|
font-size: 12px;
|
|
color: #909090;
|
|
/* height: 40px; */
|
|
background: #fff;
|
|
}
|
|
.row .left{
|
|
width: 30px;
|
|
height: 30px;
|
|
|
|
}
|
|
.row .left img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.row .num {
|
|
width: 100px;
|
|
flex: 1;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
}
|
|
.row .context{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: space-between;
|
|
text-align: left;
|
|
flex: 2;
|
|
margin-left: 20px;
|
|
}
|
|
.row .context .con_text{
|
|
font-size: 14px
|
|
}
|
|
. |