@charset "UTF-8";
.maincolor {
  background-color: var(--maincolor);
}

:root {
  /* Color 可以自定义相关配色 */
  /* var属性兼容性 --> https://www.caniuse.com/#feat=css-variables */
  /* 标准色 */
  --red: #F84544;
  --rose: #D00909;
  --wine: #781400; /* 字-红描边 */
  --orange: #FF7E05; /* 主题橙字 */
  --orange2: #FEBB22;
  --deeporange: #E63D05;
  --yellow: #FFBC05; /* 主题背景红 */
  --yellow2: #FFE958; /* 按钮描边黄 */
  --yellow3: #FFD505; /* 二级按钮黄 */
  --gold: #c9a97f;
  --olive: #D4E669;
  --green: #7EB92C;
  --green2: #238918;
  --cyan: #29BFB5;
  --deepcyan: #20987a;
  --lake: #7AE1CA;
  --lake: #7AE1CA;
  --skyblue: #0796E4;
  --skyblue2: #2582BC;
  --blue: #3754E7;
  --sapphire: #280AD1;
  --purple: #6739b6;
  --mauve: #9c26b0;
  --pink: #e03997;
  --brown: #735138;
  --grey: #666666;
  --black: #333333;
  --realblack: #000000;
  --gray: #9C9C9C;
  --bluegray: #64767F;
  --linegray: #D9D9D9;
  --white: #ffffff;
  /* 浅色 */
  --redLight: #FFEFEF;
  --orangeLight: #FFF2C1;
  --orangeLight2: #F6F3BA;
  --orangeLight3: #FEF6E9;
  --yellowLight: #e8e1d8; /* 米黄底 */
  --oliveLight: #e8f4d9;
  --greenLight: #DEF4BE;
  --cyanLight: #d2f1f0;
  --blueLight: #EDF6FF;
  --purpleLight: #e1d7f0;
  --mauveLight: #ebd4ef;
  --pinkLight: #f9d7ea;
  --brownLight: #ede1d9;
  --greyLight: #F8F8F8;
  /* 深色 */
  --blueDark:#2D82FF;
  /* 渐变色 */
  --gradualRed: linear-gradient(to top left, rgba(107, 33, 35, 1) 0%, rgba(107, 33, 35, .5) 70%, rgba(107, 33, 35, 0) 100%);
  --gradualGold: linear-gradient(to bottom, #FDC006, #FBDD33);
  --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: 0px 4px 8px;
  --redShadow: rgba(204, 69, 59, 0.2);
  --orangeShadow: rgba(255, 126, 5, 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(17, 185, 137, 0.5);
  --blueShadow: rgba(0, 102, 204, 0.2);
  --skyblueShadow: rgba(94, 174, 240, 0.3);
  --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);
  --blackShadow2: rgba(0, 0, 0, 0.1);
  /*主题色*/
  --maincolor:rgba(0,0,0,1);
}

.shadow-orange {
  box-shadow: var(--ShadowSize) var(--orangeShadow);
}

.shadow-black {
  box-shadow: var(--ShadowSize) var(--blackShadow);
}

.shadow-lightblack {
  box-shadow: var(--ShadowSize) var(--blackShadow2);
}

.shadow-blue {
  box-shadow: var(--ShadowSize) var(--blueShadow);
}

.shadow-skyblue {
  box-shadow: var(--ShadowSize) var(--skyblueShadow);
}

.shadow-cyan {
  box-shadow: var(--ShadowSize) var(--cyanShadow);
}

html,
body {
  background-color: #f6f6f6;
}

html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  margin: 0 auto;
}

fieldset,
img,
input,
button {
  border: none;
  padding: 0;
  margin: 0;
  outline-style: none;
}

ul,
ol {
  list-style: none;
}

input {
  padding-top: 0;
  padding-bottom: 0;
}

select,
input {
  vertical-align: middle;
}

textarea {
  resize: none;
}

img {
  border: 0;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
  /*IE/7/6*/
}

.tran {
  transition: all 0.5s 0s;
  -moz-transition: all 0.5s 0s;
  -webkit-transition: all 0.5s 0s;
  -o-transition: all 0.5s 0s;
}

