.feedback-button {
    position: fixed;
    bottom: 40px;
    right: 0;
    z-index: 99;
    width: 100px;
    height: 48px;
    background: #1890ff;
    transition: .3s;
    box-shadow: 0 0 6px rgba(0,0,0,.15);
    border-color: transparent;
    border-radius: 99px 0 0 99px;
    padding: 0 0 0 50px;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.feedback-button--shifted {
    transform: translateY(-54px);
}

.feedback-button:hover,.feedback-button:focus,
.feedback-top-button:hover,.feedback-top-button:focus {
    background-color: #40a9ff;
    box-shadow: 0 0 6px rgba(0,0,0,.18),0 5px 18px rgba(0,0,0,.12);
    border-color: transparent;
}

.feedback-button:active,.feedback-top-button:active {
    background-color: #096dd9;
    box-shadow: 0 0 4px rgba(0,0,0,.06),0 0 4px rgba(0,0,0,0),inset 0 3px 12px rgba(0,0,0,.15);
    border-color: transparent;
}

.feedback-button:before,.feedback-button:after,.feedback-button .el-icon-close {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.feedback-button:before {
    background: url("/assets/imgs/work/customize.svg") center no-repeat;
    content: "";
    left: 16px;
    width: 16px;
    height: 16px;
    margin: auto 0;
    background-size: 16px;
    transition: .3s;
    transform: scale(1);
    z-index: 1;
}

.feedback-button:after {
    left: 8px;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,.3);
    border-radius: 99px;
    content: "";
}

.feedback-button .el-icon-close {
    transition: .3s;
    transform: translate(-50%) scale(0) rotate(90deg);
    font-size: 20px;
    visibility: hidden;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-button--active .el-icon-close {
    transition: .3s cubic-bezier(.3,0,.4,1.4);
    transform: translate(-50%) scale(1);
    visibility: visible;
}

.feedback-button--active:before {
    transform: scale(0) rotate(-90deg);
    visibility: hidden;
}

.feedback-button [class*=el-icon-]+span {
    margin: 0;
}

.feedback-top-button {
    position: fixed;
    bottom: 40px;
    right: 12px;
    z-index: 99;
    width: 36px;
    height: 36px;
    background: #fff;
    transition: .3s;
    box-shadow: 0 0 6px rgba(0,0,0,.15),0 4px 16px rgba(0,0,0,.06);
    border-color: transparent;
}

.feedback-top-button.is-circle {
    padding: 0;
}

.feedback-top-button--shifted {
    transform: translate(50px);
    opacity: 0;
}

.feedback-top-button:hover,.feedback-top-button:focus,.feedback-top-button:active {
    background-color: #fff;
}

.feedback-top-button .el-icon-top {
    font-size: 18px;
    color: #333;
}

.feedback-modal {
    white-space: nowrap;
    text-align: center;
}

.feedback-modal:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.feedback-modal .el-dialog {
    line-height: 1.5;
    margin: 0;
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    white-space: normal;
}

.feedback-modal .el-dialog__header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.feedback-modal .el-dialog__title {
    font-size: 16px;
}

.feedback-modal .el-dialog__headerbtn {
    line-height: 1.2;
}

.feedback-modal .el-dialog__body {
    background-color: #f7f8f9;
    padding: 16px 340px 16px 20px;
    border-radius: 0 0 2px 2px;
    word-break: normal;
    word-wrap: break-word;
    position: relative;
}

.feedback-modal__row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -16px;
}

.feedback-modal__check-row .el-checkbox {
    width: calc(50% - 16px);
    margin: 0 16px 16px 0;
    background-color: #fff;
    position: relative;
    padding: 0 54px;
    height: 72px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.06);
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: .3s;
    border-radius: 2px;
}

.feedback-modal__check-row .el-checkbox:hover{
    box-shadow: 0 0 6px rgba(0,0,0,.08),0 4px 16px rgba(0,0,0,.06);
}

.feedback-modal__check-row .el-checkbox__input {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -10px;
}

.feedback-modal__check-row .el-checkbox__inner {
    width: 22px;
    height: 22px;
    border-radius: 99px;
    display: block;
    opacity: 0;
    transition: .3s;
}

.feedback-modal__check-row .is-checked {
    border-color: #1890ff;
}

.feedback-modal__check-row .el-checkbox:hover .el-checkbox__inner,.feedback-modal__check-row .is-checked .el-checkbox__inner {
    opacity: 1;
}

.feedback-modal__check-row .el-checkbox__inner:after {
    width: 4px;
    height: 9px;
    bottom: 3px;
    right: 4px;
    border-width: 0 2px 2px 0;
    margin: auto;
}

.feedback-modal__check-row .el-checkbox__label {
    padding-left: 10px;
    flex-grow: 1;
}

.feedback-modal__check-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
}

.feedback-modal__check-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 20px;
}

.feedback-modal__check-desc {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
}

.feedback-modal__label {
    margin-bottom: 8px;
}

.feedback-modal__label:before{
    content: '*';
    color: #f56c6c;
}

.feedback-modal__form {
    margin: 8px 0 4px;
    background-color: #fff;
    padding: 12px 4px 0 20px;
    box-shadow: 0 3px 11px rgba(0, 0, 0, 0.06);
}

.feedback-modal__form-item {
    margin-right: 16px;
    width: calc(50% - 16px);
    margin-top: 4px;
}

.feedback-modal__form-item .el-form-item__label {
    line-height: 1.5;
    padding-bottom: 4px;
}

.feedback-modal__form-item .el-input__inner,
.feedback-modal__form-item .el-textarea__inner {
    border: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid transparent;
    transition: .3s;
    border-radius: 0;
    resize: none;
}

.feedback-modal__form-item .el-input__inner {
    height: 36px;
    line-height: 36px;
}

.feedback-modal__form-item .el-input__inner:hover,
.feedback-modal__form-item .el-input__inner:focus,
.feedback-modal__form-item .el-textarea__inner:hover,
.feedback-modal__form-item .el-textarea__inner:focus {
    background-color: rgba(0, 0, 0, 0.06);
}

.feedback-modal__send {
    margin: 20px 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal__problems {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
    background-color: #fff;
    border-radius: 0 0 2px 0;
}

.feedback-modal__illustration {
    display: block;
    width: 100%;
    border: 0;
    height: auto;
}

.feedback-modal__problem-title {
    color: #333;
    font-size: 14px;
    line-height: 1.25;
    margin: 24px 0 8px;
}

.feedback-modal__problem-list {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    line-height: 20px;
    padding-left: 18px;
}

.feedback-modal__problem-list li {
    list-style: disc;
    margin-bottom: 6px;
}