#mainlevel_05 .nav-link {
  color: #000;
  border-bottom: 3px inset #e94609;
}

.banner {
  background: url(../images/news/media_banner.jpg) no-repeat center center;
  background-size: cover;
}
.banner .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.banner .banner-content .banner-img {
  height: auto;
  display: none;
}
.banner .banner-content .banner-text {
  font-family: Arial;
  color: #fff;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.page-location {
  color: #9a9a9a;
  font-size: 18px;
  margin: 11px auto;
}
.page-location a {
  color: #9a9a9a;
  font-family: Arial;
}
.page-location a:last-child {
  pointer-events: none;
}
.page-location span {
  font-family: AdobeHeitiStd;
  font-size: 20px;
}

section .section-title {
  color: #333;
  font-family: Arial;
  text-align: center;
  font-weight: bold;
}
section .section-more-btn {
  margin: 0 auto;
  display: table;
  color: #333;
  border-radius: 25px;
  padding: 10px 30px;
  font-family: Arial;
  margin-top: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section .section-more-btn:hover {
  color: #fff;
  background-color: #ea4609;
}

.news-section .news-list .news-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}
.news-section .news-list .news-item:hover .news-img img {
  transform: scale(1.05);
}
.news-section .news-list .news-item:hover .news-info .news-title {
  color: #ea4609;
  font-weight: bold;
}
.news-section .news-list .news-item:hover .news-info .news-desc {
  color: #2b2b2b;
}
.news-section .news-list .news-item:hover .news-info .news-more span {
  color: #ea4609;
}
.news-section .news-list .news-item .news-img {
  overflow: hidden;
}
.news-section .news-list .news-item .news-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s;
}
.news-section .news-list .news-item .news-info {
  font-family: Arial;
}
.news-section .news-list .news-item .news-info .news-date {
  color: #999;
}
.news-section .news-list .news-item .news-info .news-title {
  color: #2b2b2b;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news-section .news-list .news-item .news-info .news-desc {
  color: #9e9e9e;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news-section .news-list .news-item .news-info .news-more {
  display: flex;
  align-items: center;
}
.news-section .news-list .news-item .news-info .news-more span {
  color: #3c4457;
  margin-right: 10px;
}

