72 lines
1.4 KiB
CSS
72 lines
1.4 KiB
CSS
/* 公益传播 */
|
|
.publicWelfareDataItems {
|
|
/* 2列 */
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
|
|
.publicWelfareDataItem {
|
|
position: relative;
|
|
overflow: hidden;
|
|
aspect-ratio: 685 / 460;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
}
|
|
|
|
|
|
/* 信息公开 */
|
|
.informationPublicDataContent {
|
|
min-height: 500px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.informationPublicDataItems {
|
|
/* min-height: 400px; */
|
|
color: #fff;
|
|
font-weight: 400;
|
|
font-size: 20px;
|
|
line-height: 34px;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
padding: 0 90px 150px 90px;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
|
|
li {
|
|
list-style: disc;
|
|
|
|
span {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* 公益伙伴 */
|
|
.partnerItems {
|
|
display: grid;
|
|
grid-template-columns: repeat(5, 1fr);
|
|
gap: 38px;
|
|
.partnerItem {
|
|
width: 250px;
|
|
height: 120px;
|
|
border-radius: 999px;
|
|
overflow: hidden;
|
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
} |