.box {
|
width: 100%;
|
}
|
.banner {
|
width: 100%;
|
height: 211px;
|
padding: 0 30px;
|
box-sizing: border-box;
|
background-image: url("../images/banner_dongtai@2x.png");
|
background-repeat: no-repeat;
|
background-size: 100% 100%;
|
display: flex;
|
flex-direction: column;
|
justify-content: center;
|
}
|
.banner_title {
|
font-weight: bold;
|
font-size: 25px;
|
color: #191B1F;
|
}
|
.banner_info {
|
font-weight: 400;
|
font-size: 13px;
|
color: #191B1F;
|
margin-top: 10px;
|
}
|
.banner_btn {
|
width: 72px;
|
height: 27px;
|
line-height: 27px;
|
text-align: center;
|
background: #FF7900;
|
box-shadow: 0px 2px 10px 0px rgba(255,121,0,0.2);
|
border-radius: 18px;
|
font-weight: 400;
|
font-size: 12px;
|
color: #FFFFFF;
|
margin-top: 20px;
|
}
|
.item {
|
width: 100%;
|
padding: 20px 15px;
|
box-sizing: border-box;
|
background-color: #ffffff;
|
}
|
.item_head {
|
width: 100%;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
}
|
.item_head_title {
|
font-weight: 600;
|
font-size: 18px;
|
color: #191B1F;
|
}
|
.item_head_to {
|
display: flex;
|
align-items: center;
|
}
|
.item_head_to span {
|
font-weight: 400;
|
font-size: 13px;
|
color: #9196A1;
|
margin-right: 4px;
|
}
|
.item_head_to img {
|
width: 5px;
|
height: 10px;
|
}
|
.item_list {
|
width: 100%;
|
display: flex;
|
flex-direction: column;
|
}
|
.item_list_item {
|
width: 100%;
|
height: 80px;
|
display: flex;
|
align-items: center;
|
justify-content: space-between;
|
margin-top: 15px;
|
}
|
.item_list_item_img {
|
flex-shrink: 0;
|
width: 106px;
|
height: 80px;
|
overflow: hidden;
|
border-radius: 8px;
|
margin-right: 12px;
|
}
|
.item_list_item_img img {
|
width: 100%;
|
}
|
.item_list_item_info {
|
flex: 1;
|
height: 100%;
|
display: flex;
|
flex-direction: column;
|
justify-content: space-between;
|
}
|
.item_list_item_info span:nth-child(1) {
|
font-weight: 500;
|
font-size: 16px;
|
color: #191B1F;
|
}
|
.item_list_item_info span:nth-child(2) {
|
font-weight: 400;
|
font-size: 12px;
|
color: #7B7F87;
|
}
|