@charset "UTF-8";

@font-face {
    font-family: "myFontFamilyBold";
    src: url("https://www.oppo.com/content/dam/statics/fonts/en/OPPOSans3.0En-VF.woff2");
}

@font-face {
    font-family: "myFontMedium";
    src: url("https://www.oppo.com/content/dam/statics/fonts/en/OPPOSans3.0En-Medium.woff2");
}

@font-face {
    font-family: "myFontRegular";
    src: url("https://www.oppo.com/content/dam/statics/fonts/en/OPPOSans3.0En-Regular.woff2");
}

html {
    overflow: unset !important
}

*,
:after,
:before {
    box-sizing: initial
}

@media (orientation: portrait) and (max-width: 1023px) and (min-width: 721px) {
    #oc-header {
        overflow: hidden
    }
}

@media (orientation: portrait) and (max-width: 1023px) {
    #oc-header.fixed {
        visibility: hidden
    }
}

#oc-wrapper {
    overflow: visible
}

@media (max-width: 1023px) {
    #oc-wrapper .oppo-navbar {
        height: 48px
    }
}

@media (min-width: 1024px) {
    #oc-wrapper .oppo-navbar {
        height: 60px
    }
}

#footer {
    overflow-x: hidden
}

.el-message {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
    border-radius: var(--el-border-radius-base);
    border-width: var(--el-border-width);
    border-style: var(--el-border-style);
    border-color: var(--el-message-border-color);
    position: fixed;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: var(--el-message-bg-color);
    transition: opacity var(--el-transition-duration), top .4s, -webkit-transform .4s;
    transition: opacity var(--el-transition-duration), transform .4s, top .4s;
    transition: opacity var(--el-transition-duration), transform .4s, top .4s, -webkit-transform .4s;
    padding: var(--el-message-padding);
    display: flex;
    align-items: center
}

.el-zoom-in-center-enter-from,
.el-zoom-in-center-leave-active {
    opacity: 0;
    transform: scaleX(0)
}

.el-zoom-in-top-enter-active,
.el-zoom-in-top-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    transform-origin: center top
}

.el-zoom-in-top-enter-active[data-popper-placement^=top],
.el-zoom-in-top-leave-active[data-popper-placement^=top] {
    transform-origin: center bottom
}

.el-zoom-in-top-enter-from,
.el-zoom-in-top-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.el-zoom-in-bottom-enter-active,
.el-zoom-in-bottom-leave-active {
    opacity: 1;
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    transform-origin: center bottom
}

.el-zoom-in-bottom-enter-from,
.el-zoom-in-bottom-leave-active {
    opacity: 0;
    transform: scaleY(0)
}

.el-zoom-in-left-enter-active,
.el-zoom-in-left-leave-active {
    opacity: 1;
    transform: scale(1);
    transition: var(--el-transition-md-fade);
    transform-origin: top left
}

.el-zoom-in-left-enter-from,
.el-zoom-in-left-leave-active {
    opacity: 0;
    transform: scale(.45)
}

.el-list-enter-from,
.el-list-leave-to {
    opacity: 0;
    transform: translateY(-30px)
}

.el-icon-loading {
    animation: rotating 2s linear infinite
}

@keyframes rotating {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.el-icon {
    --color: inherit;
    height: 1em;
    width: 1em;
    line-height: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    fill: currentColor;
    color: var(--color);
    font-size: inherit
}

.el-icon.is-loading {
    animation: rotating 2s linear infinite
}

.el-checkbox {
    --el-checkbox-font-size: 14px;
    --el-checkbox-font-weight: var(--el-font-weight-primary);
    --el-checkbox-text-color: var(--el-text-color-regular);
    --el-checkbox-input-height: 14px;
    --el-checkbox-input-width: 14px;
    --el-checkbox-border-radius: var(--el-border-radius-small);
    --el-checkbox-bg-color: var(--el-fill-color-blank);
    --el-checkbox-input-border: var(--el-border);
    --el-checkbox-disabled-border-color: var(--el-border-color);
    --el-checkbox-disabled-input-fill: var(--el-fill-color-light);
    --el-checkbox-disabled-icon-color: var(--el-text-color-placeholder);
    --el-checkbox-disabled-checked-input-fill: var(--el-border-color-extra-light);
    --el-checkbox-disabled-checked-input-border-color: var(--el-border-color);
    --el-checkbox-disabled-checked-icon-color: var(--el-text-color-placeholder);
    --el-checkbox-checked-text-color: var(--el-color-primary);
    --el-checkbox-checked-input-border-color: var(--el-color-primary);
    --el-checkbox-checked-bg-color: var(--el-color-primary);
    --el-checkbox-checked-icon-color: var(--el-color-white);
    --el-checkbox-input-border-color-hover: var(--el-color-primary)
}

.el-checkbox {
    color: var(--el-checkbox-text-color);
    font-weight: var(--el-checkbox-font-weight);
    font-size: var(--el-font-size-base);
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    margin-right: 30px;
}

.el-checkbox.is-disabled {
    cursor: not-allowed
}

.el-checkbox.is-bordered {
    padding: 0 15px 0 9px;
    border-radius: var(--el-border-radius-base);
    border: var(--el-border);
    box-sizing: border-box
}

.el-checkbox.is-bordered.is-checked {
    border-color: var(--el-color-primary)
}

.el-checkbox.is-bordered.is-disabled {
    border-color: var(--el-border-color-lighter)
}

.el-checkbox.is-bordered.el-checkbox--large {
    padding: 0 19px 0 11px;
    border-radius: var(--el-border-radius-base)
}

.el-checkbox.is-bordered.el-checkbox--large .el-checkbox__label {
    font-size: var(--el-font-size-base)
}

.el-checkbox.is-bordered.el-checkbox--large .el-checkbox__inner {
    height: 14px;
    width: 14px
}

.el-checkbox.is-bordered.el-checkbox--small {
    padding: 0 11px 0 7px;
    border-radius: calc(var(--el-border-radius-base) - 1px)
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label {
    font-size: 12px
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner {
    height: 12px;
    width: 12px
}

.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner:after {
    height: 6px;
    width: 2px
}

.el-checkbox input:focus-visible+.el-checkbox__inner {
    outline: 2px solid var(--el-checkbox-input-border-color-hover);
    outline-offset: 1px;
    border-radius: var(--el-checkbox-border-radius)
}

.el-checkbox__input {
    white-space: nowrap;
    cursor: pointer;
    outline: 0;
    display: inline-flex;
    position: relative
}

.el-checkbox__input.is-disabled .el-checkbox__inner {
    background-color: var(--el-checkbox-disabled-input-fill);
    border-color: var(--el-checkbox-disabled-border-color);
    cursor: not-allowed
}

.el-checkbox__input.is-disabled .el-checkbox__inner:after {
    cursor: not-allowed;
    border-color: var(--el-checkbox-disabled-icon-color)
}

.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner {
    background-color: var(--el-checkbox-disabled-checked-input-fill);
    border-color: var(--el-checkbox-disabled-checked-input-border-color)
}

.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner:after {
    border-color: var(--el-checkbox-disabled-checked-icon-color)
}

.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner {
    background-color: var(--el-checkbox-disabled-checked-input-fill);
    border-color: var(--el-checkbox-disabled-checked-input-border-color)
}

.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner:before {
    background-color: var(--el-checkbox-disabled-checked-icon-color);
    border-color: var(--el-checkbox-disabled-checked-icon-color)
}

.el-checkbox__input.is-disabled+span.el-checkbox__label {
    color: var(--el-disabled-text-color);
    cursor: not-allowed
}

.el-checkbox__input.is-checked .el-checkbox__inner {
    background-color: #000000;
    border-color: #000000;
}

.el-checkbox__input.is-checked .el-checkbox__inner:after {
    transform: rotate(45deg) scaleY(1)
}

.el-checkbox__input.is-checked+.el-checkbox__label {
    color: var(--el-checkbox-checked-text-color)
}

.el-checkbox__input.is-focus:not(.is-checked) .el-checkbox__original:not(:focus-visible) {
    border-color: var(--el-checkbox-input-border-color-hover)
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: var(--el-checkbox-checked-bg-color);
    border-color: var(--el-checkbox-checked-input-border-color)
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner:before {
    content: "";
    position: absolute;
    display: block;
    background-color: var(--el-checkbox-checked-icon-color);
    height: 2px;
    transform: scale(.5);
    left: 0;
    right: 0;
    top: 5px
}

.el-checkbox__input.is-indeterminate .el-checkbox__inner:after {
    display: none
}

.el-checkbox__inner {
    display: inline-block;
    position: relative;
    border: var(--el-checkbox-input-border);
    border-radius: var(--el-checkbox-border-radius);
    box-sizing: border-box;
    width: var(--el-checkbox-input-width);
    height: var(--el-checkbox-input-height);
    background-color: var(--el-checkbox-bg-color);
    z-index: var(--el-index-normal);
    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46), outline .25s cubic-bezier(.71, -.46, .29, 1.46)
}

.el-checkbox__inner:hover {
    border-color: #000000;
}

.el-checkbox__inner:after {
    box-sizing: content-box;
    content: "";
    border: 1px solid var(--el-checkbox-checked-icon-color);
    border-left: 0;
    border-top: 0;
    height: 7px;
    left: 4px;
    position: absolute;
    top: 1px;
    transform: rotate(45deg) scaleY(0);
    width: 3px;
    transition: transform .15s ease-in 50ms;
    transform-origin: center
}

.el-checkbox__original {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    width: 0;
    height: 0;
    z-index: -1
}

.el-checkbox__label {
    display: inline-block;
    padding-left: 8px;
    font-size: var(--el-checkbox-font-size)
}

.el-checkbox.el-checkbox--large {
    height: 40px
}

.el-checkbox.el-checkbox--large .el-checkbox__label {
    font-size: 14px
}

.el-checkbox.el-checkbox--large .el-checkbox__inner {
    width: 14px;
    height: 14px
}

.el-checkbox.el-checkbox--small {
    height: 24px
}

.el-checkbox.el-checkbox--small .el-checkbox__label {
    font-size: 12px
}

.el-checkbox.el-checkbox--small .el-checkbox__inner {
    width: 12px;
    height: 12px
}

.el-checkbox.el-checkbox--small .el-checkbox__input.is-indeterminate .el-checkbox__inner:before {
    top: 4px
}

.el-checkbox.el-checkbox--small .el-checkbox__inner:after {
    width: 2px;
    height: 6px
}

.el-checkbox:last-of-type {
    margin-right: 0
}

.el-form {
    --el-form-label-font-size: var(--el-font-size-base)
}

.el-form--label-left .el-form-item__label {
    justify-content: flex-start
}

.el-form--label-top .el-form-item {
    display: block
}

.el-form--label-top .el-form-item .el-form-item__label {
    display: block;
    height: auto;
    text-align: left;
    margin-bottom: 8px;
    line-height: 22px
}

.el-form--inline .el-form-item {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 32px
}

.el-form--inline.el-form--label-top {
    display: flex;
    flex-wrap: wrap
}

.el-form--inline.el-form--label-top .el-form-item {
    display: block
}

.el-form--large.el-form--label-top .el-form-item .el-form-item__label {
    margin-bottom: 12px;
    line-height: 22px
}

.el-form--default.el-form--label-top .el-form-item .el-form-item__label {
    margin-bottom: 8px;
    line-height: 22px
}

.el-form--small.el-form--label-top .el-form-item .el-form-item__label {
    margin-bottom: 4px;
    line-height: 20px
}

.el-form-item__label {
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex: 0 0 auto;
    font-size: var(--el-form-label-font-size);
    color: var(--el-text-color-regular);
    height: 32px;
    line-height: 32px;
    padding: 0 12px 0 0;
    box-sizing: border-box
}

.el-form-item__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
    line-height: 32px;
    position: relative;
    font-size: var(--font-size);
    min-width: 0
}

.el-form-item__content .el-input-group {
    vertical-align: top
}

.el-form-item__error {
    color: var(--el-color-danger);
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    height: 20px;
}

.el-form-item__error--inline {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-left: 10px
}

.el-form-item.is-error .el-select-v2__wrapper,
.el-form-item.is-error .el-select-v2__wrapper:focus,
.el-form-item.is-error .el-textarea__inner,
.el-form-item.is-error .el-textarea__inner:focus {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-form-item.is-error .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-form-item.is-error .el-input-group__append .el-input__wrapper,
.el-form-item.is-error .el-input-group__prepend .el-input__wrapper {
    box-shadow: 0 0 0 1px transparent inset
}

.el-form-item.is-error .el-input__validateIcon {
    color: var(--el-color-danger)
}

.el-form-item--feedback .el-input__validateIcon {
    display: inline-flex
}

.el-textarea {
    --el-input-text-color: var(--el-text-color-regular);
    --el-input-border: var(--el-border);
    --el-input-hover-border: var(--el-border-color-hover);
    --el-input-focus-border: var(--el-color-primary);
    --el-input-transparent-border: 0 0 0 1px transparent inset;
    --el-input-border-color: var(--el-border-color);
    --el-input-border-radius: var(--el-border-radius-base);
    --el-input-bg-color: var(--el-fill-color-blank);
    --el-input-icon-color: var(--el-text-color-placeholder);
    --el-input-placeholder-color: var(--el-text-color-placeholder);
    --el-input-hover-border-color: var(--el-border-color-hover);
    --el-input-clear-hover-color: var(--el-text-color-secondary);
    --el-input-focus-border-color: var(--el-color-primary)
}

.el-textarea {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: bottom;
    font-size: var(--el-font-size-base)
}

.el-textarea__inner {
    position: relative;
    display: block;
    resize: vertical;
    padding: 5px 11px;
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
    font-size: inherit;
    font-family: inherit;
    color: var(--el-input-text-color, var(--el-text-color-regular));
    background-color: var(--el-input-bg-color, var(--el-fill-color-blank));
    background-image: none;
    -webkit-appearance: none;
    box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset;
    border-radius: var(--el-input-border-radius, var(--el-border-radius-base));
    transition: var(--el-transition-box-shadow);
    border: none
}

.el-textarea__inner::placeholder {
    color: var(--el-input-placeholder-color, var(--el-text-color-placeholder))
}

.el-textarea__inner:hover {
    box-shadow: 0 0 0 1px var(--el-input-hover-border-color) inset
}

.el-textarea__inner:focus {
    outline: 0;
    box-shadow: 0 0 0 1px #606266 inset
}

.el-textarea .el-input__count {
    color: var(--el-color-info);
    background: var(--el-fill-color-blank);
    position: absolute;
    font-size: 12px;
    line-height: 14px;
    bottom: 5px;
    right: 10px
}

.el-textarea.is-disabled .el-textarea__inner {
    background-color: var(--el-disabled-bg-color);
    border-color: var(--el-disabled-border-color);
    color: var(--el-disabled-text-color);
    cursor: not-allowed
}

.el-textarea.is-disabled .el-textarea__inner::placeholder {
    color: var(--el-text-color-placeholder)
}

.el-textarea.is-exceed .el-textarea__inner {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-textarea.is-exceed .el-input__count {
    color: var(--el-color-danger)
}

.el-input {
    --el-input-text-color: var(--el-text-color-regular);
    --el-input-border: var(--el-border);
    --el-input-hover-border: var(--el-border-color-hover);
    --el-input-focus-border: var(--el-color-primary);
    --el-input-transparent-border: 0 0 0 1px transparent inset;
    --el-input-border-color: var(--el-border-color);
    --el-input-border-radius: var(--el-border-radius-base);
    --el-input-bg-color: var(--el-fill-color-blank);
    --el-input-icon-color: var(--el-text-color-placeholder);
    --el-input-placeholder-color: var(--el-text-color-placeholder);
    --el-input-hover-border-color: var(--el-border-color-hover);
    --el-input-clear-hover-color: var(--el-text-color-secondary);
    --el-input-focus-border-color: var(--el-color-primary)
}

.el-input {
    --el-input-height: var(--el-component-size);
    position: relative;
    font-size: var(--el-font-size-base);
    display: inline-flex;
    width: 100%;
    line-height: var(--el-input-height);
    box-sizing: border-box;
    vertical-align: middle
}

.el-input::-webkit-scrollbar {
    z-index: 11;
    width: 6px
}

.el-input::-webkit-scrollbar:horizontal {
    height: 6px
}

.el-input::-webkit-scrollbar-thumb {
    border-radius: 5px;
    width: 6px;
    background: var(--el-text-color-disabled)
}

.el-input::-webkit-scrollbar-corner {
    background: var(--el-fill-color-blank)
}

.el-input::-webkit-scrollbar-track {
    background: var(--el-fill-color-blank)
}

.el-input::-webkit-scrollbar-track-piece {
    background: var(--el-fill-color-blank);
    width: 6px
}

.el-input .el-input__clear,
.el-input .el-input__password {
    color: var(--el-input-icon-color);
    font-size: 14px;
    cursor: pointer
}

.el-input .el-input__clear:hover,
.el-input .el-input__password:hover {
    color: var(--el-input-clear-hover-color)
}

.el-input .el-input__count {
    height: 100%;
    display: inline-flex;
    align-items: center;
    color: var(--el-color-info);
    font-size: 12px
}

.el-input .el-input__count .el-input__count-inner {
    background: var(--el-fill-color-blank);
    line-height: initial;
    display: inline-block;
    padding-left: 8px
}

.el-input__wrapper {
    display: inline-flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    padding: 1px 11px;
    background-color: var(--el-input-bg-color, var(--el-fill-color-blank));
    background-image: none;
    border-radius: var(--el-input-border-radius, var(--el-border-radius-base));
    transition: var(--el-transition-box-shadow);
    transform: translateZ(0);
    box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset
}

.el-input__wrapper:hover {
    box-shadow: 0 0 0 1px var(--el-input-hover-border-color) inset
}

.el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px #606266 inset
}

.el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 32px) - 2px);
    width: 100%;
    flex-grow: 1;
    -webkit-appearance: none;
    color: var(--el-input-text-color, var(--el-text-color-regular));
    font-size: inherit;
    height: var(--el-input-inner-height);
    line-height: var(--el-input-inner-height);
    padding: 0;
    outline: 0;
    border: none;
    background: 0 0;
    box-sizing: border-box
}

.el-input__inner:focus {
    outline: 0
}

.el-input__inner::placeholder {
    color: var(--el-input-placeholder-color, var(--el-text-color-placeholder))
}

.el-input__inner[type=password]::-ms-reveal {
    display: none
}

.el-input__prefix {
    display: inline-flex;
    white-space: nowrap;
    flex-shrink: 0;
    flex-wrap: nowrap;
    height: 100%;
    text-align: center;
    color: var(--el-input-icon-color, var(--el-text-color-placeholder));
    transition: all var(--el-transition-duration);
    pointer-events: none
}

.el-input__prefix-inner {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.el-input__prefix-inner>:last-child {
    margin-right: 8px
}

.el-input__prefix-inner>:first-child,
.el-input__prefix-inner>:first-child.el-input__icon {
    margin-left: 0
}

.el-input__suffix {
    display: inline-flex;
    white-space: nowrap;
    flex-shrink: 0;
    flex-wrap: nowrap;
    height: 100%;
    text-align: center;
    color: var(--el-input-icon-color, var(--el-text-color-placeholder));
    transition: all var(--el-transition-duration);
    pointer-events: none
}

.el-input__suffix-inner {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.el-input__suffix-inner>:first-child {
    margin-left: 8px
}

.el-input .el-input__icon {
    height: inherit;
    line-height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--el-transition-duration);
    margin-left: 8px
}

.el-input__validateIcon {
    pointer-events: none
}

.el-input.is-active .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-input-focus-color, ) inset
}

.el-input.is-disabled {
    cursor: not-allowed
}

.el-input.is-disabled .el-input__wrapper {
    background-color: var(--el-disabled-bg-color);
    box-shadow: 0 0 0 1px var(--el-disabled-border-color) inset
}

.el-input.is-disabled .el-input__inner {
    color: var(--el-disabled-text-color);
    -webkit-text-fill-color: var(--el-disabled-text-color);
    cursor: not-allowed
}

.el-input.is-disabled .el-input__inner::placeholder {
    color: var(--el-text-color-placeholder)
}

.el-input.is-disabled .el-input__icon {
    cursor: not-allowed
}

.el-input.is-exceed .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-color-danger) inset
}

.el-input.is-exceed .el-input__suffix .el-input__count {
    color: var(--el-color-danger)
}

