.upload {
    margin: 20px;
    display: flex;
}

.upload-file {
display: inline-block;
    width: 100px;
    height: 100px;
    border: dashed 2px #ddd;
    background-size: 100% 100%;
    box-sizing: border-box;
    text-align: center;
    line-height: 96px;
    font-size: 70px;
    color: #999;
    position: relative;
}

.upload-file input {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0;
    top:0;left:0;
}

.upload-img {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0 10px 0 0;
    border: solid 1px #999;
}

.upload-img img {
    max-width: 100%;
    max-height: 100%;
}

.upload-img i {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #999;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 99;
    color: white;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    line-height: 17px;
    cursor: pointer;
    font-weight: bold;
}

.upload-img input {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    opacity: 0;
}

.img-box {
    display: flex;
}

.button {
    margin: 20px;
}

.button input {
    width: 200px;
    border-radius: 20px;
    height: 40px;
    color: #fff;
    font-size: 18px;
    background-color: #f60;
    outline: none;
}