/**
 智游云样式库，本库为layui框架的扩展，请配合layui使用
*/


/*公用扩展*/

.zyyui-body {
	background: #f9f9f9;
}


/*最小宽度为1200px的主体中间部分*/

.zyyui-main {
	width: 1200px;
	min-width: 1200px;
	margin: 0px auto;
	position: relative;
}


/*字体加粗*/

.zyyui-bold {
	font-weight: bold;
}


/*常用flex布局*/

.zyyui-flex {
	display: flex;
}

.zyyui-flex-column {
	display: flex;
	flex-direction: column;
}

.zyyui-flex-wrap {
	flex-wrap: wrap;
}

.zyyui-flex-1 {
	flex: 1;
}

.zyyui-center-between {
	justify-content: space-between;
	align-items: center;
}

.zyyui-justify-between {
	justify-content: space-between;
}

.zyyui-justify-start {
	justify-content: flex-start;
}

.zyyui-justify-center {
	justify-content: center;
}

.zyyui-justify-end {
	justify-content: flex-end;
}

.zyyui-align-center {
	align-items: center;
}

.zyyui-align-start {
	align-items: flex-start;
}

.zyyui-align-end {
	align-items: flex-end;
}


/*常用边距*/

.zyyui-margin-top20 {
	margin-top: 20px;
}

.zyyui-margin-right20 {
	margin-right: 20px;
}

.zyyui-margin-bottom20 {
	margin-bottom: 20px;
}

.zyyui-margin-left20 {
	margin-left: 20px;
}


/*用户公用中心头部*/

.zyyui-header {
	background: #ffffff;
}

.zyyui-header-content {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zyyui-header-content .zyyui-logo-title {
	font-size: 20px;
}

.zyyui-header-item {
	margin: 0px 10px;
	position: relative;
	cursor: pointer;
}

.zyyui-header-item i {
	margin-right: 5px;
}

.zyyui-header-item.after::after {
	position: relative;
	top: -8px;
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	content: '';
	background: red;
}

.zyyui-header-item img {
	width: 49px;
	height: 49px;
	margin-right: 10px;
	border-radius: 100%;
}


/*右侧带三角标*/

.zyyui-header-item.triangle:after {
	content: '';
	position: absolute;
	right: -12px;
	top: 21px;
	border: 5px solid #d1d1d1;
	border-top-color: #d1d1d1;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.zyyui-header-item .zyyui-item-child {
	position: absolute;
	right: -8px;
	top: 60px;
	font-size: 16px;
	width: 165px;
	height: 0px;
	overflow: hidden;
	z-index: 999;
	transition: all .3s;
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.08);
}

.zyyui-item-child .zyyui-child-title,
.zyyui-item-child .zyyui-child-titles {
	display: block;
	box-sizing: border-box;
	padding: 15px 25px;
	background: #ffffff;
}

.zyyui-item-child .zyyui-child-title.active {
	color: #009688 !important;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zyyui-item-child .zyyui-titles {

	border-top: solid 1px #eeeeee;
	border-bottom: solid 1px #eeeeee;
}

.zyyui-item-child .zyyui-child-titles {
	font-size: 14px;
}


/*辅助中线*/

.zyyui-mbo {
	height: 1px;
	background-color: #f2f2f2;
}


/*内容区提示标题*/

.zyyui-subtitle {
	height: 40px;
	line-height: 40px;
	color: #3A3A3A;
	font-weight: bold;
	background-color: #f2f2f2;
	font-size: 18px;
	margin-bottom: 24px;
	text-indent: 20px;
}


/*内容中心部分*/

.zyyui-user-midden {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}


/*内容区右侧部分*/

.zyyui-user-right {
	width: 978px;
	background: white;
}

.zyyui-padding-24 {
	padding: 0px 20px 30px 20px!important;
}


/*侧边公用导航栏，内容区左侧*/

