@charset "utf-8";
/* --public-- */
*{
	margin:0;
	padding:0;
	outline:none;
}

.clear {clear:both;}
.clearfix:after {content:".";height:0;visibility:hidden;display:block;clear:both;}
.city-picker-span{
	padding:0 6px;
	border: 1px solid #d2d6de;
}
#editorTinymce {width:100%;height:560px;}

/* 1. 取消操作列的强制单行显示，允许换行 */
.divideRows {
    white-space: normal !important; /* 覆盖默认的nowrap */
    vertical-align: middle; /* 按钮垂直居中 */
}
.divideRows .btn{
	margin-top:2px !important;
	margin-bottom:2px !important;
}

.amount-item {
	width: 100%;
	max-width: 120px;
	height: 60px;
	line-height: 56px;
	text-align: center;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 15px;
}
.amount-item:hover {
	border-color: #409eff;
	background-color: #f0f7ff;
}
.amount-item.active {
	border-color: #409eff;
	background-color: #409eff;
	color: #fff;
}
.amount-input{
	width: 100%;
	height: 52px;
	line-height: 52px;
	text-align: center;
	border: 2px solid #e5e7eb;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 16px;
	font-weight: 500;
	opacity:1;
    outline:none;
	display: table-cell;
}
.amount-input:focus {
	border-color: #409eff;
	background-color: #f0f7ff;
}
.amount-input.active {
	border-color: #409eff;
	background-color: #f0f7ff;
}
.amount-addon{
	width: 1%;
	padding: 6px 15px;
    font-size: 16px;
	border: 2px solid #e5e7eb;
    white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
	border-collapse: separate;
}
.amount-addon:first-child {
    border-right: 0;
}
.amount-addon:last-child {
    border-left: 0;
}


/*.msg-wrap.n-error .n-icon {
    background-image: url(../img/validator_default.png);
}*/

/* 自定义按钮基础样式 - 遵循Bootstrap命名规范 */
/* 1. 紫色按钮 btn-purple */
.btn-purple {
  color: #fff;
  background-color: #9333ea; /* 主色：紫色 */
  border-color: #9333ea;
}
.btn-purple:hover {
  color: #fff;
  background-color: #7e22ce; /* hover加深 */
  border-color: #7e22ce;
}
.btn-purple:focus, .btn-purple.focus {
  color: #fff;
  background-color: #7e22ce;
  border-color: #7e22ce;
  box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.5);
}
.btn-purple:active, .btn-purple.active,
.show > .btn-purple.dropdown-toggle {
  color: #fff;
  background-color: #7e22ce;
  border-color: #7e22ce;
}
.btn-purple:active:focus, .btn-purple.active:focus,
.show > .btn-purple.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(147, 51, 234, 0.5);
}

/* 2. 橙色按钮 btn-orange */
.btn-orange {
  color: #fff;
  background-color: #f97316; /* 主色：橙色 */
  border-color: #f97316;
}
.btn-orange:hover {
  color: #fff;
  background-color: #ea580c;
  border-color: #ea580c;
}
.btn-orange:focus, .btn-orange.focus {
  color: #fff;
  background-color: #ea580c;
  border-color: #ea580c;
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.5);
}
.btn-orange:active, .btn-orange.active,
.show > .btn-orange.dropdown-toggle {
  color: #fff;
  background-color: #ea580c;
  border-color: #ea580c;
}
.btn-orange:active:focus, .btn-orange.active:focus,
.show > .btn-orange.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.5);
}

/* 3. 青绿色按钮 btn-teal */
.btn-teal {
  color: #fff;
  background-color: #14b8a6; /* 主色：青绿色 */
  border-color: #14b8a6;
}
.btn-teal:hover {
  color: #fff;
  background-color: #0f766e;
  border-color: #0f766e;
}
.btn-teal:focus, .btn-teal.focus {
  color: #fff;
  background-color: #0f766e;
  border-color: #0f766e;
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.5);
}
.btn-teal:active, .btn-teal.active,
.show > .btn-teal.dropdown-toggle {
  color: #fff;
  background-color: #0f766e;
  border-color: #0f766e;
}
.btn-teal:active:focus, .btn-teal.active:focus,
.show > .btn-teal.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.5);
}

