main .color {
    background: linear-gradient(101.73deg, #5CFFF5 4.91%, #685BFF 43.31%, #B124F3 95.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

main h2 {
    font-size: 44px;
    text-align: center;
}

main h2 + .desc {
    font-size: 18px;
    text-align: center;
    color: rgba(42, 48, 72, .8);
    font-weight: 500;
}

main img {
    height: auto;
}

main .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

main .no-scrollbar::-webkit-scrollbar {
    display: none;
}

main .base-maxwidth {
    max-width: 1350px;
}

main .base-download-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

main .base-download-button .download {
    height: 48px;
    min-width: 162px;
    --position: 20px;
}

main .base-version-switching {
    margin-top: 12px;
}
 
main .version-switching-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #8B8B8B;
    display: flex;
    justify-content: center;
    border: none;
    background-color: transparent;
    cursor: pointer;
    transition: all .3s;
}

main .version-switching-icon.active,
main .version-switching-icon:hover {
    color: var(--color-primary);
}

main .version-switching-icon svg {
    width: 100%;
    height: 100%;
    transition: all .3s;
}

@media (min-width: 1025px) {
    main .base-download-button .download {
        background-position: var(--position, 20px);
        background-size: 24px 24px;
    }

    main .base-download-button .download:hover {
        background-position: calc(100% - var(--position));
    }

    main .button-group .dropdown-box .dropdown-item:hover .store-content {
        opacity: 1;
        pointer-events: all;
        left: 122%;
    }
}

main .content-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

main .content-item {
    width: calc(100%/3 - 18px);
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-block-drak);
    text-align: center;
}

main .content-item picture {
    overflow: hidden;
    border-radius: 24px;
}

main .content-item img {
    width: 100%;
    border-radius: inherit;
    transition: all .2s;
}

main .content-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 8px;
}

main a.content-item:hover {
    color: var(--color-primary);
}

