@charset "utf-8";
@import url("base.css");
/* 贵州信息港人物频道2025-10-21 */
body {
  overflow-x: hidden;
}
.rw-index header {
  position: fixed;
  top: 0px;
}
.rw-index header nav {
  background-color: rgba(255, 255, 255, 0.3);
  transition: background-color 0.5s ease;
}
.rw-index header nav:hover {
  background-color: rgba(255, 255, 255, 1)
}
.image-wall-container {
  position: absolute;
  background: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  z-index: 1;
  transition: opacity 0.5s;
}
.image-wall {
  display: flex;
  width: 100%;
  height: 100%;
}
.column {
  flex: 1;
  position: relative;
  padding: 0 4px;
  margin: 5px;
}
.image-item {
  width: 100%;
  aspect-ratio: 4/5;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
}
.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}
.image-item img:hover {
  opacity: 1;
}
.image-item:hover {
  transition: transform 0.3s ease;
  transform: scale(1.04);
  z-index: 2;
}
.gzrw-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 30%;
  height: 20%;
}
.gzrw-logo {
  text-align: center;
  perspective: 500px; /* 3D透视 */
}
.gzrw-logo h1 {
  font-size: 88px;
  font-weight: 900;
  color: #fff;
  text-shadow:
    1px 1px 0 #FFFFFF, 2px 2px 0 #b8b8b8, 3px 3px 0 #a4a4a4, 4px 4px 0 #909090, 5px 5px 0 #7c7c7c, 6px 6px 0 #686868, 7px 7px 10px rgba(0, 0, 0, 0.5); /* 多层立体投影 */
  transform: skew(-10deg) rotate(-1deg); /* 倾斜+旋转 */
  background: linear-gradient(45deg, #dc151c, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin: 0;
}
.gzrw-logo p {
  font-size: 38px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(45deg, #FFF, #888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  transform: skew(-10deg) rotate(-1deg);
  margin: 15px 0 0 0;
  font-style: italic;
}
/* 第二屏 - 无限高度内容区 */
.content-section {
  position: relative;
  top: 0;
  margin-top: 100vh;
  background-color: #FFFFFF;
  color: #333;
  width: 100%;
}
.rw-nav-index {
  background: #dc151c !important;
  width: 100% !important;
}
.rw-nav-index a {
  color: #FFFFFF !important;
}
.rw-nav-index a:hover {
  color: #FFFFFF !important;
  background: #333 !important;
}
.rw-hot {
  margin-top: 30px;
}
.rw-hot ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 桌面端6列 */
  gap: 35px; /* 网格间距 */
  padding: 0;
  margin: 0;
  list-style: none;
}
.rw-hot li {
  display: flex;
  flex-direction: column;
}
.rw-info {
  position: relative;
}
.rw-hot li img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s ease;
  aspect-ratio: 2/1.4; /* 保持图片正方形 */
  object-fit: cover; /* 防止图片变形 */
}
.rw-hot li img:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.rw-hot li span {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 0px;
  width: 38px;
  flex-shrink: 0;
  letter-spacing: 2px;
  line-height: 15px;
  background: #c3c3c3;
  font-size: 12px;
  color: #FEFEFE;
  padding: 4px 4px 5px 6px;
  border-radius: 3px;
}
.rw-hot li h5 {
  position: absolute;
  top: 12px;
  left: 45px;
}
.rw-hot li p {
  margin-top: 62px;
  font-size: 12px;
  line-height: 1.5em;
  color: #a8a8a8;
}
.rw-hot li a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
}
.rw-hot li a:hover {
  color: #1e88e5;
}
.content-block {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #A6A6A6;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 10;
  cursor: pointer;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}