/* 4. 深灰色按钮 btn-dark-gray */
.btn-dark-gray {
  color: #fff;
  background-color: #374151; /* 主色：深灰色 */
  border-color: #374151;
}
.btn-dark-gray:hover {
  color: #fff;
  background-color: #1f2937;
  border-color: #1f2937;
}
.btn-dark-gray:focus, .btn-dark-gray.focus {
  color: #fff;
  background-color: #1f2937;
  border-color: #1f2937;
  box-shadow: 0 0 0 0.2rem rgba(55, 65, 81, 0.5);
}
.btn-dark-gray:active, .btn-dark-gray.active,
.show > .btn-dark-gray.dropdown-toggle {
  color: #fff;
  background-color: #1f2937;
  border-color: #1f2937;
}
.btn-dark-gray:active:focus, .btn-dark-gray.active:focus,
.show > .btn-dark-gray.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(55, 65, 81, 0.5);
}
/* 5. 玫红色按钮 btn-rose */
.btn-rose {
  color: #fff;
  background-color: #e11d48; /* 主色：玫红 */
  border-color: #e11d48;
}
.btn-rose:hover {
  color: #fff;
  background-color: #be123c;
  border-color: #be123c;
}
.btn-rose:focus, .btn-rose.focus {
  color: #fff;
  background-color: #be123c;
  border-color: #be123c;
  box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.5);
}
.btn-rose:active, .btn-rose.active,
.show > .btn-rose.dropdown-toggle {
  color: #fff;
  background-color: #be123c;
  border-color: #be123c;
}
.btn-rose:active:focus, .btn-rose.active:focus,
.show > .btn-rose.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 29, 72, 0.5);
}

/* 6. 天蓝色按钮 btn-sky */
.btn-sky {
  color: #fff;
  background-color: #0ea5e9; /* 主色：天蓝 */
  border-color: #0ea5e9;
}
.btn-sky:hover {
  color: #fff;
  background-color: #0284c7;
  border-color: #0284c7;
}
.btn-sky:focus, .btn-sky.focus {
  color: #fff;
  background-color: #0284c7;
  border-color: #0284c7;
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.5);
}
.btn-sky:active, .btn-sky.active,
.show > .btn-sky.dropdown-toggle {
  color: #fff;
  background-color: #0284c7;
  border-color: #0284c7;
}
.btn-sky:active:focus, .btn-sky.active:focus,
.show > .btn-sky.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.5);
}

/* 7. 琥珀色按钮 btn-amber */
.btn-amber {
  color: #000; /* 浅色系文字用黑色更清晰 */
  background-color: #f59e0b; /* 主色：琥珀 */
  border-color: #f59e0b;
}
.btn-amber:hover {
  color: #000;
  background-color: #d97706;
  border-color: #d97706;
}
.btn-amber:focus, .btn-amber.focus {
  color: #000;
  background-color: #d97706;
  border-color: #d97706;
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.5);
}
.btn-amber:active, .btn-amber.active,
.show > .btn-amber.dropdown-toggle {
  color: #000;
  background-color: #d97706;
  border-color: #d97706;
}
.btn-amber:active:focus, .btn-amber.active:focus,
.show > .btn-amber.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.5);
}

