.el-header .el-main .el-footer {
  padding: 0px;
}
.el-main {
  padding: 0;
}
html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
  margin: 0;
  padding: 0;
}
ul{
  list-style: none;
}
pre{
  width:100%;
  white-space: pre-wrap;/*css-3*/
  white-space: -moz-pre-wrap;/*Mozilla,since1999*/
  white-space: -pre-wrap;/*Opera4-6*/
  white-space: -o-pre-wrap;/*Opera7*/
  word-wrap: break-word;/*InternetExplorer5.5+*/
  overflow: hidden;
}

.flex-row-start {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.flex-row-center {
  width:100%;
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.flex-row-end {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
}

.flex-row-between {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.flex-col-center {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.flex-col-start {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.flex-col-end {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  align-items: center;
}

.flex-col-between {
  display: -moz-box;  /* Firefox */
  display: -ms-flexbox;    /* IE10 */
  display: -webkit-box;    /* Safari */ 
  display: -webkit-flex;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
}

.full-content {
  height: 100%;
  width: 100%;
}

.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copyright-notes {
  height:auto;
  background-color:#80c132;
  text-align:center;
  color:#FFF;
  padding:20px;
  margin-top:30px;
  font-size:18px;
}
.mb-20{
	margin-bottom: 20px;
}
.mt-10{
	margin-top: 10px;
}
.mb-30{
	margin-bottom: 30px;
}
.mt-20{
	margin-top: 20px;
}
.w1110 {
  max-width: 1150px;
  padding: 0 20px;
  margin: auto;
}
 .special-header{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
	  }
	  
	  .special-header .container{
      position: relative;
    }

    .special-icon{
      position: absolute;
      right: 0;
      top: 5px;
      transform: translateX(100%);
    }
	@media (max-width: 992px) {
      .special-icon img{
        width: 64px;
        height: auto;
        vertical-align: middle;
      }

      .special-icon{
        position: static;
      }

      .special-header{
        left: 50%;
        top: 50%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: 1;
      }

      .special-header .container{
        padding: 0;
        width: auto;
      }
    }

    @media (max-width: 468px) {
      .special-header{
        left: calc(50% + 50px);
      }
    }
