﻿.round {
    border-radius: 500000px;
}

.radius {
    border-radius: 6px;
}
img {
    max-width: 100%;
    display: inline-block;
    position: relative;
    z-index: 0;
    vertical-align: bottom;
}

img.loading::before {
    content: "";
    background: #f5f5f5;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.con-box{
	word-break: break-all;
}
img.loading::after {
    content: "\e7f1";
    font-family: "iconfont";
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    right: 0;
    bottom: 0;
    z-index: -1;
    font-size: 32px;
    margin: auto;
    color: #ccc;
    -webkit-animation: icon-spin 2s infinite linear;
    animation: icon-spin 2s infinite linear;
    display: block;
}

.response {
    width: 100%;
}




/* ==================
          边框
 ==================== */


/* -- 实线 -- */

.solid,
.solid-top,
.solid-right,
.solid-bottom,
.solid-left,
.solids,
.solids-top,
.solids-right,
.solids-bottom,
.solids-left,
.dashed,
.dashed-top,
.dashed-right,
.dashed-bottom,
.dashed-left {
    position: relative;
}

.solid::after,
.solid-top::after,
.solid-right::after,
.solid-bottom::after,
.solid-left::after,
.solids::after,
.solids-top::after,
.solids-right::after,
.solids-bottom::after,
.solids-left::after,
.dashed::after,
.dashed-top::after,
.dashed-right::after,
.dashed-bottom::after,
.dashed-left::after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none;
    box-sizing: border-box;
}

