12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .left{
- width: 100%;
- float:left;
-
- font-size: 12px;
- height: 30px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: left;
- }
- .right{
- width:70%;
- float:right;
- font-weight: 600;
- font-size: 12px;
- height: 30px;
- }
- .pageCenter{
- width:98%;
- margin: 0 auto;
- text-align: justify;
-
- }
- .bottom{
- height:70px;
- margin-top:10px;
- border-bottom: 1px solid #999;
- }
- .normal{
- font-size:12px;
- height: 30px;
- width:100%;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: left;
- }
- .img{
- width:25px;
- height:25px;
- margin-right: 5px;
- }
- .img1{
- width:25px;
- height:25px;
- margin-right: 5px;
- margin-left:10px;
- }
- .text-center{
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: left;
- font-weight: 600;
- background-color: #f4f4f4;
- }
|