@charset "UTF-8";

/****banner****/
.banner {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    min-height: 100vh;
    padding: 90px 0 0 0;
    animation-name: fadeIn;
}

/**輪播**/
.banner__box {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-end;
    justify-content: flex-end;
    width: calc(100% - 110px);
    margin: 0 0 0 auto;
}

.banner__box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100% - 20px);
    background: #d9d9ce;
    border-radius: 400px 0 0 0;
}

.banner__box .slick-list,
.banner__box .slick-track {
    height: 100%;
}

.banner__box .slick-arrow {
    top: -100vh;
    left: 100vw;
    opacity: 0;
    pointer-events: none;
}

.banner__box__item {
    display: block;
    width: 100%;
}

/*圖片*/
.banner__box__item__pic {
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    align-content: flex-end;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 90%;
    height: 100%;
    margin: 0 0 0 auto;
}

.banner__box__item__pic img {
    width: auto;
    height: 100%;
}

.banner__box__item__pic .pad,
.banner__box__item__pic .mb {
    display: none;
}

/*文案*/
.banner__box__item__content {
    position: absolute;
    top: 50%;
    right: 30px;
    display: block;
    width: calc(45% - 30px);
    max-height: calc(100% - 300px);
    transform: translateY(-50%);
    overflow: hidden;
}

.banner__box__item__content__title {
    display: block;
    width: 100%;
    font-size: 100px;
    line-height: 1.5;
    color: #161a13;
    font-family: 'Rallisaguen-B';
    text-shadow: 2px 2px 2px #fff;
}

.banner__box__item__content__text {
    display: block;
    width: 100%;
    max-width: 415px;
    margin: 50px 0 0 0;
    font-size: 15px;
    line-height: 2;
    color: #3f3f3f;
}

.banner__box__item__content__link {
    max-width: 180px;
    margin: 20px 0 0 0;
}

/****輪播按鈕&計數器****/
.banner__tool {
    position: absolute;
    bottom: 90px;
    right: 30px;
    display: flex;
    align-content: center;
    justify-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(45% - 80px);
}

.banner__tool__btGroup {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    margin: 0 45px 0 0;
    flex: 0 0 auto;
}

.banner__tool__btGroup__prev,
.banner__tool__btGroup__next {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: auto;
    transition: opacity .4s ease-in-out;
}

.banner__tool__btGroup__prev {
    margin: 0 65px 0 0;
}

.banner__tool__btGroup__prev:hover,
.banner__tool__btGroup__next:hover {
    opacity: .5;
}

.banner__tool__btGroup__prev.disable,
.banner__tool__btGroup__next.disable {
    opacity: .5;
    pointer-events: none;
}

.banner__tool__btGroup__prev::before,
.banner__tool__btGroup__next::after {
    content: '';
    position: relative;
    display: block;
    width: 12.5px;
    height: 25px;
    margin: 0 0 0 30px;
    background: url(../images/common/icon_arrow_next_thin_black.svg) center no-repeat;
    background-size: contain;
}

.banner__tool__btGroup__prev::before {
    transform: scaleX(-1);
    margin: 0 30px 0 0;
}

.banner__tool__btGroup__prev span,
.banner__tool__btGroup__next span {
    display: block;
    width: auto;
    font-size: 20px;
    line-height: 1;
    color: #26262d;
    font-family: 'Rallisaguen-B';
}

.banner__tool__count {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: auto;
    font-size: 20px;
    line-height: 1;
    color: #26262d;
    font-family: 'Rallisaguen-B';
    flex: 0 0 auto;
}

.banner__tool__count__current,
.banner__tool__count__total {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
}

.banner__tool__count__total::before {
    content: '/';
    position: relative;
    padding: 0 5px;
}

/**scroll down**/
.banner__scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: flex-end;
    justify-content: flex-end;
    width: auto;
    transform-origin: left bottom;
    transform: rotate(90deg) translate(calc(-100% - 35px), -60px);
    cursor: pointer;
}

.banner__scroll::before {
    content: '';
    position: relative;
    display: block;
    width: 100px;
    height: 1px;
    margin: 0 25px 0 0;
    background: #353333;
    transform-origin: left center;
    animation: lineStretchX 3s linear infinite forwards;
}