/* 8. 靛蓝色按钮 btn-indigo */
.btn-indigo {
  color: #fff;
  background-color: #6366f1; /* 主色：靛蓝 */
  border-color: #6366f1;
}
.btn-indigo:hover {
  color: #fff;
  background-color: #4f46e5;
  border-color: #4f46e5;
}
.btn-indigo:focus, .btn-indigo.focus {
  color: #fff;
  background-color: #4f46e5;
  border-color: #4f46e5;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.5);
}
.btn-indigo:active, .btn-indigo.active,
.show > .btn-indigo.dropdown-toggle {
  color: #fff;
  background-color: #4f46e5;
  border-color: #4f46e5;
}
.btn-indigo:active:focus, .btn-indigo.active:focus,
.show > .btn-indigo.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.5);
}

/* 9. 薄荷绿按钮 btn-mint */
.btn-mint {
  color: #fff;
  background-color: #65a30d; /* 主色：薄荷绿 */
  border-color: #65a30d;
}
.btn-mint:hover {
  color: #fff;
  background-color: #4d7c0f;
  border-color: #4d7c0f;
}
.btn-mint:focus, .btn-mint.focus {
  color: #fff;
  background-color: #4d7c0f;
  border-color: #4d7c0f;
  box-shadow: 0 0 0 0.2rem rgba(101, 163, 13, 0.5);
}
.btn-mint:active, .btn-mint.active,
.show > .btn-mint.dropdown-toggle {
  color: #fff;
  background-color: #4d7c0f;
  border-color: #4d7c0f;
}
.btn-mint:active:focus, .btn-mint.active:focus,
.show > .btn-mint.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(101, 163, 13, 0.5);
}

/* 10. 酒红色按钮 btn-burgundy */
.btn-burgundy {
  color: #fff;
  background-color: #831843; /* 主色：酒红 */
  border-color: #831843;
}
.btn-burgundy:hover {
  color: #fff;
  background-color: #6b1839;
  border-color: #6b1839;
}
.btn-burgundy:focus, .btn-burgundy.focus {
  color: #fff;
  background-color: #6b1839;
  border-color: #6b1839;
  box-shadow: 0 0 0 0.2rem rgba(131, 24, 67, 0.5);
}
.btn-burgundy:active, .btn-burgundy.active,
.show > .btn-burgundy.dropdown-toggle {
  color: #fff;
  background-color: #6b1839;
  border-color: #6b1839;
}
.btn-burgundy:active:focus, .btn-burgundy.active:focus,
.show > .btn-burgundy.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(131, 24, 67, 0.5);
}


.el-tag {
    background-color: #ecf5ff;
    border-color: #d9ecff;
    height: 32px;
    padding: 0 10px;
    line-height: 30px;
    font-size: 14px;
    color: #409EFF;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
	display:inline-block;
}
.el-tag.el-tag--success {
    background-color: #f0f9eb;
    border-color: #e1f3d8;
    color: #67c23a;
}
.el-tag.el-tag--info {
    background-color: #ecf5ff;
    border-color: #d9ecff;
    color: #409EFF;
}
.el-tag.el-tag--primary {
    background-color: #444c69;
    border-color: #444c69;
    color: #fff;
}
.el-tag.el-tag--default{
	background-color: #e6e6e6;
    border-color: #eee;
    color: #999;
}
.el-tag.el-block--info{
	background-color: #1688f1;
    border-color: #1688f1;
    color: #fff;
}


.el-descriptions {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    color: #303133;
}
.el-descriptions .el-descriptions__title {
    font-size: 16px;
    font-weight: 700;
}
.el-descriptions__header {
    margin-bottom: 15px;
	/* Flex 布局（兼容webkit/IE内核浏览器） */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* 横向：两端对齐（可保留/修改为 center 横向居中） */
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	/* 竖向：居中（核心属性，无需修改） */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.el-descriptions__body {
    color: #606266;
    background-color: #FFF;
}
.el-descriptions__body .is-bordered {
    table-layout: auto;
}
.el-descriptions__body .el-descriptions__table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}
.el-descriptions__body :not(.is-bordered) .el-descriptions-item__cell {
    padding-bottom: 12px;
}
.el-descriptions__body .is-bordered .el-descriptions-item__cell {
    border: 1px solid #EBEEF5;
    padding: 12px 10px;
}
.el-descriptions__body .el-descriptions__table .el-descriptions-item__cell {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    font-weight: 400;
    line-height: 1.5;
}
.el-descriptions__body .el-descriptions__table.is-center .el-descriptions-item__cell {
    text-align:center;
}
.el-descriptions__body .el-descriptions__table .el-descriptions-item__label {
    color: #909399;
    background: #fafafa;
}
.el-descriptions__body .el-descriptions__table .el-descriptions-item__label.is-bordered-label {
    width:20%;
}
.el-descriptions__body .el-descriptions__table .el-descriptions-item__content {
    word-break: break-word;
    overflow-wrap: break-word;
}



