.container-list {
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;

    /* 左侧标题样式 */

    .tab-titles {
        width: 250px;
        padding: 30px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .title {
        width: 90%;
        padding: 15px 0 15px 30px;
        margin: 6px 0;
        border-radius: 8px;
        background: #014099;
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        letter-spacing: 1px;
    }

    .title::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
        z-index: -1;
    }

    .title:hover::before {
        left: 100%;
    }

    .title:hover {
        transform: translateX(5px);
        background: #1487f4;
    }

    .title.active {
        background: #1487f4;
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.7);
    }

    .title i {
        margin-right: 10px;
        position: relative;
        top: 2px;
    }

    /* 右侧内容区域 */

    .tab-contents {
        flex: 1;
        padding: 30px;
        margin-left: 40px;
        overflow-y: auto;
        position: relative;
    }

    .tab-content {
        display: none;
        animation: fadeIn 0.6s ease forwards;
    }

    .tab-content.active {
        display: block;
    }

    .tab-content h2 {
        width: 100%;
        color: #014099;
        border-bottom: solid 1px #ccc;
    }

    .tab-content h2:after {
        content: "";
        background: #014099;
        display: flex;
        width: 130px;
        height: 2px;
        position: relative;
        margin-top: 10px;
        margin-left: 0;
    }

    .tab-content p {
        margin-top: 30px;
    }

    /*简介*/

    .intro p {
        text-indent: 2em;
    }

    /*领导*/

    .leader p {
        font-size: 16px;
        text-indent: 2em;
    }

    /*组织机构*/

    .orgs {
        margin-top: 50px;
    }

    .orgs a {
        width: 200px;
        display: inline-block;
        text-align: center;
        color: white;
        font-size: 18px;
        padding: 10px 0;
        margin: 10px 0;
        background: linear-gradient(45deg, #3498db, #8e44ad);
        border-radius: 16px;
    }

    .orgs a:hover {
        transform: translateY(-2px);
        background: #014099;
    }

    /*历史沿革*/

    .history p {
        font-size: 16px;
    }

    /*单位风貌*/

    .show {
        display: inline-block;
        margin: 10px 30px;
        overflow: hidden;
    }

    .content-img {
        width: 400px;
        height: 340px;
        display: grid;
        border-radius: 10px;
        margin: 20px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .content-img img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }

    .content-img img:hover {
        transform: scale(1.05);
        transition: 0.5s;
    }

    .content-img span {
        text-align: center;
        color: #444;
        font-size: 16px;
        font-weight: bold;
    }

    /*研究队伍*/

    .team-table {
        table {
            margin-top: 20px;
            width: 100%;
        }

        table, th, td {
            border: 1px solid black;
            border-collapse: collapse;
        }

        th, td {
            padding: 5px;
            text-align: center;
        }

        td a {
            color: #014099;
        }

    }

    /*联系我们*/

    .call {
        margin-top: 20px;
    }

    .call p {
        font-size: 18px;
    }

    /*研究生教育*/

    .mentor-intro {
        margin: 0;
        padding: 0;

        .mentor-list {
            margin: 20px 0;
        }

        .mentor-list h4 {
            background: #014099;
            font-size: 18px;
            color: #fff;
            padding: 5px 20px;
        }

        .mentor-name {
            display: inline-flex;
            padding-top: 15px;
        }

        .mentor-name p {
            margin: 0 10px !important;
            padding: 0 !important;
            text-align: left;
            display: flex;
        }

        .mentor-name p a {
            margin: 0 10px !important;
            font-size: 17px;
            display: flex;
            color: #014099;
        }

    }

    /*文字列表样式*/

    .text-list {
        margin: 10px auto;
    }

    .text-list ul {
        margin: 0;
        padding: 0;
    }

    .text-list ul li {
        list-style: disc;
        display: flex;
        margin: 20px 0;
    }

    .text-list ul li a {
        font-size: 16px;
        color: #444;
        width: 100%;
        word-break: break-all;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        white-space: normal;
    }

    .text-list ul li a:hover {
        color: #014099;
    }

    .text-list ul li a i {
        position: relative;
        top: 4px;
    }

    .text-list ul li span {
        width: 120px;
        margin-left: 20px;
    }

    /*正常内容展示*/

    .tab-list {

    }

    .a-title {
        display: flex;
        border-bottom: #ddd solid 1px;
        margin: 20px 0;
        padding-bottom: 5px;
        width: 100%;
    }

    .a-title h4 {
        width: 100px;
        text-align: center;
        color: #014099;
        font-size: 18px;
        font-weight: bold;
    }

    .a-title h4:after {
        content: "";
        background: #1487f4;
        width: 130px;
        height: 2px;
        position: absolute;
        margin-top: 34px;
        margin-left: -85px;
    }

    .a-title a {
        position: relative;
        left: 82%;
        float: right;
        font-size: 16px;
        color: grey;
    }

    .tab-detail ul li {
        padding: 12px 5px;
        border-bottom: #ccc dashed 1px;
        list-style: none;
        display: flex;
    }

    .tab-detail ul li a {
        color: #444;
        word-break: break-all;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        white-space: normal;
        text-overflow: ellipsis;
        font-size: 16px;
        line-height: 25px;
        width: 100%;
    }

    .tab-detail ul li a span {
        width: 120px;
        float: right;
    }

    /*------------------------------*/

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .container {
            flex-direction: column;
            height: auto;
        }

        .tab-titles {
            width: 100%;
            flex-direction: row;
            overflow-x: auto;
            padding: 15px 0;
        }

        .title {
            min-width: 140px;
            margin: 0 10px;
            padding: 15px;
        }

        .title.active {
            transform: translateY(-5px);
        }
    }
}

/*列表页翻页*/
.llas-page {
    display: grid;
}

#llasPagination {
    list-style: none !important;
    display: flex;
    margin: 5% 0 1% 0;
    justify-content: center;
    overflow: visible;


    .page-item {
        height: 38px;
        margin: 0;
        padding: 0;
        border: #ddd solid 1px;
    }

    .page-item:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .page-item a {
        width: 42px;
        padding: 5px;
        text-align: center;
    }


    .input-group {
        width: 100%;
        margin-left: 5px;
    }

    .changeLength {
        height: 38px;
        text-align: center;
        width: 42px !important;
        margin-left: 5px;
        color: #212529;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        outline-color: #0d6efd;
    }

    #go {
        margin-left: 10px;
        margin-top: 0;
    }

    #goPage {
        height: 38px;
        width: 42px;
        color: #014099;
        border: #014099 solid 1px;
        background: none;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    #goPage:hover {
        background: #014099;
        color: white;
        cursor: pointer;
    }

}

/*检索功能样式*/
.list-search {
    float: right;

    .header-search {
        display: flex;
    }

    .input_text {
        width: 400px;
        height: 36px;
        outline: none;
        border: #ccc solid 2px;
        border-radius: 8px;
        padding-left: 15px;
    }

    .me-1 {
        background: none;
        height: 36px;
        width: 46px;
        position: relative;
        left: 10px;
        outline: none;
        border: #ccc solid 2px;
        border-radius: 8px;
        cursor: pointer;
    }

}

@media (max-width: 768px ) {
    .container-list {
        display: grid;

        .tab-contents {
            margin-left: 0;
        }

        .orgs a {
            width: 100%;
        }

        .show {
            margin: 10px 0px;
        }

        .text-list ul li a {
            width: 90%;
        }

        #go {
            margin-left: 10px !important;
            margin-top: 60px !important;
            position: absolute;
        }

        #pag-span {
            margin-top: 80px;
        }

    }

}