.banner__scroll__text {
    display: block;
    width: auto;
    font-size: 14px;
    line-height: 1;
    color: #353333;
    font-family: 'Rallisaguen-SB';
    flex: 0 0 auto;
}

/****最新消息****/
.news {
    display: block;
    width: 100%;
    margin: 130px 0;
}

.news__inner {
    display: block;
    width: calc(100% - 110px);
    margin: 0 0 0 auto;
    animation-name: fadeInUp;
}

.news__inner__box {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.news__inner__box .slick-track {
    padding: 0 0 40px 0;
}

.news__inner__box .slick-arrow {
    top: calc(50% - 60px);
    width: 80px;
    height: 80px;
}

.news__inner__box .slick-prev {
    left: -40px;
}

.news__inner__box .slick-next {
    right: max(60px, calc(50% - 740px));
}

.news__inner__box__item {
    display: block;
    width: 500px;
    margin: 0 50px 0 0;
    flex: 0 0 auto;
}

.news__inner__box__item.slick-slide {
    opacity: .5;
}

.news__inner__box__item.slick-active {
    opacity: 1;
}

.news__inner__box__item__pic {
    display: block;
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
}

.news__inner__box__item__pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    transition: opacity .4s ease-in-out;
}

.news__inner__box__item__content {
    position: absolute;
    top: 0;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 100px);
    max-width: 340px;
    height: 100%;
    color: #fff;
    transform: translateX(-50%);
}

.news__inner__box__item__content__type {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    color: inherit;
    font-family: 'NotoSansTC-M';
}

.news__inner__box__item__content__title {
    display: block;
    width: 100%;
    font-size: 23px;
    line-height: 1.5;
    color: inherit;
    margin: 5px 0 0 0;
}

.news__inner__box__item__link {
    position: absolute;
    bottom: -40px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 88px;
    height: 83px;
    background: url(../images/common/icon_see_more.png) center no-repeat;
    background-size: contain;
    border-radius: 50%;
    overflow: hidden;
}

/****商品分類****/
.category {
    display: block;
    width: 100%;
    margin: 190px auto 90px auto;
}

.category__title {
    justify-items: center;
    justify-content: center;
    text-align: center;
    animation-name: fadeInUp;
}

.category__title::after {
    display: none;
}

.category__title .c-title04__main {
    font-size: 100px;
}

.category__box {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin: 80px auto 0 auto;
}

.category__box__item {
    display: block;
    width: 20%;
    margin: -.5px;
    padding: 20% 0 0 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    animation-name: fadeIn;
}

.category__box__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #f3f6f1;
    opacity: 0;
    transition: opacity .4s ease-in-out;
}

.category__box__item:hover::before {
    opacity: 1;
}

.category__box__item__inner {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.category__box__item__inner__icon {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 auto;
    overflow: hidden;
}

.category__box__item__inner__icon img {
    object-fit: contain;
    object-position: center;
    width: 62.5%;
    height: 62.5%;
}

.category__box__item__inner__title {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1;
    color: #373332;
    font-family: 'NotoSansTC-M';
    text-align: center;
    margin: 20px auto 0 auto;
}

/****展示商品****/
.exhibit {
    display: block;
    width: 100%;
}

.exhibit__area {
    display: block;
    width: 100%;
    padding: 120px 0 150px 0;
    margin: 0 0 100px 0;
}

.exhibit__area:last-child {
    margin: 0;
}

.exhibit__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #f3f6f1 calc(100% - 150px), rgba(243, 246, 241, 0) 100%);
    border-radius: 0 300px 0 0;
    overflow: hidden;
}

.exhibit__area:nth-child(even):before {
    border-radius: 300px 0 0 0;
}

.exhibit__area:last-child:before {
    background: #f3f6f1;
}

.exhibit__area__acc01 {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 703px;
    transform-origin: left bottom;
    opacity: 1;
}

.exhibit__area__acc01__yarn {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 84%;
    filter: drop-shadow(2.5px 2.5px 5px #acacac);
    transform-origin: left bottom;
}

.animated .exhibit__area__acc01__yarn {
    animation: stretchLeft 1s linear forwards;
}

.exhibit__area__acc01__yarnBall {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 172px;
    opacity: 1;
}

.animated .exhibit__area__acc01__yarnBall {
    animation: yarnBallBoll 1s linear forwards;
}

.exhibit__area__acc01__yarnBall img {
    transform-origin: center;
}

.animated .exhibit__area__acc01__yarnBall img {
    animation: roll 1s linear forwards;
}

.exhibit__area__acc01__yarnBall::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30%;
    display: block;
    width: 40%;
    padding: 6%;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    box-shadow: 0 0 30px rgba(0, 0, 0, .9);
}

