/* ColorUi for MP-weixin v2.1.4 | by 文晓港 2019年4月25日19:15:42 仅供学习交流，如作它用所承受的法律责任一概与作者无关 使用ColorUi开发扩展与插件时，请注明基于ColorUi开发 （QQ交流群：240787041） */
/* ================== 初始化 ==================== */
/* rem 转译px   时用 1rem */
/* rem 转译rpx   时用 2rem */
/* @import url(./box.css);  */
/* @import url(./text.css); */
/* @import url(./components.css);
@import url(./componentsDiy.css); */
body {
    /* Color 可以自定义相关配色 */
    /* var属性兼容性 --> https://www.caniuse.com/#feat=css-variables */
    /* 标准色 */
    --primary: #f37b1d; 
     --red: #e54d42;
     --orange: #f37b1d;
     --yellow: #fbbd08;
     --olive: #8dc63f;
     --green: #39b54a;
     --cyan: #1cbbb4;
     --blue: #0081ff;
     --purple: #6739b6;
     --mauve: #9c26b0;
     --pink: #e03997;
     --brown: #a5673f;
     --grey: #8799a3;
     --black: #333333;
     --darkGray: #666666;
     --gray: #aaaaaa;
     --ghostWhite: #f1f1f1;
     --white: #ffffff;
    /* 浅色 */
     --redLight: #fadbd9;
     --orangeLight: #fde6d2;
     --yellowLight: #fef2ce;
     --oliveLight: #e8f4d9;
     --greenLight: #d7f0db;
     --cyanLight: #d2f1f0;
     --blueLight: #cce6ff;
     --purpleLight: #e1d7f0;
     --mauveLight: #ebd4ef;
     --pinkLight: #f9d7ea;
     --brownLight: #ede1d9;
     --greyLight: #e7ebed;
    /* 渐变色 */
     --gradualRed: linear-gradient(45deg, #f43f3b, #ec008c);
     --gradualOrange: linear-gradient(45deg, #ff9700, #ed1c24);
     --gradualGreen: linear-gradient(45deg, #39b54a, #8dc63f);
     --gradualPurple: linear-gradient(45deg, #9000ff, #5e00ff);
     --gradualPink: linear-gradient(45deg, #ec008c, #6739b6);
     --gradualBlue: linear-gradient(45deg, #0081ff, #1cbbb4);
    /* 阴影透明色 */
     --ShadowSize: 3px 3px 4px;
     --redShadow: rgba(204, 69, 59, 0.2);
     --orangeShadow: rgba(217, 109, 26, 0.2);
     --yellowShadow: rgba(224, 170, 7, 0.2);
     --oliveShadow: rgba(124, 173, 55, 0.2);
     --greenShadow: rgba(48, 156, 63, 0.2);
     --cyanShadow: rgba(28, 187, 180, 0.2);
     --blueShadow: rgba(0, 102, 204, 0.2);
     --purpleShadow: rgba(88, 48, 156, 0.2);
     --mauveShadow: rgba(133, 33, 150, 0.2);
     --pinkShadow: rgba(199, 50, 134, 0.2);
     --brownShadow: rgba(140, 88, 53, 0.2);
     --greyShadow: rgba(114, 130, 138, 0.2);
     --grayShadow: rgba(114, 130, 138, 0.2);
     --blackShadow: rgba(26, 26, 26, 0.2);
     background-color: var(--white);
     font-size: 14px;
     color: var(--black);
     font-family: Helvetica Neue, Helvetica, sans-serif;
}
 div, button, input, textarea, a, img {
     box-sizing: border-box;
}


/* box.css */

/* rem 转译px 或rpx 时用 1rem */
.round {
    border-radius: 5000px;
}
.radius {
    border-radius: 6px;
}
.radius-lg {
    border-radius: 12px;
}


.block {
    display: block;
}
/* ================== 布局 ==================== */
.relative{
    position: relative;
}
/* -- flex弹性布局 -- */
.flex {
    display: flex;
}
.basis-xs {
    flex-basis: 20%;
}
.basis-sm {
    flex-basis: 40%;
}
.basis-df {
    flex-basis: 50%;
}
.basis-lg {
    flex-basis: 60%;
}
.basis-xl {
    flex-basis: 80%;
}
.flex-sub {
    flex: 1;
    min-width: 0;
}
.flex-twice {
    flex: 2;
}
.flex-treble {
    flex: 3;
}
.flex-direction {
    flex-direction: column;
}
.flex-column {
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}
.align-start {
    align-items: flex-start;
}
.align-end {
    align-items: flex-end;
}
.align-center {
    align-items: center;
}
.align-stretch {
    align-items: stretch;
}
.self-start {
    align-self: flex-start;
}
.self-center {
    align-self: flex-center;
}
.self-end {
    align-self: flex-end;
}
.self-stretch {
    align-self: stretch;
}
.align-stretch {
    align-items: stretch;
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
/* -- 内外边距 -- */
.margin-0 {
    margin: 0;
}
.margin-xs {
    margin: 10px;
}
.margin-sm {
    margin: 20px;
}
.margin {
    margin: 30px;
}
.margin-lg {
    margin: 40px;
}
.margin-xl {
    margin: 50px;
}
.margin-top-xs {
    margin-top: 10px;
}
.margin-top-sm {
    margin-top: 20px;
}
.margin-top {
    margin-top: 30px;
}
.margin-top-lg {
    margin-top: 40px;
}
.margin-top-xl {
    margin-top: 50px;
}
.margin-right-xs {
    margin-right: 10px;
}
.margin-right-sm {
    margin-right: 20px;
}
.margin-right {
    margin-right: 30px;
}
.margin-right-lg {
    margin-right: 40px;
}
.margin-right-xl {
    margin-right: 50px;
}
.margin-bottom-xs {
    margin-bottom: 10px;
}
.margin-bottom-sm {
    margin-bottom: 20px;
}
.margin-bottom {
    margin-bottom: 30px;
}
.margin-bottom-lg {
    margin-bottom: 40px;
}
.margin-bottom-xl {
    margin-bottom: 50px;
}
.margin-left-xs {
    margin-left: 10px;
}
.margin-left-sm {
    margin-left: 20px;
}
.margin-left {
    margin-left: 30px;
}
.margin-left-lg {
    margin-left: 40px;
}
.margin-left-xl {
    margin-left: 50px;
}
.margin-lr-xs {
    margin-left: 10px;
    margin-right: 10px;
}
.margin-lr-sm {
    margin-left: 20px;
    margin-right: 20px;
}
.margin-lr {
    margin-left: 30px;
    margin-right: 30px;
}
.margin-lr-lg {
    margin-left: 40px;
    margin-right: 40px;
}
.margin-lr-xl {
    margin-left: 50px;
    margin-right: 50px;
}
.margin-tb-xs {
    margin-top: 10px;
    margin-bottom: 10px;
}
.margin-tb-sm {
    margin-top: 20px;
    margin-bottom: 20px;
}
.margin-tb {
    margin-top: 30px;
    margin-bottom: 30px;
}
.margin-tb-lg {
    margin-top: 40px;
    margin-bottom: 40px;
}
.margin-tb-xl {
    margin-top: 50px;
    margin-bottom: 50px;
}
.padding-0 {
    padding: 0;
}
.padding-xs {
    padding: 10px;
}
.padding-sm {
    padding: 20px;
}
.padding {
    padding: 30px;
}
.padding-lg {
    padding: 40px;
}
.padding-xl {
    padding: 50px;
}
.padding-top-xs {
    padding-top: 10px;
}
.padding-top-sm {
    padding-top: 20px;
}
.padding-top {
    padding-top: 30px;
}
.padding-top-lg {
    padding-top: 40px;
}
.padding-top-xl {
    padding-top: 50px;
}
.padding-right-xs {
    padding-right: 10px;
}
.padding-right-sm {
    padding-right: 20px;
}
.padding-right {
    padding-right: 30px;
}
.padding-right-lg {
    padding-right: 40px;
}
.padding-right-xl {
    padding-right: 50px;
}
.padding-bottom-xs {
    padding-bottom: 10px;
}
.padding-bottom-sm {
    padding-bottom: 20px;
}
.padding-bottom {
    padding-bottom: 30px;
}
.padding-bottom-lg {
    padding-bottom: 40px;
}
.padding-bottom-xl {
    padding-bottom: 50px;
}
.padding-left-xs {
    padding-left: 10px;
}
.padding-left-sm {
    padding-left: 20px;
}
.padding-left {
    padding-left: 30px;
}
.padding-left-lg {
    padding-left: 40px;
}
.padding-left-xl {
    padding-left: 50px;
}
.padding-lr-xs {
    padding-left: 10px;
    padding-right: 10px;
}
.padding-lr-sm {
    padding-left: 20px;
    padding-right: 20px;
}
.padding-lr {
    padding-left: 30px;
    padding-right: 30px;
}
.padding-lr-lg {
    padding-left: 40px;
    padding-right: 40px;
}
.padding-lr-xl {
    padding-left: 50px;
    padding-right: 50px;
}
.padding-tb-xs {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padding-tb-sm {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding-tb {
    padding-top: 30px;
    padding-bottom: 30px;
}
.padding-tb-lg {
    padding-top: 40px;
    padding-bottom: 40px;
}
.padding-tb-xl {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* -- 浮动 -- */
.cf::after, .cf::before {
    content: " ";
    display: table;
}
.cf::after {
    clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}




.bg-red {
    background-color: var(--red);
    color: var(--white);
}
.bg-orange {
    background-color: var(--orange);
    color: var(--white);
}
.bg-yellow {
    background-color: var(--yellow);
    color: var(--black);
}
.bg-olive {
    background-color: var(--olive);
    color: var(--white);
}
.bg-green {
    background-color: var(--green);
    color: var(--white);
}
.bg-cyan {
    background-color: var(--cyan);
    color: var(--white);
}
.bg-blue {
    background-color: var(--blue);
    color: var(--white);
}
.bg-purple {
    background-color: var(--purple);
    color: var(--white);
}
.bg-mauve {
    background-color: var(--mauve);
    color: var(--white);
}
.bg-pink {
    background-color: var(--pink);
    color: var(--white);
}
.bg-brown {
    background-color: var(--brown);
    color: var(--white);
}
.bg-grey {
    background-color: var(--grey);
    color: var(--white);
}
.bg-gray {
    background-color: #f0f0f0;
    color: var(--black);
}
.bg-black {
    background-color: var(--black);
    color: var(--white);
}
.bg-white {
    background-color: var(--white);
    /* color: var(--darkGray); */
}
.bg-shadeTop {
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
    color: var(--white);
}
.bg-shadeBottom {
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1));
    color: var(--white);
}
.bg-red.light {
    color: var(--red);
    background-color: var(--redLight);
}
.bg-orange.light {
    color: var(--orange);
    background-color: var(--orangeLight);
}
.bg-yellow.light {
    color: var(--yellow);
    background-color: var(--yellowLight);
}
.bg-olive.light {
    color: var(--olive);
    background-color: var(--oliveLight);
}
.bg-green.light {
    color: var(--green);
    background-color: var(--greenLight);
}
.bg-cyan.light {
    color: var(--cyan);
    background-color: var(--cyanLight);
}
.bg-blue.light {
    color: var(--blue);
    background-color: var(--blueLight);
}
.bg-purple.light {
    color: var(--purple);
    background-color: var(--purpleLight);
}
.bg-mauve.light {
    color: var(--mauve);
    background-color: var(--mauveLight);
}
.bg-pink.light {
    color: var(--pink);
    background-color: var(--pinkLight);
}
.bg-brown.light {
    color: var(--brown);
    background-color: var(--brownLight);
}
.bg-grey.light {
    color: var(--grey);
    background-color: var(--greyLight);
}
.bg-gradual-red {
    background-image: var(--gradualRed);
    color: var(--white);
}
.bg-gradual-orange {
    background-image: var(--gradualOrange);
    color: var(--white);
}
.bg-gradual-green {
    background-image: var(--gradualGreen);
    color: var(--white);
}
.bg-gradual-purple {
    background-image: var(--gradualPurple);
    color: var(--white);
}
.bg-gradual-pink {
    background-image: var(--gradualPink);
    color: var(--white);
}
.bg-gradual-blue {
    background-image: var(--gradualBlue);
    color: var(--white);
}

.solid-bottom{
    border-bottom: 1px solid #DDE2EB;
}
.solid-bottom-orange{
    border-bottom: 1px solid var(--orange);
}
.clear-lastBorder>*:last-child{
    border: none;
}

/* text.css */
/* rem 转译px   时用 1rem */
/* rem 转译rpx   时用 2rem */
/* ================== 文本 ==================== */
.text-xs {
    font-size: 10px;
}
.text-22 {
    font-size: 11px;
}
.text-sm {
    font-size: 12px;
}
.text-26 {
    font-size: 13px;
}
.text-df {
    font-size: 14px;
}
.text-30{
    font-size: 15px;
}
.text-lg {
    font-size: 16px;
}
.text-xl {
    font-size: 18px;
}
.text-xxl {
    font-size: 22px;
}
.text-sl {
    font-size: 40px;
}
.text-xsl {
    font-size: 60px;
}
.text-Abc {
    text-transform: Capitalize;
}
.text-ABC {
    text-transform: Uppercase;
}
.text-abc {
    text-transform: Lowercase;
}
.text-price::before {
    content: "¥";
    font-size: 80%;
    margin-right: 2px;
}
.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.text-cut2 {
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break:break-all 
}
.text-bold {
    font-weight: bold;
}
.text-center {
    text-align: center;
}
.text-content {
    line-height: 1.6;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.text-red, .line-red, .lines-red {
    color: var(--red);
}
.text-orange, .line-orange, .lines-orange {
    color: var(--orange);
}
.text-yellow, .line-yellow, .lines-yellow {
    color: var(--yellow);
}
.text-olive, .line-olive, .lines-olive {
    color: var(--olive);
}
.text-green, .line-green, .lines-green {
    color: var(--green);
}
.text-cyan, .line-cyan, .lines-cyan {
    color: var(--cyan);
}
.text-blue, .line-blue, .lines-blue {
    color: var(--blue);
}
.text-purple, .line-purple, .lines-purple {
    color: var(--purple);
}
.text-mauve, .line-mauve, .lines-mauve {
    color: var(--mauve);
}
.text-pink, .line-pink, .lines-pink {
    color: var(--pink);
}
.text-brown, .line-brown, .lines-brown {
    color: var(--brown);
}
.text-grey, .line-grey, .lines-grey {
    color: var(--grey);
}
.text-gray, .line-gray, .lines-gray {
    color: var(--gray);
}
.text-black, .line-black, .lines-black {
    color: var(--black);
}
.text-white, .line-white, .lines-white {
    color: var(--white);
}
.text-black6{
    color: #666;
}
.text-black9{
    color: #999;
}


/* components.css */
/* rem 转译px   时用 1rem */
/* rem 转译rpx   时用 2rem */
/* 切换栏 */
.jl-tabs {
	display: flex;
	justify-content: space-around;
	border-bottom: .5px solid #DDE2EB;
	background-color: #fff;
}

.jl-tabs .item {
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #999;

}

.jl-tabs .item.active {
	color: var(--primary);
	border-bottom: 1.5px solid var(--primary);
}


/* 搜索框 */

.jl-search {
	font-size: 13px;
	background: #FFFFFF;
	border: 1px solid #DDE2EB;
	border-radius: 20px;
	display: flex;
	padding: 10px;
	align-items: center;

	position: relative;

}

.jl-search input {
	flex: 1;
	outline: none;
	border: none;
	font-size: 13px;
	text-indent: 1em;
}

.jl-search .icon-sousuo {
	color: #DDE2EB;
	font-size: 14px;
}

.jl-search-chooseBox {
	border: 1px solid #DDE2EB;
	display: flex;
	flex-direction: column;
	top: 42.5px;
	width: 100%;
	border-radius: 10px;
	z-index: 999;
	position: absolute;
	left: 0;
	background-color: #fff;
	padding: 0 10px;
	max-height: 175px;
	overflow-y: auto;
	display: none;
}

.jl-search-chooseBox>* {
	padding: 10px 0;
	border-bottom: 1px solid #DDE2EB;
}

.jl-search-chooseBox>*:last-child {
	border-bottom: none;

}

/* 标签 */
.jl-tag,
.jl-tag-lg,
.jl-tag-primary {
	font-size: 12px;
	color: #666;
	padding: 3px 10px;
	border: .5px solid #666;
	border-radius: 10px;
	background-color: #fff;
}

.jl-tag-lg {
	font-size: 14px;
	padding: 4.5px 20px;
	border-radius: 14.5px;
	text-align: center;
}

.jl-tag-primary {
	color: var(--primary);
	border: .5px solid var(--primary);
	;
}



/* mini药丸盒子 */
.jl-lrbox-mini {
	background: #F6F6F6;
	display: flex;
	padding: 4px 0;
	font-size: 12px;
	align-items: center;
}

.jl-lrbox-mini .l,
.jl-lrbox-mini .r {
	padding: 0 6px
}

.jl-lrbox-mini .r {
	border-left: .5px solid #D9D9D9
}

.jl-before-disc {
	position: relative;
	padding-left: 7.5px;

}

.jl-before-disc::after {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 2.5px;
	height: 2.5px;
	background: #999;
	border-radius: 50%;
}

.jl-tabTag {
	border-radius: 4px;
	display: flex;
}

.jl-tabTag>* {
	width: 100px;
	text-align: center;
	line-height: 35px;
}

.jl-tabTag>*:nth-child(1) {
	border: 1px solid #ddd;
	border-right: none
}

.jl-tabTag>*:nth-child(2) {
	border: 1px solid #ddd;
	border-left: none
}

.jl-tabTag *.active {
	border-color: #f60;
	background: #FF6600;
	color: #fff
}



.jl-bg-white {
    background: #fff;
}
.jl-bg-f2f2f2 {
    background: #f2f2f2;
}


.jl-text-30 {
    font-size: 30px;
}
.jl-text-24 {
    font-size: 24px;
}
.jl-text-22 {
    font-size: 22px;
}
.jl-text-20 {
    font-size: 20px;
}
.jl-text-center {
    text-align: center;
}

.jl-text-blue {
    color: #2370c3;
}

.jl-text-green {
    color: #009900;
}
.jl-text-red {
    color: #ff0000;
}
.jl-text-white {
    color: #fff;
}
.jl-text-black9 {
    color: #999;
}
.jl-text-bold {
    font-weight: bold;
}
.jl-padding-top-xs {
    padding-top: 10px;
}

.jl-padding-left-xs {
    padding-left: 10px;
}

.jl-padding-right-xs {
    padding-right: 10px;
}

.jl-padding-bottom-xs {
    padding-bottom: 10px;
}

.jl-padding-xs {
    padding: 10px;
}



.jl-padding-top-sm {
    padding-top: 20px;
}

.jl-padding-left-sm {
    padding-left: 20px;
}

.jl-padding-right-sm {
    padding-right: 20px;
}

.jl-padding-bottom-sm {
    padding-bottom: 20px;
}

.jl-padding-sm {
    padding: 20px;
}

.jl-margin-top-sm {
    margin-top: 20px;
}

.jl-margin-left-sm {
    margin-left: 20px;
}

.jl-margin-right-sm {
    margin-right: 20px;
}

.jl-margin-bottom-sm {
    margin-bottom: 20px;
}

.jl-margin-sm {
    padding: 20px;
}

.jl-margin-top-xs {
    margin-top: 10px;
}

.jl-margin-left-xs {
    margin-left: 10px;
}

.jl-margin-right-xs {
    margin-right: 10px;
}

.jl-margin-bottom-xs {
    margin-bottom: 10px;
}

.jl-margin-xs {
    padding: 10px;
}

.jl-solid-bottom {
    border-bottom: 1px solid #dde2eb;
}

.jl-solid {
    border: 1px solid #dde2eb;
}

.jl-dashed-left{
    border-left: 1px dashed #dde2eb;
}
.jl-float-left {
    float: left;
}

.jl-float-right {
    float: right;
}
.jl-columnCls-2{
    overflow: hidden;
}
.jl-columnCls-2>* {
    box-sizing: border-box;
    width: 50%;
    float: left;
}



.jl-columnCls-2.gap>* {
    margin-bottom: 20px;
}

.jl-columnCls-2.gap>*:nth-child(2n) {
    padding-left: 10px;
}

.jl-columnCls-2.gap>*:nth-child(2n+1) {
    padding-right: 10px;
}


.jl-columnCls-5{
    overflow: hidden;
}
.jl-columnCls-5>* {
    box-sizing: border-box;
    width: 20%;
    float: left;
}

.jl-columnCls-4{
    overflow: hidden;
}
.jl-columnCls-4>* {
    box-sizing: border-box;
    width: 25%;
    float: left;
}
/* .jl-columnCls-4.gap>* {
    margin-bottom: 20px;
}

.jl-columnCls-4.gap>*:nth-child(4n) {
    padding-left: 10px;
}

.jl-columnCls-4.gap>*:nth-child(2n+1) {
    padding-right: 10px;
} */



.jl-columnCls-solid>*{
    border-right: 1px solid #dde2eb;
    border-bottom: 1px solid #dde2eb;
}




.jl-ib-middle {
    display: inline-block;
    vertical-align: middle;
}

.jl-tag-1 {
    font-size: 20px;
    padding: 0 4px;
    background-color: #dc3545;
    color: #fff;
    border-radius: 4px;
    font-weight: bold;
}


.s-icoRow {
	display: flex;
	flex-wrap: wrap;

}

.s-icoRow>* {
	width: 25%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.s-icoRow>* .icoBox {
	background-color: #FFFAED;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.s-icoRow>* .icoBox .iconfont {
	font-size: 50px;
	color: #fff;
}

.jl-icoBox {
	background-color: #FFFAED;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.jl-icoBox.xs {
	background-color: #FFFAED;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

}

.jl-icoBox .iconfont {
	font-size: 50px;
	color: #fff;
}

.jl-icoBox.xs .iconfont {
	font-size: 30px;
	color: #fff;
}
/* rem 转译px   时用 1rem */
/* rem 转译rpx   时用 2rem */
.jl-tag-timeEnd{
    font-size: 10px;
    color: #fff;
    background: #D9D9D9;
    padding: 1px 5px;
    position: absolute;
    top: 10px;
    left: -15px;
    transform: rotate(-45deg);
    width: 75px;
    text-align: center;
    
}
.borderBoxHeadCls:nth-child(2n-1)  {
    border-top: 3px solid #0099FF;
}
.borderBoxHeadCls:nth-child(2n)  {
    border-top: 3px solid #FF6600;
}