.top-banner {
    background: linear-gradient(135.05deg, #BDDBFF 4.46%, #C9C5FF 55.5%);
    color: var(--color-block-darker);
}

.top-banner::before {
    content: none;
}

.top-banner h1 {
    font-size: 36px;
    line-height: 54px;
}

.top-banner .desc {
    font-size: 16px;
    font-weight: 500;
    margin: 0px auto 40px;
}

@keyframes indeterminate {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.aie-content h2 {
    text-align: left;
}

.creation-wrapper {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    text-align: left;
    overflow: hidden;
    position: relative;
    height: 588px;
}

.creation-wrapper .creation-left {
    width: 42%;
    height: 100%;
    background: var(--color-white-lighter);
    border-right: 1px solid var(--color-gray);
    position: relative;
    z-index: 1;
    padding: 20px 0 0;
    transition: all .2s;
}

.creation-wrapper.is-close .creation-left {
    margin-left: -42%;
    box-shadow: 0px 4px 5.7px 0px #0000001A;
}

.creation-wrapper.is-close .switch-box svg {
    transform: rotate(180deg);
}

.creation-wrapper .content-left {
    height: 100%;
    padding: 0 20px 68px;
}

.creation-wrapper .creation-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.creation-wrapper .form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative;
}

.creation-wrapper .form-item.w-100 {
    width: 100%;
}

.creation-wrapper .form-item.w-50 {
    width: calc(50% - 5px);
}

.creation-wrapper .form-item.words {
    display: none;
}

.creation-wrapper .form-item .error-msg {
    position: absolute;
    color: var(--color-red);
    font-weight: 400;
    font-size: 12px;
    bottom: -18px;
    left: 0;
}

.creation-wrapper .form-item label {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.creation-wrapper .form-item label {
    text-align: left;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.creation-wrapper .form-item textarea {
    background-color: transparent;
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--color-gray);
    resize: none;
    border-radius: 8px;
    height: 150px;
    padding: 8px;
    font-size: 14px;
    width: 100%;
    transition: all .2s;
}

.creation-wrapper .form-item textarea.is-error {
    border-color: var(--color-red);
}

.creation-wrapper textarea::placeholder {
    font-weight: 400;
    font-size: 14px;
    color: rgba(42, 48, 72, 0.4);
}

.creation-wrapper textarea::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: rgba(42, 48, 72, 0.4);
}

.creation-wrapper textarea::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: rgba(42, 48, 72, 0.4);
}

.creation-wrapper textarea:-ms-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    color: rgba(42, 48, 72, 0.4);
}

.creation-wrapper .select-box {
    position: relative;
    font-size: 14px;
}

.creation-wrapper .select-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
    cursor: pointer;
    border: 1px solid var(--color-gray);
    border-radius: 8px;
    height: 40px;
    padding: 9px 10px 10px 12px;
    font-size: 14px;
}

.creation-wrapper .select-desc {
    font-size: 14px;
}

.creation-wrapper .select-box.active .select-text {
    color: var(--color-primary);
}

.creation-wrapper .select-box .arrow-icon {
    min-width: 16px;
    width: 16px;
    height: 16px;
    margin: -4px 0 0 4px;
    transition: all .2s;
}

.creation-wrapper .select-box.active .arrow-icon {
    transform: rotate(180deg);
}

.creation-wrapper .select-list {
    position: absolute;
    top: 46px;
    left: 0;
    min-width: 130px;
    border-radius: 8px;
    box-shadow: 0px 4px 8.4px 2px #00000026;
    background: var(--color-white-lighter);
    padding: 4px;
    opacity: 0;
    z-index: 1;
    transition: all .2s;
    max-height: 240px;
    pointer-events: none;
}

.creation-wrapper .select-list::before {
    content: '';
    width: 100%;
    height: 13px;
    position: absolute;
    top: -10px;
    left: 0;
}

.creation-wrapper .form-footer .select-list {
    top: unset;
    bottom: 38px;
}

.creation-wrapper .select-box.active .select-list {
    opacity: 1;
    pointer-events: auto;
}

.creation-wrapper .select-list li {
    padding: 5px 11px;
    transition: all .2s;
    display: flex;
    align-items: center;
    border-radius: 4px;
    height: 32px;
    cursor: pointer;
    white-space: nowrap;
}

