@charset "utf-8";

#notice_slide {
  width: 100%;
  height: 50px;
  background: #8C735F;
  display: flex;
  align-items: center;
  justify-content: center;
}

#notice_slide ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

#notice_slide ul li a {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 700px) {
  #notice_slide ul {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  #notice_slide ul li a {
    font-size: 10px;
  }

  #notice_slide {
    height: 35px;
  }
}