body{
    background-color: #FFFFFF;
}
.MediaCenter {
    margin-top: 80px;
    margin-bottom: 80px;
}
.MediaCenter > .content{
    position: relative;
    display: grid;
    grid-template-columns: 1fr  400px;
    gap: 110px;
}

.MediaCenter > .content > div:first-child{
    display: flex;
    flex-direction: column;
}

.MediaCenter > .content > div:first-child > .title{
    display: flex;
    flex-direction: column;
}
.MediaCenter > .content > div:first-child > .title h3{
    font-family: Arial;
    font-weight: bold;
    font-size: 27px;
    line-height: 1.75;
    color: #262626;

    margin-bottom: 50px;
}
.MediaCenter > .content > div:first-child > .title div{
    font-family: Arial;
    font-weight: 400;
    font-size: 16px;
    color: #474646;
    line-height: 35px;

    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.MediaCenter > .content > div:first-child > .title div.media a{
    margin-right: 15px;
}
.MediaCenter > .content > div:first-child > .content{
    margin: 45px 0;
    padding: 80px 0;
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
}
.MediaCenter > .content > div:first-child > dir{
    display: flex;
    flex-direction: column;
    gap: 45px;

    font-family: Arial;
    font-size: 21px;
    color: #262626;
}
.MediaCenter > .content > div:first-child > dir *{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.MediaCenter > .content > div:first-child > dir dt{
    overflow: unset!important;
    display: flex;
    white-space: nowrap; /* 不换行，可能会强行撑开容器 */
    overflow: hidden;    /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
}
.MediaCenter > .content > div:first-child > dir dl{
    display: flex;
    font-family: Arial;
    font-size: 21px;
    color: #262626;

    gap: 5px;
}
.MediaCenter > .content > div:first-child > dir dl.prev:before{
    content: "<";
}
.MediaCenter > .content > div:first-child > dir dl.next:before{
    content: ">";
}
.MediaCenter > .content > div:first-child > dir dt:after{
    content: ": ";
}
.MediaCenter > .content > div:first-child > a{
    margin-top: 45px;
    width: 180px;
    height: 40px;
    background: #F4F4F4;
    border-radius: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 22px;

    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #373737;
}
.MediaCenter > .content > div:first-child > a:hover{
    background-color: #162F76;
    color: #FFFFFF;
}

.MediaCenter > .content .sidebar{
    position: static;
}
.MediaCenter > .content .sidebar form{
    display: flex;
    align-items: center;
}
.MediaCenter > .content .sidebar form input{
    width: 355px;
    height: 40px;
    border: 1px solid #BCBCBC;
}
.MediaCenter > .content .sidebar form button{
    background-color: initial;
    border: none;
    padding: 0 15px;
}
.MediaCenter > .content .sidebar{
    position: sticky;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.MediaCenter > .content .sidebar .items{

}
.MediaCenter > .content .sidebar .items > .title span{
    font-family: Arial;
    font-weight: bold;
    font-size: 32px;
    line-height: 1;
    color: #262626;

    position: relative;
}
.MediaCenter > .content .sidebar .items > .title span:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    display: inline-block;
    width: 105%;
    height: 4px;
    background-color: #858484;
}
.MediaCenter > .content .sidebar .items > .content {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}
.MediaCenter > .content .sidebar .items > .content .item{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 30px 0;
    border-bottom: 1px solid #C8C8C8;
}
.MediaCenter > .content .sidebar .items > .content .image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 85px;
    overflow: hidden;
}
.MediaCenter > .content .sidebar .items > .content .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.MediaCenter > .content .sidebar .items > .content .text{
    flex: 1;
    line-height: 1.75;
}
.MediaCenter > .content .sidebar .items > .content .text .title{
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    color: #262626;

    height: 3.5em;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.MediaCenter > .content .sidebar .items > .content .text .date{
    font-family: Arial;
    font-weight: 400;
    font-size: 13px;
    color: #474646;
    line-height: 35px;
}

@media screen and (max-width: 768px){
    #breadcrumb{
        box-shadow: none !important;
        margin-top: 20px!important;
    }
    .MediaCenter{
        margin-top: 10px;
    }
    .MediaCenter > .content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .MediaCenter > .content > div:first-child{
        align-items: center;
    }
    .MediaCenter > .content > div:first-child > .title h3{
        font-size: 19px;
        margin-bottom: 0;
    }
    .MediaCenter > .content > div:first-child > .title > div{
        flex-direction: column;
    }
    .MediaCenter > .content > div:first-child > .title div{
        font-size: 15px;
        line-height: 32px;
        justify-content: flex-start;
    }

    .MediaCenter > .content > div:first-child > .title div.media a{
        width: 24px;
    }
    .MediaCenter > .content > div:first-child > .content{
        margin: 20px 0;
        padding: 35px 0;
    }

    .MediaCenter > .content > div:first-child > dir *{
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .MediaCenter > .content > div:first-child > dir dt {
        width: 8em;
    }
}