.creation-wrapper .select-list li:hover {
    background: #F2F3F7;
}

.creation-wrapper .select-list li.active {
    color: var(--color-primary);
}

.creation-wrapper .upgrade-box {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: #F6F4FF;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.creation-wrapper .upgrade-box .upgrade-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #4839EA;
    display: flex;
    align-items: center;
}

.creation-wrapper .upgrade-box .upgrade-title svg {
    margin-right: 6px;
}

.creation-wrapper .upgrade-box .use-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.creation-wrapper .upgrade-box .use-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    min-width: 150px;
}

.creation-wrapper .upgrade-box .use-list li svg {
    margin-right: 6px;
}

.creation-wrapper .upgrade-box .upgrade-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    background: linear-gradient(102.67deg, #5CFFF5 2.47%, var(--color-primary) 39.92%, #B124F3 90.82%);
    color: var(--color-white-lighter);
    cursor: pointer;
}

.creation-wrapper .form-footer {
    display: flex;
    width: 100%;
    height: 52px;
    border-top: 1px solid var(--color-gray);
    box-shadow: 0px -3px 13px 0px #D9D7E266;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white-lighter);
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.creation-wrapper .form-footer .select-text {
    height: 32px;
    padding: 5px 10px 4px 12px;
}

.creation-wrapper .button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 5px 20px;
    border-radius: 4px;
    background: var(--color-primary);
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white-lighter);
    cursor: pointer;
    transition: all .2s;
}

.creation-wrapper .button.light-bg {
    background: #F0EFFF;
    color: var(--color-primary);
}

.creation-wrapper .button:not(.is-disabled):not(.light-bg):hover {
    background: var(--color-primary-dark);
}

.creation-wrapper .button.light-bg:not(.is-disabled):hover {
    border-color: var(--color-primary);
}

.creation-wrapper .button.is-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.creation-wrapper .switch-results-btn {
    display: none;
}

.creation-wrapper .switch-box {
    width: 16px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(100%, -50%);
    background: var(--color-white-lighter);
    border: 1px solid var(--color-gray);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

.creation-wrapper .switch-box svg {
    transition: all .2s;
}

.creation-wrapper .creation-right {
    flex: 1;
    background: #F5F7FF;
    padding: 20px 24px 24px;
    position: relative;
    height: 100%;
    border-radius: 0 24px 24px 0;
}

.creation-wrapper .success-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.creation-wrapper .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.creation-wrapper .editor-box {
    width: 100%;
    flex: 1;
    max-height: calc(100% - 30px);
    border-radius: 8px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    background: var(--color-white-lighter);
    display: flex;
    flex-direction: column;
}

.creation-wrapper .generate-content {
    width: 100%;
    flex: 1;
    margin-bottom: 14px;
    padding: 20px 20px 0px;
}

.creation-wrapper .generate-content .editor-title {
    display: -webkit-box;
    overflow: hidden;
    padding-bottom: 7px;
    font-size: 32px;
    text-overflow: ellipsis;
    font-weight: 700;
    word-break: break-all;
    line-height: 48px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.creation-wrapper .generate-content p:last-child {
    white-space: break-spaces;
}

.creation-wrapper .operate-btn {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 14px;
}

.creation-wrapper .operate-btn .operate-item {
    position: relative;
}

.creation-wrapper .operate-btn .operate-item:last-child {
    margin-left: 30px;
}

.creation-wrapper .operate-btn svg {
    width: 24px;
    height: 24px;
    color: var(--color-block-drak);
    cursor: pointer;
}

.creation-wrapper .operate-btn .operate-item:hover svg {
    color: var(--color-primary);
}

.creation-wrapper .operate-item .tips {
    position: absolute;
    background: var(--color-block-drak);
    border: 1px solid var(--color-block-drak);
    color: var(--color-white-lighter);
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: var(--el-popper-border-radius);
    font-size: 12px;
    line-height: 20px;
    min-width: 10px;
    overflow-wrap: break-word;
    padding: 5px 11px;
    border-radius: 8px;
    z-index: 0;
    opacity: 0;
    transition: all .2s;
    white-space: nowrap;
}

.creation-wrapper .operate-item .tips::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: var(--color-block-drak) transparent transparent transparent;
}

.creation-wrapper .operate-item:hover .tips {
    z-index: 1;
    opacity: 1;
}

.creation-wrapper .fail-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.creation-wrapper .fail-box .fail-icon {
    width: 200px;
    height: 120px;
}

.creation-wrapper .fail-box .fail-title {
    font-size: 14px;
    font-weight: 600;
}

.creation-wrapper .fail-box .fail-desc {
    font-size: 12px;
    color: rgba(42, 48, 72, 0.6);
    margin: 8px auto;
}

.creation-wrapper .fail-box .regenerate-btn {
    min-width: 120px;
    height: 36px;
    padding: 7px 20px 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white-lighter);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    transition: all .2s;
    cursor: pointer;
}

