/* =============================================
   轻工科学与工程学院 - 首页样式表
   包含所有页面样式和响应式适配
============================================= */

/* === 基础重置 === */
*, *::before, *::after {
    box-sizing: border-box;
}
a, a:hover {
    text-decoration: none;
}
img, a {
    border: none;
}
ul, li {
    padding: 0;
    list-style: none;
    margin: 0;
}
body {
    font-family: "微软雅黑", "黑体", "STHeiti", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    color: #333;
}
.clear {
    clear: both;
}
.fl { float: left; }
.fr { float: right; }

/* === 图标字体 === */
@font-face {
    font-family: 'iconfont';
    src: url('iconfont.woff2') format('woff2'),
         url('iconfont.woff') format('woff'),
         url('iconfont.ttf') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Header 顶部导航 === */
.header {
    width: 100%;
    height: 120px;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-out 0s;
}

.header .left .img2{
    display: none;
}

/* 滚动后头部变为白色 */
.header.on{
    background: #fff;
    height: 150px;
}
.header.on .left .img1{
    display: none;
}
.header.on .left .img2{
    display: block;
}
.header.on .status span a{
    color: #333;
}
.header.on .en{
    color: #333 !important;
    border-left: 1px solid #333 !important;
}
.header.on .en a{
    color: #333 !important;
}
.header.on .navbar_nav li a{
    color: #333;
}
.header.on .navbar_nav li:hover a{
    color: #26478d;
}
.header.on .navbar_bg{
    background: transparent;
}

.header .fixline {
    width: 100%;
    height: 5px;
}
.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.header .left {
    float: left;
    height: 85px;
    display: flex;
    align-items: center;
}
.header .left a img {
    height: 65px;
    margin-right: 10px;
}
.header .nav {
    float: right;
}
.header .btn-all {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 5px;
}
.header .btn-all .status span {
    margin-left: 10px;
}
.header .btn-all .status span a {
    color: #fff;
    font-size: 12px;
}
.header .btn-all .en{
    border-left: 1px solid #fff;
}
.header .btn-all .en a {
    margin-left: 15px;
    color: #fff;
    font-size: 12px;
}

/* === 导航菜单 === */
.navbar_bg{
    background: rgba(94, 94, 94, 0.2);  /* 50% 透明度 */
}
.navbar_nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}
.navbar_nav li {
    position: relative;
}
.navbar_nav > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 20px 15px;
    transition: all 0.3s;
}
.navbar_nav > li > a:hover,
.navbar_nav > li:hover > a {
    background: rgba(255, 255, 255, 0.15);
}

/* 下拉菜单 */
.dropdown_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}
.navbar_nav li:hover .dropdown_menu {
    display: block;
    animation: fadeIn 0.3s ease;
    visibility: visible;
}
.dropdown_menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.dropdown_menu a:hover {
    background: #0d2f6e;
    color: #fff !important;
}

