/*按钮-start*/
.yHtml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    margin: 1px 0;
    font-weight: 500;
    padding: 9px 14px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    box-sizing: border-box;
    outline: none;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.yHtml-btn > img {
    margin: 0 3px;
}

.yHtml-btn:not(.disabled):hover {
    color: #409eff;
    border: 1px solid #c6e2ff;
    background-color: #ecf5ff;
}

.yHtml-btn.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed;
}

.yHtml-btn:not(.text).large {
    padding: 12px 18px;
}

.yHtml-btn:not(.text).small {
    padding: 7px 14px;
    font-size: 12px;
}

.yHtml-btn:not(.text).mini {
    padding: 4px 10px;
    font-size: 12px;
}

.yHtml-btn:not(.text).radius {
    border-radius: 20px;
}

.yHtml-btn.dashed {
    color: #515a6e;
    background-color: #fff;
    border-color: #dcdee2;
    border-style: dashed;
}

.yHtml-btn:not(.disabled).dashed:hover {
    color: #409eff;
    background-color: #fff;
    border-color: #409eff;
    border-style: dashed;
}

.yHtml-btn.primary {
    color: #fff;
    background: #409eff;
    border-color: #409eff;
}

.yHtml-btn:not(.disabled).primary:hover {
    color: #fff;
    background: #409eff;
    border-color: #409eff;
    opacity: 0.8;
}

.yHtml-btn.minor {
    color: #fff;
    background-color: rgb(45, 183, 245);
    border-color: rgb(45, 183, 245);
}

.yHtml-btn:not(.disabled).minor:hover {
    opacity: 0.8;
    color: #fff;
    background-color: rgb(45, 183, 245);
    border-color: rgb(45, 183, 245);
}

.yHtml-btn.success {
    color: #fff;
    background-color: rgb(103, 194, 58);
    border-color: rgb(103, 194, 58);
}

.yHtml-btn:not(.disabled).success:hover {
    opacity: 0.8;
    color: #fff;
    background-color: rgb(103, 194, 58);
    border-color: rgb(103, 194, 58);
}

.yHtml-btn.warning {
    color: #fff;
    background-color: rgb(255, 153, 0);
    border-color: rgb(255, 153, 0);
}

.yHtml-btn:not(.disabled).warning:hover {
    opacity: 0.8;
    color: #fff;
    background-color: rgb(255, 153, 0);
    border-color: rgb(255, 153, 0);
}

.yHtml-btn.danger {
    color: #fff;
    background-color: rgb(237, 64, 20);
    border-color: rgb(237, 64, 20);
}

.yHtml-btn:not(.disabled).danger:hover {
    opacity: 0.8;
    color: #fff;
    background-color: rgb(237, 64, 20);
    border-color: rgb(237, 64, 20);
}

.yHtml-btn.info {
    color: #fff;
    background-color: rgb(144, 147, 153);
    border-color: rgb(144, 147, 153);
}

.yHtml-btn:not(.disabled).info:hover {
    opacity: 0.8;
    color: #fff;
    background-color: rgb(144, 147, 153);
    border-color: rgb(144, 147, 153);
}

.yHtml-btn.plain {
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
}

.yHtml-btn:not(.disabled).plain:hover {
    border-color: #3a8ee6;
    color: #3a8ee6;
}

.yHtml-btn.dashed-plain {
    background: #fff;
    border: 1px dashed #dcdfe6;
    color: #606266;
}

.yHtml-btn:not(.disabled).dashed-plain:hover {
    border: 1px dashed #3a8ee6;
    color: #3a8ee6;
}

.yHtml-btn.primary-plain {
    color: #409eff;
    background: #ecf5ff;
    border-color: #b3d8ff;
}

.yHtml-btn:not(.disabled).primary-plain:hover {
    background: #409eff;
    border-color: #409eff;
    color: #fff;
    outline: none;
}

.yHtml-btn.minor-plain {
    color: rgb(45, 183, 245);
    background-color: rgba(45, 183, 245, .1);
    border-color: rgba(45, 183, 245, .3);
}

.yHtml-btn:not(.disabled).minor-plain:hover {
    color: #fff;
    background-color: rgb(45, 183, 245);
    border-color: rgb(45, 183, 245);
}

.yHtml-btn.success-plain {
    color: #67c23a;
    background: #f0f9eb;
    border-color: #c2e7b0;
}

.yHtml-btn:not(.disabled).success-plain:hover {
    color: #fff;
    background-color: rgb(103, 194, 58);
    border-color: rgb(103, 194, 58);
}

.yHtml-btn.warning-plain {
    color: #e6a23c;
    background: #fdf6ec;
    border-color: #f5dab1;
}

.yHtml-btn:not(.disabled).warning-plain:hover {
    color: #fff;
    background-color: rgb(255, 153, 0);
    border-color: rgb(255, 153, 0);
}

.yHtml-btn.danger-plain {
    color: #f56c6c;
    background: #fef0f0;
    border-color: #fbc4c4;
}

.yHtml-btn:not(.disabled).danger-plain:hover {
    color: #fff;
    background-color: rgb(237, 64, 20);
    border-color: rgb(237, 64, 20);
}

.yHtml-btn.info-plain {
    color: #909399;
    background: #f4f4f5;
    border-color: #d3d4d6;
}

.yHtml-btn:not(.disabled).info-plain:hover {
    color: #fff;
    background-color: rgb(144, 147, 153);
    border-color: rgb(144, 147, 153);
}

.yHtml-btn.text {
    border-color: transparent;
    color: #409eff;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
}

.yHtml-btn.text.disabled {
    color: #c0c4cc;
}

.yHtml-btn:not(.disabled).text:hover {
    opacity: .8;
    border-color: transparent;
    background: transparent;
}

.yHtml-group-btn {
    display: inline-flex;
    flex-wrap: wrap;
}

.yHtml-group-btn .yHtml-btn {
    border-radius: 0 !important;
    margin-right: 1px;
}

.yHtml-group-btn .yHtml-btn:first-child {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.yHtml-group-btn .yHtml-btn:last-child {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    margin-right: 0;
}

/*按钮-end*/