1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- .container_list{
- background: #efefef;
- padding: 10px 0;
- }
- .container_list .list{
- width: 96%;
- margin: 0 auto;
- border-radius: 3px;
- padding: 10px;
- box-sizing: border-box;
- background: #ffffff;
- border-bottom:1px solid #e6e6e6;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10px;
- }
- .container_list .list .list-left{
- width: 95%;
- }
- .container_list .list .list-left .list-inner{
- display: flex;
- margin-bottom: 10px;
- }
- .container_list .list .list-left .list-inner p:first-child{
- width: 60%;
- display: block;
- color: #222;
- font-size: 14px;
- }
- .container_list .list .list-left .list-inner .house{
- font-weight: bold;
- }
- .container_list .list .list-left .list-inner .days{
- font-size: 14px;
- color: #999;
- }
- .container_list .list .arrow{
- width: 20px;
- height: 15px;
- }
- .red{
- color: red;
- }
- .blod{
- font-weight: bold;
- }
- .normal{
- color: #222;
- }
|