@import "../variables";
@import "../mixins";
@import (reference) "../utilities";
.modal-notice{
  font-size:@font-size-medium;
  .modal-content,.modal-header{
    /*border-radius:0;*/
  }
  .modal-body{
    padding: 0;
    overflow: hidden;
  }
  ul{
    width: 200px;
    float: left;
    background: #f5f5f5;
    border-bottom-left-radius: 10px;
    li:last-child{
      border-bottom:none;
    }
  }
  li{
    border-bottom:1px solid #e5e5e5;
    cursor: pointer;
    color: @gray;
    line-height: 50px;
    .text-overflow();
    padding-left: 15px;
    padding-right: 15px;
    text-align:center;
    &.active{
      cursor: default;
      color: @brand-primary;
      position: relative;
      &:before{
        content: '';
        width: 4px;
        left: 0;
        height: 100%;position: absolute;
        background: @brand-primary;
      }
    }
  }
  @media (min-width:@screen-md){
    .modal-dialog{
      width: 780px;
    }
  }
}
.lx-notice-content{
  overflow-x: hidden;
  padding: 30px 60px;
  color: @gray;
  height: 509px;
  overflow-y:auto;
  h2{
    font-size: 22px;
    margin-top: 0;text-align: center;
    margin-bottom: 0;
    padding-bottom: 25px;
    span{
      display: block;
      font-size:@font-size-medium;
      margin-top: 5px;
    }
  }
  > div{
    padding-top: 20px;
    border-top:1px solid #e5e5e5;
    &:empty{
      border-top:none;
    }
  }
  img{
    max-width: 100%;
  }
}