@charset "UTF-8";
/**!
 * 新点商城
 * date:2021-11-6
 * author: gl;
 */
/* 定义颜色变量 */
/* 主色 */
/* 文字色 */
body {
	color: #333;
	background-color: #f7f5f5;
}

/* 通用样式 */
.box {
	padding: 20px;
	background-color: #fff;
	min-height: 500px;
}

.box-tt {
	position: relative;
	font-size: 22px;
	font-weight: 600;
	padding-left: 15px;
	line-height: 38px;
}

.box-tt:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 5px;
	height: 20px;
	transform: translateY(-50%);
	background-color: #ca1c24;
}

/* 左侧树 */
.tree {
	background-color: #fff;
	width: 200px;
	float: left;
}

.tree-items {
	padding: 15px 2px;
}

.tree-item {
	color: #5c5c5c;
}

.tree-tt {
	position: relative;
	display: block;
	font-size: 15px;
	height: 42px;
	line-height: 42px;
	padding: 0 30px 0 22px;
	cursor: pointer;
}

.tree-tt .iconfont {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 12px;
	height: 12px;
	margin-top: -6px;
	line-height: 12px;
	color: #999;
	font-weight: 600;
	transition: all .3s ease-in-out;
}

.sub-items {
	max-height: 0;
	transition: all 0.5s;
	overflow: hidden;
}

.sub-tt {
	display: block;
	color: inherit;
	line-height: 24px;
	padding: 9px 10px 9px 37px;
	font-size: 14px;
	transition: color .1s linear;
}

.sub-tt:hover {
	color: #ca1c24;
}

.sub-item.active .sub-tt {
	color: #fff;
	background-color: #ca1c24;
}

.tree-item.active .tree-tt {
	color: #ca1c24;
	background-color: rgba(202, 28, 36, 0.06);
}

.tree-item.active .tree-tt .icon-right {
	color: #ca1c24;
	transform: rotate(90deg);
}

.tree-item.active .sub-items {
	max-height: 500px;
}

/* 路径导航 */
.breadcrumb {
	padding: 8px 0;
	font-size: 0;
	line-height: 28px;
}

.breadcrumb>li {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #999;
}

.breadcrumb>li>a {
	display: inline-block;
	color: inherit;
	transition: color .1s linear;
}

.breadcrumb>li>a:hover {
	color: #333;
}

.breadcrumb>li+li:before {
	padding: 0 8px;
	content: "\3E";
}

.breadcrumb .active {
	color: #ca1c24;
}

/* 手风琴面板 */
.panel {
	padding: 0 15px;
}

.panel-hd {
	box-sizing: border-box;
	height: 34px;
	line-height: 33px;
	color: #ca1c24;
	margin-top: 15px;
	border-bottom: 1px solid #ca1c24;
	cursor: pointer;
}

.panel-tt {
	font-size: 16px;
	font-weight: 600;
}

.panel-hd .iconfont {
	width: 16px;
	height: 16px;
	line-height: 16px;
	margin-top: 10px;
	transition: all .2s ease-in-out;
}

.panel-hd.active .icon-up {
	transform: rotate(180deg);
}

/* 销售属性信息 */
.sale-tip {
	color: #5c5c5c;
	padding-top: 15px;
}

/* 单选  多选*/
.check-wrap {
	margin-left: -18px;
}

.check-wrap .check-box {
	display: inline-block;
	font-size: 15px;
	color: #5c5c5c;
	margin-left: 18px;
	margin-top: 10px;
	cursor: pointer;
}

.check-wrap .check-box input {
	cursor: pointer;
}

/* 美化单选 */
.radio input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.radio input[type="radio"]+.radio-label:before {
	content: '';
	border-radius: 100%;
	border: 1px solid #d6d6d6;
	display: inline-block;
	width: 16px;
	height: 16px;
	position: relative;
	top: 2px;
	margin-right: 5px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all .1s linear;
	transition: all .1s linear;
	background: #fff;
}

.radio input[type="radio"]:checked+.radio-label:before {
	background-color: #ca1c24;
	border-color: #ca1c24;
	box-shadow: inset 0 0 0 4px #fff;
}

.radio input[type="radio"]:focus+.radio-label:before {
	outline: none;
	border-color: #ca1c24;
}

.radio input[type="radio"]:disabled+.radio-label:before {
	box-shadow: inset 0 0 0 4px #f4f4f4;
	border-color: #b4b4b4;
	background: #f4f4f4;
}

.radio input[type="radio"]+.radio-label:empty:before {
	margin-right: 0;
}

/* 美化复选框 */
.multiple input[type="checkbox"] {
	opacity: 0;
	position: absolute;
}

.multiple input[type="checkbox"]+label>i {
	box-sizing: border-box;
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 1px solid #d6d6d6;
	background: #fff;
	margin-right: 5px;
	vertical-align: middle;
	border-radius: 3px;
	margin-top: -2px;
}

.multiple input[type="checkbox"]:checked+label>i {
	display: inline-block;
	line-height: 1;
	cursor: pointer;
	font-family: "ActionIcon" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	height: 16px;
	line-height: 16px;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	border-color: #ca1c24;
	transition: all 0.2s ease-out;
	background-color: #ca1c24;
}

.multiple input[type="checkbox"]:checked+label>i:before {
	content: "\e6e7";
}

/* 开关 */
.open-icon {
	position: relative;
	width: 32px;
	height: 16px;
	border-radius: 8px;
	background: #d6d6d6;
	cursor: pointer;
}

.open-icon .round-button {
	display: block;
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	background: #fff;
	left: 2px;
	top: 2px;
	cursor: pointer;
	transition: all .15s linear;
}

.open-icon.active {
	background-color: #ca1c24;
}

