@import "../commonlib/element-ui/index.css";
@import "usurvey-form.css";
@import "usurvey-panel.css";
@import "../commonlib/icon/iconfont.css";
@import "us-select.css";
@import "us-table.css";

/*@import "../commonlib/fontawesome/css/font-awesome.css";*/

body {
  position: absolute;
  height: 100%;
  width: 100%;
  margin: 0;
  background: #F5F5F5;
}

.us_div_hide {
  display: none;
}

.us_div_show {
  display: block !important;
  -webkit-animation: fadeInDown 0.3s;
  animation: fadeInDown 0.3s;

  color: #666;
  font-size: 14px;
}

@keyframes fadeInDown {
  0% {
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* 输入框 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}

.us-screen-container {
  height: 100%;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.us-tab-panel-content {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-top: 0;
  border-radius: 4px;
  float: left;
  width: 100%;
  box-sizing: border-box;
}

/*------------------------------- 默认主题 -------------------------------- */

.us-theme-default-background {
  background: #F5F5F5;
}

.tip-color-default {
  color: #409EFF;
}

.tip-color-text {
  color: #666;
}

.tip-color-success {
  color: #67C23A;
}

.tip-color-warning {
  color: #E6A23C;
}

.tip-color-error {
  color: #F56C6C;
}

.tip-text {
  color: #999;
}

/*-----------------webkit内核浏览器滚动条-----------------------*/
/*滚动条宽度*/
::-webkit-scrollbar {
  width: 0;
  height: 14px;
}

/* 轨道样式 */
::-webkit-scrollbar-track {
  background-color: transparent
}

/* Handle样式 */
::-webkit-scrollbar-thumb {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #c3c3c3
}

/*当前窗口未激活的情况下*/
::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.3);
}

/*hover到滚动条上*/
::-webkit-scrollbar-thumb:vertical:hover,
::-webkit-scrollbar-thumb:horizontal:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/*滚动条按下*/
::-webkit-scrollbar-thumb:vertical:active,
::-webkit-scrollbar-thumb:horizontal:active {
  background-color: rgba(0, 0, 0, 0.4);
}

/* elui 弹窗样式 */
.el-dialog {
  margin-top: 8vh !important;
  border-radius: 4px;
  /*margin-left: 30vw;*/
}

.el-dialog.is-fullscreen {
  margin-top: 0 !important;
}

.el-dialog__header {
  padding: 10px 20px;
  /*height: 50px;*/
  box-sizing: border-box;
  border-bottom: 1px solid #e4e4e4;
  background-color: #f5f5f5;
  /*line-height: 50px;*/
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.el-dialog__title {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  line-height: normal;
}

.el-dialog__headerbtn {
  top: 12px;
}

.el-dialog__footer {
  padding: 0 20px;
  text-align: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
  line-height: 36px;
  border-top: 1px solid #e4e4e4;
}

.el-dialog__body {
  padding: 20px;
}

/* 弹窗动画 */
.el-dialog__body ::-webkit-scrollbar {
  width: 3px;
}

.el-dialog__wrapper {
  transition-duration: 0.3s;
}

.dialog-fade-enter-active {
  animation: none !important;
}

.dialog-fade-leave-active {
  transition-duration: 0.15s !important;
  animation: none !important;
}

.dialog-fade-enter-active .el-dialog,
.dialog-fade-leave-active .el-dialog {
  animation-fill-mode: forwards;
}

.dialog-fade-enter-active .el-dialog {
  animation-duration: 0.3s;
  animation-name: anim-open;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
}

.dialog-fade-leave-active .el-dialog {
  animation-duration: 0.3s;
  animation-name: anim-close;
}

/* el-message-box */
.el-message-box__wrapper {
  transition-duration: 0.3s;
}

.msgbox-fade-enter-active {
  animation: none !important;
}

.msgbox-fade-leave-active {
  transition-duration: 0.15s !important;
  animation: none !important;
}

.msgbox-fade-enter-active .el-message-box,
.msgbox-fade-leave-active .el-message-box {
  animation-fill-mode: forwards;
}

.msgbox-fade-enter-active .el-message-box {
  animation-duration: 0.3s;
  animation-name: anim-open;
  animation-timing-function: cubic-bezier(0.6, 0, 0.4, 1);
}

.msgbox-fade-leave-active .el-message-box {
  animation-duration: 0.3s;
  animation-name: anim-close;
}

@keyframes anim-open {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 1);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

@keyframes anim-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale3d(0.5, 0.5, 1);
  }
}

/* el-message-box*/
.el-message-box__header {
  border-bottom: 1px solid #e4e4e4;
  background-color: #f5f5f5;
}

.el-message-box__title {
  font-size: 14px;
  font-weight: bold;
  color: #666;
}

.el-message-box__content {
  padding: 30px 15px;
  color: #666;
}

.el-message-box__btns {
  border-top: 1px solid #e4e4e4;
}

/* el-popover */
.operation-menu {
  width: 100px !important;
  padding: 0;
  font-size: 12px;
}

.operation-menu .el-col {
  padding: 8px;
  text-align: center;
  cursor: pointer;
}

.operation-menu .el-col:hover {
  background-color: #eee;
}

/* 穿梭框 */
.el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label {
  font-size: 14px;
  color: #666;
}

.el-transfer-panel__filter {
  margin: 8px;
}

.el-transfer-panel__filter .el-input__inner {
  border-radius: 4px;
}

.el-transfer__buttons > button {
  display: block;
  margin-left: 0 !important;
}

/*描述列表*/
.el-descriptions .el-descriptions-item__cell.el-descriptions-item__label.is-bordered-label {
  background: #f5f5f5;
  font-weight: bold;
  color: #666;
}




