.university{
    background-color: #352C84;
}
.university .contain{
    overflow: hidden;
}
/* banner */
.banner{
    position: relative;
}
.banner .b_bg{
    width: 100%;
}
.banner .b_txt{
    position: absolute;
    left: 10%;
    top: 44%;
    height: 37%;
}
.banner .mimg{
    display: none;
}


.contain-area{
    background-color: #f3f3f3;
}
.contain-area .nav-list{
    width: 60%;
    margin: 0 auto;
    display: flex;
    color: #433b95;
    justify-content: center;
    padding: 20px 0;
}
.contain-area .nav-list .nav{
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    color: #433b95;
    font-size: 18px;
    margin: 0 30px;
    word-break: keep-all;
}
.contain-area .nav-list .active,.contain-area .nav-list .nav:hover{
    color: #CCA84D;
    border-bottom-color: #CCA84D;
}

.pic-list{
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    background-color: #f0efef;
    position: relative;
}
.pic-list::before {
    content: "";
    position: absolute;
    top: 83.6%;
    left: 8.2%;
    right: 16%;
    height: 3px;
    background: linear-gradient(
        to right,
        #940040 0%,
        #7f0050 9%,
        #5d006b 26%,
        #430081 44%,
        #300090 62%,
        #240099 80%,
        #21009d 100%
    );
    transform: translateY(-50%);
    z-index: 0;
}
.pic-list .row{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 20%;
}
.pic-list .img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
    object-position: center 5%;
}
.pic-list .row .txt{
    flex-direction: column;
    padding-left: 20px;
    color: #121212;
    font-size: 18px;
    word-break: keep-all;
}
.avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* 圆圈样式 */
.circle1 {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-radius: 50%;
    background-image: linear-gradient(#fff, #fff), /* 内部白色 */ linear-gradient(to right, #940040 0%, #7f0050 9%, #5d006b 26%, #430081 44%, #300090 62%, #240099 80%, #21009d 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    margin-top: 8px;
    flex-shrink: 0; /* 防止缩放 */
}
p.year1 {
    margin-top: 8px;
    font-size: 20px;
    color: #940040;
    font-weight: bold;
}
.txt p:first-child {
    color: #940040;
    font-weight: bold;
    font-size: 20px;
}
.txt p:not(:first-child) {
    font-size: 17px;
}

/* 整体时间轴 */
.timeline {
    position: relative;
    width: 80%;
    margin: 100px auto;
    padding: 40px 0;
}
.timeline {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.timeline.loaded {
    opacity: 1;
}
/* 中间虚线主干 */
.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 2px dashed #a10078;
    transform: translateX(-50%);
}
/* 顶部圆形起点 */
.start {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
        0deg,
        #1100AA 0%,
        #940040 60%
    );
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    text-align: center;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    font-size: 22px;
}
/* 节点 */
.timeline-item {
    position: relative;
    width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
/* 左右交替 */
.timeline-item.left {
    left: 0;
    justify-content: flex-end;
    text-align: right;
}
.timeline-item.right {
    left: 50%;
    justify-content: flex-start;
    text-align: left;
}
/* 横线连接主干 */
.timeline-item .line {
    position: relative;
    width: 30px;
    height: 2px;
    background: #a10078;
    flex-shrink: 0;
}
/* 圆圈节点 */
.timeline-item .circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border: 2px solid transparent; /* 必须设置为透明以显示渐变 */
    border-radius: 50%;
    background-image: linear-gradient(#fff, #fff), /* 内部白色 */
    linear-gradient(to right, #940040 0%, #7f0050 9%, #5d006b 26%, #430081 44%, #300090 62%, #240099 80%, #21009d 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    z-index: 2;
    flex-shrink: 0;
}
/* 横线微调位置 */
.timeline-item.left .line {
    margin-left: 10px;
}
.timeline-item.right .line {
    margin-right: 10px;
}
.timeline-item .line {
    position: relative;
    background: none;
}
.timeline-item .line::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        to right,
        #940040 0%,
        #7f0050 9%,
        #5d006b 26%,
        #430081 44%,
        #300090 62%,
        #240099 80%,
        #21009d 100%
    );
    transform: scaleY(1.001); /* 防止亚像素丢失 */
}

/* 内容 */
.content {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    max-width: 280px;
}
/* 标题 + 描述 */
.title {
    color: #940040;
    font-weight: bold;
    font-size: 20px;
}
.desc {
    font-size: 17px;
    margin-top: 2px;
}
/* 年份 */
.year {
    color: #2D297F;
    font-weight: bold;
    font-size: 20px;
    margin: 0 8px;
}

