* {
    -webkit-tap-highlight-color: transparent;
}


* {
    -webkit-touch-callout: none;
}

a, button, input, textarea {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button, input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0; /* 可选，去掉圆角 */
}

.sign-in-button {
    color: #4822a5 !important;
}

.first-section {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    height: 685px;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
}

.text-to-video-container {
}

.text-to-video-header {
    background: transparent;
    box-shadow: unset;
}

.create-content-wrapper {
    width: 100%;
    margin-top: 196px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.create-content-wrapper .create-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.create-content-wrapper .create-content .content-title {
    color: var(--text-primary);
    text-align: center;
    margin: 0px;
    font-family: Vizard-Title !important;
    font-size: 82px;
    line-height: 78px;
}

.create-content-wrapper .create-content .content-des {
    color: var(--text-sencondary);
    text-align: center;
    margin-top: 20px;
    margin-bottom: 48px;
    font-family: Mazzard-500;
    font-size: 18px;
    line-height: normal;
}

.create-content-wrapper .create-content .create-input-wrapper {
    position: relative;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: transparent;
    border: 2px solid #f5f5f6;
    transition: border-color 0.3s ease;
    width: 731px;
    height: 156px;
}

.create-content-wrapper .create-content .create-input-wrapper.focused {
    --border-width: 2px;
}

.create-content-wrapper .create-content .create-input-wrapper.focused::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: conic-gradient(from var(--angle) at 50% 50%, #9559FF 0deg, #DB96FB 119.42308187484741deg, #FDB2C5 237.11538791656494deg, #9559FF 354.80769395828247deg);
    transition: opacity 0.3s ease;
    pointer-events: none;
    animation: spin 6s linear infinite running;
    opacity: 1;
}

.create-content-wrapper .create-content .create-input-area {
    display: flex;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 18px;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    background: #fff;
}

.create-content-wrapper .create-content .create-input-area .create-input {
    resize: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0;
    border-radius: 0px;
    box-sizing: border-box;
    border: none;
    background: #fff;
    color: #141c29;
    font-family: Inter-Regular;
    font-size: 16px;
    line-height: 19px;
}

.create-content-wrapper .create-content .create-input-area .create-input::placeholder {
    font-family: Inter-Regular;
    color: #8e99af;
    font-size: 16px;
    line-height: 19px;
}

.create-content-wrapper .create-content .create-input-area .create-input::-webkit-scrollbar {
    width: 6px;
}

.create-content-wrapper .create-content .create-input-area .create-input::-webkit-scrollbar-track {
    display: none;
}

.create-content-wrapper .create-content .create-input-area .create-input::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #eaecef;
}

.create-content-wrapper .create-content .create-input-area .create-icon {
    display: flex;
    width: 84px;
    height: 84px;
    padding: 22px 17px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    background: #f7f7f7;
    cursor: pointer;
}

.create-content-wrapper .create-content .create-input-area .create-icon:hover,
.create-content-wrapper .create-content .create-input-area .create-icon:active {
    background: #dcdfe4;
}

.create-content-wrapper .create-content .create-input-area .create-icon img {
    width: 40px;
    height: 40px;
    user-select: none;
}

/* create-think-button-area */
.create-content-wrapper .create-content .create-think-button-area {
    margin-top: 20px;
    width: 731px;
    height: 52px;
}

.create-content-wrapper .create-content .create-think-button-area .menu {
    display: flex;
    padding: 0 12px;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.create-content-wrapper .create-content .create-think-button-area .menu .close {
    display: flex;
    font-size: 24px;
    cursor: pointer;
    color: #545f74;
    transition: all 0.3s ease;
}

.create-content-wrapper .create-content .create-think-button-area .menu .close:hover {
    transform: scale(1.2);
}

.create-content-wrapper .create-content .create-think-button {
    display: flex;
    padding: 16px 12px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 300px;
    background: #fff;
    transition: all 0.3s ease;
}

.create-content-wrapper .create-content .create-think-button .think-content {
    display: flex;
    gap: 8px;
    transition: all 0.3s ease;
    align-items: center;
}

.create-content-wrapper .create-content .create-think-button .think-content iconpark-icon {
    width: 20px;
    height: 17px;
    font-size: 16px;
}

.create-content-wrapper .create-content .create-think-button .think-text {
    color: #141c29;
    text-align: center;
    font-family: Inter-Medium !important;
    font-size: 14px;
    line-height: 17px;
}

.create-content-wrapper .create-content .create-think-button:hover {
    transform: scale(1.05);
}

.create-content-wrapper .create-content .create-think-button:hover .think-content {
    transform: scale(0.95238);
}

/* sub-button */
.create-content-wrapper .create-content .sub-button {
    opacity: 1;
    transition: all 0.3s ease;
}

.create-content-wrapper .create-content .sub-button.select-item {
    opacity: 0;
}

/* fade-slide */
.fade-slide-enter-active,
.fade-slide-leave-active {
    transition: all 0.3s ease;
}

.fade-slide-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-slide-leave-to {
    opacity: 0;
    transform: translateY(-20px);
}

/* rotate animation */
@property --angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
}

