

html,body {
  margin: 0px;
  padding-top: 0px;
  font-family: "serif","Verdana","Courier","Helvetica","arial","sans-serif";
  /* font-family: "-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol"; */
  font-size: 14px;
}

.table{
  font-size: 1em;
}

.dom_body { padding-top: 50px; }

.bhand{
  cursor: hand;
  cursor: pointer;
}

.gridtable{
  table-layout: fixed;
}

.ml10 {
    margin-left: 10px;
}

.nowrap{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.form-static {
      border: 0;
      webkit-box-shadow: none ;
      box-shadow: none;
 }

 .td_subject {
    min-width:100px;
 }

.td_date {
 font-size: 0.5em;
 /* font-family: "sans-serif"; */
}

.bclick{
  cursor: pointer;
  
  /* cursor: hand; */
}

.bclick:hover {
  
}


.td_hover:hover {
  cursor: pointer;
  cursor: hand;
}

.img95p {
  max-width:95%;
  height:auto;
}


.tooltip-inner {
    text-align: left;
    max-width: 400px;
}

.popover{
    max-width: 100%; /* Max Width of the popover (depending on the container!) */
}

.container-fluid{
  padding-right:5px;
  padding-left:5px;
  padding-top:5px;
  padding-bottom:0px;
}
@media (max-width: 767px) {
  .form-horizontal .form-group {
      margin-left:0px;
      margin-right:0px;
    }
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    padding-right:15px;
    text-align: right;
  }
}

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

.breadcrumb{
  margin-bottom: 1px !important;
}


.form-group{
  margin-bottom : 10px;
}

.mce-menubtn.mce-fixed-width span{
  width: 50px !important;
}



#editor {overflow:scroll; max-height:1000px ; min-height: 100px}

.twitter-typeahead { display:initial !important; }
.bootstrap-tagsinput {line-height:20px;display:block !important;}
.bootstrap-tagsinput .tag {background:#666;padding:5px;border-radius:4px;}
.tt-hint {top:12px !important;}
.tt-input{vertical-align:baseline !important;}
.typeahead { border: 1px solid #CCCCCC;border-radius: 4px;padding: 8px 12px;width: 300px;font-size:1.5em;}
.tt-menu { width:200px; }
span.twitter-typeahead .tt-suggestion {padding: 5px 10px; border-bottom:#CCC 1px solid;cursor:pointer;}
span.twitter-typeahead .tt-suggestion:last-child { border-bottom:0px; }

#idletimeout { background:#CC5100; border:3px solid #FF6500; color:#fff; font-family:arial, sans-serif; text-align:center; font-size:12px; padding:10px; position:relative; top:0px; left:0; right:0; z-index:100000; display:none; }
#idletimeout a { color:#fff; font-weight:bold }
#idletimeout span { font-weight:bold }

.fc-day-cnDate,.fc-day-cnDate ,.fc-day-cnTerm{
  font-size: 0.8em;
}

.bootstrap-tagsinput .tag {
  padding-bottom: 2px;
  padding-top: 2px;
}

.emails{
  white-space: inherit;
  word-wrap: break-word;
  /* display: block; */
  /* background-color: black; */
  /* padding-right: 1em; */
  /* width: 95%; */
}

.descript{
  font-size: 0.8em;
  color: gray;
  padding-left: 1em;
  display: block;
}

.hidemore{
  display: none;
}


.image-container {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: relative;
    transition: width 0.3s, height 0.3s; /* 添加容器宽度和高度的平滑过渡效果 */
}

.image-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s; /* 添加图像放大的平滑过渡效果 */
    position: absolute;
}

.image-container img.qrcode {
    z-index: 1; /* 悬停时图像显示在最上层 */
}

.image-container:hover {
    width: 200px; /* 鼠标悬停时容器宽度放大2倍 */
    height: 200px; /* 鼠标悬停时容器高度放大2倍 */
    cursor: none; /* 鼠标悬停时隐藏光标 */
}