/* 内部排布 */
.timeline-item.left .inner {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.timeline-item.right .inner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.future {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -80px;
    text-align: center;
}

.future img {
    width: 100%;
    height: auto;
}
.csse {
    width: 100%;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 80px;
}
.csse img {
    width: 40%;
    height: auto;
}

@media screen and (max-width:1500px){
    .pic-list .row .txt{
        font-size: 14px;
    }
}
@media only screen and (max-width:1300px){
    .pic-list .img {
        width: 100px;
        height: 100px;
    }
    .txt p:first-child {
        font-size: 17px;
    }
    .txt p:not(:first-child) {
        font-size: 14px;
    }
    .circle1 {
        width: 15px;
        height: 15px;
    }
    .pic-list::before {
        top: 80%;
        left: 8.1%;
        right: 16.2%;
    }
    p.year1 {
        font-size: 17px;
    }
    .title {
        font-size: 17px;
    }
    .desc {
        font-size: 14px;
    }
    .year {
        font-size: 17px;
    }
}
@media only screen and (max-width:1100px){
    .pic-list .img {
        width: 60px;
        height: 60px;
    }
    .pic-list::before {
        top: 76%;
        left: 7.25%;
        right: 16.9%;
    }
}
@media only screen and (max-width:900px){
    .pic-list::before {
        top: 75.7%;
        left: 6.35%;
        right: 17.7%;
    }
}
@media only screen and (max-width: 768px){
    .university .contain-area .nav-list {
        display: none;
    }

    .pic-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .pic-list::before {
        content: none;
        display: none;
    }
    .pic-list .row {
        width: 600px;
        margin: 8px 0;
        display: flex;
        align-items: center;
    }
    .pic-list .row:nth-child(odd) {
        justify-content: flex-end;
        text-align: right;
        transform: translateX(120px);
        flex-direction: row-reverse;
    }
    .pic-list .row:nth-child(even) {
        justify-content: flex-start;
        text-align: left;
        transform: translateX(220px);
    }
    /* 左侧 */
    .pic-list .row:nth-child(odd) .avatar {
        flex-direction: row;
        margin-right: 10px;
    }
    .pic-list .row:nth-child(odd) .year1 {
        margin-left: 8px;
    }
    .pic-list .row:nth-child(odd) .circle1 {
        right: -6px;
    }
    .pic-list .row:nth-child(odd) .txt {
        padding-left: 0;
        padding-right: 15px;
        width: 100px;
    }
    /* 右侧 */
    .pic-list .row:nth-child(even) .avatar {
        flex-direction: row-reverse;
        margin-left: 10px;
    }
    .pic-list .row:nth-child(even) .year1 {
        margin-right: 8px;
    }
    .pic-list .row:nth-child(even) .circle1 {
        left: -6px;
    }
    .pic-list .row:nth-child(even) .txt {
        padding-left: 15px;
    }

    .avatar {
        position: relative;
    }
    .avatar .img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid #fff;
        object-fit: cover;
    }
    p.year1 {
        font-size: 15px;
        color: #fff;
        background: linear-gradient(
                0deg,
                #1100AA 0%,
                #940040 60%
        );
        padding: 3px 10px;
        border-radius: 5px;
        white-space: nowrap;
    }
    .circle1 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #940040;
    }
    .circle1 {
        display: none;
    }


    .timeline-item .inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .timeline-item.left .inner,
    .timeline-item.right .inner {
        flex-direction: column;
    }
    .timeline-item .year {
        order: 1;
        margin-bottom: 6px;
        font-size: 16px;
    }
    .timeline-item .content {
        order: 2;
        font-size: 14px;
        margin-top: 4px;
        max-width: 150px;
    }
    .title {
        font-size: 15px;
    }
    .desc {
        font-size: 13px;
    }
    .timeline-item.right .line {
        margin-right: 140px;
        top: 14px;
    }
    .timeline-item.right .circle {
        left: 20px;
        top: 15px;
    }
    .timeline-item.left .line {
        margin-left: 140px;
        top: 14px;
    }
    .timeline-item.left .circle {
        right: 20px;
        top: 15px;
    }
    .row:not(:last-child) .circle1::after {
        width: 100px;
    }
    /* 左侧整体稍微左移 */
    .timeline-item.left .content,
    .timeline-item.left .year {
        transform: translateX(-5px);
    }
    .timeline-item.right .content,
    .timeline-item.right .year {
        transform: translateX(5px);
    }
    .csse img {
        width: 60%;
        height: auto;
    }
    .future img {
        width: 230px;
        height: auto;
    }
}


