main {
    width: var(--maxcenter);
    margin: 10px auto;
}

main h4 {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
}

main h4 span {
    color: #111;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    bottom: -1px;
    padding-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #911d9c;
}

.list {
    background-color: #fff;
    padding: 2%;
    margin-bottom: 15px;
}

.one-big-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
}

.one-box {
    width: calc((100% - 36px) / 4);
}

.one-box .img-box::before {
    padding-top: 60%;
}

.one-name {
    margin: 10px 0;
    width: 100%;
    font-weight: 700;
    font-family: '';
    font-size: 20px;
}

.one-txt {
    margin: 10px 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.two {
    display: flex;
}

.two-big-box {
    width: 100%;
}

.two-lef {
    width: 60%;
    float: left;
}

.two-lef-box {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 20px;
}

.two-lef-box .img-box {
    width: 48%;
}

.two-lef-box .img-box::before {
    padding-top: 60%;
}

.two-lef-txt {
    flex: 1;
    padding: 2% 0 0;
}

.two-lef-txt h2 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.two-lef-txt p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.tow-top {
    margin-top: 20px;
}

.two-rig {
    width: 38%;
    position: sticky;
    top: 10px;
    float: right;
}

.two-rig-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.two-rig h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.two-rig-img {
    margin: 10px 0;
    display: flex;
    gap: 12px;
    align-items: center;
}

.two-rig-img {
    width: 30%;
    position: relative;
}

.two-rig-box .img-box::before {
    padding-top: 68%;
}

.two-rig-img::after {
    content: "";
    position: absolute;
    border-top: 10px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 10px solid transparent;
    border-left: 10px solid transparent;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.two-rig-txt {
    flex: 1;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
}


@media (max-width:899px) {
    main h4 span {
        font-size: 17px;
    }

    .one-big-box {
        gap: 13px 10px;
    }

    .one-box {
        width: calc((100% - 10px) / 2);
    }

    .one-name {
        font-size: 14px;
    }

    .one-txt {
        font-size: 12px;
    }

    .two-big-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .two-lef {
        width: 100%;
        margin-bottom: .2rem;
    }

    .two-rig {
        width: 100%;
    }

    .two-lef-txt h2 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .two-rig {
        position: relative;
        top: 0;
    }

    .two-rig-img {
        width: 40%;
    }
}