*,
::before,
::after {
    padding: 0;
    margin: 0;
    /*去掉chorm浏览器中默认点击的颜色*/
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 16px;
    line-height: 16px;
}

body {
    height: 100%;
    width: 100%;
    line-height: 16px;
    background-color: #ffffff;
    margin: 0px !important;
    padding: 0;
    border: 0;
}

/*滚动条宽 长,滚动条整体部分，其中的属性有width,height,background,border等。*/
/* ::-webkit-scrollbar {
    width: 7px;
} */

/*滚动条的滑轨背景颜色,可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。*/
/* ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
} */

/* 滑块颜色 */
/* ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
} */

/*滚动条两端的按钮。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。*/
/* ::-webkit-scrollbar-button {
    background-color: #eee;
    display: none;
} */

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
/* ::-webkit-scrollbar-corner {
    background-color: black;
} */


a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
}

.flex {
    display: flex;
}
.swiper-pagination-bullet-active{
    background-color: #999 !important;
}
.line-title {
    position: relative;
    width: 200px;
    text-align: center;
}

.line-title::after {
    content: '';
    display: block;
    border-top: rgb(192, 192, 192) solid 1px;
    position: absolute;
    width: 100px;
    left: 200px;
    bottom: 8px;

}

.line-title::before {
    content: '';
    display: block;
    border-top: rgb(192, 192, 192) solid 1px;
    position: absolute;
    width: 100px;
    right: 200px;
    bottom: 8px;
}

.line-dashed {
    border-bottom: rgb(145, 145, 145) dashed;
    position: relative;
}

.line-dashed::after {
    content: '';
    display: block;
    background-color: #fff;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: solid #999 1px;
    position: absolute;
    left: 0;
    top: -3px;
}

.line-dashed::before {
    content: '';
    display: block;
    background-color: #fff;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    border: solid #999 1px;
    position: absolute;
    right: 0;
    top: -3px;
}