/*.process{*/
/*    text-align: center;*/
/*    position: relative;*/
/*    background-color: #fff;*/
/*    line-height: 1.3em;*/
/*    padding: 110px 0;*/
/*}*/
/*.process .start{*/
/*    width: 82px;*/
/*    height: 82px;*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin: 0 auto;*/
/*    flex-flow: column;*/
/*    color: #fff;*/
/*    background: linear-gradient(to bottom,#7a6fc4,#cba74f);*/
/*    font-size: 30px;*/
/*    line-height: 24px;*/
/*    padding-bottom: 3px;*/
/*    box-sizing: border-box;*/
/*    */
/*}*/
/*.process .start .small{*/
/*    font-size: 21.6px;*/
/*    color: #fff;*/
/*    padding-bottom: 5px;*/
/*    font-weight: normal;*/
/*}*/
/*.process .center{*/
/*    position: relative;*/
/*    padding: 1px 0;*/
/*}*/
/*.process .line-out{*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    top: 0;*/
/*    width: 2px;*/
/*    height: 100%;*/
/*    background-color: #ddd;*/
/*    z-index: 1;*/
/*}*/
/*.process .row{*/
/*    position: relative;*/
/*    z-index: 10;*/
/*}*/
/*.process .block{*/
/*    color: #fff;*/
/*    width: 82px;*/
/*    height: 82px;*/
/*    margin: 60px auto;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: linear-gradient(to bottom,#7a6fc4,#cba74f);*/
/*    z-index: 100;*/
/*    position: relative;*/
/*    font-size: 30px;*/
/*}*/
/*.process .txt-right{*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 50%;*/
/*    transform: translate(100%, -50%);*/
/*    !* width: 400px; *!*/
/*}*/
/*.line-2{*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    width: 120px;*/
/*    height: 2px;*/
/*    background: #CCA84D;*/
/*}*/
/*.process .txt-right .txt{*/
/*    margin-left: 120px;*/
/*    text-align: left;*/
/*    padding-left: 10px;*/
/*    position: relative;*/
/*    color:#121212;*/
/*    top: 15px;*/
/*    line-height: 24px;*/
/*}*/
/*.process .txt-right .txt.txt1{*/
/*    top: 15px;*/
/*}*/
/*.process .m10{*/
/*    margin-bottom: 10px;*/
/*}*/
/*.process .line-dot{*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 50%;*/
/*    width: 100%;*/
/*    height: 94px;*/
/*    border-right: 2px dotted #CCA84D;*/
/*    transform: translateY(-50%);*/
/*}*/
/*.process .ball{*/
/*    background: #CCA84D;*/
/*    position: absolute;*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    border-radius: 50%;*/
/*}*/
/*.process .b1{*/
/*    top: -50px;*/
/*    right: -5px;*/
/*}*/
/*.process .b2{*/
/*    bottom: -50px;*/
/*    right: -5px;*/
/*}*/
/*.process .b3{*/
/*    bottom: -4px;*/
/*    right: -5px;*/
/*}*/
/*.process .txt-left{*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-100%, -50%);*/
/*    !* width: 450px; *!*/
/*}*/
/*.process .txt-left .txt{*/
/*    text-align: right;*/
/*    padding-right: 130px;*/
/*    position: relative;*/
/*    top: 10px;*/
/*    line-height: 24px;*/
/*}*/
/*.process .txt-left .txt.txt1{*/
/*    top: 25px;*/
/*}*/
/*.process .txt-left .line-2{*/
/*    right: 0;*/
/*    left: initial;*/
/*}*/
/*.process .txt-left .b1,*/
/*.process .txt-left .b2,*/
/*.process .txt-left .b3{*/
/* left: -4px;*/
/*}*/
/*.process .txt-left .line-dot{*/
/*    border-left:  2px dotted #CCA84D;*/
/*    border-right: none;*/
/*}*/
/*.process .txt-left .line-3 .line-dot{*/
/*    height: 207px;*/
/*}*/
/*.process .txt-left .line-3 .b2{*/
/*    bottom: -107px;*/
/*}*/
/*.process .txt-left .line-3 .b1{*/
/*    top: -107px;*/
/*}*/
/*.process .txt-right .line-3 .line-dot{*/
/*    height: 207px;*/
/*}*/
/*.process .txt-right .line-3 .b2{*/
/*    bottom: -107px;*/
/*}*/
/*.process .txt-right .line-3 .b1{*/
/*    top: -107px;*/
/*}*/
/*.process .b.c_cca84d{*/
/*    font-size: 24px;*/
/*    padding-bottom: 11px;*/
/*}*/
/*.process .small{*/
/*    font-size: 18px;*/
/*    color:#121212;*/
/*}*/
/*.process .m29{*/
/*    margin-bottom: 34px;*/
/*}*/
/*.process .m46{*/
/*    margin-bottom: 46px;*/
/*}*/
/*.process .m40{*/
/*    margin-bottom: 40px;*/
/*}*/
/*.img_star{*/
/*    width: 15px;*/
/*    vertical-align: inherit;*/
/*}*/
/*.line-2{*/
/*    width: 136px;*/
/*}*/
/*.process .txt-left .txt{*/
/*    padding-right: 146px;*/
/*}*/
/*.process .txt-right .txt{*/
/*    margin-left: 136px;*/
/*}*/
/*.process .txt-right .txt3{*/
/*    margin-top: 35px;*/
/*}*/