.solid::after {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.solid-top::after {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.solid-right::after {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.solid-bottom::after {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.solid-left::after {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.solids::after {
    border: 2px solid #eee;
}

.solids-top::after {
    border-top: 2px solid #eee;
}

.solids-right::after {
    border-right: 4px solid #eee;
}

.solids-bottom::after {
    border-bottom: 4px solid #eee;
}

.solids-left::after {
    border-left: 4px solid #eee;
}


/* -- 虚线 -- */

.dashed::after {
    border: 1px dashed #ddd;
}

.dashed-top::after {
    border-top: 1px dashed #ddd;
}

.dashed-right::after {
    border-right: 1px dashed #ddd;
}

.dashed-bottom::after {
    border-bottom: 1px dashed #ddd;
}

.dashed-left::after {
    border-left: 1px dashed #ddd;
}


/* -- 阴影 -- */

.shadow {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0px 40px 100px 0px rgba(0, 0, 0, 0.07);
}

.shadow-warp {
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.shadow-warp:before,
.shadow-warp:after {
    position: absolute;
    content: "";
    top: 20px;
    bottom: 30px;
    left: 20px;
    width: 50%;
    box-shadow: 0 30px 20px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: -1;
}

.shadow-warp:after {
    right: 20px;
    left: auto;
    transform: rotate(3deg);
}

.shadow-blur {
    position: relative;
}

.shadow-blur::before {
    content: "";
    display: block;
    background: inherit;
    filter: blur(10px);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 10px;
    z-index: -1;
    opacity: 0.4;
    transform-origin: 0 0;
    border-radius: inherit;
    transform: scale(1, 1);
}


/* ==================
          按钮
 ==================== */

.cu-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    outline: none;
    border: none;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 14px;
    height: 32px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    overflow: visible;
    margin-left: initial;
    transform: translate(0px, 0px);
    margin-right: initial;
}

.cu-btn::after {
    display: none;
}

.cu-btn:not([class*="bg-"]) {
    background-color: #f0f0f0;
}

.cu-btn[class*="line"] {
    background-color: transparent;
}

.cu-btn[class*="line"]::after {
    content: " ";
    display: block;
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid currentColor;
    transform: scale(0.5);
    transform-origin: 0 0;
    box-sizing: border-box;
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.cu-btn.round[class*="line"]::after {
    border-radius: 500px;
}

.cu-btn[class*="lines"]::after {
    border: 6px solid currentColor;
}

.cu-btn[class*="bg-"]::after {
    display: none;
}

.cu-btn.sm {
    padding: 0 10px;
    font-size: 10px;
    height: 24px;
}

.cu-btn.lg {
    padding: 0 20px;
    font-size: 16px;
    height: 40px;
}

.cu-btn.icon.sm {
    width: 24px;
    height: 24px;
}

.cu-btn.icon {
    width: 32px;
    height: 23px;
    border-radius: 250px;
    padding: 0;
}

button.icon.lg {
    width: 40px;
    height: 40px;
}

.cu-btn.shadow-blur::before {
    top: 2px;
    left: 2px;
    filter: blur(6px);
    opacity: 0.6;
}

.cu-btn.button-hover {
    transform: translate(1px, 1px);
}

.block {
    display: block;
}

.cu-btn.block {
    display: flex;
    width: 100%;
}

.cu-btn[disabled] {
    opacity: 0.6;
    color: #fff;
}


/* ==================
          徽章
 ==================== */

.cu-tag {
    font-size: 12px;
    vertical-align: middle;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0px 8px;
    height: 24px;
    font-family: Helvetica Neue, Helvetica, sans-serif;
}

.cu-tag:not([class*="bg"]):not([class*="line"]) {
    background-color: #f1f1f1;
}

.cu-tag[class*="line-"]::after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid currentColor;
    transform: scale(0.5);
    transform-origin: 0 0;
    box-sizing: border-box;
    border-radius: inherit;
    z-index: 1;
    pointer-events: none;
}

.cu-tag.radius[class*="line"]::after {
    border-radius: 6px;
}

.cu-tag.round[class*="line"]::after {
    border-radius: 1000px;
}

.cu-tag[class*="line-"]::after {
    border-radius: 0;
}

.cu-tag+.cu-tag {
    margin-left: 5px;
}

.cu-tag.sm {
    font-size: 10px;
    padding: 0px 6px;
    height: 18px;
}

.cu-capsule {
    display: inline-flex;
    vertical-align: middle;
}

.cu-capsule+.cu-capsule {
    margin-left: 5px;
}

.cu-capsule .cu-tag {
    margin: 0;
}

.cu-capsule .cu-tag[class*="line-"]:last-child::after {
    border-left: 0px solid transparent;
}

.cu-capsule .cu-tag[class*="line-"]:first-child::after {
    border-right: 0px solid transparent;
}

.cu-capsule.radius .cu-tag:first-child {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.cu-capsule.radius .cu-tag:last-child::after,
.cu-capsule.radius .cu-tag[class*="line-"] {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.cu-capsule.round .cu-tag:first-child {
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    text-indent: 2px;
}

.cu-capsule.round .cu-tag:last-child::after,
.cu-capsule.round .cu-tag:last-child {
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    text-indent: -2px;
}

.cu-tag.badge {
    background: #dd514c !important;
    border-radius: 100px;
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    padding: 0px 5px;
    height: 14px;
    color: #fff;
}

.cu-tag:empty:not([class*="cicon"]) {
    padding: 0px;
    width: 8px;
    height: 8px;
    top: -2px;
    right: -2px;
}

.cu-tag[class*="cicon"] {
    width: 16px;
    height: 16px;
    top: -2px;
    right: -2px;
}


/* ==================
          头像
 ==================== */

.cu-avatar {
    font-variant: small-caps;
    margin: 0;
    padding: 0;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #ccc;
    color: #fff;
    white-space: nowrap;
    position: relative;
    width: 32px;
    height: 32px;
    background-size: cover;
    background-position: center;
    vertical-align: middle;
    font-size: 0.75em;
}

.cu-avatar.sm {
    width: 24px;
    height: 24px;
    font-size: .5em;
}

.cu-avatar.lg {
    width: 48px;
    height: 48px;
    font-size: 1em;
}

.cu-avatar.xl {
    width: 64px;
    height: 64px;
    font-size: 1.25em;
}

.cu-avatar .avatar-text {
    font-size: 0.2em;
}

.cu-avatar-group {
    direction: rtl;
    unicode-bidi: bidi-override;
    padding: 0 10px 0 20px;
    display: inline-block;
}

.cu-avatar-group .cu-avatar {
    margin-left: -14px;
    border: 2px solid #f1f1f1;
    vertical-align: middle;
}

.cu-avatar-group .cu-avatar.sm {
    margin-left: -10px;
    border: 1px solid #f1f1f1;
}


/* ==================
         进度条
 ==================== */

.cu-progress {
    overflow: hidden;
    height: 28px;
    background-color: #ebeef5;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.cu-progress+div,
.cu-progress+text {
    line-height: 1;
}

.cu-progress.xs {
    height: 10px;
}

.cu-progress.sm {
    height: 20px;
}

.cu-progress div {
    width: 0;
    height: 100%;
    align-items: center;
    display: flex;
    justify-items: flex-end;
    justify-content: space-around;
    font-size: 20px;
    color: #fff;
    transition: width 0.6s ease;
}

.cu-progress text {
    align-items: center;
    display: flex;
    font-size: 20px;
    color: #666;
    text-indent: 10px;
}

.cu-progress.text-progress {
    padding-right: 60px;
}

.cu-progress.striped div {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 72px 72px;
}

.cu-progress.active div {
    animation: progress-stripes 2s linear infinite;
}

@keyframes progress-stripes {
    from {
        background-position: 72px 0;
    }
    to {
        background-position: 0 0;
    }
}


/* ==================
          加载
 ==================== */

.cu-load {
    display: block;
    line-height: 3em;
    text-align: center;
}

.cu-load::before {
    font-family: "iconfont";
    display: inline-block;
    margin-right: 6px;
}

.cu-load.loading::before {
    content: "\e67a";
    animation: icon-spin 2s infinite linear;
}

.cu-load.loading::after {
    content: "加载中...";
}

.cu-load.over::before {
    content: "\e64a";
}

.cu-load.over::after {
    content: "没有更多了";
}

.cu-load.erro::before {
    content: "\e658";
}

.cu-load.erro::after {
    content: "加载失败";
}

.cu-load.load-icon::before {
    font-size: 32px;
}

.cu-load.load-icon::after {
    display: none;
}

.cu-load.load-icon.over {
    display: none;
}

.cu-load.load-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 140px;
    left: 0;
    margin: auto;
    width: 260px;
    height: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 0px 2000px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    line-height: 2.4em;
}

.cu-load.load-modal [class*="cicon"] {
    font-size: 60px;
}

.cu-load.load-modal img {
    width: 70px;
    height: 70px;
}

.cu-load.load-modal::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    font-size: 10px;
    border-top: 6px solid rgba(0, 0, 0, 0.05);
    border-right: 6px solid rgba(0, 0, 0, 0.05);
    border-bottom: 6px solid rgba(0, 0, 0, 0.05);
    border-left: 6px solid #f37b1d;
    animation: icon-spin 1s infinite linear;
    z-index: -1;
}

.load-progress {
    pointer-events: none;
    top: 0;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 2000;
}

.load-progress.hide {
    display: none;
}

.load-progress .load-progress-bar {
    position: relative;
    width: 100%;
    height: 4px;
    overflow: hidden;
    transition: all 200ms ease 0s;
}

.load-progress .load-progress-spinner {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2000;
    display: block;
}

.load-progress .load-progress-spinner::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 4px transparent;
    border-top-color: inherit;
    border-left-color: inherit;
    border-radius: 50%;
    -webkit-animation: load-progress-spinner 0.4s linear infinite;
    animation: load-progress-spinner 0.4s linear infinite;
}

@-webkit-keyframes load-progress-spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load-progress-spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* ==================
          列表
 ==================== */

.cu-list.menu {
    display: block;
    overflow: hidden;
}

.cu-list+.cu-list {
    margin-top: 15px;
}

.cu-list.menu>.cu-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 50px;
    overflow: hidden;
    background: #fff;
    padding: 0 15px;
}

.cu-list.menu>.cu-item::after {
    content: "";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}

.cu-list.menu.sm-border>.cu-item::after {
    width: calc(200% - 120px);
    left: 7px;
}

.cu-list.menu>.cu-item:last-child::after {
    border: none;
}

.cu-list.menu>.cu-item.cur {
    background-color: #fcf7e9;
}

.cu-list.menu-avatar>.cu-item {
    padding-left: 17px;
    min-height: 70px;
}

.cu-list.menu-avatar>.cu-item .cu-avatar {
    left: 7px;
}

.cu-list.menu>.cu-item .content {
    line-height: 1.6em;
    flex: 1;
    font-size: 15px;
}

.cu-list.menu>.cu-item button.content {
    padding: 0;
    justify-content: flex-start;
    background-color: transparent;
}

.cu-list.menu>.cu-item button.content::after {
    display: none;
}

.cu-list.menu>.cu-item .content>span[class*="cicon"] {
    margin-right: 5px;
    display: inline-block;
    width: 1.6rem;
    text-align: center;
}

.cu-list.menu>.cu-item .content>img {
    margin-right: 5px;
    display: inline-block;
    width: 1.6em;
    height: 1.6em;
    vertical-align: middle;
}

.cu-list.menu-avatar>.cu-item .action {
    text-align: center;
}

.cu-list.menu-avatar>.cu-item .action div+div {
    margin-top: 5px;
}

.cu-list.menu>.cu-item .action .cu-tag:empty {
    right: 5px;
}

.cu-list.menu>.cu-item.arrow {
    padding-right: 45px;
}

.cu-list.menu>.cu-item.arrow::before {
    font-family: "iconfont";
    display: block;
    content: "\e6a3";
    position: absolute;
    font-size: 17px;
    color: #aaa;
    line-height: 15px;
    height: 15px;
    width: 15px;
    text-align: center;
    top: 0px;
    bottom: 0;
    right: 15px;
    margin: auto;
}

.cu-list.menu>.cu-item .cu-avatar-group .cu-avatar {
    border-color: #fff;
}

.cu-list.card-menu {
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.cu-list.menu-avatar>.cu-item {
    padding-left: 70px;
    height: 35px;
}

.cu-list.menu-avatar>.cu-item>.cu-avatar {
    position: absolute;
    left: 15px;
}

.cu-list.menu-avatar.comment>.cu-item {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
}

.cu-list.menu-avatar.comment .cu-avatar {
    align-self: flex-start;
}

.cu-list.menu>.cu-item .content .cu-tag.sm {
    font-size: 8px;
    line-height: 40%;
    padding: 4px 3px 2px;
    margin-top: -3px;
}

.cu-list.grid {
    text-align: center;
    background: #fff;
}

.cu-list.grid>.cu-item {
    display: flex;
    flex-direction: column;
    padding: 10px 0 15px;
    position: relative;
    transition-duration: 0s;
}

.cu-list.grid>.cu-item [class*="cicon"] {
    display: block;
    width: 100%;
    position: relative;
    font-size: 24px;
    margin-top: 10px;
}

.cu-list.grid>.cu-item span {
    display: block;
    color: #888;
    margin-top: 5px;
    line-height: 20px;
    font-size: 12px;
}

.cu-list.grid>.cu-item .cu-tag {
    left: 50%;
    right: auto;
    margin-left: 20px;
}

.cu-list.grid>.cu-item::after {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    transform: scale(0.5);
    transform-origin: 0 0;
    pointer-events: none;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cu-list.grid.col-3>.cu-item:nth-child(3n)::after {
    border-right-width: 0px;
}

.cu-list.grid.col-4>.cu-item:nth-child(4n)::after {
    border-right-width: 0px;
}

.cu-list.grid.col-5>.cu-item:nth-child(5n)::after {
    border-right-width: 0px;
}

.cu-list.grid.no-border {
    padding: 20px 10px;
}

.cu-list.grid.no-border>.cu-item {
    padding-top: 10px;
    padding-bottom: 20px;
}

.cu-list.grid.no-border>.cu-item::after {
    border: none;
}

.cu-list>.cu-item {
    transform: translateX(0px);
    transition: all 0.6s ease-in-out 0s;
}

.cu-list>.cu-item .move {
    display: flex;
    width: 260px;
    height: 100%;
    position: absolute;
    right: 0;
    transform: translateX(100%);
}

.cu-list>.cu-item.move-cur {
    transform: translateX(-260px);
}

.cu-list>.cu-item .move div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ==================
          操作条
 ==================== */

.cu-bar {
    display: flex;
    position: relative;
    align-items: center;
    min-height: 50px;
    justify-content: space-between;
}

.cu-bar .action {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
    max-width: 100%;
}

.cu-bar .action.border-title {
    position: relative;
    top: -5px;
}

.cu-bar .action.border-title p[class*="bg-"]:last-child {
    position: absolute;
    bottom: -0.25rem;
    min-width: 1rem;
    height: 3px;
    left: 0;
}

.cu-bar .action.sub-title {
    position: relative;
    top: -0.1rem;
}

.cu-bar .action.sub-title p {
    position: relative;
    z-index: 1;
}

.cu-bar .action.sub-title p[class*="bg-"]:last-child {
    position: absolute;
    display: inline-block;
    bottom: -0.1rem;
    border-radius: 3px;
    width: 100%;
    height: 0.3rem;
    left: 0.3rem;
    opacity: 0.3;
    z-index: 0;
}

.cu-bar .action.sub-title p[class*="text-"]:last-child {
    position: absolute;
    display: inline-block;
    bottom: -0.35rem;
    left: 0.25rem;
    opacity: 0.2;
    z-index: 0;
    text-align: right;
    font-weight: 900;
    font-size: 18px;
}

.cu-bar.justify-center .action.border-title text:last-child,
.cu-bar.justify-center .action.sub-title text:last-child {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.cu-bar .action:first-child {
    margin-left: 15px;
    font-size: 15px;
}

.cu-bar .action span.text-cut {
    text-align: left;
    width: 100%;
}

.cu-bar .cu-avatar:first-child {
    margin-left: 20px;
}

.cu-bar .action:first-child>span[class*="cicon"] {
    margin-left: -0.3em;
    margin-right: 0.3em;
}

.cu-bar .action:last-child {
    margin-right: 15px;
}

.cu-bar .action>span[class*="cicon"],
.cu-bar .action>div[class*="cicon"] {
    font-size: 18px;
}

.cu-bar .action>span[class*="cicon"]+span[class*="cicon"] {
    margin-left: 0.5em;
}

.cu-bar .content {
    position: absolute;
    text-align: center;
    width: 200px;
    left: 0;
    right: 0;
    bottom: 10px;
    margin: auto;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    cursor: none;
    pointer-events: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cu-bar.btn-group {
    justify-content: space-around;
}

.cu-bar.btn-group button {
    padding: 20px 32px;
}

.cu-bar.btn-group button {
    flex: 1;
    margin: 0 20px;
    max-width: 50%;
}

.cu-bar .search-form {
    background: #f5f5f5;
    line-height: 32px;
    height: 32px;
    font-size: 12px;
    color: #666;
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.cu-bar .search-form+.action {
    margin-right: 10px;
}

.cu-bar .search-form input {
    flex: 1;
    padding-right: 10px;
    height: 32px;
    background: #f5f5f5;
    border-radius: 50000000000px;
    line-height: 32px;
    font-size: 13px;
    border: none;
    outline: none;
    text-indent: 10px;
}

.cu-bar .search-form [class*="cicon"] {
    margin: 0 0.5em 0 0.8em;
}

.cu-bar .search-form [class*="cicon"]::before {
    top: 0px;
}

.cu-bar.fixed,
.nav.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1024;
}

.cu-bar.foot {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 1024;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
}

.cu-bar.tabbar {
    padding: 0;
}

.cu-bar.tabbar.shadow {
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
}

.cu-bar.tabbar .action {
    font-size: 11px;
    position: relative;
    flex: 1;
    text-align: center;
    padding: 0;
    display: block;
    height: auto;
    line-height: 1;
    margin: 0;
    background-color: inherit;
    overflow: initial;
}

.cu-bar.tabbar.shop .action {
    width: 140px;
    flex: initial;
}

.cu-bar.tabbar .action.add-action {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.cu-bar.tabbar .action.add-action [class*="cicon"] {
    position: absolute;
    width: 70px;
    z-index: 2;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    font-size: 50px;
    top: -35px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
}

.cu-bar.tabbar .action.add-action::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background-color: inherit;
    z-index: 0;
}

.cu-bar.tabbar .action.add-action::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 30px;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: inherit;
    z-index: 1;
}

.cu-bar.tabbar .btn-group {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 5px;
}

.cu-bar.tabbar button.action::after {
    border: 0;
}

.cu-bar.tabbar .action [class*="cicon"] {
    width: 50px;
    position: relative;
    display: block;
    height: auto;
    margin: 0 auto 5px;
    text-align: center;
    font-size: 20px;
}

.cu-bar.tabbar .action .icon-cu-image {
    margin: 0 auto;
}

.cu-tabbar-height {
    min-height: 60px;
}

.cu-bar.tabbar .action .icon-cu-image img {
    width: 50px;
    height: 50px;
    display: inline-block;
}

.cu-bar.tabbar .submit {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    flex: 2;
    align-self: stretch;
}

.cu-bar.tabbar .submit:last-child {
    flex: 2.6;
}

.cu-bar.tabbar .submit+.submit {
    flex: 2;
}

.cu-bar.tabbar.border .action::before {
    content: " ";
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0.5);
    transform-origin: 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.cu-bar.tabbar.border .action:last-child:before {
    display: none;
}

.cu-bar.tabbar img {
    width: 1.333333rem/* 50/37.5 */
    ;
    height: 1.333333rem/* 50/37.5 */
    ;
}

.cu-bar.input {
    padding-right: 20px;
    background-color: #fff;
}

.cu-bar.input input {
    overflow: initial;
    line-height: 64px;
    height: 64px;
    min-height: 64px;
    flex: 1;
    font-size: 30px;
    margin: 0 20px;
    border: none;
    outline: none;
}

.cu-bar.input .action {
    margin-left: 20px;
}

.cu-bar.input .action [class*="cicon"] {
    font-size: 48px;
}

.cu-bar.input input+.action {
    margin-right: 20px;
    margin-left: 0px;
}

.cu-bar.input .action:first-child [class*="cicon"] {
    margin-left: 0px;
}


/* 
.cu-bar.tabbar .action {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.cu-bar.tabbar .action .tabbar-icon {
  width: 54px;
  height: 54px;
  position: relative;
}
.cu-bar.tabbar .action image {  
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cu-bar.tabbar .action .tabbar-icon image:first-child,.cu-bar.tabbar .action.cur .tabbar-icon image:last-child {  
  width: 0px;
  height: 0px;
}
.cu-bar.tabbar .action .tabbar-icon image:last-child,.cu-bar.tabbar .action.cur .tabbar-icon image:first-child {
  width: 54px;
  height: 54px;
}

.cu-bar.tabbar .action div {
  font-size: 20px;
} */

.cu-custom {
    display: block;
    position: relative;
}

.cu-custom .cu-bar {
    padding-right: 220px;
    box-shadow: 0px 0px 0px;
}


/* ==================
         导航栏
 ==================== */

.nav {
    white-space: nowrap;
}

::-webkit-scrollbar {
    display: none;
}

.nav .cu-item {
    height: 90px;
    display: inline-block;
    line-height: 90px;
    margin: 0 10px;
    padding: 0 20px;
}

.nav .cu-item.cur {
    border-bottom: 4px solid;
}


/* ==================
         时间轴
 ==================== */

.cu-timeline {
    display: block;
    background: #fff;
}

.cu-timeline .cu-time {
    width: 130px;
    text-align: left;
    text-indent: 1rem;
    padding: 10px 0;
    font-size: 13px;
    color: #888;
    display: block;
}

.cu-timeline>.cu-item {
    padding: 15px 15px 15px 60px;
    position: relative;
    display: block;
    z-index: 0;
}

.cu-timeline>.cu-item:not([class*="text-"]) {
    color: #ccc;
}

.cu-timeline>.cu-item::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    background: #ddd;
    left: 30px;
    height: 100%;
    top: 0;
    z-index: 8;
}

.cu-timeline>.cu-item::before {
    font-family: "iconfont";
    display: block;
    position: absolute;
    top: 18px;
    z-index: 9;
    background: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    border: none;
    line-height: 25px;
    left: 18px;
}

.cu-timeline>.cu-item:not([class*="cicon-"])::before {
    content: "\e763";
}

.cu-timeline>.cu-item[class*="cicon"]::before {
    background: #fff;
    width: 25px;
    height: 25px;
    text-align: center;
    border: none;
    line-height: 25px;
    left: 18px;
}

.cu-timeline>.cu-item>.content {
    padding: 15px;
    border-radius: 3px;
    font-size: 14px;
    display: block;
    line-height: 1.6;
}

.cu-timeline>.cu-item>.content:not([class*="bg-"]) {
    background: #f1f1f1;
    color: #666;
}

.cu-timeline>.cu-item>.content+.content {
    margin-top: 10px;
}


/* ==================
         聊天
 ==================== */

.cu-chat {
    display: flex;
    flex-direction: column;
}

.cu-chat .cu-item {
    display: flex;
    padding: 30px 30px 70px;
    position: relative;
}

.cu-chat .cu-item>.cu-avatar {
    width: 80px;
    height: 80px;
}

.cu-chat .cu-item>.main {
    max-width: calc(100% - 260px);
    margin: 0 40px;
    display: flex;
    align-items: center;
}

.cu-chat .cu-item>img {
    height: 320px;
}

.cu-chat .cu-item>.main .content {
    padding: 20px;
    border-radius: 6px;
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    font-size: 30px;
    position: relative;
    min-height: 80px;
    line-height: 40px;
    text-align: left;
}

.cu-chat .cu-item>.main .content:not([class*="bg-"]) {
    background: #fff;
    color: #666;
}

.cu-chat .cu-item .date {
    position: absolute;
    font-size: 24px;
    color: #aaa;
    width: calc(100% - 320px);
    bottom: 20px;
    left: 160px;
}

.cu-chat .cu-item .action {
    padding: 0 30px;
    display: flex;
    align-items: center;
}

.cu-chat .cu-item>.main .content::after {
    content: "";
    top: 27px;
    transform: rotate(45deg);
    position: absolute;
    z-index: 100;
    display: inline-block;
    overflow: hidden;
    width: 24px;
    height: 24px;
    left: -12px;
    right: initial;
    background-color: inherit;
}

.cu-chat .cu-item.self>.main .content::after {
    left: auto;
    right: -12px;
}

.cu-chat .cu-item>.main .content::before {
    content: "";
    top: 30px;
    transform: rotate(45deg);
    position: absolute;
    z-index: -1;
    display: inline-block;
    overflow: hidden;
    width: 24px;
    height: 24px;
    left: -12px;
    right: initial;
    background-color: inherit;
    filter: blur(5px);
    opacity: 0.3;
}

.cu-chat .cu-item>.main .content:not([class*="bg-"])::before {
    background-color: #333;
    opacity: 0.1;
}

.cu-chat .cu-item.self>.main .content::before {
    left: auto;
    right: -12px;
}

.cu-chat .cu-item.self {
    justify-content: flex-end;
    text-align: right;
}

.cu-chat .cu-info {
    display: inline-block;
    margin: 20px auto;
    font-size: 24px;
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    color: #fff;
    max-width: 400px;
    line-height: 1.4;
}


/* ==================
         卡片
 ==================== */

.cu-card {
    display: block;
    overflow: hidden;
}

.cu-card>.cu-item {
    display: block;
    background: #fff;
    overflow: hidden;
    border-radius: 5px;
    margin: 15px;
}

.cu-card>.cu-item.shadow-blur {
    overflow: initial;
}

.cu-card.no-card>.cu-item {
    margin: 0px;
    border-radius: 0px;
}

.cu-card .grid.grid-square {
    margin-bottom: -10px;
}

.cu-card.case .image {
    position: relative;
}

.cu-card.case .image img {
    width: 100%;
}

.cu-card.case .image .cu-tag {
    position: absolute;
    right: 0;
    top: 0;
}

.cu-card.case .image .cu-bar {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    padding: 0px 15px;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cu-card.case.no-card .image {
    margin: 15px 15px 0;
    overflow: hidden;
    border-radius: 5px;
}

.cu-card.dynamic {
    display: block;
}

.cu-card.dynamic>.cu-item {
    display: block;
    background-color: #fff;
    overflow: hidden;
}

.cu-card.dynamic>.cu-item>.text-content {
    padding:0 15px 0;
    max-height: 6.4em;
    overflow:hidden;
    font-size: 13px;
    margin-bottom: 10px;
}

.cu-card.dynamic>.cu-item .square-img {
    width: 100%;
    height: 100px;
    border-radius: 3px;
}

.cu-card.dynamic>.cu-item .only-img {
    border-radius: 3px;
}


/* card.dynamic>.cu-item .comment {
  padding: 20px;
  background: #f1f1f1;
  margin: 0 30px 30px;
  border-radius: 6px;
} */

.cu-card.article {
    display: block;
}

.cu-card.article>.cu-item {
    padding-bottom: 15px;
}

.cu-card.article>.cu-item .title {
    font-size: 13px;
    font-weight: 900;
    word-wrap: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    line-height: 50px;
    padding: 0 15px;
}

.cu-card.article>.cu-item .content {
    display: flex;
    padding: 0 15px;
}

.cu-card.article>.cu-item .content>img {
    width: 120px;
    height: 2.2em;
    margin-right: 10px;
    border-radius: 3px;
}

.cu-card.article>.cu-item .content .desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cu-card.article>.cu-item .content .text-content {
    font-size: 13px;
    color: #888;
    height: 2.4em;
    overflow: hidden;
}


/* ==================
         表单
 ==================== */

.cu-form-group {
    background: #fff;
    padding: 1px 30px;
    display: flex;
    align-items: center;
    min-height: 100px;
    justify-content: space-between;
}

.cu-form-group+.cu-form-group {
    border-top: 1px solid #eee;
}

.cu-form-group .title {
    text-align: justify;
    padding-right: 30px;
    font-size: 30px;
    position: relative;
    height: 60px;
    line-height: 60px;
}

.cu-form-group.top {
    align-items: baseline;
}

.cu-form-group input {
    flex: 1;
    font-size: 30px;
    color: #555;
    padding-right: 20px;
}

.cu-form-group>span[class*="cicon"] {
    font-size: 36px;
    padding: 0;
    box-sizing: border-box;
}

.cu-form-group textarea,
.cu-form-group textarea textarea {
    margin: 32px 0 30px;
    height: 4.8em;
    width: 100%;
    line-height: 1.2em;
    flex: 1;
    font-size: 28px;
    padding: 0;
    box-sizing: content-box;
    display: inline-block;
    vertical-align: top;
}

.cu-form-group textarea::after {
    content: "测试文字";
    opacity: 0;
}

.cu-form-group .grid-square {
    margin: 20px 0 0;
}

.cu-form-group picker {
    flex: 1;
    padding-right: 40px;
    overflow: hidden;
    position: relative;
}

.cu-form-group picker .picker {
    line-height: 100px;
    font-size: 28px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: right;
}

.cu-form-group picker::after {
    font-family: iconfont;
    display: block;
    content: "\e6a3";
    position: absolute;
    font-size: 34px;
    color: #aaa;
    line-height: 100px;
    width: 60px;
    text-align: center;
    top: 0;
    bottom: 0;
    right: -20px;
    margin: auto;
}

.cu-form-group textarea[disabled],
.cu-form-group textarea[disabled] .placeholder {
    color: transparent;
}


/* ==================
         模态窗口
 ==================== */

.cu-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1110;
    opacity: 0;
    outline: 0;
    text-align: center;
    -ms-transform: scale(1.185);
    transform: scale(1.185);
    backface-visibility: hidden;
    perspective: 2000px;
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease-in-out 0s;
    pointer-events: none;
}

.cu-modal::before {
    content: "\200B";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.cu-modal.show {
    opacity: 1;
    transition-duration: 0.3s;
    -ms-transform: scale(1);
    transform: scale(1);
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: auto;
}

.cu-dialog {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
    margin-right: auto;
    width: 680px;
    max-width: 100%;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
}

.cu-modal.bottom-modal::before {
    vertical-align: bottom;
}

.cu-modal.bottom-modal .cu-dialog {
    width: 100%;
    border-radius: 0;
}

.cu-modal.bottom-modal {
    margin-bottom: -1000px;
}

.cu-modal.bottom-modal.show {
    margin-bottom: 0;
}

.cu-modal.drawer-modal {
    transform: scale(1);
    display: flex;
}

.cu-modal.drawer-modal .cu-dialog {
    height: 100%;
    min-width: 200px;
    border-radius: 0;
    margin: initial;
    transition-duration: 0.3s;
}

.cu-modal.drawer-modal.justify-start .cu-dialog {
    transform: translateX(-100%);
}

.cu-modal.drawer-modal.justify-end .cu-dialog {
    transform: translateX(100%);
}

.cu-modal.drawer-modal.show .cu-dialog {
    transform: translateX(0%);
}


/* ==================
         轮播
 ==================== */

swiper.square-dot .wx-swiper-dot {
    background: #fff;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out 0s;
}

swiper.square-dot .wx-swiper-dot.wx-swiper-dot-active {
    opacity: 1;
    width: 30px;
}

swiper.round-dot .wx-swiper-dot {
    /* background: #39b54a; */
    width: 10px;
    height: 10px;
    top: -4px;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
}

swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    border-radius: 20px;
}

swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active {
    width: 18px;
    height: 18px;
    top: 0px;
}

.screen-swiper {
    min-height: 375px;
}

.screen-swiper img {
    width: 100%;
    display: block;
    height: 100%;
    margin: 0;
}

.card-swiper {
    height: 420px;
}

.card-swiper swiper-item {
    width: 610px;
    left: 70px;
    box-sizing: border-box;
    padding: 40px 0px 70px;
    overflow: initial;
}

.card-swiper swiper-item .bg-img {
    width: 100%;
    display: block;
    height: 100%;
    border-radius: 10px;
    transform: scale(0.9);
    transition: all 0.2s ease-in 0s;
}

.card-swiper swiper-item.cur .bg-img {
    transform: none;
    transition: all 0.2s ease-in 0s;
}

.tower-swiper {
    height: 420px;
    position: relative;
}

.tower-swiper .tower-item {
    position: absolute;
    width: 300px;
    height: 380px;
    top: 0;
    bottom: 0;
    left: 50%;
    margin: auto;
    transition: all 0.3s ease-in 0s;
    opacity: 1;
}

.tower-swiper .tower-item.none {
    opacity: 0;
}

.tower-swiper .tower-item .bg-img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}


/* ==================
          步骤条
 ==================== */

.cu-steps {
    display: flex;
}

scroll-div.cu-steps {
    display: block;
    white-space: nowrap;
}

scroll-div.cu-steps .cu-item {
    display: inline-block;
}

.cu-steps .cu-item {
    flex: 1;
    text-align: center;
    position: relative;
    min-width: 100px;
}

.cu-steps .cu-item:not([class*="text-"]) {
    color: #aaa;
}

.cu-steps .cu-item [class*="cicon"],
.cu-steps .cu-item .num {
    display: block;
    font-size: 40px;
    line-height: 80px;
}

.cu-steps .cu-item::before,
.cu-steps .cu-item::after,
.cu-steps.steps-arrow .cu-item::before,
.cu-steps.steps-arrow .cu-item::after {
    content: "";
    display: block;
    position: absolute;
    height: 0px;
    width: calc(100% - 80px);
    border-bottom: 1px solid #ccc;
    left: calc(0px - (100% - 80px) / 2);
    top: 40px;
    z-index: 0;
}

.cu-steps.steps-arrow .cu-item::before,
.cu-steps.steps-arrow .cu-item::after {
    content: "\e6a3";
    font-family: 'iconfont';
    height: 30px;
    border-bottom-width: 0px;
    line-height: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #ccc;
}

.cu-steps.steps-bottom .cu-item::before,
.cu-steps.steps-bottom .cu-item::after {
    bottom: 40px;
    top: initial;
}

.cu-steps .cu-item::after {
    border-bottom: 1px solid currentColor;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.cu-steps .cu-item[class*="text-"]::after {
    width: calc(100% - 80px);
    color: currentColor;
}

.cu-steps .cu-item:first-child::before,
.cu-steps .cu-item:first-child::after {
    display: none;
}

.cu-steps .cu-item .num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    margin: 20px auto;
    font-size: 24px;
    border: 1px solid currentColor;
    position: relative;
    overflow: hidden;
}

.cu-steps .cu-item[class*="text-"] .num {
    background-color: currentColor;
}

.cu-steps .cu-item .num::before,
.cu-steps .cu-item .num::after {
    content: attr(data-index);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease-in-out 0s;
    transform: translateY(0px);
}

.cu-steps .cu-item[class*="text-"] .num::before {
    transform: translateY(-40px);
    color: #fff;
}

.cu-steps .cu-item .num::after {
    transform: translateY(40px);
    color: #fff;
    transition: all 0.3s ease-in-out 0s;
}

.cu-steps .cu-item[class*="text-"] .num::after {
    content: "\e645";
    font-family: 'iconfont';
    color: #fff;
    transform: translateY(0px);
}

.cu-steps .cu-item[class*="text-"] .num.err::after {
    content: "\e646";
}


/* ==================
          布局
 ==================== */


/*  -- flex弹性布局 -- */

.flex {
    display: flex;
}

.basis-xs {
    flex-basis: 20%;
}

.basis-sm {
    flex-basis: 40%;
}

.basis-df {
    flex-basis: 50%;
}

.basis-lg {
    flex-basis: 60%;
}

.basis-xl {
    flex-basis: 80%;
}

.flex-sub {
    flex: 1;
}

.flex-twice {
    flex: 2;
}

.flex-treble {
    flex: 3;
}

.flex-direction {
    flex-direction: column;
}

.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;
}

.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: center;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.align-stretch {
    align-items: stretch;
}

.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;
}


/* grid布局 */

.grid {
    display: flex;
    flex-wrap: wrap;
}

.grid.grid-square {
    overflow: hidden;
}

.grid.grid-square .cu-tag {
    position: absolute;
    right: 0;
    top: 0;
    border-bottom-left-radius: 6px;
}

.grid.grid-square>div>text[class*="cicon"] {
    font-size: 26px;
    position: absolute;
    color: #aaa;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grid.grid-square>div {
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.grid.col-1.grid-square>div {
    padding-bottom: 100%;
    height: 0;
    margin-right: 0;
}

.grid.col-2.grid-square>div {
    padding-bottom: calc((100% - 20px)/2);
    height: 0;
    width: calc((100% - 20px)/2);
}

.grid.col-2.grid-square>div:nth-child(2n) {
    margin-right: 0;
}

.grid.col-3.grid-square>div {
    padding-bottom: calc((100% - 40px)/3);
    height: 0;
    width: calc((100% - 40px)/3);
}

.grid.col-3.grid-square>div:nth-child(3n) {
    margin-right: 0;
}

.grid.col-4.grid-square>div {
    padding-bottom: calc((100% - 60px)/4);
    height: 0;
    width: calc((100% - 60px)/4);
}

.grid.col-4.grid-square>div:nth-child(4n) {
    margin-right: 0;
}

.grid.col-5.grid-square>div {
    padding-bottom: calc((100% - 80px)/5);
    height: 0;
    width: calc((100% - 80px)/5);
}

.grid.col-1>div {
    width: 100%;
}

.grid.col-2>div {
    width: 50%;
}

.grid.col-3>div {
    width: 33.33%;
}

.grid.col-4>div {
    width: 25%;
}

.grid.col-5>div {
    width: 20%;
}


/*  -- 内外边距 -- */

.margin-0 {
    margin: 0;
}

.margin-xs {
    margin: 5px;
}

.margin-sm {
    margin: 10px;
}

.margin {
    margin: 15px;
}

.margin-lg {
    margin: 20px;
}

.margin-xl {
    margin: 25px;
}

.margin-top-xs {
    margin-top: 10px;
}

.margin-top-sm {
    margin-top: 20px;
}

.margin-top {
    margin-top: 30px;
}

.margin-top-lg {
    margin-top: 40px;
}

.margin-top-xl {
    margin-top: 50px;
}

.margin-right-xs {
    margin-right: 10px;
}

.margin-right-sm {
    margin-right: 20px;
}

.margin-right {
    margin-right: 30px;
}

.margin-right-lg {
    margin-right: 40px;
}

.margin-right-xl {
    margin-right: 50px;
}

.margin-bottom-xs {
    margin-bottom: 5px;
}

.margin-bottom-sm {
    margin-bottom: 10px;
}

.margin-bottom {
    margin-bottom: 15px;
}

.margin-bottom-lg {
    margin-bottom: 20px;
}

.margin-bottom-xl {
    margin-bottom: 25px;
}

.margin-left-xs {
    margin-left: 10px;
}

.margin-left-sm {
    margin-left: 20px;
}

.margin-left {
    margin-left: 30px;
}

.margin-left-lg {
    margin-left: 40px;
}

.margin-left-xl {
    margin-left: 50px;
}

.margin-lr-xs {
    margin-left: 10px;
    margin-right: 10px;
}

.margin-lr-sm {
    margin-left: 20px;
    margin-right: 20px;
}

.margin-lr {
    margin-left: 30px;
    margin-right: 30px;
}

.margin-lr-lg {
    margin-left: 40px;
    margin-right: 40px;
}

.margin-lr-xl {
    margin-left: 50px;
    margin-right: 50px;
}

.margin-tb-xs {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin-tb-sm {
    margin-top: 20px;
    margin-bottom: 20px;
}

.margin-tb {
    margin-top: 30px;
    margin-bottom: 30px;
}

.margin-tb-lg {
    margin-top: 40px;
    margin-bottom: 40px;
}

.margin-tb-xl {
    margin-top: 50px;
    margin-bottom: 50px;
}

.padding-0 {
    padding: 0;
}

.padding-xs {
    padding: 5px;
}

.padding-sm {
    padding: 10px;
}

.padding {
    padding: 15px;
}

.padding-lg {
    padding: 20px;
}

.padding-xl {
    padding: 25px;
}

.padding-top-xs {
    padding-top: 10px;
}

.padding-top-sm {
    padding-top: 20px;
}

.padding-top {
    padding-top: 30px;
}

.padding-top-lg {
    padding-top: 40px;
}

.padding-top-xl {
    padding-top: 50px;
}

.padding-right-xs {
    padding-right: 10px;
}

.padding-right-sm {
    padding-right: 20px;
}

.padding-right {
    padding-right: 30px;
}

.padding-right-lg {
    padding-right: 40px;
}

.padding-right-xl {
    padding-right: 50px;
}

.padding-bottom-xs {
    padding-bottom: 10px;
}

.padding-bottom-sm {
    padding-bottom: 20px;
}

.padding-bottom {
    padding-bottom: 30px;
}

.padding-bottom-lg {
    padding-bottom: 40px;
}

.padding-bottom-xl {
    padding-bottom: 50px;
}

.padding-left-xs {
    padding-left: 10px;
}

.padding-left-sm {
    padding-left: 20px;
}

.padding-left {
    padding-left: 30px;
}

.padding-left-lg {
    padding-left: 40px;
}

.padding-left-xl {
    padding-left: 50px;
}

.padding-lr-xs {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-lr-sm {
    padding-left: 10px;
    padding-right: 10px;
}

.padding-lr {
    padding-left: 15px;
    padding-right: 15px;
}

.padding-lr-lg {
    padding-left: 20px;
    padding-right: 20px;
}

.padding-lr-xl {
    padding-left: 25px;
    padding-right: 25px;
}

.padding-tb-xs {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-tb-sm {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-tb {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-tb-lg {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-tb-xl {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* -- 浮动 --  */

.cf::after,
.cf::before {
    content: " ";
    display: table;
}

.cf::after {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/* ==================
          背景
 ==================== */

.line-red::after,
.lines-red::after {
    border-color: #e54d42;
}

.line-orange::after,
.lines-orange::after {
    border-color: #f37b1d;
}

.line-yellow::after,
.lines-yellow::after {
    border-color: #fbbd08;
}

.line-olive::after,
.lines-olive::after {
    border-color: #8dc63f;
}

.line-green::after,
.lines-green::after {
    border-color: #39b54a;
}

.line-cyan::after,
.lines-cyan::after {
    border-color: #1cbbb4;
}

.line-blue::after,
.lines-blue::after {
    border-color: #0081ff;
}

.line-purple::after,
.lines-purple::after {
    border-color: #6739b6;
}

.line-mauve::after,
.lines-mauve::after {
    border-color: #9c26b0;
}

.line-pink::after,
.lines-pink::after {
    border-color: #e03997;
}

.line-brown::after,
.lines-brown::after {
    border-color: #a5673f;
}

.line-grey::after,
.lines-grey::after {
    border-color: #8799a3;
}

.line-gray::after,
.lines-gray::after {
    border-color: #aaa;
}

.line-black::after,
.lines-black::after {
    border-color: #333;
}

.line-white::after,
.lines-white::after {
    border-color: #fff;
}

.bg-red {
    background-color: #e54d42;
    color: #fff;
}

.bg-orange {
    background-color: #f37b1d;
    color: #fff;
}

.bg-yellow {
    background-color: #fbbd08;
    color: #333;
}

.bg-olive {
    background-color: #8dc63f;
    color: #fff;
}

.bg-green {
    background-color: #39b54a;
    color: #fff;
}

.bg-cyan {
    background-color: #1cbbb4;
    color: #fff;
}

.bg-blue {
    background-color: #0081ff;
    color: #fff;
}

.bg-purple {
    background-color: #6739b6;
    color: #fff;
}

.bg-mauve {
    background-color: #9c26b0;
    color: #fff;
}

.bg-pink {
    background-color: #e03997;
    color: #fff;
}

.bg-brown {
    background-color: #a5673f;
    color: #fff;
}

.bg-grey {
    background-color: #8799a3;
    color: #fff;
}

.bg-gray {
    background-color: #f0f0f0;
    color: #666;
}

.bg-black {
    background-color: #333;
    color: #fff;
}

.bg-white {
    background-color: #fff;
    color: #666;
}

.bg-shadeTop {
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
    color: #fff;
}

.bg-shadeBottom {
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1));
    color: #fff;
}

.bg-red.light {
    color: #e54d42;
    background: #fadbd9;
}

.bg-orange.light {
    color: #f37b1d;
    background: #fde6d2;
}

.bg-yellow.light {
    color: #fbbd08;
    background: #fef2ce;
}

.bg-olive.light {
    color: #8dc63f;
    background: #e8f4d9;
}

.bg-green.light {
    color: #39b54a;
    background: #d7f0db;
}

.bg-cyan.light {
    color: #1cbbb4;
    background: #d2f1f0;
}

.bg-blue.light {
    color: #0081ff;
    background: #cce6ff;
}

.bg-purple.light {
    color: #6739b6;
    background: #e1d7f0;
}

.bg-mauve.light {
    color: #9c26b0;
    background: #ebd4ef;
}

.bg-pink.light {
    color: #e03997;
    background: #f9d7ea;
}

.bg-brown.light {
    color: #a5673f;
    background: #ede1d9;
}

.bg-grey.light {
    color: #8799a3;
    background: #e7ebed;
}

.bg-gray.light {
    color: #666;
    background: #fadbd9;
}

.bg-gray.light {
    color: #888;
    background: #f1f1f1;
}

.bg-gradual-red {
    background-image: linear-gradient(45deg, #f43f3b, #ec008c);
    color: #fff;
}

.bg-gradual-orange {
    background-image: linear-gradient(45deg, #ff9700, #ed1c24);
    color: #fff;
}

.bg-gradual-green {
    background-image: linear-gradient(45deg, #39b54a, #8dc63f);
    color: #fff;
}

.bg-gradual-purple {
    background-image: linear-gradient(45deg, #9000ff, #5e00ff);
    color: #fff;
}

.bg-gradual-pink {
    background-image: linear-gradient(45deg, #ec008c, #6739b6);
    color: #fff;
}

.bg-gradual-blue {
    background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
    color: #fff;
}

.shadow[class*="-red"] {
    box-shadow: 6px 6px 8px rgba(204, 69, 59, 0.2);
}

.shadow[class*="-orange"] {
    box-shadow: 6px 6px 8px rgba(217, 109, 26, 0.2);
}

.shadow[class*="-yellow"] {
    box-shadow: 6px 6px 8px rgba(224, 170, 7, 0.2);
}

.shadow[class*="-olive"] {
    box-shadow: 6px 6px 8px rgba(124, 173, 55, 0.2);
}

.shadow[class*="-green"] {
    box-shadow: 6px 6px 8px rgba(48, 156, 63, 0.2);
}

.shadow[class*="-cyan"] {
    box-shadow: 6px 6px 8px rgba(28, 187, 180, 0.2);
}

.shadow[class*="-blue"] {
    box-shadow: 6px 6px 8px rgba(0, 102, 204, 0.2);
}

.shadow[class*="-purple"] {
    box-shadow: 6px 6px 8px rgba(88, 48, 156, 0.2);
}

.shadow[class*="-mauve"] {
    box-shadow: 6px 6px 8px rgba(133, 33, 150, 0.2);
}

.shadow[class*="-pink"] {
    box-shadow: 6px 6px 8px rgba(199, 50, 134, 0.2);
}

.cu-btn.shadow[class*="-brown"] {
    box-shadow: 3px 3px 4px rgba(140, 88, 53, 0.2);
}

.cu-btn.shadow[class*="-grey"] {
    box-shadow: 3px 3px 4px rgba(114, 130, 138, 0.2);
}

.cu-btn.shadow[class*="-gray"] {
    box-shadow: 3px 3px 4px rgba(114, 130, 138, 0.2);
}

.cu-btn.shadow[class*="-black"] {
    box-shadow: 3px 3px 4px rgba(26, 26, 26, 0.2);
}

.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-mask {
    background-color: #333;
    position: relative;
}

.bg-mask::after {
    content: "";
    border-radius: inherit;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.bg-mask div,
.bg-mask cover-div {
    z-index: 5;
    position: relative;
}

.bg-mask>cover-div {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-video {
    position: relative;
}

.bg-video video {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    pointer-events: none;
}


/* ==================
          文本
 ==================== */

.text-xs {
    font-size: 10px;
}

.text-sm {
    font-size: 12px;
}

.text-df {
    font-size: 14px;
}

.text-lg {
    font-size: 16px;
}

.text-xl {
    font-size: 36px;
}

.text-xxl {
    font-size: 44px;
}

.text-sl {
    font-size: 80px;
}

.text-xsl {
    font-size: 120px;
}

.text-Abc {
    text-transform: Capitalize;
}

.text-ABC {
    text-transform: Uppercase;
}

.text-abc {
    text-transform: Lowercase;
}

.text-price::before {
    content: "¥";
    font-size: 80%;
    margin-right: 4px;
}

.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.text-bold {
    font-weight: bold;
}

.text-center {
    text-align: center;
}

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-red,
.line-red,
.lines-red {
    color: #e54d42;
}

.text-orange,
.line-orange,
.lines-orange {
    color: #f37b1d;
}

.text-yellow,
.line-yellow,
.lines-yellow {
    color: #fbbd08;
}

.text-olive,
.line-olive,
.lines-olive {
    color: #8dc63f;
}

.text-green,
.line-green,
.lines-green {
    color: #39b54a;
}

.text-cyan,
.line-cyan,
.lines-cyan {
    color: #1cbbb4;
}

.text-blue,
.line-blue,
.lines-blue {
    color: #0081ff;
}

.text-purple,
.line-purple,
.lines-purple {
    color: #6739b6;
}

.text-mauve,
.line-mauve,
.lines-mauve {
    color: #9c26b0;
}

.text-pink,
.line-pink,
.lines-pink {
    color: #e03997;
}

.text-brown,
.line-brown,
.lines-brown {
    color: #a5673f;
}

.text-grey,
.line-grey,
.lines-grey {
    color: #8799a3;
}

.text-gray,
.line-gray,
.lines-gray {
    color: #aaa;
}

.text-black,
.line-black,
.lines-black {
    color: #333;
}

.text-white,
.line-white,
.lines-white {
    color: #fff;
}

.text-margin-left-10 {
    margin-left: 10px;
}

.text-margin-right-10 {
    margin-right: 10px;
}

.text-margin-12 {
    margin: 0 12px;
}