.video-section .video-list .video-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
}
.video-section .video-list .video-item:hover .img-box::before {
  opacity: 0;
}
.video-section .video-list .video-item .img-box {
  position: relative;
}
.video-section .video-list .video-item .img-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  z-index: 1;
  transition: all 0.3s;
}
.video-section .video-list .video-item .img-box .video-img {
  width: 100%;
  height: auto;
  display: block;
}
.video-section .video-list .video-item .img-box .video-ico {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video-section .video-list .video-item .video-name {
  width: 100%;
  color: #333;
  text-align: center;
  line-height: 28px;
  padding: 10px 10px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.special-section {
  background: #f9f9f9;
}
.special-section .special-list .special-item {
  overflow: hidden;
  display: block;
  width: 100%;
}
.special-section .special-list .special-item:hover img {
  transform: scale(1.05);
}
.special-section .special-list .special-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s;
}
.special-section .special-list .special-item p {
  font-family: Arial;
  font-weight: bold;
  font-size: 18px;
  line-height: 46px;
  color: #333;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

@media (max-width: 575px) {
  .banner {
    padding: 60px 30px;
  }
  .banner .banner-text {
    font-size: 24px;
  }
  section .section-title {
    font-size: 32px;
  }
  section .section-more-btn {
    font-size: 16px;
  }
  .news-section {
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .news-section .news-list {
    margin-top: 15px;
  }
  .news-section .news-list .news-item {
    padding: 15px;
    margin-bottom: 25px;
  }
  .news-section .news-list .news-item .news-img {
    width: 100%;
  }
  .news-section .news-list .news-item .news-info {
    width: 100%;
    padding-top: 15px;
  }
  .news-section .news-list .news-item .news-info .news-date {
    font-size: 16px;
    line-height: 26px;
  }
  .news-section .news-list .news-item .news-info .news-title {
    font-size: 18px;
    line-height: 26px;
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-more {
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-more span {
    font-size: 16px;
    line-height: 26px;
  }
  .video-section {
    padding: 35px 0 40px;
  }
  .video-section .g-4 {
    --bs-gutter-x: 1.2rem;
  }
  .video-section .video-list {
    margin-top: -5px;
  }
  .video-section .video-list .video-item .video-name {
    padding: 10px 0px;
    font-size: 16px;
  }
  .special-section {
    padding: 35px 0 40px;
  }
  .special-section .g-4 {
    --bs-gutter-x: 1.2rem;
  }
  .special-section .special-list {
    margin-top: -5px;
  }
}
@media (min-width: 576px) {
  .banner {
    padding: 100px 0;
  }
  .banner .banner-content .banner-text {
    width: 100%;
    font-size: 34px;
  }
  section .section-title {
    font-size: 32px;
  }
  section .section-more-btn {
    font-size: 16px;
  }
  .news-section {
    padding-top: 15px;
    padding-bottom: 40px;
  }
  .news-section .news-list {
    margin-top: 20px;
  }
  .news-section .news-list .news-item {
    padding: 15px;
    margin-top: 23px;
  }
  .news-section .news-list .news-item .news-img {
    width: 42%;
  }
  .news-section .news-list .news-item .news-info {
    width: 58%;
    padding-left: 15px;
    padding-right: 0;
  }
  .news-section .news-list .news-item .news-info .news-date {
    font-size: 16px;
    line-height: 26px;
  }
  .news-section .news-list .news-item .news-info .news-title {
    font-size: 18px;
    line-height: 26px;
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-more {
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-more span {
    font-size: 16px;
    line-height: 26px;
  }
  .video-section {
    padding: 35px 0 40px;
  }
  .video-section .video-list {
    margin-top: 5px;
  }
  .video-section .video-list .video-item .video-name {
    font-size: 16px;
  }
  .special-section {
    padding: 35px 0 40px;
  }
  .special-section .special-list {
    margin-top: 5px;
  }
}
@media (min-width: 768px) {
  .banner {
    padding: 73px 0;
  }
  .banner .banner-content .banner-img {
    display: block;
    width: 45%;
  }
  .banner .banner-content .banner-text {
    width: 55%;
    font-size: 30px;
  }
  .news-section .news-list .news-item .news-img {
    width: 30%;
  }
  .news-section .news-list .news-item .news-info {
    width: 70%;
  }
}
@media (min-width: 992px) {
  .banner {
    padding: 73px 0;
  }
  .banner .banner-content .banner-img {
    width: 48%;
  }
  .banner .banner-content .banner-text {
    width: 48%;
    font-size: 36px;
  }
  section .section-title {
    font-size: 34px;
  }
  .news-section .news-list .news-item {
    padding: 15px;
    margin-top: 23px;
  }
  .news-section .news-list .news-item .news-img {
    width: 27%;
  }
  .news-section .news-list .news-item .news-info {
    width: 73%;
    padding-left: 30px;
    padding-right: 20px;
  }
  .news-section .news-list .news-item .news-info .news-date {
    font-size: 16px;
    line-height: 26px;
  }
  .news-section .news-list .news-item .news-info .news-title {
    font-size: 18px;
    line-height: 26px;
    margin-top: 8px;
  }
  .news-section .news-list .news-item .news-info .news-desc {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
  .news-section .news-list .news-item .news-info .news-more {
    margin-top: 5px;
  }
  .news-section .news-list .news-item .news-info .news-more span {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .banner .banner-content .banner-text {
    font-size: 42px;
  }
  section .section-title {
    font-size: 36px;
  }
  section .section-more-btn {
    font-size: 18px;
  }
  .news-section {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .news-section .news-list .news-item .news-img {
    width: 22%;
  }
  .news-section .news-list .news-item .news-info {
    width: 78%;
  }
  .news-section .news-list .news-item .news-info .news-title {
    font-size: 20px;
    line-height: 30px;
  }
  .video-section {
    padding: 40px 0 50px;
  }
  .video-section .video-list {
    margin-top: -2px;
  }
  .special-section {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .special-section .special-list {
    margin-top: 5px;
  }
}
@media (min-width: 1400px) {
  .banner .banner-content .banner-text {
    width: 42%;
    font-size: 44px;
  }
  section .section-title {
    font-size: 38px;
  }
  .news-section .news-list .news-item .news-img {
    width: 19%;
  }
  .news-section .news-list .news-item .news-info {
    width: 81%;
    padding-left: 40px;
  }
}
@media (min-width: 1600px) {
  .banner .banner-content .banner-text {
    font-size: 48px;
  }
  section .section-title {
    font-size: 40px;
  }
  section .section-more-btn {
    font-size: 20px;
  }
  .news-section .news-list .news-item {
    margin-top: 33px;
  }
  .news-section .news-list .news-item .news-img {
    width: 18.35%;
  }
  .news-section .news-list .news-item .news-info {
    width: 81.65%;
  }
  .news-section .news-list .news-item .news-info .news-date {
    font-size: 18px;
    line-height: 30px;
  }
  .news-section .news-list .news-item .news-info .news-title {
    margin-top: 15px;
    font-size: 22px;
  }
  .news-section .news-list .news-item .news-info .news-desc {
    font-size: 18px;
  }
  .news-section .news-list .news-item .news-info .news-more span {
    font-size: 18px;
    line-height: 30px;
  }
  .video-section .g-4 {
    --bs-gutter-x: 1.86rem;
  }
  .video-section .video-list {
    margin-top: 10px;
  }
  .video-section .video-list .video-item .video-name {
    font-size: 18px;
  }
  .special-section .g-4 {
    --bs-gutter-x: 1.86rem;
  }
  .special-section .special-list {
    margin-top: 15px;
  }
}/*# sourceMappingURL=media.css.map */