81 lines
1.2 KiB
CSS
81 lines
1.2 KiB
CSS
.header {
|
|
position: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
.header_logo {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 44px;
|
|
background: #d43d3d;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.header_logo .icon{
|
|
font-size: 27px;
|
|
color: #fff;
|
|
margin-left: 12px;
|
|
}
|
|
.header_logo p{
|
|
color: #fff;
|
|
font-size: 19px;
|
|
width: 60%;
|
|
}
|
|
.header_menu {
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
background: #fff;
|
|
}
|
|
.header_menu ul{
|
|
display: flex;
|
|
width: 111%;
|
|
justify-content: space-around;
|
|
height: 40px;
|
|
align-items: center;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.content {
|
|
padding-top: 85px;
|
|
}
|
|
.header_menu ul li{
|
|
|
|
}
|
|
.list-item {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
padding: 0 10px;
|
|
align-items: center;
|
|
height: 116px;
|
|
}
|
|
.list-item .item-text h3,
|
|
.list-item-two .item-text h3{
|
|
font-size: 17px;
|
|
margin-bottom: 10px;
|
|
font-weight: initial;
|
|
}
|
|
.list-item .item-text p,
|
|
.list-item-two p{
|
|
margin-bottom: 10px;
|
|
color: #999;
|
|
font-size: 12px;
|
|
}
|
|
.list-item-two{
|
|
padding: 0 10px;
|
|
}
|
|
.list-item img,
|
|
.img-list img {
|
|
height: 91.5px;
|
|
}
|
|
|
|
.list-item-two .img-list {
|
|
overflow: hidden;
|
|
}
|
|
.img-list img {
|
|
float: left;
|
|
width: 33% !important;
|
|
}
|
|
|
|
.active {
|
|
color: #d43d3d;
|
|
} |