/* 导航激活状态 */
.header.on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.header.on .btn-all .status span a{
    color: #333 !important;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === 移动端导航 === */
.m_nav{
    position: fixed;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
    visibility: visible;
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}
.m_nav .top .closed{
    width: 30px;
    height: 30px;
    vertical-align: middle;
    float:right;
    cursor: pointer;
}
.m_nav .ul{
    margin-top: 30px;
}
.m_nav .ul li{
    padding: 0 20px;
    border-bottom: 1px solid #f5f5f5;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
}
.m_nav.open .ul li{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) { transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(2) { transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(3) { transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(4) { transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(5) { transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(6) { transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(7) { transition: all 1.4s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(8) { transition: all 1.6s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(9) { transition: all 1.8s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(10) { transition: all 2.0s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(11) { transition: all 2.2s cubic-bezier(.77, 0, .175, 1) 0ms; }
.m_nav .ul li:nth-child(12) { transition: all 2.4s cubic-bezier(.77, 0, .175, 1) 0ms; }

.m_nav .ul li a{
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 42px;
    line-height: 42px;
    width: 100%;
}
.m_nav .ul li .dropdown_menu{
    display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
    display: block;
}
.m_nav .ul li .dropdown_menu a{
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
    color: #666;
    font-size: 14px;
}
.m_nav .ul li .dropdown_menu a:last-child{
    border: none;
}


/* === 导航菜单 === */
.navbar_bg{
    background: rgba(94, 94, 94, 0.2);  /* 50% 透明度 */
}
.navbar_nav {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;

}
.navbar_nav ul li {
    position: relative;
}
.navbar_nav ul > li > a {
    display: block;
    color: #fff;
    font-size: 15px;
    padding: 20px 15px;
    transition: all 0.3s;
}
.navbar_nav ul > li > a:hover,
.navbar_nav ul > li:hover > a {
    background: rgba(255, 255, 255, 0.15);
}

/* 下拉菜单 */
.sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
}
.navbar_nav li:hover .sub-nav {
    display: block;
    animation: fadeIn 0.3s ease;
    visibility: visible;
}
.sub-nav > .nav-item {
    width: 100%;
}
.wp_nav .sub-nav a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
}
.wp_nav .sub-nav a:hover {
    background: #0d2f6e;
    color: #fff !important;
}



/* === Banner 轮播图 === */
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.banner .rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}
.banner .rslides li {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}
.banner .rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}
.banner .rslides img {
    display: block;
    width: 100%;
    height: auto;
}
.banner .banner-title {
    position: absolute;
    bottom: 30px;
    left: 5%;
    z-index: 10;
}
.banner .banner-title a {
    display: block;
    padding: 10px 20px;
    background: rgba(13, 47, 110, 0.85);
    color: #fff;
    font-size: 20px;
}

/* ResponsiveSlides 控件 */
.callbacks_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4) url("../images/themes.png") no-repeat left top;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.callbacks_nav:hover {
    opacity: 1;
}
.callbacks_nav.prev { left: 0; }
.callbacks_nav.next { right: 0; }
.callbacks_tabs {
    position: absolute;
    bottom: 15px;
    right: 20px;
    z-index: 10;
}
.callbacks_tabs li {
    display: inline-block;
    margin: 0 3px;
}
.callbacks_tabs a {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}
.callbacks_tabs a.callbacks_here {
    background: #ebc32a;
}

.callbacks1_nav{
    color: #0d2f6e;
    font-size: 18px;
}

/* === Main 内容区域 === */
.main {
    width: 100%;
    margin: 0 auto;
}

/* === 焦点新闻 === */
.focus {
    padding: 0;

}
.focus2 {
    width: 100%;
    background: url(../images/news-bg.jpg) no-repeat bottom;
}
.jiaonew {
    font-size: 22px;
    color: #0d2f6e;
    font-weight: bold;
    padding: 15px 0;
    margin-bottom: 10px;
}
.jiaonew .iconfont {
    color: #ebc32a;
    margin-right: 8px;
}
.focus-img {
    overflow: hidden;
    border-radius: 4px;
}
.focus-img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s;
}
.focus-img:hover img {
    transform: scale(1.05);
}
.focus-con {
    padding: 12px 0;
}
.focus-title {
    font-size: 14px;
    line-height: 1.6;
    height: 42px;
    overflow: hidden;
    color: #333;
}
.focus-title a {
    color: #333;
}
.focus-title a:hover {
    color: #0d2f6e;
}
.focus .more {
    text-align: right;
    margin-top: 15px;
}
.focus .more a {
    display: inline-block;
    padding: 8px 25px;
    background: #0d2f6e;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
    transition: all 0.3s;
}
.focus .more a:hover {
    background: #ebc32a;
    color: #0d2f6e;
}

/* === 通知公告 & 学术活动 === */
.news-media {
    background: url("../images/news-bg.jpg") no-repeat;
    background-size: 100%;
    padding: 40px 0;
}
.news-media .activebg {
    background: rgba(255, 255, 255, 0.95);
}
.news-media .t11,
.news-media .t3 {
    padding: 0 15px;
}
.new-top {
    padding: 15px 0;
    border-bottom: 2px solid #0d2f6e;
}
.new-tit {
    display: flex;
    align-items: center;
    gap: 8px;
}
.new-tit .iconfont {
    font-size: 24px;
    color: #0d2f6e;
}
.new-tit h5 {
    font-size: 18px;
    font-weight: bold;
    color: #0d2f6e;
    margin: 0;
}
.new-tit2 .iconfont { color: #ebc32a; }
.new-tit3 .iconfont { color: #e74c3c; }
.new-tit4 .iconfont { color: #3498db; }
.new-tit5 .iconfont { color: #9b59b6; }
.new-tit6 .iconfont { color: #27ae60; }
.new-more {
    padding-top: 5px;
}
.new-more a {
    color: #0d2f6e;
    font-size: 12px;
    font-weight: normal;
}
.ac-xuan {
    margin-top: 15px;
}
.ac-xtop ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}
.ac-xtop ul li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}
.ac-xtop ul li i {
    width: 6px;
    height: 6px;
    background: #ddd;
    border-radius: 50%;
}
.ac-xtop ul li.active,
.ac-xtop ul li:hover {
    color: #0d2f6e;
    border-bottom-color: #0d2f6e;
}
.ac-xtop ul li.active i {
    background: #ebc32a;
}
.ac-xul {
    display: none;
}
.ac-xul:first-child {
    display: block;
}
.ac-xul ul li {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
}
.ac-xul ul li .li-date {
    width: 70px;
    text-align: center;
    flex-shrink: 0;
}
.ac-xul ul li .li-date p {
    color: #ebc32a;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}
.ac-xul ul li .li-date span {
    color: #ebc32a;
    font-size: 12px;
}
.ac-xul ul li .li-dtt {
    flex: 1;
}
.ac-xul ul li .li-dtt a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}
.ac-xul ul li .li-dtt a:hover {
    color: #0d2f6e;
}
.ac-xul ul li .li-dtt p {
    margin-top: 5px;
 font-size: 12px;
}
.ac-xul ul li .li-dtt p a {
    color: #999;
    font-size: 12px;
}

/* 学术活动列表 */
.ac-rightcon {
    margin-top: 15px;
}
.part-four .right-wrap li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex !important;
}
.xueshulise .li-date {
    width: 70px;
    flex-shrink: 0;
    padding-right: 15px;
}
.info-wrap {
    flex: 1;
}
.info-wrap .title {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 5px;
}
.info-wrap .title a {
    color: #333;
}
.info-wrap .title a:hover {
    color: #0d2f6e;
}
.info-wrap p {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}

/* === 探索发现 === */
.tsfx {
    width: 100%;
    margin-top: 30px;
    /* background: url("../images/foot-bg.jpg") no-repeat center top; */
    background-size: 100%;
    padding-bottom: 40px;
}
.tsfx .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.tsfx .row > div {
    margin-bottom: 30px;
}
.tsfx .new-top {
    margin-top: 0;
}
.tsfx .zhuanti,
.tsfx .keyan {
    margin-top: 30px;
}
.xueshuimg {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}
.xueshuimg img {
    width: 100%;
    height: 140px;
    object-fit: fill;
}
.xueshuimg span {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #333;
    background: #fff;
}
.tsfx .more {
    text-align: center;
    margin-top: 20px;
}
.tsfx .more a {
    display: inline-block;
    padding: 8px 30px;
    background: #0d2f6e;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
}

/* === Footer 页脚 === */
.footer {
    width: 100%;
    background: url(../images/foot-bg.jpg) repeat;
    /*background: linear-gradient(to bottom, #0d2f6e 0%, #051a3d 100%);*/
    color: #fff;
}
.footer .footer1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
}
.footer .footer1 .row {
    display: flex;
    flex-wrap: wrap;
}
.footer .footer1 .row > div {
    min-height: 150px;
    padding: 0 20px;
}
.footer .footer1 .row > div:first-child {
    padding-left: 15px;
}
.footer .footer1 .row > div:last-child {
    padding-right: 15px;
}

/* 底部左侧图标区 */
.footer .icon-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.footer .icon-row .icon-item {

}
.footer .icon-item {
    text-align: center;
    width: 48%;
    margin-right: 2%;
    margin-bottom: 10px;
}
.footer .icon-row-qr {
    width: 48%;
    margin-right: 2%;
}
.footer .icon-item-qr {
	/*margin-top: 30px;*/
	height: 100px;
    text-align: center;
}
.footer .lm-img {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .lm-img .iconfont {
    font-size: 80px;
    color: #FFF;
}
.footer .lm-img img {
    width: 100px;
    height: 100px;
}
.footer .icon-item-qr .lm-img {
    height: 80px;
}
.footer .icon-item-qr .lm-img img {
    width: 80px;
    height: 80px;
}
.footer .lm-title {
    margin-top: 5px;
}
.footer .lm-title a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}
.footer .lm-title a:hover {
    color: #FFF;
}

.footer .link-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFF;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(235, 195, 42, 0.3);
}
.footer .link-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer .link-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.footer .link-list li:last-child {
    border-bottom: none;
}
.footer .link-list li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: color 0.3s;
}
.footer .link-list li a:hover {
    color: #ebc32a;
}
.footer .contact{
	border-left: 1px solid #999;
	border-right: 1px solid #999;
}
.footer .contact ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer .contact ul li {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}
.footer .contact ul li a {
    color: rgba(255, 255, 255, 0.8);
}
.footer .contact ul li a:hover {
    color: #ebc32a;
}
.footer .links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer .links ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
.footer .links ul li:last-child {
    border-bottom: none;
}
.footer .links ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: color 0.3s;
}
.footer .links ul li a:hover {
    color: #ebc32a;
}
.footer2 {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}
.footer-adress {
    text-align: center;
}
.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* === Back to Top === */
.cd-top {
    position: fixed;
    right: 30px;
    bottom: 80px;
    width: 45px;
    height: 45px;
    background: #0d2f6e;
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cd-top.cd-is-visible {
    opacity: 1;
    visibility: visible;
}
.cd-top.cd-fade-out {
    opacity: 0.5;
}
.cd-top:hover {
    background: #ebc32a;
    color: #0d2f6e;
}

/* === 移动端汉堡菜单按钮 === */
#navToggle{
    display: none;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    text-decoration: none;
}
#navToggle span,
#navToggle span:before,
#navToggle span:after {
    position: relative;
    width: 25px;
    height: 2px;
    display: block;
    background: #fff;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#navToggle span:before,
#navToggle span:after {
    content: '';
    position: relative;
}
#navToggle span:before { top: 8px; }
#navToggle span:after { bottom: 10px; }

/* 打开时三条杠变叉号 */
#navToggle.open span {
    background: none;
}
#navToggle.open span:before {
    top: 10px;
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
    background: #4f4f4f;
}
#navToggle.open span:after {
    bottom: 12px;
    -webkit-transform: translateY(10px) rotate(45deg);
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
    background: #4f4f4f;
}

