.img-container{
    width: 100%;
    height: 100%;
}

.img-container .img-row{
    display: inline-flex;
    width: 100%;
    height: 100%;
}

.img-row:not(:first-child){
    margin-top: 2rem;
}

.img-row label {
    width: 12%;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}

.img-row img, .img-row svg {
    margin-left: 3rem;
}

.img-row img {
    cursor: pointer;
    width: 400px;
    height: 200px;
}

textarea{
    width:calc(100vw - 15%);
    height: calc(100vh/3);
    padding: 10px;
}

button {
    min-width: 78px;
}

button[disabled]{
    background-color: #cccccc;
    border-color: #cccccc;
}

.button-group > button {
    margin-left: 1rem;
}

.button-group > :first-child{
    margin-left: 12%;
}

.img-result{
    width: 100%;
}

.img-result p{
    width: 100%;
    max-height: 10vh;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.img-result p:before{
    content: "复制";
    color: blue;
    position: relative;
    top:0;
    left: 0;
}

.img-result p:hover{
    background-color: rgba(0,0,0,0.3);
}