a {
  text-decoration: none;
}
a:hover {
  color: initial;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
  font-weight: normal;
  line-height: 100%;
}

s,
i,
em {
  font-style: normal;
  text-decoration: none;
}

.cl {
  clear: both;
}

.w {
  width: 1200px;
  margin: 0 auto;
}

.pointer {
  cursor: pointer;
}

.layui-fluid {
  padding: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.al {
  text-align: left;
}

.ac {
  text-align: center;
}

.ar {
  text-align: right;
}

.hide {
  display: none;
}

.flex, .paging, .main .main-header {
  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;
}

.flex-twice {
  flex: 2;
}

.flex-treble {
  flex: 3;
}

.flex-direction {
  flex-direction: column;
}

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center, .paging, .main .main-header {
  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, .paging {
  justify-content: flex-end;
}

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

.justify-between, .main .main-header {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

/* ==================
          Gird
 ==================== */
.grid-container {
  display: grid;
}

/* ==================
          文本
 ==================== */
.text-xs {
  font-size: 0.7em;
}

.text-sm {
  font-size: 12px;
}

.text-df {
  font-size: 14px;
}

.text-lg {
  font-size: 16px;
}

.text-xl {
  font-size: 18px;
}

.text-xxl, .layout .layout-top .layout-top-tools a {
  font-size: 22px;
}

.text-xxxl {
  font-size: 28px;
}

.text-sl {
  font-size: 2.85em;
}

.text-xsl {
  font-size: 4.25em;
}

.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;
  word-break: break-all;
}

.text-bold {
  font-weight: bolder;
}

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

.text-content {
  line-height: 1.6;
}

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

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

.text-black {
  color: var(--black);
}

.text-realblack, .layout .layout-top .layout-top-tools a {
  color: var(--realblack);
}

.text-red {
  color: var(--red);
}

.text-wine {
  color: var(--wine);
}

.text-rose {
  color: var(--rose);
}

.text-orange {
  color: var(--orange);
}

.text-deeporange {
  color: var(--deeporange);
}

.text-white, .layout .layout-left {
  color: var(--white);
}

.text-yellow {
  color: var(--yellow);
}

.text-green {
  color: var(--green);
}

.text-green2 {
  color: var(--green2);
}

.text-blue {
  color: var(--blue);
}

.text-skyblue2 {
  color: var(--skyblue2);
}

.text-cyan {
  color: var(--cyan);
}

.text-deepcyan {
  color: var(--deepcyan);
}

.text-skyblue {
  color: var(--skyblue);
}

.text-sapphire {
  color: var(--sapphire);
}

.text-brown {
  color: var(--brown);
}

.text-gold {
  color: var(--gold);
}

.text-gray {
  color: var(--gray);
}

.text-bluegray {
  color: var(--bluegray);
}

.text-grey {
  color: var(--grey);
}

/* ==================
          描边字
 ==================== */
.text-line, .text-line-cyan, .text-line-blue, .text-line-purple, .text-line-green2, .text-line-green, .text-line-deeporange, .text-line-orange, .text-line-red {
  color: var(--white);
  font-weight: 600;
}

.text-line-red {
  text-stroke: 4px #D00000;
  -webkit-text-stroke: 4px #D00000;
}
.text-line-red.small {
  text-stroke: 2px #D00000;
  -webkit-text-stroke: 2px #D00000;
}
.text-line-red.tips {
  text-stroke: 2px #D00000;
  -webkit-text-stroke: 2px #D00000;
}

.text-line-orange {
  text-stroke: 4px #C84807;
  -webkit-text-stroke: 4px #C84807;
}
.text-line-orange.small {
  text-stroke: 2px #C84807;
  -webkit-text-stroke: 2px #C84807;
}
.text-line-orange.tips {
  text-stroke: 2px #C84807;
  -webkit-text-stroke: 2px #C84807;
}

.text-line-deeporange {
  text-stroke: 4px var(--deeporange);
  -webkit-text-stroke: 4px var(--deeporange);
}
.text-line-deeporange.small {
  text-stroke: 2px var(--deeporange);
  -webkit-text-stroke: 2px var(--deeporange);
}
.text-line-deeporange.tips {
  text-stroke: 2px var(--deeporange);
  -webkit-text-stroke: 2px var(--deeporange);
}

.text-line-green {
  text-stroke: 4px #0D5026;
  -webkit-text-stroke: 4px #0D5026;
}
.text-line-green.small {
  text-stroke: 2px #0D5026;
  -webkit-text-stroke: 2px #0D5026;
}
.text-line-green.tips {
  text-stroke: 2px #0D5026;
  -webkit-text-stroke: 2px #0D5026;
}

.text-line-green2 {
  text-stroke: 4px #006649;
  -webkit-text-stroke: 4px #006649;
}
.text-line-green2.small {
  text-stroke: 2px #006649;
  -webkit-text-stroke: 2px #006649;
}
.text-line-green2.tips {
  text-stroke: 2px #006649;
  -webkit-text-stroke: 2px #006649;
}

.text-line-purple {
  text-stroke: 4px #453AF6;
  -webkit-text-stroke: 4px #453AF6;
}
.text-line-purple.small {
  text-stroke: 2px #453AF6;
  -webkit-text-stroke: 2px #453AF6;
}
.text-line-purple.tips {
  text-stroke: 2px #453AF6;
  -webkit-text-stroke: 2px #453AF6;
}

.text-line-blue {
  text-stroke: 4px #1364BB;
  -webkit-text-stroke: 4px #1364BB;
}
.text-line-blue.tips {
  text-stroke: 2px #1364BB;
  -webkit-text-stroke: 2px #1364BB;
}

.text-line-cyan {
  text-stroke: 4px #027B80;
  -webkit-text-stroke: 4px #027B80;
}
.text-line-cyan.tips {
  text-stroke: 2px #027B80;
  -webkit-text-stroke: 2px #027B80;
}

.text-underline {
  text-decoration: underline;
}

/* ==================
          背景色
 ==================== */
.bg-white {
  background-color: var(--white);
}

.bg-realblack {
  background-color: var(--realblack);
}

.bg-red {
  background-color: var(--red);
}

.bg-paperyellow {
  background-color: #F8EFDE;
}

.bg-orange {
  background-color: var(--orange);
}

.bg-orange2 {
  background-color: var(--orange2);
}

.bg-green {
  background-color: var(--green);
}

.bg-yellow {
  background-color: var(--yellow);
}

.bg-cyan {
  background-color: var(--cyan);
}

.bg-greenLight {
  background-color: var(--greenLight);
}

.bg-blueLight {
  background-color: var(--blueLight);
}

.bg-blueDark {
  background-color: var(--blueDark);
}

.bg-redLight {
  background-color: var(--redLight);
}

.bg-orangeLight {
  background-color: var(--orangeLight);
}

.bg-orangeLight2 {
  background-color: var(--orangeLight2);
}

.bg-orangeLight3 {
  background-color: var(--orangeLight3);
}

.bg-yellowLight {
  background-color: var(--yellowLight);
}

.bg-lake {
  background-color: var(--lake);
}

.bg-lake2 {
  background-color: #B0EDED;
}

.bg-greyLight {
  background-color: var(--greyLight);
}

/*标签*/
.tag {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
  border-radius: 3px;
  font-size: 16px;
}

.button {
  display: inline-block;
  padding: 15px 40px;
}
.button:hover {
  color: inherit;
}

.bg-red-line {
  box-sizing: border-box;
  border: 0.72px solid var(--red);
  background: #FFC0C0;
  color: #F30808;
}

/* 边线 */
.border-red {
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 5px;
  padding: 3px;
  font-size: 12px;
}

.border-blue {
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 5px;
  padding: 3px;
  font-size: 12px;
}

.border-skyblue {
  border: 1px solid var(--skyblue);
  color: var(--skyblue);
  border-radius: 5px;
  padding: 3px;
  font-size: 12px;
}

.border-gray {
  border: 1px solid var(--gray);
  color: var(--gray);
  border-radius: 5px;
  padding: 3px;
  font-size: 12px;
}

/*  -- 内外边距 -- */
.margin-0 {
  margin: 0;
}

.margin-xs {
  margin: 5px;
}

.margin-sm {
  margin: 10px;
}

.margin {
  margin: 15px;
}

.margin-lg {
  margin: 20px;
}

.margin-xl {
  margin: 25px;
}

.margin-top-xs {
  margin-top: 5px;
}

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

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

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

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

.margin-right-xs {
  margin-right: 5px;
}

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

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

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

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

.margin-bottom-xs {
  margin-bottom: 5px;
}

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

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

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

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

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

.margin-left-xs {
  margin-left: 5px;
}

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

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

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

.margin-left-xl, .layout .layout-top .layout-top-tools a {
  margin-left: 25px;
}

.margin-lr-xs {
  margin-left: 5px;
  margin-right: 5px;
}

.margin-lr-sm {
  margin-left: 10px;
  margin-right: 10px;
}

.margin-lr {
  margin-left: 15px;
  margin-right: 15px;
}

.margin-lr-lg {
  margin-left: 20px;
  margin-right: 20px;
}

.margin-lr-xl {
  margin-left: 25px;
  margin-right: 25px;
}

.margin-tb-xs {
  margin-top: 5px;
  margin-bottom: 5px;
}

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

.margin-tb {
  margin-top: 15px;
  margin-bottom: 15px;
}

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

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

.padding-0 {
  padding: 0;
}

.padding-xs {
  padding: 5px;
}

.padding-sm {
  padding: 10px;
}

.padding {
  padding: 15px;
}

.padding-lg {
  padding: 20px;
}

.padding-xl {
  padding: 25px;
}

.padding-top-xs {
  padding-top: 5px;
}

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

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

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

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

.padding-right-xxs {
  padding-right: 2px;
}

.padding-right-xs {
  padding-right: 5px;
}

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

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

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

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

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

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

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

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

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

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

.padding-left-xs {
  padding-left: 5px;
}

.padding-left-xxs {
  padding-left: 2px;
}

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

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

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

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

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

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

.padding-lr {
  padding-left: 15px;
  padding-right: 15px;
}

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

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

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

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

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

.padding-tb {
  padding-top: 15px;
  padding-bottom: 15px;
}

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

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

.line-height100 {
  line-height: 100%;
}

.line-height120 {
  line-height: 120%;
}

.line-height140 {
  line-height: 140%;
}

.line-height160 {
  line-height: 160%;
}

.line-height180 {
  line-height: 180%;
}

.line-height200 {
  line-height: 200%;
}

/* -- 浮动 --  */
.radius-body {
  margin-top: -26px;
  position: relative;
  z-index: 1;
}

.radius {
  border-radius: 1000px;
}

.radius-cover {
  border-radius: 13px;
}

.radius-btn {
  border-radius: 50%;
}

.radius-btn2 {
  border-radius: 20px;
}

.radius-card {
  border-radius: 25px;
}

.radius-body {
  border-radius: 50px;
}

/* -- 间隔 --  */
.gap3 {
  gap: 3px;
}

.gap5 {
  gap: 5px;
}

.gap8 {
  gap: 8px;
}

.gap10 {
  gap: 10px;
}

.gap15 {
  gap: 15px;
}

.gap30 {
  gap: 30px;
}

.weui-half-screen-dialog__title {
  font-size: 18px;
}

.weui-half-screen-dialog__bd::-webkit-scrollbar {
  width: 0 !important;
}

.infor-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2em;
}
.infor-2.text-lg {
  max-height: 3em;
}
.infor-2.text-xl {
  max-height: 3em;
}

input[readonly].text-input {
  border: 0 !important;
  padding: 0 !important;
}

.index-statistics .item {
  max-width: 260px;
  width: 25%;
  height: 100px;
}
.index-statistics .item p {
  font-size: 20px;
  padding: 0 0 10px 0;
}

.pdf-pa {
  position: absolute;
  line-height: 100%;
}
.pdf-pa.ov-hidden {
  overflow: hidden;
}

.arial-9 {
  font-size: 1.05rem;
}

.arial-9s {
  font-size: 1.05rem;
  -webkit-transform: scale(1.09);
}

.arial-12 {
  font-size: 1.346rem;
}

.arial-13 {
  font-size: 1.68rem;
}

.arial-14 {
  font-size: 2.05rem;
}

.arial-21 {
  font-size: 2.45rem;
}

.custom-loading {
  position: relative;
}

.layout {
  position: relative;
}
.layout .layout-top {
  height: 80px;
  width: 200px;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  background-color: #004098;
  z-index: 999;
  border-bottom: 1px solid #ccc;
}
.layout .layout-top .logo {
  color: #004098;
  background-color: #004098;
  width: 200px;
  height: 100%;
}
.layout .layout-top .layout-top-tools a {
  position: relative;
}
.layout .layout-top .layout-top-tools a .label {
  position: absolute;
  top: -5px;
  left: 18px;
  padding: 3px 4px;
  font-size: 0.5em;
  font-weight: 100;
}
.layout .layout-left {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 999;
}
.layout .layout-left .ui.menu {
  padding-top: 20px;
  width: 200px;
  border-radius: 0;
  border-width: 0 1px 0 0;
  overflow: auto;
  height: calc(100vh - 80px - 80px);
}
.layout .layout-left .ui.menu .item {
  padding: 15px 0;
}
.layout .layout-left .ui.menu .item.second {
  padding-left: 10px;
}
.layout .layout-left .ui.menu .item > i.icon {
  float: left;
  margin-right: 8px;
}
.layout .layout-left .ui.menu .item > i.icon.second {
  padding-left: 20px;
}
.layout .ui.inverted.menu {
  background: #014099;
}
.layout .ui.inverted.menu .active.item {
  background: #2f6bc0;
}

.layout-right {
  padding: 0px 0px 0px 200px;
}

.modal .main .main-content .main-content-body {
  overflow: unset;
}

.main {
  padding: 0 10px 10px;
}
.main .main-header {
  border-bottom: 1px solid #ccc;
  background-color: #ffffff;
  padding: 24px 20px;
  min-height: 79px;
  color: #000000;
  margin-bottom: 20px;
  position: sticky;
  top: 0;
  left: 200px;
  z-index: 9;
}
.main .main-header .title {
  font-size: 30px;
}
.main .main-content {
  border-bottom: 1px solid #ccc;
  background-color: #ffffff;
  padding: 30px 20px;
}
.main .main-content .main-content-search {
  margin-bottom: 20px;
}
.main .main-content .main-content-body {
  overflow-x: auto;
}
.main .main-content .main-content-body .calendar .fluid {
  min-width: 150px;
}
.main .main-content .main-content-body .ui.form .select-multiple {
  height: 200px;
}
.main .main-content .main-content-body .ui.form .select-user-tools {
  padding: 0 15px;
}
.main .main-content .main-content-body .ui.form .select-user-tools i {
  margin: 5px 0 10px;
}
.main .main-content .main-content-body .ui.form .field {
  margin-bottom: 1.2rem;
}
.main .main-content .main-content-body .ui.form .fields {
  margin: 0 -0.5em 0em;
}
.main .main-content .main-content-body .ui.form .inline.fields .field {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.main .main-content .main-content-body .ui.form .field > label {
  font-size: 1em;
  margin: 0 0 0.5rem 0;
}
.main .main-content .main-content-body .ui.form .error .prompt {
  font-size: 16px;
}

.paging {
  z-index: 2;
}
.paging .item > .icon {
  margin: 0 !important;
}

.ck-editor__editable {
  height: 300px;
}

.small-ck-editor .ck-editor__editable {
  height: 100px;
}

.tasks-user .item {
  margin-bottom: 15px;
}

td,
div[contenteditable] {
  position: relative;
  outline: none;
}

td.focus:focus::after,
td[contenteditable]:focus::after,
div[contenteditable]:focus::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border: 1px solid #00c0ef;
  pointer-events: none;
}

.ui.dropdown .text.text-cut {
  display: block;
}
.ui.dropdown .text .value {
  display: block;
}
.ui.dropdown .text .option {
  display: none;
}
.ui.dropdown .menu .value {
  display: none;
}

.ui.attached.menu-custom.menu:not(.tabular):not(.text) {
  border: 0;
}

.ui.vertical.menu.menu-custom {
  background: #9EB8CF;
  color: #fff;
  border-radius: 5px;
}
.ui.vertical.menu.menu-custom .item {
  border-bottom: 1px solid #fff;
}
.ui.vertical.menu.menu-custom > .item:last-child {
  border-radius: 0;
}
.ui.vertical.menu.menu-custom .item,
.ui.vertical.menu.menu-custom .active.item {
  color: #fff;
}
.ui.vertical.menu.menu-custom .active.item {
  background: #004098;
}
.ui.vertical.menu.menu-custom .item::after {
  width: 1em;
  height: 1em;
}
.ui.vertical.menu.menu-custom .active.item::after,
.ui.vertical.menu.menu-custom .active.item:hover::after {
  background: #004098;
}

.price-width {
  min-width: 150px;
}

.price-input {
  width: 100%;
}

.price-input.ui.dropdown > input:not(.search):first-child {
  border: 0;
  display: block !important;
  padding: 0;
}
.price-input.ui.dropdown .text {
  display: none;
}

.ui.table.JColResizer > tbody > tr > td,
.ui.table.JColResizer > tr > td {
  padding: 0;
  min-height: 38px;
}

.JColResizer .ui.selection.dropdown {
  border: 0;
}

.dropdown_custom {
  position: relative;
}
.dropdown_custom table {
  border: 0 !important;
}
.dropdown_custom .option-content {
  max-height: 30vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.dropdown_custom .option-content .filtered {
  display: none;
}
.dropdown_custom thead {
  position: sticky;
  z-index: 30;
  top: 0;
  left: 0;
  background-color: #ffffff;
}
.dropdown_custom tbody {
  position: relative;
  z-index: 20;
}
.dropdown_custom .times.icon {
  display: none;
}
.dropdown_custom.close .times.icon {
  display: inline-block;
}
.dropdown_custom.close.ui.selection.dropdown > .dropdown.icon {
  right: 2em;
}

.ui.fluid.dropdown > .times.icon {
  position: absolute;
  right: 0em;
  z-index: 9;
  top: 0.78571429em;
}

.ui.ui.table td.active,
.ui.ui.ui.ui.table tr.active {
  background: rgba(0, 0, 50, 0.02);
}

.pdf-table th {
  padding: 10px 0;
  text-align: center;
  border-right: 1px solid #c0c0c0;
}

.pdf-table td {
  line-height: 110%;
  padding: 5px 5px;
  border-right: 1px solid #c0c0c0;
}

.invoice-pdf-table td,
.invoice-pdf-table th {
  padding: 3px;
  border-right: 1px solid #c0c0c0;
}

.invoice-pdf-table tr.padding-bottom-0 td,
.pdf-table tr.padding-bottom-0 td {
  padding-bottom: 0;
}

.invoice-pdf-table tr.padding-top-0 td,
.pdf-table tr.padding-top-0 td {
  padding-top: 0;
}

.invoice-pdf-table th,
.pdf-table th {
  text-align: center;
  border-right: 1px solid #808080;
}

.invoice-pdf-total td,
.pdf-total td {
  padding-left: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.invoice-pdf-table,
.pdf-table {
  border-collapse: collapse;
  /* 合并边框 */
}

.base-pdf {
  position: relative;
  border-bottom: 5px solid #014099;
}
.base-pdf .base-pdf-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #c0c0c0;
}
.download_table {
  width: 100%;
  border-collapse: collapse;
}
.download_table td,
.download_table th {
  border: 1px solid #e8e9e9;
  text-align: left;
  padding: 13px;
}
.download_table thead {
  background-color: #f9fafb !important;
}

.pdf-total td {
  padding: 8px 0;
}

.pdf-table th:last-child {
  border-right: 1px solid #808080;
}

.pdf-table th:first-child {
  border-left: 1px solid #808080;
}

.pdf-table td:last-child {
  border-right: 1px solid #c0c0c0;
}

.pdf-table td:first-child {
  border-left: 1px solid #c0c0c0;
}

.invoice-pdf-table th:last-child,
.invoice-pdf-table td:last-child {
  border-left: 1px solid #c0c0c0;
}

.invoice-pdf-table-other,
.pdf-table-other {
  border-collapse: collapse;
}

.invoice-pdf-table-other td,
.pdf-table-other td {
  border: 1px solid #c4c4c4;
  padding: 5px;
}

.ui.ui.ui.table tr.disabled.item2 td {
  color: #000000;
}

.JColResizer {
  table-layout: fixed;
}

.JCLRgrips {
  height: 0px;
  position: relative;
}

.JCLRgrip {
  margin-left: -5px;
  position: absolute;
  z-index: 5;
}

.JCLRgrip .JColResizer {
  position: absolute;
  background-color: red;
  filter: alpha(opacity=1);
  opacity: 0;
  width: 10px;
  height: 100%;
  cursor: e-resize;
  top: 0px;
}

.JCLRLastGrip {
  position: absolute;
  width: 1px;
}

.JCLRgripDrag {
  border-left: 1px dotted black;
}

.JCLRFlex {
  width: auto !important;
}

.JCLRgrip.JCLRdisabledGrip .JColResizer {
  cursor: default;
  display: none;
}

#address-list .address-item {
  display: none;
}
#address-list .address-item:first-child {
  display: block;
}

