body,
html {
    background: var(--bg);
}

#main {}

.content {
    margin-top: 20px;
    padding   : 50px;
    min-height: 500px;
    position  : relative;
}

.register-title {
    font-size : 0.3rem;
    text-align: center;
}

.register-desc {
    text-align: center;
    padding: 15px 0px;
}

.register {
    padding    : 0.5rem;
    padding-top: 0.1rem;
    min-height : 800px;
}
.business .ivu-select-multiple .ivu-select-item{
    display: inline-block;
}
.business .ivu-select-multiple .ivu-select-item-selected:after{
    display: none;
}
.register input,
.register textarea {
    display: block;
    border : 10px solid #efefef;
    padding: 10px;
    width  : 100%;
    outline: none;
    height : 60px;
}
.register .ivu-select-selection,
.ivu-select-default{
    border: none;
}
.ivu-select-default.ivu-select-multiple .ivu-select-selection{
    min-height: 42px;
}
.ivu-select-multiple .ivu-select-selection .ivu-select-placeholder{
    min-height: 40px;
    line-height: 40px;
    font-size: inherit;
    color: #757575;
}
.ivu-select-multiple .ivu-tag{
    margin: 11px 5px 2px 0;
}
.register .border{
    border : 10px solid #efefef;
    min-height: 60px;
    font-size: 15px;
}
.register textarea {
    min-height: 100px;
}

.inpt>div {
    margin-bottom: 0.2rem;
}

.register .submit {
    padding   : 0.1rem 0px;
    font-size : 0.16rem;
    color     : #FFF;
    background: var(--theme);
    text-align: center;
    margin    : 0.15rem;
    margin-top: 0.5rem;
    transition: all 0.3s;
    cursor    : pointer;
}

.register .submit:active {
    background: #c3070e;
}

.required {
    position: relative;
}

.required::before {
    content    : '*';
    position   : absolute;
    top        : 0px;
    bottom     : 0px;
    margin     : auto;
    line-height: 30px;
    height     : 15px;
    left       : -15px;
    font-size  : 0.25rem;
    color      : var(--theme);
}