/* 通用样式表 */

/* 自定义字体 */
@font-face {
    font-family: "pingfang";
    src: url("../font/PINGFANG-MEDIUM.TTF");
}

/* 全局样式 */
body, button {
    font-family: "pingfang", serif;
}

ul, li, p {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

a {
    color: #555780;
    text-decoration: none;
}

button {
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    text-align: center;
    letter-spacing: 4px;
    border: 2px solid #61cf9e;
    border-radius: 4px;
    transition: 200ms;
    cursor: pointer;
    color: #61cf9e;
    background-color: unset;
    outline: none;
}

button:hover {
    box-shadow: 0 8px 12px #eff5f1;
}

section {
    overflow: hidden;
}

/* 通用类样式 */
.shadow {
    box-shadow: 0 4px 24px #bbbbbb;
}

.bold {
    font-weight: bold;
}