.top-banner {
    padding: 54px 0 120px;
    background: linear-gradient(180deg, #E8E7FF 0%, #F9EDFF 20.89%, #FFFFFF 60%);
}

.top-banner .base-maxwidth {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-banner h1 {
    font-size: 56px;
    text-align: center;
    max-width: 720px;
}

.top-banner .desc {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 12px auto 36px;
}

.top-banner .image-wrapper {
    margin: 0 auto;
}

.top-banner .model-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.top-banner .model-list li {
    margin: 0 24px 12px 0;
}

.top-banner .model-list li a {
    padding: 4px 12px;
    border-radius: 12px; 
    background: rgba(255, 255, 255, 0.40);
    transition: all .2s;
    display: flex;
    align-items: center;
}

.top-banner .model-list li img {
    width: 33px;
    min-width: 33px;
    margin-right: 4px;
}

.top-banner .model-list li:hover a {
    background: var(--color-white);
}

.top-banner .buy-text {
    color: #8C8C8C;
    margin: 32px auto 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner .buy-text span {
    color: #262626;
    font-weight: 500;
    margin: 0 4px 0 2px;
}

.top-banner .buy-text a {
    color: var(--color-primary);
    margin-left: 6px;
}

.top-banner .buy-text a:hover {
    text-decoration: underline;
}

.top-banner .image-box {
    width: 100%;
    background: var(--color-white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0px 6px 20px 6px rgba(48, 44, 95, 0.05);
    max-width: 1163px;
}

.top-banner .image-box .title {
    font-weight: 500;
    margin-bottom: 12px;
}

.top-banner .style-box {
    margin-bottom: 24px;
}

.top-banner .style-content {
    position: relative;
}

.top-banner .style-content.to-left::before,
.top-banner .style-content.to-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    max-width: 100px;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.top-banner .style-content.to-right::after {
    left: unset;
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.top-banner .style-list {
    display: flex;
    position: relative;
    width: 100%;
    padding: 6px;
}

.top-banner .style-list li {
    max-width: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    margin-right: 24px ;
    position: relative;
    cursor: pointer;
}

.top-banner .style-list li::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all .2s;
}

.top-banner .style-list li:hover::before,
.top-banner .style-list li.active::before {
    border-color: var(--color-primary);
}

.top-banner .style-list li img {
    width: 100%;
    border-radius: 12px;
}

.top-banner .style-list li span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    color: var(--color-white);
    text-align: center;
    height: 32px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.top-banner .style-box .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -4px;
    width: 40px;
    height: 40px;
    background-color: rgb(250 250 250 / 95%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10));
    border: 2px solid rgba(237, 237, 237, 1);
    z-index: 2;
    padding-left: 2px;
}

.top-banner .style-box .arrow-btn:hover {
    background-color: var(--color-white);
}

.top-banner .style-box .arrow-btn.is-left {
    right: unset;
    left: -4px;
    transform: scaleX(-1) translateY(-50%);
}

.top-banner .style-content.to-left .arrow-btn.is-left,
.top-banner .style-content.to-right .arrow-btn.is-right {
    display: flex;
}

.top-banner .editor-box {
    margin-bottom: 24px;
}

.top-banner .editor-box textarea {
    width: 100%;
    resize: none;
    outline: none;
    font-size: 16px;
    min-height: 108px;
    border: 2px solid rgba(104, 91, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
}

.top-banner .example-box {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
}

.top-banner .example-box .title {
    font-size: 14px;
    margin: 0 8px 0 0;
} 

.top-banner .example-list {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.top-banner .example-list li {
    margin-right: 16px;
    display: flex;
    padding: 5px 17px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(42, 48, 72, 0.08);
    transition: all .2s;
    cursor: pointer;
} 

.top-banner .example-list li:hover {
    background: rgba(42, 48, 72, 0.16);
}

.top-banner .more-btn {
    color: var(--color-primary);
    font-weight: 500;
}

.top-banner .send-btn {
    max-width: 440px;
    width: 80%;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(103deg, #5CFFF5 2.47%, #685BFF 39.92%, #B124F3 90.82%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all .2s;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    cursor: pointer;
}

.top-banner .send-btn:hover {
    opacity: .8;
}

.top-banner .base-download-button {
    display: none;
    align-items: center;
}

.top-banner .download-box {
    justify-content: center;
    margin-top: 60px;
    color: #8B8B8B;
    flex-wrap: wrap;
}

.top-banner .download-box p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    margin-bottom: 16px;
}

.top-banner .download-box a {
    margin: 0 12px;
    width: 32px;
    height: 32px;
}

.top-banner .download-box svg {
    width: 100%;
    height: 100%;
}

.top-banner .download-box a.is-app {
    position: relative;
    z-index: 1;
}

.top-banner .download-box a.is-app:hover {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10));
}

.top-banner .download-box a.is-app::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white) url(https://images.chatartpro.com/chatartweben/assets/common/chatpix-ios.png) no-repeat center/156px;
    width: 168px;
    height: 168px;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    cursor: default;
}

.top-banner .download-box a.is-app[data-version="android"]::before {
    background-image: url(https://images.chatartpro.com/chatartweben/assets/common/chatart_android.png);
}

.top-banner .download-box a.is-app::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 30px 14px 15px 14px;
    border-color: transparent transparent #FFFFFF transparent;
    opacity: 0;
    pointer-events: none;
}

.top-banner .download-box a.is-app:hover::before,
.top-banner .download-box a.is-app:hover::after {
    opacity: 1;
    pointer-events: all;
}

.most-feature .desc {
    margin: 16px auto 40px;
}

.most-feature .feature-area {
    margin: 0 auto 120px;
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.most-feature .feature-area img {
    width: 100%;
    margin-top: 40px;
}

.most-feature .feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 120px;
}

.most-feature .feature-item .img {
    max-width: 650px;
    width: calc(50% - 24px);
}

.most-feature .feature-item .text {
    max-width: 540px;
    width: 50%;
}

.most-feature .feature-item h2 {
    color: var(--color-block-drak);
    font-size: 32px;
    font-weight: 700;
    text-align: left;
}

.most-feature .feature-item .feature-desc {
    color: var(--color-block-drak);
    font-size: 16px;
    margin: 24px 0;
}

.most-feature .feature-item .base-download-button .download {
    height: 40px;
    min-width: 151px;
}

.most-feature .feature-item .base-download-button .download[data-name="android"],
.most-feature .feature-item .base-download-button .download[data-name="ios"] {
    --position: 11px;
}

.most-use {
    background: linear-gradient(0deg, #FFF1F1 0%, #FFF1F1 100%), #F3FAFF;
    padding: 135px 0;
}

.most-use .desc {
    margin: 16px auto 60px;
}

.most-use .content-item:hover img {
    transform: scale(1.09);
}

.most-creativity {
    padding: 110px 0 60px;
}

.most-creativity .art-box {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px;
    background: rgba(217, 217, 217, 0.20);
    margin-bottom: 120px;
}

.most-creativity .art-box h3 {
    font-size: 28px;
    font-weight: 700;
}

.most-creativity .art-box p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

.most-creativity .art-box .button {
    border-radius: 28px;
    background: var(--color-primary);
    color: var(--color-white);
    transition: all .2s;
    padding: 16px 21px;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    text-align: center;
    white-space: nowrap;
}

.most-creativity .art-box .button:hover {
    opacity: .8;
}

.most-creativity .desc {
    margin: 16px auto 54px;
    max-width: 1120px;
}

.most-creativity .creativity-box {
    max-width: 1100px;
    margin: 0 auto;
}

.most-creativity .creativity-item {
    max-width: 460px;
    width: calc(100% / 2 - 18px);
    color: var(--color-block-drak);
    margin-bottom: 60px;
}

.most-creativity .creativity-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px auto 20px;
}

.most-creativity .creativity-item a {
    color: var(--color-primary);
    font-weight: 500;
}

.most-step {
    padding-bottom: 120px;
}

.most-step .base-maxwidth {
    max-width: 1400px;
}

.most-step .step-box {
    margin-top: 60px;
}

.most-step .step-item {
    max-width: 432px;
    margin-bottom: 0;
}

.most-step .step-item picture {
    border-radius: 20px;
}

.most-step .step-item h3 {
    font-size: 20px;
}

.most-explore .desc {
    margin: 16px auto 60px;
}

.most-explore .explore-content {
    position: relative;
}

.most-explore .explore-content.to-left::before,
.most-explore .explore-content.to-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 14%;
    max-width: 160px;
    height: 100%;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.most-explore .explore-content.to-right::after {
    left: unset;
    right: -1px;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.most-explore .explore-box {
    display: flex;
    position: relative;
    width: 100%;
    padding: 6px;
}

.most-explore .explore-item {
    max-width: 320px;
    min-height: 422px;
    flex-shrink: 0;
    border-radius: 20px;
    margin-right: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: var(--explore-bg-color, linear-gradient(180deg, #EAF5FF 0%, #EAEFFF 100%));
}

.most-explore .explore-item h3 {
    flex: 1;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    padding: 24px 24px 20px;
}

.most-explore .explore-item picture {
    padding: 0 8px;
}

.most-explore .explore-item img {
    transition: transform .2s;
}

.most-explore .explore-item:hover img {
    transform: scale(1.09);
}

.most-explore .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    z-index: 2; 
    color: var(--color-white);
    padding-left: 4px;
    display: none;
    opacity: .6;
}

.most-explore .arrow-btn:hover {
    opacity: 1;
}

.most-explore .arrow-btn.is-left {
    right: unset;
    left: 0;
    transform: scaleX(-1) translateY(-50%);
}

.most-explore .explore-content.to-left .arrow-btn.is-left,
.most-explore .explore-content.to-right .arrow-btn.is-right  {
    display: flex;
}

.most-explore .base-download-button {
    align-items: center;
    margin-top: 60px;
}

.most-explore .base-download-button .download {
    min-width: 220px;
}

.faq-container {
    padding: 120px 14px;
}

.faq-container .base-maxwidth {
    border-radius: 24px;
    background: linear-gradient(0deg, #F3FAFF 0%, #F3FAFF 100%), #FFF1F1;
    padding: 60px 60px 40px;
    display: flex;
    justify-content: space-between;
}

.faq-container .left {
    padding: 0 20px 0 60px;
}

.faq-container .left h2 {
    margin: 0;
    text-align: left;
    font-size: 56px;
    color: var(--color-block-drak);
}

.faq-container .left .desc {
    margin: 8px 0 20px;
    max-width: 218px;
    font-size: 16px;
    text-align: left;
}

.faq-container .download-box {
    display: flex;
}

.faq-container .download-box .download {
    background: var(--color-block-darker);
    color: var(--color-white-lighter);
    height: 48px;
    padding: 4px 26px;
    border-radius: 42px;
    border: 1px solid var(--color-block-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all .3s;
}

.faq-container .download-box .download svg {
    margin-left: 4px;
    transition: all .3s;
}

.faq-container .download-box .download:hover svg {
    transform: translateX(4px);
}

.faq-container .right {
    max-width: 744px;
    width: 70%;
}

.faq-container .faq-item {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-block-drak);
}

.faq-container .faq-item .faq-title {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-container .faq-item .faq-title svg {
    margin: 5px 0 0 10px;
    transition: all .3s;
    min-width: 24px;
    min-height: 24px;
}

.faq-container .faq-item .faq-content {
    margin-top: 8px;
    display: none;
    padding-right: 30px;
}

.faq-container .faq-item .faq-content a {
    color: var(--color-primary);
}

.faq-container .faq-item .faq-content * {
    font-size: 14px;
}

.faq-container .faq-item.active .faq-title svg {
    transform: rotate(-45deg);
}

.more-tools {
    padding-bottom: 120px;
}

.more-tools h2 {
    margin-bottom: 60px;
}

.more-tools .tools-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.more-tools .tools-list li {
    max-width: 432px;
    font-size: 24px;
    font-weight: 500;
    width: calc(100% / 3 - 10px);
    margin-bottom: 26px;
    text-align: center;
    height: 88px;
}

.more-tools .tools-list li a {
    padding: 10px;
    background: #EAEFF4;
    border-radius: 12px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-tools .tools-list li a:hover {
    background: var(--color-primary);
    color: var(--color-white-lighter);
}

.more-tools .base-download-button {
    margin-top: 34px;
    align-items: center;
}

.more-tools .base-download-button .download {
    --position: 14px;
}

.facing-social {
    border-radius: 60px 60px 0 0;
    background: var(--color-block-darker);
    padding: 40px 40px 0;
    position: relative;
}

.facing-social .base-maxwidth {
    position: relative;
    max-width: 100%;
}

.facing-social .overlay-wrapper,
.facing-social .masking {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
}

.facing-social .overlay-wrapper {
    border-radius: 40px;
    background: var(--color-primary);
    overflow: hidden;
}

.facing-social .masking {
    z-index: 1;
    background: rgba(20, 18, 38, 0.6);
}

.facing-social .img-box {
    display: flex;
    justify-content: center;
    transform: translateY(-335px) rotate(-18deg) scale(1.09);
}

.facing-social .img-box picture{
    max-width: 425px;
    margin-right: 80px;
    width: 40%;
    flex-shrink: 0;
    transition: all .5s;
}

.facing-social .content {
    position: relative;
    z-index: 2;
    padding: 262px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facing-social h2 {
    max-width: 1345px;
    color: var(--color-white-lighter);
    font-size: 90px;
    font-weight: 700;
    line-height: 135px;
    text-align: center;
    margin-bottom: 40px;
}

.facing-social h2 span {
    opacity: .6;
}

.facing-social .base-download-button .download {
    background-color: var(--color-white-lighter);
    border-radius: 52px;
    font-size: 24px;
    font-weight: 700;
    height: 65px;
    color: var(--color-primary);
}

@media(min-width: 1025px) {
    .facing-social .base-download-button .download {
        padding: 4px 40px;
        background-position: 5%;
        background-size: 30px 30px;
        background-image: url(https://images.chatartpro.com/chatartweben/assets/common/white-arrow.svg);
    }

    .facing-social .base-download-button .download:hover {
        background-position: 95%;
    }
}

@media(max-width: 1520px) {
    .most-feature .feature-item:nth-child(1) .amt-switch-icon[name="ios"]::before,
    .most-feature .feature-item:nth-child(1) .amt-switch-icon[name="android"]::before {
        transform: translateX(-26%);
    }
}

@media(max-width: 1100px) {
    main h2 {
        font-size: 36px;
    }
    main h2 + .desc {
        font-size: 20px;
    }

    main .content-item {
        width: calc(100% / 2 - 18px);
    }

    main .content-item picture {
        border-radius: 12px;
    }

    .top-banner {
        padding: 60px 0 80px;
    }
    
    .top-banner h1 {
        font-size: 42px;
        max-width: 590px;
    }

    .top-banner .desc {
        font-size: 20px;
    }

    .top-banner .model-list {
        justify-content: center;
    }

    .top-banner .download-box a {
        margin: 0 16px;
        width: 32px;
        height: 32px;
    }

    .most-feature .feature-area {
        margin-bottom: 80px;
    }

    .most-feature .feature-item {
        margin-bottom: 80px;
    }

    .most-use {
        padding: 80px 0 56px;
    }

    .most-use .desc {
        margin-bottom: 40px;
    }

    .most-creativity {
        padding: 80px 0 20px;
    }

    .most-creativity .art-box {
        padding: 22px 20px;
        margin-bottom: 60px;
        border-radius: 16px;
    }

    .most-creativity .art-box h3 {
        font-size: 24px;
    }

    .most-creativity .art-box p {
        font-size: 16px;
        margin-top: 14px;
    }

    .most-step {
        padding-bottom: 56px;
    }

    .most-step .step-box {
        max-width: 800px;
        margin: 60px auto 0;
    }

    .most-step .step-item {
        margin-bottom: 24px;
    }

    .most-explore .base-download-button {
        margin-top: 32px;
    }

    .faq-container {
        padding: 80px 14px;
    }

    .faq-container .left {
        padding: 0 20px 0 0;
    }

    .more-tools {
        padding-bottom: 80px;
    }
}

@media(max-width: 992px) {
    main h2 {
        font-size: 28px;
    }
    
    main h2 + .desc {
        font-size: 14px;
    }

    main .base-version-switching {
        display: none;
    }

    main .content-item {
        width: calc(100% / 2 - 12px);
    }

    main .content-item p {
        font-size: 14px;
    }

    main .content-item h3 {
        font-size: 20px;
    }

    .top-banner {
        padding-bottom: 60px;
    }

    .top-banner h1 {
        font-size: 28px;
        max-width: 460px;
    }

    .top-banner .desc {
        font-size: 14px;
        margin: 12px auto 20px;
    }

    .top-banner .image-wrapper {
        display: none;
    }

    .top-banner .base-download-button {
        display: flex;
    }

    .top-banner .base-download-button .download {
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        background: var(--color-primary);
        min-width: 168px;
        height: 48px;
    }

    .top-banner .download-box {
        display: none;
    }

    .most-feature {
        padding-bottom: 20px;
    }

    .most-feature .feature-item .text {
        order: 1;
    }

    .most-feature .desc {
        margin: 12px auto 24px;
    }

    .most-feature .feature-area img {
        margin-top: 20px;
    }

    .most-feature .feature-area {
        margin-bottom: 40px;
    }

    .most-feature .feature-item {
        flex-wrap: wrap;
    }

    .most-feature .feature-item .text {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .most-feature .feature-item h2 {
        font-size: 20px;
        text-align: center;
    }

    .most-feature .feature-item .feature-desc {
        font-size: 14px;
        margin: 16px 0;
        color: rgba(42, 48, 72, 0.70);
    }

    .most-feature .base-download-button {
        align-items: center;
    }

    .most-feature .feature-item {
        margin-bottom: 40px;
    }

    .most-feature .feature-item .img {
        max-width: 650px;
        width: 100%;
        margin: 20px auto 0;
        order: 2;
    }
    
    .most-use {
        padding: 40px 0 16px;
    }

    .most-use .desc {
        margin: 12px auto 24px;
    }

    .most-creativity {
        padding: 40px 0 28px;
    }

    .most-creativity .art-box {
        flex-wrap: wrap;
        text-align: center;
        padding: 40px 14px;
    }

    .most-creativity .art-box .text {
        width: 100%;
    }

    .most-creativity .art-box h3 {
        font-size: 20px;
    }

    .most-creativity .art-box p {
        font-size: 14px;
        margin-top: 12px;
    }

    .most-creativity .art-box .button {
        font-size: 12px;
        padding: 16px 18px;
        margin: 16px auto 0;
    }

    .most-creativity .desc {
        margin: 12px auto 32px;
    }

    .most-creativity .creativity-item {
        width: calc(100% / 2 - 16px);
        margin-bottom: 32px;
    }

    .most-creativity .creativity-item h3 {
        font-size: 20px;
        margin: 14px auto 8px;
    }

    .most-explore .desc {
        margin: 12px auto 24px;
    }

    .most-explore .explore-item {
        max-width: 200px;
        min-height: 264px;
        border-radius: 20px;
        border-radius: 16px;
        margin-right: 12px;
    }

    .most-explore .explore-item h3 {
        font-size: 16px;
        padding: 16px;
    }

    .most-explore .explore-item picture {
        padding: 0 16px;
    }

    .most-explore .explore-item:nth-child(2) img {
        width: 124px;
    }

    .most-explore .arrow-btn {
        width: 40px;
        height: 40px;
        padding-left: 0px;
    }

    .most-explore .arrow-btn svg {
        width: 11px;
        height: 18px;
    }

    .faq-container {
        padding: 60px 14px;
    }

     .faq-container .base-maxwidth {
        border-radius: 16px;
        padding: 32px 20px 20px;
    }

    .faq-container .left h2 {
        font-size: 46px;
    }

    .faq-container .left .desc {
        font-size: 14px;
        margin-top: 4px;
    }

    .faq-container .download-box .download {
        height: 40px;
        font-size: 14px;
        padding: 4px 16px;
    }

    .faq-container .faq-item .faq-title {
        font-size: 16px;
        font-weight: 600;
    }

    .faq-container .faq-item .faq-title svg {
        margin-top: 0;
    }

    .faq-container .faq-item {
        padding: 12px 0;
    }

    .more-tools {
        padding-bottom: 60px;
    }

    .more-tools h2 {
        margin-bottom: 40px;
    }

    .more-tools .tools-list li {
        margin-bottom: 12px;
        font-size: 18px;
        height: 68px;
    }

    .more-tools .tools-list li a {
        padding: 6px;
        border-radius: 8px;
    }

    .more-tools .base-download-button {
        margin-top: 18px;
    }

    .facing-social {
        border-radius: 20px 20px 0 0;
        padding: 14px 14px 0;
    }

    .facing-social .img-box {
        transform: translateY(-15%) rotate(-10deg);
    }

    .facing-social .img-box picture {
        margin-right: 15px;
        width: 50%;
        max-width: 240px;
    }

    .facing-social h2 {
        max-width: 450px;
        margin-bottom: 30px;
        line-height: 45px;
        font-size: 30px;
    }

    .facing-social .base-download-button .download {
        border-radius: 63px;
        font-size: 16px;
        height: 38px;
        padding: 4px 10px;
    }


}

@media(max-width: 567px) {
    main .content-box {
        justify-content: center;
    }
    
    main .content-item {
        width: 100%;
    }

    .most-feature .feature-item .text {
        text-align: left;
    }

    .most-feature .feature-item h2 {
        text-align: left;
    }

    .most-feature .base-download-button {
        align-items: flex-start;
    }

    .most-creativity .creativity-item {
        width: 100%;
        margin-bottom: 32px;
    }

    .most-creativity .art-box .img {
        order: 1;
    }

    .faq-container .base-maxwidth {
        flex-wrap: wrap;
        padding: 24px 14px;
    }

    .faq-container .left {
        padding: 0;
        width: 100%;
    }

    .faq-container .right {
        max-width: 100%;
        width: 100%;
        margin-top: 24px;
    }

    .more-tools h2 {
        margin-bottom: 24px;
    }

    .more-tools .tools-list li {
        width: calc(100% / 2 - 4px);
        font-size: 15px;
        height: 56px;
        margin-bottom: 8px;
    }

    .facing-social .img-box {
        transform: translate(36%, -13%) rotate(-14deg) scale(1.09);
    }
}

@media(max-width: 380px) {
    main h2 {
        font-size: 26px;
    }

    .top-banner h1 {
        font-size: 26px;
    }
}