/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 40px;*/
/*    background-color: #FAF9DE;*/
/*    !*  绿豆沙：#C7EDCC*/
/*银河白：#FFFFFF*/
/*杏仁黄：#FAF9DE*/
/*秋叶褐：#FFF2E2*/
/*胭脂红：#FDE6E0*/
/*海天蓝：#DCE2F1*/
/*葛巾紫：#E9EBFE*/
/*极光灰：#EAEAEF*/
/*青草绿：#E3EDCD*!*/
/*}*/

body {
    font-family: Arial, sans-serif;
    padding-left: 4VW;
    padding-right: 4VW;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0;
}

.hide {
    display: none;
}

.multiline {
    white-space: pre-line;
}

.horizontal_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.horizontal_centered_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.horizontal_space_between_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.vertical_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.vertical_centered_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

h1, h2, h3, h4, h5 {
    text-align: center;
}

p {
    text-align: left;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

p {
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.p34 {
    font-size: 3.4vw;
    margin: 0;
    padding: 0;
}

.p50 {
    font-size: 5.0vw;
    margin: 0;
    padding: 0;
}

.description {
    font-size: 24px;
    font-weight: normal;
    color: black;
    text-align: left;
}

.input_text_item {
    width: 10em;
    height: 3em;
    font-size: 20px;
}

.left-align {
    text-align: left;
}

.centered-div {
    text-align: center;
}

.left-div {
    text-align: left;
    margin-left: 8vw;
}

.right-div {
    text-align: right;
    margin-right: 8vw;
}

.horizontal_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

.centered_horizontal_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.vertical_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.centered_vertical_container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.cropped-image {
    width: 88%;
    height: auto;
    clip-path: inset(10% 10% 10% 10%); /* 裁剪掉四周的10% */
}

.original-image {
    width: 100%;
    height: auto;
}

.original-image-width-90-percent {
    width: 90%;
    height: auto;
}

.original-image-width-88-percent {
    width: 88%;
    height: auto;
}

.original-image-width-85-percent {
    width: 85%;
    height: auto;
}

.original-image-width-80-percent {
    width: 80%;
    height: auto;
}

.original-image-width-60-percent {
    width: 60%;
    height: auto;
}

/* 添加以下样式来美化链接 */
.custom_link {
    font-size: 40px;
    display: inline-block; /* 使用块级元素，实现自动换行 */
    padding: 0.4em 0.8em;
    background-color: rgba(236, 79, 89, 0.93);
    color: #fff;
    text-decoration: none;
    /*margin-bottom: 0.5em;*/
    border-radius: 0.2em;
    transition: background-color 0.3s ease;
}

.custom_link:hover {
    background-color: #e80510;
}

.wechat-link {
    font-size: 5vw;
    display: inline-block; /* 使用块级元素，实现自动换行 */
    padding: 0.2em 0.5em;
    background-color: #49C158;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0vw;
    border-radius: 1.5vw;
    transition: background-color 0.3s ease;
}

.wechat-link:hover {
    background-color: #49A158;
}

.button {
    background-color: #4CAF66;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.manage_button {
    background-color: #d51606;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 6px;
    text-underline: #00000000;
    transition: background-color 0.3s;
}


/* 样式可以根据需求自定义 */
.back_button {
    /*display: none; !* 默认隐藏返回按钮 *!*/
    font-size: 24px;
    padding: 0.2em 0.5em;
    background-color: #fa627a;
    color: #fff;
    text-decoration: none;
    border-radius: 0.2em;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.back_button:hover {
    background-color: #f53454;
}

.link_button {
    background-color: #fa627a;
    padding: 0.4em;
    font-size: 24px;
    text-decoration: none;
    /*-webkit-border-radius: 0.2em;*/
    /*-moz-border-radius: 0.2em;*/
    border-radius: 0.2em;
    /*margin-top: 5vw;*/
    /*margin-bottom: 5vw;*/
}

.link_button a {
    text-decoration: none;
}

/*a:link {*/
/*    color: #007bff;*/
/*    text-decoration: none;*/
/*}*/

/*!* 未被访问的链接 *!*/
/*a:visited {*/
/*    color: darkblue;*/
/*}*/

/*!* 已被访问的链接 *!*/
/*a:hover {*/
/*    color: blue;*/
/*}*/

/*!* 鼠标指针移动到链接上 *!*/
/*a:active {*/
/*    color: #007bff;*/
/*    background-color: transparent*/
/*}*/

