@charset "utf-8";
/*------------------------------------------------------*/
.cmshtml #page-top {
  border: 2px solid #0065B9;
  background: #fff;
  border-radius: 50%;
  color: #0065B9;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 13px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  width: 65px;
  height: 65px;
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 33;
  cursor: pointer;
  transition: all 0.6s ease;
}
.cmshtml #page-top:before {
  background: url("../img/top_ico.png") no-repeat center;
  background-size: contain;
  content: "";
  display: block;
  width: 15px;
  height: 11px;
  margin: auto;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover {
  background: #0065B9;
  border: 2px solid #fff;
  color: #fff;
}
.cmshtml #page-top:hover:before {
  background-image: url("../img/top_ico_hover.png");
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    width: 50px;
    height: 50px;
    padding-bottom: 9px;
  }
  .cmshtml #page-top:before {
    width: 15px;
    height: 11px;
    top: 10px;
  }
}
/*------------------------------------------------------*/
.cmshtml .load-fade {
  opacity: 0;
  transition: all 2s;
  overflow: hidden;
}
.cmshtml .load-fade.done {
  opacity: 1;
}
.cmshtml .to-lr {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/
.cmshtml #header + * {
  margin-top: 166px;
}
@media screen and (max-width: 1700px) {
  .cmshtml #header + * {
    margin-top: 136px;
  }
}
@media screen and (max-width: 1500px) {
  .cmshtml #header + * {
    margin-top: 153px;
  }
}
@media screen and (max-width: 1200px) {
  .cmshtml #header + * {
    margin-top: 137px;
  }
}
@media screen and (max-width: 1000px) {
  .cmshtml #header + * {
    margin-top: 62px;
  }
}
/*------------------------------------------------------*/
.cmshtml .scnews .rdnewArticle {
    padding: 0;
    border: none;
    background-color: transparent;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item:first-child {
    border-top: 1px solid #0065B9;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item {
    padding: 0;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item + .rdnewArticle-item {
    border-top: none;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-contWrap {
    background: url(../img/btn_arrow.png) no-repeat right 20px center;
    background-size: auto;
    border-bottom: 1px solid #0065B9;
    display: flex;
    flex-flow: nowrap;
    padding: 25px 60px 25px 5px;
}

.cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate {
    font-size: 16px;
    color: #222222;
    text-align: center;
     max-width: 125px; 
    min-width: 125px;
    font-weight: 500;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-ContTitle {
        color: #222222;
    margin-left: 8%;
    font-weight: 500;
}

@media screen and (max-width: 1500px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-contWrap {
    padding: 20px 60px 20px 5px;
  }
}
@media screen and (max-width: 680px) {
  .cmshtml .scnews .rdnewArticle .rdnewArticle-contWrap {
    background-position: right 10px center;
    padding: 15px 30px 15px 5px;
    display: block;
    background-size: 10px auto;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-ContDate {
    max-width: none;
    min-width: 1px;
    text-align: left;
    font-size: 14px;
  }
  .cmshtml .scnews .rdnewArticle .rdnewArticle-ContTitle {
    margin-left: 0;
    margin-top: 5px;
    font-size: 14px;
  }
}
/*------------------------------------------------------*/