@font-face {
    font-family: 'JetBrainsMono';
    src: url(../fonts/JetBrainsMono/JetBrainsMono-Regular.woff2);
    font-weight:normal;
    font-style:normal;   
}
@font-face {
    font-family: 'JetBrainsMono';
    src: url(../fonts/JetBrainsMono/JetBrainsMono-Bold.woff2);
    font-weight:bold;
    font-style:normal;   
}
@font-face {
    font-family: 'JetBrainsMono';
    src: url(../fonts/JetBrainsMono/JetBrainsMono-Italic.woff2);
    font-weight:normal;
    font-style:italic;   
}
@font-face {
    font-family: 'JetBrainsMono';
    src: url(../fonts/JetBrainsMono/JetBrainsMono-BoldItalic.woff2);
    font-weight:bold;
    font-style:italic;   
}
@font-face{
    font-family: 'NotoSansSC';
    src: url(../fonts/NotoSansSC-VariableFont_wght.ttf);
}


*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* list-style:none; */
    text-decoration: none;
    cursor: default;
    font-family: 'NotoSansSC';
}



div
{
    border-radius: 20px;
}
body
{
    background-color: #e4edff;
   
}
.wrapperHeader
{
    width: 640px;
    margin: 0 auto;
}
/* 头部区域，含导航栏 */
.header
{
    margin-top: 16px;
    position: fixed;
    z-index: 999;
}
.headerSeparator
{
    height: 88px;
}
.wrapper
{
    margin:0 auto;
    width: 960px;
}
.navBar
{
    width: 640px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.365);
    border-radius: 56px;
    display: flex;
    align-items: center;
    position: relative;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    /* border: 0.5px solid white; */
    
    backdrop-filter: blur(10px);
    
}
.navBar img
{
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 40px;
    margin-left: 8px;
    position: absolute;
}
.navBar ul
{
    display: flex;
    margin: 0 auto;
    align-items: center;
    
}
.navBar ul li
{
    margin:0 6px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    background-color: transparent;
    transition: all .3s;
}
.navBar ul li:hover
{
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    
}
.navBarActive
{
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

.navBar ul li a
{
    cursor: pointer;
    padding: 0 20px;
    line-height: 40px;
    font-size: 16px;
    color: rgb(73, 82, 84);
    font-weight: 600;
}
/* 顶部banner区域 */
.bannerTop
{
    width: 100%;
    height: 100vh;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bannerTop .left
{
    /* margin-left: 24px; */
    background-color: rgba(133, 133, 133, 0.349);
    backdrop-filter: blur(10px);
    padding: 16px 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: scale(1);
    transition: all 0.5s;
}
.bannerTop .left:hover 
{
    transform: scale(1.05);
}

.bannerTop .left p
{
    font-weight: 600;
    font-size: 40px;
    color: rgb(255, 255, 255);
    font-family: 'JetBrainsMono','Consolas';
    font-weight: bold;
    
}





.bannerTop .pageName
{
    position: absolute;
    border-radius: 80px;
    background-color:  #b4b4b437;
    backdrop-filter: blur(5px);
    
    justify-content: center;
    align-items: center;
    display: flex;
    color: rgb(255, 255, 255);
    transition: all .3s ease;

    width: 100px;
    height: 40px;
    bottom: 24px;
    
}
.bannerTop h3
{
    opacity:1;
    transition: all .3s ease;
}
.bannerTop i
{
    position: absolute;
    font-size: 20px;
    opacity: 0;
    font-size: 30px;
    transition: all .3s;
}

.bannerTop .pageName:hover
{
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.7);
    width: 40px;
}
.bannerTop .pageName:hover h3
{
    opacity: 0;
}
.bannerTop .pageName:hover i
{
    opacity: 1;
}




/* 底部区域 */
.bottom
{
    margin-top: 16px;

}
.bottom .slogan
{
    
    background-color: transparent;
    color: rgb(64, 64, 64) ;
    /* height: 80px; */
    padding: 20px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    /* border-bottom: 2px solid rgb(141, 141, 141); */
}
.bottom .slogan p:nth-child(1)
{
    font-size: 32px;
    font-weight: 600;
}
.bottom .slogan p:nth-child(2)
{
    font-family: 'JetBrainsMono','Consolas';
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    margin-top: 8px;
}
.bottom .slogan p>span:nth-child(1)
{
    font-style: italic;
    color: rgb(123, 164, 181);
    border-bottom: 2px solid rgb(123, 164, 181);
}
.bottom .slogan p>span:nth-child(2)
{
    font-style: italic;
    color: rgb(123, 164, 181);
    border-bottom: 2px solid rgb(123, 164, 181);
}
.bottom .slogan p>span:nth-child(3)
{
    font-style: italic;
    color: rgb(123, 164, 181);
    border-bottom: 2px solid rgb(123, 164, 181);
}
.bottom .logos 
{
    display: flex;
    justify-content: center;
}
.bottom .logos a
{
color: gray;
font-size: 32px;
}
.bottom .copyright
{
    margin:10px 0 20px 0;
    display: flex;
    justify-content: center;
    font-size: 12px;
    color: gray;
}
/* 后续添加的类markdown文件的样式 */
.markdownStyle
{
    padding-left:8px;
    padding-right: 8px;
}

.markdownStyle p
{
    padding:8px 0;
    
    
}
.markdownStyle p.imgDepict
{
    font-size: 12px;
    color: gray;
    text-align: center;
    padding: 2px 0;
}
.markdownStyle img
{
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}
.markdownStyle .aboveTitle
{
    font-size: 10px;
    color: gray;
    padding-bottom: 0px;
}


.smallSeparator
{
    width: 20px;
    background-color: #cfdefe;
    height: 6px;
    border-radius: 8px;
    margin:12px 0;
}
.middleSeparator
{
    width: 50px;
    background-color: #cfdefe;
    height: 6px;
    border-radius: 8px;
    margin: 12px 0;
}
.largeSeparator
{
    width: 80px;
    background-color: #cfdefe;
    height: 6px;
    border-radius: 8px;
    margin: 12px 0;
}

/* 返回上一级 */
.returnBtn
{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.return
{
    
    line-height: 40px;
    padding:0px 20px;
    margin-top: 24px;
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 40px;
    height: 40px;
    font-size: 16px;
    box-shadow: none;
    transition: all .3s ease;
}
.return:hover
{
    background-color: #f3f3f3;
}
