body.hidden {
    overflow: hidden
}

body.shake {
    padding-right: 17px
}

[ds-component='mask'] {
    position: fixed;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    transition: opacity .3s
}

[ds-component='mask'].show {
    opacity: 1
}

[ds-component='alert'] {
    position: fixed;
    top: 100px;
    left: calc(50% - 200px);
    display: block;
    width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    transform: translateY(0);
    opacity: 0;
    transition: all .3s;
    z-index: 100;
    background-color: #fff
}

[ds-component='alert'].show {
    opacity: 1;
    transform: translateY(100px)
}

[ds-component='alert'] .ds-alert-container {
    width: 100%;
    padding: 20px;
    padding-bottom: 0
}

[ds-component='alert'] .ds-alert-container .ds-alert-box {
    width: 100%;
    padding: 10px 0
}

[ds-component='alert'] .ds-alert-container .ds-alert-box .alert-tips {
    text-align: center;
    font-size: 18px
}

[ds-component='alert'] .ds-alert-container .ds-alert-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border-top: 1px solid #f2f2f2
}

[ds-component='alert'] .ds-alert-container .ds-alert-btn-group .ds-alert-yes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: #e84827;
    transition: all .2s
}

[ds-component='alert'] .ds-alert-container .ds-alert-btn-group .ds-alert-yes-btn:hover {
    opacity: .8
}

[ds-component='alert'] .ds-alert-container .ds-alert-btn-group .ds-alert-yes-btn:active {
    opacity: 1
}

[ds-component='confirm'] {
    position: fixed;
    top: 100px;
    left: calc(50% - 200px);
    display: block;
    width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    transform: translateY(0);
    opacity: 0;
    transition: all .3s;
    z-index: 100;
    background-color: #fff
}

[ds-component='confirm'].show {
    opacity: 1;
    transform: translateY(100px)
}