.hidden {
  opacity: 0;
  pointer-events: none;
}
.rw-title {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 25px;
}
.story-wrapper {
  display: flex;
}
.story-image-section {
  flex: 0.5;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background: no-repeat;
}
.story-image-section img {
  width: 450px;
  height: 300px;
  border-radius: 5px;
}
.story-columns-section {
  flex: 1;
  display: flex;
}
.column {
  flex: 1;
  padding: 0px 0px 0px 20px;
  display: flex;
  flex-direction: column;
}
.item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.item-list li {
  margin-bottom: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #eee;
  min-height: 50px; /* 最小高度保证对齐 */
  display: flex;
  align-items: center;
}
.item-list li:last-child {
  margin-bottom: 0px;
}
.item-list a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  transition: color 0.3s;
  width: 100%;
}
.item-list a:hover {
  color: #c00;
}
/* 确保两列行高同步 */
.column:nth-child(1) .item-list li, .column:nth-child(2) .item-list li {
  height: auto;
}
.rw-cehua {
  max-width: 1200px;
  margin: 25px 0px 40px 0px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card-image {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.color-block {
  min-height: 110px;
  padding: 15px;
  color: white;
}
/* 红黑交替色块 */
.card:nth-child(odd) .color-block {
  background-color: #c00;
}
.card:nth-child(even) .color-block {
  background-color: #333;
}
.card:nth-child(6) {
  display: none;
}
.color-block h3 {
  font-size: 16px;
  margin-bottom: 10px;
}
.color-block p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}
.rw-zg {
  background: #333;
  width: 100%;
  height: 180px;
  color: #999999;
  overflow: hidden;
}
.rw-zg .w1200 {
  padding: 25px 5px;
}
.rw-zg h6 {
  font-size: 16px;
  color: #FFF;
  font-weight: normal;
  margin-bottom: 20px;
}
.rw-zg p {
  line-height: 1.5em;
}
.about-rw {
  float: left;
  width: 800px;
  height: auto;
}
.about-zg {
  float: right;
  width: 300px;
}
/*人物列表*/
.rw-nav {
  height: 40px;
  line-height: 40px;
  width: 1200px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #e3e3e3, #e7e7e7);
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
}
.rw-nav a {
  display: block;
  float: left;
  width: 100px;
  height: 40px;
  color: #909090;
  text-align: center;
}
.rw-nav a:hover {
  color: #FFF;
  background: #dc151c;
}
.rw-nav .gohome {
  display: none;
}
.weizhi {
  margin-top: 20px;
}
.renwu-list {
  margin-top: 25px;
}
.renwu-list .renwu-title {
  height: 40px;
  background: #f0f0f0;
  margin-bottom: 13px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.renwu-list .renwu-title h2 {
  float: left;
  width: 120px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-family: "微软雅黑", "宋体";
  font-size: 16px;
  background: #FFFFFF;
  color: #dc151c;
  margin-top: 5px;
  margin-left: 10px;
  overflow: hidden;
  display: inline;
}
.renwu-list .renwu-title span {
  float: right;
  width: 600px;
  height: 35px;
  line-height: 35px;
  font-size: 12px;
  color: #727272;
  text-align: right;
  padding-right: 15px;
  overflow: hidden;
  display: inline;
}
.renwu-list .renwu-title span a {
  color: #727272;
}
.renwu-list .renwu-title span a:hover {
  color: #EF0003;
}
.renwu-list .renwu-box ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  margin-left: 0;
  padding: 15px 0px;
  list-style: none;
}
.renwu-list .renwu-box ul li {
  width: 100%;
  height: auto;
  min-height: 353px;
  background: #f7f7f7;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.renwu-list .renwu-box ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.13);
}
.renwu-list .renwu-box ul li .box-pic {
  width: 100%;
	height: auto;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.renwu-list .renwu-box ul li:hover .box-pic {
  transform: scale(1.03);
}
.renwu-list .renwu-box ul li .box-pic img {
  width: 100%;
}
.renwu-list .renwu-box ul li .box-text {
  flex: 1;
  height: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.renwu-list .renwu-box ul li .box-text h3 {
  color: #838383;
  line-height: 26px;
  border-bottom: 1px dotted #a6a6a6;
  padding-bottom: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.renwu-list .renwu-box ul li .box-text p {
  font-size: 12px;
  line-height: 22px;
  color: #696969;
  flex: 1;
}


.renwu-wrap{ height:auto; overflow:hidden;}
 .renwu-title{ height:40px; background:#e0efed; margin-bottom:13px; border-top-left-radius: 5px; border-top-right-radius: 5px; overflow:hidden;}
 .renwu-title h2{ float: left; width:120px; height:35px; line-height:35px; text-align:center; font-family:"微软雅黑", "宋体"; font-size:16px; background:#FFFFFF; color: #9C9C9C; margin-top:5px; margin-left:10px; overflow:hidden; display: inline;}
 .renwu-title h2 a{ color:#FF0004;}
 .renwu-title h2 a:hover{ color:#000000;}
 .renwu-title span{ float: right; width: 600px;  height: 35px; line-height: 35px; font-size: 12px; color: #727272; text-align: right; padding-right: 15px; overflow: hidden; display: inline;}
 .renwu-title span a{ color: #727272;}
 .renwu-title span a:hover{ color:#EF0003;}
 .renwu-box{ height:auto; margin-bottom:15px; overflow:hidden;}
 .renwu-box ul{ width:1300px; margin-left:-25px;}
 .renwu-box ul li{ float:left; width:200px; height:353px; background:#f1eeee; margin:17px 25px; overflow:hidden; display:inline;}
 .renwu-box ul li .box-pic{ width:200px; height:133px; overflow:hidden;}
 .renwu-box ul li .box-text{ height:203px; padding:15px; overflow:hidden;}
 .renwu-box ul li .box-text h3{ color:#838383; line-height:26px; border-bottom:1px dotted #a6a6a6; padding-bottom:10px; margin-bottom:10px; overflow:hidden;}
 .renwu-box ul li .box-text p{ font-size:12px; line-height:22px; color:#696969;}

 .renwu-view{ float:left; width:920px; height:auto; margin-bottom:20px; overflow:hidden; display:inline;}
.renwu-view .weizhi{ margin-top: 0px; margin-bottom: 15px;}
 .renwu-view .renwu-title{ width: auto; margin-bottom: 30px;}
 .renwu-view .content{ width:auto; height: auto; overflow: hidden;}
 h1{ font-size:28px; font-family:"微软雅黑", "宋体"; text-align: center;}
 .time-share{ height:30px; line-height:30px; border-bottom:1px dashed #DCDCDC; overflow:hidden; margin-top:20px;}
 .time-share .time{ float:left; width:400px; height:30px; font-size:12px; color:#B3B3B3; overflow:hidden; display:inline;}
 .time-share .time a{ color:#B3B3B3;}
 .time-share .time a:hover{ text-decoration:underline; color:#5B55ED;}
 .time-share .share{ float:right; width:253px; height:30px; overflow:hidden; display:inline;}

 .content-box{ height: auto; padding: 15px; overflow: hidden;}
 .content-box p{ line-height: 30px; font-size: 16px; margin: 15px 0px;}

/*阅读全文*/
.readall_box {position: relative; z-index:10; padding: 0 0 25px; margin-top: -200px; text-align: center;}
.readall_box .read_more_mask {height: 200px;background: -moz-linear-gradient(bottom,rgba(255,255,255,0.1),rgba(255,255,255,0));background: -webkit-gradient(linear,0 top,0 bottom,from(rgba(255,255,255,0)),to(#fff));background: -o-linear-gradient(bottom,rgba(255,255,255,0.1),rgba(255,255,255,0))}
.read_more_btn{ cursor:pointer; font-size: 16px; background: #fff; border-radius: 3px;border: 1px solid #de686d; line-height: 30px; padding:5px 10px;}
.read_more_btn:hover{ background:#828282;}
.readall_box a{color: #de686d;}
.readall_box a:hover{color: #FFF;}

/*内页tags标签*/
.renwu-view .tags {
  margin: 15px 0;
  font-size: 16px;
  color: #333;
}
.renwu-view .tags a {
  display: inline-block;
  margin: 0 5px 0 0;
  padding: 1px 7px;
  color: #2390ad;
  background: #d1eff7;
  border-radius: 10px;
  line-height: 20px;
  font-size: 12px;
}
.renwu-view .tags a:hover {
  background: #0443a8;
  color: #fff;
}

 .c-title{ width: 100px; height: 22px; line-height: 22px; border-left: 5px solid #DC0003; font-size: 18px; font-weight: bold; padding-left: 15px; margin-bottom: 10px; overflow: hidden;}

/*相关内容*/
.correlation{ width: 880px; height: auto; overflow: hidden;}
.correlation-feed{ height: auto; margin-top: 20px; overflow: hidden;}
.correlation-feed ul li{ height: auto; border-bottom: 1px solid #dedede; padding-bottom: 15px; margin-bottom: 15px; overflow: hidden;}
.li-pic{ float: left; width: 150px; height: 100px; border-radius: 5px; overflow: hidden; display: inline;}
.li-txt{ float: right; width: 690px; height: 100px; overflow: hidden; display: inline;}
.li-txt .li-title{ height:auto; overflow: hidden;}
.li-txt .li-title h2{ font-size: 20px; line-height: 35px;}
.li-txt .li-title h2 a:hover{ color: #C50003;}
.li-txt .li-source{ height: auto; font-size: 12px; margin-top: 5px; color: #878787; overflow: hidden;}
.li-txt .li-source a{ color: #878787;}
.li-txt .li-source a:hover{ color: #175ff3;}
.li-txt .li-source .li-txpic{ float: left; width: 25px; height: 25px; border-radius: 50%; overflow: hidden; display: inline;}
.li-txt .li-source .li-name{ float: left; height: 25px; line-height: 25px; overflow: hidden; display: inline;}
.li-txt .li-source .li-name a{ padding: 0px 10px;}
.li-txt .li-source .li-name a:first-child{ padding-left: 0px;}
.li-txt .li-source .li-name span{ padding-left: 10px;}

/*右侧内容*/
.renwu-side{ float:right; width:250px; height:auto; overflow:hidden; display:inline; margin-top: 33px;}
.renwu-side .side-title{ height: 26px; line-height: 26px; background: url(../images/icon_rw_sidetitle.png) no-repeat left; margin-top: 15px; overflow: hidden;}
.renwu-side .side-title h4{ color: #FFFFFF; padding-left: 20px; font-weight: normal;}
.renwu-side .side-ren{ width:248px; height:auto; margin-bottom:20px; background: #f4f5f6; border: 1px solid #e7e7e7; border-radius: 5px; padding-bottom: 10px; overflow:hidden;}
.facebox{ width: 111px; height: 150px; margin: 0 auto; margin-top: 20px; overflow: hidden;}
.facebox .face{ width: 111px; height: 111px; border-radius: 50%; overflow: hidden;}
.facebox .face img{ width: 100%;}
.facebox p{ height: 30px; line-height: 30px; text-align: center; font-size: 16px; margin-top: 10px; overflow: hidden;}
.intro{ width: 190px; height: auto; color: #6f6f6f; border-top: 1px dotted #c6c6c6; margin: 0 auto; margin-top: 15px; overflow: hidden;}
.intro p{ color: #6f6f6f; line-height: 26px; margin: 10px 0px; text-indent: 2em;}
.author{ height: 75px; width: 200px; margin: 0 auto; margin-top: 20px; overflow: hidden;}
.author .au-face{ float: left; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; display: inline;}
.author .au-name{ float: right; width: 125px; height: 75px; font-size: 12px; margin-top: 3px;  overflow: hidden; display: inline;}
.author .au-name p{ line-height: 20px;}
.author .au-name a{ display: block; width: 80px; height: 26px; line-height: 26px; text-align: center;  border-radius: 5px; color: #FFFFFF; background: #2a90d7; margin-top: 6px; overflow: hidden;}
.author .au-name a:hover{ background: #FB0004;}

.boke-box {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.boke-box ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.boke-box ul li {
  width: 100% !important;
  margin: 10px 0px !important;
  text-align: center;
}

.boke-box ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
}

.boke-box ul li a img {
  width: 100%;
  max-width: 70px; /* 限制最大宽度 */
  height: 70px; /* 固定高度，与宽度相同形成正方形 */
  border-radius: 50%; /* 圆形头像 */
  object-fit: cover; /* 保持比例裁剪 */
  margin: 0 auto 8px; /* 居中并添加底部间距 */
  display: block;
  border: 2px solid #f0f0f0; /* 可选：添加边框 */
}

.boke-box ul li p {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.2;
}

/* 处理空名字 */
.boke-box ul li p:empty {
  display: none;
}

.zoom:hover > img {
    transform: scale(1.1, 1.1);
    transition: .3s transform;
}

.zoom > img {
    transition: .1s transform;
    transform: translateZ(0);
}
.publisher{ position: relative; padding: 10px;}
.publisher i {
  width: 58px;
  height: 58px;
  margin: 0 15px 0px 0;
  display: block;
  border-radius: 50%;
  float: left;
  border: #eae8e8 1px solid;
}
.publisher i img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
p.about_name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 5px 0;
}
span.about_num {
  font-size: 12px;
  font-weight: 400;
  color: #b3b2b2;
  margin-top: 7px;
}
span.about_num b {
  color: #16499d;
  margin: 0 3px;
}
a.btn_more{ 
	height: 35px;
	line-height: 33px;
	margin-bottom: 0px;
	margin-top: 25px;
}



/* 手机端响应式适配 */
@media (max-width: 768px) {
  .renwu-list .renwu-box {
    padding: 10px;
  }
  .renwu-list .renwu-box ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .renwu-list .renwu-box ul li {
    min-height: auto;
    margin-bottom: 15px;
  }
  .renwu-list .renwu-box ul li .box-pic {
    height: auto;
  }
  .renwu-list .renwu-box ul li .box-text {
    padding: 10px;
  }
  .renwu-list .renwu-box ul li .box-text h3 {
    font-size: 14px;
    line-height: 20px;
  }
  .renwu-list .renwu-box ul li .box-text p {
    font-size: 11px;
    line-height: 18px;
  }
	
/* 主要内容区域调整 */
  .renwu-wrap {
    display: flex;
    flex-direction: column;
	  margin-top: 50px;
  }
  
  .renwu-view {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
	.renwu-view .content{
		width: 100%;
		padding: 10px;
	}
  .renwu-side {
    width: 100%;
    float: none;
    margin-top: 0;
  }
  
  /* 标题和内容优化 */
  .content-box h1{
    font-size: 20px !important;
    line-height: 1.4;
    padding: 0 10px;
  }
	.renwu-view .renwu-title{
		width: 100%;
		margin-bottom: 10px;
	}
  .renwu-title h2 {
    max-width: 100px;
    font-size: 18px;
  }
  
  .content-box {
    padding: 10px !important;
  }
  
  .content-box p {
    font-size: 14px !important;
    line-height: 1.6;
    text-align: justify;
  }
  
  .content-box img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* 时间分享区域 */
  .time-share {
    height: auto;
    padding: 10px 0;
	margin-top:0px;
  }
  
  .time-share .time {
    width: 100%;
    text-align: center;
  }
	.time-share .time span{
		margin-right: 0px;
		padding: 0px 3px;
	}
  .time-share .share {
    display: none; /* 移动端隐藏分享 */
  }
  
  /* 阅读全文按钮优化 */
  .readall_box {
    margin-top: -100px;
  }
  
  .read_more_btn {
    font-size: 14px;
    padding: 8px 15px;
  }
	.readall_box .read_more_mask{
		height: 110px;
	}
  /* 标签区域 */
  .tags {
    text-align: left;
	  font-size: 12px;
  }
  
  .tags a {
    margin: 5px 3px;
  }
  /* 相关内容 */
  .correlation { 
    width: 100% !important; 
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .correlation-feed { 
    margin-top: 15px;
  }
  
  .correlation-feed ul li { 
    padding-bottom: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
  }
  
  .li-pic { 
    float: none;
    width: 100% !important;
    height: auto;
    max-height: 200px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .li-pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .li-txt { 
    float: none;
    width: 100% !important;
    height: auto;
  }
  
  .li-txt .li-title { 
    margin-bottom: 8px;
  }
  
  .li-txt .li-title h2 { 
    font-size: 16px !important;
    line-height: 1.4;
    font-weight: 600;
    margin: 0 0 8px 0;
  }
  
  .li-txt .li-title h2 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .li-txt .li-source { 
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 12px;
    margin-top: 8px;
  }
  
  .li-txt .li-source .li-name { 
    float: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 5px;
  }
  
  .li-txt .li-source .li-name a,
  .li-txt .li-source .li-name span {
    line-height: 1.3;
  }
  
  .li-txt .li-source .li-name a:first-child {
    padding-left: 0;
  }
  
  /* 侧边栏优化 */
  .renwu-side {
    height: auto;
	  padding: 10px;
  }
.renwu-side .side-ren{
		width: 100%;
	margin-bottom: 15px;
	}
	.facebox .face{
		width: 100%;
		height: 100%;
	}
	.facebox .face img{
		width: 100%;
		height: 100%;
	}
	.intro{
		width: 100%;
		padding: 15px;
	}
  .facebox {
    text-align: center;
	  width: 140px;
	  height: 140px;
  }
	.boke-box{
		width: 100%;
	}
  .boke-box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
	  width: 100%;
  }
  
  .boke-box ul li a img {
    max-width: 60px;
    height: 60px;
  }
  
  .boke-box ul li p {
    font-size: 12px;
  }
  
  .boke-box ul {
    gap: 8px;
  }
 	
}