.exhibit__area__acc01__yarnBall::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/common/yarnBall_shadow.png) center no-repeat;
    background-size: contain;
}

.exhibit__area__acc02 {
    position: absolute;
    top: -250px;
    right: 0;
    display: block;
    width: 366px;
    animation-name: fadeInRight;
}

.exhibit__area__head {
    display: block;
    width: calc(100% - 120px);
    max-width: 1600px;
    margin: 0 auto;
    animation-name: fadeInUp;
}

.exhibit__area__box {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% - 60px);
    max-width: 1800px;
    margin: 140px 0 0 auto;
    animation-name: fadeIn;
}

.exhibit__area__box .slick-arrow {
    top: -120px;
    left: auto;
    right: max(60px, calc(50% - 800px));
    background-color: transparent;
}

.exhibit__area__box .slick-prev {
    right: max(130px, calc(50% - 730px));
}

.exhibit__area__box__item {
    width: 300px;
    margin: 0 100px 0 0;
    flex: 0 0 auto;
}

/****品牌精選****/
.brand {
    display: block;
    width: 100%;
    margin: 275px 0 80px 0;
}

.brand__acc01 {
    position: absolute;
    top: -325px;
    left: calc(50% - 95px);
    display: block;
    width: 100px;
    animation-name: fadeInUp;
}

.brand__inner {
    max-width: 1600px;
}

.brand__inner__title {
    width: calc(100% - 200px);
    margin: 0 0 120px auto;
    animation-name: fadeInUp;
}

.brand__inner__box {
    left: -25px;
    display: flex;
    align-items: stretch;
    align-content: stretch;
    justify-items: flex-start;
    justify-content: flex-start;
    width: calc(100% + 50px);
    margin: 0 auto;
    animation-name: fadeIn;
}

.brand__inner__box .slick-track {
    display: flex;
    align-items: stretch;
    align-content: stretch;
}

.brand__inner__box .slick-arrow {
    top: -155px;
}

.brand__inner__box .slick-prev {
    left: 30px;
}

.brand__inner__box .slick-next {
    left: 105px;
    right: auto;
}

.brand__inner__box .brand__inner__box__item {
    width: calc(25% - 50px);
    height: auto;
    margin: 0 25px;
    flex: 0 0 auto;
}

