38 lines
597 B
CSS
38 lines
597 B
CSS
|
.appInfoBox {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.appInfoTitle {
|
||
|
width: 100%;
|
||
|
border-bottom: 1px solid #e6e6e6;
|
||
|
text-align: center;
|
||
|
font-size: 18px;
|
||
|
line-height: 50px;
|
||
|
}
|
||
|
|
||
|
.appInfoText {
|
||
|
margin-top: 10px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.appInfoTextItem {
|
||
|
display: flex;
|
||
|
line-height: 32px;
|
||
|
font-size: 16px;
|
||
|
/* justify-content: flex-start; */
|
||
|
margin-left:200px ;
|
||
|
color: rgb(97, 97, 97);
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
.appInfoTextItemTitle {
|
||
|
/* background-color: pink; */
|
||
|
width: 120px;
|
||
|
text-align: right;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
.appInfoTextItemText{
|
||
|
max-width: 60%;
|
||
|
/* background-color: pink; */
|
||
|
}
|