/* flex 弹性布局
------------------------------- */
.flex {
    display: flex;
}

.flex-auto {
    flex: 1;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;

    flex-direction: column;
}

.align-center {
    align-items: center;

}

.align-start {
    align-items: flex-start;

}

.align-end {
    align-items: flex-end;

}

.align-baseline {
    align-items: baseline;

}

.justify-center {
    justify-content: center;

}

.justify-left {
    justify-content: flex-start;

}

.justify-right {
    justify-content: flex-end;

}

.flex-center {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

.flex-margin {
    margin: auto;
}

.flex-wrap {
    flex-wrap: wrap;

}

.pointer {
    cursor: pointer;

}

/* 省略号
------------------------------- */

.omit1 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.omit2 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.omit3 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.omit4 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.omit5 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.omit6 {
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

/* 宽高 100%
------------------------------- */
.w100 {
    width: 100% !important;
}

.h100 {
    height: 100% !important;
}

.vh100 {
    height: 100vh !important;
}

.max100vh {
    max-height: 100vh !important;
}

.min100vh {
    min-height: 100vh !important;
}


.el-pagination {
    --el-pagination-hover-color: var(--primary-color);
    align-items: center;
    display: flex;
    flex-direction: row;
}

p {
    margin: 0;
}

a {
    color: #333333;
    text-decoration: none;
}

html {
    font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;

    --primary-color: #192f85;
    --sub-color: #007bc1;
    --rgba05--: rgba(255, 255, 255, 0.5);
    --rgba07--: rgba(255, 255, 255, 0.7)


}


::-webkit-scrollbar {
    /*margin-right: -5px;*/
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0);
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0);
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {

    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(198, 198, 198, 0.75);
    background: #3d3d3d;
    /*background-color: rgba(0, 0, 0, 0.51);*/
}


.el-carousel__button {
    width: 50px;
    height: 8px;
    background-color: var(--primary-color) !important;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    margin-bottom: 20px;
}

.el-carousel__button:before {
    content: '';
    z-index: 0;
    border-radius: 10px;


}


.container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, SF UI Text, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif!important;

}


body {
    background-color: #EBEBEB;
}


.go-top-btn {
    display: none;
    position: fixed;
    right: 40px;
    /*height: 100px;*/
    background-color: #182d66;
    z-index: 999;
    bottom: 135px;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.go-top-btn .item {
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: relative;
}

.go-top-btn .item .more {

    position: absolute;
    top: 0;
    left: -210px;
    width: 180px;
    background-color: #182d66;
    padding: 10px;
    color: #fff;
    cursor: unset;
    display: none;

}

.go-top-btn .item:hover .more {
    display: flex;
    flex-direction: column;
    line-height: 1.8;
}

.go-top-btn .item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid #e5e5e5;
    transform: scaleY(0.8);
    width: 80%;
    margin:  0 auto;
}

.go-top-btn .item:last-child:after {
    content: none;
}

.go-top-btn .item img{
    width: 35px;
}

