.am-theme-header.am-topbar.am-nav-absolute {
    background: transparent;
    box-shadow: none;
}

.am-home-content {
    background-color: #fff;
}

a:hover {
    color: var(--color-main);
}

.am-home-content {
    --padding-t: 9rem;
}

@media only screen and (max-width: 1200px) {
    .am-home-content {
        --padding-t: 6rem;
    }
}

@media only screen and (max-width: 1000px) {
    .am-home-content {
        --padding-t: 4rem;
    }
}

@media only screen and (max-width: 640px) {
    .am-home-content {
        --padding-t: 3rem;
    }
}

/* 
 * 轮播
*/
.am-swiper-container {
    --title-size: 9.6rem;
    --title-w: 61.5rem;
    --desc-size: 2.6rem;
    --desc-m-t: 1rem;
    --desc-w: 55rem;
    --link-w: 31rem;
    --link-h: 7.5rem;
    --link-size: 2.6rem;
    --link-m-t: 3.6rem;
    width: 100%;
    height: 92rem;
    overflow: hidden;
    position: relative;
}

.am-swiper-container .swiper-slide {
    background: #120000;
    color: #fff;
}

.am-swiper-container .swiper-slide .swiper-img {
    width: 100%;
}

.am-swiper-container .swiper-slide img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.am-swiper-container .swiper-slide .swiper-content {
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.am-swiper-container .swiper-slide .swiper-content {
    transform: translateX(-200px);
    opacity: 0;
    transition: all 4s;
}

.am-swiper-container .ani-slide .swiper-content {
    transform: translateX(0);
    opacity: 1;
}

.am-swiper-container .swiper-slide .swiper-content .swiper-title {
    font-weight: bold;
    font-size: var(--title-size);
    line-height: 1.2;
    width: var(--title-w);
}

.am-swiper-container .swiper-slide .swiper-content .swiper-desc {
    font-size: var(--desc-size);
    margin-top: var(--desc-m-t);
    width: var(--desc-w);
}

.am-swiper-container .swiper-slide .swiper-content .link {
    display: inline-flex;
    justify-content: center;
    width: var(--link-w);
    height: var(--link-h);
    line-height: var(--link-h);
    margin-top: var(--link-m-t);
    font-size: var(--link-size);
    font-weight: 500;
    background: #38CB89;
    border-radius: 0.8rem;
    color: var(--color-main);
    transition: all .5s ease-in-out;
}

.am-swiper-container .swiper-slide .swiper-content .link:hover {
    border-radius: 4rem;
}

.swiper-pagination {
    bottom: 10rem;
    z-index: 1;
}

.swiper-pagination>div {
    display: flex;
    align-items: center;
    color: #fff;
}

.swiper-pagination .pagination-line-item {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.pagination-line {
    display: inline-block;
    width: 2.3rem;
    height: 0.1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.pagination-line.am-active {
    background-color: #fff;
}

@media only screen and (max-width: 1600px) {
    .am-swiper-container {
        --title-size: 6rem;
        --title-w: 40rem;
        --desc-size: 1.8rem;
        --desc-m-t: 1rem;
        --desc-w: 38rem;
        --link-w: 24rem;
        --link-h: 6rem;
        --link-size: 2.2rem;
        --link-m-t: 3.6rem;
    }
}

@media only screen and (max-width: 1440px) {
    .swiper-pagination {
        bottom: 6rem;
    }
}

@media only screen and (max-width: 1260px) {
    .am-swiper-container {
        --title-size: 5rem;
        --title-w: 33rem;
    }

    .swiper-pagination {
        bottom: 4rem;
    }

    .am-swiper-container .swiper-slide .swiper-content {
        padding: 0 4rem;
    }
}

@media only screen and (max-width: 1000px) {
    .am-swiper-container {
        --title-size: 3rem;
        --title-w: 33rem;
        --desc-size: 1.6rem;
        --desc-m-t: 1rem;
        --desc-w: 38rem;
        --link-w: 20rem;
        --link-h: 5rem;
        --link-size: 1.8rem;
        --link-m-t: 2.6rem;
    }

    .swiper-pagination {
        bottom: 2rem;
    }
}

@media only screen and (max-width: 820px) {
    .am-swiper-container {
        --title-size: 2.6rem;
        --title-w: 33rem;
        --desc-size: 1.6rem;
        --desc-m-t: 1rem;
        --desc-w: 38rem;
        --link-w: 14rem;
        --link-h: 4rem;
        --link-size: 1.4rem;
        --link-m-t: 2rem;
    }

    .am-swiper-container .swiper-slide .swiper-content {
        padding: 0 2rem;
    }

    .swiper-pagination>div {
        padding-left: 2.6rem;
    }
}

@media only screen and (max-width: 640px) {
    .am-swiper-container {
        --title-size: 1.8rem;
        --title-w: 33rem;
        --desc-size: 1.4rem;
        --desc-m-t: 1rem;
        --desc-w: 100%;
        --link-w: 12rem;
        --link-h: 3rem;
        --link-size: 1.2rem;
        --link-m-t: 1.5rem;
    }

    .am-swiper-container .swiper-slide .swiper-content .link i {
        margin-left: 1rem;
    }

    .swiper-pagination {
        bottom: 1rem;
    }
}

/* 
 * Featured
*/
.featured {
    --content-p: 1.4rem 0;
    --new-badge-top: 2.2rem;
    --new-badge-left: 2.2rem;
    --new-badge-w: 8.4rem;
    --new-badge-h: 3.2rem;
    --new-badge-size: 2.2rem;
    --favor-top: 2.1rem;
    --favor-right: 3rem;
    --favor-wh: 4.3rem;
    --favor-size: 2.4rem;
    --add-cart-p: 2rem 2.1rem;
    --add-cart-btn-p: 2rem 0;
    --add-cart-size: 1.4rem;
    --title-size: 2.1rem;
    --title-lh: 3.2rem;
    padding-top: var(--padding-t);
}

.featured .item .content {
    padding: var(--content-p);
}

.featured .item .content .title,
.featured .item .content .text-price {
    font-size: var(--title-size);
}

.featured .item .content .title {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: var(--title-lh);
    height: calc(var(--title-lh) * 2);
    white-space: initial !important;
}

.featured .add-cart,
.featured .favor {
    display: none;
}

.featured .new-badge {
    position: absolute;
    top: var(--new-badge-top);
    left: var(--new-badge-left);
    width: var(--new-badge-w);
    height: var(--new-badge-h);
    line-height: var(--new-badge-h);
    text-align: center;
    font-size: var(--new-badge-size);
    font-weight: 800;
    color: var(--color-main);
    background-color: #fff;
}

@media only screen and (min-width: 641px) {
    .featured .favor {
        position: absolute;
        top: var(--favor-top);
        right: var(--favor-right);
        width: var(--favor-wh);
        height: var(--favor-wh);
        font-size: var(--favor-size);
        background-color: #fff;
        border-radius: 50%;
        color: #6C7275;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all .5s linear;
        z-index: 1;
    }

    .featured .item:hover .add-cart,
    .featured .item:hover .favor {
        opacity: 1;
    }

    .featured .add-cart {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: var(--add-cart-p);
        background-color: #fff;
        opacity: 0;
        display: block;
        transition: all .5s linear;
        border: 1px solid #ECECEC;
        z-index: 1;
    }

    .featured .add-cart button {
        width: 100%;
        padding: var(--add-cart-btn-p);
        font-size: var(--add-cart-size);
        font-weight: 500;
    }
}

@media only screen and (min-width: 1260px) {
    .featured .am-container {
        max-width: calc(100vw - ((100vw - 120rem) / 2));
        margin-right: 0;
    }
}

@media only screen and (min-width: 1600px) {
    .featured .am-container {
        max-width: calc(100vw - ((100vw - 150rem) / 2));
        margin-right: 0;
    }
}

@media only screen and (max-width: 1440px) {
    .featured {
        --content-p: 1.4rem 0;
        --new-badge-top: 1rem;
        --new-badge-left: 1rem;
        --new-badge-w: 7rem;
        --new-badge-h: 3rem;
        --new-badge-size: 2rem;
        --favor-top: 1rem;
        --favor-right: 1rem;
        --favor-wh: 4rem;
        --favor-size: 2rem;
        --add-cart-p: 1rem 1rem;
        --add-cart-btn-p: 1rem 0;
        --add-cart-size: 1.4rem;
        --title-size: 1.8rem;
        --title-lh: 2.4rem;
    }
}

@media only screen and (max-width: 920px) {
    .featured {
        --content-p: 1.4rem 0;
        --new-badge-top: 1rem;
        --new-badge-left: 1rem;
        --new-badge-w: 5rem;
        --new-badge-h: 2.4rem;
        --new-badge-size: 1.6rem;
        --favor-top: 1rem;
        --favor-right: 1rem;
        --favor-wh: 3rem;
        --favor-size: 1.4rem;
        --add-cart-p: 1rem 1rem;
        --add-cart-btn-p: 1rem 0;
        --add-cart-size: 1.4rem;
        --title-size: 1.6rem;
        --title-lh: 2rem;
    }
}

/* 
 * 当季潮款
*/
.shop-category {
    --content-gap: 3.2rem;
    --shop-desc: 2rem 0;
    --title-size: 2.5rem;
    padding-top: var(--padding-t);
}

.shop-category .content {
    gap: var(--content-gap);
}

.shop-category .content .item {
    width: calc((100% - 2 * var(--content-gap)) / 3);
}

.shop-category .shop-desc {
    padding: var(--shop-desc);
}

.shop-category .shop-desc .title {
    font-size: var(--title-size);
}

@media only screen and (max-width: 1440px) {
    .shop-category {
        --content-gap: 1.5rem;
        --shop-desc: 1.5rem 0;
        --title-size: 1.8rem;
    }
}

@media only screen and (max-width: 920px) {
    .shop-category .content .item {
        width: calc((100% - 2 * var(--content-gap)) / 3);
    }

    .shop-category {
        --content-gap: 1rem;
        --shop-desc: 1rem 0;
        --title-size: 1.6rem;
    }
}

@media only screen and (max-width: 640px) {
    .shop-category .content .item {
        width: calc((100% - var(--content-gap)) / 2);
    }
}

/* 
 *  LIMITED DEITION
*/
.limited-deition {
    --pro-content: 2rem 9.6rem;
    --title-size: 2.2rem;
    --title-mb: 1rem;
    --vice-title-size: 5.1rem;
    --vice-title-mb: 2rem;
    --desc-size: 2.6rem;
    --desc-mb: 3.4rem;
    --date-name-size: 2.2rem;
    --date-value-size: 3.2rem;
    --text-btn-size: 2.2rem;
    --text-btn-w: 20.5rem;
    --text-btn-h: 5.3rem;
    --text-btn-mt: 8rem;
    --date-gap: 2rem;
    background: #141718;
    margin-top: var(--padding-t);
}

.limited-deition-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.limited-deition-flex>* {
    width: 50%;
}

.limited-deition-content {
    padding: var(--pro-content);
}


.limited-deition-content .title {
    font-weight: 600;
    font-size: var(--title-size);
    color: #38CB89;
    margin-bottom: var(--title-mb);
}

.limited-deition-content .vice-title {
    color: #fff;
    font-weight: 600;
    font-size: var(--vice-title-size);
    margin-bottom: var(--vice-title-mb);
}

.limited-deition-content .text-desc {
    font-size: var(--desc-size);
    margin-bottom: var(--desc-mb);
    color: #fff;
}

.limited-deition-content .date {
    gap: 2rem;
}

.limited-deition-content .date .name {
    font-size: var(--date-name-size);
    color: #fff;
}

.limited-deition-content .date .value {
    font-size: var(--date-value-size);
    color: #fff;
    font-weight: 500;
}

.limited-deition-content .text-btn {
    color: #000;
    background-color: #38CB89;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--text-btn-w);
    height: var(--text-btn-h);
    line-height: var(--text-btn-h);
    font-size: var(--text-btn-size);
    font-weight: 500;
    margin-top: var(--text-btn-mt);
    position: relative;
    transition: all .5s ease-in-out;
}

.limited-deition-content .text-btn:hover {
    border-radius: 4rem;
}

@media only screen and (max-width: 1600px) {
    .limited-deition {
        --pro-content: 2rem 6rem;
        --title-size: 2rem;
        --title-mb: 1rem;
        --vice-title-size: 4rem;
        --vice-title-mb: 2rem;
        --desc-size: 2.2rem;
        --desc-mb: 3rem;
        --date-name-size: 2rem;
        --date-value-size: 3rem;
        --text-btn-size: 2rem;
        --text-btn-w: 20rem;
        --text-btn-h: 5rem;
        --text-btn-mt: 5rem;
        --date-gap: 2rem;
    }
}

@media only screen and (max-width: 1440px) {
    .limited-deition {
        --pro-content: 2rem 6rem;
        --title-size: 1.8rem;
        --title-mb: 1rem;
        --vice-title-size: 3.2rem;
        --vice-title-mb: 1rem;
        --desc-size: 2rem;
        --desc-mb: 2rem;
        --date-name-size: 1.8rem;
        --date-value-size: 2.4rem;
        --text-btn-size: 1.8rem;
        --text-btn-w: 18rem;
        --text-btn-h: 5rem;
        --text-btn-mt: 4rem;
        --date-gap: 2rem;
    }
}

@media only screen and (max-width: 1260px) {
    .limited-deition {
        --pro-content: 2rem 4rem;
        --title-size: 1.6rem;
        --title-mb: 1rem;
        --vice-title-size: 2.6rem;
        --vice-title-mb: 0.5rem;
        --desc-size: 1.8rem;
        --desc-mb: 1rem;
        --date-name-size: 1.6rem;
        --date-value-size: 2rem;
        --text-btn-size: 1.6rem;
        --text-btn-w: 15rem;
        --text-btn-h: 4rem;
        --text-btn-mt: 3rem;
        --date-gap: 1rem;
    }
}

@media only screen and (max-width: 1000px) {
    .limited-deition {
        --pro-content: 1rem 2rem;
        --title-size: 1.4rem;
        --title-mb: 0.5rem;
        --vice-title-size: 2.2rem;
        --vice-title-mb: 0.5rem;
        --desc-size: 1.6rem;
        --desc-mb: 0.5rem;
        --date-name-size: 1.4rem;
        --date-value-size: 1.8rem;
        --text-btn-size: 1.4rem;
        --text-btn-w: 12rem;
        --text-btn-h: 4rem;
        --text-btn-mt: 2rem;
        --date-gap: 0.5rem;
    }
}

@media only screen and (max-width: 820px) {
    .limited-deition {
        --pro-content: 2rem 4rem;
        --title-size: 1.6rem;
        --title-mb: 1rem;
        --vice-title-size: 2.6rem;
        --vice-title-mb: 0.5rem;
        --desc-size: 1.8rem;
        --desc-mb: 1rem;
        --date-name-size: 1.6rem;
        --date-value-size: 2rem;
        --text-btn-size: 1.6rem;
        --text-btn-w: 15rem;
        --text-btn-h: 4rem;
        --text-btn-mt: 3rem;
        --date-gap: 1rem;
    }

    .limited-deition-flex {
        flex-direction: column;
    }

    .limited-deition-flex>* {
        width: 100%;
    }
}

/* 
 * shop Collection
*/
.shop-collection {
    --shop-content-gap: 3.2rem;
    --left-content-p: 6.8rem 6.3rem;
    --right-content-p: 5.3rem 4.3rem;
    --text-title-size: 4.5rem;
    --text-more-size: 2rem;
    --text-more-i-ml: 1.5rem;
    margin-top: var(--padding-t);
}

.shop-content {
    gap: var(--shop-content-gap);
}

.shop-content .right {
    gap: var(--shop-content-gap);
}

.shop-content .left,
.shop-content .right {
    overflow: hidden;
    width: 50%;
    position: relative;
}

.shop-content .item {
    position: relative;
    overflow: hidden;
}

.shop-content .content {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.shop-content .left .content {
    padding: var(--left-content-p);
}

.shop-content .right .content {
    padding: var(--right-content-p);
}

.shop-content .content .text-title {
    font-size: var(--text-title-size);
    font-weight: 500;
}

.shop-content .content .text-more {
    font-size: var(--text-more-size);
    font-weight: 500;
}

.shop-content .content .text-more i {
    margin-left: 1.5rem;
}

@media only screen and (max-width: 1600px) {
    .shop-collection {
        --shop-content-gap: 2.5rem;
        --left-content-p: 5rem;
        --right-content-p: 4rem;
        --text-title-size: 4rem;
        --text-more-size: 2rem;
        --text-more-i-ml: 1.5rem;
    }
}

@media only screen and (max-width: 1440px) {
    .shop-collection {
        --shop-content-gap: 2.5rem;
        --left-content-p: 4rem;
        --right-content-p: 3rem;
        --text-title-size: 3.2rem;
        --text-more-size: 1.8rem;
        --text-more-i-ml: 1.2rem;
    }
}

@media only screen and (max-width: 1260px) {
    .shop-collection {
        --shop-content-gap: 2rem;
        --left-content-p: 3rem;
        --right-content-p: 2rem;
        --text-title-size: 2.8rem;
        --text-more-size: 1.6rem;
        --text-more-i-ml: 1rem;
    }
}

@media only screen and (max-width: 1000px) {
    .shop-collection {
        --text-title-size: 2.4rem;
    }
}

@media only screen and (max-width: 820px) {
    .shop-collection {
        --shop-content-gap: 2rem;
        --left-content-p: 3rem;
        --right-content-p: 2rem;
        --text-title-size: 2rem;
        --text-more-size: 1.4rem;
        --text-more-i-ml: 1rem;
    }
}

@media only screen and (max-width: 640px) {
    .shop-collection {
        --shop-content-gap: 1rem;
        --left-content-p: 1rem;
        --right-content-p: 1rem;
        --text-title-size: 1.6rem;
        --text-more-size: 1.2rem;
        --text-more-i-ml: 0.5rem;
    }
}

/* 
 * 最新资讯
*/
.new {
    --more-size: 1.8rem;
    --desc-p: 2.5rem 0;
    --text-title-size: 2.8rem;
    --text-title-mb: 1.5rem;
    margin-top: var(--padding-t);
}

.new .new-title {
    margin-bottom: 1rem;
}

.new .common-title {
    margin-bottom: 0 !important;
}

.new .more {
    font-size: var(--more-size);
}

.new .more i {
    margin-left: 1rem;
}

.new .desc {
    padding: var(--desc-p);
}

.new .text-title {
    color: var(--color-main);
    font-size: var(--text-title-size);
    font-weight: 500;
    margin-bottom: var(--text-title-mb);
}

@media only screen and (max-width: 1600px) {
    .new {
        --more-size: 1.8rem;
        --desc-p: 2rem 0;
        --text-title-size: 2.4rem;
        --text-title-mb: 1rem;
    }
}

@media only screen and (max-width: 1440px) {
    .new {
        --more-size: 1.6rem;
        --desc-p: 1.5rem 0;
        --text-title-size: 2rem;
        --text-title-mb: 1rem;
    }
}

@media only screen and (max-width: 820px) {
    .new {
        --more-size: 1.2rem;
        --desc-p: 1.5rem 0;
        --text-title-size: 1.6rem;
        --text-title-mb: 1rem;
    }
}

/* 
 * Give Us Advice
*/
.advice {
    --advice-content-p: 12rem 0 4rem 0;
    --title-size: 6rem;
    --vice-title-size: 2.5rem;
    --vice-title-mb: 2.5rem;
    --advice-form-w: 62.4rem;
    --advice-form-size: 2rem !important;
    --advice-form-p: 1rem;
    --input-h: 7rem;
    --button-w: 12.8rem;
    --button-h: 4.5rem;
    margin-top: var(--padding-t);
    background-size: cover;
    background-position: right;
}

.advice .advice-content {
    padding: var(--advice-content-p);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advice .advice-content .title {
    font-weight: 600;
    font-size: var(--title-size);
    color: #FFFFFF;
}

.advice .advice-content .vice-title {
    font-size: var(--vice-title-size);
    color: #FFFFFF;
    margin-bottom: var(--vice-title-mb);
}

.advice .advice-form {
    max-width: var(--advice-form-w);
    width: 100%;
}

.advice .advice-form input,
.advice .advice-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    background-color: transparent !important;
    border: 0.1rem solid #999 !important;
    padding: var(--advice-form-p);
    font-size: var(--advice-form-size) !important;
    color: #fff !important;
    /*输入文字、光标颜色*/
    /* -webkit-text-fill-color: #fff; */
    /*输入文字、placeholder颜色*/
    /* caret-color: #fff; */
    /*光标颜色*/

}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: #fff !important;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    transition: background-color 5000s ease-in-out 0s !important;
}

.advice .advice-form input {
    height: var(--input-h);
    line-height: var(--input-h);
}

.advice .advice-form button {
    width: var(--button-w);
    height: var(--button-h);
    line-height: var(--button-h);
    padding: 0;
    text-align: center;
    background-color: transparent;
    border: 0.1rem solid #FFFFFF;
    color: #fff;
    font-size: var(--advice-form-size);
}

@media only screen and (max-width: 1600px) {
    .advice {
        --advice-content-p: 10rem 0 4rem 0;
        --title-size: 5rem;
        --vice-title-size: 2.2rem;
        --vice-title-mb: 2.2rem;
        --advice-form-w: 60rem;
        --advice-form-size: 2rem !important;
        --advice-form-p: 1rem;
        --input-h: 7rem;
        --button-w: 12.8rem;
        --button-h: 4.5rem;
    }
}

@media only screen and (max-width: 1440px) {
    .advice {
        --advice-content-p: 8rem 0 4rem 0;
        --title-size: 4rem;
        --vice-title-size: 2rem;
        --vice-title-mb: 2rem;
        --advice-form-w: 55rem;
        --advice-form-size: 1.8rem !important;
        --advice-form-p: 1rem;
        --input-h: 6.4rem;
        --button-w: 12rem;
        --button-h: 4rem;
    }
}

@media only screen and (max-width: 1000px) {

    .advice .advice-form input,
    .advice .advice-form textarea,
    .advice .advice-form button {
        background-color: rgba(0, 0, 0, 0.6) !important;
    }
}

@media only screen and (max-width: 1000px) {
    .advice {
        --advice-content-p: 6rem 0 4rem 0;
        --title-size: 3.2rem;
        --vice-title-size: 1.8rem;
        --vice-title-mb: 1.8rem;
        --advice-form-w: 50rem;
        --advice-form-size: 1.6rem !important;
        --advice-form-p: 1rem;
        --input-h: 6rem;
        --button-w: 10rem;
        --button-h: 4rem;
    }
}

@media only screen and (max-width: 820px) {
    .advice {
        --advice-content-p: 4rem 0 4rem 0;
        --title-size: 2.6rem;
        --vice-title-size: 1.6rem;
        --vice-title-mb: 1.6rem;
        --advice-form-w: 50rem;
        --advice-form-size: 1.6rem !important;
        --advice-form-p: 1rem;
        --input-h: 5rem;
        --button-w: 10rem;
        --button-h: 4rem;
    }
}

@media only screen and (max-width: 640px) {
    .advice {
        --advice-content-p: 2rem;
        --title-size: 2rem;
        --vice-title-size: 1.6rem;
        --vice-title-mb: 1.6rem;
        --advice-form-w: 50rem;
        --advice-form-size: 1.4rem !important;
        --advice-form-p: 1rem;
        --input-h: 5rem;
        --button-w: 8rem;
        --button-h: 3rem;
    }
}

/* 
 * Instagram
*/
.instagram {
    --vice-title-size: 2rem;
    --title-size: 5.8rem;
    --desc-size: 2.6rem;
    --desc-mb: 5rem;
    margin-top: var(--padding-t);
}

.instagram .vice-title {
    font-weight: 600;
    font-size: var(--vice-title-size);
    color: #6C7275;
    margin-bottom: 0.8rem;
}

.instagram .title {
    font-weight: 600;
    font-size: var(--title-size);
    color: #101010;
    margin-bottom: 0.8rem;
}

.instagram .desc {
    font-size: var(--desc-size);
    color: #101010;
    margin-bottom: var(--desc-mb);
}

@media only screen and (max-width: 1200px) {
    .instagram {
        --vice-title-size: 2rem;
        --title-size: 3rem;
        --desc-size: 2。4rem;
        --desc-mb: 3rem;
    }
}

@media only screen and (max-width: 1000px) {
    .instagram {
        --vice-title-size: 1.8rem;
        --title-size: 2.6rem;
        --desc-size: 2rem;
        --desc-mb: 2rem;
    }

    .instagram-content {
        flex-wrap: wrap;
    }

    .instagram-content a {
        width: calc(100% / 3);
    }
}

@media only screen and (max-width: 820px) {
    .instagram {
        --vice-title-size: 1.2rem;
        --title-size: 2rem;
        --desc-size: 1.4rem;
        --desc-mb: 1rem;
    }
}

@media only screen and (max-width: 640px) {
    .instagram {
        --title-size: 1.8rem;
    }

    .instagram-content a {
        width: calc(100% / 2);
    }
}

/* 
 * 常用样式
*/
.common-title {
    --size: 5.6rem;
    font-weight: 500;
    text-align: center;
    font-size: var(--size);
    color: var(--color-main);
    margin-bottom: var(--size);
}

.common-title-left {
    --size: 5.6rem;
    font-weight: 500;
    font-size: var(--size);
    color: var(--color-main);
    margin-bottom: var(--size);
}

@media only screen and (max-width: 1200px) {

    .common-title-left,
    .common-title {
        --size: 3rem;
    }
}

@media only screen and (max-width: 1000px) {

    .common-title-left,
    .common-title {
        --size: 2.6rem;
    }
}

@media only screen and (max-width: 820px) {

    .common-title-left,
    .common-title {
        --size: 2rem;
    }
}

@media only screen and (max-width: 640px) {

    .common-title-left,
    .common-title {
        --size: 1.8rem;
    }
}

.more-before {
    color: var(--color-main);
    padding: 0.4rem 0;
    border-bottom: 0.1rem solid var(--color-main);
    position: relative;
}

.more-before::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--color-main);
    transition: all 1s;
}

.more-before:hover::before {
    width: 100%;
}

.am-footer.am-footer-default {
    margin-top: 0 !important;
}