[ds-component='confirm'] .ds-confirm-container {
    width: 100%;
    padding: 20px;
    padding-bottom: 0
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-box {
    width: 100%;
    padding: 10px 0
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-box .confirm-tips {
    text-align: center;
    font-size: 18px
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #f2f2f2
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-yes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: #2771d3;
    transition: all .2s
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-yes-btn:hover {
    opacity: .8
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-yes-btn:active {
    opacity: 1
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: #999;
    transition: all .2s
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-cancel-btn:hover {
    opacity: .8
}

[ds-component='confirm'] .ds-confirm-container .ds-confirm-btn-group .ds-confirm-cancel-btn:active {
    opacity: 1
}

[ds-component='modal'] {
    position: fixed;
    top: 100px;
    left: calc(50% - 200px);
    display: block;
    width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    transform: translateY(0);
    opacity: 0;
    transition: all .3s;
    z-index: 100;
    background-color: #fff
}

[ds-component='modal'].show {
    opacity: 1;
    transform: translateY(100px)
}

[ds-component='modal'] .ds-modal-container {
    width: 100%;
    padding: 20px;
    padding-bottom: 0
}

[ds-component='modal'] .ds-modal-container .ds-modal-box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 80px;
    padding: 10px 15px
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    overflow: hidden
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level .ds-icon {
    width: 100%;
    height: 100%
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level .ds-icon.info {
    color: #2d8cf0
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level .ds-icon.success {
    color: #19be6b
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level .ds-icon.warning {
    color: #f90
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-level .ds-icon.error {
    color: #ed4014
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-content-group {
    flex: 1;
    padding-left: 15px
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-content-group .ds-modal-content-title {
    margin-bottom: 5px;
    line-height: 28px;
    font-size: 18px
}

[ds-component='modal'] .ds-modal-container .ds-modal-box .ds-modal-content-group .ds-modal-content-tips {
    line-height: 24px;
    font-size: 16px;
    color: #515a6e
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #f2f2f2
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-yes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: #2771d3;
    transition: all .2s
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-yes-btn:hover {
    opacity: .8
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-yes-btn:active {
    opacity: 1
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-cancel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    padding: 10px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    background-color: #999;
    transition: all .2s
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-cancel-btn:hover {
    opacity: .8
}

[ds-component='modal'] .ds-modal-container .ds-modal-btn-group .ds-modal-cancel-btn:active {
    opacity: 1
}

[ds-component='public-loading'] {
    position: fixed;
    top: calc(50% - 75px);
    left: calc(50% - 75px);
    display: none;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    background-color: rgba(0,0,0,0.4);
    user-select: none;
    pointer-events: none
}

[ds-component='public-loading'] .loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

[ds-component='public-loading'] .loading-container .loading-container-loader {
    position: relative;
    top: -10px;
    color: #fff;
    font-size: 10px;
    margin: 50px auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    -webkit-animation: public-loading-animate 1.3s infinite linear;
    animation: public-loading-animate 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0)
}

[ds-component='public-loading'] .loader-tips {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    word-break: break-word;
    color: #fff
}

@-webkit-keyframes public-loading-animate {
    0%,100% {
        box-shadow: 0 -3em 0 .2em,2em -2em 0 0,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 0
    }

    12.5% {
        box-shadow: 0 -3em 0 0,2em -2em 0 .2em,3em 0 0 0,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em,2em -2em 0 0,3em 0 0 .2em,2em 2em 0 0,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 0,2em 2em 0 .2em,0 3em 0 0,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    50% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 0,0 3em 0 .2em,-2em 2em 0 0,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 0,-2em 2em 0 .2em,-3em 0 0 0,-2em -2em 0 -1em
    }

    75% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0 0 .2em,-2em -2em 0 0
    }

    87.5% {
        box-shadow: 0 -3em 0 0,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0 0 0,-2em -2em 0 .2em
    }
}

@keyframes public-loading-animate {
    0%,100% {
        box-shadow: 0 -3em 0 .2em,2em -2em 0 0,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 0
    }

    12.5% {
        box-shadow: 0 -3em 0 0,2em -2em 0 .2em,3em 0 0 0,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em,2em -2em 0 0,3em 0 0 .2em,2em 2em 0 0,0 3em 0 -1em,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 0,2em 2em 0 .2em,0 3em 0 0,-2em 2em 0 -1em,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    50% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 0,0 3em 0 .2em,-2em 2em 0 0,-3em 0 0 -1em,-2em -2em 0 -1em
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 0,-2em 2em 0 .2em,-3em 0 0 0,-2em -2em 0 -1em
    }

    75% {
        box-shadow: 0 -3em 0 -1em,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0 0 .2em,-2em -2em 0 0
    }

    87.5% {
        box-shadow: 0 -3em 0 0,2em -2em 0 -1em,3em 0 0 -1em,2em 2em 0 -1em,0 3em 0 -1em,-2em 2em 0 0,-3em 0 0 0,-2em -2em 0 .2em
    }
}

.ds-icon {
    width: 50px;
    height: 50px;
    fill: currentColor;
    overflow: hidden
}

[ds-component='standard-select'] {
    position: relative;
    user-select: none
}

[ds-component='standard-select'] .ds-selected-current {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    border: 1px solid #dcdee2;
    border-radius: 3px;
    background-color: #fff;
    transition: all .2s;
    cursor: pointer
}

[ds-component='standard-select'] .ds-selected-current .ds-selected-text {
    flex: 1;
    height: 100%;
    font-size: 16px;
    line-height: 43px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

[ds-component='standard-select'] .ds-selected-current .ds-selected-text.selected {
    color: #333
}

[ds-component='standard-select'] .ds-selected-current .ds-icon {
    margin-left: 15px;
    width: 25px;
    height: 25px;
    color: #333;
    transition: transform .2s
}

[ds-component='standard-select'] .ds-selected-current.active {
    box-shadow: 0 0 0 2px rgba(39,113,211,0.2);
    border: 1px solid #2771d3
}

[ds-component='standard-select'] .ds-selected-current.active .ds-icon {
    transform: rotate(180deg);
    color: #2771d3
}

[ds-component='standard-select'] .ds-select-group {
    position: absolute;
    top: 50px;
    left: 0;
    display: none;
    width: 100%;
    max-height: 216px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    overflow-y: auto;
    z-index: 10;
    opacity: 0;
    will-change: transform;
    transform: scaleY(.6);
    transform-origin: top;
    transition: all .2s
}

[ds-component='standard-select'] .ds-select-group .ds-select-item-box {
    width: 100%;
    padding: 8px 0
}

[ds-component='standard-select'] .ds-select-group .ds-select-item {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    line-height: 40px;
    color: #333;
    cursor: pointer
}

[ds-component='standard-select'] .ds-select-group .ds-select-item:hover {
    background-color: #f2f2f2
}

[ds-component='standard-select'] .ds-select-group.show {
    opacity: 1;
    transform: scaleY(1)
}

.ds-input-group {
    width: 300px;
    height: 45px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    background-color: #fff;
    transition: box-shadow .2s
}

.ds-input-group .ds-input,.ds-input-group .ds-textarea {
    display: block;
    min-width: 0;
    padding: 0 15px;
    font-size: 16px;
    line-height: 45px;
    color: #333
}

.ds-input-group .ds-input::-webkit-input-placeholder,.ds-input-group .ds-textarea::-webkit-input-placeholder {
    color: #999
}

.ds-input-group .ds-input::-moz-placeholder,.ds-input-group .ds-textarea::-moz-placeholder {
    color: #999
}

.ds-input-group .ds-input::-ms-input-placeholder,.ds-input-group .ds-textarea::-ms-input-placeholder {
    color: #999
}

.ds-input-group.focus {
    box-shadow: 0 0 2px rgba(0,0,0,0.8)
}

.ds-input-group.error {
    box-shadow: 0 0 2px rgba(255,28,47,0.6)
}

.ds-input-group.success {
    box-shadow: 0 0 2px #069c1a
}

.ds-input-group[ds-input-type='standard'] .ds-input {
    width: 100%;
    height: 100%;
    box-sizing: border-box
}

.ds-input-group[ds-input-type='textarea'] {
    height: 150px
}

.ds-input-group[ds-input-type='textarea'] .ds-textarea {
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
    resize: none
}

.ds-input-group[ds-input-type='login'] {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ds-input-group[ds-input-type='login'] .ds-input {
    flex: 1;
    height: 100%
}

.ds-input-group[ds-input-type='login'] .ds-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 100%;
    background-color: #333
}

.ds-input-group[ds-input-type='login'] .ds-icon-slot .ds-icon {
    width: 25px;
    color: #fff
}

.ds-input-group[ds-input-type='search'] {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ds-input-group[ds-input-type='search'] .ds-input {
    flex: 1;
    height: 100%
}

.ds-input-group[ds-input-type='search'] .ds-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    border-left: 1px solid #eee;
    cursor: pointer
}

.ds-input-group[ds-input-type='search'] .ds-icon-slot .ds-icon {
    width: 25px;
    color: #666;
    transition: all .2s
}

.ds-input-group[ds-input-type='search'] .ds-icon-slot:hover .ds-icon {
    color: #333
}

.ds-input-group[ds-input-type='search'] .ds-icon-slot:active .ds-icon {
    transform: scale(.9)
}

.ds-input-group[ds-input-type='code'] {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.ds-input-group[ds-input-type='code'] .ds-input {
    flex: 1;
    -ms-flex: 1;
    height: 100%
}

.ds-input-group[ds-input-type='code'] .ds-getcode-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    padding: 0 15px;
    height: 100%;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    transition: background-color .2s
}

.ds-input-group[ds-input-type='code'] .ds-getcode-button::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    background-color: #eee;
    transform: scaleY(.8)
}

.ds-input-group[ds-input-type='code'] .ds-getcode-button.disable {
    background-color: #eee;
    cursor: default
}

.ds-radio-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.ds-radio-group .ds-radio-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    user-select: none;
    -moz-user-select: none
}

.ds-radio-group .ds-radio-item .ds-radio-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid #666;
    cursor: pointer
}

.ds-radio-group .ds-radio-item .ds-radio-box::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #333;
    transition: all .2s;
    opacity: 0;
    transform: scale(.8)
}

.ds-radio-group .ds-radio-item .ds-radio-label {
    padding-left: 6px;
    font-size: 16px;
    line-height: 20px;
    color: #666;
    transition: all .2s;
    cursor: pointer
}

.ds-radio-group .ds-radio-item:hover .ds-radio-label {
    color: #333
}

.ds-radio-group .ds-radio-item.active .ds-radio-box {
    box-shadow: 0 0 2px rgba(0,0,0,0.3)
}

.ds-radio-group .ds-radio-item.active .ds-radio-box::before {
    opacity: 1;
    transform: scale(.5)
}

.ds-radio-group .ds-radio-item.active .ds-radio-label {
    color: #333
}

.ds-checkbox-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap
}

.ds-checkbox-group .ds-checkbox-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    user-select: none;
    -moz-user-select: none
}

.ds-checkbox-group .ds-checkbox-item .ds-checkbox-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid #666;
    cursor: pointer;
    transition: all .1s
}

.ds-checkbox-group .ds-checkbox-item .ds-checkbox-box .checkbox-icon {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #333;
    transition: all .1s;
    transform: scale(0);
    opacity: 0
}

.ds-checkbox-group .ds-checkbox-item .ds-checkbox-label {
    padding-left: 6px;
    font-size: 16px;
    line-height: 20px;
    color: #666;
    transition: all .2s;
    cursor: pointer
}

.ds-checkbox-group .ds-checkbox-item:hover .ds-checkbox-label {
    color: #333
}

.ds-checkbox-group .ds-checkbox-item.active .ds-checkbox-box {
    border: 1px solid #333;
    box-shadow: 0 0 2px rgba(0,0,0,0.3)
}

.ds-checkbox-group .ds-checkbox-item.active .ds-checkbox-box .checkbox-icon {
    transform: scale(1);
    opacity: 1
}

.ds-checkbox-group .ds-checkbox-item.active .ds-checkbox-label {
    color: #333
}

.ds-public-page {
    width: 100%
}

.ds-public-page .ds-page-container {
    display: flex;
    align-items: center
}

.ds-public-page .ds-page-group {
    display: flex;
    align-items: center;
    justify-content: center
}

.ds-public-page .ds-page-group .page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    transition: color .2s,background-color .2s,border .2s
}

.ds-public-page .ds-page-group .page-num.prev.text,.ds-public-page .ds-page-group .page-num.next.text {
    width: 80px
}

.ds-public-page .ds-page-group .page-num+.page-num {
    margin-left: 19px
}

.ds-public-page .ds-page-group .page-num:hover {
    color: #333;
    border: 1px solid #999
}

.ds-public-page .ds-page-group .page-num.page-num-current {
    color: #fff;
    background-color: #333;
    border: 1px solid #333
}

.ds-public-page .ds-page-group .ds-page-ellipsis {
    width: 53px;
    height: 45px;
    text-align: center;
    line-height: 34px;
    font-size: 18px;
    font-weight: 400;
    color: #999
}

.ds-public-page .ds-page-text {
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    color: #999
}

.ds-public-page .ds-page-input {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    background-color: transparent;
    transition: all .2s
}

.ds-public-page .ds-page-input:hover {
    color: #333;
    border: 1px solid #999
}

.ds-public-page .ds-page-input:focus {
    color: #333;
    border: 1px solid #999
}

.ds-public-page .ds-page-skip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 45px;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: all .2s
}

.ds-public-page .ds-page-skip:hover {
    color: #333;
    border: 1px solid #999
}

.ds-button {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    height: 45px;
    overflow: hidden;
    text-align: center;
    font-size: 18px;
    line-height: 45px;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    transition: box-shadow .2s,background-color .2s
}

.ds-button:not(.disabled):active,.ds-button:not(.disabled):focus {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
    background-color: #363636
}

.ds-button.color-red {
    color: #fff;
    background-color: #dd4b4b
}

.ds-button.color-red:not(.disabled):active,.ds-button.color-red:not(.disabled):focus {
    background-color: #ee5a5a
}

.ds-button.color-blue {
    color: #fff;
    background-color: #4b96dd
}

.ds-button.color-blue:not(.disabled):active,.ds-button.color-blue:not(.disabled):focus {
    background-color: #56a2e9
}

.ds-button.loading::before {
    position: absolute;
    top: 20px;
    left: 50px;
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    font-size: 5px;
    color: rgba(255,255,255,0.4);
    border-radius: 50%;
    -webkit-animation: public-loading-animate 1.3s infinite linear;
    animation: public-loading-animate 1.3s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 0
}

.ds-button.disabled {
    background-color: #6c757d;
    cursor: default
}

[ds-component='upload-image'] {
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

[ds-component='upload-image'] .ds-upload-item {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 10px
}

[ds-component='upload-image'] .ds-upload-image {
    position: relative;
    background-color: #f8f8f8;
    overflow: hidden
}

[ds-component='upload-image'] .ds-upload-image .upload-image-remove-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    color: #fff;
    z-index: 2;
    transition: color .2s;
    cursor: pointer
}

[ds-component='upload-image'] .ds-upload-image .upload-image-remove-icon:hover {
    color: #ff8181
}

[ds-component='upload-image'] .ds-upload-image .ds-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.3);
    transition: all .5s;
    z-index: 0
}

[ds-component='upload-image'] .ds-upload-image::before {
    position: absolute;
    top: 36px;
    left: 39px;
    content: '';
    display: block;
    width: 1em;
    height: 1em;
    font-size: 5px;
    color: rgba(196,196,196,0.4);
    border-radius: 50%;
    -webkit-animation: public-loading-animate 1.3s infinite linear;
    animation: public-loading-animate 1.3s infinite linear;
    opacity: 1;
    z-index: 0;
    transition: all .2s
}

[ds-component='upload-image'] .ds-upload-image.show::before {
    opacity: 0
}

[ds-component='upload-image'] .ds-upload-image.show .ds-image {
    opacity: 1;
    transform: scale(1)
}

[ds-component='upload-image'] .ds-upload-add {
    position: relative;
    border: 1px dashed #ccc;
    cursor: pointer
}

[ds-component='upload-image'] .ds-upload-add .upload-image-add-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #eee;
    z-index: 0
}

[ds-component='upload-image'] .ds-upload-input {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer
}

.ds-public-crumbs {
    display: flex;
    align-items: center;
    width: 100%
}

.ds-public-crumbs .crumbs-link {
    font-size: 16px;
    line-height: 22px;
    color: #999;
    transition: color .2s
}

.ds-public-crumbs .crumbs-link.icon {
    display: block;
    width: 22px;
    height: 22px
}

.ds-public-crumbs .crumbs-link.icon .crumbs-icon {
    width: 100%;
    height: 100%
}

.ds-public-crumbs .crumbs-link:hover {
    color: #333
}

.ds-public-crumbs .crumbs-link.active {
    color: #333
}

.ds-public-crumbs .crumbs-interval {
    margin: 0 10px;
    font-size: 16px;
    line-height: 22px;
    color: #999
}

.ds-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: rgba(0,0,0,0.3);
    z-index: 90;
    min-width: 1440px;
}

