.p1 {
   font-size: 80px;
   font-weight: 800;
   font-family: var(--body-font);
}
.p2 {
   font-size: 40px;
   font-weight: 600;
   font-family: var(--body-font);
}

#applet-table td {
    border: 1px solid #c2a084; /* 设置外边框的颜色和宽度 */
}

.table-marge{
    margin-top: 20px;
}
    .link-button {
        background: none;
        border: none;
        color: blue;
        text-decoration: underline;
        cursor: pointer;
        transition: color 0.3s; /* 添加过渡效果 */
    }

    .link-button:hover {
        color: red; /* 鼠标悬停时的颜色 */
    }