@keyframes spin {
    to {
        --angle: 1turn;
    }
}

/* glow effect */
.create-input-wrapper.focused .glow {
    position: absolute;
    inset: calc(var(--border-width) * -1);
    border-radius: inherit;
}

.create-input-wrapper.focused .glow::after {
    content: '';
    position: absolute;
    inset: calc(var(--border-width) * -1);
    z-index: -1;
    border: calc(var(--border-width) * 2) solid transparent;
    border-radius: inherit;
    background-image: conic-gradient(from var(--angle) at 50% 50%, #9559FF 0deg, transparent 90deg, transparent 180deg, transparent 270deg, #9559FF 360deg);
    background-origin: border-box;
    -webkit-mask: linear-gradient(black, black), linear-gradient(black, black);
    mask: linear-gradient(black, black), linear-gradient(black, black);
    -webkit-mask-clip: content-box, border-box;
    mask-clip: content-box, border-box;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin 4s linear infinite running;
}

.white-glow { filter: blur(20px); }
.purple-glow { filter: blur(7px); }
.red-glow { filter: blur(8px); }
.cyan-glow { filter: blur(15px); }

.create-input-wrapper.focused .purple-glow::after {
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 0deg, #DB96FB 90deg, transparent 180deg);
    border: calc(var(--border-width) * 1) solid transparent;
}

.create-input-wrapper.focused .red-glow::after {
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 180deg, #FDB2C5 270deg, transparent 360deg);
    border: calc(var(--border-width) * 1) solid transparent;
}

.create-input-wrapper.focused .cyan-glow::after {
    background-image: conic-gradient(from var(--angle) at 50% 50%, transparent 90deg, #9559FF 180deg, transparent 270deg);
    border: calc(var(--border-width) * 2) solid transparent;
}


.example-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    padding: 88px 0;
    margin: 0 auto;
}

.example-section h2 {
    margin: 0 0 16px;
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px;
}

.example-section p {
    margin: 0 0 48px;
    color: #3C4659;
    text-align: center;
    font-family: "Vizard-Text" !important;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

.example-section .video-list {
    display: flex;
    gap: 20px;
}

.example-section .video-list .item-wrapper {
    width: 194px;
    height: 590px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.hover-video {
    width: 443px !important;
    cursor: pointer;
}

.example-section .video-list .item-wrapper video {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

.how-to-use-section {
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 88px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.how-to-use-section h2 {
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px;
    margin: 0;
}

.how-to-use-section .step-card-wrapper {
    display: flex;
    justify-content: center;
    gap: 70px;
}

.how-to-use-section .step-card-wrapper .step-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 340px;
}

.how-to-use-section .step-card-wrapper .step-card img {
    width: 340px;
    height: 248px;
    display: block;
}

.how-to-use-section .step-card-wrapper .step-card h3 {
    margin: 40px 0 10px;
    color: #141C29;
    font-family: "Vizard-Text-SemiBold" !important;
    font-size: 24px;
    font-style: normal;
    line-height: 30px; /* 125% */
}

.how-to-use-section .step-card-wrapper .step-card .step-text {
    margin: 0;
    color: #3C4659;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 16px;
    font-style: normal;
    line-height: 24px; /* 150% */
}

.how-to-use-section .step-card-wrapper .step-card .step-text ul {
}

.how-to-use-section .step-card-wrapper .step-card .step-text ul li::marker {
    font-size: 0px;
}

.inner-link-section {
    padding: 88px 0;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin: 0 auto;
}

.inner-link-section h2 {
    margin: 0;
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px; /* 100% */
}

.inner-link-section .link-area {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    width: 1300px;
}

.inner-link-section .link-area .link-button {
    padding: 16px 24px;
    border-radius: 100px;
    background: #EAECEF;

    color: #000;
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    text-decoration: none;
}

.inner-link-section .link-area .link-button:hover {
    color: #FFF;
    background: #8061DF;
}


.faq-section {
    padding: 88px 120px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: #F2F4F7;
    width: 100%;
    box-sizing: border-box;
}

.faq-section h2 {
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px; /* 100% */
    margin: 0;
}

.faq-section .faq-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-section .faq-content .faq-item {
    width: 100%;
    display: flex;
    padding: 24px;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    background: #FFF;
    cursor: pointer;
}

.faq-section .faq-content .faq-item .question-area {
    padding: 8px 0;
    position: relative;
}

.faq-section .faq-content .faq-item .question-area .question {
    color: #141C29;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.faq-section .faq-content .faq-item .question-area .icon-area {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-section .faq-content .faq-item .question-area .icon-area iconpark-icon {
    font-size: 20px;
    color: #8061DF;
}

.faq-section .faq-content .faq-item .answer-area {
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-section .faq-content .faq-item .answer-area .answer {
    color: #545F74;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    margin: 0;
    padding: 8px 0;
}

.what-to-use-section {
    padding: 88px 0;
    margin: 0 auto;
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.what-to-use-section h2 {
    margin: 0 0 20px;
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px; /* 100% */
}

.what-to-use-section p {
    color: #3C4659;
    text-align: center;
    font-family: "Vizard-Text" !important;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    margin: 0;
}

.what-to-use-section .content-area {
    display: flex;
    gap: 30px;
    margin: 48px 0 16px;
    width: 1360px;
}

.what-to-use-section .content-area .nav-button {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    border-radius: 100px;
    background: #F5EEFF;
    border: 2px solid transparent;
    margin-top: 265px;
}

.what-to-use-section .content-area .nav-button iconpark-icon {
    font-size: 32px;
    color: #4822A5;
}

.what-to-use-section .content-area .nav-button:hover {
    background: #fff;
    transition: all 0.1s ease;
    border: 2px solid #4822A5;
    cursor: pointer;
}

.what-to-use-section .content-area .prev {
    /* 留空占位 */
}

.what-to-use-section .content-area .next {
    transform: rotate(180deg);
}

.what-to-use-section .content-area .carousel {
    width: 100%;
    overflow: hidden;
}

.what-to-use-section .content-area .carousel .slides-container {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
    flex-shrink: 0;
}

.what-to-use-section .content-area .carousel .slides-container .slide {
    width: 340px;
    flex-shrink: 0;
    transition: all 0.6s ease;
}

.what-to-use-section .content-area .carousel .slides-container .slide .image-container {
    width: 100%;
    height: 590px;
    margin-bottom: 30px;
    transition: all 0.6s ease;
}

.what-to-use-section .content-area .carousel .slides-container .slide .image-container img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    transition: all 0.6s ease;
}

.slide.active {
    width: 440px;
}

.slide.active .image-container {
    height: 590px;
}

.slide.active img {
    height: 590px;
}

.what-to-use-section .content-area .carousel .slides-container .slide .caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 327px;
    margin: 0 auto;
}

.what-to-use-section .content-area .carousel .slides-container .slide .caption .title {
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 36px;
    font-style: normal;
    line-height: 36px;
    margin: 0;
}

.what-to-use-section .content-area .carousel .slides-container .slide .caption .description {
    color: #545F74;
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    margin: 0;
}

.what-to-use-section .content-area .carousel .slides-container .slide.active {
    width: 440px;
}

.what-to-use-section .content-area .carousel .slides-container .slide.active .image-container {
    height: 590px;
}

.what-to-use-section .content-area .carousel .slides-container .slide.active img {
    height: 590px;
}

.what-to-use-section .nav-dot {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 10px;
    color: #D9D9D9;
}

.what-to-use-section .nav-dot iconpark-icon {
    font-size: 10px;
    width: 10px;
    height: 10px;
    color: #D9D9D9;
}

.what-to-use-section .nav-dot .dot-active {
    font-size: 10px;
    color: #141C29;
}

.avatar-section {
    max-width: 1440px;
    height: 865px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    background-size: 100% 100%;
    position: relative;
}

.avatar-section h2 {
    color: #141C29;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 56px;
    font-style: normal;
    line-height: 56px;
    margin: 325px 0 0;
}

.avatar-section button {
    display: flex;
    height: 56px;
    padding: 15px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    border-radius: 99px;
    background: #000;
    border: 2px solid transparent;
}

.avatar-section button span {
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.avatar-section button iconpark-icon {
    font-size: 24px;
}

.avatar-section button:hover {
    background: transparent;
    border: 2px solid #141C29;
    color: #141C29;
}

.avatar-section .avatar-area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.avatar-section .avatar-area .avatar-item {
    position: absolute;
}

.avatar-section .avatar-area .avatar-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.avatar-section .avatar-area .avatar-item .tooltip-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-cta-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
}

.footer-cta-section h2 {
    color: #FFF;
    text-align: center;
    font-family: "Vizard-Title" !important;
    font-size: 60px;
    font-style: normal;
    line-height: 60px; /* 100% */
    margin: 0 0 24px;
    z-index: 10;
    pointer-events: none;
}

.footer-cta-section p {
    color: #FFF;
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 18px;
    font-style: normal;
    line-height: 18px; /* 100% */
    margin: 0 0 48px;
    z-index: 10;
    pointer-events: none;
}

.footer-cta-section button {
    display: flex;
    height: 56px;
    padding: 15px 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 99px;
    background: #FFF;
    color: #141C29;
    border: none;
    z-index: 10;
}

.footer-cta-section button span {
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
}

.footer-cta-section button iconpark-icon {
    font-size: 24px;
}

.footer-cta-section button:hover {
    color: #FFF !important;
    background: #4822A5;
    cursor: pointer;
}

.footer-cta-section .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
}

.button-text {
    color: #141C29 !important;
}

.tooltip-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.tooltip {
    position: absolute;
    z-index: 100;
    white-space: nowrap;
    padding: 8px 12px;
    color: #FFF;
    text-align: center;
    font-family: "Vizard-Text-Medium", sans-serif;
    font-size: 16px;
    line-height: 24px;
    background: #8061DF;
    border-radius: 6px;
}

/* 位置 */
.tooltip.right {
    left: 100%;
    margin-left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.tooltip.left {
    right: 100%;
    margin-right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.tooltip.top {
    bottom: 100%;
    left: 50%;
    margin-bottom: 10px;
    transform: translateX(-50%);
}

.tooltip.bottom {
    top: 100%;
    left: 50%;
    margin-top: 10px;
    transform: translateX(-50%);
}

/* 箭头 */
.tooltip::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
}

.tooltip.top::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-color: #8061DF transparent transparent;
}

.tooltip.bottom::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 6px 6px;
    border-color: transparent transparent #8061DF;
}

.tooltip.left::after {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #8061DF;
}

.tooltip.right::after {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-color: transparent #8061DF transparent transparent;
}

@media (max-width: 640px) {
    .first-section {
        background-size: 100% 115%;
        background-repeat: no-repeat;
        display: flex;
        padding: 1rem .12rem .46rem;
        flex-direction: column;
        align-items: center;
        flex-shrink: 0;
        align-self: stretch;
        height: auto;
    }

    .mobile-create-content-wrapper {
        margin-top: 0;
    }

    .create-content-wrapper .create-content .content-title {
        color: #141C29;
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: 43px;
        font-style: normal;
        line-height: 43px; /* 100% */
    }

    .create-content-wrapper .create-content .content-des {
        color: #3C4659;
        text-align: center;
        font-family: Vizard-Text;
        font-size: 16px;
        font-style: normal;
        line-height: 20px; /* 125% */
    }

    .create-content-wrapper .create-content .create-input-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: .2rem;
        border: 2px solid #F5F5F6;
        background: #FFF;
        width: 100%;
        height: 1.36rem;
    }

    .create-input-area {
        position: relative;
        padding: .14rem;
        display: flex;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
        border-radius: 18px;
        justify-content: space-between;
        align-items: center;
        z-index: 1;
        background: #fff;
    }

    textarea {
        height: 100%;
        overflow: auto;
        padding: 0;
        border-radius: 0;
        box-sizing: border-box;
        border: none;
        background: #fff;
        color: #141c29;
        font-family: Inter-Regular;
        font-size: 16px;
        line-height: 19px;
    }

    .create-content-wrapper .create-content .create-think-button {
        padding: .16rem .15rem;
        gap: .08rem;
    }

    .create-content-wrapper .create-content .create-think-button .think-text {
        font-size: .14rem;
        line-height: .17rem;
    }

    .create-content-wrapper .create-content .create-input-area .create-input {
        padding-right: 54px;
    }

    .create-content-wrapper .create-content .create-input-area .create-icon {
        position: absolute;
        bottom: 14px;
        right: 14px;
        width: auto;
        height: auto;
        padding: 7px;
        border-radius: 10px;
    }

    .create-content-wrapper .create-content .create-think-button-area {
        width: auto;
        height: auto;
    }

    .create-content-wrapper .create-content .create-think-button-area .menu {
        flex-wrap: wrap;
        padding: 0;
    }
    /* example-section */
    .example-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: .4rem .16rem;
    }
    .example-section h2 {
        margin: 0 0 .16rem;
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
    }
    .example-section p {
        margin: 0 0 .32rem;
        color: var(--text-sencondary);
        text-align: center;
        font-family: "Vizard-Text" !important;
        font-size: .18rem;
        font-style: normal;
        line-height: normal;
    }
    .example-section .video-list {
        display: flex;
        gap: .10rem;
        overflow: auto;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .example-section .video-list::-webkit-scrollbar {
        display: none;
    }
    .example-section .video-list .item-wrapper {
        width: 2rem;
        height: 3.55rem;
        flex-shrink: 0;
    }

    /* how-to-use-section */
    .how-to-use-section {
        box-sizing: border-box;
        padding: .4rem .16rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .32rem;
    }
    .how-to-use-section h2 {
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
        margin: 0;
    }
    .how-to-use-section .step-card-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: .3rem;
    }
    .how-to-use-section .step-card-wrapper .step-card {
        padding: .25rem 0;
        display: flex;
        flex-direction: column;
        max-width: 3.4rem;
    }
    .how-to-use-section .step-card-wrapper .step-card img {
        width: 3.4rem;
        height: 2.48rem;
        display: block;
    }
    .how-to-use-section .step-card-wrapper .step-card h3 {
        margin: .2rem 0 .1rem;
        color: var(--text-primary);
        font-family: "Vizard-Text-SemiBold" !important;
        font-size: .24rem;
        font-style: normal;
        line-height: .3rem;
    }
    .how-to-use-section .step-card-wrapper .step-card .step-text {
        margin: 0;
        color: var(--text-sencondary);
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: .24rem;
    }
    .how-to-use-section .step-card-wrapper .step-card .step-text ul {
        list-style-type: disc;
        padding-left: .15rem;
    }
    .how-to-use-section .step-card-wrapper .step-card .step-text ul li::marker {
        font-size: .24rem;
    }

    /* what-to-use-section */
    .what-to-use-section {
        padding: .4rem .16rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }
    .what-to-use-section h2 {
        margin: 0 0 .2rem;
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
    }
    .what-to-use-section p {
        color: var(--text-sencondary);
        text-align: center;
        font-family: "Vizard-Text" !important;
        font-size: .18rem;
        font-style: normal;
        line-height: normal;
        margin: 0;
    }
    .what-to-use-section .content-area {
        display: flex;
        margin: .32rem 0;
        align-items: center;
        width: 3.4rem;
    }
    .what-to-use-section .content-area .carousel {
        overflow: hidden;
    }
    .what-to-use-section .content-area .carousel .slides-container {
        display: flex;
        gap: .3rem;
        flex-shrink: 0;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide {
        flex-shrink: 0;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide .image-container {
        margin-bottom: .2rem;
        height: auto;
        transition: none;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide .image-container img {
        width: 3.4rem;
        height: 4rem;
        display: block;
        object-fit: cover;
        border-radius: .28rem;
        transition: none;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide .caption {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .05rem;
        width: 3.4rem;
        margin: 0 auto;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide .caption .title {
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
        margin: 0;
    }
    .what-to-use-section .content-area .carousel .slides-container .slide .caption .description {
        color: var(--text-tertiery);
        text-align: center;
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: .24rem;
        margin: 0;
    }
    .what-to-use-section .button-area {
        display: flex;
        gap: .6rem;
    }
    .what-to-use-section .button-area .nav-button {
        display: flex;
        width: .48rem;
        height: .48rem;
        padding: .06rem;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        aspect-ratio: 1/1;
        border-radius: 1rem;
        background: #F5EEFF;
        border: none;
    }
    .what-to-use-section .button-area .nav-button iconpark-icon {
        font-size: .36rem;
        width: .36rem;
        height: .36rem;
        color: #4822A5;
    }
    .what-to-use-section .button-area .nav-button:active {
        background: #fff;
        border: .02rem solid #4822A5;
    }

    /* avatar-section */
    .avatar-section {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        background-size: 100% 100%;
        position: relative;
        padding: .4rem .16rem;
        height: auto;
    }
    .avatar-section h2 {
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
        margin: 0 0 .28rem;
    }
    .avatar-section button {
        display: flex;
        padding: .15rem .32rem;
        justify-content: center;
        align-items: center;
        gap: .1rem;
        color: #FFF;
        border-radius: .99rem;
        background: #000;
        border: none;
        margin-bottom: .32rem;
    }
    .avatar-section button span {
        text-align: center;
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: normal;
        white-space: nowrap;
    }
    .avatar-section button iconpark-icon {
        font-size: .24rem;
    }
    .avatar-section button:hover {
        background: transparent;
        border: 2px solid var(--icon-primary);
        color: var(--text-primary);
    }
    .avatar-section .avatar-area {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        row-gap: .24rem;
        column-gap: .16rem;
        position: relative;
        height: auto;
    }
    .avatar-section .avatar-area .avatar-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: .16rem;
        width: 1.03rem;
        position: relative;
    }
    .avatar-section .avatar-area .avatar-item img {
        width: 1rem;
        height: 1rem;
        display: block;
    }
    .avatar-section .avatar-area .avatar-item .comment {
        color: var(--text-sencondary);
        text-align: center;
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: .24rem;
    }

    /* inner-link-section */
    .inner-link-section {
        padding: .4rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .32rem;
        margin: 0 auto;
    }
    .inner-link-section h2 {
        margin: 0;
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
        padding: 0 .16rem;
    }
    .inner-link-section .link-area {
        display: flex;
        gap: .16rem;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }
    .inner-link-section .link-area .link-button {
        padding: .16rem .24rem;
        border-radius: 100px;
        background: #EAECEF;
        color: #000;
        text-align: center;
        font-family: "Vizard-Text" !important;
        font-size: .18rem;
        font-style: normal;
        line-height: normal;
    }
    .inner-link-section .link-area .link-button:hover {
        color: #FFF;
        background: #8061DF;
    }

    /* faq-section */
    .faq-section {
        padding: .4rem .16rem;
        display: flex;
        flex-direction: column;
        gap: .2rem;
        background: #F2F4F7;
    }
    .faq-section h2 {
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .36rem;
        font-style: normal;
        line-height: .36rem;
        margin: 0;
    }
    .faq-section .faq-content {
        display: flex;
        flex-direction: column;
        gap: .24rem;
    }
    .faq-section .faq-content .faq-item {
        width: 100%;
        display: flex;
        padding: .24rem .32rem;
        flex-direction: column;
        gap: .24rem;
        border-radius: .12rem;
        background: #FFF;
        box-sizing: border-box;
    }
    .faq-section .faq-content .faq-item .question-area {
        position: relative;
    }
    .faq-section .faq-content .faq-item .question-area .question {
        color: var(--text-primary);
        font-family: "Vizard-Text-Medium" !important;
        font-size: .18rem;
        font-style: normal;
        line-height: normal;
        margin: 0;
        width: 2.45rem;
    }
    .faq-section .faq-content .faq-item .question-area .icon-area {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: .24rem;
        display: flex;
    }
    .faq-section .faq-content .faq-item .question-area .icon-area iconpark-icon {
        font-size: .24rem;
        color: #8061DF;
    }
    .faq-section .faq-content .faq-item .answer-area .answer {
        color: var(--text-tertiery);
        font-family: "Inter-Regular" !important;
        font-size: .14rem;
        font-style: normal;
        line-height: normal;
        margin: 0;
    }

    /* footer-cta-section */
    .footer-cta-section {
        padding: .4rem 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #000;
    }
    .footer-cta-section h2 {
        color: #FFF;
        text-align: center;
        font-family: "Vizard-Title" !important;
        font-size: .4rem;
        font-style: normal;
        line-height: .4rem;
        margin: 0 0 .16rem;
        max-width: 2.79rem;
    }
    .footer-cta-section p {
        color: #FFF;
        text-align: center;
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: .18rem;
        margin: 0 0 .48rem;
        max-width: 2.79rem;
    }
    .footer-cta-section button {
        display: flex;
        padding: .15rem .32rem;
        justify-content: center;
        align-items: center;
        gap: .1rem;
        flex-shrink: 0;
        border-radius: .99rem;
        background: #FFF;
    }
    .footer-cta-section button span {
        color: var(--text-primary);
        text-align: center;
        font-family: "Vizard-Text-Medium" !important;
        font-size: .16rem;
        font-style: normal;
        line-height: normal;
    }
    .footer-cta-section button iconpark-icon {
        font-size: .24rem;
        color: var(--text-primary);
    }
}

.win{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-win{
    background: #FFFFFF;
    border-radius: 12px;
    width: 436px;
    position: relative;
}
.close-button{
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    color: #B0B0B0; /* var(--text-disabled) */
    cursor: pointer;
}
.need-help{
    color: #6B6B6B; /* var(--text-sencondary) */
    font-family: Inter-Regular;
    font-size: 13px;
    line-height: 17px;
    height: 40px;
    width: 100%;
    background: #F5F5F5; /* var(--background-disabled) */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 12px 12px;
}
.need-help span{
    text-decoration: underline;
    cursor: pointer;
    margin: 0px 4px;
}

.login-input,
.register-input
{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 16px;
}

.login-win .title {
    color: #3c4659; /* --text-sencondary */
    font-size: 22px;
    line-height: 22px;
    padding: 40px 0 24px;
    text-align: center;
    font-family: "Vizard-Text-Medium" !important;
}

.login-win .or {
    color: #a7aab0; /* --text-disabled */
    font-family: Inter-Regular;
    font-size: 14px;
    line-height: 17px;
    margin: 16px 0;
    text-align: center;
}

.login-win .input-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.login-win .input-area .input-area-input {
    position: relative;
    width: 100%;
}

.login-win .input-area .input-area-input input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 24px;
    background: #f2f4f7; /* --background-page-tertiary */
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
    font-family: Inter-Regular;
    border: 2px solid transparent;
    color: #3c4659 !important; /* --text-sencondary */
    box-sizing: border-box;
}

.login-win .input-area .input-area-input input:hover {
    border-color: #DCDFE4; /* --border-secondary */
}

.login-win .input-area .input-area-input input:focus {
    border-color: #3c4659; /* --text-sencondary */
}

.login-win .input-area .input-area-input input.password {
    padding-right: 62px !important;
}

.login-win .input-area .input-area-input .eye-area {
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
}

.login-win .input-area .input-area-input .eye-icon {
    width: 100%;
    height: 100%;
    font-size: 24px;
    cursor: pointer;
    color: #3c4659; /* --text-sencondary */
}

.login-win .input-area .error-input {
    border-color: #ff4233 !important; /* --text-error */
}

.login-win .forget-password {
    color: #3c4659; /* --text-sencondary */
    font-family: Inter-Regular;
    font-size: 13px;
    line-height: 22px;
    text-decoration-line: underline;
    text-align: center;
    width: 90%;
    margin: 16px auto;
    cursor: pointer;
    user-select: none;
}

.login-win .confirm-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 12px;
    font-family: Inter-Medium;
    font-size: 14px;
    color: #4822a5 !important;
    background-color: #e8deff;
}

.login-win .confirm-button:hover {
    cursor: pointer;
    background-color: #F5EEFF;
}

.login-win .confirm-button iconpark-icon {
    font-size: 20px;
}

.error-text {
    font-family: Inter-Regular;
    font-size: 12px;
    line-height: 20px;
    margin-top: 2px;
    color: #ff4233; /* --text-error */
}

.account-bottom {
    margin-top: 70px;
    text-align: center;
    color: #3c4659; /* --text-sencondary */
    font-family: Inter-Regular;
    font-size: 14px;
    line-height: 17px;
}

.account-bottom span {
    color: #421aa0; /* --button-brand-enable */
    cursor: pointer;
    user-select: none;
}



.sign-up {
    margin-top: 16px;
}

.policy-text {
    font-family: Inter-Regular;
    margin: 16px auto 0;
    font-size: 13px;
    line-height: 22px;
    color: #6e788e; /* var(--color-bice-700) */
    text-align: center;
}

.policy-text .policy {
    color: #6e788e;
    text-decoration: underline;
}

.account-bottom {
    margin-top: 48px;
}

.send-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    background-color: #EBF8FF; /* var(--background-active) */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-success {
    width: 100%;
    padding-top: 40px;
}

.send-success-title {
    text-align: center;
    color: #3C4659; /* var(--text-sencondary) */
    font-family: "Vizard-Text-Medium" !important;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 4px;
}

.email-is-sent-tips {
    color: #3C4659;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 14px;
    line-height: 22px;
}

.email-is-sent-tips span {
    color: #3C4659;
    font-family: Inter-Medium;
    font-size: 14px;
}

.resend-button-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 12px;
}

.resend-button-area .confirm-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 136px;
    font-family: Inter-Medium;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    border-radius: 12px;
}

