/**
 * 
 * pz.web.css
 * 
 * 通用css
 * 
 * @package: 
 * @author:	gaus
 * @date：	2024.4.16
 * 
 * 
 * http://www.pingzhun.cc
 */



/**************************** 响应式隐藏显示 ********************************/


/*2.3 响应式隐藏显示
Name:        hui-visible
Explain:     左右两栏|左中右三栏|上中下
*/
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
td.visible-xs {
    display: table-cell !important;
  }

  .hidden-xs {
    display: none !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
td.visible-sm {
    display: table-cell !important;
  }

  .hidden-sm {
    display: none !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
td.visible-md {
    display: table-cell !important;
  }

  .hidden-md {
    display: none !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
td.visible-lg {
    display: table-cell !important;
  }

  .hidden-lg {
    display: none !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
td.visible-print {
    display: table-cell !important;
  }

  .visible-print-block {
    display: block !important;
  }

  .visible-print-inline {
    display: inline !important;
  }

  .visible-print-inline-block {
    display: inline-block !important;
  }

  .hidden-print {
    display: none !important;
  }
}


body {
    font-family: 微软雅黑;
    font-size: 12px;
}

body a:hover,
body a:active {
    text-decoration: none;
}

/**************************** h5侧滑菜单 ********************************/


.sidemenu {
	position: absolute;
	top: 44px;
	right: 0;
	z-index: 998;
	opacity: 1;
	display: none;
	width: 220px;
	height: 100%;
	background-color: #333;
}

.sidemenu-title {
	line-height: 2;
	font-size: 15px;
	color: #efefef;
	font-weight: 700;
	padding: 15px;
}

.sidemenu-ul {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.sidemenu-ul .sidemenu-li {
	position: relative;
	display: flex;
	align-items: center;
	padding: 12px 15px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
}

.sidemenu-ul .sidemenu-li::after {
	content: ">";
	font-size: 15px;
	font-family: iconfont!important;
	font-size: inherit;
	line-height: 1;
	right: 10px;
	position: absolute;
	top: 50%;
	display: inline-block;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	text-decoration: none;
	color: #666;
	-webkit-font-smoothing: antialiased;
}

.mask {
	background-color: #000;
	opacity: 0.3;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 997;
	display: none;
}


/**************************** 布局属性 ********************************/

.box {
	display: block;
	overflow: hidden;
}

.row {
	display: block;
	overflow: hidden;
}


.cl:after,
.clearfix:after {
	content: "\20";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

.cl,
.clearfix {
	zoom: 1
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline-flex {
	display: inline-flex;
}

.hide {
	display: none;
}

/* 顶部固定,去掉header 44px */
.nav-fixed {
	position: fixed;
	top: 44px;
	left: 0;
	width: 100%;
	z-index: 99;
}


/**************************** flex属性 ********************************/

.flex {
	display: flex;
}

.flex-1 {
	flex: 1
}

.flex-full {
	width: 100%;
}

.flex-end {
	justify-content: flex-end;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-between {
	align-items: center;
	justify-content: space-between;
}

.flex-start {
	justify-content: flex-start;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around
}

/* 相当于float right */
.justify-end {
	justify-content: flex-end
}

.align-center {
	align-items: center;
}

.align-end {
	align-items: flex-end;
}

.align-start {
	align-items: flex-start;
}

/* 绝对居中，需要外围元素设置relative */
.absolute-center {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
}

/**************************** 元素属性 ********************************/

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fr {
	float: right;
}

.fl {
	float: left;
}

.text-c {
	text-align: center;
}

.text-l {
	text-align: left;
}

.text-r {
	text-align: right;
}

/*文本首行左缩进2个字符宽度,用于中文*/
.text-i {
	text-indent: 2em;
}


.radius {
	border-radius: 3px;
}

.round {
	border-radius: 500px;
}

.circle {
	border-radius: 50%;
}

.bottom {
	border-bottom: 1px solid rgba(143, 143, 143, 0.1);
}

.bottom-dot {
	border-bottom: 1px dashed rgba(0,0,0,.1);
}

.rotate {
	transform: rotate(15deg);
	-ms-transform: rotate(15deg);
	-moz-transform: rotate(15deg);
	-webkit-transform: rotate(15deg);
	-o-transform: rotate(15deg);
}

.iconfont.rotate180,
.rotate180 {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}


/* 没有数据显示 */
.no-data {
	margin: 10px;
	background-color: #fff;
	border-radius: 5px;
	font-size: 14px;
	color: #ccc;
	padding: 15px;
	/* text-shadow: 1px 1px 2px #efefef; */
}

/* 加载更多数据 */
.more-data {
	font-size: 13px;
	color: #576B95;
	/* color: #29A2D3; */
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px;
}


/**************************** 文本块样式 ********************************/

.strong {
	font-weight: 700;
}

.underline {
	text-decoration: underline;
}

.italic {
	font-style: italic;
}


.readonly {
	background-color: #999;
}

.line-1,
.line-2,
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	white-space: normal !important;
	text-overflow: ellipsis;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
}

.line-1 {
	-webkit-line-clamp: 1;
}

.line-2 {
	-webkit-line-clamp: 2;
}

.line-3 {
	-webkit-line-clamp: 3;
}


/**************************** 段间属性 ********************************/

.lh-10 {
	line-height: 1;
}

.lh-12 {
	line-height: 1.2;
}

.lh-14 {
	line-height: 1.4;
}

.lh-16 {
	line-height: 1.6;
}

.lh-18 {
	line-height: 1.8;
}

.lh-20 {
	line-height: 2;
}

/**************************** 边距属性 ********************************/

/*边距样式*/
.mg-0 {
	margin: 0;
}

.mg-5 {
	margin: 5px;
}

.mg-10 {
	margin: 10px;
}

.mg-15 {
	margin: 15px;
}

.mg-20 {
	margin: 20x;
}

.ml-5 {
	margin-left: 5px;
}

.ml-10 {
	margin-left: 10px;
}

.ml-15 {
	margin-left: 15px;
}

.ml-20 {
	margin-left: 20px;
}

.mr-5 {
	margin-right: 5px;
}

.mr-10 {
	margin-right: 10px;
}

.mr-15 {
	margin-right: 15px;
}

.mr-20 {
	margin-right: 20px;
}

.mt-1 {
	margin-top: 1px;
}

.mt-5 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

/* 上下边距,用x/y轴 */
.my-10,
.mv-10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.my-15,
.mv-15 {
	margin-top: 15px;
	margin-bottom: 15px;
}

.my-20,
.mv-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.mx-5 {
	margin-left: 5px;
	margin-right: 5px;
}

.mx-10,
.mh-10 {
	margin-left: 10px;
	margin-right: 10px;
}

.mx-20,
.mh-20 {
	margin-left: 20px;
	margin-right: 20px;
}

/* padding */
.textarea-primary.pd-0,
.pd-0 {
	padding: 0;
}

.pd-5 {
	padding: 5px;
}

.pd-10 {
	padding: 10px;
}

.pd-15 {
	padding: 15px;
}

.pd-20 {
	padding: 20px;
}

.pd-30 {
	padding: 30px;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-40 {
	padding-top: 40px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}


.px-5,
.ph-5 {
	padding-left: 5px;
	padding-right: 5px;
}

.px-10,
.ph-10 {
	padding-left: 10px;
	padding-right: 10px;
}

.px-15,
.ph-15 {
	padding-left: 15px;
	padding-right: 15px;
}

.px-20,
.ph-20 {
	padding-left: 20px;
	padding-right: 20px;
}

.px-30,
.ph-30 {
	padding-left: 30px;
	padding-right: 30px;
}

.py-5,
.pv-5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.py-10,
.pv-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py-15,
.pv-15 {
	padding-top: 15px;
	padding-bottom: 15px;
}

.py-20,
.pv-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}


/********************* 字体大小 ************************/

/*字体样式*/
.fs-10 {
	font-size: 10px;
}

.fs-11 {
	font-size: 11px;
}

.fs-12 {
	font-size: 12px;
}

.fs-13 {
	font-size: 13px;
}

.fs-14 {
	font-size: 14px;
}

.fs-15 {
	font-size: 15px;
}

.fs-16 {
	font-size: 16px;
}

.fs-17 {
	font-size: 17px;
}

.fs-18 {
	font-size: 18px;
}

.fs-19 {
	font-size: 19px;
}

.fs-20 {
	font-size: 20px;
}

.fs-21 {
	font-size: 21px;
}

.fs-22 {
	font-size: 22px;
}

.fs-24 {
	font-size: 24px;
}

.fs-28 {
	font-size: 28px;
}

.fs-36 {
	font-size: 36px;
}



/**************************** img图像属性  ********************************/

.image-16 {
	width: 16px;
	height: 16px;
}

.image-24 {
	width: 24px;
	height: 24px;
}

.image-32 {
	width: 32px;
	height: 32px;
}

.image-36 {
	width: 36px;
	height: 36px;
}

.image-40 {
	width: 40px;
	height: 40px;
}

.image-44 {
	width: 44px;
	height: 44px;
}

.image-48 {
	width: 48px;
	height: 48px;
}

.image-64 {
	width: 64px;
	height: 64px;
}

.image-32.radius,
.image-48.radius,
.image-64.radius {
	border-radius: 5px;
}

.image-32.circle,
.image-48.circle,
.image-64.circle {
	border-radius: 50%;
}

.image-full {
	width: 100%;
}

.avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

/* 系统没有iconfont-avatar头像, 使用自定义方式，其中头像大小可由外围的fs-16控制
<text class="iconfont-avatar fs-16 mr-10">
	<text class="iconfont iconfont-people"></text>
</text> */
.iconfont-avatar {
	background-color: #efefef;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	padding: 15rpx;
}


/**************************** list列表布局 ********************************/

/* 默认列表样式，用于显示行文字 */
/* 用法：.ul > .li > 文字 , <text>文字</text> */
.ul {
	overflow: hidden;
	padding: 0;
}

.ul.noborder .li {
	border-bottom: none;
}

.li {
	display: block;
	overflow: hidden;
	position: relative;
	padding: 15px;
	font-size: 15px;
	border-bottom: 1px solid #f5f5f5;
	color: #55557f;
	/* display: flex; */
	/* align-items: center;
	justify-content: space-between; */
}

.li.flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ul.thin .li,
.ul .li.thin {
	padding: 10px 15px;
}

.ul.thick .li,
.ul .li.thick {
	padding: 20px 15px;
}

/* 第一行,顶部显示顶边 */
.ul.border-top .li:first-child {
	border-top: 1px solid #e9e9e9;
}

/* 第1行/最后1行,是否显示横线 */
/* .border-first
.border-last
 */

.ul .li > label {
	min-width: 160rpx;
	font-size: 12px;
}


/* 行最右侧显示箭头，代表链接 */
/* 用法：.ul.arrow 所有行末都有右箭头，或.ul > .li.arrow 某一行末有右箭头 */
.ul.arrow .li::after,
.ul .li.arrow::after,
.ul-card.arrow .li::after,
.ul-card .li.arrow::after {
	content: "\e6a3";
	font-size: 14px;
	font-family: iconfont!important;
	font-size: inherit;
	line-height: 1;
	right: 10px;
	position: absolute;
	top: 50%;
	display: inline-block;
	-webkit-transform: translateY(-50%);
			transform: translateY(-50%);
	text-decoration: none;
	color: #bbb;
	-webkit-font-smoothing: antialiased;
}

.ul.arrow .li,
.ul .li.arrow {
	padding-right: 60rpx;
}

/* 单行，最后一行，不显示底边 */
.ul .li:last-child,
.ul.thin .li:last-child {
	/* border: none; */
}




/**************************** ul-list，form左右列只读显示样式 ********************************/
/* 左右结构，没有input，常用于表单读显示
用法：view.ul-list,  li > text.label, text.text，支持arrow
 */

.ul-list .li {
	display: flex;
	justify-content: space-between;
}

.ul-list .li > .label {
	display: inline-flex;
	font-size: 14px;
	color: #333;
	min-width: 100rpx;
}

.ul-list .li > .text {
	display: inline-flex;
	font-size: 14px;
	color: #999;
}

.ul-list.arrow .li::after,
.ul-list .li.arrow::after {
	content: "\e6a3";
	font-size: 14px;
	font-family: iconfont!important;
    font-size: inherit;
    line-height: 1;
	right: 10px;
    position: absolute;
    top: 50%;
    display: inline-block;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-decoration: none;
    color: #bbb;
    -webkit-font-smoothing: antialiased;
}

.ul-list.arrow .li,
.ul-list .li.arrow {
	padding-right: 60rpx;
}


.ul-list.thick .li,
.ul-list .li.thick {
	padding-top: 20px;
	padding-bottom: 20px;
}


/**************************** list多行，卡片样式 ********************************/

/* 多行，与标准列表类似，只是每行记录为卡片样式 */
/* 用法：ul-card, ul-card.thin > li，或ul > li li-card */

.ul-card > .li {
	background-color: #fff;
	padding: 0;
	overflow: hidden;
	position: relative;
	font-size: 13px;
	border-bottom: 1px solid #d9d9d9;
	
	padding: 15px;
	margin: 0 10px 10px;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

.ul-card.full > .li {
	margin: 10rpx 0;
}

.ul-card.thin > .li {
	padding: 12px;
	margin-left: 14rpx;
	margin-right: 14rpx;
}

.ul-card > .li:first-child {
	margin-top: 0;
}




/**************************** card卡片样式 ********************************/

/*单独卡片*/
/*用法：view.card .full > view.card-header.justify-content, view.card-body (.p), view.card-footer
## card.full 去除两边的边距，100%显示
*/
.card {
	color: #666;
	margin-left: 10px;
	margin-right: 10px;
	background: #fff;
	border-radius: 12rpx;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
	overflow: hidden;
	position: relative;
	background-clip: padding-box;
}

.card.full {
	margin-left: 0;
	margin-right: 0;
}

.card-header,
.card-footer {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	min-height: 78rpx;
	padding: 10rpx 10px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.card-header:after,
.card-footer:before {
	position: absolute;
	top: auto;
	right: 0;
	left: 0;
	bottom: 0;
	height: 1px;
	content: '';
	-webkit-transform: scaleY(.5);
	transform: scaleY(.5);
	background-color: #c8c7cc;
}

.card-body {
	font-size: 13px;
	position: relative;
	overflow: hidden;
	padding: 10rpx 10px;
}

.card-body .title {
	font-size: 14px;
	padding-top: 10rpx;
	padding-bottom: 10rpx;
	font-weight: 700;
}

.card-body .subtitle {
	font-size: 13px;
	padding: 10rpx 0;
	color: #666;
}

.card-body .desc {
	font-size: 12px;
	color: #999;
	line-height: 18px;
}




/**************************** alert ********************************/
/* alert标签 */

.alert {
	position: relative;
	text-shadow: 0 1px 0 rgba(255,255,255,0.5);
	background-color: #FFF8E1;
	/* border: 1px solid #FFE9A4; */
	border: 1px solid #FFF8E1;
	color: #666;
	font-size: 13px;
	padding: 10px 15px;
}


.alert-tip {
	color: #666;
	background-color: transparent;
}

.alert-default {
	background-color: #FCF5F0;
	color: #d14d18;
}

.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1;
}

.alert-warning {
	color: #b94a48;
	background-color: #f2dede;
	border-color: #eed3d7;
}

.alert-success {
	color: #468847;
	background-color: #dff0d8;
	border-color: #d6e9c6;
}

/**************************** badge ********************************/
/* .badge.small更小标签 */

.badge {
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	box-sizing: border-box;
	font-size: 12px;
	line-height: 1;
	display: inline-block;
	padding: 6rpx 12rpx;
	color: #333;
	border-radius: 3px;
	background-color: #f1f1f1
}

.badge.badge-inverted {
	padding: 0 10rpx 0 0;
	color: #999;
	background-color: transparent
}

.badge-primary {
	color: #fff;
	background-color: #007aff
}

.badge-primary.badge-inverted {
	color: #007aff;
	background-color: transparent
}

.badge-success {
	color: #fff;
	background-color: #32CC7F;
}

.badge-success.badge-inverted {
	color: #32CC7F;
	background-color: transparent
}

.badge-warning {
	color: #fff;
	background-color: #f0ad4e
}

.badge-warning.badge-inverted {
	color: #f0ad4e;
	background-color: transparent
}

.badge-error {
	color: #fff;
	background-color: #dd524d
}

.badge-error.badge-inverted {
	color: #dd524d;
	background-color: transparent
}

.badge.small {
	transform: scale(.8);
	transform-origin: center center
}

/* 单独定义一个, 比普通的更大一些 */
.badge-brown {
	font-size: 13px;
	margin: 10rpx;
	background-color: #efefef;
	color: #741702;
	border: 1px solid #ececec;
	padding: 4rpx 15rpx;
	border-radius: 2px;
	display: inline-block;
}

.badge-brown-inverse {
	font-size: 13px;
	margin: 10rpx;
	background-color: #c32603;
	color: #efefef;
	/* border: 1px solid #741702; */
	padding: 4rpx 15rpx;
	border-radius: 2px;
	display: inline-block;
}

/* 用于selectTag样式 */
.badge-tag {
	font-size: 16px;
	margin: 10rpx;
	background-color: #efefef;
	color: #741702;
	border: 1px solid #ececec;
	padding: 10rpx 10px;
	border-radius: 2px;
	display: inline-block;
}



/**************************** 常用mark定义 ********************************/
/* 通常用于主题右侧提示性标识 */

.mark {
	background-color: #F8F8ED;
	color: #EFAD4D;
	padding: 0 10rpx;
	border-radius: 2px;
	font-size: 13px;
}

.mark-warning {
	background-color: #F8F8ED;
	color: #EFAD4D;
}

.mark-primary {
	background-color: #EEFBFB;
	color: #888;
}

.mark-default {
	background-color: #e6e6e6;
	color: #a8b3a2;
}

/**************************** 常用标签label定义 ********************************/

.label {
	font-size: 14px;
	margin: 0 10rpx 10rpx 0;
	padding: 4rpx 15rpx;
	border-radius: 2px;
	display: inline-block;
}

.label-default {
	background-color: #efefef;
	color: #333333;
}

.label-default.on {
	background-color: #83D38C;
	color: #FFFFFF;
}

.label-warning {
	background-color: #EFAD4D;
	color: #FFFFFF;
}

.label-success {
	color: #fff;
	background-color: #4cd964
}

.label-error {
	color: #fff;
	background-color: #dd524d
}

.label-secondary {
	color: #fff;
	background-color: #1AAEEC
}



/**************************** 按钮 ********************************/

/* 通用按钮 */
.btn {
	display:inline-block;
	box-sizing:border-box;
	cursor:pointer;
	text-align:center;
	font-size: 12px;
	border-radius: 3px;
	line-height: 1.42857;
	font-weight: 400;
	padding: 6rpx 10px;
	white-space: nowrap;
	vertical-align: middle;
	-moz-padding-start: npx;
	-moz-padding-end: npx;
	border: solid 1px #ddd;
	width: auto;
	-webkit-transition:background-color .1s linear;
	-moz-transition:background-color .1s linear;
	-o-transition:background-color .1s linear;
	transition:background-color .1s linear;
}

a.btn:hover,
a.btn:focus,
a.btn:active,
a.btn.disabled,
a.btn[disabled] {
	text-decoration:none
}

.btn:hover {
	opacity: .9;
	border: 1px solid #333;
}

.btn:active {
	background-color: #ccc;
	-moz-box-shadow: 0 1px 8px rgba(0,0,0,0.125) inset;
	-webkit-box-shadow: 0 1px 8px rgba(0,0,0,0.125) inset;
	box-shadow: 0 1px 8px rgba(0,0,0,0.125) inset;
}

.btn-primary {
	background-color: #5a98de;
	color: #fff;
	border-color: #5a98de
}

.btn-primary-outline {
	color: #5a98de;
	background-color:transparent;
	border-color: #5a98de
}

.btn-default {
	background-color: #e6e6e6;
	border-color: #e6e6e6;
	color: #6e6e6e;
}

.btn-default-outline {
	background-color: #ffffff;
	border-color: #e6e6e6;
	color: #333;
}

.btn-success {
	color: #fff;
	background-color: #5eb95e;
	border-color: #5eb95e
}


.btn-success-outline {
	color: #5eb95e;
	background-color: transparent;
	background-image: none;
	border-color: #5eb95e
}

.btn-warning {
	color: #fff;
	background-color: #f37b1d;
	border-color: #f37b1d
}

.btn-warning-outline {
	color: #f37b1d;
	background-color: transparent;
	background-image: none;
	border-color: #f37b1d
}

.btn-danger {
	color: #fff;
	background-color: #dd514c;
	border-color: #dd514c
}

.btn-danger-outline {
	color: #dd514c;
	background-color:transparent;
	background-image:none;
	border-color: #dd514c
}


/*链接*/
.btn-link {
	color: #0e90d2;
	cursor: pointer;
	/* border-color:transparent;
	background-color:transparent; */
}

.btn-link:hover,
.btn-link:focus,
.btn-link:active {
	/* color:#095f8a;
	text-decoration:underline;
	background-color:transparent; */
}


.btn.btn-big,
.btn-big {
	-moz-box-sizing:border-box;
	display: block;
	padding: 12px 0;
	width: 99%;
	line-height: 1;
	font-size: 16px;
}

.btn.btn-middle,
.btn-middle {
	-moz-box-sizing:border-box;
	display:block;
	padding: 10px 0;
	width: 60%;
	line-height: 0.8;
	font-size: 15px;
}

.btn.btn-small,
.btn-small {
	-moz-box-sizing:border-box;
	display:block;
	padding: 8px 0;
	width: 220px;
	font-size: 13px;
	line-height: 1;
}


/*禁用状态*/
.btn.disabled {
	cursor: not-allowed;
	background-image: none;
	opacity: .65;
	filter: alpha(opacity=65);
	box-shadow: none;
	pointer-events: none
}

/* 侧边按钮，固定位置按钮 */
.side-btn {
	position: fixed;
	bottom: 15%;
	width: 112rpx;
	height: 112rpx;
	line-height: 112rpx;
	border: 1px solid transparent;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	background-color: #0C83FF;
	opacity: 0.9;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
	color: #FFF;
	font-size: 14px;
	z-index: 3;
}

.side-btn.left {
	left: 10px;
}

.side-btn.right {
	right: 10px;
}

/* 底部居中按钮 */
/* view.bottom-btn > text.iconfont.iconfont-add.fs-24/20, text.fs-11.c-666 */
.bottom-btn {
	position: fixed;
	bottom: 5%;
	width: 220px;
	height: 90rpx;
	
	margin: 0 auto;
	left: 0;
	right: 0;
	border: 1px solid transparent;
	border-radius: 100rpx;
	
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background-color: #fefefe;
	opacity: 0.8;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
	z-index: 999;
}

/* 底部居中按钮，只提供+，没有文字 */
.bottom-btn-plus {
	position: fixed;
	
	/* #ifdef MP-WEIXIN */
	bottom: 70rpx;
	/* #endif */
	
	/* #ifdef H5 */
	bottom: 160rpx;
	/* #endif */
	
	width: 180rpx;
	height: 80rpx;
	
	font-size: 60rpx;
	color: #418BCA;
	
	margin: 0 auto;
	left: 0;
	right: 0;
	border: 1px solid transparent;
	border-radius: 100rpx;
	
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background-color: #fefefe;
	opacity: 0.8;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
	z-index: 999;
}


/* 标签按钮，通常用于点赞/删除等浅灰色小按钮，小图标+文字，用法：.btn-label.btn-label-success */
.btn-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #efefef;
	color: #888;
	padding: 6rpx 10px;
	border-radius: 3px;
	font-size: 14px;
	line-height: 1;
}

.btn-label-success {
	background-color: #32CC7F;  /* #5EB95E */
	color: #fff;
}

.btn-label-warning {
	background-color: #EFAD4D;
	color: #fff;
}



/*************************************************************************/

/* footer，底部固定菜单栏，通常为导航或按钮*/
/*用法：view.footer > btn 几个按钮等宽 或 btn.btn-main主按钮 + btn.btn-iconfont辅助图标按钮
 或view.footer > btn-full.btn-link，文字按钮，占满整个footer
 */
.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 96rpx;
	z-index: 995;
	display: flex;
	/* box-shadow: 0 0 3px rgba(0,0,0,.2); */
	justify-content: space-around;
	align-items: center;
	border-top: 1px solid #e5e5e5;
	background-color: #ffffff;
	overflow: hidden;
}

	
.footer .btn-primary {
	width: 375rpx;
	font-size: 14px;
	padding: 14rpx 10px;
}

.footer .btn:last-child {
	border-right: none;
}

.footer .btn-iconfont {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
}

/* 文本按钮，扩大响应区域 */
.footer .footer-text-btn {
	display: inline-flex;
	align-items: center;
	height: 80rpx;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 14px;
	color: #418BCA;
}



/**************************** 顶部tab nav ********************************/

/* 顶部tabnav，切换选项卡
用法：
div.nav-ul .center-nav/.between-nav/.round-nav .success-nav > div.nav-li .on > icon.iconfont
背景白色+文字居中center-nav，背景颜色文字白色success-nav
最右侧如果为filter图标，直接nav-li.right。center-nav改为text-c
.nav-ul.fixed  固定在顶部，其下面的元素，应该单独设定一行div.cl.mt-nav（让出margin-top）
*/

.nav {
	overflow: hidden;
	display: flex;
	align-items: center;
}

.nav-ul {
	margin: 0;
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	height: 80rpx;
	line-height: 88rpx;
	box-shadow: 0 0 3px rgba(0,0,0,.2);
	white-space: nowrap;
	padding: 0 20px;
	position: relative;
}

.nav-ul.bottom {
	border-bottom: 1px solid #eee;
}

/* 主要在中间 */
.center-nav {
	display: flex;
	justify-content: center;
}

/* 两边顶格平均分布 */
.between-nav {
	display: flex;
	justify-content: space-between;
}

/* 等宽平均分布 */
.round-nav {
	display: flex;
	justify-content: space-around;
}

.success-nav {
	background: #39b54a;
	color: #fff;
}

.warning-nav {
	background: #f37b1d;
	color: #fff;
}

.gray-nav {
	background: #393D49;
	color: #fff;
}


.gray-nav .nav-li,
.success-nav .nav-li,
.warning-nav .nav-li {
	color: #fff;
}

.nav-li {
	display: inline-block;
	overflow: hidden;
	margin: 0 16px;
	height: 80rpx;
	/* color: #838486; */
	color: #b5b5b5;
	line-height: 88rpx;
	/* font-size: 14px; */
	font-size: 14px;
}
/* 
.primary-nav {
	background-color: #FFFAF8;
}

.primary-nav .nav-li.on {
	color: #f37b1d;
} */


.gray-nav .nav-li.on,
.success-nav .nav-li.on,
.warning-nav .nav-li.on {
	margin: 0 16px;
	height: 80rpx;
	line-height: 88rpx;
	border-bottom: 2px solid #fff;
	color: #fff;
	height: 76rpx;
	/* font-weight: 700; */
}

.nav-li.right {
	margin: 0;
	padding-top: 0;
	padding-right: 10rpx;
	display: block;
	overflow: hidden;
	float: right;
}

.nav-li .iconfont {
	/* color: inherit; */
}

.nav-li.on {
	color: #535353;
	font-weight: 700;
	border-bottom: 2px solid #c26016;
	height: 70rpx;
}

.nav-li a {
	color: inherit;
}


.nav-ul.fixed {
	position: fixed;
	top: 44px;
	opacity: 1;
	z-index: 9;
}

.mt-nav {
	margin-top: 42px;
}



/**************************** color颜色定义  ********************************/


/*color 红黄蓝 绿 黑白紫 青 灰*/
.c-black {
	color: #393D49;
}

.c-blue {
	/* color: #29A2D3; */
	/* color: #007aff; */
	/* 49AFD0 */
	color: #418BCA;
}

.c-link {
	color: #428bca;
	/* color: #006cb4; */
	/* color: #576B95; */
}

.c-brown {
	color: #b00002;
}

.c-green,
.c-success,
.c-secondary {
	/* 8ECD51 */
	color: #32CC7F;
}

.c-red,
.c-danger {
	color: #DD524D;
	/*color: #D95350;*/
}

.c-yellow,
.c-warning {
	color: #EFAD4D;
}

.c-white {
	color: #FFF;
}

.c-cyan {
	color: #1AAEEC
}

.c-gray {
	color: #EFEFF4;
}

.c-111 {
	color: #1e1e1e;
}

.c-333 {
	/* color: #333; */
	color: #3a3a3a;
}

.c-666 {
	/* color: #666; */
	color: #6a6a6a;
}

.c-999 {
	/* color: #999; */
	color: #909399;
}

.c-aaa {
	color: #aaa;
}

.c-bbb {
	color: #bbb;
}

.c-ccc {
	/* color: #ccc; */
	color: #c7c7c7;
}

.c-ddd {
	color: #ddd;
}

.c-eee {
	color: #eee;
}

/*background-color背景色*/
.bg-inherit {
	background-color: inherit;
}

.bg-black {
	background-color: #393D49;
}


.bg-blue {
	background-color: #29A2D3;
	/*background-color: #418BCA;*/
}

.bg-green {
	background-color: #32CC7F;
}

.bg-red,
.bg-danger {
	background-color: #DD524D;
	/*background-color: #D95350;*/
}

.bg-yellow,
.bg-warning {
	background-color: #EFAD4D;
}

.bg-white {
	background-color: #FFF;
}

.bg-cyan {
	background-color: #1AAEEC;
}

.bg-gray {
	background-color: #EFEFF4;
}

.bg-666 {
	background-color: #666;
}

.bg-999 {
	background-color: #999;
}

.bg-f8 {
	background-color: #f8f8f8;
}

.bg-brown {
	background-color: #b00002;
}

/*一些自定义颜色*/

.c1 {
	color: #6ca3d9;
}

.bg1 {
	background-color: #6ca3d9;
}

.bg1-light {
	background-color: #E6EFF9;
}

.c2 {
	color: #6cd9d9;
}

.bg2 {
	background-color: #6cd9d9;
}

.bg2-light {
	background-color: #EEFBFB;
}

.c3 {
	color: #6cd96c;
}

.bg3 {
	background-color: #6cd96c;
}

.bg3-light {
	background-color: #EEFBEE;
}

.c4 {
	color: #d96ca3;
}

.bg4 {
	background-color: #d96ca3;
}

.bg4-light {
	background-color: #FBEEF5;
}

.c5 {
	color: #d9a36c;
}

.bg5 {
	background-color: #d9a36c;
}

.bg5-light {
	background-color: #FBF5EE;
}

.c6 {
	color: #a36cd9;
}

.bg6 {
	background-color: #a36cd9;
}

.bg6-light {
	background-color: #F5EEFB;
}

.c7 {
	color: #efa360;
}

.bg7 {
	background-color: #efa360;
}

.bg7-light {
	background-color: #FDF5ED;
}

.c8 {
	color: #bfbe60;
}

.bg8 {
	background-color: #bfbe60;
}

.bg8-light {
	background-color: #F8F8ED;
}

.c9 {
	color: #a3d96c;
}

.bg9 {
	background-color: #a3d96c;
}

.bg9-light {
	background-color: #F5FBEE;
}

.c10 {
	color: #6c6cd9;
}

.bg10 {
	background-color: #6c6cd9;
}

.bg10-light {
	background-color: #EEEEFB;
}

.c11 {
	color: #eb7e86;
}

.bg11 {
	background-color: #eb7e86;
}

.bg11-light {
	background-color: #FDF0F1;
}

.c12 {
	color: #6cd9a3;
}

.bg12 {
	background-color: #6cd9a3;
}

.bg12-light {
	background-color: #EEFBF5;
}