.ds-header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 100%;
    margin: 0 auto
}

.ds-header .logo {
    display: block;
    width: 176px;
    height: 90px;
    background-image: url(../images/logo.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat
}

.ds-header .nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%
}

.ds-header .nav-menu-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%
}

.ds-header .menu-item {
    position: relative;
    height: 100%
}

.ds-header .menu-item .menu-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 100%;
    font-size: 16px;
    color: #fff
}

.ds-header .menu-item .menu-title::before {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #e64027;
    transform: scaleX(0);
    transition: all .2s
}

.ds-header .menu-item .sub-menu-card {
    position: absolute;
    top: 91px;
    left: 0;
    display: none;
    padding: 10px 0;
    width: 100%;
    background-color: #fff
}

.ds-header .menu-item .sub-menu-card .sub-menu-link {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    color: #333;
    transition: all .3s
}

.ds-header .menu-item .sub-menu-card .sub-menu-link .sub-menu-item {
    font-size: 16px;
    line-height: 40px;
    color: #333;
    transition: all .3s
}

.ds-header .menu-item .sub-menu-card .sub-menu-link .menu-group {
    position: absolute;
    top: 0;
    left: 150px;
    display: none;
    flex-wrap: wrap;
    width: 457px;
    background-color: #fff
}

.ds-header .menu-item .sub-menu-card .sub-menu-link .menu-group .menu-group-item {
    display: block;
    font-size: 14px;
    line-height: 40px;
    color: #666;
    transition: all .3s;
    margin: 0 13px
}

