h1 {
    font-size: 24px;
    line-height: 26px;
    margin: 15px 0px;
    font-weight: normal;
}

h2 {
    font-size: 24px;
    line-height: 24px;
    margin: 0px 0px;
    font-weight: normal;
}

h3 {
    font-size: 24px;
    line-height: 24px;
    margin: 20px 0px;
}

h4 {
    font-size: 21px;
    line-height: 21px;
    margin: 20px 0px;
}

h5 {
    font-size: 18px;
    line-height: 18px;
    margin: 20px 0px;
}

h6 {
    font-size: 15px;
    line-height: 15px;
    margin: 20px 0px;
}

html {
    box-sizing: border-box;
    padding: 0px;
}

body {
    font-size: 16px;
    font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑, STHeiti, MingLiu;
    margin: 0px;
    background-color: #f7f7f7;
    padding: 0px;
}


a {
    color: #0a58ca;
    text-decoration: none;
}

a:hover {
    color: coral;
    text-decoration: underline;
}

.dotLine {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 0px;
    border-bottom: 1px dashed #d5d5d5;
}

.pageContainer {
    background-color: #FFFFFF;
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 0px;
    padding-bottom: 100px;
}

.divTopbar {
    display: flex;
}

.divLogo {
    width: 360px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divLogoTitle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.divLogoDescription {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}


#divTopbarContent {
    flex: 1;
    margin-top: 10px;
}


.menu a {
    margin-left: 20px;
    color: black;
    text-decoration: none;
    font-size: 15px;
}

.menu a:hover {
    color: coral;
}


.fileName {
    font-weight: bold;
    background-color: lightgoldenrodyellow;
    border: 1px solid yellow;
    padding: 5px 10px;
}


 /* 初始样式 */
 /* a.animate {
    font-size: 20px;
    text-decoration: none;
    color: blue;
    transition: all 0.3s;
} */
/* 点击后动画 */
.blink {
    animation: blinkEffect 0.3s ease-in-out;
}

@keyframes blinkEffect {
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}