@media only screen and (max-width: 768px){
    /*.process{*/
    /*    padding: 50px 0;*/
    /*}*/
    /*.process .start,*/
    /*.process .now .img {*/
    /*    width: 50px;*/
    /*    height: 50px;*/
    /*}*/
    /*.process .start{*/
    /*    font-size: 14px;*/
    /*    line-height: 1.2;*/
    /*    justify-content: center;*/
    /*}*/
    /*.process .start .small {*/
    /*    font-size: 14px;*/
    /*    padding-bottom: 0;*/
    /*}*/
    /*.process .txt-left .txt{*/
    /*    padding-right: 50px;*/
    /*}*/
    /*.process .block {*/
    /*    width: 50px;*/
    /*    height: 50px;*/
    /*    font-size: 17px;*/
    /*    margin: 40px auto;*/
    /*}*/
    /*.line-2{*/
    /*    width: 44px;*/
    /*}*/
    /*.process .txt-right .txt{*/
    /*    margin-left: 42px;*/
    /*}*/
    /*.process .b.c_cca84d {*/
    /*    font-size: 20px;*/
    /*    padding-bottom: 0;*/
    /*}*/
    /*.process .small {*/
    /*    line-height: 1.2;*/
    /*    font-size: 12px;*/
    /*}*/
    /*.process .txt-left .txt{*/
    /*    top: 7px;*/
    /*}*/
    /*.process .txt-left .line-3 .line-dot{*/
    /*    height: 140px;*/
    /*}*/
    /*.process .txt-left .line-3 .b1{*/
    /*    top: -73px;*/
    /*}*/
    /*.process .txt-left .line-3 .b2{*/
    /*    bottom: -75px;*/
    /*}*/
    /*.process .txt-left .txt.txt1{*/
    /*    top: 13px;*/
    /*}*/
    /*.process .txt-right .line-3 .line-dot{*/
    /*    height: 140px;*/
    /*}*/
    /*.process .txt-right .line-3 .b1{*/
    /*    top: -73px;*/
    /*}*/
    /*.process .txt-right .line-3 .b2{*/
    /*    bottom: -75px;*/
    /*}*/
    /*.process .m46,*/
    /*.process .m40{*/
    /*    margin-bottom: 33px;*/
    /*}*/
    /*.process .txt-right .txt{*/
    /*    top: 7px;*/
    /*}*/
    /*.process .txt-right .txt.txt1{*/
    /*    top: 6px;*/
    /*}*/
    /*.process .txt-right .line-dot{*/
    /*    height: 65px;*/
    /*}*/
    /*.process .txt-right .b1{*/
    /*    top: -40px;*/
    /*    right: -4px;*/
    /*}*/
    /*.process .txt-right .b2{*/
    /*    bottom: -40px;*/
    /*    right: -4px;*/
    /*}*/
    /*.process .txt-right .txt3{*/
    /*    margin-top: 27px;*/
    /*}*/
}
@media only screen and (max-width: 580px){
    /*.process .b.c_cca84d{*/
    /*    font-size: 18px;*/
    /*}*/
}