/*公共*/
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
    margin: 0;
    padding: 0;
}

.layout {
    width: 100%;
    height: 100%;
    min-width: 1200px;
    position: relative;
}
.layout-container {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    z-index: 1;
    padding-top: 74px;
}
.news {
    min-height: calc(100% - 378px);
    /*overflow-y:auto;*/
}

a{
    text-decoration : none !important
}
.cursor-pointer{
    cursor: pointer;
}
.fs-7{
    font-size: 14px;
}

/*bootstrap 分为5等份*/
  .col-xs-1-5,
  .col-sm-1-5,
  .col-md-1-5,
  .col-lg-1-5 {
      position: relative;
      min-height: 1px;
      padding-right: 10px;
      padding-left: 10px;
  }

.col-xs-1-5 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-1-5 {
        width: 20% !important;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20% !important;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20% !important;
        float: left;
    }
}
.has-error > .help-block {
    color: red;
}

.has-success > .help-block{
    color: #2cb784;
}

.has-warning > .help-block{
    color: #c09853;
}