.el-input--large {
    --el-input-height: var(--el-component-size-large);
    font-size: 14px
}

.el-input--large .el-input__wrapper {
    padding: 1px 15px
}

.el-input--large .el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 40px) - 2px)
}

.el-input--small {
    --el-input-height: var(--el-component-size-small);
    font-size: 12px
}

.el-input--small .el-input__wrapper {
    padding: 1px 7px
}

.el-input--small .el-input__inner {
    --el-input-inner-height: calc(var(--el-input-height, 24px) - 2px)
}

.el-input-group {
    display: inline-flex;
    width: 100%;
    align-items: stretch
}

.el-input-group__append,
.el-input-group__prepend {
    background-color: var(--el-fill-color-light);
    color: var(--el-color-info);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    border-radius: var(--el-input-border-radius);
    padding: 0 20px;
    white-space: nowrap
}

.el-input-group__append:focus,
.el-input-group__prepend:focus {
    outline: 0
}

.el-input-group__append .el-button,
.el-input-group__append .el-select,
.el-input-group__prepend .el-button,
.el-input-group__prepend .el-select {
    display: inline-block;
    margin: 0 -20px
}

.el-input-group__append button.el-button,
.el-input-group__append button.el-button:hover,
.el-input-group__append div.el-select .el-input__wrapper,
.el-input-group__append div.el-select:hover .el-input__wrapper,
.el-input-group__prepend button.el-button,
.el-input-group__prepend button.el-button:hover,
.el-input-group__prepend div.el-select .el-input__wrapper,
.el-input-group__prepend div.el-select:hover .el-input__wrapper {
    border-color: transparent;
    background-color: transparent;
    color: inherit
}

.el-input-group__append .el-button,
.el-input-group__append .el-input,
.el-input-group__prepend .el-button,
.el-input-group__prepend .el-input {
    font-size: inherit
}

.el-input-group__prepend {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 1px 0 0 0 var(--el-input-border-color) inset, 0 1px 0 0 var(--el-input-border-color) inset, 0 -1px 0 0 var(--el-input-border-color) inset
}

.el-input-group__append {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 1px 0 0 var(--el-input-border-color) inset, 0 -1px 0 0 var(--el-input-border-color) inset, -1px 0 0 0 var(--el-input-border-color) inset
}

.el-input-group--prepend>.el-input__wrapper {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-input .el-input__inner {
    box-shadow: none !important
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-input .el-input__wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 1px 0 0 0 var(--el-input-border-color) inset, 0 1px 0 0 var(--el-input-border-color) inset, 0 -1px 0 0 var(--el-input-border-color) inset
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-input.is-focus .el-input__inner {
    box-shadow: none !important
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-input.is-focus .el-input__wrapper {
    box-shadow: 1px 0 0 0 #606266 inset, 1px 0 0 0 #606266, 0 1px 0 0 #606266 inset, 0 -1px 0 0 #606266 inset !important;
    z-index: 2
}

.el-input-group--prepend .el-input-group__prepend .el-select .el-input.is-focus .el-input__wrapper:focus {
    outline: 0;
    z-index: 2;
    box-shadow: 1px 0 0 0 #606266 inset, 1px 0 0 0 #606266, 0 1px 0 0 #606266 inset, 0 -1px 0 0 #606266 inset !important
}

.el-input-group--prepend .el-input-group__prepend .el-select:hover .el-input__inner {
    box-shadow: none !important
}

.el-input-group--prepend .el-input-group__prepend .el-select:hover .el-input__wrapper {
    z-index: 1;
    box-shadow: 1px 0 0 0 var(--el-input-hover-border-color) inset, 1px 0 0 0 var(--el-input-hover-border-color), 0 1px 0 0 var(--el-input-hover-border-color) inset, 0 -1px 0 0 var(--el-input-hover-border-color) inset !important
}

.el-input-group--append>.el-input__wrapper {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.el-input-group--append .el-input-group__append .el-select .el-input .el-input__inner {
    box-shadow: none !important
}

.el-input-group--append .el-input-group__append .el-select .el-input .el-input__wrapper {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: 0 1px 0 0 var(--el-input-border-color) inset, 0 -1px 0 0 var(--el-input-border-color) inset, -1px 0 0 0 var(--el-input-border-color) inset
}

.el-input-group--append .el-input-group__append .el-select .el-input.is-focus .el-input__inner {
    box-shadow: none !important
}

.el-input-group--append .el-input-group__append .el-select .el-input.is-focus .el-input__wrapper {
    z-index: 2;
    box-shadow: -1px 0 0 0 #606266, -1px 0 0 0 #606266 inset, 0 1px 0 0 #606266 inset, 0 -1px 0 0 #606266 inset !important
}

.el-input-group--append .el-input-group__append .el-select:hover .el-input__inner {
    box-shadow: none !important
}

.el-input-group--append .el-input-group__append .el-select:hover .el-input__wrapper {
    z-index: 1;
    box-shadow: -1px 0 0 0 var(--el-input-hover-border-color), -1px 0 0 0 var(--el-input-hover-border-color) inset, 0 1px 0 0 var(--el-input-hover-border-color) inset, 0 -1px 0 0 var(--el-input-hover-border-color) inset !important
}

.el-tag {
    --el-tag-font-size: 12px;
    --el-tag-border-radius: 4px;
    --el-tag-border-radius-rounded: 9999px
}

.el-tag {
    --el-tag-bg-color: var(--el-color-primary-light-9);
    --el-tag-border-color: var(--el-color-primary-light-8);
    --el-tag-hover-color: var(--el-color-primary);
    --el-tag-text-color: var(--el-color-primary);
    background-color: var(--el-tag-bg-color);
    border-color: var(--el-tag-border-color);
    color: var(--el-tag-text-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 24px;
    padding: 0 9px;
    font-size: var(--el-tag-font-size);
    line-height: 1;
    border-width: 1px;
    border-style: solid;
    border-radius: var(--el-tag-border-radius);
    box-sizing: border-box;
    white-space: nowrap;
    --el-icon-size: 14px
}

.el-tag.el-tag--primary {
    --el-tag-bg-color: var(--el-color-primary-light-9);
    --el-tag-border-color: var(--el-color-primary-light-8);
    --el-tag-hover-color: var(--el-color-primary)
}

.el-tag.el-tag--success {
    --el-tag-bg-color: var(--el-color-success-light-9);
    --el-tag-border-color: var(--el-color-success-light-8);
    --el-tag-hover-color: var(--el-color-success)
}

.el-tag.el-tag--warning {
    --el-tag-bg-color: var(--el-color-warning-light-9);
    --el-tag-border-color: var(--el-color-warning-light-8);
    --el-tag-hover-color: var(--el-color-warning)
}

.el-tag.el-tag--danger {
    --el-tag-bg-color: var(--el-color-danger-light-9);
    --el-tag-border-color: var(--el-color-danger-light-8);
    --el-tag-hover-color: var(--el-color-danger)
}

.el-tag.el-tag--error {
    --el-tag-bg-color: var(--el-color-error-light-9);
    --el-tag-border-color: var(--el-color-error-light-8);
    --el-tag-hover-color: var(--el-color-error)
}

.el-tag.el-tag--info {
    --el-tag-bg-color: var(--el-color-info-light-9);
    --el-tag-border-color: var(--el-color-info-light-8);
    --el-tag-hover-color: var(--el-color-info)
}

.el-tag.el-tag--primary {
    --el-tag-text-color: var(--el-color-primary)
}

.el-tag.el-tag--success {
    --el-tag-text-color: var(--el-color-success)
}

.el-tag.el-tag--warning {
    --el-tag-text-color: var(--el-color-warning)
}

.el-tag.el-tag--danger {
    --el-tag-text-color: var(--el-color-danger)
}

.el-tag.el-tag--error {
    --el-tag-text-color: var(--el-color-error)
}

.el-tag.el-tag--info {
    --el-tag-text-color: var(--el-color-info)
}

.el-tag.is-hit {
    border-color: var(--el-color-primary)
}

.el-tag.is-round {
    border-radius: var(--el-tag-border-radius-rounded)
}

.el-tag .el-tag__close {
    color: var(--el-tag-text-color)
}

.el-tag .el-tag__close:hover {
    color: var(--el-color-white);
    background-color: var(--el-tag-hover-color)
}

.el-tag .el-icon {
    border-radius: 50%;
    cursor: pointer;
    font-size: calc(var(--el-icon-size) - 2px);
    height: var(--el-icon-size);
    width: var(--el-icon-size)
}

.el-tag .el-tag__close {
    margin-left: 6px
}

.el-tag--dark {
    --el-tag-bg-color: var(--el-color-primary);
    --el-tag-border-color: var(--el-color-primary);
    --el-tag-hover-color: var(--el-color-primary-light-3);
    --el-tag-text-color: var(--el-color-white)
}

.el-tag--dark.el-tag--primary {
    --el-tag-bg-color: var(--el-color-primary);
    --el-tag-border-color: var(--el-color-primary);
    --el-tag-hover-color: var(--el-color-primary-light-3)
}

.el-tag--dark.el-tag--success {
    --el-tag-bg-color: var(--el-color-success);
    --el-tag-border-color: var(--el-color-success);
    --el-tag-hover-color: var(--el-color-success-light-3)
}

.el-tag--dark.el-tag--warning {
    --el-tag-bg-color: var(--el-color-warning);
    --el-tag-border-color: var(--el-color-warning);
    --el-tag-hover-color: var(--el-color-warning-light-3)
}

.el-tag--dark.el-tag--danger {
    --el-tag-bg-color: var(--el-color-danger);
    --el-tag-border-color: var(--el-color-danger);
    --el-tag-hover-color: var(--el-color-danger-light-3)
}

.el-tag--dark.el-tag--error {
    --el-tag-bg-color: var(--el-color-error);
    --el-tag-border-color: var(--el-color-error);
    --el-tag-hover-color: var(--el-color-error-light-3)
}

.el-tag--dark.el-tag--info {
    --el-tag-bg-color: var(--el-color-info);
    --el-tag-border-color: var(--el-color-info);
    --el-tag-hover-color: var(--el-color-info-light-3)
}

.el-tag--dark.el-tag--primary,
.el-tag--dark.el-tag--success,
.el-tag--dark.el-tag--warning,
.el-tag--dark.el-tag--danger,
.el-tag--dark.el-tag--error,
.el-tag--dark.el-tag--info {
    --el-tag-text-color: var(--el-color-white)
}

.el-tag--plain {
    --el-tag-border-color: var(--el-color-primary-light-5);
    --el-tag-hover-color: var(--el-color-primary);
    --el-tag-bg-color: var(--el-fill-color-blank)
}

.el-tag--plain.el-tag--primary {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-primary-light-5);
    --el-tag-hover-color: var(--el-color-primary)
}

.el-tag--plain.el-tag--success {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-success-light-5);
    --el-tag-hover-color: var(--el-color-success)
}

.el-tag--plain.el-tag--warning {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-warning-light-5);
    --el-tag-hover-color: var(--el-color-warning)
}

.el-tag--plain.el-tag--danger {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-danger-light-5);
    --el-tag-hover-color: var(--el-color-danger)
}

.el-tag--plain.el-tag--error {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-error-light-5);
    --el-tag-hover-color: var(--el-color-error)
}

.el-tag--plain.el-tag--info {
    --el-tag-bg-color: var(--el-fill-color-blank);
    --el-tag-border-color: var(--el-color-info-light-5);
    --el-tag-hover-color: var(--el-color-info)
}

.el-tag.is-closable {
    padding-right: 5px
}

.el-tag--large {
    padding: 0 11px;
    height: 32px;
    --el-icon-size: 16px
}

.el-tag--large .el-tag__close {
    margin-left: 8px
}

.el-tag--large.is-closable {
    padding-right: 7px
}

.el-tag--small {
    padding: 0 7px;
    height: 20px;
    --el-icon-size: 12px
}

.el-tag--small .el-tag__close {
    margin-left: 4px
}

.el-tag--small.is-closable {
    padding-right: 3px
}

.el-tag--small .el-icon-close {
    transform: scale(.8)
}

.el-tag.el-tag--primary.is-hit {
    border-color: var(--el-color-primary)
}

.el-tag.el-tag--success.is-hit {
    border-color: var(--el-color-success)
}

.el-tag.el-tag--warning.is-hit {
    border-color: var(--el-color-warning)
}

.el-tag.el-tag--danger.is-hit {
    border-color: var(--el-color-danger)
}

.el-tag.el-tag--error.is-hit {
    border-color: var(--el-color-error)
}

.el-tag.el-tag--info.is-hit {
    border-color: var(--el-color-info)
}

.el-select-dropdown__item {
    font-size: var(--el-font-size-base);
    padding: 0 32px 0 20px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--el-text-color-regular);
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    cursor: pointer
}

.el-select-dropdown__item.is-disabled {
    color: var(--el-text-color-placeholder);
    cursor: not-allowed
}

.el-select-dropdown__item.hover,
.el-select-dropdown__item:hover {
    background-color: var(--el-fill-color-light)
}

.el-select-dropdown__item.selected {
    color: var(--el-color-primary);
    font-weight: 700
}

.el-select-group {
    margin: 0;
    padding: 0
}

.el-select-group__wrap {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0
}

.el-select-group__wrap:not(:last-of-type) {
    padding-bottom: 24px
}

.el-select-group__wrap:not(:last-of-type):after {
    content: "";
    position: absolute;
    display: block;
    left: 20px;
    right: 20px;
    bottom: 12px;
    height: 1px;
    background: var(--el-border-color-light)
}

.el-select-group__split-dash {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 1px;
    background: var(--el-border-color-light)
}

.el-select-group__title {
    padding-left: 20px;
    font-size: 12px;
    color: var(--el-color-info);
    line-height: 30px
}

.el-select-group .el-select-dropdown__item {
    padding-left: 20px
}

.el-scrollbar {
    --el-scrollbar-opacity: .3;
    --el-scrollbar-bg-color: var(--el-text-color-secondary);
    --el-scrollbar-hover-opacity: .5;
    --el-scrollbar-hover-bg-color: var(--el-text-color-secondary)
}

.el-scrollbar {
    overflow: hidden;
    position: relative;
    height: 100%
}

.el-scrollbar__wrap {
    overflow: auto;
    height: 100%
}

.el-scrollbar__wrap--hidden-default {
    scrollbar-width: none
}

.el-scrollbar__wrap--hidden-default::-webkit-scrollbar {
    display: none
}

.el-scrollbar__thumb {
    position: relative;
    display: block;
    width: 0;
    height: 0;
    cursor: pointer;
    border-radius: inherit;
    background-color: var(--el-scrollbar-bg-color, var(--el-text-color-secondary));
    transition: var(--el-transition-duration) background-color;
    opacity: var(--el-scrollbar-opacity, .3)
}

.el-scrollbar__thumb:hover {
    background-color: var(--el-scrollbar-hover-bg-color, var(--el-text-color-secondary));
    opacity: var(--el-scrollbar-hover-opacity, .5)
}

.el-scrollbar__bar {
    position: absolute;
    right: 2px;
    bottom: 2px;
    z-index: 1;
    border-radius: 4px
}

.el-scrollbar__bar.is-vertical {
    width: 6px;
    top: 2px
}

.el-scrollbar__bar.is-vertical>div {
    width: 100%
}

.el-scrollbar__bar.is-horizontal {
    height: 6px;
    left: 2px
}

.el-scrollbar__bar.is-horizontal>div {
    height: 100%
}

.el-scrollbar-fade-enter-active {
    transition: opacity .34s ease-out
}

.el-scrollbar-fade-leave-active {
    transition: opacity .12s ease-out
}

.el-scrollbar-fade-enter-from,
.el-scrollbar-fade-leave-active {
    opacity: 0
}

.el-popper {
    --el-popper-border-radius: var(--el-popover-border-radius, 4px)
}

.el-popper {
    position: absolute;
    border-radius: var(--el-popper-border-radius);
    padding: 5px 11px;
    z-index: 2000;
    font-size: 12px;
    line-height: 20px;
    min-width: 10px;
    word-wrap: break-word;
    visibility: visible
}

.el-popper.is-dark {
    color: var(--el-bg-color);
    background: var(--el-text-color-primary);
    border: 1px solid var(--el-text-color-primary)
}

.el-popper.is-dark .el-popper__arrow:before {
    border: 1px solid var(--el-text-color-primary);
    background: var(--el-text-color-primary);
    right: 0
}

.el-popper.is-light {
    background: var(--el-bg-color-overlay);
    border: 1px solid var(--el-border-color-light)
}

.el-popper.is-light .el-popper__arrow:before {
    border: 1px solid var(--el-border-color-light);
    background: var(--el-bg-color-overlay);
    right: 0
}

.el-popper.is-pure {
    padding: 0
}

.el-popper__arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: -1
}

.el-popper__arrow:before {
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: -1;
    content: " ";
    transform: rotate(45deg);
    background: var(--el-text-color-primary);
    box-sizing: border-box
}

.el-popper[data-popper-placement^=top]>.el-popper__arrow {
    bottom: -5px
}

.el-popper[data-popper-placement^=top]>.el-popper__arrow:before {
    border-bottom-right-radius: 2px
}

.el-popper[data-popper-placement^=bottom]>.el-popper__arrow {
    top: -5px
}

.el-popper[data-popper-placement^=bottom]>.el-popper__arrow:before {
    border-top-left-radius: 2px
}

.el-popper[data-popper-placement^=left]>.el-popper__arrow {
    right: -5px
}

.el-popper[data-popper-placement^=left]>.el-popper__arrow:before {
    border-top-right-radius: 2px
}

.el-popper[data-popper-placement^=right]>.el-popper__arrow {
    left: -5px
}

.el-popper[data-popper-placement^=right]>.el-popper__arrow:before {
    border-bottom-left-radius: 2px
}

.el-popper[data-popper-placement^=top] .el-popper__arrow:before {
    border-top-color: transparent !important;
    border-left-color: transparent !important
}

.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before {
    border-bottom-color: transparent !important;
    border-right-color: transparent !important
}

.el-popper[data-popper-placement^=left] .el-popper__arrow:before {
    border-left-color: transparent !important;
    border-bottom-color: transparent !important
}

.el-popper[data-popper-placement^=right] .el-popper__arrow:before {
    border-right-color: transparent !important;
    border-top-color: transparent !important
}

.el-select-dropdown {
    z-index: calc(var(--el-index-top) + 1);
    border-radius: var(--el-border-radius-base);
    box-sizing: border-box
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
    color: var(--el-color-primary);
    background-color: var(--el-bg-color-overlay)
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover {
    background-color: var(--el-fill-color-light)
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    border-top: none;
    border-right: none;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--el-color-primary);
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask-size: 100% 100%;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    -webkit-mask-size: 100% 100%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.is-disabled:after {
    background-color: var(--el-text-color-disabled)
}

.el-select-dropdown .el-select-dropdown__option-item.is-selected:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    border-top: none;
    border-right: none;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--el-color-primary);
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    mask-size: 100% 100%;
    -webkit-mask: url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
    -webkit-mask-size: 100% 100%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px
}

.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list {
    padding: 0
}

.el-select-dropdown .el-select-dropdown__item.is-disabled:hover {
    background-color: unset
}

.el-select-dropdown .el-select-dropdown__item.is-disabled.selected {
    color: var(--el-text-color-disabled)
}

.el-select-dropdown__empty {
    padding: 10px 0;
    margin: 0;
    text-align: center;
    color: var(--el-text-color-secondary);
    font-size: var(--el-select-font-size)
}

.el-select-dropdown__wrap {
    max-height: 274px
}

.el-select-dropdown__list {
    list-style: none;
    padding: 6px 0;
    margin: 0;
    box-sizing: border-box
}

.el-select {
    --el-select-border-color-hover: var(--el-border-color-hover);
    --el-select-disabled-border: var(--el-disabled-border-color);
    --el-select-font-size: var(--el-font-size-base);
    --el-select-close-hover-color: var(--el-text-color-secondary);
    --el-select-input-color: var(--el-text-color-placeholder);
    --el-select-multiple-input-color: var(--el-text-color-regular);
    --el-select-input-focus-border-color: var(--el-color-primary);
    --el-select-input-font-size: 14px
}

.el-select {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    line-height: 32px
}

.el-select__popper.el-popper {
    background: var(--el-bg-color-overlay);
    border: 1px solid var(--el-border-color-light);
    box-shadow: var(--el-box-shadow-light)
}

