* {
    box-sizing: border-box;
}

a {
    cursor: pointer;
}

.method-nav ul {
    display: flex;
    justify-content: flex-start;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: 500;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    margin-bottom: 20px;
}

.method-nav a {}

.method-nav ul li {
    margin-right: 20px;
}


/* 内容 */
.listbox {
    border: none;
}

.listbox a {
    text-decoration: none !important;
}

.listbox .list-name {
    display: block;
    width: 149px;
    height: 36px;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #4D4D4D;
    text-align: left;
    padding: 6px 0;
    border: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.listbox i {
    font-style: normal;
    line-height: 1.6;
    font-size: 13px;
}

.listbox p {
    font-size: 13px;
    font-weight: 500;
    height: 80px;
    line-height: 2;
    overflow: hidden;
    color: #666;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.listbox li {
    border-radius: 6px;
    width: 262px;
    margin: 20px 20px 0 0;
    padding: 0px;
    float: left;
    height: 312px;
    border: none;
    transition: transform 0.3s;
}

/* .listbox li:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px 0 rgba(48, 55, 66, 0.15);
    opacity: 0.9;
} */

.listbox li img {
    width: 100%;
    min-height: 100%;
    height: auto;
    transition: all .4s ease;
}

.listbox li img:hover {
    scale: 1.2;
}

.listbox .list-name:hover {
    color: #36aafd;
}

.listbox li:hover .list-name {
    color: #36aafd;
}

.listbox .list-icon {
    display: block;
    width: 100%;
    height: 158px;
    border-radius: 6px;
    margin-bottom: 7px;
    overflow: hidden;
}

.t-shadow {
    border-bottom: 2px solid #36aafd;
    color: #36aafd;
}