12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .com-chair-man{
- width:100%;
- background:#f9f9f9;
- padding-top:5px;
- height:150px;
- .title{
- font-size: 14px;
- color:#000;
- font-weight: bold;
- height:30px;
- line-height: 30px;
- margin-left:10px;
- }
-
- .content{
- display: flex;
- flex-direction: row;
- height:80px;
- .header{
- display: flex;
- width:25%;
- height:100%;
- justify-content: center;
- align-items: center;
- .icon{
- width:80px;
- height:80px;
- margin-top:20px;
- border-radius: 10px;
- }
- }
- .intro{
- display: flex;
- width:70%;
- justify-content: flex-start;
- align-items: flex-start;
- flex-direction: column;
- margin-left:10px;
- .name{
- font-size:14px;
- font-weight: bold;
- height:40px;
- line-height: 40px;
- }
- .tags{
- display:flex;
- flex-direction: row;
- .uni-tag{
- font-size:12px;
- margin-right: 10px;
- }
- }
- .point{
- margin-top:5px;
- }
- }
- }
- }
|