/**body {
  background-color: #ffffff;
}**/

.main_content_container {
    margin:150px 0px 150px 0px;
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: flex-start; 
}
/**.content_background {
  todo
}**/
.index_box {
    background-color: rgb(255, 255, 255);
    width: 500px;
    border: 2px solid rgb(37, 15, 94);
    border-radius: 15px;  

    padding:0px 50px 50px 50px; /* 上右下左 */
    margin: 30px 0px 30px 0px;

    position: relative;
    left: calc( 50% - 250px ); 
}
.non_url_form {
    color: black;
    /*font-weight: bold;
    font-size: 20px;*/
    text-decoration: none
}
.centered {
    display: flex;
    justify-content: center; 
}

.righted_grid {
    display: grid;
    place-items: right; 
    height: 100vh;
    margin: 0;
}
.righted {
    display: flex;
    justify-content: right; 
}

.right_box {
    background-color: rgb(255, 255, 255);
    width: 150px;
    border: 2px solid rgb(37, 15, 94);
    border-radius: 15px;  

    padding:30px 50px 30px 50px; /* 上右下左 */
    margin:30px 0px 50px 0px;
    

    position: relative;
    left: +100px; 
    text-align: center;
}

.author_name {
    color: black;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none
}
.profile_small {
    width: 80px; /* 设置图片的宽度 */
    height: 80px; /* 设置图片的高度 */
    border-radius: 50%; /* 使图片变成圆形 */
    object-fit: cover; /* 保证图片不失真，按比例缩放填充容器 */
}