@charset "utf-8";
/*------------------------------------------------------*/
.cmshtml #page-top {
  display: block;
  position: fixed;
  bottom: 60px;
  right: 60px;
  z-index: 33;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.cmshtml #page-top:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -5px 0 0 -10px;
  border-top: 2px solid #282828;
  border-right: 2px solid #282828;
  transform: rotate(-45deg);
  transition: all 0.6s ease;
}
.cmshtml #page-top:hover:before {
  top: 0;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
  }
}
/*------------------------------------------------------*/
.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 .grey_fade {
  position: relative;
}
.cmshtml .grey_fade:after {
  background: #575757;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.6s ease;
}
.cmshtml .sc_view.grey_fade:after {
  width: 0;
}
/*------------------------------------------------------*/

.cmshtml .scnews .rdnewArticle {
  border: none;
  padding: 0;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item + .rdnewArticle-item {
  border-top: none;
  margin-top: 20px;
}
.cmshtml .scnews .rdnewArticle .rdnewArticle-item {
  border: none;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0 3px 6px;
  padding: 10px 20px;
  position: relative;
}
.cmshtml .rdnewArticle {
  border: 1px solid #ddd;
}

/*------------------------------------------------------*/
.cmshtml .motion_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cmshtml .motion_title_wrap .tit_small {
  color: #f86921;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0 !important;
  padding-left: 37px !important;
  margin-bottom: 10px;
  position: relative;
}
.cmshtml .motion_title_wrap .tit_small:before {
  background-image: url(../img/title_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  content: "";
  display: block;
  width: 26px;
  height: 22px;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: auto;
}
.cmshtml .motion_title_wrap .tit_large {
  color: #575757;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  padding: 0 5px !important;
  position: relative;
}
.cmshtml .motion_title_wrap .tit_small:after, .cmshtml .motion_title_wrap .tit_large:after {
  background-color: #575757;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  transition: all 1s;
}
.cmshtml .motion_title_wrap .odr_txt {
  position: relative;
}
.cmshtml .odr_txt span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}
.cmshtml .odr_txt span.txt_up {
  transform: translateY(10px);
  animation: textanimation 1s forwards;
  animation-delay: 1s;
}
.cmshtml .motion_title_wrap.active .tit_small:after, .cmshtml .motion_title_wrap.active .tit_large:after {
  animation: hide_bar 1s forwards;
}
.cmshtml .motion_title_wrap.active .tit_small:after {
  animation-delay: 0.5s;
}
.cmshtml .motion_title_wrap.active .tit_large:after {
  animation-delay: 1s;
}
@keyframes hide_bar {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes textanimation {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .cmshtml .motion_title_wrap .tit_large {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .cmshtml .motion_title_wrap .tit_large {
    font-size: 32px;
  }
  .cmshtml .motion_title_wrap .tit_small {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 600px) {
  .cmshtml .motion_title_wrap .tit_large {
    font-size: 24px;
  }
}
#editView .cmshtml .cmshtml .odr_txt span {
  opacity: 1;
  transform: none;
}
#editView .cmshtml .motion_title_wrap .tit_small:after, #editView .cmshtml .motion_title_wrap .tit_large:after {
  display: none;
}
/*------------------------------------------------------*/