.wrap {
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .container {
        width: 1266px;
        /* 自定义宽度 */

    }
}

@media (max-width: 767px) {
    .search-container {
        text-align: center;
        margin-top: 10px;

    }
}

.custom-header {
    background-color: #004ca3;
    /* 蓝色背景 */
    color: #fff;
    /* 文本颜色为白色 */
    padding: 15px 0;
    /* 上下内边距 */
    text-align: left;
    /* 文本居中 */

}

.custom-logo {
    width: 100%;
    /* 设置图片宽度为父容器的100%，使图片随父容器宽度变化而变化 */
    /* 自适应宽度 */
    max-width: 100%;
    /* 最大高度100 */
    height: auto;
    /*    margin-left: -20px;*/
    /* 左边空白为200px */
}

@media (min-width: 800px) {
    .custom-logo {
        width: auto;
        /* 当页面宽度大于或等于800px时，图片宽度恢复为原始宽度 */
        max-width: none;
        /* 取消最大宽度限制 */
        height: auto;
        /* 保持图片的宽高比例，自动调整高度 */
    }
}

.site-title {
    margin-left: 20px;
    /* 标题和 Logo 之间的左边距 */
    display: inline-block;
    /* 使标题和 Logo 水平排列 */
    vertical-align: middle;
    /* 垂直居中对齐 */
}

/*定义导航菜单样式*/
.highlight {
    font-size: 18px;
}

.navbar {
    border-radius: 0px;
}

.navbar-nav>li>a {
    padding-left: 10px;

    padding-right: 10px;
}

/*.navbar-default .navbar-brand {
    background-color: #004ca3;
    color: #fff;
}*/

.navbar-default .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #004ca3;
}

.navbar-form .form-control {
    width: 90px;
    /* 更改搜索框的宽度 */
}

/* 在小屏幕设备上调整搜索框宽度 */
@media (max-width: 768px) {
    .navbar-form .form-control {
        width: 100%;
        /* 使用100%宽度 */
    }
}


/* 首页列表 */

.more {
    font-size: 14px;
    color: grey;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content li {
    margin-bottom: 15px;
    /*    font-size: 16px;*/
}

.content ul li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /*    max-width: 30em;*/
    /* 控制每行最大字符数 */
}

.content ul li a {
    color: #000;
}
@media (max-width: 767px) {

    /* 在小屏幕上，图片高度固定为140px */
    .content ul li a {
        font-size: 14px;
    }

}
.content span {
    display: inline-block;
    float: right;
    width: 80px;
    text-align: right;
    /*    margin-right: 10px;*/
}
.content .dian {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 6px;
    height: 6px;
    margin: 10px 10px 0 0;
    background: #8a8a8a;
}
.underline-container {
    width: 96%;
    /* 设置外层容器的宽度 */
    margin: 0 auto;
    /* 水平居中 */
}

/*新闻头条*/
.news-one {
    /*    width: 653px;*/
    padding-top: 4px;
    padding-bottom: 4px;
    border-bottom: 1px dashed #ccc;
}

.news-one .time {
    display: inline-block;
    vertical-align: top;
    width: 81px;
    height: 90px;
    padding-top: 4px;
    text-align: center;
    background: #005ab7;
}

.news-one .p1 {
    font-size: 36px;
    color: #fff;

}

.news-one .p2 {
    font-size: 14px;
    color: #fff;
}

.news-one .msgs {
    display: inline-block;
    vertical-align: top;
    padding-left: 30px;
    /*width: 555px;*/
    line-height: 28px;
}

@media (max-width: 767px) {

    /* 在小屏幕上，图片高度固定为140px */
    .news-one .msgs {

        padding-left: 50px;

    }

}

.news-one .t p {
    font-size: 16px;
    font-weight: bold;
    color: #2f2f2f;
    margin-bottom: 0px;
}

.news-one .con p {
    font-size: 14px;
    color: #777777;
}

.text-limit1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-limit2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 限制显示的行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ban-t img {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 37px;
    height: 34px;
}

/*学术动态*/
.ban-t .t1 {
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 5px;
    margin-left: 10px;
    font-size: 24px;
    color: #024188;
}

.ban-a {
    font-size: 14px;
    float: right;
    margin-top: 16px;
    color: #b3b3b3;
}

/*本科生教育*/
.bar-title {
    position: relative;
    display: block;
    text-align: center;
    line-height: 60px;
    /*    height: 116px;*/
}

.bar-span {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #000;
    opacity: .6;
}

.bar-title img.responsive-img {
    position: absolute;
    z-index: -1;
    width: 100%;
    /* 设置图片宽度为100%，使其自适应父容器 */
    height: 90px;
    /* 自动调整高度，保持宽高比例 */
    display: block;
    border: none;
}

.bar-title p {
    position: relative;
    z-index: 2;
    font-size: 36px;
    padding-top: 10px;
    color: #fff;
}

.white {
    position: relative;
    z-index: 2;
    width: 69px;
    height: 2px;
    background: #fff;
    margin: auto;
}

