
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.all_outer {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
}

.header {
    height: 60px;
    width: 100%;
    flex: none;
    background: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    font-size: 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
}

.content_outer {
    width: 100vw;
    height: 0;
    flex: 1;
    display: flex;
}

.left {
    width: 600px;
    flex: none;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    height: 100%;
    border-right: 1px solid #ccc;
}

.left textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}


.right {
    display: flex;
    flex-direction: column;
    width: 0;
    flex: auto;
}

.address {
    height: 56px;
    background-color: #f3f3f3;
    width: 100vw;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
}

.address input {
    width: 200px;
    margin-left: 10px;
    margin-right: 10px;
    height: calc(100% - 16px);
    background-color: white;
    border: 1px solid #ddd;
    outline: none;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
    box-sizing: border-box;
    border-radius: 8px;
}

.right_content {
    height: 0;
    flex: auto;
}

.right_content textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 10px;
    box-sizing: border-box;
}