/* 公共工具样式 */
/* 文本省略 */
.ellipsis-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-word;
}

.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.ellipsis-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.ellipsis-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.ellipsis-6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    word-break: break-word;
}
/* 字体 */
.ft-bold {
    font-weight: bold;
}

.ft-12 {
    font-size: 12px;
}

.ft-13 {
    font-size: 13px;
}

.ft-14 {
    font-size: 14px;
}

.ft-15 {
    font-size: 15px;
}

.ft-16 {
    font-size: 16px;
}

.ft-17 {
    font-size: 17px;
}

.ft-18 {
    font-size: 18px;
}

.ft-normal {
    font-weight: normal;
}
/* 键鼠 */
.sel-no {
    user-select: none;
}

.cur-no {
    cursor: none;
}

.cur-def {
    cursor: default;
}

.cur-pot {
    cursor: pointer;
}

.pot-ev-no {
    pointer-events: none;
}

.pot-ev-auto {
    pointer-events: auto;
}
/* 样式 */
.bor-rds-round {
    border-radius: 50%;
}

.text-d-no {
    text-decoration: none;
}

.text-d-li {
    text-decoration: underline;
}

.text-d-thro {
    text-decoration: line-through;
}

.hover-tdl:hover {
    text-decoration: underline;
}

.hover-tdt:hover {
    text-decoration: line-through;
}

.hover-tdn:link,
.hover-tdn:active,
.hover-tdn:hover,
.hover-tdn:visited {
    text-decoration: none;
}
/* 文本对齐 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-break-word {
    word-break: break-word;
}

.text-break-all {
    word-break: break-all;
}
/* 颜色 */
.cr-white {
    color: #fff;
}

.cr-black {
    color: #000;
}

.cr-primay {
    color: #409eff;
}

.cr-success {
    color: #67c23a;
}

.cr-warning {
    color: #e6a23c;
}

.cr-danger {
    color: #f56c6c;
}

.cr-main {
    color: #303133;
}

.cr-normal {
    color: #606266;
}

.cr-aside {
    color: #909399;
}

.cr-holder {
    color: #c0c4cc;
}

.cr-info {
    color: #909399;
}

.cr-trans {
    color: transparent;
}

.bg-li-1 {
    background-color: #dcdfe6;
}

.bg-li-2 {
    background-color: #e4e7ed;
}

.bg-li-3 {
    background-color: #ebeef5;
}

.bg-li-4 {
    background-color: #f2f6fc;
}

.bgc-trans {
    background-color: transparent;
}
/* 宽高 */
.w-full {
    width: 100%;
}

.w-50-per {
    width: 50%;
}

.w-100-vw {
    width: 100vw;
}

.w-375 {
    width: 375px;
}

.w-750 {
    width: 750px;
}

.w-960 {
    width: 960px;
}

.w-1000 {
    width: 1000px;
}

.w-1080 {
    width: 1080px;
}

.w-1200 {
    width: 1200px;
}

.w-1280 {
    width: 1280px;
    min-width: 1280px;
}

.h-full {
    height: 100%;
}

.h-50-per {
    height: 50%;
}

.h-100-vh {
    height: 100vh;
}
/* 布局 */
.dis-block {
    display: block;
}

.dis-inline {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-inline {
    display: inline-flex;
}

.flx-dir-col {
    flex-direction: column;
}

.flx-dir-row {
    flex-direction: row;
}

.flx-1 {
    flex: 1;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flx-center {
    justify-content: center;
    align-items: center;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-inline-between {
    display: inline-flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

.flex-inline-around {
    display: inline-flex;
    justify-content: space-around;
}

.flex-inline-center {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.flex-inline-drcol-center {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}

.align-stch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-stch {
    justify-content: stretch;
}

.box-sizing {
    box-sizing: border-box;
}

.box-content {
    box-sizing: content-box;
}

.mar-auto {
    margin: 0 auto;
}

.mar-auto-1280 {
    width: 1280px;
    min-width: 1280px;
    margin: 0 auto;
}

.padd-auto {
    padding: 0 auto;
}

.pd-lr-120 {
    padding-left: 120px;
    padding-right: 120px;
}

.over-hidden {
    overflow: hidden;
}

.over-auto {
    overflow: auto;
}

.over-scroll {
    overflow: scroll;
}

.over-x-hidden {
    overflow-x: hidden;
}

.over-y-hidden {
    overflow-y: hidden;
}

.over-x-auto {
    overflow-x: auto;
}

.over-y-auto {
    overflow-y: auto;
}

.over-x-scroll {
    overflow-x: scroll;
}

.over-y-scroll {
    overflow-y: scroll;
}

.fl-left {
    float: left;
}

.fl-right {
    float: right;
}

.fl-no {
    float: none;
}

.clr-both {
    clear: both;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}
/* 懒加载视觉过渡 */
.lazy {
    opacity: 0;
    animation: show 1s 0.5s forwards ease-in;
}

.lazy-8 {
    opacity: 0;
    animation: show 0.8s 0.2s forwards ease-in;
}

.lazy-5 {
    opacity: 0;
    animation: show 0.5s 0.2s forwards ease-in;
}

.lazy-3 {
    opacity: 0;
    animation: show 0.3s 0.2s forwards ease-in;
}

.lazy-2 {
    opacity: 0;
    animation: show 0.2s 0.2s forwards ease-in;
}

.lazy-1 {
    opacity: 0;
    animation: show 0.1s 0.2s forwards ease-in;
}

@keyframes show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* 其他效果 */
.hover:active {
    background-color: #fcfcfc !important;
}

.hover {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hover-cover:active:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 250, 250, 0.2) !important;
}

.hover-cover {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.trans-bg-3 {
    transition: background-color 0.2s linear;
}

.hover-a50:hover {
    background-color: #a50d0a !important;
}
/*animate.css自定义延迟*/
.delay-d1s {
    animation-delay: 0.1s;
}

.delay-d2s {
    animation-delay: 0.2s;
}

.delay-d3s {
    animation-delay: 0.3s;
}

.delay-d4s {
    animation-delay: 0.4s;
}

.delay-d5s {
    animation-delay: 0.5s;
}

.delay-d6s {
    animation-delay: 0.6s;
}

.delay-d7s {
    animation-delay: 0.7s;
}

.delay-d8s {
    animation-delay: 0.8s;
}

.delay-d9s {
    animation-delay: 0.9s;
}

.delay-1s {
    animation-delay: 1s;
}

.delay-1d1s {
    animation-delay: 1.1s;
}

.delay-1d2s {
    animation-delay: 1.2s;
}

.delay-1d3s {
    animation-delay: 1.3s;
}

.delay-1d4s {
    animation-delay: 1.4s;
}

.delay-1d5s {
    animation-delay: 1.5s;
}

.delay-1d6s {
    animation-delay: 1.6s;
}

@media screen and (max-width: 1200px) {
    .pd-lr-120 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width: auto !important;
    }
}

@media screen and (min-width: 1450px) {
    .container {
        width: 1450px !important;
    }
}
