/* 全局样式 */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    color: inherit;
}

input {
    border: none;
    background-color: #e9e9e9;
    border-radius: 10px;
    height: 24px;
    width: 100px;
    margin-right: 4px;
    padding: 4px 14px;
    font-size: 12px;
    outline: none;
}

.header_container {
    width: 100%;
    background-color: #134695;
}

.header_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
    background-color: #134695;
}

.search_box {
    line-height: 84px;
}

.search_icon {
    width: 14px;
    position: relative;
    left: -28px;
    top: 5px;
}

.nav_box {
    margin-top: 34px;
    display: flex;
}

.logo_box {
    height: 90px;
}

.nav_menu_box {
    display: flex;
    justify-content: space-between;
    margin-right: 32px;
}

.banner {
    position: relative;
    /* width: 100vw; */
    overflow: hidden;
}

.banner_box {
    display: flex;
    flex-wrap: nowrap;
    /* width: 100vw; */
    transition: transform 0.5s ease;
    will-change: transform;
}

.banner_box li {
    flex: 0 0 100vw;
    list-style: none;
    /* overflow: hidden; */
    height: calc(100vh - 300px);
}

.banner_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
    /* min-width: 100%; */
    /* min-height: 100%; */
    display: block;
}


.dots {
    position: absolute;
    left: 50%;
    bottom: 160px;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
    padding: 0;
    cursor: pointer;
}

.dot.active {
    width: 40px;
    border-radius: 5px;
    background: #fff;
    transform: scale(1.2);
}


/* 内容层 */
.content-overlay {
    width: 100%;
    position: relative;
    min-height: calc(100vh - 425px);
}

/* 面包屑位置 */
.detail_list_top_banner_nav_box>div>span:nth-child(2)>a {
    color: #FFF;
}

@media (max-width: 992px) {
    .header_box {
        padding: 20px 12px;
        box-sizing: border-box;
    }

    .logo_box {
        height: 50px;
    }

    .nav_box {
        display: none;
    }

    .banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding-bottom: 0;
    }

    .banner_box {
        height: auto;
    }

    .banner_box li {
        list-style: none;
        /* overflow: hidden; */
        height: auto;
    }

    .banner_box img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        /* object-position: center; */
        /* min-width: 100%; */
        /* min-height: 100%; */
    }

    .content-overlay {
        position: static;
        height: auto;
        transform: none !important;
        padding-top: 0;
        pointer-events: auto;
    }

    .dots {
        position: absolute;
        left: 50%;
        bottom: 16px;
        transform: translateX(-50%);
        display: flex;
        gap: 14px;
        z-index: 3;
    }

}