.open-icon.active .round-button {
	background-color: #fff;
	left: 18px;
}

/* 操作按钮 */
.opera-btn {
	box-sizing: border-box;
	display: inline-block;
	padding: 0 20px;
	height: 42px;
	line-height: 40px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 15px;
	vertical-align: top;
	transition: all .1s linear;
	cursor: pointer;
}

.opera-btn.disabled {
	opacity: 0.3;
}

.detailoperate {
	display: block;
	text-align: center;
}

.detailoperate a {
	font-size: 12px;
}

.detailoperate .iconfont {
	margin: 0 5px;
	color: #ca1c24;
}

.detailoperate-btn {
	height: 26px;
	line-height: 24px;
	padding: 0 5px;
	font-size: 12px;
	color: #ca1c24;
	border: 1px solid #ca1c24;
	background-color: #fff;
	box-sizing: border-box;
	display: block;
	border-radius: 2px;
	cursor: pointer;
	margin-top: 5px;
	margin-bottom: 5px;
	transition: background-color .15s linear;
}

.detailoperate-btn:hover {
	background-color: rgba(202, 28, 36, 0.06);
}

.operate-input {
	width: 100%;
}

.main-btn {
	color: #fff;
	border-color: #ca1c24;
	background-color: #ca1c24;
}

.minor-btn {
	color: #ca1c24;
	border-color: #ca1c24;
	background-color: #fff;
}

.semantics-btn {
	color: #f08200;
	border-color: #f08200;
	background-color: #fff;
}

.menu-btn {
	height: 34px;
	line-height: 32px;
}

/* 强提醒弹窗 */
.popup {
	height: 100%;
}

.popup body {
	height: 100%;
	background-color: transparent;
}

.remind-popup {
	text-align: center;
	padding-bottom: 20px;
	height: 100%;
	box-sizing: border-box;
}

.remind-content {
	height: calc(100% - 34px);
	padding: 0 20px;
	display: flex;
	align-items: center;
}

.remind-tip {
	box-sizing: border-box;
	font-size: 15px;
	color: #5c5c5c;
	padding-top: 64px;
	margin-top: 10px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center top;
}

.remind-tip.warnfill {
	background-image: url("../../images/control/icon-warnfill.png");
}

.remind-tip.success {
	background-image: url("../../images/control/icon-success.png");
}

.remind-tip.wrong {
	background-image: url("../../images/control/icon-wrong.png");
}

.remind-tt {
	font-size: 18px;
}

.remind-det {
	color: #999;
	padding-top: 5px;
}

.remind-popup .remind-btn>a {
	margin: 0 4px;
}

.content-popup {
	height: 100%;
}

.content-btn {
	height: 66px;
	justify-content: center;
	align-items: center;
	position: relative;
}

.content-btn a {
	margin: 0 6px;
}

.content-btn>div {
	width: 100%;
	margin-top: 35px;
	margin-bottom: 40px;
	text-align: center;
}

.btnfixed {
	position: fixed;
	bottom: 0;
	z-index: 1000;
}

.content-wrap {
	box-sizing: border-box;
	padding: 20px;
	height: calc(100% - 66px);
	overflow: auto;
}

.popup-default .layui-layer-title {
	padding-left: 20px;
	border-bottom: none;
	background-color: #f9f9f9;
}

.popup-default .layui-layer-setwin .layui-layer-close2 {
	background-position: 1px -40px;
	right: -4px;
	top: -4px;
	width: 16px;
	height: 16px;
	transition: all .2s linear;
}

.popup-default .layui-layer-setwin .layui-layer-close2:hover {
	opacity: 0.7;
	transform: rotate(180deg);
	background-position: 1px -40px;
}

.popup-default .layui-layer-setwin .layui-layer-close1 {
	transition: all .2s linear;
}

.popup-default .layui-layer-setwin .layui-layer-close1:hover {
	transform: rotate(180deg);
}

.popup-confirm .layui-layer-btn {
	text-align: center;
}

.popup-confirm .layui-layer-btn .layui-layer-btn0 {
	border-color: #ca1c24;
	background-color: #ca1c24;
}

/* 表单布局 */
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9,
	.col-10, .col-11, .col-12 {
	float: left;
	box-sizing: border-box;
}

.col-12 {
	width: 100%;
}

.col-11 {
	width: 91.66666667%;
}

.col-10 {
	width: 83.33333333%;
}

.col-9 {
	width: 75%;
}

.col-8 {
	width: 66.66666667%;
}

.col-7 {
	width: 58.33333333%;
}

.col-6 {
	width: 50%;
}

.col-5 {
	width: 41.66666667%;
}

.col-4 {
	width: 33.33333333%;
}

.col-3 {
	width: 25%;
}

.col-2 {
	width: 16.66666667%;
}

.col-1 {
	width: 8.33333333%;
}

.text-center {
	text-align: center;
}

input, textarea {
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #d6d6d6;
	background-color: #fff;
}

.select {
	display: none;
}

.form {
	padding-top: 15px;
}

.form-group {
	padding: 9px 0;
}

.form-group:before, .form-group:after {
	display: table;
	content: "";
}

.form-group:after {
	clear: both;
}

.form-group input {
	height: 34px;
	line-height: 1.5;
	padding: 0 10px 0 12px;
}

.form-group input:focus {
	border-color: #ca1c24;
}

.form-group input:disabled {
	background-color: #e8e8e8;
}

.form-group textarea:focus {
	border-color: #ca1c24;
}

.form-group .form-control {
	position: relative;
	/* 日期 */
}

.form-group .form-control .short {
	width: 70%;
}

.form-group .form-control .con {
	line-height: 35px;
}