.refresh-btn {
    color: #00A9FF; /* var(--text-action) */
    font-family: Inter-Medium;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.google-login-button {
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid #EAECEF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: Inter-Regular;
    font-weight: 500;
    font-size: 14px;
}

.google-login-button:hover {
    border: 2px solid #DCDFE4 !important;
}

.google-icon {
    display: block;
    top: 50%;
    left: 16px;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    position: absolute;
}

.loading {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: not-allowed;
}

.loading-animation {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.google-button-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.google-button-area > div {
    width: 100% !important;
    height: 100%;
}

/* 忘记密码 */
.login-win > .forget-password,
.login-win > .forget-password * {
    text-decoration: none !important;
}

.login-win >.forget-password {
    padding-top: 40px;
    width: 90%;
    margin: 0 auto 28px;
    cursor: auto;
}

.login-win > .forget-password .login-input {
    width: 100%;
}

.forget-password .back {
    position: absolute;
    display: flex;
    align-items: center;
    top: 16px;
    left: 16px;
    cursor: pointer;
    color: #3C4659; /* var(--text-sencondary) */
    font-family: Inter-Regular;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    width: fit-content;
}

.forgot-pwd-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    background-color: #e8deff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-title {
    text-align: center;
    color: #3C4659;
    font-family: "Vizard-Text-Medium", sans-serif;
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 4px;
}

.tips {
    color: #898c93;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 30px;
}

.confirm-button {
    width: 100%;
    height: 48px;
    background-color: #4822A5;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Inter-Regular;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
}

.confirm-button.no-allow-button {
    background-color: #9CA3AF;
    cursor: not-allowed;
}

.success-tips {
    color: #3C4659;
    text-align: center;
    font-family: Inter-Regular;
    font-size: 16px;
    line-height: 22px;
    margin-top: 4px;
}

.error-text {
    color: red;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    margin-top: 4px;
}

/* === 邮件发送成功区块 === */
.send-success {
    width: 90%;
    padding-top: 40px;
    padding-bottom: 28px;
    margin: 0 auto;
}

.send-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    background-color: #e8deff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-success-title {
    text-align: center;
    color: #3C4659;
    font-family: "Vizard-Text-Medium", sans-serif !important;
    font-size: 22px;
    line-height: 22px;
}

