.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;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
}

.text-white{
  color:white;
}

.flex-row-start {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box; 
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}

.h1-index {
  text-align: center;
  font-size: 28px;
  margin: 60px;
}

.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;
}
.news-banner {
  display: block;
  height: 50px;
  width: 100%;
  background-color: #f8e589;
  overflow: hidden;
}
.news-banner p {
  font-size: 20px;
}
.news-banner_content {
  display: inline-block;
  color: #e06239;
  font-weight:bold;
  line-height: 30px;
  padding-left: 90%;
  padding-top:10px;
  white-space: nowrap;
  animation: animate-banner 16s linear infinite;
  /*animation: animate-banner 20s linear infinite;*/
}
.news-banner_content > * {
  display: inline-block;
}
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.promotion{
width: 100%;
position: fixed;
bottom: 0;
right: 0;
background-color: #b10007;
z-index: 2;
}
	  .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);
      }
    }