/* 高级文本卡片样式 */
.bj-text-card-wrapper {
    display: block;
}

.bj-text-card {
    display: block;
    background: #EBF0F5;
    padding: 30px 30px;
    position: relative;
    color: #06101C;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.bj-text-card:hover,
.bj-text-card:focus,
.bj-text-card:active,
.bj-text-card:visited {
    text-decoration: none !important;
}

.bj-text-card *,
.bj-text-card *:hover,
.bj-text-card *:focus,
.bj-text-card *:active {
    text-decoration: none !important;
}

.bj-card-title {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.52px;
    margin-bottom: 16px;
    color: #06101C;
    text-decoration: none !important;
    border-bottom: none !important;
}

.bj-card-title h1,
.bj-card-title h2,
.bj-card-title h3,
.bj-card-title h4,
.bj-card-title h5,
.bj-card-title h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    text-decoration: none !important;
    border-bottom: none !important;
}

.bj-card-desc {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: 0.2px;
    padding-right: 42px;
    color: #06101C;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* 箭头按钮样式 */
.bj-arrow-btn {
    position: absolute !important;
    right: 0;
    bottom: 0;
    width: 48px;
    height: 48px;
    background: #0055B8;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 第一个图标（初始显示，会向右上滑出） */
.bj-arrow-btn .arrow-icon-first {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bj-arrow-btn .arrow-icon-first svg,
.bj-arrow-btn .arrow-icon-first img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bj-arrow-btn .arrow-icon-first svg path {
    stroke: #ffffff;
    fill: none;
}

/* 背景层（从底部滑入） */
.bj-arrow-btn .arrow-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #003879;
    transform: translateY(100%);
    transition: transform 0.2s ease;
    z-index: 2;
}

/* 第二个图标（从左下滑入） */
.bj-arrow-btn .arrow-icon-second {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-150%, 150%);
    transition: transform 0.2s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bj-arrow-btn .arrow-icon-second svg,
.bj-arrow-btn .arrow-icon-second img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bj-arrow-btn .arrow-icon-second svg path {
    stroke: #ffffff;
    fill: none;
}

/* 悬停效果 */
.bj-text-card:hover .bj-arrow-btn .arrow-icon-first {
    transform: translate(50%, -150%);
}

.bj-text-card:hover .bj-arrow-btn .arrow-bg {
    transform: translateY(0%);
}

.bj-text-card:hover .bj-arrow-btn .arrow-icon-second {
    transform: translate(-50%, -50%);
}

/* 响应式样式 */
@media only screen and (max-width: 1199px) {
    .bj-card-title {
        font-size: 20px;
        letter-spacing: -0.4px;
    }
}

@media only screen and (max-width: 768px) {
    .bj-text-card {
        padding: 20px 20px;
    }
    
    .bj-card-desc {
        font-size: 16px;
        padding-right: 32px;
    }
    
    .bj-arrow-btn {
        width: 40px;
        height: 40px;
    }
}