.form-group .form-control .date-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	line-height: 16px;
	color: #afb2b8;
	pointer-events: none;
}

.form-group .form-control .add-icon {
	margin-top: 10px;
	margin-left: 5px;
	color: #999;
	cursor: pointer;
}

.form-group .form-control label.error {
	position: absolute;
	left: 5px;
	top: 100%;
	line-height: 18px;
	color: #ca1c24;
}

.form-group .form-control>input, .form-group .form-control>textarea {
	width: 100%;
}

.form-group .form-control.col-2, .form-group .form-control.col-4,
	.form-group .form-control.col-6, .form-group .form-control.col-8,
	.form-group .form-control.col-10 {
	padding-left: 5px;
}

.form-group .form-label {
	display: inline-block;
	text-align: right;
	padding-right: 5px;
	line-height: 34px;
	font-size: 15px;
	color: #5c5c5c;
}

.form-group .form-label.required {
	position: relative;
}

.form-group .form-label.required:after {
	position: absolute;
	top: 2px;
	content: "*";
	color: #ca1c24;
	font-size: 15px;
	font-weight: bold;
}

/* laydate 全局样式 */
.laydate-theme-skin.layui-laydate .layui-this {
	background-color: #ca1c24 !important;
}

.laydate-theme-skin .layui-laydate-header i:hover, .laydate-theme-skin .layui-laydate-header span:hover,
	.laydate-theme-skin .layui-laydate-footer span:hover,
	.laydate-theme-skin .layui-laydate-footer span[lay-type=date] {
	color: #ca1c24;
}

.laydate-theme-skin .layui-laydate-content td.laydate-selected,
	.laydate-selected:hover {
	background-color: rgba(202, 28, 36, 0.06) !important;
}

.laydate-theme-skin .laydate-selected.laydate-day-next,
	.laydate-theme-skin .laydate-selected.laydate-day-prev {
	color: #bdbdbd !important;
}

/* chosen */
.chosen-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.chosen-container * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.chosen-container .chosen-drop {
	position: absolute;
	top: 100%;
	z-index: 1010;
	width: 100%;
	border: 1px solid #ca1c24;
	background: #fff;
	clip: rect(0, 0, 0, 0);
}

.chosen-container.chosen-with-drop .chosen-drop {
	clip: auto;
}

.chosen-container a {
	cursor: pointer;
}

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name
	{
	margin-right: 4px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: normal;
	color: #999999;
}

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after
	{
	content: ":";
	padding-left: 2px;
	vertical-align: top;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
	position: relative;
	display: block;
	overflow: hidden;
	padding: 0 0 0 12px;
	height: 34px;
	border-radius: 4px;
	border: 1px solid #d6d6d6;
	background-color: #fff;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	line-height: 32px;
}

.chosen-container-single .chosen-default {
	color: #d6d6d6;
}

.chosen-container-single .chosen-single span {
	display: block;
	overflow: hidden;
	margin-right: 36px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.chosen-container-single .chosen-single-with-deselect span {
	margin-right: 38px;
}

.chosen-container-single .chosen-single div {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 34px;
	height: 100%;
}

.chosen-container-single .chosen-single div b {
	display: block;
	font-family: "ActionIcon" !important;
	font-size: 16px;
	display: inline-block;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	height: 100%;
	color: #999;
	text-align: center;
	transition: all .15s linear;
}

.chosen-container-single .chosen-single div b:before {
	content: "\e7b2";
}

.chosen-container-single .chosen-search {
	position: relative;
	z-index: 1010;
	margin: 0;
	padding: 3px 4px;
	white-space: nowrap;
}

.chosen-container-single .chosen-search input[type="text"] {
	margin: 1px 0;
	padding: 4px 20px 4px 5px;
	width: 100%;
	height: auto;
	outline: 0;
	border: 1px solid #d6d6d6;
	border-radius: 4px;
}

.chosen-container-single .chosen-drop {
	margin-top: -1px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search
	{
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

.chosen-container .chosen-results {
	float: left;
	width: 100%;
	color: #444;
	position: relative;
	overflow-x: hidden;
	overflow-y: auto;
	margin: 0 4px 4px 0;
	padding: 0 0 0 4px;
	max-height: 240px;
	-webkit-overflow-scrolling: touch;
}

.chosen-container .chosen-results li {
	display: none;
	margin: 0;
	padding: 5px 6px;
	list-style: none;
	line-height: 15px;
	word-wrap: break-word;
	-webkit-touch-callout: none;
}

.chosen-container .chosen-results li.active-result {
	display: list-item;
	cursor: pointer;
}

.chosen-container .chosen-results li.disabled-result {
	display: list-item;
	color: #ccc;
	cursor: default;
}

.chosen-container .chosen-results li.highlighted {
	background-color: #ca1c24;
	color: #fff;
}

.chosen-container .chosen-results li.no-results {
	color: #777;
	display: list-item;
	background: #f4f4f4;
}

.chosen-container .chosen-results li.group-result {
	display: list-item;
	font-weight: bold;
	cursor: default;
}

.chosen-container .chosen-results li.group-option {
	padding-left: 15px;
}

.chosen-container .chosen-results li em {
	font-style: normal;
	text-decoration: underline;
}

.chosen-container-active.chosen-with-drop .chosen-single {
	border: 1px solid #ca1c24;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}

.chosen-container-active.chosen-with-drop .chosen-single div {
	border-left: none;
	background: transparent;
}

.chosen-container-active.chosen-with-drop .chosen-single div b {
	transform: rotate(180deg);
}

.chosen-container-active .chosen-choices {
	border: 1px solid #333;
}

.chosen-container-active .chosen-choices li.search-field input[type="text"]
	{
	color: #222 !important;
}

.chosen-disabled {
	opacity: 0.5 !important;
	cursor: default;
}

.chosen-disabled .chosen-single {
	cursor: default;
}

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
	cursor: default;
}

.chosen-rtl {
	text-align: right;
}

.chosen-rtl .chosen-single {
	overflow: visible;
	padding: 0 8px 0 0;
}

.chosen-rtl .chosen-single span {
	margin-right: 0;
	margin-left: 26px;
	direction: rtl;
}

.chosen-rtl .chosen-single-with-deselect span {
	margin-left: 38px;
}

.chosen-rtl .chosen-single div {
	right: auto;
	left: 3px;
}

.chosen-rtl .chosen-single abbr {
	right: auto;
	left: 26px;
}

.chosen-rtl .chosen-choices li {
	float: right;
}

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
	direction: rtl;
}

.chosen-rtl .chosen-choices li.search-choice {
	margin: 3px 5px 3px 0;
	padding: 3px 5px 3px 19px;
}

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
	right: auto;
	left: 4px;
}

.chosen-rtl.chosen-container-single .chosen-results {
	margin: 0 0 4px 4px;
	padding: 0 4px 0 0;
}

.chosen-rtl .chosen-results li.group-option {
	padding-right: 15px;
	padding-left: 0;
}

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div
	{
	border-right: none;
}

.chosen-rtl .chosen-search input[type="text"] {
	padding: 4px 5px 4px 20px;
	direction: rtl;
}

/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	padding: 3.5px 10px 3.5px 12px;
	border-radius: 4px;
	border: 1px solid #d6d6d6;
	background-color: #fff;
	cursor: text;
	cursor: pointer;
}