.underline {
    border-top: 2px solid #004ca3;

    /* 设置下框线，可根据需要调整线条颜色和粗细 */
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    background-color: #004ca3;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

ul>li>a {
    font-size: 18px;
}

/*列表页*/


.blackfont {
    background-color: #FFFFFF;
    color: #000000;
}

.gonggaolist {
    position: relative;
    width: 100%;
    height: 44px;
    padding: 0px;
    font-size: 18px;
    line-height: 44px;
    font-family: FZPSHJWRegular;
    /*    font-weight: bold;*/
    margin: auto;
    overflow: hidden;
    border-bottom: 1px dashed #ccc;
}
.dian {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 6px;
    height: 6px;
    margin: 20px 10px 0 0;
    background: #8a8a8a;
}
.blackfont>.gonggaolist_title {
    position: relative;
    float: left;
    display: inline-block;
    height: 100%;
    /*left: 4%;*/
    z-index: 99;
    background-color: #FFFFFF;
    color: #000000;
    max-width: 75%;
        /* 确保标题容器的最大宽度适应屏幕 */
        word-break: break-all;
        /* 允许标题在任何位置换行 */
        overflow: hidden;
        /* 隐藏溢出的部分 */
        text-overflow: ellipsis;
        /* 显示省略号 */
        white-space: nowrap;
        /* 禁止换行 */
}

.bluefont>.gonggaolist_title {
    position: relative;
    float: left;
    display: inline-block;
    height: 100%;
    /*left: 4%;*/
    z-index: 99;
    background-color: #FFFFFF;
    color: rgba(0, 172, 233, 1.0);
    max-width: 75%;
        /* 确保标题容器的最大宽度适应屏幕 */
        word-break: break-all;
        /* 允许标题在任何位置换行 */
        overflow: hidden;
        /* 隐藏溢出的部分 */
        text-overflow: ellipsis;
        /* 显示省略号 */
        white-space: nowrap;
        /* 禁止换行 */
}

@media (max-width: 768px) {

    /* 针对手机屏幕宽度 */
    .gonggaolist_title {
        font-size: 14px;
        /* 调整字体大小 */
        max-width: 75%;
        /* 确保标题容器的最大宽度适应屏幕 */
        word-break: break-all;
        /* 允许标题在任何位置换行 */
        overflow: hidden;
        /* 隐藏溢出的部分 */
/*        text-overflow: ellipsis;*/
        /* 显示省略号 */
        white-space: nowrap;
        /* 禁止换行 */
    }

    .gonggaolist_meta {
        font-size: 12px;
        /* 调整字体大小 */
    }
}

.blackfont>.gonggaolist_meta {
    position: relative;
    float: right;
    display: inline-block;
    height: 100%;
    /*right: 6%;*/
    text-align: right;
    overflow: hidden;
    z-index: 99;
    background-color: #FFFFFF;
    color: #000000;
}

.bluefont>.gonggaolist_meta {
    position: relative;
    float: right;
    display: inline-block;
    height: 100%;
    /*right: 6%;*/
    text-align: right;
    overflow: hidden;
    z-index: 99;
    background-color: #FFFFFF;
    color: rgba(0, 172, 233, 1.0);
}

.backgoundline {
    position: relative;
    overflow: hidden;
    width: 90%;
    height: 100%;
    margin: 0% 10% 0% 10%;
    top: -100%;
    z-index: 98;
    display: inline-block;
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
    z-index: 2;
    color: #fff;

}
.list-group-item.sortname{
    
    font-size: 24px;
    background: #004ca3;
    color: #fff;
}
/*面包屑*/
.breadcrumb {
    padding: 8px 8px;
    margin-bottom: 0px;
    list-style: none;
    background-color: #ffffff;
    border-radius: 4px;
    text-align: right;
}


.first {
    display: block;
    /*margin-bottom: 20px;*/
    /*width: 240px;*/
    /*height: 60px;*/
    /*line-height: 60px;*/
    text-align: left;
    font-size: 14px;
    /*background: #004ca3;*/
    /*color: #fff;*/
}

/*内容页*/
.biaotiW {
    padding: 30px 0px 10px 0px;
    clear: both;
    font-size: 24px;
    font-family: FZPSHJWRegular;
    font-weight: bold;
    color: black;
    margin: auto;
    text-align: center;
    width: 95%;
    color: red;
}

.xinxi {
    border-bottom-style: solid;
    border-bottom-color: rgba(162, 162, 162, 1.00);
    padding: 0px 0px 20px 0px;
    clear: both;
    font-size: 10px;
    font-family: FZPSHJWRegular;
    color: rgba(190, 190, 190, 1.00);
    margin: auto;
    text-align: center;
    width: 95%;
}

.neirong {
    margin: auto;
/*    padding: 20px 30px 30px 30px;*/
    font-size: 18px;
    line-height: 180%;
    font-family: FZPSHJWRegular;
    width: 100%;
    text-align: left;
    /*    color: #282828;*/

}

/*默认段落格式*/
/*p {
  text-indent: 4ch;
}*/

@media (max-width: 767px) {

    /* 在小屏幕上，图片高度固定为140px */
    .neirong img {
        width: 100%;
        height: auto;
    }
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: #fff;
    text-align: left;
}

.carousel-inner .item img {
    width: 100%;
    height: auto;
    /* 默认高度为340px */
}

.carousel-inner .item a:link {
    color: #fff;
}

.carousel-inner .item>a>img {
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {

    /* 在小屏幕上，图片高度固定为140px */
    .carousel-inner .item>a>img {
        height: auto;
    }

}

@media (max-width: 767px) {
    .image-container {
        height: auto;
        margin-bottom: 20px;
        /* 设置手机端上下图片之间的间距 */
    }
}

.navbar {
    margin-bottom: 0px;
}



/*学科平台*/

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    margin: 0;
    text-align: center;
}

/*图片画廊*/
.swiper {
    width: 100%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide a .img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*友情链接*/
footer {
    background-color: #004ca3;
    color: #fff;
    padding: 20px 0;
    margin-top: 50px;

}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: #fff;
}

.footer-links li {
    display: inline-block;
    margin-right: 10px;
}

.footer-links li:last-child {
    margin-right: 0;
}

/* 二维码图片样式 */
.qrcode-img {
    max-width: 40px;
    height: auto;

}
