/* main6 容器 - 确保有足够空间显示悬停内容 */
.isPc .main6 {
  overflow: visible;
  /* padding-bottom: 200px; */
}

/* jl-box 容器样式 - 两个ul并排显示 */
.isPc .jl-box {
  width: 100%;
  max-width: 100%;
  padding: 50px;
  overflow: visible;
  position: relative;
  background: #fff;
  box-sizing: border-box;
}
.isPc .jl-box:before,
.isPc .jl-box:after {
  content: "";
  display: table;
}
.isPc .jl-box:after {
  clear: both;
}

/* 左侧ul样式 - 有间隔 */
.isPc .jl-box-list1 {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

.isPc .jl-box-list1 li {
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #c9eeff;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#c9eeff', EndColorStr='#ffffff');
  background: linear-gradient(to bottom, #c9eeff, #fff);
  float: left;
  margin-right: 50px;
}

.isPc .jl-box-list1 li:last-child {
  margin-right: 0;
}

/* 右侧容器 */
.isPc .jl-box-right {
  float: right;
  overflow: hidden;
}

/* 右侧标题 */
.isPc .jl-box-right .jl-right-title {
  width: 80px;
  writing-mode: tb-rl;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#c9eeff', EndColorStr='#ffffff');
  background: linear-gradient(to bottom, #c9eeff, #fff);
  font-size: 16px;
  color: #165a99;
  font-weight: 600;
  padding: 15px 25px;
  border: 1px solid #b1d3fc;
  border-right: none;
  border-radius: 5px 0 0 5px;
  white-space: nowrap;
  height: 130px;
  display: block;
  float: left;
  box-sizing: border-box;
}

/* 右侧ul样式 - 无间隔，连在一起 */
.isPc .jl-box-list2 {
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
}

/* li标签基础样式 - 渐变背景 */
.isPc .jl-box li {
  width: 130px;
  height: 130px;
  background: #c9eeff;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#c9eeff', EndColorStr='#ffffff');
  background: linear-gradient(to bottom, #c9eeff, #fff);
  border: 1px solid #b1d3fc;
  display: block;
  position: relative;
  cursor: pointer;
  float: left;
  padding: 10px 8px;
  box-sizing: border-box;
}

/* 右侧li标签连在一起 - 去除左边框，拉宽以容纳文字 */
.isPc .jl-box-list2 li {
  margin-left: -1px;
  border-left: none;
  width: 160px;
  min-width: 160px;
}

.isPc .jl-box-list2 li:first-child {
  margin-left: 0;
  border-left: 1px solid #b1d3fc;
}

.isPc .jl-box-list2 li:last-child {
  border-radius: 0 5px 5px 0;
}
/* a标签样式 - 继承li的flex布局 */
.isPc .jl-box li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

/* 图片样式 */
.isPc .jl-box li img {
  width: 50px;
  height: 50px;
  display: block;
  margin: 8px auto;
}

/* 文案样式 */
.isPc .jl-box li .text {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #165a99;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 悬停效果 */
.isPc .jl-box li:hover {
  background: #a8dfff;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#a8dfff', EndColorStr='#e6f7ff');
  border-color: #7ab8f0;
  box-shadow: 0 6px 16px rgba(22, 90, 153, 0.2);
}

.isPc .jl-box li:hover .text {
  color: #0d4a7a;
}

/* 微信和电话的悬停内容 */
.isPc .jl-box .weixinCont,
.isPc .jl-box .phoneCont {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -75px;
  margin-top: 10px;
  z-index: 10;
  background: #fff;
  border: 1px solid #b1d3fc;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(22, 90, 153, 0.25);
  filter: alpha(opacity=0);
}

.isPc .jl-box li:hover .weixinCont,
.isPc .jl-box li:hover .phoneCont {
  display: block;
  filter: alpha(opacity=100);
}

.isPc .jl-box .weixinCont img {
  width: 120px;
  height: auto;
  display: block;
}

.isPc .jl-box .phoneCont {
  width: 230px;
  background: #7ab8f0;
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#7ab8f0', EndColorStr='#a8dfff');
  color: #fff;
  line-height: 25px;
  font-size: 14px;
  text-align: left;
  border-color: #5a9dd8;
}

.isPc .jl-box .wxCont {
  display: none;
}

.isPc .jl-box li.jl_w:hover .wxCont {
  display: block;
}

/* content-box 容器样式 - 两列布局，对齐方式和jl-box一致 */
.isPc .content-box {
  width: 100%;
  max-width: 100%;
  padding: 50px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-top: 20px;
  box-sizing: border-box;
}
.isPc .content-box:before,
.isPc .content-box:after {
  content: "";
  display: table;
}
.isPc .content-box:after {
  clear: both;
}

/* 左侧内容区域 */
.isPc .content-left {
  float: left;
  width: 48%;
  margin-right: 2%;
  overflow: hidden;
  box-sizing: border-box;
}

/* 右侧内容区域 */
.isPc .content-right {
  float: right;
  width: 48%;
  margin-left: 2%;
  overflow: hidden;
  box-sizing: border-box;
}

/* 内容标题区域 */
.isPc .content-header {
  margin-bottom: 20px;
}
.isPc .content-header:before,
.isPc .content-header:after {
  content: "";
  display: table;
}
.isPc .content-header:after {
  clear: both;
}

/* h3标题样式 - 左侧有边框线 */
.isPc .content-header h3 {
  font-size: 24px;
  color: #2d66a5;
  font-weight: bold;
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid #2d66a5;
  line-height: 1.2;
  float: left;
}

/* 查看更多链接 */
.isPc .content-header .more-link {
  font-size: 14px;
  color: #2d66a5;
  text-decoration: none;
  float: right;
}

.isPc .content-header .more-link:hover {
  text-decoration: none;
}

/* 左侧列表样式 */
.isPc .content-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.isPc .content-list li {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.isPc .content-list li:last-child {
  border-bottom: none;
}

.isPc .content-list li a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 75%;
  box-sizing: border-box;
}

.isPc .content-list li a:hover {
  color: #2d66a5;
}

.isPc .content-list li .time {
  float: right;
  font-size: 14px;
  color: #999;
  margin-left: 10px;
  white-space: nowrap;
}

/* 留言统计 */
.isPc .message-stats {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isPc .message-stats em {
  color: #2d66a5;
  font-weight: 500;
}

/* 留言表格样式 */
.isPc .message-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.isPc .message-table thead {
  background: #f5f5f5;
}

.isPc .message-table th {
  padding: 12px 10px;
  text-align: left;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.isPc .message-table td {
  padding: 12px 10px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 第一列（标题列）限制为12个汉字 */
.isPc .message-table td:first-child {
  max-width: 12em;
}

/* 其他列限制为8个汉字 */
.isPc .message-table td:nth-child(2),
.isPc .message-table td:nth-child(3),
.isPc .message-table td:nth-child(4) {
  max-width: 8em;
}

.isPc .message-table tbody tr:hover {
  background: #fafafa;
}

.isPc .message-table tbody tr:last-child td {
  border-bottom: none;
}
.row-link {
  color: #333;
  font-size: 16px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 8em;
}

.row-link:hover {
  text-decoration: none;
}
.isWap .row-link {
  max-width: 100%;
}

/* diaocha-box 容器样式 */
.isPc .diaocha-box {
  width: 100%;
  max-width: 100%;
  padding: 50px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-top: 20px;
  box-sizing: border-box;
  display: table;
}
.isPc .diaocha-box:before,
.isPc .diaocha-box:after {
  content: "";
  display: table;
}
.isPc .diaocha-box:after {
  clear: both;
}

/* diaocha-left 和 diaocha-right 容器 */
.isPc .diaocha-left {
  display: table-cell;
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
  vertical-align: middle;
}

.isPc .diaocha-right {
  display: table-cell;
  width: 50%;
  padding-left: 20px;
  box-sizing: border-box;
  vertical-align: middle;
}

/* diaocha-header 标题区域 */
.isPc .diaocha-header {
  margin-bottom: 20px;
}
.isPc .diaocha-header:before,
.isPc .diaocha-header:after {
  content: "";
  display: table;
}
.isPc .diaocha-header:after {
  clear: both;
}

/* diaocha-header h3标题样式 */
.isPc .diaocha-header h3 {
  font-size: 24px;
  color: #2d66a5;
  font-weight: bold;
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid #2d66a5;
  line-height: 1.2;
  float: left;
}

/* diaocha-header 查看更多链接 */
.isPc .diaocha-header .more-link {
  font-size: 14px;
  color: #2d66a5;
  text-decoration: none;
  float: right;
}

.isPc .diaocha-header .more-link:hover {
  text-decoration: none;
}

/* diaocha-left 列表样式 - 内容与状态同一行 */
.isPc .diaocha-left .content-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.isPc .diaocha-left .content-list li {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.isPc .diaocha-left .content-list li:last-child {
  border-bottom: none;
}

.isPc .diaocha-left .content-list li a {
  font-size: 16px;
  /* font-size: 14px; */
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 28em;
  box-sizing: border-box;
}

.isPc .diaocha-left .content-list li a:hover {
  color: #2d66a5;
}

/* 状态标签和反馈链接同一行 */
.isPc .diaocha-left .content-list li .status {
  display: block;
  color: #666;
  font-size: 16px;
  box-sizing: border-box;
  /* margin-left: 10px; */
  float: right;
}

.isPc .diaocha-left .content-list li .status.status-ing {
  color: #e6a23c;
}

.isPc .diaocha-left .content-list li .status.status-done {
  color: #67c23a;
}

.isPc .diaocha-left .content-list li .feedback-link {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  color: #2d66a5;
  text-decoration: none;
  font-size: 16px;
  width: 2em;
  white-space: nowrap;
}

/* diaocha-right 列表样式 */
.isPc .diaocha-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isPc .diaocha-right ul li {
  margin: 0 0 10px 0;
  padding: 12px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.isPc .diaocha-right ul li a {
  text-decoration: none;
  display: block;
}

.isPc .diaocha-right ul li a:hover {
  opacity: 0.8;
}

/* 内容标题 - 带小黑圆点 */
.isPc .diaocha-right ul li .title {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 8px 0;
  padding-left: 12px;
  position: relative;
}

.isPc .diaocha-right ul li .title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}

/* 日期样式 */
.isPc .diaocha-right ul li .date {
  font-size: 12px;
  color: #999;
  margin: 0;
  padding-left: 12px;
  line-height: 1.4;
}

/* ========== 移动端样式 ========== */

/* main6 移动端容器 */
.isWap .main6 {
  padding: 0.4rem 0 0;
  margin-bottom: 0.5rem;
}

/* jl-box 移动端样式 */
.isWap .jl-box {
  background: #fff;
  padding: 0 0.4rem;
}

.isWap .jl-box ul {
  padding: 0.4rem 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.isWap .jl-box li {
  width: 30%;
  margin-left: 2.5%;
  margin-bottom: 0.4rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.2rem;
  box-sizing: border-box;
}

.isWap .jl-box li:first-child,
.isWap .jl-box li:nth-child(3n + 1) {
  margin-left: 0;
}

/* 移动端a标签样式 */
.isWap .jl-box li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.isWap .jl-box li img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  margin-bottom: 0.2rem;
  display: block;
  flex-shrink: 0;
}

.isWap .jl-box li .text {
  font-size: 0.24rem;
  color: #165a99;
  text-align: center;
  line-height: 1.4;
  word-break: break-all;
}

/* 移动端悬停内容 */
.isWap .jl-box .weixinCont,
.isWap .jl-box .phoneCont {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #fff;
  border: 1px solid #a18055;
  border-radius: 5px;
  padding: 0.4rem;
  box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  max-width: 80%;
}

.isWap .jl-box li:active .weixinCont,
.isWap .jl-box li:active .phoneCont {
  display: block;
}

.isWap .jl-box .weixinCont img {
  width: 3rem;
  height: auto;
  display: block;
}

.isWap .jl-box .phoneCont {
  background: #a18055;
  color: #fff;
  font-size: 0.28rem;
  line-height: 1.6;
  text-align: left;
}

/* content-box 移动端样式 */
.isWap .content-box {
  background: #fff;
  padding: 0.4rem;
}

/* 移动端内容区域 - 垂直排列 */
.isWap .content-left,
.isWap .content-right {
  width: 100%;
  margin: 0 0 0.6rem 0;
}

.isWap .content-left:last-child,
.isWap .content-right:last-child {
  margin-bottom: 0;
}

/* 移动端标题区域 */
.isWap .content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.isWap .content-header h3 {
  font-size: 0.36rem;
  color: #2d66a5;
  margin: 0;
  padding-left: 0.24rem;
  font-weight: bold;
  border-left: 0.08rem solid #2d66a5;
  line-height: 1.2;
}

.isWap .content-header .more-link {
  font-size: 0.28rem;
  color: #2d66a5;
  text-decoration: none;
}

.isWap .content-header .more-link:active {
  opacity: 0.7;
}

/* 移动端统计信息 */
.isWap .message-stats {
  font-size: 0.26rem;
  color: #666;
  margin-bottom: 0.3rem;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.isWap .message-stats em {
  color: #2d66a5;
  font-weight: 500;
}

/* 移动端列表样式 */
.isWap .content-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isWap .content-list li {
  margin: 0;
  padding: 0.24rem 0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.isWap .content-list li:last-child {
  border-bottom: none;
}

.isWap .content-list li a {
  font-size: 0.28rem;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}

.isWap .content-list li a:active {
  color: #2d66a5;
}

.isWap .content-list li .time {
  float: right;
  font-size: 0.24rem;
  color: #999;
  margin-left: 10px;
  white-space: nowrap;
}

/* 移动端表格样式 - 改为卡片式布局 */
.isWap .message-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.26rem;
}

.isWap .message-table thead {
  display: none;
}

.isWap .message-table tbody {
  display: block;
}

.isWap .message-table tr {
  display: block;
  margin-bottom: 0.3rem;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0rem;
  box-sizing: border-box;
}

.isWap .message-table td {
  display: block;
  position: relative;
  padding: 0.2rem 0 0.2rem 1.8rem;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 20em;
  box-sizing: border-box;
}

.isWap .message-table td:last-child {
  border-bottom: none;
}

/* 为移动端表格添加标签 */
.isWap .message-table td:before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  content: attr(data-label);
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.isWap .message-table td:nth-child(1):before {
  padding-left: 0.2rem;
  content: "标题：";
}

.isWap .message-table td:nth-child(2):before {
  padding-left: 0.2rem;
  content: "时间：";
}

.isWap .message-table td:nth-child(3):before {
  padding-left: 0.2rem;
  content: "单位：";
}

.isWap .message-table td:nth-child(4):before {
  padding-left: 0.2rem;
  content: "回复：";
}

/* diaocha-box 移动端样式 */
.isWap .diaocha-box {
  background: #fff;
  padding: 0.4rem;
}

.isWap .diaocha-left,
.isWap .diaocha-right {
  width: 100%;
  margin: 0 0 0.6rem 0;
}

.isWap .diaocha-left:last-child,
.isWap .diaocha-right:last-child {
  margin-bottom: 0;
}

/* 移动端标题区域 */
.isWap .diaocha-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.isWap .diaocha-header h3 {
  font-size: 0.36rem;
  color: #2d66a5;
  margin: 0;
  padding-left: 0.24rem;
  font-weight: bold;
  border-left: 0.08rem solid #2d66a5;
  line-height: 1.2;
}

.isWap .diaocha-header .more-link {
  font-size: 0.28rem;
  color: #2d66a5;
  text-decoration: none;
}

.isWap .diaocha-header .more-link:active {
  opacity: 0.7;
}

/* diaocha-left 移动端列表样式 */
.isWap .diaocha-left .content-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isWap .diaocha-left .content-list li {
  margin: 0;
  padding: 0.24rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.isWap .diaocha-left .content-list li:last-child {
  border-bottom: none;
}

.isWap .diaocha-left .content-list li a {
  font-size: 0.28rem;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 80%;
}

.isWap .diaocha-left .content-list li a:active {
  color: #2d66a5;
}

.isWap .diaocha-left .content-list li .status {
  display: block;
  color: #666;
  font-size: 0.24rem;
  float: right;
}

.isWap .diaocha-left .content-list li .status.status-ing {
  color: #e6a23c;
}

.isWap .diaocha-left .content-list li .status.status-done {
  color: #67c23a;
}

.isWap .diaocha-left .content-list li .feedback-link {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.2rem;
  color: #2d66a5;
  text-decoration: none;
  font-size: 0.24rem;
}

/* diaocha-right 移动端列表样式 */
.isWap .diaocha-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isWap .diaocha-right ul li {
  margin: 0 0 0.3rem 0;
  padding: 0.3rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.1rem;
}

.isWap .diaocha-right ul li:last-child {
  margin-bottom: 0;
}

.isWap .diaocha-right ul li a {
  text-decoration: none;
  display: block;
}

.isWap .diaocha-right ul li a:active {
  opacity: 0.8;
}

.isWap .diaocha-right ul li .title {
  font-size: 0.28rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.15rem 0;
  padding-left: 0.24rem;
  position: relative;
}

.isWap .diaocha-right ul li .title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12rem;
  width: 0.1rem;
  height: 0.1rem;
  background: #333;
  border-radius: 50%;
}

.isWap .diaocha-right ul li .date {
  font-size: 0.22rem;
  color: #999;
  margin: 0;
  padding-left: 0.24rem;
  line-height: 1.4;
}

/* video-box PC端样式 */
.isPc .video-box {
  width: 100%;
  max-width: 100%;
  padding: 50px;
  overflow: hidden;
  position: relative;
  background: #fff;
  margin-top: 20px;
  box-sizing: border-box;
}
.isPc .video-box:before,
.isPc .video-box:after {
  content: "";
  display: table;
}
.isPc .video-box:after {
  clear: both;
}

/* video-header 标题区域 */
.isPc .video-header {
  margin-bottom: 20px;
}
.isPc .video-header:before,
.isPc .video-header:after {
  content: "";
  display: table;
}
.isPc .video-header:after {
  clear: both;
}

.isPc .video-header h3 {
  font-size: 24px;
  color: #2d66a5;
  font-weight: bold;
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid #2d66a5;
  line-height: 1.2;
  float: left;
}

.isPc .video-header .more-link {
  font-size: 14px;
  color: #2d66a5;
  text-decoration: none;
  float: right;
}

/* video列表样式 - 5列布局 */
.isPc .video-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isPc .video-box ul:before,
.isPc .video-box ul:after {
  content: "";
  display: table;
}
.isPc .video-box ul:after {
  clear: both;
}

.isPc .video-box ul li {
  float: left;
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  padding: 10px;
}

.isPc .video-box ul li:nth-child(3n) {
  margin-right: 0;
}

.isPc .video-box ul li a {
  display: block;
  text-decoration: none;
}

.isPc .video-box ul li a:hover .title {
  color: #2d66a5;
}

.isPc .video-box ul li img {
  width: 100%;
  height: 239px;
  display: block;
  background: #000;
  object-fit: cover;
}

.isPc .video-box ul li .title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 10px 0 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.isPc .video-box ul li .date {
  font-size: 12px;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

/* video-box 移动端样式 */
.isWap .video-box {
  background: #fff;
  padding: 0.4rem;
}

.isWap .video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.isWap .video-header h3 {
  font-size: 0.36rem;
  color: #2d66a5;
  margin: 0;
  padding-left: 0.24rem;
  font-weight: bold;
  border-left: 0.08rem solid #2d66a5;
  line-height: 1.2;
}

.isWap .video-header .more-link {
  font-size: 0.28rem;
  color: #2d66a5;
  text-decoration: none;
}

.isWap .video-header .more-link:active {
  opacity: 0.7;
}

.isWap .video-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.isWap .video-box ul li {
  margin-bottom: 0.4rem;
}

.isWap .video-box ul li a {
  display: block;
  text-decoration: none;
}

.isWap .video-box ul li a:active .title {
  color: #2d66a5;
}

.isWap .video-box ul li video {
  width: 100%;
  height: 239px;
  display: block;
  background: #000;
}

.isWap .video-box ul li .title {
  font-size: 0.28rem;
  color: #333;
  line-height: 1.5;
  font-weight: bold;
  margin: 0.2rem 0 0.1rem 0;
}

.isWap .video-box ul li .date {
  font-size: 0.22rem;
  color: #999;
  margin: 0;
  line-height: 1.4;
}

.isPc .jl_nav {
  width: 100%;
  padding: 16px 15px;
  box-sizing: border-box;
  display: table;
  table-layout: fixed;
}

.isPc .jl_nav span {
  display: table-cell;
  padding-right: 20px;
  margin-bottom: 0;
  box-sizing: border-box;
  vertical-align: top;
  width: 50%;
  border: none;
}

.isPc .jl_nav span:last-child {
  padding-right: 0;
}

.isPc .jl_nav span a {
  display: block;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

.isPc .jl_nav span a img {
  width: 100%;
  height: 150px;
  display: block;
}

.isPc .jl_nav span .text,
.isWap .jl_nav span .text {
  padding: 10px;
  margin-top: -30px;
  background: #eee1d1;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  height: 100%;
}
.isPc .jl_nav span a:hover {
  text-decoration: none;
}

.isPc .jl_nav span .t2,
.isWap .jl_nav span .t2 {
  background: #c9e0f7;
  color: #fff;
}

.isPc .jl_nav span em,
.isWap .jl_nav span em {
  font-weight: 600;
}

.isPc .jl_nav span .text p,
.isWap .jl_nav span .text p {
  font-family: "Noto Serif SC", "微软雅黑", serif;
}