.chosen-container-multi.chosen-container-active .chosen-choices {
	border-color: #ca1c24;
}

.chosen-container-multi .chosen-choices li {
	float: left;
	list-style: none;
}

.chosen-container-multi .chosen-choices li.search-field {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

.chosen-container-multi .chosen-choices li.search-field input[type="text"]
	{
	height: 25px;
	line-height: 25px;
	color: #d6d6d6;
	border: none;
	padding: 0;
	cursor: pointer;
}

.chosen-container-multi.chosen-container-active .chosen-drop {
	margin-top: -3px;
	border-radius: 0 0 4px 4px;
	background-clip: padding-box;
}

.chosen-container-multi .chosen-choices li.search-choice {
	position: relative;
	margin: 3px 5px 3px 0;
	padding: 3px 20px 3px 5px;
	border: 1px solid #aaa;
	max-width: 100%;
	border-radius: 3px;
	background-color: #eeeeee;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #f4f4f4),
		color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), to(#eee));
	background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
	background-size: 100% 19px;
	background-repeat: repeat-x;
	background-clip: padding-box;
	-webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
	color: #333;
	line-height: 13px;
	cursor: default;
}

.chosen-container-multi .chosen-choices li.search-choice span {
	word-wrap: break-word;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close
	{
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 3px;
	display: block;
	width: 10px;
	height: 10px;
	line-height: 10px;
	transform: translateY(-50%);
	transition: all .15s linear;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:before
	{
	content: "×";
	display: inline-block;
	vertical-align: top;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover
	{
	color: #ca1c24;
}

.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: #d4d4d4;
}

.chosen-container-multi .chosen-drop .result-selected {
	display: list-item;
	color: #ccc;
	cursor: default;
}

/* 营业执照 */
.license {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.license-img {
	width: 999px;
	height: 706px;
}

.layui-layer.license-skin {
	box-shadow: none;
	background-color: transparent;
}

.layui-layer.license-skin .layui-layer-setwin .layui-layer-close2 {
	width: 50px;
	height: 50px;
	right: -14px;
	top: -12px;
	background: url("../images/popup_close2.png") no-repeat center;
}

/* 订单确认 */
.content {
	box-sizing: border-box;
	float: right;
	width: 985px;
	min-height: 750px;
}

.backoperate {
	color: #5c5c5c;
}

.search-area {
	position: relative;
	margin-top: 2px;
	width: 240px;
}

.search-area .search-input {
	width: 100%;
	height: 34px;
	padding: 0 40px 0 12px;
}

.search-area .search-icon {
	position: absolute;
	width: 17px;
	height: 16px;
	top: 50%;
	right: 11px;
	color: #c3c3c3;
	font-size: 17px;
	transform: translateY(-50%);
}

.order-items {
	height: 32px;
	line-height: 30px;
	margin-top: 15px;
	margin-bottom: 32px;
}

.order-item {
	position: relative;
	font-size: 15px;
	cursor: pointer;
}

.order-item>span {
	color: #333;
	float: left;
	border-bottom: 2px solid transparent;
}

.order-item .num {
	float: left;
	min-width: 15px;
	padding: 0 3px;
	box-sizing: border-box;
	height: 15px;
	line-height: 15px;
	font-size: 12px;
	text-align: center;
	color: #fff;
	font-style: normal;
	border-radius: 15px;
	background-color: #ca1c24;
}

.order-item.active>span {
	color: #ca1c24;
	border-bottom-color: #ca1c24;
}

.order-item+.order-item {
	margin-left: 30px;
}

table {
	width: 100%;
	table-layout: fixed;
}

.content .order-block {
	margin-top: 16px;
}

.order-title {
	box-sizing: border-box;
	height: 47px;
	line-height: 46px;
	padding-left: 16px;
	border: 1px solid #e7e7e7;
	border-bottom: none;
	background-color: #f5f5f5;
}

.order-title>p {
	float: left;
	margin-right: 36px;
	color: #999;
}

.order-title .order-dark {
	color: #5c5c5c;
}

.order-table tr th {
	box-sizing: border-box;
	height: 48px;
	font-size: 15px;
	color: #888;
	padding-left: 16px;
	background-color: #f7f5f5;
}

.order-table tr .w0 {
	padding-left: 0;
	padding-right: 0;
}

.order-table tr .w1 {
	width: 310px;
}

.order-table tr .w2 {
	width: 100px;
}

.order-table tr .w3 {
	width: 70px;
}

.order-table tr .w4 {
	width: 103px;
}

.order-table tr .w5 {
	width: 144px;
}

.order-table tr .w6 {
	width: 125px;
}

.order-table tr .w7 {
	width: 96px;
}

.order-table tr .w8 {
	width: 410px;
}

.order-table tr .w9 {
	width: 465px;
}

.order-table tr td {
	box-sizing: border-box;
	padding: 16px 16px;
	min-height: 103px;
	line-height: 24px;
	color: #5c5c5c;
	vertical-align: top;
	border: 1px solid #e7e7e7;
}

.order-table tr td .wait {
	color: #f9880f;
}

.order-table tr td.w4, .order-table tr td.w5, .order-table tr td.w6,
	.order-table tr td.w7 {
	display: none;
}

.order-con {
	box-sizing: border-box;
	padding-left: 16px;
}

.cart-img {
	width: 68px;
	height: 68px;
	border: 1px solid #ededed;
	margin-right: 10px;
}

.cart-img-img {
	width: 100%;
	height: 100%;
}

.cart-name {
	width: calc(100% - 80px);
	color: inherit;
	transition: color .15s linear;
}

.cart-name:hover {
	color: #ca1c24;
}

.pay-type {
	position: relative;
	color: #aaa;
	line-height: 35px;
	padding-bottom: 2px;
}

.pay-type:before {
	position: absolute;
	content: "";
	height: 1px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #e7e7e7;
}

.contract {
	color: #aaa;
	line-height: 35px;
}

.order-det {
	cursor: pointer;
	color: inherit;
	transition: color .15s linear;
}

.order-det:hover {
	color: #ca1c24;
}

.return-btn {
	font-size: 14px;
	height: 26px;
	line-height: 24px;
	padding: 0 12px;
	margin-top: 5px;
}

.order-reason>p {
	line-height: 18px;
	margin-top: 3px;
}

.order-btns {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.order-btns>a {
	color: #aaa;
	margin-top: 2px;
}

.order-btns>a:first-child {
	margin-top: 0;
}

.order-return {
	background-color: #fbfbfb;
}

.return-hd {
	height: 33px;
	line-height: 33px;
	padding: 0 15px;
	border-left: 1px solid #e7e7e7;
	border-right: 1px solid #e7e7e7;
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: -1px;
	cursor: pointer;
}

.return-hd.active .icon-down {
	transform: rotate(180deg);
}

.content .order-block .iconfont {
	width: 16px;
	height: 16px;
	line-height: 16px;
	margin-top: 10px;
	color: #999;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

/* 分页  */
ul {
	margin: 0;
	padding: 0;
}

.m-pagination {
	margin: 10px 0;
	height: 38px;
}

.m-pagination-page, .m-pagination-info, .m-pagination-size,
	.m-pagination-jump {
	float: left;
	margin-top: 2px;
	padding-right: 10px;
}

.m-pagination-jump {
	padding-right: 0;
	width: 73px;
}

/* font */
.m-pagination-page>li>a, .m-pagination-size>select, .m-pagination-group>input,
	.m-pagination-group>button, .m-pagination-info {
	font-size: 14px;
	color: #888;
}

/* border */
.m-pagination-page>li>a, .m-pagination-size>select, .m-pagination-group>input,
	.m-pagination-group>button {
	outline: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-khtml-user-select: none;
	border: 1px solid #dedede;
}

/* button */
.m-pagination-page>li>a, .m-pagination-group>button {
	cursor: pointer;
	background-color: #fff;
}

.m-pagination-page>li:hover>a, .m-pagination-group>button:hover {
	border-color: #ca1c24;
}

.m-pagination-page>li.active>a {
	font-weight: bold;
	border-color: #ca1c24;
	color: #fff;
	background-color: #ca1c24;
}

.m-pagination-page>li {
	list-style: none;
	float: left;
	margin-right: 5px;
}

.m-pagination-page>li>a {
	height: 28px;
	line-height: 28px;
	display: inline-block;
	padding: 0 10px;
	text-decoration: none;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.m-pagination-page>li:first-child>a {
	margin-left: 0;
}

.m-pagination-size>select {
	cursor: pointer;
	height: 30px;
	padding: 0 8px;
}

.m-pagination-group>input, .m-pagination-group>button {
	float: left;
}

.m-pagination-group>input {
	border-right: none;
	width: 40px;
	height: 28px;
	padding: 0;
	text-align: center;
	box-sizing: content-box;
	border-radius: 0;
}

.m-pagination-group>button {
	height: 30px;
	padding: 0 5px;
}

.m-pagination-info {
	padding-right: 0;
	padding-left: 10px;
	height: 36px;
	line-height: 36px;
}

.pager {
	margin-top: 20px;
	text-align: center;
}

.m-pagination-page, .m-pagination-info, .m-pagination-size,
	.m-pagination-jump {
	float: none;
	margin-top: 0;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: top;
}

.m-pagination-info {
	height: 26px;
	line-height: 26px;
}

.m-pagination-info>span {
	margin: 0 5px;
	font-weight: bold;
	color: #ca1c24;
}

.mt16 {
	margin-top: 16px;
}

/* 供应商 */
.survey-wrap {
	margin-top: 15px;
}

.survey-l {
	box-sizing: border-box;
	border-radius: 4px;
	width: calc(100% - 326px);
	min-height: 250px;
	padding: 22px 20px;
	background-color: #f9f9f9;
}

.survey-item {
	float: left;
	height: 102px;
	width: 25%;
	font-size: 15px;
	color: #5c5c5c;
	text-align: center;
	box-sizing: border-box;
	border-bottom: 1px solid #ececec;
	border-left: 1px solid #ececec;
}

.survey-item .icon {
	color: #ca1c24;
	font-size: 32px;
	height: 38px;
}

.survey-item .survery-num {
	padding-top: 6px;
}

.survey-item:nth-child(4n+1):nth-last-child(-n+4), .survey-item:nth-child(4n+1):nth-last-child(-n+4) 
	~ .survey-item {
	border-bottom: none;
}

.survey-item:nth-child(n+5) {
	padding-top: 16px;
}

.survey-item:nth-child(4n+1) {
	border-left: none;
}

.survey-r {
	box-sizing: border-box;
	width: 306px;
	height: 250px;
	padding: 22px 22px 0;
	background-color: #f9f9f9;
}

.survey-person {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
}

.survey-person>img {
	display: block;
	width: 100%;
	height: 100%;
}

.survey-name {
	font-size: 16px;
	text-align: center;
	margin-top: 10px;
}

.survey-name>span {
	box-sizing: border-box;
	max-width: 100%;
	display: inline-block;
	padding-right: 17px;
	background: url("../images/person_ico.png") no-repeat right center;
}

.survey-info {
	margin-top: 18px;
}

.survey-list {
	position: relative;
	padding-left: 10px;
	height: 32px;
	line-height: 32px;
	font-size: 15px;
	color: #5c5c5c;
	overflow: hidden;
}

.survey-list:before {
	position: absolute;
	content: "";
	left: 0;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	transform: translateY(-50%);
	background-color: #ca1c24;
}

.survery-num>span {
	color: #ca1c24;
	margin-right: 3px;
	font-weight: 600;
	letter-spacing: -1px;
	font-size: 16px;
}

.survey-det {
	height: 86px;
	box-sizing: border-box;
	padding: 13px 0;
	margin-top: 25px;
	background-color: #fff;
}

.survey-det-item {
	position: relative;
	float: left;
	text-align: center;
	width: 50%;
	height: 100%;
}

.survey-det-item:first-child:before {
	position: absolute;
	content: "";
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: #ececec;
}

.survey-det-item .num {
	font-size: 17px;
	color: #ca1c24;
	font-weight: 600;
	padding-top: 7px;
}

.survey-det-item .name {
	color: #5c5c5c;
	font-size: 15px;
	padding-top: 6px;
}

/* 竞价公告 */
.box-more {
	position: relative;
	font-size: 13px;
	color: #b1b1b1;
	padding-right: 10px;
	margin-top: 10px;
	transition: color .15s linear;
}

.box-more:hover {
	color: #ca1c24;
}

.box-more:before {
	position: absolute;
	content: "\00BB";
	right: 0;
	top: -1px;
}

.notice {
	margin-top: 5px;
}

.notice .tab-hd {
	height: 40px;
	line-height: 38px;
}

.notice .tab-hd li {
	float: left;
	margin-left: 22px;
}

.notice .tab-hd li:first-child {
	margin-left: 12px;
}

.notice .tab-hd li>a {
	display: block;
	padding: 0 3px;
	font-size: 17px;
	color: #999;
	border-bottom: 2px solid transparent;
}

.notice .tab-hd li.active>a {
	color: #ca1c24;
	font-weight: 600;
	border-bottom-color: #ca1c24;
}

.tab-bd {
	height: 261px;
}

.bdl {
	display: none;
}

/* 列表 */
.list-group {
	padding-top: 6px;
}

.list-group-item {
	position: relative;
	padding: 12px 15px;
	padding-right: 120px;
	font-size: 15px;
	line-height: 26px;
	border-bottom: 1px dashed #e5e5e5;
	transition: background-color .15s linear;
}

.list-group-item a {
	box-sizing: border-box;
	display: inline-block;
	position: relative;
	vertical-align: top;
	max-width: 100%;
	color: #5c5c5c;
	transition: color .15s linear;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list-group-item a:hover, .list-group-item a:hover+.badge {
	color: #ca1c24;
}

.list-group-item:hover {
	background-color: rgba(202, 28, 36, 0.06);
}

.list-group-item.new>a {
	padding-right: 55px;
}

.list-group-item.new>a:after {
	box-sizing: border-box;
	position: absolute;
	content: "置顶";
	top: 0;
	right: 0;
	font-size: 14px;
	padding: 0 8px;
	height: 24px;
	line-height: 22px;
	color: #ca1c24;
	border: 1px solid #ca1c24;
	background-color: rgba(202, 28, 36, 0.06);
	border-radius: 2px;
	cursor: default;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.list-group-item>.badge {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #999;
	transition: color .15s linear;
}

/* 常规表格 */
.gridtable {
	width: 100%;
	font-size: 15px;
	table-layout: fixed;
}

.gridtable thead {
	background: #f7f7f7;
}

.gridtable thead th {
	box-sizing: border-box;
	height: 48px;
	padding: 0 10px;
}

.gridtable tbody tr {
	cursor: pointer;
	background-color: #fff;
}

.gridtable tbody tr td {
	box-sizing: border-box;
	padding: 0 10px;
	height: 51px;
	border-bottom: 1px dashed #e0e0e0;
}

.gridtable tbody tr td .check-style {
	position: relative;
	width: 21px;
	height: 20px;
	overflow: hidden;
}

.gridtable tbody tr:hover {
	background: rgba(202, 28, 36, 0.06);
}

.gridtable .dot {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* 搜索联级树 */
.filter-box {
	border: none;
}

.filter-con1 {
	background: none;
}

.filter-con1 .filter-list {
	padding-left: 100px;
}

.filter-con1 .filter-list>li {
	margin-right: -1px;
}

.filter-con1 .filter-item .filter-input {
	position: relative;
}

.filter-con1 .filter-item .filter-input input {
	font-size: 14px;
	width: 100%;
	box-sizing: border-box;
	padding: 0 42px 0 10px;
}

.filter-con1 .filter-item .filter-input i {
	position: absolute;
	width: 17px;
	height: 16px;
	top: 50%;
	right: 11px;
	color: #c3c3c3;
	font-size: 17px;
	transform: translateY(-50%);
	font-family: "ActionIcon" !important;
	margin: 0;
	display: inline-block;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: none;
}

.filter-con1 .filter-item .filter-input i:before {
	content: "\e6ec";
}

.filter-con1 .cate-wrap .cate-item {
	font-size: 14px;
	height: 26px;
	line-height: 24px;
}

.filter-con1 .cate-wrap .cate-item:hover, .filter-con1 .cate-wrap .cate-item.active
	{
	background-color: rgba(202, 28, 36, 0.06);
}

.filter-curr {
	background-color: rgba(202, 28, 36, 0.06);
	border: 1px solid #ca1c24;
}

.filter-curr i {
	top: -6px;
	background: none;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 4px 5px 4px;
	border-color: transparent transparent #ca1c24 transparent;
}

/* 地址选择联动 */
.address-list {
	margin-bottom: 0;
}

.layer-address {
	margin: 0;
	padding: 20px 0 0 30px;
}

.area-bd-item span:hover {
	color: #ca1c24;
}

/* 地区联动控件 */
.linkage {
	padding: 20px;
	font-size: 15px;
}

.linkage>div {
	width: calc(50% - 9px);
}

.linkage .linkage-tt {
	height: 34px;
	color: #ca1c24;
}

.linkage .linkage-tt>span {
	display: inline-block;
	height: 34px;
	line-height: 34px;
	vertical-align: top;
	font-size: 15px;
	padding: 0 19px;
	border-radius: 4px 4px 0 0;
	border: 1px solid #d6d6d6;
	border-bottom: none;
	background-color: #fff;
}

.linkage-bd {
	box-sizing: border-box;
	border-radius: 0 4px 4px 4px;
	height: 379px;
	padding: 16px 0;
	border: 1px solid #d6d6d6;
	background-color: #fff;
}

.linkage-bd .search-area {
	margin: 0 16px;
	width: auto;
}

.linkage-bd .delect-wrap {
	box-sizing: border-box;
	height: 34px;
	line-height: 33px;
	margin: 0 16px;
	text-align: right;
	border-bottom: 1px solid #e0e0e0;
}

.linkage-bd .delect-wrap .iconfont {
	font-size: 18px;
	color: #888;
}

.ztree {
	box-sizing: border-box;
	height: calc(100% - 34px);
	padding: 10px 16px 0;
	color: #5c5c5c;
	overflow: auto;
}

.ztree ul {
	padding-left: 22px;
}

.ztree li {
	line-height: 28px;
	white-space: nowrap;
	outline: 0;
}

.ztree li a {
	height: 30px;
	line-height: 30px;
	color: inherit;
	vertical-align: top;
	display: inline-block;
}

.ztree li span.button {
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	outline: none;
	font-family: "ActionIcon" !important;
	font-size: 18px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ztree li span.button.chk {
	margin: 0 6px 0 0;
	color: #ca1c24;
}

.ztree li span.button.chk:before {
	content: "\e725";
}

.ztree li span.button.chk.checkbox_false_full {
	color: #d6d6d6;
}

.ztree li span.button.chk.chk.checkbox_true_disable, .ztree li span.button.chk.chk.checkbox_false_disable,
	.ztree li span.button.chk.chk.checkbox_false_part, .ztree li span.button.chk.chk.checkbox_false_part_focus
	{
	color: #eee;
}

.ztree li span.button.chk.checkbox_true_disable:before, .ztree li span.button.chk.checkbox_true_full_focus:before,
	.ztree li span.button.chk.checkbox_true_full:before {
	content: "\e6f6";
}

.ztree li span.button.chk.checkbox_false_part:before, .ztree li span.button.chk.checkbox_false_part_focus:before,
	.ztree li span.button.chk.checkbox_true_part:before, .ztree li span.button.chk.checkbox_true_part_focus:before
	{
	content: "\e721";
}

.ztree li span.button.noline_open, .ztree li span.button.noline_close {
	margin-right: 5px;
	width: 0;
	height: 0;
	border-style: solid;
}

.ztree li span.button.noline_open {
	border-width: 5px 4px 0 4px;
	border-color: #b6b6b6 transparent transparent transparent;
}

.ztree li span.button.noline_close {
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent #b6b6b6;
}

.linkage-items {
	box-sizing: border-box;
	height: calc(100% - 34px);
	padding: 10px 2px 0;
	overflow: auto;
}

.linkage-item {
	position: relative;
	line-height: 30px;
	padding: 0 30px 0 14px;
	color: #5c5c5c;
	transition: background-color .15s linear;
}

.linkage-item .name {
	display: block;
}

.linkage-item .linkage-remove {
	display: none;
	position: absolute;
	right: 16px;
	top: 50%;
	width: 15px;
	height: 15px;
	line-height: 15px;
	font-style: normal;
	font-size: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}

.linkage-item .linkage-remove:before {
	position: absolute;
	content: "×";
}

.linkage-item:hover {
	background-color: rgba(202, 28, 36, 0.06);
}

.linkage-item:hover .linkage-remove {
	display: block;
}

.ztree li span.button.chk.radio_false_full:before, .ztree li span.button.chk.radio_false_full_focus:before
	{
	content: "\e671";
}

.ztree li span.button.chk.radio_false_part:before, .ztree li span.button.chk.radio_false_part_focus:before,
	.ztree li span.button.chk.radio_true_part:before, .ztree li span.button.chk.radio_true_part_focus:before,
	.ztree li span.button.chk.radio_false_disable:before, .ztree li span.button.chk.radio_true_disable:before
	{
	content: "\e692";
}

.ztree li span.button.chk.radio_true_full:before, .ztree li span.button.chk.radio_true_full_focus:before
	{
	content: "\e692";
}

.ztree li span.button.chk.radio_false_disable, .ztree li span.button.chk.radio_true_disable
	{
	color: #eee;
}

/* 上传组件css*/
.webuploader-container {
	width: 603px;
	position: relative;
}

.webuploader-element-invisible {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

.webuploader-pick {
	position: relative;
	display: inline-block;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
}

.webuploader-pick-disable {
	opacity: 0.6;
	pointer-events: none;
}

.webuploader-element-invisible {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	/* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
}

/*上传自定义css */
.upload-node {
	padding: 16px 0;
}

.upload-node .progress {
	position: absolute;
	bottom: -13px;
	right: 0;
	left: 0;
	height: 12px;
	border-radius: 7px;
	background: #ecf1fb;
}

.upload-node .progress-bar {
	background-color: #ca1c24;
	height: 12px;
	line-height: 12px;
	border-radius: 7px;
	text-align: center;
	font-size: 12px;
	color: #fff;
}

.upload-list .upload-tip {
	color: #ca1c24;
	line-height: 34px;
	margin-left: 9px;
}

.upload-list .upload-btn {
	width: 100px;
	padding: 0;
	height: 34px;
	line-height: 32px;
	text-align: center;
}

.upload-list .webuploader-pick {
	width: auto;
	color: #fff;
	text-decoration: none;
}

.upload-list .file-list {
	margin-left: -16px;
	font-size: 0;
	-webkit-text-size-adjust: none;
}

.upload-list .file-item {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 16px 0 0 16px;
	font-size: 14px;
	width: 156px;
	padding: 5px 10px;
	height: 57px;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	background-color: #fff;
}

.upload-list .file-name {
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.upload-list .file-info {
	height: 27px;
	line-height: 27px;
	font-size: 13px;
	text-align: right;
}

.upload-list .file-info>a {
	margin-left: 5px;
	color: #333;
}

.upload-list .file-info>a:hover {
	color: #ca1c24;
}

.thumbnail-list {
	margin-left: -16px;
}

.thumbnail-list .thumbnail-item, .thumbnail-list .upload-item {
	float: left;
	margin-left: 16px;
}

.thumbnail-list .thumbnail-mod, .thumbnail-list .upload-mod {
	width: 140px;
	height: 140px;
	position: relative;
}

.thumbnail-list .thumbnail-tip {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	line-height: 24px;
	background-color: rgba(202, 28, 36, 0.06);
}

.thumbnail-list .thumbnail-mod {
	text-align: center;
}

.thumbnail-list .thumbnail-mod .file-down, .thumbnail-list .thumbnail-mod .file-view
	{
	color: #333;
	margin: 0 10px;
	vertical-align: top;
	padding: 0 8px;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: #fff;
	margin-top: 120px;
	background-color: #ca1c24;
	display: none;
}

.thumbnail-list .thumbnail-mod img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.thumbnail-list .thumbnail-mod:hover .file-down, .thumbnail-list .thumbnail-mod:hover .file-view
	{
	display: inline-block;
}

.thumbnail-list .upload-mod:hover .thumbnail-tip {
	display: block;
}

.thumbnail-list .webuploader-pick {
	width: 140px;
}

.thumbnail-list .thumbnail-btn {
	width: 140px;
}

.thumbnail-list .file-del {
	position: absolute;
	right: -10px;
	top: -10px;
	width: 22px;
	height: 22px;
	font-size: 0;
	background: url("../../images/control/upload_ico.png") no-repeat;
	z-index: 1;
}

/* 搜索树 */
.ztree-wrap {
	position: relative;
	height: 32px;
	line-height: 30px;
}

.ztree-ipt-wrap {
	position: relative;
	height: 30px;
}

.ztree-ipt {
	position: relative;
	width: 100%;
	height: 30px;
	padding: 0 25px 0 10px;
	outline: none;
	cursor: pointer;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.ztree-icon {
	position: absolute;
	right: 10px;
	top: 0;
	color: #ca1c24;
	transition: all .1s linear;
}

.ztree-wrap.open .ztree-icon {
	transform: rotate(180deg);
}

.ztree-wrap.open .ztree-ipt {
	border-radius: 4px 4px 0 0;
}

.ztree-box {
	position: absolute;
	box-sizing: border-box;
	z-index: 2;
	width: 100%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ca1c24;
	border-top: none;
	display: none;
	padding: 5px;
	margin-top: 4px;
}

.ztree-ul {
	max-height: 200px;
	overflow: auto;
	padding: 0;
	height: auto;
}

.ztree-serach {
	position: relative;
	border: 1px solid #ccc;
	height: 34px;
	line-height: 24px;
	margin-bottom: 5px;
}

.ztree-serach-ipt {
	height: 100%;
	outline: none;
	width: 100%;
	padding: 0 32px 0 10px;
	border: none;
}

.ztree-serach-btn {
	position: absolute;
	right: 10px;
	top: 5px;
	color: #ca1c24;
}

/*# sourceMappingURL=page.css.map */