.unpleasant-wrap {
    background: #FFFFFF;
}
.unpleasant-inner {
    max-width: 1280px;
    padding: 0 0 88px;
    margin: auto;
}
.unpleasant-inner .h2{
    font-size: 32px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    text-align: center;
    color: #0B0E17;
    line-height: 45px;
}
.unpleasant-inner .h3{
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    text-align: center;
    color: #52545A;
    line-height: 22px;
    margin: 10px auto 38px;
}
.unpleasant-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
}
.unpleasant-li {
    background: rgb(196 218 236 / 45%);;
    border-radius: 18px;
    padding: 44px 40px 44px 42px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.unpleasant-li:nth-child(2) {
    background: rgb(91 120 180 / 24%);;
    border-radius: 18px;
}
.unpleasant-p {
    font-size: 24px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #0B0E17;
    line-height: 33px;
}
.unpleasant-img img{
    display: block;
}

@media (max-width:768px) {
    .unpleasant-inner {
        padding: 0 0 66px;
    }
    .unpleasant-list {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-row-gap: 24px;
    }
    .unpleasant-p {
        width: 74%;
    }
}