.success-username {
    color: #3c4659;
    font-family: Inter-Regular;
    font-weight: 700;
    font-size: 14px;
}

.email-is-sent-tips {
    color: #3C4659;
    text-align: center;
    font-family: Inter-Regular, sans-serif;
    font-size: 14px;
    line-height: 22px;
}

.email-is-sent-tips span {
    color: #3C4659;
    font-family: Inter-Medium, sans-serif;
    font-size: 14px;
}

/* === 重新发送按钮区域 === */
.resend-button-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 12px;
}

.resend-button-area .confirm-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 136px;
    font-family: Inter-Medium, sans-serif;
    font-size: 14px;
    border-radius: 12px;
    background-color: #e8deff;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
}

.resend-button-area .confirm-button:hover {
    background-color: #f5eeff;
}

.resend-button-area .confirm-button.no-allow-button {
    pointer-events: none;
}

/* === 刷新按钮 === */
.refresh-btn {
    color: #00a9ff;
    font-family: Inter-Medium, sans-serif;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.refresh-btn:hover {
    color: #008edb;
}

.rectangle-win {
    width: 436px;
    padding: 48px 20px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}
.shield-icon {
    font-size: 48px;
    color: #666;
}
.title {
    font-size: 26px;
    margin: 16px 0 8px;
    font-weight: 600;
}
.second-title {
    font-size: 16px;
    color: #535252;
}
.g-recaptcha {
    margin: 32px 0 48px;
    height: 65px;
}
.loading-area {
    font-size: 32px;
}
.bottom-text {
    font-size: 16px;
    color: #535252;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.merge-workspace-win {
    border-radius: 12px;
    background: #fff;
    padding: 24px 0;
}
.merge-workspace-win .merge-workspace-title {
    font-size: 16px;
    color: #4b5362;
    padding: 0 20px;
    font-family: Inter-Regular !important;
    font-weight: 500;
}
.scroll-area {
    width: 100%;
    height: 322px;
    margin-top: 8px;
    padding: 14px 20px;
    box-sizing: border-box;
    overflow: hidden;
}
.workspace-list-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f7f7f9;
    border-radius: 12px;
    margin-bottom: 8px;
}
.list-line-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.name {
    font-size: 14px;
    color: #4b5362;
}
.members {
    font-size: 14px;
    color: #888;
}

.avatar {
    overflow: hidden;
}
.avatar img {
    width: 100%;
    height: 100%;
    display: block;
}
.text-avatar, .default-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.text-avatar {
    font-weight: bold;
}
.default-avatar {
    background: #ccc;
}

.merge-workspace-win .login-win {
    width: 480px;
}