* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.page-content {
    margin-top: 78px;
}

input {
    outline: none;
    border: none;
}

/*
    覆盖swiper默认指示器
*/
.swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
    background: #36AEEF !important;
    border-radius: 50% !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    width: 50px !important;
    height: 5px !important;
    background: #36AEEF !important;
    border-radius: 3px !important;
    /*padding-top: -5px;*/
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    /* bottom: 65px !important; */
}

.nav-container {
    display: flex;
    /*background: #fff;*/
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    z-index: 10;
}

/********************* 滚动条样式 *************/
.scroll-demo {
    overflow: auto;
}

::-webkit-scrollbar {
    width: 10px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background-color: #dddee0;
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
::-webkit-scrollbar-corner {
    background-color: #fff;
}

/********************* 滚动条样式end *************/
