@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Microsoft Yahei', PingFangSC, sans-serif;
  background: #f2f4f7;
  color: #2c333a;
  line-height: 1.75;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 上方头条 */
.focus-headline{
    background:#fff;
    border-radius:10px;
    padding:18px 22px;
    margin-bottom:18px;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
	position:relative;
}
.focus-headline-link{
    display:block;
    text-decoration:none;
    color:#2c333a;
	text-align:center;
	margin:30px auto;
}
.focus-head-tag{
    display:inline-block;
    background:#d62828;
    color:#fff;
    font-size:13px;
    padding:2px 10px;
    border-radius:4px;
    margin-right:10px;
    vertical-align:middle;
	position:absolute;
	left:20px;
	top:20px;
}
.focus-headline-link h3{
    display:inline-block;
    font-size:28px;
    color:#164eac;
    font-weight:bold;
    vertical-align:middle;
}
.focus-headline-link:hover h3{
    color:#0f4896;
}


/* ==========焦点轮播区域========== */
.focus-area {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.focus-main {
  height: 500px;
  border-radius: 10px;
  overflow: hidden !important;
  position: relative !important;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.focus-main-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}
.focus-main::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  z-index: 2;
}
.focus-info {
  position: relative;
  z-index: 3;
}
.focus-info h3 {
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  margin: 0 0 6px 0;
  font-size: 22px;
  line-height: 1.4;
}
.focus-info div {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  font-size: 14px;
}
.focus-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.focus-side-item {
  flex: 1;
  border-radius: 10px;
  overflow: hidden !important;
  position: relative !important;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.focus-side-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
}
.focus-side-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    transparent 100%
  );
  z-index: 2;
}
.focus-side-info {
  position: relative;
  z-index: 3;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

/* ==========主体布局========== */
.page-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  margin-bottom: 40px;
  width:100%;
}
.edu-module {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.mod-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #164eac;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.mod-head h2 {
  font-size: 20px;
  color: #164eac;
  display: flex;
  align-items: center;
}
.mod-head h2::before {
  content: '';
  width: 5px;
  height: 20px;
  background: #164eac;
  margin-right: 10px;
}
.mod-more {
  font-size: 14px;
  color: #666;
}
.mod-more:hover {
  color: #164eac;
}
.news-img-list {
  display: grid;
  gap: 18px;
}
.news-img-item {
  display: flex;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-bottom:2px;
  height:142px;
  border-bottom:1px dotted #ddd;
  padding-bottom:23px;
}
.news-img-item:last-child {
	
	border-bottom:0;
	padding-bottom:0;
}
.news-img {
  width: 200px;
  height: auto;
  max-height:130px;
  flex-shrink:0;
  border-radius: 6px;
  background: #e8e8e8;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-img a:empty{
    visibility:hidden;
}
.news-text{
    flex:1;
}

.news-text h4 {
  font-size: 20px;
  line-height:30px;
  margin-bottom: 15px;
  transition: color 0.2s;
}
.news-text h4 a:hover {
  color: #164eac;
}
.news-desc {
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.news-meta {
  font-size: 13px;
  color: #999;
}

/*侧边栏*/
.side {
	
}
.side-card {
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.side-card h3 {
  font-size: 18px;
  color: #164eac;
  border-left: 4px solid #164eac;
  padding-left: 10px;
  margin-bottom: 16px;
}
.side-card em { 
	font-style:normal;
	display:inline-block; 
	float:right; 
	font-weight:normal;
	font-size:14px;
	color:#333;
	line-height:32px;
}
.side-news li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.side-news li:last-child {
  border-bottom: none;
}
.side-news a {
  font-size: 15px;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-news a:hover {
  color: #164eac;
}

/***换灯样式**/
.focus-slide {position: relative; float:left; width:930px; height:405px; border-radius:8px; overflow:hidden;}
.focus-slide .swiper-slide img { width:100%; height: 100%; object-fit: cover; object-position:top; }
.focus-slide .swiper-pagination-bullet { background: #fff; opacity: 1;}
.focus-slide .swiper-pagination-bullet-active { width:30px; height: 7px; border-radius:5px; background: #fff;}
.focus-slide .swiper-pagination { bottom:60px; }
.focus-slide .swiper-scrollbar{ bottom:0px!important; height:2px!important; }
.focus-slide .swiper-scrollbar-drag {background: #164eac;}
.focus-slide .swiper-button-prev { background: rgba(255,255,255,.4); left:0px; padding:10px 5px; color:#fff; border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
.focus-slide .swiper-button-next { background: rgba(255,255,255,.4); right:0px; padding:10px 5px; color:#fff; border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
.focus-slide .swiper-button-prev:after,
.focus-slide .swiper-button-next:after { font-size: 35px!important; }
.focus-slide .swiper-slide h3 { display:block; width:100%; background:rgba(0,0,0,0); color: #ffffff; text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85); font-size: 22px; line-height: 1.4; letter-spacing:1px; position:absolute; text-align:center; bottom:60px;}
@media(max-width:768px){
 .focus-slide {width:100%; height:260px!important; }
 .focus-slide .swiper-slide h3 { bottom:45px; font-size:16px; }
}

/* ==========统一合并媒体查询========== */

@media (max-width: 1480px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .focus-area {
    grid-template-columns: 1fr;
  }
  .focus-main {
    height: 240px;
  }
  .page-wrap {
    grid-template-columns: 1fr;
  }
  .edu-top-banner {
    padding: 24px 0;
  }
  .edu-top-banner h1 {
    font-size: 24px;
  }
  .news-img-item {
	height:auto;
    grid-template-columns: 100px 1fr;
  }
  .news-img {
    width: 100px;
    height: 70px;
  }
  .footer-wrap {
    padding: 26px 0;
  }
  .footer-link a {
    margin: 0 6px;
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  /*汉堡导航通栏下拉*/
  .edu-hamburger {
    display: block;
  }

  .edu-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    z-index: 999;
    background: #0f52b8;
  }
  .edu-nav.show {
    display: flex;
  }
  .edu-nav li a {
    padding: 14px 16px;
    font-size: 17px;
    border-bottom: 1px solid #1c61c7;
  }
   /*头条手机*/
  .focus-headline{
        padding:14px 16px;
        margin-bottom:14px;
		margin-top:20px;
    }
	.focus-headline-link{
		margin-top:50px;
	}
    .focus-headline-link h3{
        font-size:17px;
        display:block;
        margin-top:6px;
    }
	
  /*焦点区手机*/
  .focus-area {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 12px !important;
    margin: 16px 0 !important;
  }
  .focus-main {
    height: 210px !important;
    padding: 14px !important;
    border-radius: 8px !important;
  }
  .focus-main::after {
    height: 90px !important;
  }
  .focus-info h3 {
    font-size: 17px !important;
  }
  .focus-info div {
    font-size: 13px !important;
  }
  .focus-side {
    gap: 10px !important;
  }
  .focus-side-item {
    height: 200px !important;
    padding: 12px !important;
    border-radius: 8px !important;
    flex: none !important;
  }
  .focus-side-info {
    font-size: 14px !important;
  }
  
  .news-img {
	  width:140px;
	  height: 100px;
  }
  .side {
	  margin-top:-20px; 
   }
  .side-card {
	  margin-bottom:30px;
	  margin-top:0px;
  }
  .footer-wrap {
	  margin-top:-30px!important;
  }
}