
.byz-tools-page {
    width: 1200px;
    margin: 0 auto;
}
/* 顶部 */

.byz-tools-header {
    background: #fff;
    border-radius: 2px;
    padding: 40px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #f1f1f1;
}
.byz-tools-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}
.byz-tools-desc {
    color: #888;
    font-size: 15px;
}
/* 分类模块 */

.byz-tool-section {
    background: #fff;
    border-radius: 2px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #f1f1f1;
}
.byz-tool-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-left: 14px;
    position: relative;
}
.byz-tool-section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-42%);
    width: 4px;
    height: 17px;
    background: #08c26e;
    border-radius: 2px;
}
.byz-tool-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.byz-tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #fafafa;
    border-radius: 6px;
    color: #333;
    transition: .2s;
    font-size: 14px;
}
.byz-tool-item:hover {
    background: #ecfaf2;
    color: #08c26e;
}
.byz-tool-item i {
    font-size: 15px;
}

/* 手机 */

@media(max-width:992px) {
.byz-tool-list {
    grid-template-columns: repeat(2, 1fr);
}
}

@media(max-width:768px) {
.byz-tools-page {
    margin: 10px;
}
.byz-tools-header {
    padding: 30px 20px;
}
.byz-tools-title {
    font-size: 28px;
}
.byz-tool-list {
    grid-template-columns: 1fr;
}
}