html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: white;
    color: #333333;
  }

p {
    margin-top:5px;
    margin-bottom:8px;
    text-indent: 24px;
    line-height: 150%;
}
 
.content {
    width: 100%;
    max-width: 960px;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
}
   
.column {
    flex: auto; /* 每列平分空间 */
    min-width: 240px;
    padding: 20px; 
}

.text-small-light{
    font-size: smaller;
    color: #666666;
}
.text-small-content{
    font-size:medium;
    color: #111111;
}
.text-small-title{
    font-size:medium;
    color: #111111;
    font-weight: bold;
}
.card{
    margin-bottom: 30px;
}

.input-container {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
    height: 60px;
    font-size: small;
  }
  
.right-aligned{
    text-align: right;
    padding-top: 10px;
    
}