/* 办事指南主体内容区样式 */
.content {
    padding-bottom: 88px;
}

.banner {
    width: 100%;
    height: 240px;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.nav-block-container {
    width: 1400px;
    margin: 0 auto;
}

.item-title-container {
    padding-bottom: 14px;
    border-bottom: 1px solid #F5F5F5;
    position: relative;
}

.item-title {
    font-size: 20px;
    color: #262626;
    font-weight: bold;
}

.light-line {
    width: 120px;
    height: 4px;
    background-color: #0066ff;
    position: absolute;
    left: 0;
    bottom: 0;
}

.block-container {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
}

.single-block {
    width: 456px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background-image: url("../images/tool-bgi.png");
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    user-select: none;
}

.single-block:hover {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.agent-block {
    background-image: url('../images/app-agent.png');
}

.supplier-block {
    background-image: url('../images/app-supplier.png');
}

.review-block {
    background-image: url('../images/app-review.png');
}

.frosted-glass-title {
    font-size: 20px;
    font-weight: bold;
    color: #002A69;
}

.supplier-title {
    color: #00603A;
}

.review-title {
    color: #633B00;
}

.frosted-glass-gap {
    width: 62px;
    height: 4px;
    background-color: rgba(0, 42, 105, 0.8);
    border-radius: 6px;
    margin: 10px 0 8px 0;
}

.supplier-gap {
    background-color: rgba(0, 96, 58, 0.8);
}

.review-gap {
    background-color: rgba(99, 59, 0, 0.8);
}

.frosted-glass-btn {
    font-size: 14px;
    color: #002A69;
}

.supplier-btn {
    color: #00603A;
}

.review-btn {
    color: #633B00;
}

.tool-text {
    margin-top: 10px;
    font-size: 20px;
    color: #0044AA;
}

a {
    text-decoration: none;
}