
        .container {
            width: 100%;
            height: auto; /* 高度自适应 */
            background-color: white; /* 背景色 */
            border: 1px solid black; /* 1px的黑色边框 */
            box-sizing: border-box; /* 包括padding和border在内 */
            padding: 20px; /* 内容与边框的距离 */
            border-radius: 10px; /* 10px圆角 */
        }
    