/*首页设置--轮播图展示样式*/  
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -moz-transition: -moz-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-control.left {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}
.carousel-control.right {
  left: auto;
  right: 0;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: Roboto-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, sans-serif, pingfang SC, helvetica neue, arial, hiragino sans gb, microsoft yahei ui, microsoft yahei, simsun, sans-serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}
.carousel-indicators li {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 1px;
  text-indent: -999px;
  /* border: 1px solid #ffffff;
  border-radius: 10px; */
  cursor: pointer;
  background:url(../../images/icon_carousel_bg.png) no-repeat 0px 2px;
}
.carousel-indicators .active {
  margin: 0;
  width: 35px;
  height: 20px;
  background: url(../../images/icon_carousel.png)no-repeat;
}
.carousel-caption {
  position: absolute;
  top:10%;
  left: 8%;
  right: 8%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    top:20%;
    left: 8%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
.carousel-caption input {
  float:left;
  width:120px;
  height:40px;
  line-height: 38px;
  font-size: 18px;
  border-radius: 4px;
  border:1px solid #2882d8;
  color:#fff;
  background:#2882d8;
  box-sizing: border-box;
}
.carousel-caption input:hover,.carousel-caption input:active {
  background:#1265cf;
  border:1px solid #1265cf;
}

/*首页设置--设置轮播图 样式*/
.index_img_delete {
  width: 18px;
  height: 18px;
  background: url(../../images/delete_icon1.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  cursor: pointer;
}

.index_img_delete:hover {
  background: url("../../images/delete_icon2.png");
  background-repeat: no-repeat;
  background-position: 0px 0px;
}

.index_img_down {
  width: 18px;
  height: 18px;
  background: url(../../images/importiconlist.png);
  background-repeat: no-repeat;
  background-position: -53px 0px;
  cursor: pointer;
}

.index_img_down:hover {
  background-position: -53px -18px;
}

.index_img_up {
  width: 18px;
  height: 18px;
  background: url(../../images/importiconlist.png);
  background-repeat: no-repeat;
  background-position: -72px 0px;
  cursor: pointer;
}

.index_img_up:hover {
  background-position: -72px -18px;
}

#change_error label .error {
    position: absolute;
    display: block;
    margin-top: 116px;
}

.img_banner_cont {
  border:1px solid #ddd; 
  background:#fff;
  height:450px;
  transform: translateY(-0%);
  right: 0px;
  top: 20px;
}

.index_img_span {
  width:160px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis; 
  display:block;
}
/*轮播图上传框固定样式*/
.sie_broadcast {
  display: flex; 
  width: 1200px;
  justify-content: center;
  position: absolute;
  right: 343px;
  top: 0px;
  height: 480px;
  min-width:1200px;
  left: 50%;
  margin-left: -600px;
}



/*首页设置 -- 公告列表 样式（补充）*/
.sie_notice_item {
  width:400px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis; 
  display:block;
}

/*首页设置 -- 热门人员展示  样式（补充）*/
.sie_dis_tag {
  width:200px;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden; 
}
.sie_dis_tag span {
   background:none;
}
.sie_nowrap_p {
  display:flex; 
  align-items: center; 
  justify-content: center;
}
.sie_nowrap_span1 {
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
  margin-right: 8px;
  text-align:right;
  width: auto;
  display: inline;
  max-width: 50%;
}
.sie_nowrap_span2 {
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
  text-align:left;
   width: auto;
  display: inline;
  max-width: 50%;
}
.sie_nowrap_b {
  float:right;
  width:100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
} 
.sie_nowrap_font {
    float:left;
    width:100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color:#333;
}
.sie_hot_psn_st {
    overflow: hidden; 
    display: inline-block; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
    -webkit-line-clamp: 1; 
    -webkit-box-orient: vertical; 
    word-break: break-all; 
    max-width: 30px;
    vertical-align: bottom;
}

.sie_pvw_rf {
  display: flex;  
  justify-content: center; 
  align-items: center;
}

.sie_psn_backward {
  display: flex;  
  justify-content: center; 
  align-items: center;

}
.sie_psn_pvw {
  display: flex; 
  align-items: center;
  top: 0;
}
.sie_psn_forward{
  display: flex;  
  justify-content: center; 
  align-items: center;
  
}
/*首页设置 -- 热门人员弹窗 样式（补充）*/
.sie_foot_blank {
  height:60px;
  width:100%
}
.sie_list_avaimg {
  border: 0px !important;
}
.sie_empty_result {
  margin-top: 15px;
  height: 215px; 
  line-height: 100px; 
  text-align: center;
  color: #999;
  width:100%
}

.sie_psn_sh {
  height: 28px;
  border-radius: 4px;
}
/*首页设置 -- 通知公告弹窗*/
.sie_notice_mask {
  width:780px;
  margin-right:24px;
}

.sie_notice_form {
  width:100%;
  display:flex;
  height:60px;
}

.sie_notice_increased {
  padding-right: 60px; 
  width: 150px;
}
.sie_notice_increased a {
  position:relative; 
  display: inline-block;
  line-height: 28px;
  border-radius:3px;
  padding: 0px 24px; 
  text-align: center;
  margin-left: 5px;
}
.sie_notice_border {
  border-top: 1px solid #ddd;
}

.sie_notice_list { 
  height: 300px;
  overflow-y: auto; 
  display: flex; 
  flex-wrap: wrap; 
  align-content: flex-start; 
}

.sie_notice_li {
  display:flex;
  align-items:center;
}

.sie_notice_title { 
  width:440px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis; 
  display:block;
}

.sie_notice_brief {
  width:265px; 
  display: flex; 
  justify-content: space-between;
  align-items: center;
}

.sie_foot_blank1 {
   height:60px;
   width:100%
}

.sie_notice_date {
    width: 180px;
    padding-right: 32px;
    background: url(../../images/write_date.png) no-repeat 155px center;
    box-sizing: border-box;
}

/*添加公告 弹窗 样式（补充）*/
.sie_notice_editmask {
  width:720px;
  margin-right:24px;
  height:584px;
}


.sie_notice_file_upload {
    color: gainsboro;
    pointer-events: none;
}
.sie_notice_file_download {
    color: gainsboro;
    pointer-events: none;
}

.sie_notice_buttons {
  margin:0 28px 0 0;
}

.sie_notice_channel {
  margin-bottom: 20px;
}

.sie_empty_result2 { 
  height: 361px; 
  line-height: 100px; 
  text-align: center;
  color: #999
}


.sie_notice_link {
  width:266px; 
  padding: 0 0px 0 6px;
  margin-right: 4px;
  position: relative;
  border: 1px solid #ddd;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  box-sizing: border-box;
  behavior: url(../js/PIE.htc);
  min-width: 68px;
}

/*固定高度*/
.sie_noticeview {
  min-height:230px;
  width:870px;
}

.sie_intro { 
  min-height:220px
}

.sie_briefdesc {
  height:240px;
  width:540px;
  margin-right:24px;
}
.sie_briefdesc .SIE_psninfor-item_left {
  width:70px;
  min-width:70px;
}
.psn_tip {
  display:flex;
  align-items: center;
  justify-content: center;
}
.psn_tip img {
  margin-right: 14px;
  width: auto;
  height: auto;
}
.psn_tip font{
  font-size: 24px;
  color: #cccccc;
}