.el-select__popper.el-popper .el-popper__arrow:before {
    border: 1px solid var(--el-border-color-light)
}

.el-select__popper.el-popper[data-popper-placement^=top] .el-popper__arrow:before {
    border-top-color: transparent;
    border-left-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=bottom] .el-popper__arrow:before {
    border-bottom-color: transparent;
    border-right-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=left] .el-popper__arrow:before {
    border-left-color: transparent;
    border-bottom-color: transparent
}

.el-select__popper.el-popper[data-popper-placement^=right] .el-popper__arrow:before {
    border-right-color: transparent;
    border-top-color: transparent
}

.el-select .el-select-tags-wrapper.has-prefix {
    margin-left: 6px
}

.el-select--large {
    line-height: 40px
}

.el-select--large .el-select-tags-wrapper.has-prefix {
    margin-left: 8px
}

.el-select--small {
    line-height: 24px
}

.el-select--small .el-select-tags-wrapper.has-prefix {
    margin-left: 4px
}

.el-select .el-select__tags>span {
    display: inline-block
}

.el-select:hover:not(.el-select--disabled) .el-input__wrapper {
    box-shadow: 0 0 0 1px var(--el-select-border-color-hover) inset
}

.el-select .el-select__tags-text {
    display: inline-block;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.el-select .el-input__wrapper {
    cursor: pointer
}

.el-select .el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px #606266 inset !important
}

.el-select .el-input__inner {
    cursor: pointer
}

.el-select .el-input {
    display: flex
}

.el-select .el-input .el-select__caret {
    color: var(--el-select-input-color);
    font-size: var(--el-select-input-font-size);
    transition: transform var(--el-transition-duration);
    transform: rotate(0);
    cursor: pointer
}

.el-select .el-input .el-select__caret.is-reverse {
    transform: rotate(-180deg)
}

.el-select .el-input .el-select__caret.is-show-close {
    font-size: var(--el-select-font-size);
    text-align: center;
    transform: rotate(0);
    border-radius: var(--el-border-radius-circle);
    color: var(--el-select-input-color);
    transition: var(--el-transition-color)
}

.el-select .el-input .el-select__caret.is-show-close:hover {
    color: var(--el-select-close-hover-color)
}

.el-select .el-input .el-select__caret.el-icon {
    position: relative;
    height: inherit;
    z-index: 2
}

.el-select .el-input.is-disabled .el-input__wrapper {
    cursor: not-allowed
}

.el-select .el-input.is-disabled .el-input__wrapper:hover {
    box-shadow: 0 0 0 1px var(--el-select-disabled-border) inset
}

.el-select .el-input.is-disabled .el-input__inner,
.el-select .el-input.is-disabled .el-select__caret {
    cursor: not-allowed
}

.el-select .el-input.is-focus .el-input__wrapper {
    box-shadow: 0 0 0 1px #606266 inset !important
}

.el-select__input {
    border: none;
    outline: 0;
    padding: 0;
    margin-left: 15px;
    color: #606266;
    font-size: var(--el-select-font-size);
    -webkit-appearance: none;
    appearance: none;
    height: 28px;
    background-color: transparent
}

.el-select__input.is-disabled {
    cursor: not-allowed
}

.el-select__input--iOS {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 6
}

.el-select__input.is-small {
    height: 14px
}

.el-select__close {
    cursor: pointer;
    position: absolute;
    top: 8px;
    z-index: var(--el-index-top);
    right: 25px;
    color: var(--el-select-input-color);
    line-height: 18px;
    font-size: var(--el-select-input-font-size)
}

.el-select__close:hover {
    color: var(--el-select-close-hover-color)
}

.el-select__tags {
    position: absolute;
    line-height: normal;
    top: 50%;
    transform: translateY(-50%);
    white-space: normal;
    z-index: var(--el-index-normal);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer
}

.el-select__tags .el-tag {
    box-sizing: border-box;
    border-color: transparent;
    margin: 2px 6px 2px 0
}

.el-select__tags .el-tag:last-child {
    margin-right: 0
}

.el-select__tags .el-tag .el-icon-close {
    background-color: var(--el-text-color-placeholder);
    right: -7px;
    top: 0;
    color: #fff
}

.el-select__tags .el-tag .el-icon-close:hover {
    background-color: var(--el-text-color-secondary)
}

.el-select__tags .el-tag .el-icon-close:before {
    display: block;
    transform: translateY(.5px)
}

.el-select__tags .el-tag--info {
    background-color: var(--el-fill-color)
}

.el-select__tags.is-disabled {
    cursor: not-allowed
}

.el-select__collapse-tags {
    white-space: normal;
    z-index: var(--el-index-normal);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer
}

.el-select__collapse-tags .el-tag {
    box-sizing: border-box;
    border-color: transparent;
    margin: 2px 6px 2px 0
}

.el-select__collapse-tags .el-tag:last-child {
    margin-right: 0
}

.el-select__collapse-tags .el-tag .el-icon-close {
    background-color: var(--el-text-color-placeholder);
    right: -7px;
    top: 0;
    color: #fff
}

.el-select__collapse-tags .el-tag .el-icon-close:hover {
    background-color: var(--el-text-color-secondary)
}

.el-select__collapse-tags .el-tag .el-icon-close:before {
    display: block;
    transform: translateY(.5px)
}

.el-select__collapse-tags .el-tag--info {
    background-color: var(--el-fill-color)
}

.el-select__collapse-tag {
    line-height: inherit;
    height: inherit;
    display: flex
}

.el-button {
    --el-button-font-weight: var(--el-font-weight-primary);
    --el-button-border-color: var(--el-border-color);
    --el-button-bg-color: var(--el-fill-color-blank);
    --el-button-text-color: var(--el-text-color-regular);
    --el-button-disabled-text-color: var(--el-disabled-text-color);
    --el-button-disabled-bg-color: var(--el-fill-color-blank);
    --el-button-disabled-border-color: var(--el-border-color-light);
    --el-button-divide-border-color: rgba(255, 255, 255, .5);
    --el-button-hover-text-color: var(--el-color-primary);
    --el-button-hover-bg-color: var(--el-color-primary-light-9);
    --el-button-hover-border-color: var(--el-color-primary-light-7);
    --el-button-active-text-color: var(--el-button-hover-text-color);
    --el-button-active-border-color: var(--el-color-primary);
    --el-button-active-bg-color: var(--el-button-hover-bg-color);
    --el-button-outline-color: var(--el-color-primary-light-5);
    --el-button-hover-link-text-color: var(--el-color-info);
    --el-button-active-color: var(--el-text-color-primary)
}

.el-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 32px;
    white-space: nowrap;
    cursor: pointer;
    color: var(--el-button-text-color);
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    transition: .1s;
    font-weight: var(--el-button-font-weight);
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    -webkit-appearance: none;
    background-color: var(--el-button-bg-color);
    border: var(--el-border);
    border-color: var(--el-button-border-color);
    padding: 8px 15px;
    font-size: var(--el-font-size-base);
    border-radius: var(--el-border-radius-base)
}

.el-button:focus,
.el-button:hover {
    color: #000;
    border-color: #c0c4cc;
    background-color: var(--el-button-hover-bg-color);
    outline: 0
}

.el-button:active {
    color: #000;
    border-color: #c0c4cc;
    background-color: var(--el-button-active-bg-color);
    outline: 0
}

.el-button:focus-visible {
    outline: 2px solid var(--el-button-outline-color);
    outline-offset: 1px
}

.el-button>span {
    display: inline-flex;
    align-items: center
}

.el-button.is-round {
    padding: 8px 15px
}

.el-button::-moz-focus-inner {
    border: 0
}

.el-button [class*=el-icon]+span {
    margin-left: 6px
}

.el-button [class*=el-icon] svg {
    vertical-align: bottom
}

.el-button.is-plain {
    --el-button-hover-text-color: var(--el-color-primary);
    --el-button-hover-bg-color: var(--el-fill-color-blank);
    --el-button-hover-border-color: var(--el-color-primary)
}

.el-button.is-active {
    color: var(--el-button-active-text-color);
    border-color: var(--el-button-active-border-color);
    background-color: var(--el-button-active-bg-color);
    outline: 0
}

.el-button.is-disabled,
.el-button.is-disabled:focus,
.el-button.is-disabled:hover {
    color: var(--el-button-disabled-text-color);
    cursor: not-allowed;
    background-image: none;
    background-color: var(--el-button-disabled-bg-color);
    border-color: var(--el-button-disabled-border-color)
}

.el-button.is-loading {
    position: relative;
    pointer-events: none
}

.el-button.is-loading:before {
    z-index: 1;
    pointer-events: none;
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background-color: var(--el-mask-color-extra-light)
}

.el-button.is-round {
    border-radius: var(--el-border-radius-round)
}

.el-button.is-circle {
    border-radius: 50%;
    padding: 8px
}

.el-button.is-text {
    color: var(--el-button-text-color);
    border: 0 solid transparent;
    background-color: transparent
}

.el-button.is-text.is-disabled {
    color: var(--el-button-disabled-text-color);
    background-color: transparent !important
}

.el-button.is-text:not(.is-disabled):focus,
.el-button.is-text:not(.is-disabled):hover {
    background-color: var(--el-fill-color-light)
}

.el-button.is-text:not(.is-disabled):focus-visible {
    outline: 2px solid var(--el-button-outline-color);
    outline-offset: 1px
}

.el-button.is-text:not(.is-disabled):active {
    background-color: var(--el-fill-color)
}

.el-button.is-text:not(.is-disabled).is-has-bg {
    background-color: var(--el-fill-color-light)
}

.el-button.is-text:not(.is-disabled).is-has-bg:focus,
.el-button.is-text:not(.is-disabled).is-has-bg:hover {
    background-color: var(--el-fill-color)
}

.el-button.is-text:not(.is-disabled).is-has-bg:active {
    background-color: var(--el-fill-color-dark)
}

.el-button__text--expand {
    letter-spacing: .3em;
    margin-right: -.3em
}

.el-button.is-link {
    border-color: transparent;
    color: var(--el-button-text-color);
    background: 0 0;
    padding: 2px;
    height: auto
}

.el-button.is-link:focus,
.el-button.is-link:hover {
    color: var(--el-button-hover-link-text-color)
}

.el-button.is-link.is-disabled {
    color: var(--el-button-disabled-text-color);
    background-color: transparent !important;
    border-color: transparent !important
}

.el-button.is-link:not(.is-disabled):focus,
.el-button.is-link:not(.is-disabled):hover {
    border-color: transparent;
    background-color: transparent
}

.el-button.is-link:not(.is-disabled):active {
    color: var(--el-button-active-color);
    border-color: transparent;
    background-color: transparent
}

.el-button--text {
    border-color: transparent;
    background: 0 0;
    color: var(--el-color-primary);
    padding-left: 0;
    padding-right: 0
}

.el-button--text.is-disabled {
    color: var(--el-button-disabled-text-color);
    background-color: transparent !important;
    border-color: transparent !important
}

.el-button--text:not(.is-disabled):focus,
.el-button--text:not(.is-disabled):hover {
    color: var(--el-color-primary-light-3);
    border-color: transparent;
    background-color: transparent
}

.el-button--text:not(.is-disabled):active {
    color: var(--el-color-primary-dark-2);
    border-color: transparent;
    background-color: transparent
}

.el-button__link--expand {
    letter-spacing: .3em;
    margin-right: -.3em
}

.el-button--primary {
    --el-button-text-color: var(--el-color-white);
    --el-button-bg-color: var(--el-color-primary);
    --el-button-border-color: var(--el-color-primary);
    --el-button-outline-color: var(--el-color-primary-light-5);
    --el-button-active-color: var(--el-color-primary-dark-2);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-link-text-color: var(--el-color-primary-light-5);
    --el-button-hover-bg-color: var(--el-color-primary-light-3);
    --el-button-hover-border-color: var(--el-color-primary-light-3);
    --el-button-active-bg-color: var(--el-color-primary-dark-2);
    --el-button-active-border-color: var(--el-color-primary-dark-2);
    --el-button-disabled-text-color: var(--el-color-white);
    --el-button-disabled-bg-color: var(--el-color-primary-light-5);
    --el-button-disabled-border-color: var(--el-color-primary-light-5)
}

.el-button--primary.is-link,
.el-button--primary.is-plain,
.el-button--primary.is-text {
    --el-button-text-color: var(--el-color-primary);
    --el-button-bg-color: var(--el-color-primary-light-9);
    --el-button-border-color: var(--el-color-primary-light-5);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-bg-color: var(--el-color-primary);
    --el-button-hover-border-color: var(--el-color-primary);
    --el-button-active-text-color: var(--el-color-white)
}

.el-button--primary.is-link.is-disabled,
.el-button--primary.is-link.is-disabled:active,
.el-button--primary.is-link.is-disabled:focus,
.el-button--primary.is-link.is-disabled:hover,
.el-button--primary.is-plain.is-disabled,
.el-button--primary.is-plain.is-disabled:active,
.el-button--primary.is-plain.is-disabled:focus,
.el-button--primary.is-plain.is-disabled:hover,
.el-button--primary.is-text.is-disabled,
.el-button--primary.is-text.is-disabled:active,
.el-button--primary.is-text.is-disabled:focus,
.el-button--primary.is-text.is-disabled:hover {
    color: var(--el-color-primary-light-5);
    background-color: var(--el-color-primary-light-9);
    border-color: var(--el-color-primary-light-8)
}

.el-button--success {
    --el-button-text-color: var(--el-color-white);
    --el-button-bg-color: var(--el-color-success);
    --el-button-border-color: var(--el-color-success);
    --el-button-outline-color: var(--el-color-success-light-5);
    --el-button-active-color: var(--el-color-success-dark-2);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-link-text-color: var(--el-color-success-light-5);
    --el-button-hover-bg-color: var(--el-color-success-light-3);
    --el-button-hover-border-color: var(--el-color-success-light-3);
    --el-button-active-bg-color: var(--el-color-success-dark-2);
    --el-button-active-border-color: var(--el-color-success-dark-2);
    --el-button-disabled-text-color: var(--el-color-white);
    --el-button-disabled-bg-color: var(--el-color-success-light-5);
    --el-button-disabled-border-color: var(--el-color-success-light-5)
}

.el-button--success.is-link,
.el-button--success.is-plain,
.el-button--success.is-text {
    --el-button-text-color: var(--el-color-success);
    --el-button-bg-color: var(--el-color-success-light-9);
    --el-button-border-color: var(--el-color-success-light-5);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-bg-color: var(--el-color-success);
    --el-button-hover-border-color: var(--el-color-success);
    --el-button-active-text-color: var(--el-color-white)
}

.el-button--success.is-link.is-disabled,
.el-button--success.is-link.is-disabled:active,
.el-button--success.is-link.is-disabled:focus,
.el-button--success.is-link.is-disabled:hover,
.el-button--success.is-plain.is-disabled,
.el-button--success.is-plain.is-disabled:active,
.el-button--success.is-plain.is-disabled:focus,
.el-button--success.is-plain.is-disabled:hover,
.el-button--success.is-text.is-disabled,
.el-button--success.is-text.is-disabled:active,
.el-button--success.is-text.is-disabled:focus,
.el-button--success.is-text.is-disabled:hover {
    color: var(--el-color-success-light-5);
    background-color: var(--el-color-success-light-9);
    border-color: var(--el-color-success-light-8)
}

.el-button--warning {
    --el-button-text-color: var(--el-color-white);
    --el-button-bg-color: var(--el-color-warning);
    --el-button-border-color: var(--el-color-warning);
    --el-button-outline-color: var(--el-color-warning-light-5);
    --el-button-active-color: var(--el-color-warning-dark-2);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-link-text-color: var(--el-color-warning-light-5);
    --el-button-hover-bg-color: var(--el-color-warning-light-3);
    --el-button-hover-border-color: var(--el-color-warning-light-3);
    --el-button-active-bg-color: var(--el-color-warning-dark-2);
    --el-button-active-border-color: var(--el-color-warning-dark-2);
    --el-button-disabled-text-color: var(--el-color-white);
    --el-button-disabled-bg-color: var(--el-color-warning-light-5);
    --el-button-disabled-border-color: var(--el-color-warning-light-5)
}

.el-button--warning.is-link,
.el-button--warning.is-plain,
.el-button--warning.is-text {
    --el-button-text-color: var(--el-color-warning);
    --el-button-bg-color: var(--el-color-warning-light-9);
    --el-button-border-color: var(--el-color-warning-light-5);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-bg-color: var(--el-color-warning);
    --el-button-hover-border-color: var(--el-color-warning);
    --el-button-active-text-color: var(--el-color-white)
}

.el-button--warning.is-link.is-disabled,
.el-button--warning.is-link.is-disabled:active,
.el-button--warning.is-link.is-disabled:focus,
.el-button--warning.is-link.is-disabled:hover,
.el-button--warning.is-plain.is-disabled,
.el-button--warning.is-plain.is-disabled:active,
.el-button--warning.is-plain.is-disabled:focus,
.el-button--warning.is-plain.is-disabled:hover,
.el-button--warning.is-text.is-disabled,
.el-button--warning.is-text.is-disabled:active,
.el-button--warning.is-text.is-disabled:focus,
.el-button--warning.is-text.is-disabled:hover {
    color: var(--el-color-warning-light-5);
    background-color: var(--el-color-warning-light-9);
    border-color: var(--el-color-warning-light-8)
}

.el-button--danger {
    --el-button-text-color: var(--el-color-white);
    --el-button-bg-color: var(--el-color-danger);
    --el-button-border-color: var(--el-color-danger);
    --el-button-outline-color: var(--el-color-danger-light-5);
    --el-button-active-color: var(--el-color-danger-dark-2);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-link-text-color: var(--el-color-danger-light-5);
    --el-button-hover-bg-color: var(--el-color-danger-light-3);
    --el-button-hover-border-color: var(--el-color-danger-light-3);
    --el-button-active-bg-color: var(--el-color-danger-dark-2);
    --el-button-active-border-color: var(--el-color-danger-dark-2);
    --el-button-disabled-text-color: var(--el-color-white);
    --el-button-disabled-bg-color: var(--el-color-danger-light-5);
    --el-button-disabled-border-color: var(--el-color-danger-light-5)
}

.el-button--danger.is-link,
.el-button--danger.is-plain,
.el-button--danger.is-text {
    --el-button-text-color: var(--el-color-danger);
    --el-button-bg-color: var(--el-color-danger-light-9);
    --el-button-border-color: var(--el-color-danger-light-5);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-bg-color: var(--el-color-danger);
    --el-button-hover-border-color: var(--el-color-danger);
    --el-button-active-text-color: var(--el-color-white)
}

.el-button--danger.is-link.is-disabled,
.el-button--danger.is-link.is-disabled:active,
.el-button--danger.is-link.is-disabled:focus,
.el-button--danger.is-link.is-disabled:hover,
.el-button--danger.is-plain.is-disabled,
.el-button--danger.is-plain.is-disabled:active,
.el-button--danger.is-plain.is-disabled:focus,
.el-button--danger.is-plain.is-disabled:hover,
.el-button--danger.is-text.is-disabled,
.el-button--danger.is-text.is-disabled:active,
.el-button--danger.is-text.is-disabled:focus,
.el-button--danger.is-text.is-disabled:hover {
    color: var(--el-color-danger-light-5);
    background-color: var(--el-color-danger-light-9);
    border-color: var(--el-color-danger-light-8)
}

.el-button--info {
    --el-button-text-color: var(--el-color-white);
    --el-button-bg-color: var(--el-color-info);
    --el-button-border-color: var(--el-color-info);
    --el-button-outline-color: var(--el-color-info-light-5);
    --el-button-active-color: var(--el-color-info-dark-2);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-link-text-color: var(--el-color-info-light-5);
    --el-button-hover-bg-color: var(--el-color-info-light-3);
    --el-button-hover-border-color: var(--el-color-info-light-3);
    --el-button-active-bg-color: var(--el-color-info-dark-2);
    --el-button-active-border-color: var(--el-color-info-dark-2);
    --el-button-disabled-text-color: var(--el-color-white);
    --el-button-disabled-bg-color: var(--el-color-info-light-5);
    --el-button-disabled-border-color: var(--el-color-info-light-5)
}

