html {
    font-size: 20px;
}

.ne_xc,
.ne_navi ol {
    width: 1380px;
}
.ne_ftinfo .ne_c{
    width: 100%;
}
.ne_xc {
    display: flex;
    gap: 10px;
}

.ne_xc .ne_headline {
    width: auto;
    flex: 1 1 0%;
}
.ne_xc .ne_homeNews {
    width: 700px;
}

.ne_xc .ne_hpl {
    width: auto;
    flex: 1 1 0%;
}

.ne_xc .ne_hpr {
    width: 600px;
}

.ne_hpr .ne_c {
    width: auto;
}

.ne_hc .ne_q {
    display: flex;
}

dl.ne_large,
ul.ne_compact {
    width: auto;
    flex: 1;
}

dl.ne_large {
    padding: 10px;
}
ul.ne_compact {
    padding-right: 10px;
}

.ne_homeNews .ne_c {
    width: auto;
}
.notice{
    box-shadow: 0 0 10px #ddd;
    padding: 10px 0;
}
.notice .container{
    width: 100%;
}
.notice .container a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.notice img{
    width: 30px;
}
.notice .notice-text{
    font-size: 14px;
    flex: 1;
    padding: 0 15px;
}
@media (max-width: 600px) {
    html {
        overflow-x: hidden;
    }
    .w_grid-1645173588422 {
        box-sizing: border-box;
    }
    .ne_row.ne_q.ne_fw.ne_homePress .ne_headline {
        display: none;
    }
    .ne_row.ne_q.ne_fw.ne_homePress .ne_homeNews {
        width: 100%;
    }
    .ne_row.ne_q .ne_xc {
        width: 100%;
    }
    .ne_row.ne_q .ne_hpl {
        display: none;
    }
    .ne_row.ne_q .ne_hpr {
        width: 100%;
    }

    #c_portalResComplaintPage_detail-16451753809192935 {
        padding-right: 20px;
    }

    #w_grid-1645178697600 {
        display: none;
    }

    #w_grid-1645175823589 span,
    #w_grid-1645175823589 .font,
    #w_grid-1645175823589 a,
    #w_grid-1645175823589 strong,
    #w_grid-1645175823589 p {
        color: white !important;
    }

    .ne_c {
        width: 100% !important;
    }

    .p_gridbox {
        padding: 10px;
        box-sizing: border-box;
    }

    .ne_ftcontact.ne_q.ne_fw p {
        display: flex;
        flex-direction: column;
    }
    .ne_ftnavi.ne_q.ne_fw p {
        display: none;
    }
    .ne_ftnavi.ne_q.ne_fw p a {
        width: 100%;
    }
    .ne_ftnavi.ne_q.ne_fw em {
        display: none;
    }
    .ne_ftlinks.ne_q.ne_fw {
        padding: 10px;
        box-sizing: border-box;
    }
    #c_portalResEbizads_banner-16451671662255749 .text{
        bottom: 25%;
    }
}
.w_grid-000 .more-btn{
    margin-top: 30px;
}
.w_grid-000 .more-btn a{
    background-color: #fff;
    border: 1px solid #05683A;
    transition: .3s;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0 20px;
    display: inline-block;
}
.w_grid-000 .more-btn a:hover{
    background-color: #05683A;
    color: #fff;
}
/* 视频列表样式 */
.page-video {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* 设置间距 */
}

/* 每个视频项的样式 */
.page-video li {
  flex: 1 1 calc(33.333% - 20px); /* 每行3个，减去间距 */
  list-style: none;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-video li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 视频样式 */
.page-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* 标题样式 */
.page-video h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 10px;
  text-align: center;
  margin: 0;
}

/* 副标题样式 */
.page-video .p_title {
  display: block;
  font-size: 14px;
  color: #666;
  text-align: center;
  padding: 0 10px 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .page-video li {
    flex: 1 1 calc(50% - 20px); /* 在小屏幕上每行2个 */
  }
}

@media (max-width: 480px) {
  .page-video li {
    flex: 1 1 100%; /* 在超小屏幕上每行1个 */
  }
}