#dealer_list tbody {
  max-height: calc(100vh - 250px);
}

#warehouse-divide td[data-warehose] .fluid.input {
  max-width: 200px;
}

.iframe-pdf {
  width: 100%;
  height: calc(100vh - 200px);
}

.exchange-goods-table th {
  text-align: right;
}
.exchange-goods-table td,
.exchange-goods-table th {
  padding: 5px;
}

.print-table {
  border-collapse: collapse;
  width: 100%;
}

.print-table td,
.print-table th {
  border: 1px solid #000000;
  padding: 10px;
}

/* This selector targets the editable element (excluding comments). */
.ck-editor__editable_inline:not(.ck-comment__input *) {
  height: 500px;
  overflow-y: auto;
}

#sendEmailConfirmForm .ck-editor__editable_inline {
  max-height: 400px;
}
#sendEmailConfirmForm .ck-editor__editable_inline::after {
  display: none;
}

.pointer-events {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.ui.form .warning-input.not-valid {
  /* border: 1px solid #f2c037; */
  color: #f2c037;
}
.ui.form .warning-information {
  /* border: 1px solid #f2c037; */
  color: #f2c037;
  display: none;
  margin-left: 1em;
}

.logincontent {
  width: 70%;
  background-color: #fff;
  overflow: hidden;
  max-width: 700px;
}

.logincontent .logo {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 10%;
}

.logincontent .logo img {
  width: 80%;
  max-width: 400px;
}

.logincontent .ui.form input[type=text],
.logincontent .ui.form input[type=password] {
  background-color: #f2f2f2;
  border: 0;
  padding: 15px 1.5rem;
}

.logincontent .ui.blue.button {
  padding: 15px 6em;
  margin-top: 30px;
  font-size: 1.2rem;
}

/*移动端*/
@media screen and (max-width: 767px) {
  .logincontent {
    width: 85%;
  }
  .logincontent .ui.blue.button {
    padding: 15px 0;
    width: 100%;
    margin-top: 20px;
  }
  .logincontent .ui.form .field img {
    width: 35%;
  }
}
.flex-field {
  display: flex;
}

.flex-field > label {
  align-self: center;
}

.td-fixed-left {
  position: sticky;
  /* 设置sticky属性 */
  left: 0;
  /* 确保固定到最左边 */
}

.td-fixed-right {
  position: sticky;
  /* 设置sticky属性 */
  right: 0;
  /* 确保固定到最左边 */
}

/*
拖动线，改变table height 
*/
.cstomize-table-height {
  position: relative;
}
.cstomize-table-height .set-height {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 5px;
  width: 100%;
  cursor: s-resize;
}

.ui.modal > .scrolling.content {
  max-height: calc(100vh - 8rem);
}

input.readonly,
textarea.readonly {
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}

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

.search.fields > .field {
  margin-bottom: 1em !important;
}

.modal .actions {
  display: flex;
  align-items: flex-start;
}

.ui-grid-container {
  padding: 1em;
}/*# sourceMappingURL=common.css.map */