main {
    width: 80%;
    margin: 0 auto 30px;
}

main img {
    display: block;
    height: 100%;
}

main h3 {
    padding: 20px 0 40px 0;
    font-size: 25px;
    font-weight: 600;
}

.list-one {
    margin-bottom: 20px;
}

.one-big-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.one-box {
    cursor: pointer;
    width: 19%;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow .48s cubic-bezier(.37, .74, .15, 1);
    background-color: #fff;
}

.one-img {
    position: relative;
}

.one-img::before {
    content: '';
    padding-top: 60%;
    display: block;
}

.one-img img {
    position: absolute;
    height: 100%;
    object-fit: cover;
    top: 0;
}

.one-box:hover {
    box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
}

.one-txt {
    padding: 10px 20px;
    font-size: 16px;
    color: #545454;
    line-height: 24px;
}

.one-txt p {
    margin-bottom: 10px;
    font-size: 18px;
    color: #000;
}

.one-txt .abs {
    width: 100%;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.two-big-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.box-general {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .48s cubic-bezier(.37, .74, .15, 1);
}

.list-two {
    margin-bottom: 20px;
}

.tow-one {
    cursor: pointer;
    width: 100%;
    margin-bottom: 20px;
    max-height: 400px;
    background: #fff;
}

.tow-one:hover {
    box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
}

.tow-one-img,
.two-dob-img {
    width: 50%;
}

.two-one-txt {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.two-one-txt * {
    margin-bottom: 30px;
}

.two-one-name,
.dob-name,
.three-name {
    font-size: 12px;
}

.two-one-text {
    font-size: 24px;
}

.two-one-op,
.dob-op {
    color: #545454;
    line-height: 24px;
}

.two-dob {
    width: 49%;
    min-height: 242px;
    margin-bottom: 20px;
    background: #fff;
    cursor: pointer;
}

.two-dob-txt {
    flex: 1;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.dob-text {
    font-size: 20px;
}

.two-dob:hover {
    box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
}

.two-three {
    cursor: pointer;
    width: 24%;
    flex-direction: column;
    margin-bottom: 20px;
    background: #fff;
}

.two-three-img {
    position: relative;
}

.two-three-img img {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
    display: block;
}

.three-name {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.two-three-img::before {
    content: '';
    padding-top: 60%;
    display: block;
}

.two-three:hover {
    box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
}

.two-three-txt {
    padding: 24px 32px;
}

.two-three-txt * {
    margin-bottom: 20px;
}

.three-text {
    font-size: 20px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.three-big-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.three-box {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: box-shadow .48s cubic-bezier(.37, .74, .15, 1);
    margin-bottom: 20px;
    cursor: pointer;
}

.three-img {
    position: relative;
}

.three-img::before {
    content: '';
    display: block;
    padding-top: 70%;
}

.three-img img {
    position: absolute;
    top: 0;
    height: 100%;
    object-fit: cover;
}

.three-txt {
    position: absolute;
    bottom: 10%;
    left: 10px;
    color: #fff;
    font-size: 20px;
}

.three-box:hover {
    box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
}

.three-focus {
    position: absolute;
    padding: 5px 20px;
    background-color: rgba(0, 0, 0, 0.459);
    color: rgb(255, 255, 255);
    left: 0;
    /* bottom: 0; */
    top: 0;
    border-radius: 0 0 5px 0;
    /* border-radius: 0 5px 0 0 ; */
}

@media (max-width:999px) {
    main {
        width: 98%;
    }

    main img {
        width: 100%;
        height: auto;
    }

    .one-big-box {
        flex-wrap: wrap;
    }

    .one-box {
        width: 48%;
        margin-bottom: 20px;
    }

    .one-txt {
        padding: 10px;
    }

    .five {
        display: none;
    }

    .abs {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 5;
    }

    .tow-one,
    .two-dob,
    .two-three {
        flex-direction: column;
        max-height: none;
        box-shadow: 0 0 17px rgb(40 40 40 / 12%), 0 0 22px rgb(40 40 40 / 8%), 0 0 8px rgb(40 40 40 / 16%);
        margin-bottom: 20px;
    }

    .two-three {
        width: 49%;
    }

    .dob-text,
    .three-text {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        margin: 10px 0;
    }

    .tow-one-img,
    .two-dob-img {
        width: 100%;
    }

    .two-one-op,
    .dob-op {
        color: #545454;
        line-height: 24px;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .three-box {
        width: 100%;
    }
}