#tanch {}

#tanch .talist {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

#tanch .talist .taitem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 33.3%;
    align-items: center;
    margin-bottom: 20px;
}

#tanch .talist .taitem .taimg {
    padding: 20px;
    border-radius: 50%;
    -webkit-box-shadow: 10px 4px 6px 3px rgb(143 143 143 / 30%);
    -moz-box-shadow: 0px -6px 6px rgb(143 143 143 / 30%);
    -ms-box-shadow: 0px -6px 6px rgb(143 143 143 / 30%);
    background-color: white;
}

#tanch .talist .taitem .tanum {
    padding: 60px 5px 5px;
    position: relative;
}

#tanch .talist .taitem .tainfo {}

#tanch .talist .taitem .tainfo h2 {
    text-align: center;
    font-size: 1.25em;
    font-weight: 500;
}

#tanch .talist .taitem .tainfo p {
    overflow: hidden;
    margin: 10px 0;
    height: 58px;
    text-align: center;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0 25px;
    font-size: 1em;
}

#tanch .talist .taitem .tanum p {
    font-size: 1.0em;
    font-weight: 600;
}

#tanch .talist .taitem .tanum:before {
    content: "";
    position: absolute;
    width: 10px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #bcbcbc;
    top: 44px;
    margin-left: 2px;
}

#tanch .talist .taitem:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #bcbcbc;
    left: 0;
    top: 149px;
}

#tanch .talist .taitem .taimg img {
    aspect-ratio: 1 / 1;
    width: 61px;
}

@media screen and (max-width: 1470px) {
    #tanch .talist .taitem .tainfo p {
        height: 45px;
    }

    #tanch .talist .taitem .taimg img {
        width: 51px;
    }

    #tanch .talist .taitem .tanum {
        padding: 30px 5px 5px;
    }

    #tanch .talist .taitem .tanum:before {
        top: 14px;
    }

    #tanch .talist .taitem:after {
        top: 110px;
    }
}

@media screen and (max-width: 1024px) {
    #tanch .talist .taitem .tainfo p {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    #tanch .talist .taitem {
        width: 50%;
    }

    #tanch .talist .taitem:after {
        display: none;
    }

    #tanch .talist .taitem .tanum {
        padding: 19px 5px 5px;
    }

    #tanch .talist .taitem .tanum:before {
        top: -4px;
    }
}