12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- .main {
- position: relative;
- width: 100%;
- }
- .main .one {
- float: left;
- width: 95%;
- padding: 0 10px;
- overflow-x: hidden;
- margin: 10px 0 0 0;
- }
- .main .one .list {
- float: left;
- width: 95%;
- background-color: #fff;
- border-radius: 5px;
- padding: 10px;
- margin: 0 0 10px 0;
- }
- .main .one .list .name {
- float: left;
- width: 100%;
- font-size: 14px;
- font-weight: bold;
- margin: 0 0 5px 0;
- }
- .main .one .list .other {
- float: left;
- width: 100%;
- margin: 0 0 5px 0;
- }
- .main .one .list .other .otherInfo {
- float: left;
- width: 100%;
- font-size: 12px;
- margin: 0 0 5px 0;
- }
- .main .one .list .other .otherInfo text:nth-child(1) {
- color: #666;
- }
|