/*::selection{
    background: #1873C6;
    color: #fff;
}
::-moz-selection{
    background: #1873C6;
    color: #fff;
}*/
/*滚动条美化*/
::-webkit-scrollbar{
    width: 8px;
    background-color: #f8f8f8;
}
::-webkit-scrollbar-thumb{
    background:rgba(0,0,0,.4);
    width:8px;
    border-radius:8px;
}
::-webkit-scrollbar-track{
    border-radius:8px;
}

body{
    font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif !important;
    background: #F2F3F7;
    font-size: 14px;
    padding: 0!important;
}
img{
    max-width: 100%;
}
a:hover{
    color: #006fd7;
    text-decoration: none;
}
.s-header .form-control:focus{
    border-color:#fff;
    webkit-box-shadow:none;
    box-shadow:none;
    border: none;
}
.s-search .form-control:focus{
    webkit-box-shadow:none;
    box-shadow:none;
}
.s-text-primary{
    color: #006FD7;
}
.s-text-default{
    color: #333;
}
.s-text-default:hover{
    color: #006FD7!important;
}
/*通用设置*/
.s-wb{
    width: 100%!important;
}

/*通用按钮*/
.s-btn{
    min-width: 100px;
}

/*去掉字体加粗*/
.s-font-normal{
    font-weight: normal;
}

/*灰色背景*/
.s-bg-gray{
    background: #f9f9f9;
}
.s-bg-white{
    background-color: #fff!important;
}
.s-bg-black{
    background-color: #000!important;
}

/*灰色边框线*/
.s-border{
  border: 1px solid #eaeaea;
}
/*文字对齐方式*/
.s-text-c{
    text-align: center;
}
.s-text-l{
    text-align: left;
}
.s-text-r{
    text-align: right;
}
.s-color-red{
    color: red;
}
.s-color-white{
    color: #fff;
}
video{
    width: 100%!important;
    height: 100%!important;
}

/*等分*/
.s-flex{
    display: flex;
}
.s-flex .s-flex-item {
    flex: 1;
}

/*上下居中对齐*/
.s-middle{
    vertical-align: middle;
    display: flex;
    align-items: center;
}
/*上下左右居中*/
.s-middleall{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/*文字超出隐藏*/
.s-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*超出两行隐藏*/
.s-ellipsis-2{
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;//当属性值为3，表示超出3行隐藏
}
.s-ellipsis-3{
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;//当属性值为3，表示超出3行隐藏
}
.s-ellipsis-4{
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;//当属性值为3，表示超出3行隐藏
}
/*禁止换行*/
.s-wsnowrap{
    white-space: nowrap;
}

/*鼠标默认手势*/
.s-cursor{
  cursor: pointer;
}

/*元素显示及隐藏*/
.s-display-block {
    display: block;
}
.s-display-none {
    display: none;
}
.s-overflow{
    overflow: hidden;
}
.f-block{
    width: 30px;
    height: 10px;
    background-color: #006FD7;
    margin-bottom: 35px;
}

@media (min-width: 768px) {
    .s-col-md-20{
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}
.s-container{
    max-width: 1600px;
    margin: 0 auto;
}

/*图片显示效果*/
.s-img-cover{
    object-fit: cover;
}

/*banner轮播图 下方小点颜色*/
.banner .swiper-pagination-bullet{
    width: 0.213rem;
    height: 0.213rem;
}
.banner .swiper-pagination-bullet-active{
    background-color: #fff;
    border-radius: 0.267rem;
    width: 0.533rem;
    height: 0.213rem;
}

/*表格*/
.s-table-bg-primary{
    background-color: #E1F1FF;
}
.s-vertical-middle{
    vertical-align: middle!important;
}
.s-table-pc td, .s-table-pc th {
    padding: .75rem 50px;
}
.s-table-border-none tr td{
    border: none;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
}

.s-table-border-none tr:first-child td{
    text-align: center;
}
.s-table-border-none td:nth-of-type(4) {
    text-align: left;
}
.table.border th, .table.border td{
    border-bottom: 1px solid #ebeef5;
    border-right: 1px solid #ebeef5;
}


/*按钮样式*/
.s-btn{
    min-width: 120px;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #006FD7;
    color: #006FD7;
    -webkit-appearance: none;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
}
.s-btn-primary{
    display: inline-block;
    min-width: 120px;
    background: #006FD7;
    border-radius: 20px;
    color: #fff;
    padding: 7px 20px;
    font-size: 14px;
    text-align: center;
}
.s-btn-primary:hover{
    color: #fff;
}
.s-btn-round{
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
}

.isShow{
    /*transform: translate3d(0,30px,0);
    transition: all 1s cubic-bezier(.38,.32,.36,.98);
    opacity: 0*/
}

/*弹窗遮罩*/
.modal-open .modal{
    background-color: rgb(0, 0, 0, 0.8);
}

/*搜索框*/
.s-search .input-group{
    border: 1px solid #DEDEDE;
    border-radius: 18px;
}
.s-search .input-group-text{
    font-size: 12px;
    background-color: #fff;
    border: none;
    border-radius: 100px 0 0 100px;
    height: 30px;
}
.s-search .form-control{
    border-radius: 0 100px 100px 0;
    padding: 0px;
    height: 30px;
    margin: 0;
    border: 0;
}

.pt-80{
    padding-top: 80px;
}
.pb-80{
    padding-bottom: 80px;
}
.pt-100{
    padding-top: 100px;
}
.pb-100{
    padding-bottom: 100px;
}
@media only screen and (max-width: 750px) {
    .pt-100{
        padding-top: 1rem;
    }
    .pb-100{
        padding-bottom: 1rem;
    }
}
[v-cloak] {
    display: none;
}


/*栏目标题带下横线*/
.column-title.column-title-bottom-border h2{
    position: relative;
    display: inline-block;
    font-size: 45px;
    font-weight: 700;
    color: #333333;
}
.column-title.column-title-bottom-border h2:after{
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background-color: #006FD7;
    border-radius: 252px 252px 252px 252px;
    transform: translate(-50%, 0);
}

/*标题右边的竖线*/
.title-left-vertical-line{
    position: relative;
    padding-left: 30px;
    margin: 0;
    vertical-align: middle;
}
.title-left-vertical-line:before{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 38px;
    background: #006FD7;
    transform: translate(0, -50%);
}
/*列表前缀·*/
.list-styled li{
    list-style: disc;
}
.text-indent{
    text-indent: 2em;
}

.affix{
    position: fixed;
    top: 100px;
}