.ds-header .menu-item .sub-menu-card .sub-menu-link .menu-group .menu-group-item:hover {
    color: #e64027
}

.ds-header .menu-item .sub-menu-card .sub-menu-link+.sub-menu-link {
    border-top: 1px solid #f2f2f2
}

.ds-header .menu-item .sub-menu-card .sub-menu-link.active {
    color: #e74027
}

.ds-header .menu-item .sub-menu-card .sub-menu-link:hover {
    color: #e74027
}

.ds-header .menu-item .sub-menu-card .sub-menu-link.show .sub-menu-item {
    background-color: #e64027;
    color: #fffefe
}

.ds-header .menu-item .sub-menu-card .sub-menu-link.show .menu-group {
    display: flex
}

.ds-header .menu-item:hover .menu-title {
    color: #fff
}

.ds-header .menu-item:hover .menu-title::before {
    transform: scaleX(1)
}

.ds-header .menu-item:hover .sub-menu-card {
    display: block
}

.ds-header .menu-item.active .menu-title::before {
    transform: scaleX(1)
}

.ds-header .nav-other-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-left: 15px
}

.ds-header .language-select {
    position: relative;
    height: 100%
}

.ds-header .language-select .current-language {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: 100%
}

.ds-header .language-select .current-language .current-text {
    font-size: 14px;
    line-height: 24px;
    color: #fff
}

