.page-content {
    width: 100vw;
    position: relative;
    min-height: 200vh;
    justify-content: space-evenly;
}

.page-content-box {
    width: 80vw;
}


/* 文案描述-目录相关 */
.sidebar {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    width: 26%;
    padding: 30px 20px;
    position: sticky;
    top: 120px;
    height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;

}

/* 默认隐藏滚动条 */
.sidebar::-webkit-scrollbar {
    width: 0;
}

/* 鼠标悬浮时显示滚动条 */
.sidebar:hover::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-track {
    background-color: lightgrey;
}


.sidebar-title {
    text-align: center;
    font-weight: bold;
    font-size: 3rem;
    color: #111111;
    -webkit-text-stroke: 1px #0c0c0c;
}

.sidebar > a {
    text-decoration: none;
    width: 80%;
    color: #d04d74;
    
}

.sidebar-item {
    width: 100%;
    margin-top: 40px;
}

.sidebar-item:hover > .sidebar-item-circle {
    background-color: #0c0c0c;
}

.sidebar-item:hover > .sidebar-item-text {
   color: black
    
}



.sidebar-item-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* background-color: #eeb8c7; */
    margin: 0 8px;
    transition: .2s;
    background-image: url('https://static.igem.wiki/teams/4965/wiki/sidebar/sidebar-small-flower-png.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.sidebar-item-text {
    transition: .2s;
    font-size: 1.4rem;
    width: 80%;
    font-weight: bold;
    color: black;
    
}

.sidebar-item-text-active {
    /* color: #fff; */
}

.sidebar-item-circle-active {
    background-color: black;
}

.sidebar-item-b  {
    margin-top: 10px;
    margin-left: 30px;
    font-size: 1.2rem;
}

.sidebar-item-c  {
    margin-top: 10px;
    margin-left: 60px;
    font-size: 1rem;

}


/* 文案描述-正文相关 */

.desc-content {
    
    /* 毛玻璃效果 */
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 0.666667px solid rgba(255, 255, 255, 0.18);
    /* box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px; */
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    


    padding: 30px 50px;
    
    width: 56%;
    /* margin: 0 auto; */
    box-shadow: #121212 0px 1px 2px 0px, #ebacc0b8 0px 2px 6px 2px;
    margin-bottom: 100px;
    margin-top: 100px;
    border-radius: 15px;

    margin-right: 9vw;
}

.desc-content-title {
    margin: 30px 0;
    width: 100%;
}

.desc-content-title-circle {
    margin-top: 11px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #0f0e0f;
    box-shadow: 0px 0px 5px #0e0d0d, 0px 0px 10px #080808;
}

.desc-content-title-text {
    margin-left: -9px;
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
}

.descrption-article-text > p {
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    font-family: math;
    overflow: inherit;
    font-family: 'Times New Roman', Times, serif;
    word-wrap: break-word;
}

.descrption-article-img {
    width: 100%;
    margin: 0 auto;
    margin: 30px auto;
}


/* 两张图片 */
.desc-imgs-2 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.desc-imgs-2 >img {
    width: 50%;
}

.desc-imgs-3 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.desc-imgs-3 >img {
    width: 33%;
}


.desc-img-desc {
    color: grey;
    text-align: center;
    margin: 0 auto;
}


.desc-content-title-b  {
    font-size: 1.6rem;
    font-weight: bold;
}

.desc-content-img-desc {
    font-size: 1.2rem;
    text-align: center;
    color: #948894;
    font-family: 'Times New Roman', Times, serif;
}

.desc-content-title-text-c {
    font-size: 1.3rem;
    margin: 10px 0;
    font-family: fantasy;
}

.desc-content a {
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Times New Roman', Times, serif;
}

