﻿.alert-modal {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: alpha(opacity=60);
  z-index: 2000;
}
.alert-container {
  z-index: 2000 !important;
}

.text {
  /*font-family: "微软雅黑";*/
  /* font-size: 15px;
  line-height: 23px;
  word-spacing: 2px; */
}
.alert-title {
  font-size: 16px;
  text-align: center;
  line-height: 42px;
  color: #111;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  text-align: center;
}
.alert-content {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
.alert-content-scrollbar {
}
.alert-btn-box {
  border-top: 1px solid #f1f1f1;
  text-align: right;
  /* position: absolute; */
  left: 0;
  background: #fff;
  bottom: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  height: 50px;
}
.alert-btn-p {
  height: 34px;
  text-align: center;
  border: 1px solid #f1f1f1;
  /* background-color: #cdd2db; */
  font-size: 14px;
  line-height: 34px;
  cursor: pointer;
  /* color: #222; */
  box-sizing: border-box;
  margin: 0px;
  width: 50px;
  margin-top: 7px;
  margin-right: 7px;
  border-radius: 2px;
  /* background: #000; */
  color: #ffffff !important;
  background-color: #3280fc !important;
  border-color: #3280fc !important;
  width: 51px !important;
}
.alert-btn-p:hover {
  color: #ffffff !important;
  background-color: #3280fcc7 !important;
  border-color: #3280fc !important;
}
.alert-btn-p:last-child {
  color: #58666e !important;
  background-color: #edf1f2 !important;
  border-color: #c7d3d6 !important;
}
.alert-btn-p:last-child:hover {
  color: #40a9ff !important;
  background-color: #fff !important;
  border-color: #40a9ff !important;
}
.pcAlert .alert-btn-box {
  padding-right: 10px;
  border: none;
}
.pcAlert .alert-btn-p {
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  line-height: 30px;
  margin: 7px 0;
  padding: 0 0px;
  margin-right: 10px;
}
.alert-btn-close {
  position: absolute;
  right: 10px;
  top: 3px;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
}

.alert-container-black {
  background-color: rgba(0, 0, 0, 0.65);
  border: none;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000);
}
.alert-container-black .alert-content {
  color: #fff;
}

.linearTop {
  -webkit-animation-name: linearTop;
  -moz-animation-name: linearTop;
  -o-animation-name: linearTop;
  animation-name: linearTop;
}

.linearBottom {
  -webkit-animation-name: linearBottom;
  -moz-animation-name: linearBottom;
  -o-animation-name: linearBottom;
  animation-name: linearBottom;
}

/*alert-actionsheet*/
.alert-actionsheet {
  border-radius: 0;
  background-color: #ddd;
}
.alert-actionsheet .alert-content {
  display: none;
}
.none {
  display: none;
}
.alert-actionsheet .alert-title {
  color: #aaa;
  line-height: 50px;
}
.alert-actionsheet .alert-title,
.alert-actionsheet .alert-btn-box {
  position: static;
}
.alert-actionsheet .alert-btn-p {
  font-size: 16px;
  display: block;
  line-height: 40px;
  border-bottom: 1px solid #eee;
}
.alert-actionsheet .alert-btn-box {
  background-color: transparent;
}
.alert-actionsheet .alert-btn-sheet {
  margin-top: 5px;
}
@keyframes linearBottom {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  100% {
    -webkit-transform: translate3d(0, 80px, 0);
    -moz-transform: translate3d(0, 80px, 0);
    -o-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes linearTop {
  0% {
    -webkit-transform: translate3d(0, 80px, 0);
    -moz-transform: translate3d(0, 80px, 0);
    -o-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/*显示动画*/

.animated.infinite {
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
}
.animated.linearBottom,
.animated.linearTop,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.45s;
  -moz-animation-duration: 0.45s;
  -o-animation-duration: 0.45s;
  animation-duration: 0.45s;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -moz-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(1.2, 1.2, 1.2);
    -moz-transform: scale3d(1.2, 1.2, 1.2);
    -o-transform: scale3d(1.2, 1.2, 1.2);
    transform: scale3d(1.2, 1.2, 1.2);
  }

  65%,
  70% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale3d(0.75, 0.75, 0.75);
    -moz-transform: scale3d(0.75, 0.75, 0.75);
    -o-transform: scale3d(0.75, 0.75, 0.75);
    transform: scale3d(0.75, 0.75, 0.75);
  }

  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    -moz-transform: scale3d(0.3, 0.3, 0.3);
    -o-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
/*针对 文件管理页面 当页面宽度小雨1000时触发*/
@media screen and (max-width: 700px) {
  .alert-container {
    width: 95% !important;
    left: 2.5% !important;
    margin-left: 0 !important;
  }
}

.modal-header {
  /* background-color: #232941;
  color: white; */
  padding: 1px 15px;
  /* border-bottom: none; */
  /* cursor: move; */
}

.modal-body {
  /*background-color:#cdd2db;*/
  height: calc(100% - 40px);
  overflow: auto;
  padding: 0 !important;
  border-left: 0.1px solid;
  border-left-color: #fff;
}
.modal-body iframe {
  overflow: auto;
}

#Al_content .form-group {
  margin-right: 0;
  margin-left: 0;
}
#Al_content .form-group:first-child {
  margin-right: 0;
  margin-left: 0;
  margin-top: 15px;
}

.text-image {
  color: #d4237a;
}
.text-text {
  color: #707070;
}
.text-movie {
  color: #13227a;
}
.text-audio {
  color: #af00da;
}
.text-archive {
  color: #c14422;
}
.text-pdf {
  color: #ff0000;
}
.text-excel {
  color: #00561f;
}