.el-button--info.is-link,
.el-button--info.is-plain,
.el-button--info.is-text {
    --el-button-text-color: var(--el-color-info);
    --el-button-bg-color: var(--el-color-info-light-9);
    --el-button-border-color: var(--el-color-info-light-5);
    --el-button-hover-text-color: var(--el-color-white);
    --el-button-hover-bg-color: var(--el-color-info);
    --el-button-hover-border-color: var(--el-color-info);
    --el-button-active-text-color: var(--el-color-white)
}

.el-button--info.is-link.is-disabled,
.el-button--info.is-link.is-disabled:active,
.el-button--info.is-link.is-disabled:focus,
.el-button--info.is-link.is-disabled:hover,
.el-button--info.is-plain.is-disabled,
.el-button--info.is-plain.is-disabled:active,
.el-button--info.is-plain.is-disabled:focus,
.el-button--info.is-plain.is-disabled:hover,
.el-button--info.is-text.is-disabled,
.el-button--info.is-text.is-disabled:active,
.el-button--info.is-text.is-disabled:focus,
.el-button--info.is-text.is-disabled:hover {
    color: var(--el-color-info-light-5);
    background-color: var(--el-color-info-light-9);
    border-color: var(--el-color-info-light-8)
}

.el-button--large {
    --el-button-size: 40px;
    height: var(--el-button-size);
    padding: 12px 19px;
    font-size: var(--el-font-size-base);
    border-radius: var(--el-border-radius-base)
}

.el-button--large [class*=el-icon]+span {
    margin-left: 8px
}

.el-button--large.is-round {
    padding: 12px 19px
}

.el-button--large.is-circle {
    width: var(--el-button-size);
    padding: 12px
}

.el-button--small {
    --el-button-size: 24px;
    height: var(--el-button-size);
    padding: 5px 11px;
    font-size: 12px;
    border-radius: calc(var(--el-border-radius-base) - 1px)
}

.el-button--small [class*=el-icon]+span {
    margin-left: 4px
}

.el-button--small.is-round {
    padding: 5px 11px
}

.el-button--small.is-circle {
    width: var(--el-button-size);
    padding: 5px
}

.upload-img-container .upload-progress {
    position: absolute;
    z-index: 2;
    bottom: 3px;
    left: 2px;
    width: calc(100% - 4px);
    height: 4px;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
    background: rgba(0, 128, 0, .7)
}

.upload-img-container .upload-progress.fail {
    background: rgba(255, 0, 0, .7)
}

