/* 公用容器 */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.header a img {
    width: 100%;
}

.header .img1 {
    width: 13%;
}

.header .img2 {
    width: 73%;
}

.header .img3 {
    width: 14%;
}


.swiper-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 180px;
}

.swiper-pagination-bullet-active {
    background: #0a7abf !important;
}

.func {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #1180c4;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.func a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 8px;
    transition: all 0.2s ease;
    letter-spacing: 1px;
    position: relative;
    white-space: nowrap;
}

/* 白色渐变竖线分隔 - 使用伪元素，每两个之间都有分隔 */
.func a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0) 100%);
}

/* 激活/点击反馈效果 */
.func a:active {
    background-color: rgba(255, 255, 255, 0.15);
}

/* 确保最后一项没有分隔线 */
.func a:last-child::after {
    display: none;
}