/* === 响应式布局 === */
@media (max-width: 991px) {
    .header {
        min-height: 60px;
    }
    .header .left a img {
        height: 40px;
    }
    .navbar_nav {
        display: none !important;
    }
    #navToggle {
        display: block;
    }
    .header .btn-all {
        display: none;
    }
}

@media (max-width: 767px) {
    /* 移动端导航 */
    #navToggle {
        display: block;
    }
    
    /* 焦点新闻 */
    .focus {
        padding: 20px 0;
    }
    .jiaonew {
        font-size: 18px;
        padding: 10px 0;
    }
    .focus-title {
        font-size: 13px;
        height: 36px;
    }
    .focus .more {
        text-align: center;
        margin-top: 10px;
    }
    .focus .more a,
    .news-media .more a,
    .tsfx .more a {
        width: 150px;
        border-radius: 15px;
        height: 32px;
        line-height: 32px;
        margin-left: -75px;
    }
    
    /* 通知公告 */
    .news-media {
        padding: 20px 0;
    }
    .ac-xtop ul {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .ac-xtop ul li {
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 12px;
    }
    .ac-xul ul li {
        padding: 10px 0;
    }
    .ac-xul ul li .li-date {
        width: 55px;
    }
    .ac-xul ul li .li-date p {
        font-size: 22px;
    }
    .ac-xul ul li .li-dtt a {
        font-size: 13px;
    }
    
    /* 学术活动 */
    .part-four .right-wrap li {
        padding: 10px 0;
    }
    .xueshulise .li-date {
        width: 55px;
    }
    .info-wrap .title {
        font-size: 13px;
    }
    
    /* 探索发现 */
    .tsfx {
        margin-top: 15px;
        padding-bottom: 20px;
    }
    .tsfx .row > div {
        margin-bottom: 20px;
    }
    .tsfx .new-top,
    .tsfx .zhuanti,
    .tsfx .keyan {
        margin-top: 0;
    }
    .xueshuimg img {
        height: 100px;
    }
    .xueshuimg span {
        font-size: 12px;
    }
    .tsfx .more {
        margin-top: 10px;
        margin-bottom: 20px;
    }
    
    /* 页脚 */
    .footer .footer1 {
        padding: 20px 15px;
    }
    .footer .footer1 .row > div {
        padding: 0 10px;
        min-height: auto;
        margin-bottom: 20px;
    }
    .footer .footer1 .row > div:first-child,
    .footer .footer1 .row > div:last-child {
        padding: 0 10px;
    }
    /* 图标区移动端 */
    .footer .icon-row {
        margin-bottom: 10px;
    }
    .footer .icon-item,
    .footer .icon-item-qr {
        width: 30%;
        margin-right: 3.33%;
    }
    .footer .lm-img {
        height: 40px;
    }
    .footer .lm-img .iconfont {
        font-size: 32px;
    }
    .footer .lm-img img,
    .footer .icon-item-qr .lm-img img {
        width: 40px;
        height: 40px;
    }
    .footer .icon-item-qr .lm-img {
        height: 40px;
    }
    .footer .link-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .footer .link-list li,
    .footer .links ul li {
        padding: 6px 0;
    }
    .footer .link-list li a,
    .footer .links ul li a {
        font-size: 13px;
    }
    .footer .contact ul li {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* 返回顶部 */
    .cd-top {
        right: 15px;
        bottom: 60px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
    
    /* Banner */
    .banner .banner-title {
        bottom: 20px;
    }
    .banner .banner-title a {
        font-size: 14px;
        padding: 8px 15px;
    }
    .callbacks_nav {
        width: 30px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
}

/* === Bootstrap Grid Override === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: -15px;
    margin-right: -15px;
}
.row > div {
    padding-left: 15px;
    padding-right: 15px;
}

/* =============================================
   子页面通用 - 内页横幅
============================================= */
.sub-banner {
    width: 100%;
    padding-top: 120px;
    height: 300px;
    background: linear-gradient(135deg, #0d2f6e 0%, #1a4a8a 50%, #26478d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sub-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background: radial-gradient(circle, rgba(235,195,42,0.08) 0%, transparent 70%); */
    background: #0651ce;
    animation: subBannerGlow 8s ease-in-out infinite alternate;
}
@keyframes subBannerGlow {
    0% { transform: translate(-10%, -10%); }
    100% { transform: translate(10%, 10%); }
}
.sub-banner h1 {
    font-size: 36px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}
.sub-banner .breadcrumb {
    position: relative;
    z-index: 1;
    background: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.sub-banner .breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.sub-banner .breadcrumb a:hover {
    color: #ebc32a;
}
.sub-banner .breadcrumb .sep {
    margin: 0 8px;
}

/* =============================================
   子页面 - 侧边栏
============================================= */
.page-sidebar {
    float: left;
    width: 260px;
    margin-right: 30px;
}
.page-sidebar .sidebar-box {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.page-sidebar .sidebar-title {
    background: #0651ce;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 20px;
    position: relative;
}
.page-sidebar .sidebar-title::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ebc32a;
}
.page-sidebar .sidebar-list {
    padding: 5px 0;
}
.page-sidebar .sidebar-list li {
    border-bottom: 1px solid #eee;
}
.page-sidebar .sidebar-list li:last-child {
    border-bottom: none;
}
.page-sidebar .sidebar-list a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding-left: 30px;
}
.page-sidebar .sidebar-list a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s;
}
.page-sidebar .sidebar-list a:hover,
.page-sidebar .sidebar-list a.active {
    color: #0d2f6e;
    background: #eef1f7;
}
.page-sidebar .sidebar-list a:hover::before,
.page-sidebar .sidebar-list a.active::before {
    background: #0d2f6e;
    width: 6px;
    height: 6px;
}

/* =============================================
   子页面 - 主内容区
============================================= */
.page-main {
    float: left;
    width: calc(100% - 290px);
    min-height: 400px;
}
.page-wrap {
    padding: 40px 0 60px;
    background: #fff;
}
.page-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   文章列表页
============================================= */
.article-list {
    padding: 0;
}
.article-list-item {
    display: flex;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.article-list-item:first-child {
    padding-top: 0;
}
.article-list-item:hover {
    background: #fafbfd;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 6px;
}
.article-list-item .item-img {
    flex: 0 0 220px;
    width: 220px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 25px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 40px;
}
.article-list-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.article-list-item:hover .item-img img {
    transform: scale(1.08);
}
.article-list-item .item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.article-list-item .item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}
.article-list-item .item-title a {
    color: #222;
    transition: color 0.3s;
}
.article-list-item .item-title a:hover {
    color: #0d2f6e;
}
.article-list-item .item-summary {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-list-item .item-meta {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 15px;
}
.article-list-item .item-meta i {
    margin-right: 3px;
}

/* 无图样式 */
.article-list-item.no-img .item-img {
    display: none;
}
.article-list-item.no-img .item-info {
    margin-left: 0;
}

/* 分页 */
.pagination-wrap {
    text-align: center;
    padding: 40px 0 10px;
}
.pagination-wrap .page-list {
    display: inline-flex;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagination-wrap .page-list li a,
.pagination-wrap .page-list li span {
    display: block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s;
    text-decoration: none;
}
.pagination-wrap .page-list li a:hover {
    border-color: #0d2f6e;
    color: #0d2f6e;
}
.pagination-wrap .page-list li.active span {
    background: #0d2f6e;
    border-color: #0d2f6e;
    color: #fff;
}

/* =============================================
   文章详情页
============================================= */
.article-detail {
    padding-bottom: 20px;
}
.article-detail .article-header {
    text-align: center;
    padding: 20px 0 25px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}
.article-detail .article-header h1 {
    font-size: 26px;
    color: #222;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}
.article-detail .article-header .article-meta {
    color: #999;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.article-detail .article-header .article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.article-detail .article-body {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    text-align:left;
}
.article-detail .article-body p {
    margin-bottom: 20px;
    text-indent: 2em;
}
.article-detail .article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.article-detail .article-body h2,
.article-detail .article-body h3 {
    color: #0d2f6e;
    margin: 30px 0 15px;
    font-weight: 600;
}
.article-detail .article-body h2 { font-size: 22px; }
.article-detail .article-body h3 { font-size: 18px; }
.article-detail .article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
    flex-wrap: wrap;
    gap: 10px;
}
.article-detail .article-footer a {
    color: #0d2f6e;
    text-decoration: none;
}
.article-detail .article-footer a:hover {
    color: #ebc32a;
}

/* =============================================
   子页面响应式
============================================= */
@media (max-width: 991px) {
    .page-sidebar {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page-main {
        float: none;
        width: 100%;
    }
    .sub-banner {
        height: 200px;
    }
    .sub-banner h1 {
        font-size: 26px;
    }
    .article-list-item {
        flex-direction: column;
    }
    .article-list-item .item-img {
        flex: none;
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
    .article-list-item.no-img .item-img {
        display: none;
    }
}

@media (max-width: 767px) {
    .sub-banner {
        height: 150px;
    }
    .sub-banner h1 {
        font-size: 22px;
    }
    .page-wrap {
        padding: 20px 0 40px;
    }
    .article-list-item .item-img {
        height: 160px;
    }
    .article-detail .article-header h1 {
        font-size: 20px;
    }
    .article-detail .article-body {
        font-size: 15px;
    }
}

/* Grid - 焦点新闻响应式 */
@media (max-width: 991px) {
    /* 焦点新闻平板端2列 */
    .focus .row > .col-md-3,
    .focus .row > div[class*="col-"] {
        width: 50%;
        float: left;
    }
}

@media (max-width: 767px) {
    /* 焦点新闻移动端单列 */
    .focus .row > .col-md-3,
    .focus .row > div[class*="col-"] {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }
}

/* 底部行flex布局 */
.footer .footer1 .row {
    display: flex;
    flex-wrap: wrap;
}

    .wp_nav { margin: 0px; padding: 0px; display: block; }
    .wp_nav * { margin: 0px; padding: 0px; }
    .wp_nav::after { clear: both; content: "."; display: block; height: 0px; visibility: hidden; }
    .wp_nav .nav-item { display: inline-block; float: left; position: relative; vertical-align: bottom; }
    .wp_nav .on { z-index: 10; }
    .wp_nav .nav-item .mark { display: none; width: 100%; height: 100%; position: absolute; left: 0px; top: 0px; z-index: 99; }
    .wp_nav .nav-item a { font-family: "Microsoft Yahei"; display: block; text-align: left; position: relative; z-index: 100; }
    .wp_nav .nav-item a.parent:hover { }
    .wp_nav .nav-item a.parent { color: rgb(0, 0, 0); }
    .wp_nav .nav-item a span.item-name { display: inline-block; padding: 0; line-height: 22px; cursor: pointer; }
    .wp_nav .sub-nav { display: block; width: 220px; visibility: hidden; position: absolute; z-index: 200; border-right: 1px solid rgb(204, 204, 204); border-bottom: 1px solid rgb(204, 204, 204); border-left: 1px solid rgb(204, 204, 204); border-image: initial; border-top: none; }
    .wp_nav .sub-nav .nav-item { white-space: nowrap; }
    .wp_nav .sub-nav .nav-item .mark { background: none; }
    .wp_nav .sub-nav .nav-item a { font-family: "Microsoft Yahei"; font-size: inherit; font-weight: normal; color: rgb(0, 0, 0); text-align: left; border-top: none; min-width: 80px; }
    .wp_nav .sub-nav .nav-item a.parent:hover { background: rgb(238, 238, 238); color: rgb(0, 0, 0); }
    .wp_nav .sub-nav .nav-item a.parent { background: rgb(238, 238, 238); color: rgb(0, 0, 0); }
    .wp_nav .sub-nav .nav-item a span.item-name { padding: 0; line-height: 22px; }
    .wp_nav .nav-item a.parent:hover span.item-name { }
    .wp_nav .nav-item a.parent span.item-name { }
    .wp_nav .sub-nav .nav-item a.parent:hover span.item-name { }
    .wp_nav .sub-nav .nav-item a.parent span.item-name { }


.m_nav .navbar_bg{ background: none; }
.m_nav.open .ul li{ clear: both; width: 100%; background: #FFF;}
.m_nav .mark{ display: none; }
