/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    box-sizing: border-box;
}
strong {
  font-weight: bold;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}
html, body {
  font-size: 12px;
}
body {
  line-height: 1;
  max-width: 100%;
  overflow-x: hidden;
}
body, textarea {
  font-family: Helvetica,Arial,Microsoft Yahei,Heiti SC,WenQuanYi Micro Hei,sans-serif;
}
.hide{
  display: none;
}
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a {
    color: #7e8c8d;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}

li {
    list-style: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #D5DBEC #FFF;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #FFF;
    -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical {
    height: 10px;
    background-color: #D5DBEC;
    -webkit-border-radius: 4px;
}

::-webkit-scrollbar-thumb:horizontal {
    width: 10px;
    background-color: #D5DBEC;
    -webkit-border-radius: 4px;
}

/*s-scrollbar*/
.s-scrollbar {
    scrollbar-color: #D5DBEC #EDF1FC;
}
.s-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.s-scrollbar::-webkit-scrollbar-track-piece {
  background-color: #EDF1FC;
  -webkit-border-radius: 0px;
}

.s-scrollbar::-webkit-scrollbar-thumb:vertical {
  height: 6px;
  background-color: #D5DBEC;
  -webkit-border-radius: 3px;
}

.s-scrollbar::-webkit-scrollbar-thumb:horizontal {
  width: 6px;
  background-color: #D5DBEC;
  -webkit-border-radius: 3px;
}

/*s-scroll > div*/
.s-scroll > div {
    scrollbar-color: #D5DBEC #EDF1FC;
}
.s-scroll > div::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.s-scroll > div::-webkit-scrollbar-track-piece {
  background-color: #EDF1FC;
  -webkit-border-radius: 0px;
}

.s-scroll > div::-webkit-scrollbar-thumb:vertical {
  height: 6px;
  background-color: #D5DBEC;
  -webkit-border-radius: 3px;
}

.s-scroll > div::-webkit-scrollbar-thumb:horizontal {
  width: 6px;
  background-color: #D5DBEC;
  -webkit-border-radius: 3px;
}

/*no-scrollbar*/
.no-scrollbar {
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.no-scrollbar::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

.no-scrollbar::-webkit-scrollbar-thumb:vertical {
  height: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
}

.no-scrollbar::-webkit-scrollbar-thumb:horizontal {
  width: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
}

/*menu-scrollbar*/
.menu-scrollbar {
    scrollbar-color: #4F576C transparent;
}
.menu-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.menu-scrollbar::-webkit-scrollbar-track-piece {
  background-color: transparent;
  -webkit-border-radius: 0;
}

.menu-scrollbar::-webkit-scrollbar-thumb:vertical {
  height: 6px;
  background-color: #4F576C;
  -webkit-border-radius: 0;
}

.menu-scrollbar::-webkit-scrollbar-thumb:horizontal {
  width: 6px;
  background-color: #4F576C;
  -webkit-border-radius: 0;
}


html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 12px;
    box-sizing: border-box;
    color: #161616;
    background-color: #ededed;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,select,button,textarea{
  outline: none;
}
button{
  cursor: pointer;
}
.pointer{
  cursor: pointer;
}
.padding-20{
  padding: 20px;
}
.flex-box{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -moz-box;
  display: flex;
  display: box;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-box-col{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.flex-grow{
  flex: 1 0 auto;
  width: 0;
}
.flex-9{
  flex: 0 0 9%;
  width: 0;
}
.flex-15{
  flex: 0 0 15%;
  width: 0;
}
.flex-17{
  flex: 0 0 17%;
  width: 0;
}
.flex-25{
  flex: 0 0 25%;
  width: 0;
}

.user-select{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ellipsis{
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.relative{
  position: relative;
}
.absolute{
  position: absolute;
}
.pointer{
  cursor: pointer;
}
.d-inblock{
  display: inline-block;
}
.w-100{
  width: 100%;
}
.w-30{
  width: 30%;
}
.w-70{
  width: 70%;
}

.brand-logo .uif-form-border{
  border: none;
}


input::-webkit-input-placeholder{
  color:#BFBFBF;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
  color:#BFBFBF;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
  color:#BFBFBF;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */
  color:#BFBFBF;
}

textarea::-webkit-input-placeholder{
  color:#BFBFBF;
}
textarea::-moz-placeholder{   /* Mozilla Firefox 19+ */
  color:#BFBFBF;
}
textarea:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
  color:#BFBFBF;
}
textarea:-ms-input-placeholder{  /* Internet Explorer 10-11 */
  color:#BFBFBF;
}

.text-primary{
  color:#484D4C
}
.text-secondary{
  color:#9CA4B7
}
.text-right{
  text-align: right;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}

.drag-upload-bg{
  background-image: url("../images/drag-upload-bg.png");
}

.drag-tips-png-bg{
  background-image: url("../images/drag-tips.png");
}

.drag-box-bg{
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/drag-upload-border.png");
  background-size: contain;
}

.base-body-component-wrapper .two-tabs .tabs-box {
  border-color: transparent !important;
}

.small-bom-table .choose-component-wrapper .detail{
  display: none;
}
.gray{
  color: #999999
}
.fr{
  float:right;
}
.fl{
  float:left;
}
.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    zoom: 1;
}
.ql-editor,
.quill-editor{
  color: #333;
}

.uif-dm-item-disabled{
  color:#999999 !important
}

.app-system-loading {
    position: fixed;
    z-index: 99999;
    left: 50%;
    top: 30%;
    width: 400px;
    height: 100px;
    margin-left: -200px;
    font-size: 20px;
    background-color: #FFF;
    text-align: center;
    padding-top: 40px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: systemLoadingVisible 0s ease-in 1s forwards;
    visibility: hidden;
}

@keyframes systemLoadingVisible {
    to {
        visibility:visible;
    }
}

.mg-r-10 {
    margin-right: 10px;
}
