.image-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.image-container img {
    width: 50%;
    height: auto;
    margin: 2px;
}



  .buju-container {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background-color: #f4f4f4;
  }
  .buju-option {
    flex: 1; /* 使所有选项卡占用等宽的空间 */
    margin: 5px;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  select {
    width: 100%;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }


    .textarea-container {
        width: 100%; /* 设置文本区域的宽度为100%，使其占据父容器的全部宽度 */
        box-sizing: border-box; /* 设置盒模型为边框盒模型，使宽度包括内边距和边框 */
    }

    .textarea {
        width: 100%; /* 设置文本区域的宽度为100%，使其占据父容器的全部宽度 */
        height: 150px; /* 设置文本区域的高度为150px，可以根据需要进行调整 */
        padding: 10px; /* 设置内边距为10px，增加文本区域的可读性 */
        resize: vertical; /* 允许垂直调整大小，使用户可以通过拖动边框来调整高度 */
        border: 1px solid #ccc; /* 设置边框为1px的灰色实线 */
        border-radius: 5px; /* 设置边框圆角为5px，使其更加美观 */
        font-size: 14px; /* 设置字体大小为14px，可以根据需要进行调整 */
    }

