/**
 * author: wenmengqin
 * date: 2019-06-01
 * 全局共用样式
 */
body {
    /*font-size: 14px;*/
}

.container{
    width: 1200px !important;
}

.inline-block {
    display: inline-block !important;
}

.inline {
    display: inline !important;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

/*flex-row ==============================*/
.flex-row {
    display: flex;
    flex-direction: row;
}

.row-start {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.row-end {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.no-shrink {
    flex-shrink: 0;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.align-items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.row-between {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.row-content-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.row-double-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.row-betw-start {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.row-betw-center {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row-betw-end {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.row-around {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.row-around-center {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.row-reverse {
    display: flex;
    flex-direction: row-reverse;
}

/*flex-col ==============================*/
.flex-col {
    display: flex;
    flex-direction: column;
}

.col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-around {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.col-center {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.col-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.col-double-center {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.col-betw-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* 栅格化布局样式 ==============================*/
/*.row {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}*/

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    padding-left: 15px;
    padding-right: 15px;
}

.col-2 {
    width: 16.666%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333333%;
}

.col-5 {
    width: 41.666666666666663%;
}

.col-6 {
    width: 50%;
}

/*.col-7 {
    width: 58.33333333333333%;
}*/

/*.col-8 {*/
/*    width: 66.66666666666666%;*/
/*}*/

/*.col-9 {*/
/*    width: 75%;*/
/*}*/

/*.col-10 {*/
/*    width: 83.33333333333333%;*/
/*}*/

/*.col-11 {*/
/*    width: 91.66666666666666%;*/
/*}*/

/*.col-12 {*/
/*    width: 100%;*/
/*}*/

/*label样式 ===================*/
label {
    font-weight: unset;
    margin-bottom: unset;
}
.label {
    padding: 3px 10px;
    font-size: 12px;
    height: unset !important;
    line-height: unset !important;
}

.label-blue {
    background: #dae7ff;
    color: #5591ff;
}

.label-theme {
    background: #e5007f;
}

.label-gray {
    background: #eee;
    color: #999;
}

/*tag*/
.tag {
    padding: 10px;
    color: #666;
    border: 1px solid #e2e2e2;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}
.tag-theme {
    color: #e5007f;
    border-color: #e5007f;
}

/*btn*/
.btn {
    padding: 6px 15px !important;
    color: #fff;
    height: unset;
}

.btn-theme {
    background: #e5007f;
}

.btn:hover {
    color: #fff !important;
    opacity: 0.8;
}

.btn-plain, .btn-plain:hover{
    color: #e5007f !important;
    border:1px solid #e5007f ;
}

/*margin ==============================*/
.m-auto {
    margin: auto;
}

.m-xs {
    margin: 5px;
}

.m-sm {
    margin: 10px;
}

.m-md {
    margin: 15px;
}

.m-lg {
    margin: 20px;
}

.m-xl {
    margin: 25px;
}

/* margin-left ------------- */
.ml-xs {
    margin-left: 5px;
}

.ml-sm {
    margin-left: 10px;
}

.ml-md {
    margin-left: 15px;
}

.ml-lg {
    margin-left: 20px;
}

.ml-xl {
    margin-left: 25px;
}

/*margin-right ----------------*/
.mr-0 {
    margin-right: 0 !important;
}

.mr-xs {
    margin-right: 5px !important;
}

.mr-sm {
    margin-right: 10px;
}

.mr-md {
    margin-right: 15px;
}

.mr-lg {
    margin-right: 20px;
}

.mr-xl {
    margin-right: 25px;
}

/*margin-top --------------*/
.mt-xs {
    margin-top: 5px;
}

.mt-sm {
    margin-top: 10px;
}

.mt-md {
    margin-top: 15px;
}

.mt-lg {
    margin-top: 20px;
}

.mt-xl {
    margin-top: 25px;
}

.mt-xxl {
    margin-top: 30px;
}

/*margin-bottom ------------*/
.mb-xs {
    margin-bottom: 5px;
}

.mb-sm {
    margin-bottom: 10px;
}

.mb-md {
    margin-bottom: 15px;
}

.mb-lg {
    margin-bottom: 20px;
}

.mb-xl {
    margin-bottom: 25px;
}

.mb-xxl {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-not-last:last-child {
    margin-bottom: 0;
}
/*水平方向margin -----------*/
.m-x-sm {
    margin-left: 5px;
    margin-right: 5px;
}

.m-x-md {
    margin-left: 10px;
    margin-right: 10px;
}

.m-x-lg {
    margin-left: 15px;
    margin-right: 15px;
}

.m-x-xl {
    margin-left: 20px;
    margin-right: 20px;
}

/*竖直方向margin ---------*/
.m-y-xs {
    margin-top: 5px;
    margin-bottom: 5px;
}

.m-y-sm {
    margin-top: 10px;
    margin-bottom: 10px;
}

.m-y-md {
    margin-top: 15px;
    margin-bottom: 15px;
}

.m-y-lg {
    margin-top: 20px;
    margin-bottom: 20px;
}

.m-y-xl {
    margin-top: 25px;
    margin-bottom: 25px;
}

/*padding ==============================*/
.p-0 {
    padding: 0;
}

.p-xs {
    padding: 5px;
}

.p-sm {
    padding: 10px;
}

.p-md {
    padding: 15px;
}

.p-lg {
    padding: 20px;
}

.p-xl {
    padding: 25px;
}

.p-xxl {
    padding: 30px !important;
}

/*padding-left -------------*/
.pl-xs {
    padding-left: 5px;
}

.pl-sm {
    padding-left: 10px;
}

.pl-md {
    padding-left: 15px;
}

.pl-lg {
    padding-left: 20px;
}

.pl-xl {
    padding-left: 25px;
}

/*padding-right ----------------*/
.pr-xs {
    padding-right: 5px;
}

.pr-sm {
    padding-right: 10px;
}

.pr-md {
    padding-right: 15px;
}

.pr-lg {
    padding-right: 20px;
}

.pr-xl {
    padding-right: 25px;
}

/*padding-top --------------*/
.pt-xs {
    padding-top: 5px;
}

.pt-sm {
    padding-top: 10px;
}

.pt-md {
    padding-top: 15px;
}

.pt-lg {
    padding-top: 20px;
}

.pt-xl {
    padding-top: 25px;
}

/*padding-bottom ------------*/
.pb-0 {
    padding-bottom: 0 !important;
}

.pb-xs {
    padding-bottom: 5px;
}

.pb-sm {
    padding-bottom: 10px;
}

.pb-md {
    padding-bottom: 15px;
}

.pb-lg {
    padding-bottom: 20px;
}

.pb-xl {
    padding-bottom: 25px;
}

.pb-xxl {
    padding-bottom: 30px;
}

/*水平方向padding -----------*/
.p-x-0 {
    padding-left: 0;
    padding-right: 0;
}

.p-x-xs {
    padding-left: 5px;
    padding-right: 5px;
}

.p-x-sm {
    padding-left: 10px;
    padding-right: 10px;
}

.p-x-md {
    padding-left: 15px;
    padding-right: 15px;
}

.p-x-lg {
    padding-left: 20px;
    padding-right: 20px;
}

.p-x-xl {
    padding-left: 25px;
    padding-right: 25px;
}

.p-x-xxl {
    padding-left: 30px;
    padding-right: 30px;
}

/*竖直方向padding ---------*/
.p-y-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.p-y-xs {
    padding-top: 5px;
    padding-bottom: 5px;
}

.p-y-sm {
    padding-top: 10px;
    padding-bottom: 10px;
}

.p-y-md {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-y-lg {
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-y-xl {
    padding-top: 25px;
    padding-bottom: 25px;
}

.p-y-xxl {
    padding-top: 30px;
    padding-bottom: 30px;
}

/*文本位置 ==============================*/
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.line-through {
    text-decoration: line-through;
}
.underline {
    text-decoration: underline;
}
.text-indent-2 {
    text-indent: 2em;
}
.no-wrap{
    white-space: nowrap;
}

/*显示一行*/
.line-1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*显示两行*/
.line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.over-hide {
    overflow: hidden;
}

/*字体大小 ==============================*/
.font-xxs {
    font-size: 8px;
}

.font-xs {
    font-size: 10px !important;
}

.font-sm {
    font-size: 12px !important;
}

.font-base {
    font-size: 14px !important;
}

.font-lg {
    font-size: 16px !important;
}

.font-xl {
    font-size: 18px !important;
    line-height: 1;
}

.font-xxl {
    font-size: 20px !important;
}

.font-26 {
    font-size: 26px !important;
}

.font-34 {
    font-size: 34px !important;
}

.font-40 {
    font-size: 40px !important;
}

.font-bold-ms {
    font-weight: 400;
    color: #353535;
}

.font-bold {
    font-weight: bold;
    color: #555;
}

/*字体颜色 ==============================*/
.color-theme {
    color: #e5007f;
}

.color-success {
    color: #00cc88 !important;
}

.color-error {
    color: #ff4949 !important;
}

.color-warning {
    color: #ffd400 !important;
}

.color-info {
    color: #4d88ff !important;
}

.color-white {
    color: #fff !important;
}

.color-orange {
    color: #ff9100 !important;
}

.color-yellow {
    color: #ffb400 !important;
}

.color-blue {
    color: #5591ff !important;
}

.color-0,
.color-base {
    color: #333;
}

.color-1, .color-1:hover {
    color: #666 !important;
}

.color-2 {
    color: #999;
}

.color-3 {
    color: #aaa;
}

.color-4 {
    color: #b2b2b2;
}

.color-5 {
    color: #ccc;
}

.color-888 {
    color: #888f !important;
}

.hover-color-theme:hover{
    color:#e5007f;
}

/*行高 ==============================*/
.line-height-base {
    line-height: 1;
}
.line-height-en {
    line-height: 1.3;
}
.line-height-zh {
    line-height: 1.5;
}

/*圆角 ==============================*/
.round-0 {
    border-radius: 0 !important;
}

.round-sm,
.round-sm::after {
    border-radius: 2px;
}

.round-md,
.round,
.round-md::after,
.round::after {
    border-radius: 4px !important;
}

.round-lg,
.round-lg::after {
    border-radius: 8px;
}

.round-xl,
.round-xl::after {
    border-radius: 15px;
}

.round-xxl,
.round-xxl::after {
    border-radius: 30px;
}

.round-top-xl {
    border-radius: 15px 15px 0 0;
}

.rounded {
    border-radius: 50%;
}

/*阴影 ==============================*/
.box-shadow-sm {
    box-shadow: 0 1px 4px 0 #efefef;
}

.box-shadow-md,
.box-shadow {
    box-shadow: 0 0 10px 0 rgba(227, 227, 227, 0.5);
}

.box-shadow-xl {
    box-shadow: 0px 4px 15px 0px rgba(176, 176, 176, 0.5);
}

/*透明度背景色 ==============================*/
.opacity-0 {
    opacity: 0;
}

/*背景色 ==============================*/
.no-bg {
    background-color: unset !important;
}

.bg-theme {
    background: #e5007f;
}

.bg-light-theme-1 {
    background: #fff9fc;
}

.bg-light-theme-2 {
    background: #fdeaf3;
}

.bg-grey {
    background: #f5f5f5 !important;
}
.bg-dark-gray {
    background: #eee !important;
}

.bg-white {
    background: #fff !important;
}

.bg-orange {
    background: #ff9100;
}

.bg-yellow {
    background: #ffb400;
}

.bg-light-orange {
    background: #fff4e6;
}

.bg-green {
    background: #00df27;
}

.bg-blue {
    background: #5591ff;
}

.bg-light-gray {
    background: #fafbfc;
}

/*边框 ==============================*/
.border-line {
    border: 1px solid #eee;
}
.border-bottom-line {
    border-bottom: 1px solid #eee;
}
.border-right-line {
    border-right: 1px solid #eee;
}

.border,
.border-top,
.border-bottom,
.border-left,
.border-right,
.border-bottom-dashed,
.border-theme,
.border-top-theme {
    position: relative;
}

.border {
    border: 1px solid #eee;
}
/*.border::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    transform-origin: center;*/
/*    box-sizing: border-box;*/
/*    pointer-events: none;*/
/*    top: -50%;*/
/*    left: -50%;*/
/*    right: -50%;*/
/*    bottom: -50%;*/
/*    border: 1px solid #e2e2e2;*/
/*    transform: scale(0.5);*/
/*}*/

.border-theme::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid #e5007f;
    transform: scale(0.5);
}

.border-top::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid transparent;
    border-top-color: #e2e2e2;
    transform: scale(0.5);
}

.border-top-theme::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid transparent;
    border-top-color: #e5007f;
    transform: scale(0.5);
}

.border-bottom::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid transparent;
    border-bottom-color: #e2e2e2;
    transform: scale(0.5);
}

/* 虚线边框 */
.border-bottom-dashed::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px dashed transparent;
    border-bottom-color: #e2e2e2;
    transform: scale(0.5);
}

.border-bottom-last::last-child,
.border-bottom-last::after {
    border: none;
}

.border-left::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid transparent;
    border-left-color: #e2e2e2;
    transform: scale(0.5);
}

.border-right::after {
    content: "";
    position: absolute;
    transform-origin: center;
    box-sizing: border-box;
    pointer-events: none;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    border: 1px solid transparent;
    border-right-color: #e2e2e2;
    transform: scale(0.5);
}

.border-none::after,
.border-none {
    border: unset !important;
}

/*宽度 ==============================*/
.full-width {
    width: 100%;
}

.width-inherit {
    width: inherit;
}

.full-height {
    height: 100%;
}

.half-width {
    width: 50%;
}

/*定位 ==============================*/
.posit-rel {
    position: relative;
}

.posit-abs {
    position: absolute;
}

.posit-fixed {
    position: fixed;
}

.top-0 {
    top: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.top-5 {
    top: 5px;
}

.top-10 {
    top: 10px;
}

.bottom-5 {
    bottom: 5px;
}

.bottom-10 {
    bottom: 10px;
}

.bottom-20 {
    bottom: 20px;
}

.left-5 {
    left: 5px;
}

.left-10 {
    left: 10px;
}

.right-5 {
    right: 5px;
}

.right-10 {
    right: 10px;
}

.left-percent-100 {
    left: 100%;
}

.fixed-top {
    position: fixed;
    top: 0;
    z-index: 99;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.cursor-pointer {
    cursor: pointer;
}
.w-60 {
    width: 60px;
}
.w-75 {
    width: 75px;
}
.w-80 {
    width: 80px;
}
.w-100 {
    width: 100px;
}
.w-120 {
    width: 120px;
}
.w-240 {
    width: 240px;
}
.w-300 {
    width: 300px;
}
.h-100 {
    height: 100px;
}
.h-140 {
    height: 140px;
}

.tooltip {
    width: 200px;
}

.input-label {
    margin-right: 15px;
    text-align: right;
    min-width: 60px;
}

.certificate:hover img {
    display: block !important;
}

/*translate ==============================*/
.translateY__25 {
    transform: translateY(-25px);
}
