/*
flex弹性布局
 */
.flex {
    display: flex;
}

.flex-auto {
    flex: 0 0 auto;
}

.basis-10 {
    flex-basis: 20%;
}

.basis-20 {
    flex-basis: 40%;
}

.basis-25 {
    flex-basis: 50%;
}

.basis-60 {
    flex-basis: 60%;
}

.basis-80 {
    flex-basis: 80%;
}

.flex-sub {
    flex: 1;
}

.flex-twice {
    flex: 2;
}

.flex-treble {
    flex: 3;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-stretch {
    align-items: stretch;
}

.align-baseline {
    align-items: baseline;
}

.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.self-baseline {
    align-self: baseline;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

/*
text
 */
.text-5 {
    font-size: .625rem !important;
}

.text-12 {
    font-size: .75rem !important;
}

.text-14 {
    font-size: .875rem !important;
}

.text-15 {
    font-size: .9375rem !important;
}

.text-16 {
    font-size: 1rem !important;
}

.text-18 {
    font-size: 1.125rem !important;
}

.text-20 {
    font-size: 1.25rem !important;
}

.text-22 {
    font-size: 1.375rem !important;
}

.text-24 {
    font-size: 1.5rem !important;
}

.text-26 {
    font-size: 1.625rem !important;
}

.text-28 {
    font-size: 1.75rem !important;
}

.text-30 {
    font-size: 1.875rem !important;
}

.text-32 {
    font-size: 2rem !important;
}

.text-40 {
    font-size: 2.5rem !important;
}

.text-60 {
    font-size: 3.75rem !important;
}

.text-Abc {
    text-transform: Capitalize;
}

.text-ABC {
    text-transform: Uppercase;
}

.text-abc {
    text-transform: Lowercase;
}

.text-indent {
    text-indent: 2rem;
}

.text-price::before {
    content: "¥";
    font-size: 80%;
    margin-right: .25rem !important;
}

.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-break {
    word-break: break-all;
}

.text-bold {
    font-weight: bold;
}

.text-bold-400 {
    font-weight: 400;
}

.text-bold-500 {
    font-weight: 500;
}

.text-bold-600 {
    font-weight: 600;
}

.text-bold-700 {
    font-weight: 700;
}

.text-bold-800 {
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-aj {
    text-align: justify;
    text-justify: inter-ideograph;
}

.text-u {
    text-decoration: underline;
}

.text-o {
    text-decoration: overline;
}

.text-l {
    text-decoration: line-through;
}

.text-auto-wrap {
    word-wrap: break-word;
    word-break: normal;
}

.text-wrap {
    word-break: break-all;
}

.text-clamp {
    display: -webkit-box;
    word-wrap: break-word;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-blue {
    color: #377dff !important;
}

.text-indigo {
    color: #6e00ff !important;
}

.text-purple {
    color: #510FA8 !important;
}

.text-pink {
    color: #f074ad !important;
}

.text-red {
    color: #f25767 !important;
}

.text-orange {
    color: #FFBE3D !important;
}

.text-yellow {
    color: #ffc431 !important;
}

.text-green {
    color: #00c9a7 !important;
}

.text-teal {
    color: #50b5ff !important;
}

.text-cyan {
    color: #4bd6e5 !important;
}

.text-white {
    color: #FFFFFF !important;
}

.text-gray {
    color: #718096 !important;
}

.text-gray-dark {
    color: #2D3748 !important;
}

.text-primary {
    color: #377dff !important;
}

.text-secondary {
    color: #f7faff !important;
}

.text-success {
    color: #00c9a7 !important;
}

.text-info {
    color: #50b5ff !important;
}

.text-warning {
    color: #FFBE3D !important;
}

.text-danger {
    color: #f25767 !important;
}

.text-light {
    color: #f7faff !important;
}

.text-dark {
    color: #292C37 !important;
}

.text-primary-desat {
    color: #6C8AEC !important;
}

.text-black {
    color: #1e2022 !important;
}


/* lists item */
.lists-item {
    width: 50%;
}

.lists-item:nth-of-type(odd) {
    padding-right: .125rem !important;
}

.lists-item:nth-of-type(even) {
    padding-left: .125rem !important;
}

.wrap-big {
    width: 1100px !important;
}

/*pagination*/
.pagination-center .pagination {
    justify-content: center;
}

/*line-clamp*/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*background-size*/
.bg-size {
    background-size: 100%;
}
@media (max-width: 991.98px) {
    .bg-size-lg {
        background-size: auto 100%;
    }
}


.line-height-18 {
    line-height: 1.8 !important;
}

.pop-wrap {
    width: 120px;
    position: fixed;
    bottom: 10rem;
    right: 1.5rem;
    z-index: 9;
    font-family: Helvetica Neue For Number, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.pop-wrap img {
    width: 90%;
}

.select-title {
    height: 30px;
    line-height: 30px;
}
.select-lists {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.select-lists li a {
    text-decoration: none;
    display: block;
    height: 30px;
    line-height: 30px;
    color: #000;
    padding: 0 11px;
    margin: 0;
}
.select-lists li a:hover,.select-lists li.current a {
    color: #FFF;
    background: #0082EF;
}
.content-lists .content-item a {
    text-decoration: none;
    display: block;
    color: #000;
}
.content-lists .content-item:hover a{
    box-shadow: 0 0.5rem 1.5rem rgb(22 28 45 / 10%) !important;
}

.__edit img{
    max-width: 100%;
    vertical-align: bottom;
}

.footer-about, .footer-about a {
    text-decoration: none;
}
.footer-about h4 {
    color: #377dff;
}

/*手指动画*/
.shou_wrapper {
    position: relative;
}
.circle {
    opacity: 1;
    position: absolute;
    left: 0;
    top: 0;
    background: url("../img/shou2.png") center center no-repeat;
    background-size: 75% 75%;
    width: 26px;
    height: 30px;
    animation: circleHide 1s ease infinite both;
}
.finger {
    opacity: 1 !important;
    background: url("../img/shou0.png") center center no-repeat;
    background-size: 75% 75%;
    width: 30px;
    height: 50px;
    animation: fingerHandle 1s ease infinite both;
}
@keyframes cssAnimation {
    to {
        width:0;
        height:0;
        overflow:hidden;
    }
}
@keyframes fingerHandle {
    0% {
        transform: none;
    }
    70% {
        transform: scale3d(.8, .8, .8);
    }
    100% {
        transform: none;
    }
}
@keyframes circleHide {
    0% {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
    70% {
        opacity: 1;
        transform: scale3d(1.2, 1.2, 1.2);
    }
    100% {
        opacity: 0;
        transform: scale3d(0, 0, 0);
    }
}