.zyyui-user-left {
	width: 200px;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-parent {
	padding: 12px 18px;
	font-size: 18px;
	letter-spacing: 1px;
	color: #3a3a3a;
	background-color: #f2f2f2;
	cursor: pointer;
	border-bottom: 1px solid white;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-parent i {
	margin-right: 10px;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-child .child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 18px;
	font-size: 14px;
	letter-spacing: 1px;
	color: #3a3a3a;
	background: white;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-child .child.active {
	color: #009688 !important;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-child .child.active:hover {
	opacity: 1 !important;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-child a:hover {
	color: #009688 !important;
}

.zyyui-user-left .zyyui-accordion-block .zyyui-accordion-child .child i {
	font-size: 10px;
}


/**公用底部*/

.zyyui-footer {
	background-color: #383838;
	width: 100%;
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 1200px;
}

.zyyui-footer .zyyui-footer-title {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 1px;
	color: #ffffff !important;
	opacity: 0.3;
}


/*审核状态公用标题*/

.zyyui-bot-title {
	padding: 16px;
	border-radius: 5px;
	margin-bottom: 20px;
	color: rgba(0, 0, 0, .7);
}


/*各种审核标题颜色*/

.zyyui-bot-blue {
	background: #337ab7;
	color: white !important;
}

.zyyui-bot-green {
	background: #dff0d8;
}

.zyyui-bot-babyblue {
	background: #d9edf7;
}

.zyyui-bot-yellow {
	background: #fcf8e3;
}

.zyyui-bot-red {
	background: #f2dede;
}


/*公用大标题*/

.zyyui-cont-title {
	padding: 12px 30px;
	font-size: 18px;
	letter-spacing: 0px;
	color: #3a3a3a;
	font-weight: bold;
	background-color: #f2f2f2;
}


/*公用步骤样式*/

.zyyui-steps-content {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}

.zyyui-steps-list {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.zyyui-steps-list i {
	font-size: 15px !important;
}

.zyyui-steps-list .zyyui-steps {
	padding: 0px 10px;
	display: flex;
	align-items: center;
	margin: 0;
	position: relative;
	color: #666666 !important;
}

.zyyui-steps-list .zyyui-steps:last-child {
	margin-right: 0px;
}

.zyyui-steps-list .zyyui-steps .sp {
	margin-right: 10px;
}

.zyyui-steps-list .zyyui-steps::after {
	position: absolute;
	right: -36px;
	top: 18px;
	width: 36px;
	height: 1px;
	background-color: #bfbfbf;
	content: '';
}

.zyyui-steps-list .zyyui-steps:last-child::after {
	width: 0px;
}

.zyyui-steps-list .zyyui-steps.active {
	color: #ffa52a !important;
}

.zyyui-steps-list .zyyui-steps.active .sp {
	background: #ffa52a !important;
}

.zyyui-steps-list .sp {
	width: 36px;
	height: 36px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #bfbfbf;
	font-size: 18px;
	color: #FFFFFF;
}


/*在zyyui-steps-content 后面加zyyui-order-step 既可变成另一种步骤样式*/

.zyyui-order-step .sp {
	margin-right: 0px!important;
}

.zyyui-order-step .zyyui-steps-list {
	margin: 20px 0px;
}

.zyyui-order-step .zyyui-steps {
	width: 300px;
	flex-direction: column;
	align-items: center;
	margin-right: 0px;
	margin-bottom: 0px;
}

.zyyui-order-step .zyyui-steps.active {
	color: #31afff!important;
}

.zyyui-order-step .zyyui-steps::after {
	content: '';
	height: 0px;
}

.zyyui-order-step .zyyui-steps::before {
	position: absolute;
	right: 50%;
	top: 14px;
	width: 310px;
	height: 3px;
	background-color: #bfbfbf;
	content: ' ';
	z-index: -1;
}

.zyyui-order-step .zyyui-steps.active::before {
	background-color: #31afff;
}

.zyyui-order-step .zyyui-steps .sp {
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
}

.zyyui-order-step .zyyui-steps.active .sp {
	background: #31afff!important;
}

.zyyui-order-step .zyyui-steps-list .zyyui-steps:first-child::before {
	width: 0px!important;
}


/*当步骤样式为5步个的时候zyyui-steps-content zyyui-order-step在加一个zyyui-five即可为5个步骤的样式*/

.zyyui-order-step.zyyui-five .zyyui-steps {
	width: 150px!important;
}

.zyyui-order-step.zyyui-five .sp {
	width: 22px!important;
	height: 22px!important;
	border: 8px solid #f6f6f6;
	font-size: 16px;
}

.zyyui-order-step.zyyui-five .zyyui-steps.active {
	color: #009688!important;
}

.zyyui-order-step.zyyui-five .zyyui-steps.active .sp {
	background: #009688!important
}

.zyyui-order-step.zyyui-five .zyyui-steps.active::before {
	background: #009688!important;
}

.zyyui-order-step.zyyui-five .zyyui-steps::before {
	width: 149px!important;
	top: 17px;
	right: calc(50% + 10px);
	z-index: 1;
}


/*自做时间线*/

.zyyui-timeline .timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
	position: relative;
	color: #5E5E5E;
}

.zyyui-timeline .timeline-item::before {
	content: '';
	position: absolute;
	left: 8px;
	bottom: 50%;
	width: 2px;
	height: calc(100% + 32px);
	background: #e5e5e5;
	z-index: 1;
}

.zyyui-timeline .timeline-item .time {
	margin-right: 38px;
}

.zyyui-timeline .timeline-item .timeline {
	width: 16px;
	height: 16px;
	display: inline-block;
	border-radius: 100%;
	position: relative;
	background-color: #ffffff;
	border: solid 1px #e5e5e5;
	z-index: 2;
	margin-right: 15px;
}

.zyyui-timeline .timeline-item .timeline:before {
	content: '';
	position: absolute;
	left: 4px;
	top: 4px;
	border-radius: 100%;
	width: 8px;
	height: 8px;
	background: #e5e5e5;
}

.zyyui-timeline .timeline-item:first-child {
	font-weight: bold;
}
.zyyui-timeline .timeline-item:last-child{
	margin-bottom: 0px;
}

.zyyui-timeline .timeline-item:first-child::before {
	height: 0px;
}

.zyyui-timeline .timeline-item:first-child .timeline {
	border: solid 1px #009688;
}

.zyyui-timeline .timeline-item:first-child .timeline::before {
	background: #009688;
}


/*带必填角标的表单lable标题*/

.zyyui-required {
	position: relative;
}

.zyyui-required::before {
	position: absolute;
	content: '*';
	left: 15px;
	top: 8px;
	color: #c7161e;
}





/* 订单产品列表 */
.zyy-oglist-title
{
	background-color: #f2f2f2;
	display: flex;
	line-height: 40px;
	padding: 0 10px;
	margin-top: 20px;
}
.zyy-oglist-title div {
	padding: 0 10px;
	color: #666666;
}

.zyy-oglist-item {
	padding: 0px;
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
	display: flex;
}
.zyy-oglist-item .zyy-oglist-item-image
{
	width: 80px;
	padding: 20px;
}
.zyy-oglist-item .zyy-oglist-item-image img
{
	width: 80px;
	height: 80px;
}
.zyy-oglist-item .zyy-oglist-item-title
{
	padding: 20px 0;
	border-right: 1px solid #f5f5f5;
	flex:1;
}
.zyy-oglist-item .zyy-oglist-item-title h3
{
	font-size: 16px;
}
.zyy-oglist-item .zyy-oglist-item-title h4
{
	font-size: 14px;
	margin-top: 10px;
	color: #666666;
}
.zyy-oglist-item .zyy-oglist-item-money
{
	width: 80px;
	padding: 20px;
	display: flex;
	align-items:center;
	border-right: 1px solid #f5f5f5;
}

.zyy-oglist-item .zyy-oglist-item-quantity
{
	width: 80px;
	padding: 20px;
	display: flex;
	align-items:center;
	border-right: 1px solid #f5f5f5;
}

.zyy-oglist-item .zyy-oglist-item-price
{
	width: 80px;
	padding: 20px;
	display: flex;
	align-items:center;
	border-right: 1px solid #f5f5f5;
}
.zyy-oglist-item .zyy-oglist-item-tool
{
	width: 80px;
	display: flex;
	align-items:center;
	padding: 20px;
}

.zyy-oglist-foot
{
	padding: 20px;
	border-left: 1px solid #f5f5f5;
	border-right: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
	display: flex;
	align-items:center;
	color: #333333;
	background-color: #fafafa;
}
.zyy-oglist-foot .zyy-oglist-foot-paystatus
{
	font-weight: bold;
	margin-right: 20px;
}
.zyy-oglist-foot .zyy-oglist-foot-price
{
	font-weight: bold;
	margin-right: 20px;
}
.zyy-oglist-foot .zyy-oglist-foot-btn
{
	flex: 1;
	text-align: right;
}
.zyy-oglist-empty
{
	padding: 20px 20px 0px 20px;
	text-align: center;
	color: #666666;
}

/* 订单产品合计 */
.zyy-ogcount {
	padding: 20px 0px;
	border-bottom: 1px solid #f5f5f5;
	text-align: end;
}
.zyy-ogcount .zyy-ogcount-item {
	margin: 10px 0;
	color: #3a3a3a;
}
.zyy-ogcount .zyy-ogcount-price {
	color: #009688;
}



/* 订单产品按钮 */
.zyy-ogbtn-group {
	padding: 20px 0px;
	text-align: end;
}


/*分页*/
.zyy-page
{
	text-align: center;
}

.zyy-page .pagination {
	display:inline-block;
	padding-left:0;
	margin:20px 0;
	border-radius:4px
}
.zyy-page .pagination>li {
	display:inline
}
.zyy-page .pagination>li>a,
.zyy-page .pagination>li>span {
	position:relative;
	float:left;
	padding:6px 12px;
	margin-left:-1px;
	line-height:1.42857143;
	color:#009688;
	text-decoration:none;
	background-color:#fff;
	border:1px solid #ddd
}
.zyy-page .pagination>li:first-child>a,
.zyy-page .pagination>li:first-child>span {
	margin-left:0;
	border-top-left-radius:4px;
	border-bottom-left-radius:4px
}
.zyy-page .pagination>li:last-child>a,
.zyy-page .pagination>li:last-child>span {
	border-top-right-radius:4px;
	border-bottom-right-radius:4px
}
.zyy-page .pagination>li>a:focus,
.zyy-page .pagination>li>a:hover,
.zyy-page .pagination>li>span:focus,
.zyy-page .pagination>li>span:hover {
	z-index:2;
	color:#23527c;
	background-color:#eee;
	border-color:#ddd
}
.zyy-page .pagination>.active>a,
.zyy-page .pagination>.active>a:focus,
.zyy-page .pagination>.active>a:hover,
.zyy-page .pagination>.active>span,
.zyy-page .pagination>.active>span:focus,
.zyy-page .pagination>.active>span:hover {
	z-index:3;
	color:#fff;
	cursor:default;
	background-color:#009688;
	border-color:#009688
}
.zyy-page .pagination>.disabled>a,
.zyy-page .pagination>.disabled>a:focus,
.zyy-page .pagination>.disabled>a:hover,
.zyy-page .pagination>.disabled>span,
.zyy-page .pagination>.disabled>span:focus,
.zyy-page .pagination>.disabled>span:hover {
	color:#777;
	cursor:not-allowed;
	background-color:#fff;
	border-color:#ddd
}

/* label 必填项的样式 */
.zyy-label-required:before {
	color: red;
	content: '*';
	margin-left: 4px;
	font-weight: 800;
	line-height: 1.8em;
}