@font-face {
    font-family: element-icons;
    src: url(../fonts/iconfont/element-icons.woff) format("woff"),url(../fonts/iconfont/element-icons.ttf) format("truetype");
    font-weight: 400;
    font-display: "auto";
    font-style: normal
}

[class*=" el-icon-"],[class^=el-icon-] {
    font-family: element-icons!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: baseline;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.el-icon-ice-cream-round:before {
    content: "\e6a0"
}

.el-icon-ice-cream-square:before {
    content: "\e6a3"
}

.el-icon-lollipop:before {
    content: "\e6a4"
}

.el-icon-potato-strips:before {
    content: "\e6a5"
}

.el-icon-milk-tea:before {
    content: "\e6a6"
}

.el-icon-ice-drink:before {
    content: "\e6a7"
}

.el-icon-ice-tea:before {
    content: "\e6a9"
}

.el-icon-coffee:before {
    content: "\e6aa"
}

.el-icon-orange:before {
    content: "\e6ab"
}

.el-icon-pear:before {
    content: "\e6ac"
}

.el-icon-apple:before {
    content: "\e6ad"
}

.el-icon-cherry:before {
    content: "\e6ae"
}

.el-icon-watermelon:before {
    content: "\e6af"
}

.el-icon-grape:before {
    content: "\e6b0"
}

.el-icon-refrigerator:before {
    content: "\e6b1"
}

.el-icon-goblet-square-full:before {
    content: "\e6b2"
}

.el-icon-goblet-square:before {
    content: "\e6b3"
}

.el-icon-goblet-full:before {
    content: "\e6b4"
}

.el-icon-goblet:before {
    content: "\e6b5"
}

.el-icon-cold-drink:before {
    content: "\e6b6"
}

.el-icon-coffee-cup:before {
    content: "\e6b8"
}

.el-icon-water-cup:before {
    content: "\e6b9"
}

.el-icon-hot-water:before {
    content: "\e6ba"
}

.el-icon-ice-cream:before {
    content: "\e6bb"
}

.el-icon-dessert:before {
    content: "\e6bc"
}

.el-icon-sugar:before {
    content: "\e6bd"
}

.el-icon-tableware:before {
    content: "\e6be"
}

.el-icon-burger:before {
    content: "\e6bf"
}

.el-icon-knife-fork:before {
    content: "\e6c1"
}

.el-icon-fork-spoon:before {
    content: "\e6c2"
}

.el-icon-chicken:before {
    content: "\e6c3"
}

.el-icon-food:before {
    content: "\e6c4"
}

.el-icon-dish-1:before {
    content: "\e6c5"
}

.el-icon-dish:before {
    content: "\e6c6"
}

.el-icon-moon-night:before {
    content: "\e6ee"
}

.el-icon-moon:before {
    content: "\e6f0"
}

.el-icon-cloudy-and-sunny:before {
    content: "\e6f1"
}

.el-icon-partly-cloudy:before {
    content: "\e6f2"
}

.el-icon-cloudy:before {
    content: "\e6f3"
}

.el-icon-sunny:before {
    content: "\e6f6"
}

.el-icon-sunset:before {
    content: "\e6f7"
}

.el-icon-sunrise-1:before {
    content: "\e6f8"
}

.el-icon-sunrise:before {
    content: "\e6f9"
}

.el-icon-heavy-rain:before {
    content: "\e6fa"
}

.el-icon-lightning:before {
    content: "\e6fb"
}

.el-icon-light-rain:before {
    content: "\e6fc"
}

.el-icon-wind-power:before {
    content: "\e6fd"
}

.el-icon-baseball:before {
    content: "\e712"
}

.el-icon-soccer:before {
    content: "\e713"
}

.el-icon-football:before {
    content: "\e715"
}

.el-icon-basketball:before {
    content: "\e716"
}

.el-icon-ship:before {
    content: "\e73f"
}

.el-icon-truck:before {
    content: "\e740"
}

.el-icon-bicycle:before {
    content: "\e741"
}

.el-icon-mobile-phone:before {
    content: "\e6d3"
}

.el-icon-service:before {
    content: "\e6d4"
}

.el-icon-key:before {
    content: "\e6e2"
}

.el-icon-unlock:before {
    content: "\e6e4"
}

.el-icon-lock:before {
    content: "\e6e5"
}

.el-icon-watch:before {
    content: "\e6fe"
}

.el-icon-watch-1:before {
    content: "\e6ff"
}

.el-icon-timer:before {
    content: "\e702"
}

.el-icon-alarm-clock:before {
    content: "\e703"
}

.el-icon-map-location:before {
    content: "\e704"
}

.el-icon-delete-location:before {
    content: "\e705"
}

.el-icon-add-location:before {
    content: "\e706"
}

.el-icon-location-information:before {
    content: "\e707"
}

.el-icon-location-outline:before {
    content: "\e708"
}

.el-icon-location:before {
    content: "\e79e"
}

.el-icon-place:before {
    content: "\e709"
}

.el-icon-discover:before {
    content: "\e70a"
}

.el-icon-first-aid-kit:before {
    content: "\e70b"
}

.el-icon-trophy-1:before {
    content: "\e70c"
}

.el-icon-trophy:before {
    content: "\e70d"
}

.el-icon-medal:before {
    content: "\e70e"
}

.el-icon-medal-1:before {
    content: "\e70f"
}

.el-icon-stopwatch:before {
    content: "\e710"
}

.el-icon-mic:before {
    content: "\e711"
}

.el-icon-copy-document:before {
    content: "\e718"
}

.el-icon-full-screen:before {
    content: "\e719"
}

.el-icon-switch-button:before {
    content: "\e71b"
}

.el-icon-aim:before {
    content: "\e71c"
}

.el-icon-crop:before {
    content: "\e71d"
}

.el-icon-odometer:before {
    content: "\e71e"
}

.el-icon-time:before {
    content: "\e71f"
}

.el-icon-bangzhu:before {
    content: "\e724"
}

.el-icon-close-notification:before {
    content: "\e726"
}

.el-icon-microphone:before {
    content: "\e727"
}

.el-icon-turn-off-microphone:before {
    content: "\e728"
}

.el-icon-position:before {
    content: "\e729"
}

.el-icon-postcard:before {
    content: "\e72a"
}

.el-icon-message:before {
    content: "\e72b"
}

.el-icon-chat-line-square:before {
    content: "\e72d"
}

.el-icon-chat-dot-square:before {
    content: "\e72e"
}

.el-icon-chat-dot-round:before {
    content: "\e72f"
}

.el-icon-chat-square:before {
    content: "\e730"
}

.el-icon-chat-line-round:before {
    content: "\e731"
}

.el-icon-chat-round:before {
    content: "\e732"
}

.el-icon-set-up:before {
    content: "\e733"
}

.el-icon-turn-off:before {
    content: "\e734"
}

.el-icon-open:before {
    content: "\e735"
}

.el-icon-connection:before {
    content: "\e736"
}

.el-icon-link:before {
    content: "\e737"
}

.el-icon-cpu:before {
    content: "\e738"
}

.el-icon-thumb:before {
    content: "\e739"
}

.el-icon-female:before {
    content: "\e73a"
}

.el-icon-male:before {
    content: "\e73b"
}

.el-icon-guide:before {
    content: "\e73c"
}

.el-icon-news:before {
    content: "\e73e"
}

.el-icon-price-tag:before {
    content: "\e744"
}

.el-icon-discount:before {
    content: "\e745"
}

.el-icon-wallet:before {
    content: "\e747"
}

.el-icon-coin:before {
    content: "\e748"
}

.el-icon-money:before {
    content: "\e749"
}

.el-icon-bank-card:before {
    content: "\e74a"
}

.el-icon-box:before {
    content: "\e74b"
}

.el-icon-present:before {
    content: "\e74c"
}

.el-icon-sell:before {
    content: "\e6d5"
}

.el-icon-sold-out:before {
    content: "\e6d6"
}

.el-icon-shopping-bag-2:before {
    content: "\e74d"
}

.el-icon-shopping-bag-1:before {
    content: "\e74e"
}

.el-icon-shopping-cart-2:before {
    content: "\e74f"
}

.el-icon-shopping-cart-1:before {
    content: "\e750"
}

.el-icon-shopping-cart-full:before {
    content: "\e751"
}

.el-icon-smoking:before {
    content: "\e752"
}

.el-icon-no-smoking:before {
    content: "\e753"
}

.el-icon-house:before {
    content: "\e754"
}

.el-icon-table-lamp:before {
    content: "\e755"
}

.el-icon-school:before {
    content: "\e756"
}

.el-icon-office-building:before {
    content: "\e757"
}

.el-icon-toilet-paper:before {
    content: "\e758"
}

.el-icon-notebook-2:before {
    content: "\e759"
}

.el-icon-notebook-1:before {
    content: "\e75a"
}

.el-icon-files:before {
    content: "\e75b"
}

.el-icon-collection:before {
    content: "\e75c"
}

.el-icon-receiving:before {
    content: "\e75d"
}

.el-icon-suitcase-1:before {
    content: "\e760"
}

.el-icon-suitcase:before {
    content: "\e761"
}

.el-icon-film:before {
    content: "\e763"
}

.el-icon-collection-tag:before {
    content: "\e765"
}

.el-icon-data-analysis:before {
    content: "\e766"
}

.el-icon-pie-chart:before {
    content: "\e767"
}

.el-icon-data-board:before {
    content: "\e768"
}

.el-icon-data-line:before {
    content: "\e76d"
}

.el-icon-reading:before {
    content: "\e769"
}

.el-icon-magic-stick:before {
    content: "\e76a"
}

.el-icon-coordinate:before {
    content: "\e76b"
}

.el-icon-mouse:before {
    content: "\e76c"
}

.el-icon-brush:before {
    content: "\e76e"
}

.el-icon-headset:before {
    content: "\e76f"
}

.el-icon-umbrella:before {
    content: "\e770"
}

.el-icon-scissors:before {
    content: "\e771"
}

.el-icon-mobile:before {
    content: "\e773"
}

.el-icon-attract:before {
    content: "\e774"
}

.el-icon-monitor:before {
    content: "\e775"
}

.el-icon-search:before {
    content: "\e778"
}

.el-icon-takeaway-box:before {
    content: "\e77a"
}

.el-icon-paperclip:before {
    content: "\e77d"
}

.el-icon-printer:before {
    content: "\e77e"
}

.el-icon-document-add:before {
    content: "\e782"
}

.el-icon-document:before {
    content: "\e785"
}

.el-icon-document-checked:before {
    content: "\e786"
}

.el-icon-document-copy:before {
    content: "\e787"
}

.el-icon-document-delete:before {
    content: "\e788"
}

.el-icon-document-remove:before {
    content: "\e789"
}

.el-icon-tickets:before {
    content: "\e78b"
}

.el-icon-folder-checked:before {
    content: "\e77f"
}

.el-icon-folder-delete:before {
    content: "\e780"
}

.el-icon-folder-remove:before {
    content: "\e781"
}

.el-icon-folder-add:before {
    content: "\e783"
}

.el-icon-folder-opened:before {
    content: "\e784"
}

.el-icon-folder:before {
    content: "\e78a"
}

.el-icon-edit-outline:before {
    content: "\e764"
}

.el-icon-edit:before {
    content: "\e78c"
}

.el-icon-date:before {
    content: "\e78e"
}

.el-icon-c-scale-to-original:before {
    content: "\e7c6"
}

.el-icon-view:before {
    content: "\e6ce"
}

.el-icon-loading:before {
    content: "\e6cf"
}

.el-icon-rank:before {
    content: "\e6d1"
}

.el-icon-sort-down:before {
    content: "\e7c4"
}

.el-icon-sort-up:before {
    content: "\e7c5"
}

.el-icon-sort:before {
    content: "\e6d2"
}

.el-icon-finished:before {
    content: "\e6cd"
}

.el-icon-refresh-left:before {
    content: "\e6c7"
}

.el-icon-refresh-right:before {
    content: "\e6c8"
}

.el-icon-refresh:before {
    content: "\e6d0"
}

.el-icon-video-play:before {
    content: "\e7c0"
}

.el-icon-video-pause:before {
    content: "\e7c1"
}

.el-icon-d-arrow-right:before {
    content: "\e6dc"
}

.el-icon-d-arrow-left:before {
    content: "\e6dd"
}

.el-icon-arrow-up:before {
    content: "\e6e1"
}

.el-icon-arrow-down:before {
    content: "\e6df"
}

.el-icon-arrow-right:before {
    content: "\e6e0"
}

.el-icon-arrow-left:before {
    content: "\e6de"
}

.el-icon-top-right:before {
    content: "\e6e7"
}

.el-icon-top-left:before {
    content: "\e6e8"
}

.el-icon-top:before {
    content: "\e6e6"
}

.el-icon-bottom:before {
    content: "\e6eb"
}

.el-icon-right:before {
    content: "\e6e9"
}

.el-icon-back:before {
    content: "\e6ea"
}

.el-icon-bottom-right:before {
    content: "\e6ec"
}

.el-icon-bottom-left:before {
    content: "\e6ed"
}

.el-icon-caret-top:before {
    content: "\e78f"
}

.el-icon-caret-bottom:before {
    content: "\e790"
}

.el-icon-caret-right:before {
    content: "\e791"
}

.el-icon-caret-left:before {
    content: "\e792"
}

.el-icon-d-caret:before {
    content: "\e79a"
}

.el-icon-share:before {
    content: "\e793"
}

.el-icon-menu:before {
    content: "\e798"
}

.el-icon-s-grid:before {
    content: "\e7a6"
}

.el-icon-s-check:before {
    content: "\e7a7"
}

.el-icon-s-data:before {
    content: "\e7a8"
}

.el-icon-s-opportunity:before {
    content: "\e7aa"
}

.el-icon-s-custom:before {
    content: "\e7ab"
}

.el-icon-s-claim:before {
    content: "\e7ad"
}

.el-icon-s-finance:before {
    content: "\e7ae"
}

.el-icon-s-comment:before {
    content: "\e7af"
}

.el-icon-s-flag:before {
    content: "\e7b0"
}

.el-icon-s-marketing:before {
    content: "\e7b1"
}

.el-icon-s-shop:before {
    content: "\e7b4"
}

.el-icon-s-open:before {
    content: "\e7b5"
}

.el-icon-s-management:before {
    content: "\e7b6"
}

.el-icon-s-ticket:before {
    content: "\e7b7"
}

.el-icon-s-release:before {
    content: "\e7b8"
}

.el-icon-s-home:before {
    content: "\e7b9"
}

.el-icon-s-promotion:before {
    content: "\e7ba"
}

.el-icon-s-operation:before {
    content: "\e7bb"
}

.el-icon-s-unfold:before {
    content: "\e7bc"
}

.el-icon-s-fold:before {
    content: "\e7a9"
}

.el-icon-s-platform:before {
    content: "\e7bd"
}

.el-icon-s-order:before {
    content: "\e7be"
}

.el-icon-s-cooperation:before {
    content: "\e7bf"
}

.el-icon-bell:before {
    content: "\e725"
}

.el-icon-message-solid:before {
    content: "\e799"
}

.el-icon-video-camera:before {
    content: "\e772"
}

.el-icon-video-camera-solid:before {
    content: "\e796"
}

.el-icon-camera:before {
    content: "\e779"
}

.el-icon-camera-solid:before {
    content: "\e79b"
}

.el-icon-download:before {
    content: "\e77c"
}

.el-icon-upload2:before {
    content: "\e77b"
}

.el-icon-upload:before {
    content: "\e7c3"
}

.el-icon-picture-outline-round:before {
    content: "\e75f"
}

.el-icon-picture-outline:before {
    content: "\e75e"
}

.el-icon-picture:before {
    content: "\e79f"
}

.el-icon-close:before {
    content: "\e6db"
}

.el-icon-check:before {
    content: "\e6da"
}

.el-icon-plus:before {
    content: "\e6d9"
}

.el-icon-minus:before {
    content: "\e6d8"
}

.el-icon-help:before {
    content: "\e73d"
}

.el-icon-s-help:before {
    content: "\e7b3"
}

.el-icon-circle-close:before {
    content: "\e78d"
}

.el-icon-circle-check:before {
    content: "\e720"
}

.el-icon-circle-plus-outline:before {
    content: "\e723"
}

.el-icon-remove-outline:before {
    content: "\e722"
}

.el-icon-zoom-out:before {
    content: "\e776"
}

.el-icon-zoom-in:before {
    content: "\e777"
}

.el-icon-error:before {
    content: "\e79d"
}

.el-icon-success:before {
    content: "\e79c"
}

.el-icon-circle-plus:before {
    content: "\e7a0"
}

.el-icon-remove:before {
    content: "\e7a2"
}

.el-icon-info:before {
    content: "\e7a1"
}

.el-icon-question:before {
    content: "\e7a4"
}

.el-icon-warning-outline:before {
    content: "\e6c9"
}

.el-icon-warning:before {
    content: "\e7a3"
}

.el-icon-goods:before {
    content: "\e7c2"
}

.el-icon-s-goods:before {
    content: "\e7b2"
}

.el-icon-star-off:before {
    content: "\e717"
}

.el-icon-star-on:before {
    content: "\e797"
}

.el-icon-more-outline:before {
    content: "\e6cc"
}

.el-icon-more:before {
    content: "\e794"
}

.el-icon-phone-outline:before {
    content: "\e6cb"
}

.el-icon-phone:before {
    content: "\e795"
}

.el-icon-user:before {
    content: "\e6e3"
}

.el-icon-user-solid:before {
    content: "\e7a5"
}

.el-icon-setting:before {
    content: "\e6ca"
}

.el-icon-s-tools:before {
    content: "\e7ac"
}

.el-icon-delete:before {
    content: "\e6d7"
}

.el-icon-delete-solid:before {
    content: "\e7c9"
}

.el-icon-eleme:before {
    content: "\e7c7"
}

.el-icon-platform-eleme:before {
    content: "\e7ca"
}

.el-icon-loading {
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite
}
.el-icon--right {
    margin-left: 5px
}
.el-icon--left {
    margin-right: 5px
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0)
    }

    100% {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}



