*{padding: 0;margin: 0;box-sizing: border-box;font-family: HarmonyOS-Sans-Regular}
html,body{width: 100vw;height: 100vh}
::-webkit-scrollbar{
    width: 0;
}
a{
    text-decoration: none;
    color: #0099ff;
}
::selection {
    color: #ffffff;
    background: #ffd900;
}
:root{
    --headerHeight: 60px;
    --themeColor: #4CAF50;
}
header.navbar{
    width: 100vw;
    height: var(--headerHeight);
    background: #ffffff;
    border-bottom: solid 1px #d4d4d4;
    justify-content: start;
    padding: 0px 60px;

}
header.navbar p.title{
    line-height: var(--headerHeight);
    font-size: 20px;
    cursor: pointer;
    padding: 0px 10px;
}
header.navbar p.title a{
    font-family: HarmonyOS-Sans-Bold;
    background: linear-gradient(to right, #ff6361, #ffa600, #3cb371, #4a90e2, #c71585);
    -webkit-background-clip: text;
    color: transparent;
}
header.navbar p.title, header.navbar ul{
    float: left;
}
header.navbar ul{
    height: var(--headerHeight);
    margin-left: 40px;
    list-style: none;
    padding: 0;
}
header.navbar ul li{
    height: var(--headerHeight);
    padding: 0px 10px;
    float: left;
    transition: all 0.8s;
    cursor: pointer;
}
header.navbar ul li:hover{
    background-color: var(--themeColor);
}
header.navbar ul li p{
    line-height: var(--headerHeight);
    transition: all 0.8s;
}
header.navbar ul li p:hover{
    color: #ffffff;
}

/* 主体部分 */
main.main{
    width: 100vw;
    min-height: calc(100vh - var(--headerHeight));
    position: absolute;
    justify-items: center;
    background-color: #f0f2f5;
}
main.main > div{
    height: fit-content;
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    background: white;
    margin: 2em 0;
    padding: 0 5px;
}
@media screen and (max-width: 750px) {
    main.main > div{
        width: 100%;
        border-radius: 0px;
    }
}
main.main > div > div.containerTitle{
    color: #6b7184;
    font-size: 16px;
    font-weight: bold;
    display: block;
    border-bottom: 1px solid rgba(223, 215, 202, .75);
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
}
main.main > div > div.containerTitle strong{
    display: flex;
    align-items: center;
    font-size: 18px;
}
main.main > div > div.containerTitle strong i{
    font-size: 18px;
    margin-right: 8px;
}