.e-container {
    width: 80%;
    margin: 0 auto;
    padding: 0 16px;
    --color: #89211c;
}

.e-container * {
    box-sizing: border-box;
}

.section {
    padding: 56px 0
}

/* .section-title字体样式需与.section-title a保持一致 */
.section-title {
    font-size: 28px;
    color: var(--color);
    font-weight: 700;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px
}

.section-title a {
    font-size: 28px;
    color: var(--color);
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--color);
}



.quick-grid {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all;
}

.quick-item:hover {
    cursor: pointer;
}

.quick-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 110px;
    border: 1px solid var(--color);
    border-radius: 8px;
    margin-bottom: 10px;
}

.quick-img.hover-style {
    background-color: #d7b263;
    border: 1px solid #d7b263;
}

.quick-img img {
    width: 64px;
    height: 64px;
    object-fit: contain
}

.quick-item a {
    font-size: 16px;
    color: #333
}

.card {
    display: flex;
    align-items: center;
}

.card {
    margin-top: 22px
}

.section .card .card-img {
    order: 1;
}

.section .card .card-body {
    order: 2;
}


/* 双数卡片：图片在右，内容在左 */
#EBankColumn2 .section .card .card-img {
    order: 2;
}
#EBankColumn2 .section .card .card-body{
   order: 1;
}


#EBankColumn4 .section .card .card-img {
    order: 2;
}
#EBankColumn4 .section .card .card-body{
   order: 1;
}

.section:nth-child(even) .card .card-body {
    order: 1;
}

.card-img img{
    width: 510px;
    height: 340px;
    flex-shrink: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 38px 44px;
    background-color: #f7f8f8;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.card-number {
    width: 180px;
    height: 330px;
    object-fit: contain;
    position: absolute;
    top: 70%;
    right: -50px;
    transform: translate(-50%, -50%);
}


.card-tag-box {
    display: flex;
}

.card-tag {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    border-radius: 12px;
    position: relative;
    z-index: 100;
}

.card-tag {
    margin-right: 20px;
}

.card-tag-icon {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.card-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    text-align: justify;
}

.card-btn .btn{
   border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #d7b263;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
}
.card-btn .btn,
.card-btn .btn:focus-visible {
    border: none;
    border-radius: 5px;
    color: #fff;
    background-color: #d7b263;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
}

.card-btn:hover .btn {
    cursor: pointer;
}





.bottom-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-card {
    width: 32%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    overflow: hidden
}

.mini-card .img img{
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
}

.mini-card .body {
    padding: 24px;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.mini-card .title {
    margin-bottom: 18px;
}

.mini-card .title a {
    font-size: 24px;
    color: var(--color);
    font-weight: 700;
}


.mini-card .desc {
    font-size: 14px;
    text-align: justify;
    line-height: 1.7;
    color: #333;
}

.mini-card {
    transition: background-color 0.3s ease;
    /* 平滑过渡 */
}

.mini-card .title,
.mini-card .desc {
    transition: color 0.3s ease;
}

.mini-card .card-number2 {
    position: absolute;
    top: -20px;
    right: 20px;
}