.bar_b002 {
    position: relative;
}

.bar_b002-container {
    max-width: var(--main-width, 1200px);
    margin: 0 auto;
    padding: 0;
}

.bar_b002-grid {
    display: flex;
    gap: var(--bar_b002-bb-gap, 1rem);
    flex-wrap: wrap;
}
.bar_b002-card {
    flex: 1;
    min-width: 200px;
    height: var(--bar_b002-bb-card-height, 12rem);
    border-radius: 0.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}
.bar_b002-card:nth-child(odd) .bar_b002-zone-1 {
    background: var(--bar_b002-bb-odd-bg, #2c3e50);
}
.bar_b002-card:nth-child(even) .bar_b002-zone-1 {
    background: var(--bar_b002-bb-even-bg, #34495e);
}
.bar_b002-zone-2 {
    background: var(--bar_b002-bb-linkzone-bg, #1a252f);
}
.bar_b002-zone-1 {
    height: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar_b002-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.bar_b002-icon {
    font-size: 1.5rem;
    color: var(--bar_b002-bb-accent-color, #f0b90b);
    flex-shrink: 0;
    line-height: 1;
}

.bar_b002-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bar_b002-bb-title-color, #ffffff);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bar_b002-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0.5rem 0 0.75rem;
    flex-shrink: 0;
}
.bar_b002-content {
    font-size: 1rem;
    color: var(--bar_b002-bb-text-color, rgba(255, 255, 255, 0.75));
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    flex: 1;
}
.bar_b002-zone-2 {
    height: 3rem;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar_b002-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bar_b002-bb-accent-color, #f0b90b);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.bar_b002-link:hover {
    transform: translateX(4px);
}

.bar_b002-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.bar_b002-link:hover::after {
    transform: translateX(4px);
}

.bar_b002-card:hover {
    z-index: 10;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.bar_b002-card:hover .bar_b002-zone-1 {
    transform: translateY(-3rem);
}
.bar_b002-card:hover .bar_b002-zone-2 {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
[data-device="pad"] .bar_b002-grid {
    gap: var(--bar_b002-bb-gap, 0.875rem);
}

[data-device="pad"] .bar_b002-card {
    min-width: calc(50% - var(--bar_b002-bb-gap, 0.875rem) / 2);
}

[data-device="phone"] .bar_b002-grid {
    flex-direction: column;
    gap: var(--bar_b002-bb-gap, 0.75rem);
}

[data-device="phone"] .bar_b002-card {
    min-width: 100%;
}