﻿@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	outline: 0;
	list-style: none;
	border: none;
	font-weight: normal;
	text-decoration: none;
box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	/*overflow: hidden;*/
}

body {
	background: #f7f7f7;
}

img {
	vertical-align: middle;
}

a {
	text-decoration: none;
}


/* flex */
.flex {
	display: flex;
}

.align-center {
	align-items: center;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.justify-around {
	justify-content: space-around;
}

.justify-end {
	justify-content: flex-end;
}

.justify-start {
	justify-content: flex-start;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-column {
	flex-direction: column;
}

.flex-column-reverse {
	flex-direction: column-reverse;
}

.flex-row {
	flex-direction: row;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-shrink {
	flex-shrink: 0;
}

.self-center {
	align-self: center;
}

.self-start {
	align-self: flex-start;
}

.self-end {
	align-self: flex-end;
}


/* padding */
.pl-0 {
	padding-left: 0 !important;
}

.pl-0_5 {
	padding-left: 2.5px !important;
}

.pl-1 {
	padding-left: 5px !important;
}

.pl-2 {
	padding-left: 10px !important;
}

.pl-3 {
	padding-left: 15px !important;
}

.pl-4 {
	padding-left: 20px !important;
}

.pl-5 {
	padding-left: 25px !important;
}

.pl-6 {
	padding-left: 30px !important;
}

.pl-7 {
	padding-left: 35px !important;
}

.pl-8 {
	padding-left: 40px !important;
}

.pl-9 {
	padding-left: 45px !important;
}

.pr-0 {
	padding-right: 0px !important;
}

.pr-0_5 {
	padding-right: 2.5px !important;
}

.pr-1 {
	padding-right: 5px !important;
}

.pr-2 {
	padding-right: 10px !important;
}

.pr-3 {
	padding-right: 15px !important;
}

.pr-4 {
	padding-right: 20px !important;
}

.pr-5 {
	padding-right: 25px !important;
}

.pr-6 {
	padding-right: 30px !important;
}

.pr-7 {
	padding-right: 35px !important;
}

.pr-8 {
	padding-right: 40px !important;
}

.pr-9 {
	padding-right: 45px !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-0_5 {
	padding-top: 2.5px !important;
}

.pt-1 {
	padding-top: 5px !important;
}

.pt-2 {
	padding-top: 10px !important;
}

.pt-3 {
	padding-top: 15px !important;
}

.pt-4 {
	padding-top: 20px !important;
}

.pt-5 {
	padding-top: 25px !important;
}

.pt-6 {
	padding-top: 30px !important;
}

.pt-7 {
	padding-top: 35px !important;
}

.pt-8 {
	padding-top: 40px !important;
}

.pt-9 {
	padding-top: 45px !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-0_5 {
	padding-bottom: 2.5px !important;
}

.pb-1 {
	padding-bottom: 5px !important;
}

.pb-2 {
	padding-bottom: 10px !important;
}

.pb-3 {
	padding-bottom: 15px !important;
}

.pb-4 {
	padding-bottom: 20px !important;
}

.pb-5 {
	padding-bottom: 25px !important;
}

.pb-6 {
	padding-bottom: 30px !important;
}

.pb-7 {
	padding-bottom: 35px !important;
}

.pb-8 {
	padding-bottom: 40px !important;
}

.pb-9 {
	padding-bottom: 45px !important;
}

.pb-10 {
	padding-bottom: 65px !important;
}

.px-0_5 {
	padding: 0 2.5px;
}

.px-1 {
	padding: 0 5px;
}

.px-2 {
	padding: 0 10px;
}

.px-3 {
	padding: 0 15px;
}

.px-4 {
	padding: 0 20px;
}

.px-5 {
	padding: 0 25px;
}

.px-6 {
	padding: 0 30px;
}

.px-7 {
	padding: 0 35px;
}

.px-8 {
	padding: 0 40px;
}

.px-9 {
	padding: 0 45px;
}

.py-0_5 {
	padding: 2.5px 0;
}

.py-1 {
	padding: 5px 0;
}

.py-2 {
	padding: 10px 0;
}

.py-3 {
	padding: 15px 0;
}

.py-4 {
	padding: 20px 0;
}

.py-5 {
	padding: 25px 0;
}

.py-6 {
	padding: 30px 0;
}

.py-7 {
	padding: 35px 0;
}

.py-8 {
	padding: 40px 0;
}

.py-9 {
	padding: 45px 0;
}


.p-0_5 {
	padding: 2.5px;
}

.p-1 {
	padding: 5px;
}

.p-2 {
	padding: 10px;
}

.p-3 {
	padding: 15px;
}

.p-4 {
	padding: 20px;
}

.p-5 {
	padding: 25px;
}

.p-6 {
	padding: 30px;
}

.p-7 {
	padding: 35px;
}

.p-8 {
	padding: 40px;
}

.p-9 {
	padding: 45px;
}

/*  */
.ml-0 {
	margin-left: 0px !important;
}

.ml-0_5 {
	margin-left: 2.5px !important;
}

.ml-1 {
	margin-left: 5px !important;
}

.ml-2 {
	margin-left: 10px !important;
}

.ml-3 {
	margin-left: 15px !important;
}

.ml-4 {
	margin-left: 20px !important;
}

.ml-5 {
	margin-left: 25px !important;
}

.ml-6 {
	margin-left: 30px !important;
}

.ml-7 {
	margin-left: 35px !important;
}

.ml-8 {
	margin-left: 40px !important;
}

.ml-9 {
	margin-left: 45px !important;
}

.mr-0 {
	margin-right: 0px !important;
}

.mr-0_5 {
	margin-right: 2.5px !important;
}

.mr-1 {
	margin-right: 5px !important;
}

.mr-2 {
	margin-right: 10px !important;
}

.mr-3 {
	margin-right: 15px !important;
}

.mr-4 {
	margin-right: 20px !important;
}

.mr-5 {
	margin-right: 25px !important;
}

.mr-6 {
	margin-right: 30px !important;
}

.mr-7 {
	margin-right: 35px !important;
}

.mr-8 {
	margin-right: 40px !important;
}

.mr-9 {
	margin-right: 45px !important;
}

.m-auto {
	margin: 0 auto;
}

.mt-0 {
	margin-top: 0px !important;
}

.mt-0_5 {
	margin-top: 2.5px !important;
}

.mt-1 {
	margin-top: 5px !important;
}

.mt-2 {
	margin-top: 10px !important;
}

.mt-3 {
	margin-top: 15px !important;
}

.mt-4 {
	margin-top: 20px !important;
}

.mt-5 {
	margin-top: 25px !important;
}

.mt-6 {
	margin-top: 30px !important;
}

.mt-7 {
	margin-top: 35px !important;
}

.mt-8 {
	margin-top: 40px !important;
}

.mt-9 {
	margin-top: 45px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.mb-0_5 {
	margin-bottom: 2.5px !important;
}

.mb-1 {
	margin-bottom: 5px !important;
}

.mb-2 {
	margin-bottom: 10px !important;
}

.mb-3 {
	margin-bottom: 15px !important;
}

.mb-4 {
	margin-bottom: 20px !important;
}

.mb-5 {
	margin-bottom: 25px !important;
}

.mb-6 {
	margin-bottom: 30px !important;
}

.mb-7 {
	margin-bottom: 35px !important;
}

.mb-8 {
	margin-bottom: 40px !important;
}

.mb-9 {
	margin-bottom: 45px !important;
}

.mx-0_5 {
	margin: 0 2.5px;
}

.mx-1 {
	margin: 0 5px;
}

.mx-2 {
	margin: 0 10px;
}

.mx-3 {
	margin: 0 15px;
}

.mx-4 {
	margin: 0 20px;
}

.mx-5 {
	margin: 0 25px;
}

.my-0_5 {
	margin: 2.5px 0;
}

.my-1 {
	margin: 5px 0;
}

.my-2 {
	margin: 10px 0;
}

.my-3 {
	margin: 15px 0;
}

.my-4 {
	margin: 20px 0;
}

.my-5 {
	margin: 25px 0;
}

.my-6 {
	margin: 30px 0;
}

.my-7 {
	margin: 35px 0;
}

.my-8 {
	margin: 40px 0;
}

.my-9 {
	margin: 45px 0;
}

.m-0_5 {
	margin: 2.5px;
}

.m-1 {
	margin: 5px;
}

.m-2 {
	margin: 10px;
}

.m-3 {
	margin: 15px;
}

.m-4 {
	margin: 20px;
}

.m-5 {
	margin: 25px;
}

.m-6 {
	margin: 30px;
}

.m-7 {
	margin: 35px;
}

.m-8 {
	margin: 40px;
}

.m-9 {
	margin: 45px;
}


/*  */
.font-xs {
	font-size: 12px;
}

.font-sm {
	font-size: 14px;
}

.font-md {
	font-size: 16px;
}

.font-lg {
	font-size: 18px !important;
}

.font-max {
	font-size: 24px;
}

.font-bold {
	font-weight: bold;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-overflow {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

/*  */
.text-white {
	color: #fff !important;
}

.text-orange {
	color: #ff6e07 !important;
}

.text-gray {
	color: #2a2828 !important;
}

.text-grey {
	color: #666 !important;
}

.text-black {
	color: #000000;
}

.text-blue {
	color: #0d75ea;
}

.text-red {
	color: #f92309 !important;
}

.text-green {
	color: #01a588 !important;
}

.text-yellow {
	color: #e3a30d !important;
}

.text-brown {
	color: #fad376;
}
.text-qinse{ color: #2fccdc;}
.text-light {
	color: #fed440;
}

.text-gray-white {
	color: #c5c4bc;
}

.text-dark-gray {
	color: #4e4e4e;
}

.text-violet {
	color: #602ba4;
}

.text-1 {
	color: #111111;
}

.text-2 {
	color: #222222;
}

.text-3 {
	color: #333333;
}

.text-4 {
	color: #444444;
}

.text-5 {
	color: #555555;
}

.text-6 {
	color: #666666;
}

.text-7 {
	color: #777777;
}

.text-8 {
	color: #888888;
}

.text-9 {
	color: #999999;
}

.text-a {
	color: #AAAAAA;
}

.text-b {
	color: #BBBBBB;
}

.text-c {
	color: #CCCCCC;
}

.text-d {
	color: #DDDDDD;
}

.text-e {
	color: #EEEEEE;
}

/*  */
.bg-white {
	background: #fff !important;
}
.bg-black {
	background: black;
}

.bg-violet {
	background: #f4ebff;
}

.bg-blue {
	background: #0c51b0;
}
.bg-light-blue {
	background: #f1f8ff;
}
.bg-red {
	background: #f92309;
}
.bg-hui {
	background: #b4aaaa;
}
.bg-green {
	background: #01a588 !important;
}

.bg-yellow {
	background: #ff8500;
}

.bg-canary-yellow {
	background: #fff6d9;
}
.bg-grey {
	background: #F7F7F7 !important;
}
.bg-gray {
	background: #eee !important;
}
.bg-red-linear {
	background: linear-gradient(to right, #f8211c, #ff6134) !important;
}

.bg-green-linear {
	background: linear-gradient(to right, #63dd32, #2fcd30) !important;
}
.bg-0 {
	background: rgba(0, 0, 0, 0);
}

.bg-1 {
	background: #111111;
}

.bg-2 {
	background: #222222;
}

.bg-3 {
	background: #333333;
}

.bg-4 {
	background: #444444;
}

.bg-5 {
	background: #555555;
}

.bg-6 {
	background: #666666;
}

.bg-7 {
	background: #777777;
}

.bg-8 {
	background: #888888;
}

.bg-9 {
	background: #999999;
}

.bg-a {
	background: #AAAAAA;
}

.bg-b {
	background: #BBBBBB;
}

.bg-c {
	background: #CCCCCC;
}

.bg-d {
	background: #DDDDDD;
}

.bg-e {
	background: #EEEEEE;
}

/*  */
.radius {
	border-radius: 3px;
}

.radius-1 {
	border-radius: 5px;
}

.radius-2 {
	border-radius: 10px;
}

.radius-3 {
	border-radius: 15px;
}

.radius-4 {
	border-radius: 20px;
}

.radius-5 {
	border-radius: 25px;
}

.radius-6 {
	border-radius: 30px;
}

.radius-7 {
	border-radius: 35px;
}

.radius-8 {
	border-radius: 40px;
}

.radius-9 {
	border-radius: 45px;
}

.radius-all {
	border-radius: 100%;
}

/*  */
.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}

.position-fixed {
	position: fixed;
}

.position-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*  */
.block {
	display: block;
}

.overflow-hidden {
	overflow: hidden;
}

.overflow-x-auto {
	overflow-x: auto;
}

.overflow-y-auto {
	overflow-y: auto;
}

/*  */
.border {
	border: 1px solid #F7F7F7 !important;
}

.border-blue {
	border: 1px solid #2385f4;
}

.border-top {
	border-top: 1px solid #eee;
}

.border-right {
	border-right: 1px solid #eee !important;
}

.border-bottom {
	border-bottom: 1px solid #F7F7F7 !important;
}

.border-left {
	border-left: 1px solid #f4f4f4;
}

.border-none {
	border: none !important;
}

/*  */
.box-shadow {
	box-shadow: 0 2px 8px #ebebeb;
}

.box-shadow-1 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.box-shadow-2 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.box-shadow-3 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.box-shadow-4 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.box-shadow-5 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.box-shadow-6 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.box-shadow-7 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.box-shadow-8 {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.paybtn
{
    color: #f92309;
    height: 25px;
    line-height: 25px;
    border: 1px solid #50ca64;
}