@-webkit-keyframes loading-line {
    0% {
        stroke: #999;
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes loading-line {
    0% {
        stroke: #999;
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.upload-img-container .thumbnail-wrapper {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed #dcdcdc
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .upload-img-container .thumbnail-wrapper {
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .upload-img-container .thumbnail-wrapper {
        border-radius: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .upload-img-container .thumbnail-wrapper {
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .upload-img-container .thumbnail-wrapper {
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .upload-img-container .thumbnail-wrapper {
        border-radius: 5px
    }
}

.upload-img-container .thumbnail-wrapper .thumbnail {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .upload-img-container .thumbnail-wrapper .thumbnail {
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .upload-img-container .thumbnail-wrapper .thumbnail {
        border-radius: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .upload-img-container .thumbnail-wrapper .thumbnail {
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .upload-img-container .thumbnail-wrapper .thumbnail {
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .upload-img-container .thumbnail-wrapper .thumbnail {
        border-radius: 5px
    }
}

.upload-img-container .hover-wrapper {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .upload-img-container .hover-wrapper {
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .upload-img-container .hover-wrapper {
        border-radius: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .upload-img-container .hover-wrapper {
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .upload-img-container .hover-wrapper {
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .upload-img-container .hover-wrapper {
        border-radius: 5px
    }
}

.upload-img-container .hover-wrapper p {
    color: #fff
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .upload-img-container .hover-wrapper p {
        font-size: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .upload-img-container .hover-wrapper p {
        font-size: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .upload-img-container .hover-wrapper p {
        font-size: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .upload-img-container .hover-wrapper p {
        font-size: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .upload-img-container .hover-wrapper p {
        font-size: 8px
    }
}

.upload-img-container:hover .hover-wrapper {
    opacity: 1
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
    background-color: #fff;
    border: 2px dashed #dcdcdc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
        width: 298px;
        height: 298px;
        border-radius: 26px;
        margin-right: 10px;
        margin-left: 10px;
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
        width: 140px;
        height: 140px;
        border-radius: 12px;
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
        width: 184px;
        height: 184px;
        border-radius: 10px;
        margin-right: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
        width: 150px;
        height: 150px;
        border-radius: 8px;
        margin-right: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn {
        width: 88px;
        height: 88px;
        border-radius: 5px;
        margin-right: 5px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-icon {
        width: 64px;
        height: 64px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-icon {
        width: 30px;
        height: 30px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-icon {
        width: 25px;
        height: 25px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-icon {
        width: 20px;
        height: 20px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-icon {
        width: 12px;
        height: 12px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-text {
        font-size: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-text {
        font-size: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-text {
        font-size: 13px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-text {
        font-size: 11px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn .add-text {
        font-size: 6px
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn:hover {
    border-color: #000
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
    position: absolute;
    display: flex;
    align-items: center;
    cursor: pointer
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
        bottom: 43px;
        right: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
        bottom: 20px;
        right: 16px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
        bottom: 27px;
        right: 27px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
        bottom: 22px;
        right: 22px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn {
        bottom: 13px;
        right: 13px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-icon {
        width: 51px;
        height: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-icon {
        width: 24px;
        height: 24px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-icon {
        width: 20px;
        height: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-icon {
        width: 16px;
        height: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-icon {
        width: 10px;
        height: 10px
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
    color: #e23220
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
        font-size: 34px;
        margin-left: 9px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
        font-size: 16px;
        margin-left: 4px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
        font-size: 12px;
        margin-left: 3px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
        font-size: 10px;
        margin-left: 3px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .delete-btn .delete-text {
        font-size: 6px;
        margin-left: 2px
    }
}

#upload-page .upload-wrapper .form-part .add-btn {
    display: flex;
    align-items: center;
    cursor: pointer
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn {
        margin-top: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .add-btn {
        margin-top: 24px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .add-btn {
        margin-top: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .add-btn {
        margin-top: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn {
        margin-top: 10px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-icon {
        width: 51px;
        height: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-icon {
        width: 24px;
        height: 24px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-icon {
        width: 20px;
        height: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-icon {
        width: 16px;
        height: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-icon {
        width: 10px;
        height: 10px
    }
}

#upload-page .upload-wrapper .form-part .add-btn .add-text {
    color: #000000f2
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-text {
        font-size: 34px;
        margin-left: 9px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-text {
        font-size: 16px;
        margin-left: 4px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-text {
        font-size: 15px;
        margin-left: 7px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-text {
        font-size: 12px;
        margin-left: 5px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .add-btn .add-text {
        font-size: 7px;
        margin-left: 3px
    }
}


@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        margin-top: 34px;
        padding: 43px 34px;
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        margin-top: 16px;
        padding: 20px 16px;
        border-radius: 12px
    }
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper.mo {
    display: none;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper.mo {
        display: block;
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper.mo {
        display: block;
    }
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper {
    background-color: #fff
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper {
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper {
        border-radius: 12px
    }
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .item-name .red {
    color: red
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container {
        margin-top: 17px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container {
        margin-top: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input {
        height: 111px;
        font-size: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input {
        height: 52px;
        font-size: 16px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input .el-input__wrapper {
        border-radius: 26px;
        padding: 0 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input .el-input__wrapper {
        border-radius: 12px;
        padding: 0 16px
    }
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-select {
    width: 100%
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .other-device-text {
        margin-top: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .other-device-text {
        margin-top: 16px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .other-device {
        margin-top: 17px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .other-device {
        margin-top: 8px
    }
}

#id-rewards-list .title {
    font-weight: 400;
    letter-spacing: .02em;
    color: #000000bf
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-rewards-list .title {
        width: 596px;
        margin-top: 77px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-rewards-list .title {
        width: 280px;
        margin-top: 36px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-rewards-list .title {
        margin-top: 54px;
        margin-bottom: 27px;
        font-size: 15px;
        line-height: 22px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-rewards-list .title {
        margin-top: 44px;
        margin-bottom: 22px;
        font-size: 12px;
        line-height: 18px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-rewards-list .title {
        margin-top: 26px;
        margin-bottom: 13px;
        font-size: 7px;
        line-height: 10px
    }
}

@media (orientation: landscape),
(min-width: 1024px) {
    #id-rewards-list .grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        place-items: center
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-rewards-list .grid-container {
        grid-gap: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-rewards-list .grid-container {
        grid-gap: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-rewards-list .grid-container {
        grid-gap: 5px
    }
}

@media (orientation: landscape),
(min-width: 1024px) {
    #id-rewards-list .flex-container {
        display: flex;
        justify-content: center;
        align-items: center
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-rewards-list .qr-code {
        width: 184px;
        height: 184px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-rewards-list .qr-code {
        width: 150px;
        height: 150px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-rewards-list .qr-code {
        width: 88px;
        height: 88px
    }
}

#id-rewards-list .code {
    font-style: normal;
    font-weight: 400
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-rewards-list .code {
        margin-top: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-rewards-list .code {
        margin-top: 12px
    }
}

@media (orientation: landscape),
(min-width: 1024px) {
    #id-rewards-list .code {
        letter-spacing: .02em
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-rewards-list .code {
        font-size: 12px;
        line-height: 18px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-rewards-list .code {
        font-size: 10px;
        line-height: 15px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-rewards-list .code {
        font-size: 6px;
        line-height: 9px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-rewards-list .code {
        width: 280px;
        display: flex;
        flex-wrap: wrap
    }
}

#id-rewards-list .link-btn {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-rewards-list .link-btn {
        font-size: 12px;
        line-height: 18px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-rewards-list .link-btn {
        font-size: 10px;
        line-height: 15px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-rewards-list .link-btn {
        font-size: 6px;
        line-height: 9px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-rewards-list .link-btn {
        width: 280px;
        height: 44px;
        border-radius: 36px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-selections {
        margin-top: 24px
    }
}

#id-selections div {
    display: flex;
    --el-select-input-focus-border-color: #000
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-selections div {
        --el-select-input-focus-border-color: #fff;
        --el-select-border-color-hover: #fff
    }
}

#id-selections div .el-input {
    --el-input-focus-border-color: #000;
    --el-input-focus-border: #000
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-selections div .el-input {
        width: 184px;
        height: 44px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-selections div .el-input {
        width: 150px;
        height: 36px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-selections div .el-input {
        width: 88px;
        height: 21px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-selections div .el-input {
        width: 104px;
        height: 34px;
        --el-input-focus-border-color: #fff;
        --el-input-focus-border: #fff;
        box-shadow: none !important
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-selections div .el-input.is_focus {
        border: #000 1px solid !important
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-selections div .el-input.is_focus {
        border: #000 1px solid !important
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-selections div .el-input.is_focus {
        border: #000 0px solid !important
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-selections div .el-input .el-input__wrapper {
        width: 151px !important;
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-selections div .el-input .el-input__wrapper {
        width: 123px !important;
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-selections div .el-input .el-input__wrapper {
        width: 72px !important;
        border-radius: 5px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-selections div .el-input .el-input__wrapper {
        border-radius: 12px;
        border-color: #fff !important;
        box-shadow: none !important
    }
}

.el-badge {
    --el-badge-bg-color: var(--el-color-danger);
    --el-badge-radius: 10px;
    --el-badge-font-size: 12px;
    --el-badge-padding: 6px;
    --el-badge-size: 18px;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content
}

.el-badge__content {
    background-color: var(--el-badge-bg-color);
    border-radius: var(--el-badge-radius);
    color: var(--el-color-white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: var(--el-badge-font-size);
    height: var(--el-badge-size);
    padding: 0 var(--el-badge-padding);
    white-space: nowrap;
    border: 1px solid var(--el-bg-color)
}

.el-badge__content.is-fixed {
    position: absolute;
    top: 0;
    right: calc(1px + var(--el-badge-size)/ 2);
    transform: translateY(-50%) translate(100%);
    z-index: var(--el-index-normal)
}

.el-badge__content.is-fixed.is-dot {
    right: 5px
}

.el-badge__content.is-dot {
    height: 8px;
    width: 8px;
    padding: 0;
    right: 0;
    border-radius: 50%
}

.el-badge__content--primary {
    background-color: var(--el-color-primary)
}

.el-badge__content--success {
    background-color: var(--el-color-success)
}

.el-badge__content--warning {
    background-color: var(--el-color-warning)
}

.el-badge__content--info {
    background-color: var(--el-color-info)
}

.el-badge__content--danger {
    background-color: var(--el-color-danger)
}

.el-message {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-border-color-lighter);
    --el-message-padding: 15px 19px;
    --el-message-close-size: 16px;
    --el-message-close-icon-color: var(--el-text-color-placeholder);
    --el-message-close-hover-color: var(--el-text-color-secondary)
}

.el-message {
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
    border-radius: var(--el-border-radius-base);
    border-width: var(--el-border-width);
    border-style: var(--el-border-style);
    border-color: var(--el-message-border-color);
    position: fixed;
    left: 50%;
    top: 20px;
    transform: translate(-50%);
    background-color: var(--el-message-bg-color);
    transition: opacity var(--el-transition-duration), transform .4s, top .4s;
    padding: var(--el-message-padding);
    display: flex;
    align-items: center
}

.el-message--success {
    --el-message-bg-color: var(--el-color-success-light-9);
    --el-message-border-color: var(--el-color-success-light-8);
    --el-message-text-color: var(--el-color-success)
}

.el-message--info {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-color-info-light-8);
    --el-message-text-color: var(--el-color-info)
}

.el-message--warning {
    --el-message-bg-color: var(--el-color-warning-light-9);
    --el-message-border-color: var(--el-color-warning-light-8);
    --el-message-text-color: var(--el-color-warning)
}

.el-message--error {
    --el-message-bg-color: var(--el-color-error-light-9);
    --el-message-border-color: var(--el-color-error-light-8);
    --el-message-text-color: var(--el-color-error)
}

.el-message .el-message__closeBtn {
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--el-message-close-icon-color);
    font-size: var(--el-message-close-size)
}

.el-message-fade-enter-from,
.el-message-fade-leave-to {
    opacity: 0;
    transform: translate(-50%, -100%)
}

@media (min-width: 650px) and (max-width: 1023px) {
    #id-edit-img {
        background: #fff
    }

    #id-edit-img #id-edit-img-inside {
        position: relative;
        top: 50px
    }
}

#id-edit-img .title {
    font-weight: 400;
    letter-spacing: .02em;
    color: #0000004d;
    flex: none;
    order: 0;
    flex-grow: 0
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-img .title {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 5px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-img .title {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 4px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-img .title {
        font-size: 7px;
        line-height: 10px;
        margin-bottom: 2px
    }
}

#id-edit-img .content {
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: .02em;
    color: #000000bf;
    flex: none;
    order: 1;
    flex-grow: 0
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-img .content {
        font-size: 15px;
        line-height: 22px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-img .content {
        font-size: 12px;
        line-height: 18px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-img .content {
        font-size: 7px;
        line-height: 10px
    }
}

#id-edit-img .btn-bg {
    background: rgba(0, 0, 0, .5)
}

#id-profile {
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    align-items: center
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile {
        padding-bottom: 153px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile {
        padding-bottom: 124px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile {
        padding-bottom: 73px
    }
}

#id-profile .exit-btn {
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    border-bottom: 1px solid #000;
    cursor: pointer
}

#id-profile .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .container {
        margin-top: 102px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .container {
        margin-top: 48px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container {
        margin-top: 74px;
        width: 1046px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container {
        margin-top: 60px;
        width: 852px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container {
        margin-top: 35px;
        width: 499px
    }
}

#id-profile .container .message-container {
    display: flex;
    justify-content: space-between
}

#id-profile .container .message-container .right-container {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: initial
}

#id-profile .container .message-container .right-container div .name {
    text-align: center;
    font-weight: 500;
    letter-spacing: .02em;
    color: #000000f2
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .name {
        font-size: 51px;
        line-height: 68px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .container .message-container .right-container div .name {
        font-size: 24px;
        line-height: 32px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .message-container .right-container div .name {
        font-size: 27px;
        line-height: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .message-container .right-container div .name {
        font-size: 22px;
        line-height: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .name {
        font-size: 13px;
        line-height: 16px
    }
}

#id-profile .container .message-container .right-container div .phone {
    text-align: center;
    font-weight: 400;
    letter-spacing: .02em;
    color: #000000bf
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .phone {
        margin-top: 9px;
        font-size: 26px;
        line-height: 38px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .container .message-container .right-container div .phone {
        margin-top: 4px;
        font-size: 12px;
        line-height: 18px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .message-container .right-container div .phone {
        margin-top: 7px;
        font-size: 13px;
        line-height: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .message-container .right-container div .phone {
        margin-top: 5px;
        font-size: 11px;
        line-height: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .phone {
        margin-top: 3px;
        font-size: 6px;
        line-height: 10px
    }
}

#id-profile .container .message-container .right-container div .mail {
    text-align: center;
    font-weight: 400;
    display: flex;
    align-items: center;
    letter-spacing: .02em;
    color: #0000004d
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .mail {
        font-size: 26px;
        line-height: 38px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .container .message-container .right-container div .mail {
        font-size: 12px;
        line-height: 18px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .message-container .right-container div .mail {
        font-size: 13px;
        line-height: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .message-container .right-container div .mail {
        font-size: 11px;
        line-height: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container div .mail {
        font-size: 6px;
        line-height: 10px
    }
}

#id-profile .container .message-container .right-container .edit {
    font-weight: 500;
    justify-content: center;
    align-items: center;
    letter-spacing: .02em
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .message-container .right-container .edit {
        font-size: 12px;
        line-height: 18px;
        width: 64px;
        height: 37px;
        border: 1px solid #dcdcdc;
        border-radius: 30px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .message-container .right-container .edit {
        font-size: 10px;
        line-height: 15px;
        width: 52px;
        height: 30px;
        border: 1px solid #dcdcdc;
        border-radius: 25px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .message-container .right-container .edit {
        font-size: 6px;
        line-height: 9px;
        width: 30px;
        height: 18px;
        border: 0px solid #dcdcdc;
        border-radius: 14px
    }
}

#id-profile .container .middle {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    letter-spacing: .02em;
    color: #0000008c
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .container .middle {
        margin-top: 102px;
        width: 682px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .container .middle {
        margin-top: 48px;
        width: 320px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .middle {
        width: 1046px;
        margin-top: 81px;
        height: 29px;
        font-size: 15px;
        line-height: 22px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .middle {
        width: 852px;
        margin-top: 66px;
        height: 23px;
        font-size: 12px;
        line-height: 18px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .middle {
        width: 499px;
        margin-top: 39px;
        height: 14px;
        font-size: 7px;
        line-height: 10px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-profile .container .middle {
        flex-direction: column
    }
}

#id-profile .container .middle .left {
    display: flex;
    justify-content: space-between
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-profile .container .middle .left {
        width: 148px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-profile .container .middle .left {
        width: 120px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-profile .container .middle .left {
        width: 70px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-profile .container .middle .switcher {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: .5px
    }
}

#id-profile .container .middle .active {
    color: #000
}

@media (orientation: landscape),
(min-width: 1024px) {
    #id-profile .container .middle .active {
        border-bottom: 1px rgba(0, 0, 0, .95) solid
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-profile .el-input--default {
        width: 320px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-profile .el-input--default {
        width: 150px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-profile .el-input--default .el-input__wrapper {
        padding: 0
    }
}

#id-profile .el-tag {
    opacity: 0
}

:root {
    --el-color-white: #ffffff;
    --el-color-black: #000000;
    --el-color-primary-rgb: 64, 158, 255;
    --el-color-success-rgb: 103, 194, 58;
    --el-color-warning-rgb: 230, 162, 60;
    --el-color-danger-rgb: 245, 108, 108;
    --el-color-error-rgb: 245, 108, 108;
    --el-color-info-rgb: 144, 147, 153;
    --el-font-size-extra-large: 20px;
    --el-font-size-large: 18px;
    --el-font-size-medium: 16px;
    --el-font-size-base: 14px;
    --el-font-size-small: 13px;
    --el-font-size-extra-small: 12px;
    --el-font-family: myFontRegular;
    --el-font-weight-primary: 500;
    --el-font-line-height-primary: 24px;
    --el-index-normal: 1;
    --el-index-top: 1000;
    --el-index-popper: 2000;
    --el-border-radius-base: 4px;
    --el-border-radius-small: 2px;
    --el-border-radius-round: 20px;
    --el-border-radius-circle: 100%;
    --el-transition-duration: .3s;
    --el-transition-duration-fast: .2s;
    --el-transition-function-ease-in-out-bezier: cubic-bezier(.645, .045, .355, 1);
    --el-transition-function-fast-bezier: cubic-bezier(.23, 1, .32, 1);
    --el-transition-all: all var(--el-transition-duration) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-fade: opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-md-fade: transform var(--el-transition-duration) var(--el-transition-function-fast-bezier), opacity var(--el-transition-duration) var(--el-transition-function-fast-bezier);
    --el-transition-fade-linear: opacity var(--el-transition-duration-fast) linear;
    --el-transition-border: border-color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-box-shadow: box-shadow var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-transition-color: color var(--el-transition-duration-fast) var(--el-transition-function-ease-in-out-bezier);
    --el-component-size-large: 40px;
    --el-component-size: 32px;
    --el-component-size-small: 24px;
    color-scheme: light;
    --el-color-primary: #409eff;
    --el-color-primary-light-3: #79bbff;
    --el-color-primary-light-5: #a0cfff;
    --el-color-primary-light-7: #c6e2ff;
    --el-color-primary-light-8: #d9ecff;
    --el-color-primary-light-9: #ecf5ff;
    --el-color-primary-dark-2: #337ecc;
    --el-color-success: #67c23a;
    --el-color-success-light-3: #95d475;
    --el-color-success-light-5: #b3e19d;
    --el-color-success-light-7: #d1edc4;
    --el-color-success-light-8: #e1f3d8;
    --el-color-success-light-9: #f0f9eb;
    --el-color-success-dark-2: #529b2e;
    --el-color-warning: #e6a23c;
    --el-color-warning-light-3: #eebe77;
    --el-color-warning-light-5: #f3d19e;
    --el-color-warning-light-7: #f8e3c5;
    --el-color-warning-light-8: #faecd8;
    --el-color-warning-light-9: #fdf6ec;
    --el-color-warning-dark-2: #b88230;
    --el-color-danger: #f56c6c;
    --el-color-danger-light-3: #f89898;
    --el-color-danger-light-5: #fab6b6;
    --el-color-danger-light-7: #fcd3d3;
    --el-color-danger-light-8: #fde2e2;
    --el-color-danger-light-9: #fef0f0;
    --el-color-danger-dark-2: #c45656;
    --el-color-error: #f56c6c;
    --el-color-error-light-3: #f89898;
    --el-color-error-light-5: #fab6b6;
    --el-color-error-light-7: #fcd3d3;
    --el-color-error-light-8: #fde2e2;
    --el-color-error-light-9: #fef0f0;
    --el-color-error-dark-2: #c45656;
    --el-color-info: #909399;
    --el-color-info-light-3: #b1b3b8;
    --el-color-info-light-5: #c8c9cc;
    --el-color-info-light-7: #dedfe0;
    --el-color-info-light-8: #e9e9eb;
    --el-color-info-light-9: #f4f4f5;
    --el-color-info-dark-2: #73767a;
    --el-bg-color: #ffffff;
    --el-bg-color-page: #f2f3f5;
    --el-bg-color-overlay: #ffffff;
    --el-text-color-primary: #303133;
    --el-text-color-regular: #606266;
    --el-text-color-secondary: #909399;
    --el-text-color-placeholder: #a8abb2;
    --el-text-color-disabled: #c0c4cc;
    --el-border-color: #dcdfe6;
    --el-border-color-light: #e4e7ed;
    --el-border-color-lighter: #ebeef5;
    --el-border-color-extra-light: #f2f6fc;
    --el-border-color-dark: #d4d7de;
    --el-border-color-darker: #cdd0d6;
    --el-fill-color: #f0f2f5;
    --el-fill-color-light: #f5f7fa;
    --el-fill-color-lighter: #fafafa;
    --el-fill-color-extra-light: #fafcff;
    --el-fill-color-dark: #ebedf0;
    --el-fill-color-darker: #e6e8eb;
    --el-fill-color-blank: #ffffff;
    --el-box-shadow: 0px 12px 32px 4px rgba(0, 0, 0, .04), 0px 8px 20px rgba(0, 0, 0, .08);
    --el-box-shadow-light: 0px 0px 12px rgba(0, 0, 0, .12);
    --el-box-shadow-lighter: 0px 0px 6px rgba(0, 0, 0, .12);
    --el-box-shadow-dark: 0px 16px 48px 16px rgba(0, 0, 0, .08), 0px 12px 32px rgba(0, 0, 0, .12), 0px 8px 16px -8px rgba(0, 0, 0, .16);
    --el-disabled-bg-color: var(--el-fill-color-light);
    --el-disabled-text-color: var(--el-text-color-placeholder);
    --el-disabled-border-color: var(--el-border-color-light);
    --el-overlay-color: rgba(0, 0, 0, .8);
    --el-overlay-color-light: rgba(0, 0, 0, .7);
    --el-overlay-color-lighter: rgba(0, 0, 0, .5);
    --el-mask-color: rgba(255, 255, 255, .9);
    --el-mask-color-extra-light: rgba(255, 255, 255, .3);
    --el-border-width: 1px;
    --el-border-style: solid;
    --el-border-color-hover: var(--el-text-color-disabled);
    --el-border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
    --el-svg-monochrome-grey: var(--el-border-color)
}

.fade-in-linear-enter-active,
.fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear)
}

.fade-in-linear-enter-from,
.fade-in-linear-leave-to {
    opacity: 0
}

.el-fade-in-linear-enter-active,
.el-fade-in-linear-leave-active {
    transition: var(--el-transition-fade-linear)
}

.el-fade-in-linear-enter-from,
.el-fade-in-linear-leave-to {
    opacity: 0
}

.el-fade-in-enter-active,
.el-fade-in-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1)
}

.el-fade-in-enter-from,
.el-fade-in-leave-active {
    opacity: 0
}

.el-zoom-in-center-enter-active,
.el-zoom-in-center-leave-active {
    transition: all var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1)
}

.el-zoom-in-center-enter-from,
.el-zoom-in-center-leave-active {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.el-zoom-in-top-enter-active,
.el-zoom-in-top-leave-active {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    -webkit-transform-origin: center top;
    transform-origin: center top
}

.el-zoom-in-top-enter-active[data-popper-placement^=top],
.el-zoom-in-top-leave-active[data-popper-placement^=top] {
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

.el-zoom-in-top-enter-from,
.el-zoom-in-top-leave-active {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
}

.el-zoom-in-bottom-enter-active,
.el-zoom-in-bottom-leave-active {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    transition: var(--el-transition-md-fade);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

.el-zoom-in-bottom-enter-from,
.el-zoom-in-bottom-leave-active {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0)
}

.el-zoom-in-left-enter-active,
.el-zoom-in-left-leave-active {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    transition: var(--el-transition-md-fade);
    -webkit-transform-origin: top left;
    transform-origin: top left
}

.el-zoom-in-left-enter-from,
.el-zoom-in-left-leave-active {
    opacity: 0;
    -webkit-transform: scale(.45, .45);
    transform: scale(.45)
}

.collapse-transition {
    transition: var(--el-transition-duration) height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out
}

.el-collapse-transition-enter-active,
.el-collapse-transition-leave-active {
    transition: var(--el-transition-duration) max-height ease-in-out, var(--el-transition-duration) padding-top ease-in-out, var(--el-transition-duration) padding-bottom ease-in-out
}

.horizontal-collapse-transition {
    transition: var(--el-transition-duration) width ease-in-out, var(--el-transition-duration) padding-left ease-in-out, var(--el-transition-duration) padding-right ease-in-out
}

.el-list-enter-active,
.el-list-leave-active {
    transition: all 1s
}

.el-list-enter-from,
.el-list-leave-to {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px)
}

.el-list-leave-active {
    position: absolute !important
}

.el-opacity-transition {
    transition: opacity var(--el-transition-duration) cubic-bezier(.55, 0, .1, 1)
}

.el-icon-loading {
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite
}

.el-icon--right {
    margin-left: 5px
}

.el-icon--left {
    margin-right: 5px
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotate(360deg)
    }
}

.el-icon {
    --color: inherit;
    height: 1em;
    width: 1em;
    line-height: 1em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    fill: currentColor;
    color: var(--color);
    font-size: inherit
}

.el-icon.is-loading {
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite
}

.el-icon svg {
    height: 1em;
    width: 1em
}

.el-message {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-border-color-lighter);
    --el-message-padding: 15px 19px;
    --el-message-close-size: 16px;
    --el-message-close-icon-color: var(--el-text-color-placeholder);
    --el-message-close-hover-color: var(--el-text-color-secondary);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 32px);
    box-sizing: border-box;
    border-radius: var(--el-border-radius-base);
    border-width: var(--el-border-width);
    border-style: var(--el-border-style);
    border-color: var(--el-message-border-color);
    position: fixed;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: var(--el-message-bg-color);
    transition: opacity var(--el-transition-duration), top .4s, -webkit-transform .4s;
    transition: opacity var(--el-transition-duration), transform .4s, top .4s;
    transition: opacity var(--el-transition-duration), transform .4s, top .4s, -webkit-transform .4s;
    padding: var(--el-message-padding);
    display: flex;
    align-items: center
}

.el-message.is-center {
    justify-content: center
}

.el-message.is-closable .el-message__content {
    padding-right: 31px
}

.el-message p {
    margin: 0
}

.el-message--success {
    --el-message-bg-color: var(--el-color-success-light-9);
    --el-message-border-color: var(--el-color-success-light-8);
    --el-message-text-color: var(--el-color-success)
}

.el-message--success .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: anywhere
}

.el-message .el-message-icon--success {
    color: var(--el-message-text-color)
}

.el-message--info {
    --el-message-bg-color: var(--el-color-info-light-9);
    --el-message-border-color: var(--el-color-info-light-8);
    --el-message-text-color: var(--el-color-info)
}

.el-message--info .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: anywhere
}

.el-message .el-message-icon--info {
    color: var(--el-message-text-color)
}

.el-message--warning {
    --el-message-bg-color: var(--el-color-warning-light-9);
    --el-message-border-color: var(--el-color-warning-light-8);
    --el-message-text-color: var(--el-color-warning)
}

.el-message--warning .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: anywhere
}

.el-message .el-message-icon--warning {
    color: var(--el-message-text-color)
}

.el-message--error {
    --el-message-bg-color: var(--el-color-error-light-9);
    --el-message-border-color: var(--el-color-error-light-8);
    --el-message-text-color: var(--el-color-error)
}

.el-message--error .el-message__content {
    color: var(--el-message-text-color);
    overflow-wrap: anywhere
}

.el-message .el-message-icon--error {
    color: var(--el-message-text-color)
}

.el-message__icon {
    margin-right: 10px
}

.el-message .el-message__badge {
    position: absolute;
    top: -8px;
    right: -8px
}

.el-message__content {
    padding: 0;
    font-size: 14px;
    line-height: 1
}

.el-message__content:focus {
    outline-width: 0
}

.el-message .el-message__closeBtn {
    position: absolute;
    top: 50%;
    right: 19px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--el-message-close-icon-color);
    font-size: var(--el-message-close-size)
}

.el-message .el-message__closeBtn:focus {
    outline-width: 0
}

.el-message .el-message__closeBtn:hover {
    color: var(--el-message-close-hover-color)
}

.el-message-fade-enter-from,
.el-message-fade-leave-to {
    opacity: 0;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%)
}

.rel {
    position: relative
}

.abs {
    position: absolute
}

.abs.clip {
    top: 0;
    left: 0
}

.abs.center {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.flex.col {
    flex-direction: column
}

.flex.center {
    justify-content: center;
    align-items: center
}

* {
    box-sizing: border-box
}

body.no-scroll {
    overflow-y: hidden
}

#oc-container {
    padding-top: 0 !important
}

#id-edit-profile {
    background: #f6f6f6;
    width: full;
    display: flex;
    justify-content: center
}

#id-edit-profile .out {
    display: flex
}

@media (orientation: landscape),
(min-width: 1024px) {
    #id-edit-profile .out {
        justify-content: center
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-edit-profile .out {
        align-items: center;
        flex-direction: column
    }

    #id-edit-profile .name {
        margin-top: 20px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .mobile .el-input {
        width: 322px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .mobile .el-input {
        width: 262px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .mobile .el-input {
        width: 154px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .el-input {
        height: 54px;
        width: 449px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .el-input {
        height: 44px;
        width: 366px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .el-input {
        height: 26px;
        width: 214px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-edit-profile .el-input {
        width: 308px;
        height: 52px;
        margin-top: 8px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .el-input .el-input__wrapper {
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .el-input .el-input__wrapper {
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .el-input .el-input__wrapper {
        border-radius: 5px
    }
}

@media (orientation: portrait) and (min-width: 100px) and (max-width: 1023px),
(max-width: 500px) {
    #id-edit-profile .el-input .el-input__wrapper {
        border-radius: 12px
    }

    #id-edit-profile .avatar-container {
        display: flex;
        justify-content: center
    }

    #id-edit-profile .form {
        flex-direction: column
    }
}

#id-edit-profile .container {
    display: flex;
    flex-direction: columns;
    justify-content: center;
    align-items: center;
    background: #fff
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #id-edit-profile .container {
        width: 724px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #id-edit-profile .container {
        width: 340px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .container {
        margin-top: 80px;
        margin-bottom: 80px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .container {
        margin-top: 66px;
        margin-bottom: 66px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .container {
        margin-top: 38px;
        margin-bottom: 38px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .container .inner {
        margin-top: 37px;
        width: 926px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .container .inner {
        margin-top: 30px;
        width: 754px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .container .inner {
        margin-top: 18px;
        width: 442px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .container .inner .top {
        border-bottom: 1px solid rgba(0, 0, 0, .08)
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .container .inner .top {
        border-bottom: 1px solid rgba(0, 0, 0, .08)
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .container .inner .top {
        border-bottom: 0px solid rgba(0, 0, 0, .08)
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    #id-edit-profile .avatar {
        border-radius: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    #id-edit-profile .avatar {
        border-radius: 7px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    #id-edit-profile .avatar {
        border-radius: 4px
    }
}

.avatar-uploader .el-upload {
    cursor: pointer;
    position: relative;
    overflow: hidden
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .avatar-uploader .el-upload {
        border: 1px dashed #000;
        border-radius: 5px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .avatar-uploader .el-upload {
        border: 1px dashed #000;
        border-radius: 4px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .avatar-uploader .el-upload {
        border: 0px dashed #000;
        border-radius: 2px
    }
}

.el-icon.avatar-uploader-icon {
    color: #8c939d;
    text-align: center
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .el-icon.avatar-uploader-icon {
        font-size: 23px;
        width: 149px;
        height: 149px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .el-icon.avatar-uploader-icon {
        font-size: 19px;
        width: 122px;
        height: 122px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .el-icon.avatar-uploader-icon {
        font-size: 11px;
        width: 71px;
        height: 71px
    }
}

body #oc-wrapper {
    padding-top: 52px !important
}

body #oc-wrapper #oc-container {
    margin-top: 0 !important;
    padding-top: 0 !important
}

body .cp-site-language-tip {
    display: none !important
}

*,
:before,
:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

* {
    --tw-ring-inset: var(--tw-empty, );
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000
}

:root {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4
}

:-moz-focusring {
    outline: 1px dotted ButtonText
}

:-moz-ui-invalid {
    box-shadow: none
}

::moz-focus-inner {
    border-style: none;
    padding: 0
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

a {
    color: inherit;
    text-decoration: inherit
}

body {
    margin: 0;
    line-height: inherit
}

html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.5
}

input {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    padding: 0;
    line-height: inherit;
    color: inherit
}

img {
    border-style: solid;
    max-width: 100%;
    height: auto
}

input::placeholder {
    opacity: 1;
    color: #9ca3af
}

input::webkit-input-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input:-ms-input-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::-ms-input-placeholder {
    opacity: 1;
    color: #9ca3af
}

img,
iframe,
canvas,
svg {
    display: block;
    vertical-align: middle
}

p {
    margin: 0
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px
    }
}

.\!bg-\[\#f6f6f6\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 246, 246, var(--tw-bg-opacity)) !important
}

.\!bg-\[\#fff\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important
}

.bg-\[\#000\] {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity))
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity))
}

.bg-\[\#EBEBEB\],
.bg-\[\#ebebeb\] {
    --tw-bg-opacity: 1;
    background-color: rgba(235, 235, 235, var(--tw-bg-opacity))
}

.bg-\[\#999999\] {
    --tw-bg-opacity: 1;
    background-color: rgba(153, 153, 153, var(--tw-bg-opacity))
}

.bg-\[\#f6f6f6\] {
    --tw-bg-opacity: 1;
    background-color: rgba(246, 246, 246, var(--tw-bg-opacity))
}

.bg-\[\#F8F9FA\] {
    --tw-bg-opacity: 1;
    background-color: rgba(248, 249, 250, var(--tw-bg-opacity))
}

.border-\[\#DCDCDC\] {
    --tw-border-opacity: 1;
    border-color: rgba(220, 220, 220, var(--tw-border-opacity))
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .rounded-36ex {
        border-radius: 77px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .rounded-36ex {
        border-radius: 36px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .rounded-36rpx {
        border-radius: 30px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .rounded-36rpx {
        border-radius: 25px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .rounded-36rpx {
        border-radius: 14px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .rounded-12ex {
        border-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .rounded-12ex {
        border-radius: 12px
    }
}

.rounded-\[36px\] {
    border-radius: 36px
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .rounded-12rpx {
        border-radius: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .rounded-12rpx {
        border-radius: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .rounded-12rpx {
        border-radius: 5px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .rounded-30rpx {
        border-radius: 25px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .rounded-30rpx {
        border-radius: 20px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .rounded-30rpx {
        border-radius: 12px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .rounded-30ex {
        border-radius: 64px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .rounded-30ex {
        border-radius: 30px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .rounded-8rpx {
        border-radius: 7px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .rounded-8rpx {
        border-radius: 5px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .rounded-8rpx {
        border-radius: 3px
    }
}

.rounded-12px {
    border-radius: 12px
}

.rounded-8px {
    border-radius: 8px
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .rounded-b-12ex {
        border-bottom-right-radius: 26px;
        border-bottom-left-radius: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .rounded-b-12ex {
        border-bottom-right-radius: 12px;
        border-bottom-left-radius: 12px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .rounded-t-24ex {
        border-top-left-radius: 51px;
        border-top-right-radius: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .rounded-t-24ex {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px
    }
}

.border {
    border-width: 1px
}

.cursor-pointer {
    cursor: pointer
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.hidden {
    display: none
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.font-medium {
    font-weight: 500
}

.font-normal {
    font-weight: 400
}

.h-full {
    height: 100%
}

.h-auto {
    height: auto
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-24ex {
        height: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-24ex {
        height: 24px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-20rpx {
        height: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-20rpx {
        height: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-20rpx {
        height: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-44ex {
        height: 94px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-44ex {
        height: 44px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-52rpx {
        height: 44px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-52rpx {
        height: 36px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-52rpx {
        height: 21px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-196rpx {
        height: 164px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-196rpx {
        height: 134px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-196rpx {
        height: 78px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-214ex {
        height: 456px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-214ex {
        height: 214px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .h-28rpx {
        height: 23px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-28rpx {
        height: 19px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-28rpx {
        height: 11px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-28ex {
        height: 60px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-28ex {
        height: 28px
    }
}

.h-62px {
    height: 62px
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-62rpx {
        height: 52px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-62rpx {
        height: 42px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-62rpx {
        height: 25px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-226rpx {
        height: 189px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-226rpx {
        height: 154px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-226rpx {
        height: 90px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-116ex {
        height: 247px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-116ex {
        height: 116px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .h-120rpx {
        height: 101px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-120rpx {
        height: 82px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-120rpx {
        height: 48px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-86ex {
        height: 183px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-86ex {
        height: 86px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-20ex {
        height: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-20ex {
        height: 20px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-189ex {
        height: 403px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-189ex {
        height: 189px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-40ex {
        height: 85px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-40ex {
        height: 40px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-192ex {
        height: 409px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-192ex {
        height: 192px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .h-60rpx {
        height: 50px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .h-60rpx {
        height: 41px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .h-60rpx {
        height: 24px
    }
}

.h-60px {
    height: 60px
}

.h-20px {
    height: 20px
}

.h-24px {
    height: 24px
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .h-22ex {
        height: 47px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .h-22ex {
        height: 22px
    }
}

.h-50px {
    height: 50px
}

.text-16ex {
    line-height: 1
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .text-16ex {
        font-size: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .text-16ex {
        font-size: 16px
    }
}

.text-24rpx {
    line-height: 1
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .text-24rpx {
        font-size: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .text-24rpx {
        font-size: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .text-24rpx {
        font-size: 10px
    }
}

.text-18rpx {
    line-height: 1
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .text-18rpx {
        font-size: 15px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .text-18rpx {
        font-size: 12px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .text-18rpx {
        font-size: 7px
    }
}

.text-14px {
    font-size: 14px;
    line-height: 1
}

.text-12rpx {
    line-height: 1
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .text-12rpx {
        font-size: 10px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .text-12rpx {
        font-size: 8px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .text-12rpx {
        font-size: 5px
    }
}

.text-12ex {
    line-height: 1
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .text-12ex {
        font-size: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .text-12ex {
        font-size: 12px
    }
}

.text-14rpx {
    line-height: 1
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .text-14rpx {
        font-size: 12px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .text-14rpx {
        font-size: 10px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .text-14rpx {
        font-size: 6px
    }
}

.text-\[13rpx\] {
    line-height: 1
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .text-\[13rpx\] {
        font-size: 11px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .text-\[13rpx\] {
        font-size: 9px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .text-\[13rpx\] {
        font-size: 5px
    }
}

.text-\[24px\] {
    font-size: 24px;
    line-height: 1
}

.text-18ex {
    line-height: 1
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .text-18ex {
        font-size: 38px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .text-18ex {
        font-size: 18px
    }
}

.text-12px {
    font-size: 12px;
    line-height: 1
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .leading-24ex {
        line-height: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .leading-24ex {
        line-height: 24px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .leading-32rpx {
        line-height: 27px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .leading-32rpx {
        line-height: 22px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .leading-32rpx {
        line-height: 13px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .leading-26rpx {
        line-height: 22px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .leading-26rpx {
        line-height: 18px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .leading-26rpx {
        line-height: 10px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .leading-20rpx {
        line-height: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .leading-20rpx {
        line-height: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .leading-20rpx {
        line-height: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .leading-20ex {
        line-height: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .leading-20ex {
        line-height: 20px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .leading-24rpx {
        line-height: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .leading-24rpx {
        line-height: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .leading-24rpx {
        line-height: 10px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .leading-22rpx {
        line-height: 18px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .leading-22rpx {
        line-height: 15px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .leading-22rpx {
        line-height: 9px
    }
}

.leading-\[32px\] {
    line-height: 32px
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .leading-26ex {
        line-height: 55px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .leading-26ex {
        line-height: 26px
    }
}

.leading-20px {
    line-height: 20px
}

.leading-22px {
    line-height: 22px
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .m-20rpx {
        margin: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .m-20rpx {
        margin: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .m-20rpx {
        margin: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .m-20ex {
        margin: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .m-20ex {
        margin: 20px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .m-24rpx {
        margin: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .m-24rpx {
        margin: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .m-24rpx {
        margin: 10px
    }
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .my-20ex {
        margin-top: 43px;
        margin-bottom: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .my-20ex {
        margin-top: 20px;
        margin-bottom: 20px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .my-50rpx {
        margin-top: 42px;
        margin-bottom: 42px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .my-50rpx {
        margin-top: 34px;
        margin-bottom: 34px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .my-50rpx {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mx-10ex {
        margin-left: 21px;
        margin-right: 21px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mx-10ex {
        margin-left: 10px;
        margin-right: 10px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-20ex {
        margin-top: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-20ex {
        margin-top: 20px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .ml-12ex {
        margin-left: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .ml-12ex {
        margin-left: 12px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .mb-10rpx {
        margin-bottom: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mb-10rpx {
        margin-bottom: 7px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mb-10rpx {
        margin-bottom: 4px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-40rpx {
        margin-top: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-40rpx {
        margin-top: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-40rpx {
        margin-top: 16px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-48ex {
        margin-top: 102px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-48ex {
        margin-top: 48px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mb-96ex {
        margin-bottom: 204px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mb-96ex {
        margin-bottom: 96px
    }
}

.mt-6px {
    margin-top: 6px
}

.mb-8px {
    margin-bottom: 8px
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-49rpx {
        margin-top: 41px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-49rpx {
        margin-top: 33px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-49rpx {
        margin-top: 20px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mb-16ex {
        margin-bottom: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mb-16ex {
        margin-bottom: 16px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-16rpx {
        margin-top: 13px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-16rpx {
        margin-top: 11px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-16rpx {
        margin-top: 6px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .ml-20rpx {
        margin-left: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .ml-20rpx {
        margin-left: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .ml-20rpx {
        margin-left: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-16ex {
        margin-top: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-16ex {
        margin-top: 16px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .ml-20ex {
        margin-left: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .ml-20ex {
        margin-left: 20px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .mr-20rpx {
        margin-right: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mr-20rpx {
        margin-right: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mr-20rpx {
        margin-right: 8px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-28rpx {
        margin-top: 23px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-28rpx {
        margin-top: 19px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-28rpx {
        margin-top: 11px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-18ex {
        margin-top: 38px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-18ex {
        margin-top: 18px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mb-12ex {
        margin-bottom: 26px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mb-12ex {
        margin-bottom: 12px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mb-80ex {
        margin-bottom: 170px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mb-80ex {
        margin-bottom: 80px
    }
}

.ml-20px {
    margin-left: 20px
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .mb-127rpx {
        margin-bottom: 106px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mb-127rpx {
        margin-bottom: 87px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mb-127rpx {
        margin-bottom: 51px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mr-40rpx {
        margin-right: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mr-40rpx {
        margin-right: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mr-40rpx {
        margin-right: 16px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .ml-40rpx {
        margin-left: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .ml-40rpx {
        margin-left: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .ml-40rpx {
        margin-left: 16px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-24rpx {
        margin-top: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-24rpx {
        margin-top: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-24rpx {
        margin-top: 10px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-10ex {
        margin-top: 21px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-10ex {
        margin-top: 10px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mr-16ex {
        margin-right: 34px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mr-16ex {
        margin-right: 16px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .ml-10rpx {
        margin-left: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .ml-10rpx {
        margin-left: 7px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .ml-10rpx {
        margin-left: 4px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .mr-10rpx {
        margin-right: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mr-10rpx {
        margin-right: 7px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mr-10rpx {
        margin-right: 4px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mt-11ex {
        margin-top: 23px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mt-11ex {
        margin-top: 11px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mr-20ex {
        margin-right: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mr-20ex {
        margin-right: 20px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-50rpx {
        margin-top: 42px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-50rpx {
        margin-top: 34px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-50rpx {
        margin-top: 20px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-48rpx {
        margin-top: 40px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-48rpx {
        margin-top: 33px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-48rpx {
        margin-top: 19px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mt-\[32rpx\] {
        margin-top: 27px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mt-\[32rpx\] {
        margin-top: 22px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mt-\[32rpx\] {
        margin-top: 13px
    }
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .mb-27rpx {
        margin-bottom: 23px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mb-27rpx {
        margin-bottom: 18px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mb-27rpx {
        margin-bottom: 11px
    }
}

.mt-8px {
    margin-top: 8px
}

.ml-2px {
    margin-left: 2px
}

.mt-20px {
    margin-top: 20px
}

.mb-100px {
    margin-bottom: 100px
}

.mt-\[32px\] {
    margin-top: 32px
}

.mb-27px {
    margin-bottom: 27px
}

.mt-16px {
    margin-top: 16px
}

.ml-24px {
    margin-left: 24px
}

.ml-4px {
    margin-left: 4px
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mb-32ex {
        margin-bottom: 68px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mb-32ex {
        margin-bottom: 32px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .mr-24ex {
        margin-right: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .mr-24ex {
        margin-right: 24px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .mr-34rpx {
        margin-right: 29px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .mr-34rpx {
        margin-right: 23px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .mr-34rpx {
        margin-right: 14px
    }
}

.max-h-50vh {
    max-height: 50vh;
    max-height: calc(50 * var(--vh, 1vh))
}

.min-h-40vh {
    min-height: 40vh;
    min-height: calc(40 * var(--vh, 1vh))
}

.min-h-50vh {
    min-height: 50vh;
    min-height: calc(50 * var(--vh, 1vh))
}

.object-contain {
    -o-object-fit: contain;
    object-fit: contain
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover
}

.opacity-75 {
    opacity: .75
}

.opacity-55 {
    opacity: .55
}

.opacity-95 {
    opacity: .95
}

.opacity-40 {
    opacity: .4
}

.opacity-30 {
    opacity: .3
}

.opacity-60 {
    opacity: .6
}

.opacity-0 {
    opacity: 0
}

.overflow-hidden {
    overflow: hidden
}

.overflow-scroll {
    overflow: scroll
}



@media (min-width: 1400px) and (max-width: 1799px) {
    .px-20rpx {
        padding-left: 17px;
        padding-right: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .px-20rpx {
        padding-left: 14px;
        padding-right: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .px-20rpx {
        padding-left: 8px;
        padding-right: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .px-18ex {
        padding-left: 38px;
        padding-right: 38px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .px-18ex {
        padding-left: 18px;
        padding-right: 18px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .py-6ex {
        padding-top: 13px;
        padding-bottom: 13px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .py-6ex {
        padding-top: 6px;
        padding-bottom: 6px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .py-9rpx {
        padding-top: 8px;
        padding-bottom: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .py-9rpx {
        padding-top: 6px;
        padding-bottom: 6px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .py-9rpx {
        padding-top: 4px;
        padding-bottom: 4px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .py-40rpx {
        padding-top: 34px;
        padding-bottom: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .py-40rpx {
        padding-top: 27px;
        padding-bottom: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .py-40rpx {
        padding-top: 16px;
        padding-bottom: 16px
    }
}

.px-22px {
    padding-left: 22px;
    padding-right: 22px
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .pb-24rpx {
        padding-bottom: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pb-24rpx {
        padding-bottom: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pb-24rpx {
        padding-bottom: 10px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .pt-6rpx {
        padding-top: 5px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pt-6rpx {
        padding-top: 4px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pt-6rpx {
        padding-top: 2px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .pt-40rpx {
        padding-top: 34px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pt-40rpx {
        padding-top: 27px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pt-40rpx {
        padding-top: 16px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .pt-69ex {
        padding-top: 147px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .pt-69ex {
        padding-top: 69px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .pb-125rpx {
        padding-bottom: 105px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pb-125rpx {
        padding-bottom: 85px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pb-125rpx {
        padding-bottom: 50px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .pt-128rpx {
        padding-top: 107px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pt-128rpx {
        padding-top: 87px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pt-128rpx {
        padding-top: 51px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .pt-64rpx {
        padding-top: 54px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pt-64rpx {
        padding-top: 44px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pt-64rpx {
        padding-top: 26px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .pl-64rpx {
        padding-left: 54px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pl-64rpx {
        padding-left: 44px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pl-64rpx {
        padding-left: 26px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .pt-48ex {
        padding-top: 102px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .pt-48ex {
        padding-top: 48px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .pb-200ex {
        padding-bottom: 426px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .pb-200ex {
        padding-bottom: 200px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .pb-198rpx {
        padding-bottom: 166px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pb-198rpx {
        padding-bottom: 135px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pb-198rpx {
        padding-bottom: 79px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .pt-32rpx {
        padding-top: 27px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .pt-32rpx {
        padding-top: 22px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .pt-32rpx {
        padding-top: 13px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .pb-36ex {
        padding-bottom: 77px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .pb-36ex {
        padding-bottom: 36px
    }
}

.pt-\[32px\] {
    padding-top: 32px
}

.pb-\[24px\] {
    padding-bottom: 24px
}

.pointer-events-none {
    pointer-events: none
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .top-64ex {
        top: 136px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .top-64ex {
        top: 64px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .right-24rpx {
        right: 20px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .right-24rpx {
        right: 16px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .right-24rpx {
        right: 10px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .right-19ex {
        right: 40px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .right-19ex {
        right: 19px
    }
}

.top-1\/2 {
    top: 50%
}

.top-0 {
    top: 0
}

.left-0 {
    left: 0
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .top-50rpx {
        top: 42px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .top-50rpx {
        top: 34px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .top-50rpx {
        top: 20px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .right-50rpx {
        right: 42px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .right-50rpx {
        right: 34px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .right-50rpx {
        right: 20px
    }
}

.bottom-0 {
    bottom: 0
}

.right-0 {
    right: 0
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .-top-24ex {
        top: -51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .-top-24ex {
        top: -24px
    }
}

.text-left {
    text-align: left
}

.text-center {
    text-align: center
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgba(239, 68, 68, var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity))
}

.text-black {
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity))
}

.text-\[\#2660F5\] {
    --tw-text-opacity: 1;
    color: rgba(38, 96, 245, var(--tw-text-opacity))
}

.text-opacity-75 {
    --tw-text-opacity: .75
}

.content-wrapper {
    content: "wrapper"
}

.tracking-0\.02em,
.tracking-\[0\.02em\] {
    letter-spacing: .02em
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .tracking-0\.5rpx {
        letter-spacing: 0px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .tracking-0\.5rpx {
        letter-spacing: 0px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .tracking-0\.5rpx {
        letter-spacing: 0px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .tracking-\[0\.5rpx\] {
        letter-spacing: 0px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .tracking-\[0\.5rpx\] {
        letter-spacing: 0px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .tracking-\[0\.5rpx\] {
        letter-spacing: 0px
    }
}

.tracking-0\.5px,
.tracking-\[0\.5px\] {
    letter-spacing: .5px
}

.whitespace-nowrap {
    white-space: nowrap
}

.w-full {
    width: 100%
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-340ex {
        width: 724px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-340ex {
        width: 340px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-24ex {
        width: 51px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-24ex {
        width: 24px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-348ex {
        width: 741px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-348ex {
        width: 348px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-20rpx {
        width: 17px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-20rpx {
        width: 14px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-20rpx {
        width: 8px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-312ex {
        width: 665px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-312ex {
        width: 312px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-320ex {
        width: 682px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-320ex {
        width: 320px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .w-48rpx {
        width: 40px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-48rpx {
        width: 33px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-48rpx {
        width: 19px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-48ex {
        width: 102px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-48ex {
        width: 48px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-116ex {
        width: 247px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-116ex {
        width: 116px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-1248rpx {
        width: 1046px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-1248rpx {
        width: 852px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-1248rpx {
        width: 499px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-308ex {
        width: 656px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-308ex {
        width: 308px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-1104rpx {
        width: 926px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-1104rpx {
        width: 754px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-1104rpx {
        width: 442px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-150ex {
        width: 320px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-150ex {
        width: 150px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .w-700rpx {
        width: 587px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-700rpx {
        width: 478px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-700rpx {
        width: 280px
    }
}


@media (min-width: 1400px) and (max-width: 1799px) {
    .w-180rpx {
        width: 151px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-180rpx {
        width: 123px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-180rpx {
        width: 72px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-484rpx {
        width: 406px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-484rpx {
        width: 331px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-484rpx {
        width: 194px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-20ex {
        width: 43px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-20ex {
        width: 20px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-40ex {
        width: 85px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-40ex {
        width: 40px
    }
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    .w-70ex {
        width: 149px
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    .w-70ex {
        width: 70px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-756rpx {
        width: 634px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-756rpx {
        width: 516px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-756rpx {
        width: 302px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-871rpx {
        width: 730px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-871rpx {
        width: 595px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-871rpx {
        width: 348px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-208rpx {
        width: 174px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-208rpx {
        width: 142px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-208rpx {
        width: 83px
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .w-190rpx {
        width: 159px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .w-190rpx {
        width: 130px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .w-190rpx {
        width: 76px
    }
}

.w-280px {
    width: 280px
}

.w-20px {
    width: 20px
}

.w-190px {
    width: 190px
}

.w-24px {
    width: 24px
}

.z-100 {
    z-index: 100
}

.z-2 {
    z-index: 2
}

.z-1 {
    z-index: 1
}

.z-3 {
    z-index: 3
}

.gap-\[4px\] {
    grid-gap: 4px;
    gap: 4px
}

.transform {
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-translate-z: 0;
    --tw-rotate: 0;
    --tw-rotate-x: 0;
    --tw-rotate-y: 0;
    --tw-rotate-z: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-scale-z: 1;
    transform: translate(var(--tw-translate-x)) translateY(var(--tw-translate-y)) translateZ(var(--tw-translate-z)) rotate(var(--tw-rotate)) rotateX(var(--tw-rotate-x)) rotateY(var(--tw-rotate-y)) rotate(var(--tw-rotate-z)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) scaleZ(var(--tw-scale-z))
}

.-translate-y-1\/2 {
    --tw-translate-y: -50%
}

.filter {
    --tw-blur: var(--tw-empty, );
    --tw-brightness: var(--tw-empty, );
    --tw-contrast: var(--tw-empty, );
    --tw-grayscale: var(--tw-empty, );
    --tw-hue-rotate: var(--tw-empty, );
    --tw-invert: var(--tw-empty, );
    --tw-saturate: var(--tw-empty, );
    --tw-sepia: var(--tw-empty, );
    --tw-drop-shadow: var(--tw-empty, );
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.blur,
.blur\(20px\) {
    --tw-blur: blur(8px)
}

.invert\(1\) {
    --tw-invert: invert(100%)
}

@media (min-width: 640px) {
    .sm\:w-\[24\%\] {
        width: 24%
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .sm\:w-1248rpx {
        width: 1046px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .sm\:w-1248rpx {
        width: 852px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .sm\:w-1248rpx {
        width: 499px
    }
}

@media (min-width: 1024px) {
    .lg\:bg-\[\#f5f5f5\] {
        --tw-bg-opacity: 1;
        background-color: rgba(245, 245, 245, var(--tw-bg-opacity))
    }

    .lg\:h-100vh {
        height: 100vh;
        height: calc(100 * var(--vh, 1vh))
    }

    .lg\:pt-0 {
        padding-top: 0
    }

    .lg\:w-\[24\%\] {
        width: 24%
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .lg\:mb-10rpx {
        margin-bottom: 8px
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .lg\:mb-10rpx {
        margin-bottom: 7px
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {
    .lg\:mb-10rpx {
        margin-bottom: 4px
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name .red {
    color: red
}

#upload-page {
    height: 100%;
    background-color: #f6f6f6;
    padding: 64px 0;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page {
        padding: 62px 24px;
    }
}

@media (max-width: 650px) {
    #upload-page {
        padding: 40px 16px;
    }
}

#upload-page .upload-wrapper {
    margin: 0 auto;
    max-width: 1312px;
    background: #fff;
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper {
        width: calc(100% - 48px);
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper {
        width: 100%;
        max-width: 976px;
        background: transparent;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper {
        width: 100%;
        max-width: 618px;
        background: transparent;
    }
}

#upload-page .upload-wrapper .main-title {
    text-align: center;
    color: #000000F2;
    font-weight: 700;
    letter-spacing: -0.12px;
    font-size: 36px;
    line-height: 43px;
    padding: 96px 0 0;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .main-title {
        font-size: 24px;
        line-height: 29px;
        padding: 0;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .main-title {
        font-size: 24px;
        line-height: 29px;
        padding: 0;
    }
}

#upload-page .upload-wrapper .upload-form {
    padding: 0 110px;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .upload-form {
        padding: 0;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .upload-form {
        padding: 0;
    }
}

#upload-page .upload-wrapper .form-part {
    padding-top: 72px;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part {
        padding-top: 72px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part {
        padding-top: 72px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part {
        padding-top: 40px;
    }

    #upload-page .upload-wrapper .form-part.info {
        padding-top: 40px;
        border-radius: 0 0 12px 12px;
        overflow: hidden;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part {
        padding-top: 24px;
    }
}

#upload-page .upload-wrapper .form-part.pc {
    display: block;
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part.pc {
        display: none;
    }

    #upload-page .upload-wrapper .form-part.mo {
        display: block;
    }
}

#upload-page .upload-wrapper .form-part .form-title {
    letter-spacing: 0.02em;
    text-align: left;
    color: #000000BF;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
    }
}

#upload-page .upload-wrapper .upload-form .form-part .form-item-container.pc {
    justify-content: space-between;
}

#upload-page .upload-wrapper .upload-form.author-info .form-part .form-item-container.pc {
    padding-top: 24px;
}

#upload-page .upload-wrapper .upload-form .form-part .form-item-container.mo {
    display: none;
}

#upload-page .upload-wrapper .upload-form.draft-content-form .form-part.mo {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .upload-form.draft-content-form .form-part .form-item-container.pc {
        margin-bottom: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .upload-form.draft-content-form .form-part .form-item-container.pc {
        margin-bottom: 24px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .upload-form .form-part .form-item-container.pc {
        background: #FFFFFF;
    }

    #upload-page .upload-wrapper .upload-form.author-info .form-part .form-item-container.pc:nth-of-type(2) {
        padding: 16px 16px 20px;
        margin-top: 16px;
        border-radius: 12px 12px 0 0;
    }

    #upload-page .upload-wrapper .upload-form.author-info .form-part .form-item-container.pc {
        padding: 0 16px 20px;
    }

    #upload-page .upload-wrapper .upload-form.draft-content-form .form-part .works {
        background: #FFFFFF;
        padding: 20px 16px 32px 16px;
        border-radius: 12px;
    }

    #upload-page .upload-wrapper .upload-form.draft-content-form .form-part .form-item-container.pc {
        padding-bottom: 16px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .upload-form .form-part .form-item-container.pc {
        display: none;
    }

    #upload-page .upload-wrapper .upload-form .form-part .form-item-container.mo {
        display: block;
        background-color: #fff;
        margin-top: 16px;
        padding: 20px 16px 32px 16px;
        border-radius: 12px;
    }

    #upload-page .upload-wrapper .upload-form.draft-content-form .form-part.mo {
        display: block;
    }

    /* #upload-page .upload-wrapper .upload-form.draft-content-form .form-part .form-item-container.mo .el-form-item {
        margin-bottom: 20px;
    } */
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item {
    width: calc(50% - 4px);
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item.full {
    width: 100%;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item {
        width: calc(50% - 8px);
    }

    #upload-page .upload-wrapper .form-part .form-item-container .form-item.full {
        width: 100%;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item {
        width: 100%;
    }

    #upload-page .upload-wrapper .form-part .form-item-container .form-item:nth-of-type(-n+4) {
        width: 100%;
        margin-bottom: 20px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name {
    height: 26px;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name {
        height: 24px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name {
        height: 24px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name>span {
    height: 26px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: left;
    float: left;
    color: #0000008C;
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .item-name>span {
    height: 26px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #0000008C;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name>span {
        height: 24px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .item-name>span {
        height: 24px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .item-name>span {
        height: 24px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input {
    margin-top: 10px;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input {
        margin-top: 8px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input {
        margin-top: 8px;
    }

    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-select {
        margin-top: 8px;
        width: 100%;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input .el-input__wrapper {
    height: 64px;
    padding: 12px 20px 12px 20px;
    border-radius: 12px;
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input .el-input__wrapper {
        height: 52px;
        padding: 16px;
        border-radius: 12px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-input .el-input__wrapper {
        height: 52px;
        padding: 16px;
        border-radius: 12px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper {
    width: 100%;
    justify-content: space-between;
    align-items: center
}

#upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper .send-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: #F0F0F0;
    margin-left: 8px;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper .send-btn {
        width: 168px;
        height: 64px;
        padding: 12px 20px 12px 20px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper .send-btn {
        width: 168px;
        height: 64px;
        padding: 12px 20px 12px 20px;
        border-radius: 12px;
        margin-top: 10px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper .send-btn {
        width: 134px;
        height: 52px;
        padding: 12px 20px 12px 20px;
        border-radius: 12px;
        margin-top: 8px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .send-code-wrapper .send-btn {
        width: 110px;
        height: 52px;
        padding: 12px 20px 12px 20px;
        border-radius: 12px;
        margin-top: 8px;
    }
}

#upload-page .upload-wrapper .form-part .rules-container {
    width: 100%;
    background-color: #fafafa;

}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        padding: 28px 32px 28px 42px;
        border-radius: 12px;
        margin-top: 24px;
        margin-bottom: 72px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        padding: 28px 32px 28px 42px;
        border-radius: 12px;
        margin-top: 24px;
        margin-bottom: 72px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        padding: 20px 16px 20px 26px;
        border-radius: 12px;
        margin-top: 16px;
        background: #FFFFFF;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .rules-container {
        padding: 20px 16px 20px 26px;
        border-radius: 12px;
        margin-top: 16px;
        background: #FFFFFF;
    }
}

#upload-page .upload-wrapper .form-part .rules-container .rule {
    text-align: left;
    color: #0000008C;
    text-indent: -10px;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .rules-container .rule {
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .rules-container .rule {
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .rules-container .rule {
        font-size: 14px;
        font-weight: 400;
        line-height: 25px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .rules-container .rule {
        font-size: 14px;
        font-weight: 400;
        line-height: 25px;
    }
}

#upload-page .upload-wrapper .form-split {
    background: #F6F6F6;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-split {
        height: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-split {
        height: 24px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-split {
        height: 0;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-split {
        height: 0;
    }
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .upload-form.draft-content-form {
        padding-bottom: 72px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .upload-form.draft-content-form {
        padding-bottom: 72px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea textarea {
    resize: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea textarea {
        min-height: 127px;
        padding: 12px 20px 12px 19px;
        border-radius: 12px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea textarea {
        min-height: 127px;
        padding: 12px 20px 12px 19px;
        border-radius: 12px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea textarea {
        min-height: 120px;
        padding: 16px 16px 12px 16px;
        border-radius: 12px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea textarea {
        min-height: 140px;
        padding: 16px 16px 12px 16px;
        border-radius: 12px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .form-item .el-textarea .el-input__count {
    height: 20%;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper {
    position: relative;
    width: 100%;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .select-container {
    justify-content: space-between
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .select-container .left {
    width: 100%;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .select-container .el-select,
#upload-page .upload-wrapper .form-part .upload-item-wrapper .select-container .other-device {
    width: 100%
}

#upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .select-trigger.el-tooltip__trigger.el-tooltip__trigger {
    display: inline-block;
}

#upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box {
    display: inline-block;
    position: relative;
}

#upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box {
        width: calc(25% - 9px);
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box {
        width: calc(25% - 9px);
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box {
        width: calc(50% - 8px);
        margin-left: 12px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .other-model-box {
        width: 100%;
        margin-top: 16px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model {
    cursor: text;
    padding: 12px 20px 12px 20px;
    border-radius: 12px;
    border: 1px solid #DCDCDC;
}

#upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model.red-border {
    border: 1px solid red;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .select-trigger.el-tooltip__trigger.el-tooltip__trigger {
        width: 75%;
    }

    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model {
        height: 64px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .select-trigger.el-tooltip__trigger.el-tooltip__trigger {
        width: 75%;
    }

    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model {
        height: 64px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .select-trigger.el-tooltip__trigger.el-tooltip__trigger {
        width: calc(50% - 8px);
    }

    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model {
        height: 52px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .select-trigger.el-tooltip__trigger.el-tooltip__trigger {
        width: 100%;
    }

    #upload-page .upload-wrapper .form-part .form-item-container .phone_model_select .el-input__inner.other-model {
        height: 52px;
    }
}

#upload-page .upload-wrapper .form-part .form-item-container .el-form-item__content .select-container .el-input {
    width: 100%
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper {
    display: flex;
    flex-wrap: wrap
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper {
        padding-top: 10px;
        width: 624px
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper {
        padding-top: 10px;
        width: 624px
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper {
        padding-top: 8px;
        width: 534px
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper {
        padding-top: 8px;
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container {
    position: relative;
    border-radius: 12px;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container {
        width: 208px;
        height: 200px;
        padding-right: 8px;
        margin-bottom: 36px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container {
        width: 208px;
        height: 200px;
        padding-right: 8px;
        margin-bottom: 36px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container {
        width: 178px;
        height: 162px;
        padding-right: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container {
        width: calc(50% - 7px);
        min-width: 140px;
        height: 140px;
        margin-bottom: 32px;
    }

    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container:nth-of-type(2n-1) {
        margin-right: 14px;
    }
}

.pick-img {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #fff;
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
}

.pick-img:hover {
    border-color: #000
}

.pick-img input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer
}

.pick-img .is-allow-upload {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 9;
    cursor: pointer
}

.pick-img .pick-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.pick-img .pick-icon img {
    width: 30px;
    height: 30px;
}

.pick-img .pick-icon p {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #000000F2;
}

@media (max-width: 650px) {
    .pick-img .pick-icon p {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.5px;
        text-align: center;
        color: #000000BF;
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .img-element-sort {
    text-align: center;
    color: #00000066;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .img-element-sort {
        height: 24px;
        opacity: 0.78px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .img-element-sort {
        height: 24px;
        opacity: 0.78px;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.5px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .img-element-sort {
        height: 20px;
        opacity: 0.78px;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .img-element-sort {
        height: 20px;
        opacity: 0.78px;
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.02em;
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover {
    position: absolute;
    display: inline-block;
    left: 0;
    bottom: 0;
    text-align: center;
    background: rgb(0 0 0 / 30%);
    color: #FFFFFFF2;
    border-radius: 0 0 8px 8px;
    height: 36px;
    line-height: 36px;
    font-size: 18px;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover {
        width: calc(100% - 8px);
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover {
        width: calc(100% - 8px);
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover {
        width: calc(100% - 16px);
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .works-cover {
        width: 100%;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .cover-fuzzy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
    z-index: 5;
    border-radius: 0 0 8px 8px;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .cover-text {
    z-index: 10;
    position: relative;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work {
    position: absolute;
    z-index: 3;
    cursor: pointer
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work {
        top: 15px;
        right: 23px;
        width: 20px;
        height: 20px
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work {
        top: 15px;
        right: 23px;
        width: 20px;
        height: 20px
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work {
        top: 14px;
        right: 30px;
        width: 12px;
        height: 12px
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work {
        top: 12px;
        right: 12px;
        width: 12px;
        height: 12px
    }
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .upload-img-container .delete-work.conceal {
    display: none;
}

#upload-page .upload-wrapper .upload-tip.conceal {
    display: none;
}

#upload-page .upload-wrapper .groups-tips {
    display: block;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
    color: #00000066;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .groups-tips {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .groups-tips {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .groups-tips {
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .groups-tips {
        font-size: 12px;
        line-height: 20px;
    }
}

#upload-page .btn-group {
    text-align: center;
}

#upload-page .primary-btn {
    background-color: #000;
    color: #fff
}

@media (min-width: 1440px) {
    #upload-page .primary-btn {
        width: 186px;
        height: 52px;
        padding: 14px 28px 14px 28px;
        border-radius: 36px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .primary-btn {
        width: 186px;
        height: 52px;
        padding: 14px 28px 14px 28px;
        border-radius: 36px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .primary-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
    }
}

@media (max-width: 650px) {
    #upload-page .primary-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
    }
}

#upload-page .default-btn {
    background-color: #fff;
    color: #000
}

@media (min-width: 1440px) {
    #upload-page .default-btn {
        width: 186px;
        height: 52px;
        padding: 14px 28px 14px 28px;
        border-radius: 36px;
        margin-right: 12px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .default-btn {
        width: 186px;
        height: 52px;
        padding: 14px 28px 14px 28px;
        border-radius: 36px;
        margin-right: 12px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .default-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
        margin-right: 16px;
    }
}

@media (max-width: 650px) {
    #upload-page .default-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
        margin-right: 16px;
    }
}

#upload-page .primary-btn.is-disabled {
    background-color: #999
}

#upload-page .is-allow-save {
    color: red;
    font-size: 8px;
    line-height: 1;
    padding-top: 10px;
    text-align: center;
}

#upload-page .upload-wrapper .close-tips {
    text-align: center;
    background-color: #f6f6f6
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .close-tips {
        padding-top: 64px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .close-tips {
        padding-top: 64px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .close-tips {
        padding-top: 40px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .close-tips {
        padding-top: 40px;
    }
}

#upload-page .upload-wrapper .bottom-tips {
    text-align: center;
    font-weight: 400;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .bottom-tips {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.5px;
        color: #0000004D;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .bottom-tips {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.5px;
        color: #0000004D;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .bottom-tips {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 0.02em;
        color: #999999;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .bottom-tips {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 0.02em;
        color: #999999;
    }
}

#upload-page .upload-wrapper .upload-form.draft-list-form.pc .form-part {
    padding: 32px 0;
}

#upload-page .upload-wrapper .form-part .draft-list {
    display: flex;
    flex-wrap: wrap;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box {
    position: relative;
    display: inline-block;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box {
        width: calc(33% - 12px);
        max-width: 348px;
        height: 310px;
        border-radius: 12px;
    }

    #upload-page .upload-wrapper .form-part .draft-list .draft-box:nth-child(3n-1) {
        margin: 0 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box {
        width: calc(33% - 14px);
        max-width: 348px;
        height: 310px;
        border-radius: 12px;
    }

    #upload-page .upload-wrapper .form-part .draft-list .draft-box:nth-child(3n-1) {
        margin: 0 24px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box {
        width: calc(50% - 4px);
        height: 310px;
        border-radius: 12px;
        background-color: #fff;
        padding: 0 16px;
    }

    #upload-page .upload-wrapper .form-part .draft-list .draft-box:nth-child(2n-1) {
        margin-right: 8px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box {
        width: 100%;
        max-width: 602px;
        height: 298px;
        border-radius: 12px;
        margin-top: 16px;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: left;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-title {
        height: 46px;
        line-height: 46px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-title {
        height: 46px;
        line-height: 46px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-title {
        height: 50px;
        line-height: 50px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-title {
        height: 26px;
        line-height: 26px;
        margin-bottom: 16px;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-img {
    display: inline-block;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-file-img {
        width: 100%;
        height: 220px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-file-img {
        width: 100%;
        height: 220px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-file-img {
        width: 100%;
        height: 211px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-file-img-box {
        width: 100%;
        padding: 16px 16px 48px 16px;
        border-radius: 12px;
        background-color: #fff;
    }

    #upload-page .upload-wrapper .form-part .draft-file-img {
        width: 100%;
        height: 192px;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit {
    display: inline-block;
    position: absolute;
    left: 0;
    text-align: center;
    background-color: rgba(0 0 0 / 20%);
    color: #fff;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        left: 0;
        line-height: 220px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit {
        width: 100%;
        height: 220px;
        border-radius: 12px;
        left: 0;
        line-height: 220px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit {
        width: calc(100% - 32px);
        height: 211px;
        border-radius: 12px;
        left: 16px;
        line-height: 211px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-edit {
        width: calc(100% - 32px);
        height: 192px;
        border-radius: 12px;
        left: 16px;
        line-height: 192px;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text {
    width: 100%;
    position: absolute;
    color: white;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text {
        left: 0;
        bottom: 44px;
        height: 54px;
        line-height: 54px;
        border-radius: 0 0 12px 12px;
        padding: 16px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text {
        left: 0;
        bottom: 44px;
        height: 54px;
        line-height: 54px;
        border-radius: 0 0 12px 12px;
        padding: 16px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text {
        left: 16px;
        bottom: 48px;
        height: 54px;
        line-height: 54px;
        border-radius: 0 0 12px 12px;
        padding: 16px;
        width: calc(100% - 32px);
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-text {
        left: 16px;
        bottom: 48px;
        height: 54px;
        line-height: 54px;
        border-radius: 0 0 12px 12px;
        padding: 16px;
        width: calc(100% - 32px);
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-name {
    width: calc(100% - 100px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 22px;
    text-align: left;
    color: #FFFFFFF2;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-file-time {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: right;
    color: #FFFFFFBF;
    line-height: 20px;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-is-group {
    position: absolute;
    width: 24px;
    top: 66px;
    right: 20px;
    border-radius: 50%;
    background: rgb(0 0 0 / 40%);
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: #2660F5;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box {
        height: 44px;
        line-height: 44px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box {
        height: 44px;
        line-height: 44px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box {
        height: 48px;
        line-height: 48px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box {
        height: 48px;
        line-height: 48px;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box .draft-btn {
    cursor: pointer;
    float: left;
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box .draft-btn {
        margin-right: 16px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box .draft-btn {
        margin-right: 16px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box .draft-btn {
        margin-right: 24px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box .draft-btn-box .draft-btn {
        margin-right: 24px;
    }
}

@media (min-width: 1440px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box.add-draft-box {
        padding: 46px 0 44px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box.add-draft-box {
        padding: 46px 0 44px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box.add-draft-box {
        padding: 46px 16px 16px;
    }
}

@media (max-width: 650px) {
    #upload-page .upload-wrapper .form-part .draft-list .draft-box.add-draft-box {
        padding: 16px;
        height: 224px;
        background: #fff;
    }
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .add-draft-btn {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dcdcdc;
    border-radius: 12px;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .add-draft-btn .add-icon {
    width: 30px;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .add-draft-btn .add-more-draft {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.5px;
    text-align: center;
    color: #000000BF;
}

#upload-page .upload-wrapper .form-part .draft-list .draft-box .add-draft-btn:hover {
    border: 2px dashed #000;
}

#upload-page #uploadBox .upload-checkbox-wrapper {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    text-align: left;
    display: flex;
    margin: 0 auto;
}

@media (min-width: 1440px) {
    #upload-page #uploadBox .upload-checkbox-wrapper {
        padding: 66px 0 26px;
        width: 400px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page #uploadBox .upload-checkbox-wrapper {
        padding: 66px 0 26px;
        width: 400px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page #uploadBox .upload-checkbox-wrapper {
        padding: 42px 0 26px;
        width: 400px;
    }
}

@media (max-width: 650px) {
    #upload-page #uploadBox .upload-checkbox-wrapper {
        padding: 42px 0 26px;
        width: 300px;
    }
}

#upload-page #uploadBox .upload-checkbox-wrapper .el-checkbox__label span {
    color: #999999;
}

#upload-page #uploadBox .upload-checkbox-wrapper .el-checkbox__label a {
    color: #2660F5;
}

#upload-page .no-login {
    width: 100%;
    border-radius: 12px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#upload-page .no-login.conceal {
    display: none;
}

@media (min-width: 1440px) {
    #upload-page .no-login {
        max-width: 1312px;
        padding: 20px;
        min-height: calc(100vh - 180px);
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .no-login {
        max-width: 1312px;
        padding: 20px;
        width: calc(100% - 128px);
        min-height: calc(100vh - 180px);
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .no-login {
        padding: 12px;
        min-height: calc(100vh - 218px);
    }
}

@media (max-width: 650px) {
    #upload-page .no-login {
        padding: 12px;
        min-height: calc(100vh - 174px);
    }
}

#upload-page .no-login .no-login-title {
    letter-spacing: 0.5px;
    text-align: center;
    color: #000000BF;
}

@media (min-width: 1440px) {
    #upload-page .no-login .no-login-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .no-login .no-login-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .no-login .no-login-title {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
    }
}

@media (max-width: 650px) {
    #upload-page .no-login .no-login-title {
        font-size: 12px;
        font-weight: 400;
        line-height: 20px;
    }
}

#upload-page .no-login .no-login-btn {
    border-radius: 36px;
    color: #fff;
    background: #000000;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
}

@media (min-width: 1440px) {
    #upload-page .no-login .no-login-btn {
        height: 44px;
        padding: 11px 24px 11px 24px;
        margin-top: 24px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    #upload-page .no-login .no-login-btn {
        height: 44px;
        padding: 11px 24px 11px 24px;
        margin-top: 24px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    #upload-page .no-login .no-login-btn {
        height: 40px;
        padding: 9px 20px 9px 20px;
        margin-top: 16px;
    }
}

@media (max-width: 650px) {
    #upload-page .no-login .no-login-btn {
        height: 40px;
        padding: 9px 20px 9px 20px;
        margin-top: 16px;
    }
}

.fl {
    float: left;
}

.pa {
    position: absolute;
}

.color-gray {
    color: gray;
}

.color-black {
    color: black;
}

.red-border {
    border-color: red;
    border-width: 1px;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper.select-race {
    padding: 0;
    background-color: white;
    margin-top: 0;
}

.el-input .el-select__caret.is-reverse {
    transform: rotate(-180deg)
}

.alert-message-tips {
    display: none;
    min-width: 10em;
    box-sizing: border-box;
    border-radius: 0.2em;
    border: 1px solid #ebeef5;
    position: fixed;
    left: 50%;
    top: 5em;
    transform: translateX(-50%);
    background-color: #edf2fc;
    transition: opacity .3s, transform .4s, top .4s;
    overflow: hidden;
    padding: 0.3em 0.3em 0.3em 0.4em;
    align-items: center;
    z-index: 200;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .upload-img-container .img-element {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: none;
    background-image: url('https://image.oppo.com/content/dam/oppo/event-page-asset/imagine-if/upload-entry/v2/icon-loading.svg');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    object-fit: cover;
}

#upload-page .upload-wrapper .form-part img {
    opacity: 1;
}

#upload-page .upload-wrapper .form-part .upload-item-wrapper .img-wrapper .add-img-btn.conceal {
    display: none;
}

.mask-dialog {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 101;
}

.mask-dialog.show {
    display: flex;
}

.mask-dialog .dialog-main .succee-content .upload-success-icon img {
    opacity: 1 !important;
}

.dialog-main {
    position: relative;
}

.dialog-main .close-icon {
    position: absolute;
    top: 0.4em;
    right: 0.4em;
    width: 1em;
    height: 1em;
    padding: 0.5em;
    cursor: pointer;
    box-sizing: content-box;
}

.dialog-main .close-icon img {
    width: 100%;
    height: 100%;
}

.delete-dialog .delete-content,
.cancel-dialog .cancel-content,
.submit-dialog .submit-content {
    background: #FFFFFF;
    border-radius: 24px;
}

.delete-dialog .delete-content .delete-title,
.cancel-dialog .cancel-content .cancel-title,
.submit-dialog .submit-content .submit-title {
    width: 464px;
    padding: 40px 0 24px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #262626;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-title,
    .cancel-dialog .cancel-content .cancel-title,
    .submit-dialog .submit-content .submit-title {
        width: 464px;
        padding: 40px 0 24px 0;
        font-size: 24px;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #262626;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-title,
    .cancel-dialog .cancel-content .cancel-title,
    .submit-dialog .submit-content .submit-title {
        width: 328px;
        padding: 24px 0 16px 0;
        border-radius: 24px 24px 0px 0px;
        font-size: 18px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000F2;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .delete-title,
    .cancel-dialog .cancel-content .cancel-title,
    .submit-dialog .submit-content .submit-title {
        width: 328px;
        padding: 24px 0 16px 0;
        border-radius: 24px 24px 0px 0px;
        font-size: 18px;
        font-weight: 700;
        line-height: 26px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000F2;
    }
}

.delete-dialog .delete-content .delete-tips,
.cancel-dialog .cancel-content .cancel-tips,
.submit-dialog .submit-content .submit-tips {
    width: 464px;
    padding: 0px 40px 0px 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #000000BF;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-tips,
    .cancel-dialog .cancel-content .cancel-tips,
    .submit-dialog .submit-content .submit-tips {
        width: 464px;
        padding: 0px 40px 0px 40px;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000BF;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-tips,
    .cancel-dialog .cancel-content .cancel-tips,
    .submit-dialog .submit-content .submit-tips {
        width: 328px;
        padding: 0px 24px 0px 24px;
        gap: 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000BF;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .delete-tips,
    .cancel-dialog .cancel-content .cancel-tips,
    .submit-dialog .submit-content .submit-tips {
        width: 328px;
        padding: 0px 24px 0px 24px;
        gap: 20px;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000BF;
    }
}

.delete-dialog .delete-content .delete-btns,
.cancel-dialog .cancel-content .cancel-btns,
.submit-dialog .submit-content .submit-btns {
    width: 464px;
    height: 124px;
    padding: 32px 40px 40px 40px;
    text-align: center;
    display: flex;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-btns,
    .cancel-dialog .cancel-content .cancel-btns,
    .submit-dialog .submit-content .submit-btns {
        width: 464px;
        height: 124px;
        padding: 32px 40px 40px 40px;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-btns,
    .cancel-dialog .cancel-content .cancel-btns,
    .submit-dialog .submit-content .submit-btns {
        width: 328px;
        height: 88px;
        padding: 20px 24px 24px 24px;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .delete-btns,
    .cancel-dialog .cancel-content .cancel-btns,
    .submit-dialog .submit-content .submit-btns {
        width: 328px;
        height: 88px;
        padding: 20px 24px 24px 24px;
    }
}

.delete-dialog .delete-content .delete-btn,
.cancel-dialog .cancel-content .cancel-btn,
.submit-dialog .submit-content .submit-btn {
    width: 186px;
    height: 52px;
    padding: 14px 28px 14px 28px;
    border-radius: 36px;
    display: inline-block;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-btn,
    .cancel-dialog .cancel-content .cancel-btn,
    .submit-dialog .submit-content .submit-btn {
        width: 186px;
        height: 52px;
        padding: 14px 28px 14px 28px;
        border-radius: 36px;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .delete-btn,
    .cancel-dialog .cancel-content .cancel-btn,
    .submit-dialog .submit-content .submit-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .delete-btn,
    .cancel-dialog .cancel-content .cancel-btn,
    .submit-dialog .submit-content .submit-btn {
        width: 136px;
        height: 44px;
        padding: 11px 24px 11px 24px;
        border-radius: 36px;
    }
}

.delete-dialog .delete-content .btn-register,
.cancel-dialog .cancel-content .btn-register,
.submit-dialog .submit-content .btn-register {
    border: 1px solid #DCDCDC;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #000000;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .btn-register,
    .cancel-dialog .cancel-content .btn-register,
    .submit-dialog .submit-content .btn-register {
        border: 1px solid #DCDCDC;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .btn-register,
    .cancel-dialog .cancel-content .btn-register,
    .submit-dialog .submit-content .btn-register {
        border: 1px solid #DCDCDC;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #000000;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .btn-register,
    .cancel-dialog .cancel-content .btn-register,
    .submit-dialog .submit-content .btn-register {
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 0.02em;
        text-align: center;
    }
}

.delete-dialog .delete-content .btn-primary,
.cancel-dialog .cancel-content .btn-primary,
.submit-dialog .submit-content .btn-primary {
    background: #000000;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #FFFFFF;
    margin-left: 12px;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {

    .delete-dialog .delete-content .btn-primary,
    .cancel-dialog .cancel-content .btn-primary,
    .submit-dialog .submit-content .btn-primary {
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.02em;
        text-align: center;
        color: #FFFFFF;
        margin-left: 8px;
    }
}

@media (orientation: landscape) and (min-width: 400px) and (max-width: 1024px) {

    .delete-dialog .delete-content .btn-primary,
    .cancel-dialog .cancel-content .btn-primary,
    .submit-dialog .submit-content .btn-primary {
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 0.02em;
        text-align: center;
        margin-left: 4px;
    }
}

@media (orientation: portrait) and (max-width: 720px) {

    .delete-dialog .delete-content .btn-primary,
    .cancel-dialog .cancel-content .btn-primary,
    .submit-dialog .submit-content .btn-primary {
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: 0.02em;
        text-align: center;
        margin-left: 4px;
    }
}

.succee-dialog .succee-content.conceal {
    display: none;
}

.succee-dialog .succee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    box-sizing: border-box;
    background: #fff;
    border-radius: 24px;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content {
        width: 464px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content {
        max-width: 464px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content {
        max-width: 400px;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content {
        max-width: 328px;
    }
}

.succee-dialog .succee-content .upload-success-icon {
    padding-top: 40px;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content .upload-success-icon {
        padding-top: 40px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content .upload-success-icon {
        padding-top: 40px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content .upload-success-icon {
        padding-top: 24px;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content .upload-success-icon {
        padding-top: 24px;
    }
}

.succee-dialog .succee-content .succee-title {
    border-radius: 24px 24px 0px 0px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content .succee-title {
        width: 100%;
        padding: 0 64px 24px 64px;
        font-size: 24px;
        line-height: 32px;
        color: #262626;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content .succee-title {
        width: 100%;
        padding: 0 64px 24px 64px;
        font-size: 24px;
        line-height: 32px;
        color: #262626;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content .succee-title {
        width: 100%;
        padding: 0 30px 16px 30px;
        font-size: 18px;
        line-height: 26px;
        color: #000000F2;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content .succee-title {
        width: 100%;
        padding: 0 30px 16px 30px;
        font-size: 18px;
        line-height: 26px;
        color: #000000F2;
    }
}

.succee-dialog .succee-content .succee-tips {
    letter-spacing: 0.02em;
    text-align: center;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content .succee-tips {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        padding: 0 40px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content .succee-tips {
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        padding: 0 40px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content .succee-tips {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        padding: 0 24px;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content .succee-tips {
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        padding: 0 24px;
    }
}

.succee-dialog .succee-content .succee-btns {
    width: 464px;
    text-align: center;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content .succee-btns {
        width: 464px;
        padding: 32px 40px 40px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content .succee-btns {
        width: 464px;
        padding: 32px 40px 40px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content .succee-btns {
        width: 400px;
        padding: 20px 24px;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content .succee-btns {
        width: 328px;
        padding: 20px 24px;
    }
}

.succee-dialog .succee-content .succee-btn {
    border-radius: 36px;
    border: 1px solid #DCDCDC;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

@media (min-width: 1440px) {
    .succee-dialog .succee-content .succee-btn {
        width: 100%;
        height: 52px;
        padding: 14px 28px 14px 28px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .succee-dialog .succee-content .succee-btn {
        width: 100%;
        height: 52px;
        padding: 14px 28px 14px 28px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .succee-dialog .succee-content .succee-btn {
        width: 100%;
        height: 44px;
        padding: 11px 24px 11px 24px;
    }
}

@media (max-width: 650px) {
    .succee-dialog .succee-content .succee-btn {
        width: 100%;
        height: 44px;
        padding: 11px 24px 11px 24px;
    }
}

.succee-dialog .succee-content .succee-btns .add-lottery {
    background: #000000;
    color: #FFFFFF;
}

.succee-dialog .succee-content .succee-btns .add-lottery-icon {
    display: inline-block;
    margin-right: 4px;
}

.process-dialog {
    background: #fff;
    padding-top: 2.5em;
    border-radius: 10px;
    overflow: hidden;
}

.process-dialog .process-content {
    padding: 1em 2em 3em;
    max-width: 80vw;
    max-height: 70vh;
    background: #fff;
    overflow-y: auto;
}

.process-dialog .process-title {
    font-size: 1.5em;
}

.process-dialog .pprocess-description {
    font-size: 0.8em;
    margin-top: 0.5em;
}

.process-dialog .content-wrapper {
    display: flex;
    padding: 0.5em 0em;
    margin-top: 1em;
    background: #fafafa;
    border-radius: 6px;
}

.process-dialog .voucher-arrow {
    width: 4%;
}

.process-dialog .voucher-text {
    font-size: 0.8em;
    text-align: center;
    color: #0000008c;
}

@media (orientation: portrait) and (max-width: 767px) {
    .process-dialog .content-wrapper {
        flex-direction: column;
    }

    .process-dialog .voucher-arrow {
        margin: 0.5em auto 0em;
        transform: rotate(90deg);
    }

}

.el-message-dialog {
    display: none;
}

.el-message-dialog-box {
    display: flex;
}

.submit-dialog .submit-content .btn-primary.is-disabled {
    background-color: var(--el-disabled-bg-color);
}

#upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input.el-input--suffix.other-model {
    display: none;
    border: 1px solid #dfdfdf;
    cursor: text;
    margin-top: 20px;
}

@media (orientation: portrait) and (min-width: 721px) and (max-width: 1024px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input.el-input--suffix.other-model {
        border-radius: 26px;
        padding: 0 34px;
    }
}

@media (orientation: portrait) and (max-width: 720px) {
    #upload-page .upload-wrapper .form-part .mo-upload-wrapper .upload-item-wrapper .select-container .el-input.el-input--suffix.other-model {
        border-radius: 12px;
        padding: 0 16px;
    }
}

#upload-page #uploadBox .is-allow-submit {
    display: block;
    color: red;
    font-size: 12px;
    line-height: 1;
    padding-top: 1em;
    text-align: center;
}

.mask-dialog .dialog-equity-qr {
    padding: 24px 0px 40px 0px;
    border-radius: 24px;
    text-align: center;
    background: #fff;
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr {
        width: 464px;
        height: 390px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr {
        width: 464px;
        height: 390px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr {
        width: 328px;
        height: 318px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr {
        width: 328px;
        height: 318px;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-header {
    text-align: right;
    padding: 0 24px;
}

.mask-dialog .dialog-equity-qr .equity-qr-exit {
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.75);
    background: rgba(231, 231, 231, 1);
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
}

.mask-dialog .dialog-equity-qr .equity-qr-icon {
    margin: 38px auto;
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        margin: 24px auto;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        margin: 24px auto;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-text {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-cancel {
    width: 280px;
    height: 44px;
    padding: 11px 24px 11px 24px;
    border-radius: 36px;
    border: 1px solid #DCDCDC;
    margin: 20px auto;
}

/* 弹框 */
.mask-dialog {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 101;
}

.mask-dialog.show {
    display: flex;
}

.dialog-main {
    position: relative;
}

.dialog-main .close-icon {
    position: absolute;
    top: 0.4em;
    right: 0.4em;
    width: 1em;
    height: 1em;
    padding: 0.5em;
    cursor: pointer;
    box-sizing: content-box;
}

.dialog-main .close-icon img {
    width: 100%;
    height: 100%;
}

.mask-dialog .user-dialog {
    width: 40em;
    max-width: 80vw;
    padding: 2em;
    background: #fff;
    border-radius: 0.3em;
}

.mask-dialog .dialog-main input {
    height: 2em;
    line-height: 2em;
    padding: 0.5em 0.5em;
    border: 0.1em solid #efefef;
    border-radius: 0.3em;
}

.mask-dialog .dialog-main textarea {
    border: 0.1em solid #efefef;
    padding: 0.5em;
    border-radius: 0.3em;
}

.user-dialog .my-info {
    font-size: 1.5em;
}

.dialog-main form {
    margin-bottom: 0px;
}

.user-dialog .form-item {
    margin-bottom: 1em;
}

.img-dialog .img-item {
    width: 100%;
    margin-bottom: 0.8em;
}

.img-dialog .title {
    color: #0000004d;
    margin-bottom: 0.2em;
}

.img-dialog .content {
    height: 1em;
    line-height: 1em;
    margin-bottom: 0.5em;
}

.img-dialog .content-description {
    min-height: 6em;
    line-height: 1em;
    margin-bottom: 0.5em;
    overflow: auto;
}

.dialog-main .label-text {
    display: block;
    font-size: 1em;
    margin-bottom: 0.3em;
}

.dialog-main .form-operate {
    text-align: center;
    margin-top: 1em;
}

.form-operate .cancel {
    display: inline-block;
    width: 5.5em;
    height: 3em;
    line-height: 3em;
    text-align: center;
    border-radius: 3em;
    color: #333;
    background: rgba(235, 235, 235, 1);
    cursor: pointer;
}

.form-operate .confirm {
    display: inline-block;
    width: 5.5em;
    height: 3em;
    line-height: 3em;
    text-align: center;
    border-radius: 3em;
    margin-left: 2em;
    color: #fff;
    background: rgba(0, 0, 0, 1);
    cursor: pointer;
}

.dialog-main input.error {
    border-color: red;
}

.dialog-main label.error {
    color: red;
    font-size: 0.8em;
}


.mask-dialog .img-dialog {
    width: 60em;
    height: auto;
    max-width: 80vw;
    padding: 2em;
    background: #fff;
    border-radius: 0.3em;
}

.img-dialog .img-content {
    width: 100%;
    display: flex;
    align-items: center;

}

.img-dialog .img-info {
    width: 30em;
    max-width: 50%;
}

.img-dialog .img-info-description {
    flex: 1;
    margin-left: 2em;
}

.img-dialog .form-operate {
    margin-top: 1.5em;
}

.process-dialog {
    background: #fff;
    padding-top: 2.5em;
    border-radius: 10px;
    overflow: hidden;
}

.process-dialog .process-content {
    padding: 1em 2em 3em;
    max-width: 80vw;
    max-height: 70vh;
    background: #fff;
    overflow-y: auto;
    box-sizing: border-box;
}

.process-dialog .process-title {
    font-size: 1.5em;
}

.process-dialog .pprocess-description {
    font-size: 0.8em;
    margin-top: 0.5em;
}

.process-dialog .content-wrapper {
    display: flex;
    padding: 0.5em 0em;
    margin-top: 1em;
    background: #fafafa;
    border-radius: 6px;
}

.process-dialog .content-wrapper .voucher-img {
    width: 100%;
}

.process-dialog .voucher-arrow {
    width: 4%;
}

.process-dialog .voucher-text {
    font-size: 0.8em;
    text-align: center;
    color: #0000008c;
}

.login-dialog .login-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 25em;
    max-width: 80vw;
    height: 14em;
    padding: 1.5em;
    background: #fff;
    border-radius: 1em;
    box-sizing: border-box;
}

.login-dialog .login-title {
    font-size: 1.5em;
}

.login-dialog .login-tips {
    font-size: 1em;
    color: #000000bf;
}

.login-dialog .login-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login-dialog .login-btn {
    width: 48%;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 2.5em;
    text-align: center;
    cursor: pointer;
}

.login-dialog .btn-register {
    border: 1px solid #dcdcdc;
}

.login-dialog .btn-login {
    color: #fff;
    background-color: #000;
}


@media (min-width: 1800px) {
    .process-dialog .process-content {
        max-width: 1024px;
    }
}

@media (min-width: 1400px) and (max-width: 1799px) {
    .process-dialog .process-content {
        max-width: 1024px;
    }
}

@media (max-width: 767px) {

    .img-dialog .img-info {
        max-width: 80%;
    }

    .img-dialog .img-content {
        align-items: center;
        flex-direction: column;
    }

    .img-dialog .img-info-description {
        width: 100%;
        margin-top: 1em;
        margin-left: 0em;
    }

    .img-dialog .content-description {
        min-height: auto;
        overflow: inherit;
    }

    .img-dialog .form-operate {
        margin-top: 0.5em;
    }

    .process-dialog .content-wrapper {
        flex-direction: column;
    }

    .process-dialog .voucher-arrow {
        margin: 0.5em auto 0em;
        transform: rotate(90deg);
    }

    .form-operate .cancel,
    .form-operate .confirm {
        width: 4em;
        height: 2em;
        line-height: 2em;
        border-radius: 2em;
    }
}

.process-content::-webkit-scrollbar {
    width: 4px;
}

.process-content::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}

.process-content::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

.mask-dialog .dialog-equity-qr {
    padding: 24px 0px 40px 0px;
    border-radius: 24px;
    text-align: center;
    background: #fff;
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr {
        width: 464px;
        height: 390px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr {
        width: 464px;
        height: 390px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr {
        width: 328px;
        height: 318px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr {
        width: 328px;
        height: 318px;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-header {
    text-align: right;
    padding: 0 24px;
}

.mask-dialog .dialog-equity-qr .equity-qr-exit {
    font-size: 12px;
    width: 24px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.75);
    background: rgba(231, 231, 231, 1);
    border-radius: 50%;
    font-weight: 700;
    text-align: center;
}

.mask-dialog .dialog-equity-qr .equity-qr-icon {
    margin: 38px auto;
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        margin: 24px auto;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-icon {
        margin: 24px auto;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-text {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.75);
}

@media (min-width: 1440px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 650px) {
    .mask-dialog .dialog-equity-qr .equity-qr-text {
        font-size: 14px;
        line-height: 22px;
    }
}

.mask-dialog .dialog-equity-qr .equity-qr-cancel {
    width: 280px;
    height: 44px;
    padding: 11px 24px 11px 24px;
    border-radius: 36px;
    border: 1px solid #DCDCDC;
    margin: 20px auto;
}

.loader {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: #f6f6f6;
    z-index: 101;
    text-align: center;
    color: #000000f2;
}

.loader.conceal {
    display: none;
}

@media (min-width: 1440px) {
    .loader {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }
}

@media (min-width: 1025px) and (max-width: 1439px) {
    .loader {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }
}

@media (min-width: 651px) and (max-width: 1024px) {
    .loader {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }
}

@media (max-width: 650px) {
    .loader {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }
}

.conceal {
    display: none;
}

@media (min-width: 1440px) {}

@media (min-width: 1025px) and (max-width: 1439px) {}

@media (min-width: 651px) and (max-width: 1024px) {}

@media (max-width: 650px) {}