.brand__inner__box__item__pic {
    display: flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand__inner__box__item__pic img {
    object-fit: contain;
    object-position: center;
    width: 80%;
    max-width: 200px;
    height: 80%;
    max-height: 150px;
}

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

    /****banner****/
    /**輪播**/
    .banner__box {
        width: calc(100% - 70px);
    }

    /*圖片*/
    .banner__box__item__pic {
        width: calc(100% - 30px);
    }

    /*文案*/
    .banner__box__item__content__title {
        font-size: 70px;
    }

    .banner__box__item__content__text {
        margin: 30px 0 0 0;
    }

    /**scroll down**/
    .banner__scroll {
        transform: rotate(90deg) translate(calc(-100% - 35px), -30px);
    }

    /****最新消息****/
    .news {
        margin: 90px 0;
    }

    .news__inner {
        width: calc(100% - 70px);
    }

    .news__inner__box .slick-next {
        right: max(30px, calc(50% - 740px));
    }

    /****商品分類****/
    .category {
        margin: 140px auto 100px auto;
    }

    .category__title .c-title04__main {
        font-size: 80px;
    }

    .category__box {
        margin: 70px auto 0 auto;
    }
}

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

    /****展示商品****/
    .exhibit__area__acc01 {
        left: -220px;
    }

    /****商品分類****/
    .category__box__item {
        width: 25%;
        padding: 25% 0 0 0;
    }
}

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

    /****banner****/
    .banner {
        height: 810px;
        min-height: 0;
        padding: 110px 0 0 0;
    }

    /**輪播**/
    .banner__box {
        width: 100%;
    }

    .banner__box::before {
        height: 100%;
        border-radius: 300px 0 0 0;
    }

    .banner__box__item__pic {
        width: 100%;
    }

    .banner__box__item__pic .pc {
        display: none;
    }

    .banner__box__item__pic .pad {
        display: block;
    }

    /*文案*/
    .banner__box__item__content {
        width: calc(55% - 30px);
        max-height: calc(100% - 200px);
    }

    .banner__box__item__content__text {
        margin: 20px 0 0 0;
    }

    /****輪播按鈕&計數器****/
    .banner__tool {
        bottom: 50px;
        right: 30px;
        justify-items: flex-end;
        justify-content: flex-end;
        width: calc(60% - 80px);
    }

    .banner__tool__btGroup {
        margin: 0 25px 0 0;
    }

    .banner__tool__btGroup__prev {
        margin: 0 40px 0 0;
    }

    /**scroll down**/
    .banner__scroll {
        display: none;
    }

    /****最新消息****/
    .news {
        margin: 90px 0;
    }

    .news__inner {
        width: calc(100% - 75px);
    }

    .news__inner__box__item {
        width: calc(100vw - 150px);
        max-width: 550px;
        margin: 0 55px 0 0;
    }

    /****商品分類****/
    .category__box__item::before {
        display: none;
    }

    .category__box__item__inner__icon {
        width: 100%;
        height: 40px;
    }

    .category__box__item__inner__icon img {
        object-fit: fill;
        width: auto;
        height: 100%;
        margin: 0 auto;
    }

    /****展示商品****/
    .exhibit__area {
        padding: 130px 0 100px 0;
        margin: 0 0 180px 0;
    }

    .exhibit__area::before {
        border-radius: 0 200px 0 0;
    }

    .exhibit__area:nth-child(even):before {
        border-radius: 200px 0 0 0;
    }

    .exhibit__area__acc01 {
        left: -220px;
        transform: scale(.6);
    }

    .exhibit__area__acc02 {
        top: -210px;
        width: 280px;
    }

    .exhibit__area__box {
        margin: 70px 0 0 auto;
    }

    .exhibit__area__box .slick-arrow {
        right: 30px;
    }

    .exhibit__area__box .slick-prev {
        right: 100px;
    }

    .exhibit__area__box__item {
        width: 285px;
        margin: 0 30px 0 0;
    }

    /****品牌精選****/
    .brand {
        margin: 190px 0 100px 0;
    }

    .brand__acc01 {
        top: -230px;
        left: calc(50% + 55px);
        width: 60px;
    }

    .brand__inner__title {
        width: 100%;
        margin: 0 0 70px 0;
    }

    .brand__inner__box {
        left: 0;
        width: calc(100% - 150px);
    }

    .brand__inner__box .slick-arrow {
        top: calc(50% - 25px);
    }

    .brand__inner__box .slick-prev {
        left: -50px;
    }

    .brand__inner__box .slick-next {
        left: auto;
        right: -50px;
    }

    .brand__inner__box__item {
        width: calc(50% - 30px);
        margin: 0 15px;
    }
}

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

    /****banner****/
    /**輪播**/
    /*文案*/
    .banner__box__item__content {
        width: 70%;
        max-width: 350px;
    }

    .banner__box__item__content__title {
        font-size: 50px;
        text-align: right;
    }

    .banner__box__item__content__text {
        display: none;
    }

    .banner__box__item__content__link {
        max-width: 130px;
        margin: 15px 0 0 auto;
    }

    /****商品分類****/
    .category__title .c-title04__main {
        font-size: 60px;
        line-height: 1;
    }

    .category__title .c-title04__sub::before {
        margin: 30px auto 15px auto;
    }

    .category__box__item {
        width: calc(100% / 3);
        padding: calc(100% / 3) 0 0 0;
    }

    /****展示商品****/
    .exhibit__area__box .slick-arrow {
        top: -160px;
    }
}

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

    /****banner****/
    .banner {
        height: 400px;
        padding: 60px 0 0 0;
    }

    .banner__box::before {
        border-radius: 200px 0 0 0;
    }

    .banner__box__item__pic .pad {
        display: none;
    }

    .banner__box__item__pic .mb {
        display: block;
    }

    /**輪播**/
    /*文案*/
    .banner__box__item__content {
        right: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100% - 100px);
    }

    .banner__box__item__content__title {
        font-size: 40px;
    }

    /****輪播按鈕&計數器****/
    .banner__tool {
        bottom: 15px;
        right: 20px;
        width: auto;
        min-width: 130px;
        justify-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    .banner__tool__btGroup {
        position: absolute;
        top: -3px;
        width: 100%;
        margin: 0;
    }

    .banner__tool__btGroup__prev,
    .banner__tool__btGroup__next {
        position: absolute;
        top: 0;
    }

    .banner__tool__btGroup__prev {
        left: 0;
    }

    .banner__tool__btGroup__next {
        right: 0;
    }

    .banner__tool__btGroup__prev span,
    .banner__tool__btGroup__next span {
        display: none;
    }

    .banner__tool__btGroup__prev::before,
    .banner__tool__btGroup__next::after {
        width: 10px;
        height: 20px;
    }

    .banner__tool__count {
        justify-items: center;
        justify-content: center;
        font-size: 15px;
    }

    /****最新消息****/
    .news {
        margin: 50px 0;
    }

    .news__inner {
        width: calc(100% - 20px);
    }

    .news__inner__box .slick-track {
        padding: 0;
    }

    .news__inner__box__item {
        width: calc(100vw - 80px);
        margin: 0 30px 0 0;
    }

    .news__inner__box__item__content {
        width: calc(100% - 50px);
        max-width: none;
        padding: 0 20px 0 0;
    }

    .news__inner__box__item__content__type {
        font-size: 14px;
        font-family: 'NotoSansTC';
    }

    .news__inner__box__item__content__title {
        font-size: 20px;
    }

    .news__inner__box__item__link {
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: none;
    }

    .news__inner__box__item__link::before {
        content: '';
        position: absolute;
        top: calc(50% - 10px);
        right: 25px;
        display: block;
        width: 10px;
        height: 20px;
        background: url(../images/common/icon_arrow_next_thin_black.svg) center no-repeat;
        background-size: contain;
        filter: brightness(0) invert(1);
    }

    /****商品分類****/
    .category {
        margin: 70px auto 65px auto;
    }

    .category__title .c-title04__main {
        font-size: 40px;
    }

    .category__title .c-title04__sub::before {
        margin: 25px auto 15px auto;
    }

    .category__box {
        margin: 30px auto 0 auto;
    }

    .category__box__item {
        width: 50%;
        padding: 20px 10px;
    }

    .category__box__item__inner {
        position: relative;
        flex-wrap: nowrap;
    }

    .category__box__item__inner__icon {
        width: 40px;
        height: 40px;
        margin: 0 10px 0 0;
        border-radius: 0;
    }

    .category__box__item__inner__icon img {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .category__box__item__inner__title {
        width: auto;
        min-width: 80px;
        margin: 0;
        font-size: 14px;
        flex: 0 1 auto;
    }

    /****展示商品****/
    .exhibit__area {
        padding: 80px 0 50px 0;
        margin: 0 0 110px 0;
    }

    .exhibit__area::before {
        border-radius: 0 120px 0 0;
    }

    .exhibit__area:nth-child(even):before {
        border-radius: 120px 0 0 0;
    }

    .exhibit__area__acc01 {
        left: -180px;
        transform: scale(0.4);
    }

    .exhibit__area__acc02 {
        top: -125px;
        width: 150px;
    }

    .exhibit__area__head {
        width: calc(100% - 40px);
    }

    .exhibit__area__box {
        width: calc(100% - 20px);
        margin: 35px 0 0 auto;
    }

    .exhibit__area__box .slick-arrow {
        top: -105px;
        right: 20px;
    }

    .exhibit__area__box .slick-prev {
        right: 80px;
    }

    .exhibit__area__box__item {
        width: 195px;
    }

    /****品牌精選****/
    .brand {
        margin: 100px 0 70px 0;
    }

    .brand__acc01 {
        display: none;
    }

    .brand__inner__title {
        margin: 0 auto 20px auto;
    }

    .brand__inner__box .slick-prev {
        left: -75px;
    }

    .brand__inner__box .slick-next {
        right: -75px;
    }

    .brand__inner__box__item {
        width: calc(100% - 100px);
        margin: 0 50px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}