.ds-header .language-select .current-language .language-icon {
    width: 25px;
    transition: all .2s;
    color: #fff
}

.ds-header .language-select .language-group {
    position: absolute;
    top: 90px;
    left: 0;
    display: none;
    width: 100%;
    padding: 10px 0;
    background-color: #fff
}

.ds-header .language-select .language-group .language-item {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 0 5px;
    font-size: 14px;
    line-height: 30px;
    color: #333;
    transition: all .2s
}

.ds-header .language-select .language-group .language-item+.language-item {
    border-top: 1px solid #f2f2f2
}

.ds-header .language-select .language-group .language-item:hover {
    color: #e74027
}

.ds-header .language-select:hover .current-language .language-icon {
    transform: rotate(-90deg)
}

.ds-header .language-select:hover .language-group {
    display: block
}

.ds-header.active {
    background-color: #fff
}

.ds-header.active .logo {
    /* width: 65px; */
    /* height: 46px; */
    background-image: url(../images/logo-active.png);
}

.ds-header.active .menu-item .menu-title {
    color: #333
}

.ds-header.active .language-select .current-language .current-text {
    color: #333
}

.ds-header.active .language-select .current-language .language-icon {
    color: #333
}

.ds-header .header-search-box {
    display: flex;
    align-items: center;
    height: 100%
}

.ds-header .header-search {
    display: flex;
    align-items: center;
    width: 180px;
    height: 30px;
    background-color: rgba(0,0,0,0.2);
    border: 1px solid #e64027;
    border-radius: 15px;
    padding: 0 12px
}

.ds-header .header-search .header-search-icon {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    cursor: pointer
}

.ds-header .header-search .header-search-input {
    flex: 1;
    background-color: unset;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 16px
}