.fileListstyle {
  background-color: white;
  width: 100%;
  height: 350px;
  overflow: auto;
}

.alert-container {
  z-index: 9999;
  max-width: 95vw !important;
  max-height: 95vh !important;
}
.select2-dropdown {
  z-index: 99999;
}

#FilePreview_div {
  position: absolute;
  left: 45%;
  top: 30%;
  text-align: center;
}

#uploaderExample2 {
  height: 100%;
  margin-bottom: 0;
}

.modal-title {
  margin: 7px 0;
  line-height: 1.53846154;
}
.modal-header .close {
  margin-top: 1px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 1px #fff;
  /*  position:fixed;
    margin-left:550px;*/
} /*关闭右上角按钮  全局*/

.title-text {
  font-family: "微软雅黑";
  font-size: 150px;
  line-height: 23px;
  word-spacing: 2px;
}

/*.modal-dialog {
    position: relative;
    width: auto;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
   box-shadow: none;
}
.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: none;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}*/

cx-model model-heard .modal-header {
  padding: 10px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-radius: 5px 5px 0 0;
  background-color: #000;
  opacity: 1;
  height: 45px;
  position: relative;
} /*头框*/
cx-model model-heard .modal-header h4 {
  font-size: 16px;
}
cx-model model-heard .modal-header .modal-title {
  margin-bottom: 0;
  line-height: 1;
  position: absolute;
}
cx-model model-heard .modal-header .close:not(:disabled):not(.disabled) {
  cursor: pointer;
  opacity: 1;
  margin-top: -3px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 1px #fff;
  position: absolute;
  right: 5px;
}

cx-model model-heard .modal-header .modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

cx-model model-heard .modal-header .modal-header button.close {
  padding: 0;
  background-color: #fff;
  border: 0;
  -webkit-appearance: none;
  opacity: 1;
}
cx-model model-body .modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

cx-model model-footer .modal-footer {
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /*padding: 1rem;*/
  border-top: 1px solid #e9ecef;
}
cx-model model-footer .modal-footer button {
  float: right !important;
  margin-left: 5px;
}

cx-model model-heard .modal-content {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(68, 68, 68, 0.2);
  outline: 0;
}

.model1-body-top10 {
  max-height: calc(90vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}
.model1-body-top15 {
  max-height: calc(85vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}

/*****************提示事件(Message)样式*********************/
.selTheme-parentDiv {
  text-align: center;
  padding-top: 30px;
  position: fixed;
  width: 285px;
  top: 37%;
  height: 165px;
  left: calc(50% - 125px);
  z-index: 2000 !important;
  background: #fff;
  box-shadow: 0px 1px 10px #151517;
}
.selTheme-modelDiv {
  display: block;
  position: fixed;
  z-index: 2000;
}
.selTheme-btnDiv {
  /*position:relative;*/
  /*bottom:0;*/
  width: 100%;
  padding: 10px;
  /* border-top: 1px solid #ccc; */
  /* background-color: #f1f1f1; */
  /*padding: 5px;
    border-top: 1px solid #ccc*/
}
.selTheme-btn1 {
  margin-right: 15px;
  margin-left: 5px;
  /* min-width: 80px; */
  height: 30px;
  padding-top: 4px;
  padding-bottom: 3px;
}
.selTheme-btn2 {
  margin-left: 15px;
  margin-right: 5px;
  /* width: 80px; */
  height: 30px;
  padding-top: 4px;
  padding-bottom: 3px;
}
.selTheme-pre {
  color: #a4a0a0;
  background-color: #fff;
  border: 0px;
  padding: 0 10px;
  color: #000;
  min-height: 11px;
}

.cx-dialog {
  position: relative;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.cx-dialog .cx-dialog__header {
  padding: 10px 15px;
  /* font-weight: 550; */
  background-color: #fff;
  /* color: #777; */
  text-align: left;
  height: 50px;
  border-bottom: 1px solid #f0f0f0;
}
.cx-dialog .cx-dialog__ body {
  flex: 1;
}

.cx-dialog .cx-dialog__footer {
  padding: 10px 20px 5px 20px;
  text-align: right;
  box-sizing: border-box;
  border-top: 1px solid #f0f0f0;
  /* background-color: #f1f1f1; */
}

.full-screen {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1000;
}
.full-screen.full-bg-black {
  background: #000;
}
.full-screen > .btn-close {
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  color: #fff;
  background: #000;
  opacity: 0.4;
  z-index: 1000;
}
.full-screen > .btn-close:hover {
  opacity: 0.9;
}
.full-screen > .btn-img-close {
  padding: 10px;
  position: absolute;
  right: 22px;
  top: 12px;
  opacity: 0.6;
  font-size: 53px;
  z-index: 1000;
  color: #fffa;
}
.full-screen > .btn-img-close:hover {
  opacity: 0.9;
}

.full-screen .picture-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(224, 224, 224);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.full-screen .picture-button.disabled {
  color: rgb(191, 192, 193);
  cursor: not-allowed;
}

.full-screen .picture-button.disabled:hover {
  background: rgb(224, 224, 224);
}

.full-screen .picture-button:hover {
  background: rgb(251, 252, 248);
}

.full-screen .picture-button.left {
  left: 5%;
}

.full-screen .picture-button.right {
  right: 5%;
}

.full-screen .picture-button i {
  font-size: 20px;
}

.full-screen .picture-button i::before {
  width: 100%;
  height: 100%;
  display: inline-block;
}



/* 全屏（用于HtmlIframe） */
.fullwindow{
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
/* 可伸缩窗口样式 */
.retractable{
  position: absolute;
  right: 40px;
  top: 11px;
  cursor: pointer;
  z-index: 5;
}
.retractable i{
  font-size: 17px !important;
}