.creation-wrapper .empty-loading-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.creation-wrapper .progress-box {
    width: 130px;
    margin-top: 34px;
}

.creation-wrapper .progress-box .progress-outer {
    background-color: #ebeef5;
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
    position: relative;
}

.creation-wrapper .progress-box .progress-inner {
    background-color: var(--color-primary);
    border-radius: 100px;
    height: 100%;
    left: 0;
    line-height: 1;
    position: absolute;
    top: 0;
    transition: width .6s ease;
    white-space: nowrap;
    animation: indeterminate 3s infinite;
    width: 50%;
    transform: translateZ(0);
}

.creation-wrapper .progress-box .progress-text {
    font-size: 14px;
    color: var(--color-block-drak);
    margin-top: 8px;
    text-align: center;
}

.creation-wrapper .switch-content {
    display: none;
}

@media(max-width: 1500px) {
    .top-banner {
        padding-top: 88px;
    }
}

@media (max-width: 1100px) {
    .creation-wrapper .creation-left {
        width: 50%;
    }

    .creation-wrapper.is-close .creation-left {
        margin-left: -50%;
    }

    .creation-wrapper .content-left {
        padding: 0 14px 68px;
    }

    .creation-wrapper .form-footer {
        padding: 0 14px;
    }

    .creation-wrapper .form-footer .select-desc {
        font-size: 12px;
    }

    .creation-wrapper .operate-btn .operate-item:last-child {
        display: none;
    }
}

@media (max-width: 992px) {
    .creation-wrapper .creation-left {
        padding-top: 52px;
    }

    .creation-wrapper .upgrade-box {
        padding: 8px;
    }

    .creation-wrapper .button {
        padding: 5px 10px;
    }

    .creation-wrapper .creation-right {
        padding: 14px;
        border-radius: 0;
    }
}

@media (max-width: 525px) {
    .gather-wrapper {
        margin-bottom: 60px;
    }

    .gather-wrapper .is-results .creation-left {
        display: none;
    }

    .gather-wrapper .is-results .creation-right {
        display: block;
    }

    .creation-wrapper .creation-left {
        width: 100%;
    }

    .creation-wrapper.is-close .creation-left {
        margin-left: 0%;
        box-shadow: none;
    }

    .creation-wrapper .switch-box {
        display: none;
    }

    .creation-wrapper .creation-right {
        display: none;
        padding-bottom: 68px;
    }

    .creation-wrapper .form-item {
        margin-bottom: 10px;
    }

    .creation-wrapper .form-item.w-50 {
        width: 100%;
    }

    .creation-wrapper .form-item.words {
        display: block;
    }

    .creation-wrapper .form-item .error-msg {
        bottom: -16px;
    }

    .creation-wrapper .upgrade-box {
        margin-top: 6px;
    }

    .creation-wrapper .form-footer .select-box {
        display: none;
    }

    .creation-wrapper .form-footer .form-btn {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .creation-wrapper .form-footer .form-btn.is-generated {
        justify-content: space-between;
    }

    .creation-wrapper .form-footer .form-btn.is-generated .switch-results-btn {
        display: block;
    }

    .creation-wrapper .switch-content {
        display: flex;
        width: 100%;
        height: 52px;
        border-top: 1px solid var(--color-gray);
        box-shadow: 0px -3px 13px 0px #D9D7E266;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-white-lighter);
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
    }

    .creation-wrapper .button {
        padding: 5px 20px;
        width: calc(50% - 5px);
    }

    .creation-wrapper .generate-content {
        padding: 14px 14px 0px;
    }
}