/* ----------FONTS---------- */
@font-face {
    font-family: 'FuturaLT-Book';
    src: url(../fonts/FuturaLT-Book.ttf);
    font-weight: normal;
    font-style: normal;
}

/* ----------BASE---------- */
* {
    margin: 0;
    padding: 0;
    /* transition: all .3s ease-in-out; */
}

html {
    min-width: 280px;
    /* overflow-x: hidden; */
    overflow-y: auto;
}

body {
    font-family: 'FuturaLT-Book', Helvetica, 'PingFang SC';
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    background: #ffffff;
    color: #777777;
    margin: 0 auto;
    /* max-width: 2560px; */
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #777777;
}

a:hover {
    color: #000000;
}

img,
input {
    border: none;
    /* outline: none; */
}

svg {
    width: 20px;
    height: 20px;
}

.imgloading {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.imgloading img {
    width: 50px !important;
    height: 50px !important;
    content: url(../imgs/ico_loading.svg);
    animation: imgloading 1s linear infinite;
    opacity: 0.5;
}

@keyframes imgloading {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



/* ----------COMMON---------- */
header,
section {
    padding: 0 100px;
    max-width: calc(2560px - 200px);
    margin: 0 auto;
    /* background-color: #eee;*/
}

article {
    width: auto;
    margin-bottom: 100px;
}

footer {
    display: none;
}

section.full {
    padding: 0;
    margin: 0 auto;
    max-width: none;
    width: 100%;
}

h1 {
    margin: 80px auto;
    text-align: center;
}

h1 span,
h1 a {
    font-size: 36px;
    font-weight: 400;
    color: #333;
    padding: 5px 0;
    display: inline-block;
    /* border-bottom: 2px solid #aaa; */
}

h1 span::after,
h1 a::after {
    content: "";
    display: block;
    border-bottom: 2px solid #333;
}

h1 a{
    transform: scale(1);
    transition: all .3s ease-in-out;
}
h1 a:hover{
    transform: scale(1.1);
}

h1 i {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    display: block;
}

.full {
    background: #eeeeee;
}

.clear {
    clear: both;
    height: 0;
}

.no-scroll {
    overflow: hidden;
}

.active {
    display: block;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all .5s ease-in-out;
    visibility: hidden;
    z-index: 1000;
}

.mask-show {
    background: rgba(0, 0, 0, 0.6);
    visibility: visible;
}

.box {
    position: relative;
}

.box .more {
    position: absolute;
    top: 60px;
    right: 0;
    margin: 0;
}

.more {
    text-align: center;
    margin: 40px auto 80px;
    padding: 0 0;
}
.discover-more {
    text-align: right;
    margin: 40px auto 80px;
    padding: 0 0;
}

.more a,
.discover-more a {
    display: inline-block;
    color: #666;
    font-size: 20px;
    line-height: 1;
    width: auto;
    height: 30px;
    position: relative;
}

.more a::after,
.discover-more a::after {
    content: "";
    display: block;
    border-bottom: 1px solid #666;
    width: 100%;
    position: absolute;
    bottom: 6px;
}

.more a:hover,
.discover-more a:hover {
    color: #000;
}

.more a:hover::after,
.discover-more a:hover::after {
    border-bottom: 1.5px solid #333;
}



/* ----------HEADER---------- */
.logo {
    width: 180px;
    min-width: 260px;
    height: 40px;
    background: url(../imgs/logo_grado.svg) no-repeat left center / auto 86%;
    display: inline-block;
    vertical-align: bottom;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.nav {
    padding: 130px 0 30px;
    position: relative;
    transition: all .3s ease-in-out;
    position: relative;
    transition: none;
}

.nav::after {
    content: "";
    clear: both;
    display: block;
    border-bottom: 1px solid #dddddd;
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: none;
    display: none;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: url(../imgs/ico_menu.svg) no-repeat center center;
    background-size: 67%;
    float: right;
    display: none;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.nav-list {
    border-bottom: 1px solid #dddddd;
    position: absolute;
    top: 40px;
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
}

.nav-list li {
    display: inline-block;
    word-break: keep-all;
}

.nav-list li:nth-child(3){
    display: none;
}

.nav-list li a {
    font-size: 15px;
    line-height: 60px;
    margin: 0 20px;
    display: block;
    position: relative;
    color: #999;
    transition: all .3s ease-in-out;
}

.nav-list li.active a,
.nav-list li a:hover {
    color: #333333;
    font-weight: 600;
}

.nav-list li a::after,
.nav-list li a::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000000;
    position: absolute;
    bottom: -1px;
    width: 0%;
    left: 50%;
    margin-left: 0%;
    transition: all .3s ease-in-out;
}

.nav-list li.active a::after,
.nav-list li a:hover::after {
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.fast-nav {
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 18px;
    line-height: 40px;
    color: #999999;
    /* width: 220px; */
}

.fast-nav li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    transition: none;
}

.fast-nav li a {
    transition: none;
}

.fast-nav .home {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../imgs/ico_home.svg) no-repeat center center /65%;
}

.fast-nav .search {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../imgs/ico_search.svg) no-repeat center center /65%;
}

.fast-nav .lang {
    color: #999999;
    display: inline-block;
    padding: 0 5px;
    font-size: 22px;
}

.fast-nav .lang-on {
    color: #333333;
}

.fast-nav .lang:hover {
    color: #000000;
}

.fast-nav span {
    color: #cccccc;
    transition: none;
}

.fast-nav .user {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../imgs/ico_user.svg) no-repeat center center /60%;
}

.fast-nav .name {
    display: none;
    width: auto;
    height: 40px;
    /* font-size: 18px; */
    color: #333333;
    position: relative;
}

.fast-nav .name::after {
    content: "";
    display: block;
    border-bottom: 1.5px solid #333333;
    width: 100%;
    position: absolute;
    bottom: 9px;
    left: 0;
}

.fast-nav a{
    transition: all .3s ease-in-out;
}
.fast-nav a:hover {
    transform: scale(1.1);
}

.fast-nav li.signed {}

.fast-nav li.signed .user {
    background-image: url(../imgs/ico_user_signed.svg);
    position: relative;
    pointer-events: none;
}

.fast-nav li.signed .name {
    display: block;
}

.fast-nav li.signed {}

.fast-nav li.signed .user {
    background-image: url(../imgs/ico_user_signed.svg);
    position: relative;
    pointer-events: none;
}

.fast-nav li.signed .name {
    display: block;
}

.menu-list {
    vertical-align: bottom;
    position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
    padding: 29px 80px;
    top: 101px;
    left: -80px;
    display: flex;
    gap: 0;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    box-shadow: 0 30px 50px 0px rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
}

.menu-show {
    visibility: visible;
    opacity: 1;
    max-height: calc(500px + 60px);
}

.menu-list li {
    display: inline-block;
}

.menu-list li.brand-li .child a{
    font-size: 16px;
    color: #333;
}
.menu-list li.brand-li .child a:hover{
    font-weight: 600;
    color: #000;
    transition: none;
}

.menu-list li a {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    height: 40px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    transition: all .3s ease-in-out;
}

.menu-list li a::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000000;
    position: absolute;
    bottom: 5px;
    width: 0%;
    left: 50%;
    margin-left: 0%;
    transition: all .3s ease-in-out;
}

.menu-list li.active a {
    color: #333333;
    transition: all .3s ease-in-out;
    /* font-weight: 600; */
}

.menu-list li a:hover {
    color: #333333;
}

.menu-list li.active a::after,
.menu-list li a:hover::after {
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.menu-list li .child {
    padding: 10px 0;
}
.menu-list li .child a {
    height: auto;
    min-height: 30px;
    font-size: 16px;
    color: #bbb;
    width: auto;
    display: flex;
    white-space: break-spaces;
    margin-bottom: 10px;
}
.menu-list li .child a:hover{
    color: #000;
}
.menu-list li .child a::after{
    display: none;
}

#menu-list1{
    gap: 0px;
}
#menu-list2{
    gap: 60px;
}
#menu-list3,
#menu-list4,
#menu-list5 {
    gap: 40px;
}



/* ----------FULL BANNER---------- */
.banner {
    position: relative;
    width: 100%;
    height: 720px;

    padding: 0 0;
    max-width: calc(2560px - 200px);
    margin: 0 auto;

    overflow: hidden;
    transition: all .3s ease-in-out;
}

.banner:hover a.btnPrev,
.banner:hover a.btnNext {
    opacity: 0.5;
}

.banner a {
    cursor: default;
}

.banner a.btnPrev,
.banner a.btnNext {
    position: absolute;
    display: block;
    background: url(../imgs/ico_prev.svg) no-repeat center center /100% border-box;
    z-index: 2;
    opacity: 0.2;
    transition: all .3s ease-in-out;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background-size: 60px;
    transition: all .3s ease-in-out;
}

.banner a.btnPrev:hover,
.banner a.btnNext:hover {
    opacity: 1;
    transform: scale(1.1);
}

.banner a.btnNext {
    background-image: url(../imgs/ico_next.svg);
    left: auto;
    right: 0;
}

.banner .banner-box {
    width: auto;
    height: 100%;
    position: absolute;
    transition: left .3s ease-in-out;
    display: block;
    overflow: hidden;
}

.banner .banner-box li {
    display: block;
    height: 100%;
    position: absolute;
    overflow: hidden;
    /* background: #000000; */
    transition: none;
}

.banner .banner-box li a {
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.banner .banner-box li a::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: all .3s ease-in-out;
}

.banner .banner-box li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner-box li video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .banner-box li dl {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.banner .banner-box li dt {
    font-size: 40px;
    line-height: 120px;
    color: #ffffff;
    position: relative;
    text-align: center;

    img{
        height: 50px;
    }
}

.banner .banner-box li dt::after {
    content: "";
    display: block;
    position: absolute;
    width: 50%;
    bottom: 0;
    left: calc(50% - 25%);
    border-bottom: 1px solid #ffffff;
}

.banner .banner-box li dd {
    display: block;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin-top: 30px;
    text-align: center;
}

.banner .banner-box li:hover a::after {
    background: rgba(0, 0, 0, 0.4);
}

.banner .banner-box li:hover dl {
    opacity: 1;
    z-index: 1;
    height: 100%;
    height: -webkit-fill-available;
}

/*BANNER-PAGE-BOX*/
.banner .page-box {
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: 0;
    display: flex;
    justify-content: center;
    z-index: 1;
    pointer-events: painted;
}

.banner .page-box li {
    width: 20px;
    height: 40px;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.banner .page-box li::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: #666666;
    border: 1px solid #ffffff;
    border-radius: 12px;
    opacity: 0.5;
    transition: opacity .3s ease-in-out;
}

.banner .page-box li:hover::after {
    background: #ffffff;
    border: 1px solid #cccccc;
    opacity: 0.7;
}

.banner .page-box li.active::after {
    background: #ffffff;
    border: 1px solid #999999;
    opacity: 1;
}


/*HOME-BANNER*/
.inspiration-banner,
.news-banner{
    height: 600px;
}
.inspiration-banner a.btnPrev,
.news-banner a.btnPrev{
    background-image: url(../imgs/ico_left.svg);
    background-size: 33%;
    background-position: 10px;
    opacity: 0.6;
    width: 100px;
}
.inspiration-banner a.btnNext,
.news-banner a.btnNext{
    background-image: url(../imgs/ico_right.svg);
    background-size: 33%;
    background-position: 50px;
    opacity: 0.6;
    width: 100px;
}
.inspiration-banner .banner-box li:hover a,
.news-banner .banner-box li:hover a {
    transform: scale(1.03);
}
.inspiration-banner .banner-box li a,
.news-banner .banner-box li a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

/*HOME-INSPIRATION*/
.inspiration-banner .banner-box li div{
    order: 2;
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.inspiration-banner .banner-box li dl{
    order: 1;
    background: #ddd;
    display: flex;
    gap: 40px;
    position: relative;
    width: 45%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.inspiration-banner .banner-box li dt {
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
    color: #333;
    position: relative;
    text-align: center;
}
.inspiration-banner .banner-box li dd {
    display: block;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-top: 0;
    text-align: center;
}
.inspiration-banner .banner-box li dd span {
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}

/*HOME-NEWS*/
.news-banner .banner-box li div {
    order: 1;
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.news-banner .banner-box li dl {
    order: 2;
    background: #c0cad4;
    display: flex;
    gap: 40px;
    position: relative;
    width: calc(45% - 80px);
    height: calc(100% - 80px);
    padding: 40px 40px;
    align-items: flex-start;
    justify-content: flex-end;
    opacity: 1;
}
.news-banner .banner-box li dt {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    color: #333;
    position: relative;
    text-align: left;
}
.news-banner .banner-box li dd {
    display: block;
    line-height: 1.1;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-top: 0;
    text-align: left;
}
.news-banner .banner-box li dd:last-child {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}
.news-banner .banner-box li dd span {
    font-size: 16px;
    font-weight: 400;
    text-decoration: underline;
}
.news-banner .banner-box li dd i {
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
}

.inspiration-banner .banner-box li dt::after,
.inspiration-banner .banner-box li a::after,
.news-banner .banner-box li dt::after,
.news-banner .banner-box li a::after {
    content: none;
}



/*SPACE-BANNER*/
.space .banner-box li a::after {
    background: rgba(255, 255, 255, 0);
}

.space .banner-box li a:hover::after {
    background: rgba(255, 255, 255, 0.8);
}
.space .banner-box li dt{
    color: #000;
    font-size: 50px;
}
.space .banner-box li dt::after {
    content: none;
}

/*BRAND-BANNER*/
.brand .banner-box li dt::after {
    content: none;
}



/* ----------HOME NAV---------- */
.home .nav {
    padding: 40px 0;
}

.home .nav-list {
    width: 50%;
    min-width: 40%;
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    border: none;
    position: absolute;
    top: 40px;
    left: calc(5% + 80px);
}

.home .nav-list li {
    display: inline-block;
    word-break: keep-all;
}

.home .nav-list li a {
    font-size: 18px;
    line-height: 40px;
    margin: 0 10px;
    display: block;
    transition: all .3s ease-in-out;
}

.home .nav-list li a:hover {
    color: #333333;
    border-bottom: none;
    transform: scale(1.1);
}

.home .menu-list {
    display: none;
}



/* ----------HOME BANNER---------- */
.home-banner {
    background: #000000;
}



/* ----------HOME PROJECT---------- */
.home-project {}

.home-project ul {
    width: 100%;
    height: 450px;
    position: relative;
}

.home-project ul li {
    width: calc(50% - 25px);
    height: calc(50% - 25px);
    position: absolute;
}

.home-project ul li:nth-child(1) {
    top: 0;
    left: 0;
    height: 100%;
}

.home-project ul li:nth-child(2) {
    top: 0;
    left: calc(50% + 25px);
    width: calc(25% - 37.5px);
}

.home-project ul li:nth-child(3) {
    top: 0;
    right: 0;
    width: calc(25% - 37.5px);
}

.home-project ul li:nth-child(4) {
    right: 0;
    bottom: 0;
}

.home-project ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
}

.home-project ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.home-project ul li span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    transition: all .3s ease-in-out;
}

.home-project ul li:hover span {
    color: #000000;
    background: rgba(0, 0, 0, 0);
}

.home-project ul li:hover img {
    transform: scale(1.1);
}



/* ----------HOME PRODUCT---------- */
.home-product {
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
    padding: 60px;
    background: #eee;

    h1 {
        text-decoration: underline;
        text-underline-offset: 6px;
        margin: 0 auto 60px;
        color: #333;
        font-size: 20px;
        font-weight: 600;
    }
    .more {
        position: absolute;
        right: 60px;
        top: 80px;
        margin: 0;
        padding: 0 20px;
        color: #333;

        a{
            display: block;
            padding: 0 20px;
            color: #333;
            font-size: 16px;
            line-height: 30px;
            width: auto;
            height: 30px;
            position: relative;
            background: url(../imgs/ico_more_link.svg) no-repeat right center / auto 55%;
        }
        a::after {
            content: "";
            display: block;
            border-bottom: 1px solid #999;
            width: calc(100% - 15px);
            position: absolute;
            bottom: 5px;
        }
    }
}

.home-product ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.home-product ul li {
    margin-bottom: 50px;
    width: calc(33.33% - 5%);
    height: auto;
}


.home-product ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
}

.home-product ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.home-product ul li div{
    display: flex;
    justify-content: space-between;
    
    span {
        display: block;
        width: 50%;
        line-height: 1;
        text-align: left;
        padding: 10px 0;
        color: #333;
    }
    a {
        display: block;
        width: 50%;
        line-height: 1;
        text-align: right;
        padding: 10px 0;
        color: #333;
        background: none;
        text-decoration: underline;
    }
}

.home-product ul li:hover img {
    transform: scale(1.1);
}




/* ----------HOME DESIGNER---------- */
.home-designer {}

.home-designer>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.home-designer div.video {
    width: 64%;
    height: auto;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.home-designer div.video video {
    width: 100%;
    /* border-radius: 10px; */
    overflow: hidden;

}

.home-designer div.info {
    padding-left: 30px;
    width: calc(36% - 30px);
}

.home-designer h2 {
    padding: 10px 0 40px;
    color: #333;
    font-size: 34px;
    font-weight: 400;
    text-align: left;
}

.home-designer p {
    padding-right: 5%;
    line-height: 1.5;
}

/* .home-designer .video::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
} */

.home-designer .video::after {
    transition: all .3s ease-in-out;
}

.home-designer .video video {
    transition: all .3s ease-in-out;
}

.home-designer .video:hover::after {
    background: rgba(0, 0, 0, 0);
}

.home-designer .video:hover video {
    transform: scale(1.05);
}



/* ----------HOME NEWS---------- */
.home-news {
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;

    h1 {
        text-decoration: underline;
        text-underline-offset: 6px;
        margin: 0 auto 60px;
        color: #333;
        font-size: 20px;
        font-weight: 600;
    }
    .more {
        position: absolute;
        right: 0px;
        top: 50px;
        margin: 0;
        padding: 0 20px;
        color: #333;

        a{
            display: block;
            padding: 0 15px;
            color: #333;
            font-size: 16px;
            line-height: 30px;
            width: auto;
            height: 30px;
            position: relative;
            background: url(../imgs/ico_more_link.svg) no-repeat right center / auto 50%;
        }
        a::after {
            content: "";
            display: block;
            border-bottom: 1px solid #999;
            width: calc(100% - 15px);
            position: absolute;
            bottom: 5px;
        }
    }
}



/* ----------LAYER SEARCH BAR---------- */
.search-bar {
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1001;
    width: 100%;
}

.search-bar .search-box {
    max-width: 2560px;
    margin: 0 auto;
    padding: 75px 100px;
    /* padding-top: 40px; */
    height: 0;
    display: flex;
    opacity: 0;
    background: #ffffff;
    transition: all .3s ease-in-out;
}

.search-bar .search-box input {
    width: 100%;
    height: 40px;
    border: 0;
    /* outline: none; */
    border-bottom: 1px solid #888888;
    font-size: 20px;
    background: url(../imgs/ico_search.svg) no-repeat left 5px center /auto 60% border-box;
    margin-left: 20px;
    text-indent: 40px;
}

.search-bar .search-box input::placeholder {
    color: #cccccc;
}

.search-bar .search-box button {
    width: auto;
    height: 40px;
    margin-left: 10px;
    background: #222222;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    font-size: 18px;
    padding: 0 20px;
    cursor: pointer;
    text-align: center;
    word-break: keep-all;
}

.search-bar .search-box button:hover {
    background: #444444;
}

.search-bar-show {
    visibility: visible;
}

.search-bar-show .search-box {
    height: 50px;
    opacity: 1;
}



/* ----------SEARCH RESULT---------- */
.search-list-box {
    display: none;
    padding: 20px 0;
}

.search-list-box .nav::after {
    display: none;
}

.search-area {
    margin: 80px 0 50px;
}

.search-area .search-area-box {
    width: 50%;
    margin: 0 auto;
    position: relative;
}

.search-area .search-area-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
    text-indent: 15px;
    margin: 0 auto;
    display: block;
}

.search-area .search-area-box input::placeholder {
    color: #cccccc;
}

.search-area .search-area-box button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 50px;
    height: 42px;
    line-height: 42px;
    background: url(../imgs/ico_search.svg) no-repeat center center / 50%;
    border: none;
    opacity: 0.6;
}

.search-area .search-area-box button:hover {
    opacity: 1;
}

.search-sort {
    width: 70%;
    margin: 0 auto;
    display: flex;
    margin-top: 40px;
    justify-content: space-around;
}

.search-sort li {
    width: 22%;
    margin: 0;
}

.search-sort li a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #eeeeee;
    color: #999999;
}

.search-sort li a:hover,
.search-sort li.active a {
    background: #333333;
    color: #ffffff;
}

.search-list {
    border-top: 1px solid #dddddd;
    padding-top: 40px;
}



/* ----------IMG LIST---------- */
.three-column {
    position: relative;
    margin-top: 10px;
}

.three-column ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.three-column ul li {
    margin-bottom: 60px;
    width: calc(33.33% - 25px);
}

.three-column ul li.no-see {
    padding: 0;
    margin: 0;
    height: 0;
    /* flex: 1; */
}

.three-column ul li a {
    display: block;
    width: 100%;
    height: 380px;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
    transition: none;
}

.three-column ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

.three-column ul li span {
    display: block;
    line-height: 1.5;
    text-align: center;
    margin: 20px 0;
    color: #777777;
}

.three-column ul li:hover img {
    transform: scale(1.1);
}



/* ----------SORT LIST---------- */
.sort-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px auto;
}

.sort-list li {
    padding: 0;
    border-radius: 10px 10px 0 0;
    border: 1px solid #ffffff;
    border-bottom: none;
}

.sort-list li.active {}

.sort-list li a {
    color: #999;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    height: 40px;
    margin: 0 15px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.sort-list li a::after {
    content: "";
    display: block;
    border-bottom: 2px solid #000000;
    position: absolute;
    bottom: 3px;
    width: 0%;
    left: 50%;
    margin-left: 0%;
    transition: all .3s ease-in-out;
}

.sort-list li.active a::after,
.sort-list li a:hover::after {
    width: 100%;
    left: 50%;
    margin-left: -50%;
}

.sort-list li.active a {
    color: #333;
    position: relative;
}

.sort-list li.active a,
.sort-list li a:hover {
    color: #333;
    /* font-weight: 600; */
}




/* ----------LIST FILTER---------- */
.list-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 0;
    flex-wrap: nowrap;
}

.list-filter input {
    padding: 0 10px;
    width: 300px;
    height: 40px;
    margin: 0 0;
    background: none left 10px center / auto 50% border-box;
    border: 1px solid #999;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.list-filter input::placeholder {
    color: #ccc;
}

.list-filter select {
    padding: 5px 10px;
    width: 222px;
    height: 42px;
    margin: 0 10px;
    background: none left 10px center / auto 50% border-box;
    border: 1px solid #999;
    border-radius: 5px;
    font-size: 16px;
    color: #999;
}

.list-filter option {
    display: block;
    font-size: 18px;
    line-height: 40px;
    height: 40px;
    color: #333;
    border-bottom: 1px solid #000000;
    padding: 10px;
}

/* .list-filter option:first-child {
    display: none;
} */

.list-filter button {
    width: auto;
    height: 42px;
    margin-left: -10px;
    margin-right: 0;
    background: #222222 url(../imgs/ico_search_white.svg) no-repeat center center / auto 60%;
    border-radius: 0 4px 4px 0;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 0 30px;
    cursor: pointer;
    text-align: center;
}

.list-filter button:hover {
    background-color: #444444;
}



/* ----------LIST ORDER---------- */
.list-order {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 40px;
}

.list-order button {
    padding: 0 10px;
    padding-right: 25px;
    height: 40px;
    margin: 0 5px;
    background: url(../imgs/ico_order.svg) no-repeat right 5px center / auto 40% border-box;
    border: none;
    color: #333;
    opacity: 0.8;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.list-order button:hover {
    opacity: 1;
    color: #000;
}

.list-order button.active {
    background-color: #eee;
    opacity: 1;
}

.list-order button.reverse {
    background-image: url(../imgs/ico_order_reverse.svg);
}

.list-order button.hot {}

.list-order button.new {}

.list-order button.a2z {
    background: none;
    padding: 0 10px;
    color: #ccc;
    display: none;
}

.list-order button a {
    font-weight: 400;
    color: #000;
}

.list-order button b {
    font-weight: 400;
    color: #ccc;
}

.list-order button.reverse a {
    font-weight: 400;
    color: #ccc;
}

.list-order button.reverse b {
    font-weight: 400;
    color: #000;
}



/* ----------PRODUCT LIST---------- */
.product-list {}

.product-list ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-list ul li {
    position: relative;
    padding-bottom: 50px;
    margin: 0;
    width: calc(25% - 12.5px);
    height: auto;
    overflow: hidden;
}

.product-list ul li>a {
    width: 100%;
    height: 415px;
    position: relative;
}

.product-list ul li>a dl {
    position: absolute;
    display: block;
    width: calc(100% - 20px);
    height: 135%;
    top: -100px;
    left: 0;
    z-index: 1;
    justify-content: center;
    opacity: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    padding: 10px;
}

.product-list ul li:hover>a dl {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    top: -75px;
}

.product-list ul li>a dl dt {
    color: #ffffff;
    display: block;
    line-height: 1.2;
    padding: 15px 0;
    font-size: 22px;
    text-align: center;
    position: relative;
    width: 100%;
    display: none;
}

.product-list ul li>a dl dd {
    color: #dddddd;
    display: block;
    line-height: 1.2;
    padding: 15px 0;
    font-size: 22px;
    text-align: center;
    width: 100%;
    display: none;
}

.product-list ul li>a dl dt::after {
    content: "";
    display: block;
    width: 80px;
    border-bottom: 1px solid #ffffff;
    position: absolute;
    left: calc(50% - 40px);
    bottom: calc(0% + 0px);
}

.product-list ul li>span {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 1.1;
    /* height: 100px; */
    /* position: absolute; */
    width: 100%;
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-list ul li>span:nth-child(3){
    display: none;
}

.product-list ul li .btn-list {
    position: absolute;
    width: 100%;
    height: 100px;
    display: flex;
    bottom: -100px;
    flex-direction: column;
    opacity: 0;
    background: #ffffff;
}

.product-list ul li .btn-list a.download,
.product-list ul li .btn-list a.explore {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: left;
    text-indent: 20px;
    background: #f5f5f5 url(../imgs/ico_explore.svg) no-repeat right 20px center / auto 50% border-box;
    border-bottom: 1px solid #dddddd;
}

.product-list ul li .btn-list a.explore {
    display: none;
    /*if this button not required*/
}

.product-list ul li .btn-list a.download {
    background-image: url(../imgs/ico_download.svg);
}

.product-list ul li:hover .btn-list {
    opacity: 1;
    bottom: 50px;
    display: none;
}

.product-list ul li .btn-list a.download:hover,
.product-list ul li .btn-list a.explore:hover {
    background-color: #dddddd;
}



/* ----------PROJECT LIST---------- */
.project-list {}

.project-list ul li {
    margin-bottom: 60px;
}

.project-list ul li span {
    text-align: center;
    line-height: 20px;
    min-height: 60px;
}

.project-list h5 {
    height: 50px;
    border-bottom: 1px solid #cccccc;
    padding: 0;
    margin: 10px 0 80px 0;
    font-weight: 400;
    text-align: right;
}

.project-list h5 a {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    vertical-align: bottom;
    /* border-bottom: 1px solid #777777; */
    padding: 15px 10px;
    position: relative;
    color: #777777;
}

.project-list h5 a::after {
    content: "";
    display: block;
    position: absolute;
    border-bottom: 1px solid #999999;
    bottom: 13px;
    width: calc(100% - 20px);
    left: 10px;
}

.project-list h5 a:hover {
    color: #000000;
}

.project-list h5 a:hover::after {
    border-bottom: 1px solid #000000;
}



/* ----------DESIGNER LIST---------- */
.designer-list {
    margin-top: 40px;
}

.designer-list ul li {
    margin-bottom: 40px;
}

.designer-list ul li h3 {
    text-align: left;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    margin: 20px 0;
    color: #333;
}

.designer-list ul li span {
    text-align: left;
    line-height: 20px;
    margin: 10px 0;
}



/* ----------SPACE INDEX---------- */
.space-design{
    margin-top: 100px;

    article{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;

        .space-info{
            background: #eee;
            padding: 0;

            h1 {
                margin: 80px auto 40px;
                color: #333;
                font-size: 20px;
                font-weight: 600;
                text-decoration: underline;
                text-underline-offset: 6px;
    
                img{
                    height: 30px;
                }
            }
            p{
                margin: 0 auto 80px;
                width: 50%;
                text-align: justify;
                color: #333;
                line-height: 1.2;
            }
        }
    }
}



.space-download {
    margin-bottom: 0;
}

.space-download ul {
    width: 100%;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: 23.5% 23.5% 23.5% 23.5%;
    grid-auto-flow: row dense;
    gap: 2% 2%;
}
.space-download ul li:nth-child(1){
    grid-row-start: 1;
    grid-row-end: 3;
}
.space-download ul li:nth-child(4){
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 3;
}
.space-download ul li:nth-child(7){
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 3;
    grid-row-end: 5;
}



.space-download ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
}

.space-download ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.space-download ul li:hover img {
    transform: scale(1.1);
}



.space-news {
    margin-bottom: 60px;

    h1 {
        margin: 40px auto 40px;
    }
    
    
}

.space-news ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.space-news ul li {
    margin-bottom: 50px;
    width: calc(33.33% - 5%);
    height: auto;
    background: #eee;
}


.space-news ul li a {
    display: block;
    width: 100%;
    height: auto;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
}

.space-news ul li img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.space-news ul li div{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
    padding: 10px 15px;
    
    span {
        display: block;
        width: 100%;
        line-height: 1;
        text-align: left;
        padding: 10px 0;
        color: #333;
        font-size: 18px;
        font-weight: 400;
    }
    p{
        line-height: 1.1;
        color: #666;
    }
    a {
        margin-top: 20px;
        display: block;
        width: 100%;
        line-height: 1;
        text-align: left;
        padding: 10px 0;
        color: #333;
        background: none;
        text-decoration: underline;
    }
}

.space-news ul li:hover img {
    transform: scale(1.1);
}



/* ----------ABOUT---------- */
.about {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.about p {
    display: block;
    padding: 0 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.about video {
    margin: 35px 0;
    width: 100%;
    height: auto;
}

.about img {
    margin: 35px 0;
    width: 100%;
    height: auto;
}



/* ----------BRAND INDEX---------- */
.about-info{

    h1 {
        margin: 120px auto 80px;
        color: #333;
        font-size: 20px;
        font-weight: 600;

        img{
            height: 30px;
            transform: scale(1);
            transition: all .3s ease-in-out;
        }
        img:hover{
            transform: scale(1.1);
        }
    }
    p{
        margin: 0 auto;
        width: 64%;
        text-align: justify;
        color: #333;
        line-height: 1.2;
    }
}

.brand-list {
    margin: 40px auto 200px;
}

.brand-list ul{
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    flex-wrap: wrap;
    grid-gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}

.brand-list ul li {
    margin-bottom: 0;
    width: calc(100% - 0%);
}

.brand-list ul li a {
    display: block;
    height: auto;
    position: relative;
    padding: 17px 0;
}


.brand-list ul li a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.brand-list ul li a i{
    visibility: hidden;
    background: url(../imgs/ico_more_link.svg) no-repeat right bottom / auto 80%;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    height: 20px;
    color: #333;
    padding-right: 20px;
    overflow: hidden;
    position: absolute;
    right: 30px;
    bottom: -30px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.brand-list ul li a:hover img{
    transform: scale(1.1);
}

.brand-list ul li a:hover i{
    visibility: visible;
    right: 20px;
    bottom: -20px;
    opacity: 1;
}


/* ----------BRAND DETAIL---------- */
.brand-vision{
    background: #eee;
    padding: 0;

    article{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;

        .about-info {
            width: 33.33%;

            h1 {
                margin: 60px auto 60px;
                text-decoration: underline;
                text-underline-offset: 6px;
            }
            p {
                margin: 0 auto 60px;
                width: 70%;
                text-align: justify;
                color: #333;
            }
        }
    }
}

.brand-download {
    margin-bottom: 0;
}

.brand-download ul {
    width: 100%;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: 48.5% 48.5%;
    grid-auto-flow: row dense;
    gap: 3% 2%;
}
.brand-download ul li:nth-child(1){
    grid-row-start: 1;
    grid-row-end: 3;
}
.brand-download ul li:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.brand-download ul li a {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 0;
    background: #f1f1f1;
    /* border-radius: 10px; */
    overflow: hidden;
}

.brand-download ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.brand-download ul li:hover img {
    transform: scale(1.1);
}


.brand-product {
    background: none;
    padding: 0;
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.brand-product ul {
    width: 100%;
    display: grid;
    justify-content: space-between;
    justify-items: stretch;
    grid-template-columns: repeat(3, auto);
    flex-wrap: wrap;
    grid-gap: 20px;
}

.brand-product ul li {
    margin-bottom: 50px;
    height: auto;
    width: 100%;
}



/* ----------VR---------- */
.vr {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    background: #ffffff;
}

.vr>div {
    width: 100%;
    height: auto;
    padding: 0 100px;
    max-width: calc(2560px - 200px);
}

.buy ul {
    border-top: 1px solid #dddddd;
    padding: 30px 0 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.buy ul li {
    display: flex;
    line-height: 20px;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
}

.buy ul li a {
    display: flex;
    align-items: center;
}

.buy ul li img {
    height: 30px;
    margin: 0 10px;
}



/* ----------NEWS LIST---------- */
.news-list {
    /* margin-top: 40px; */
}

.news-list ul li {
    margin-bottom: 60px;
}

.news-list ul li h3 {
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin: 20px 0;
    color: #777777;
    height: 60px;
}

.news-list ul li i {
    display: block;
    text-align: left;
    font-style: normal;
    font-size: 16px;
    font-weight: 200;
    line-height: 20px;
    margin: 10px 0;
    color: #999999;
}

.news-list ul li span {
    display: block;
    text-align: left;
    line-height: 1.1;
    margin: 10px 0;
    height: 60px;
}



/* ----------CONTACT---------- */
.contact {
    margin-top: 80px;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: #eeeeee;
    flex-direction: column;
    align-items: center;
    color: #777777;
    font-weight: 400;
    text-align: center;
}

.mail {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-weight: 400;
    text-align: center;
}

.message {
    font-size: 20px;
    background: #e3e0df;
    margin: 80px 0;
    padding: 40px 25% 80px;

    h1{
        margin: 0 auto 40px;
        text-align: right;
        color: #333;
        font-size: 40px;
    }
    dl{
        margin-bottom: 20px;
    }
    dt{
        font-size: 16px;
        line-height: 40px;
        color: #333;

        em{
            color: red;
            font-style: normal;
        }
    }
    dd{

        input,
        textarea{
            width: calc(100% - 12px);
            height: 30px;
            padding: 5px;
            font-size: 18px;
            font-weight: 400;
            line-height: 1;
            color: #333;
            background: #fff;
            border: 1px solid #ccc;
        }
        textarea{
            height: 120px;
        }
        span{
            display: block;
            font-size: 14px;
            color: #999;
            line-height: 20px;
        }
    }
    dd.name{
        display: flex;
        gap: 40px;
        flex-direction: row;

        div{
            width: 50%;
        }
    }
    button.submit{
        width: 180px;
        min-width: 180px;
        height: 42px;
        line-height: 40px;
        background: #333333;
        border-radius: 3px;
        border: none;
        color: #ffffff;
        font-size: 16px;
        padding: 0 20px;
        cursor: pointer;
    }
    button:hover{
        background: #666666;
    }
}



/* ----------DEALSER---------- */
.dealer-list {
    margin-top: 40px;
}

.select-city {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 0 80px;
    align-items: flex-end;
}

.select-city .country,
.select-city .city {
    width: 35%;
}

.select-city span {
    display: block;
    line-height: 30px;
    font-size: 16px;
    color: #777777;
}

.select-city select {
    width: 100%;
    height: 40px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    padding: 0 5px;
    /* outline: none; */
}

.select-city select option {
    display: block;
    font-size: 20px;
    line-height: 40px;
    height: 40px;
    color: #777777;
    border-bottom: 1px solid #000000;
    padding: 10px;
}

.select-city select option:first-child {
    display: none;
}

.select-city button {
    width: 180px;
    height: 40px;
    background: #333333;
    border-radius: 5px;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 0;
    cursor: pointer;
}

.location ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.location ul::after {
    content: "";
    /* flex: 1; */
    width: 44%;
}

.location ul li {
    width: 44%;
    border-bottom: 1px solid #999999;
    padding: 20px 0;
}

.location ul li h5 {
    font-size: 16px;
    line-height: 30px;
    padding-left: 40px;
    background: url(../imgs/ico_position.svg) no-repeat left center /auto 100% border-box;
}

.location ul li span {
    display: block;
    color: #777777;
    padding-left: 40px;
    line-height: 30px;
}

.location ul li p {
    display: block;
    color: #777777;
    padding-left: 70px;
    line-height: 32px;
    background: url(../imgs/ico_mail.svg) no-repeat 40px center /auto 70% border-box;
}



/* ----------FAQ---------- */
.faq ul {
    display: flex;
    flex-direction: column;
}

.faq ul::after {
    content: "";
    /* flex: 1; */
    width: 100%;
}

.faq ul li {
    /* width: 100%; */
    border-bottom: 1px solid #999999;
    padding: 40px 40px 10px 20px;
}

.faq ul li a {
    display: block;
    color: #555;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    display: flex;
    column-gap: 20px;
    align-items: center;
    transform-origin: 0% 50%;
    transform: scale(1);
    transition: all .2s ease-in-out;
}
.faq ul li a:hover{
    color: #000;
    transform: scale(1.04);
}
.faq ul li a::before{
    content: "";
    background: url(../imgs/ico_download.svg) no-repeat left center /auto 80% border-box;
    width: 30px;
    height: 30px;
    opacity: 0.5;
}



/* ----------JOB---------- */
.job-box {
    /* padding: 60px 0; */
    display: flex;
}

.job-list {
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.job-list dl {
    width: 70%;
    margin: 0 auto;
}

.job-list dt {
    font-size: 24px;
    color: #333;
    line-height: 40px;
    height: 40px;
    margin: 40px 0;
    background: url(../imgs/ico_plus.svg) no-repeat right 10px center / auto 60%;
}

.job-list dt:hover {
    background-color: #f5f5f5;
}

.job-list dd {
    display: none;
}

.job-list dl.open {}

.job-list dl.open dt {
    background-image: url(../imgs/ico_minus.svg);
}

.job-list dl.open dd {
    display: block;
}

.job-list dd button {
    display: block;
    width: 70%;
    height: 36px;
    font-size: 17px;
    line-height: 1;
    background: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #666;
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
}

.job-list dd button.active,
.job-list dd button:hover {
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

.job-list .job-menu {
    display: none;
}

.job-list h1 {
    display: inline-block;
    margin: 50px auto;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    color: #333;
    line-height: 1.3;
    border-bottom: 2px solid #333;
}

.job-content {
    width: 100%;
    background: rgba(0, 0, 0, 0.5) url("../imgs_upload/job_content_bg.png") no-repeat center center / auto 170%;
    /* padding: 20px 0; */
    /* margin-left: 5%;*/
}

.job-content ul {
    width: 100%;
    height: 100%;
    background-color: rgb(96 96 96 / 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.job-content ul li {
    width: 70%;
    margin: 80px;
}

.job-content p {
    font-size: 24px;
    line-height: 2;
    color: #fff;
}


/*FULL-Content*/
section.max-width {
    max-width: 2360px;
    margin: 0 auto;
}

.full-images {
    display: flex;
}

.full-images img {
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.full-info {}

.full-info dl {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    justify-content: center;
    align-content: center;
}

.full-info dl dt {
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-info dl dd {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin: 80px 60px 80px 0;
}

.full-info-lr {}

.full-info-lr dl dt {
    min-width: 25%;
    margin: 0 5%;
}

.full-info-ud {}

.full-info-ud {}

.full-info-ud dl {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.full-info-ud dl dd {
    margin: 20px 0 80px;
    width: 60%;
    text-align: center;
}

.full-info h1 {
    margin: 50px 0;
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    color: #333;
    line-height: 1.3;
}

.full-info-lr h1::after {
    display: none;
}

.full-info-ud h1 {
    margin: 50px 0 0;
    border-bottom: 2px solid #333;
}

.full-info p {
    display: flex;
    width: 100%;
}

.full-info>img {
    min-width: 100%;
}

.job-contract {
    display: flex;
    background: #fff;
}

.job-contract dl {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.job-contract dl>img {
    min-width: 100%;
    min-height: 100%;
}

.job-contract dl dd {
    padding: 0;
    margin: 0 auto 60px;
    width: 60%;
}

.job-contract h1 span::after {
    display: none;
}

.job-contract h3 {
    font-size: 24px;
    font-weight: 400;
    padding-left: 60px;
    height: 40px;
    line-height: 40px;
    color: #333;
}

.job-contract h3.address {
    background: url(../imgs/ico_home.svg) no-repeat left center / auto 80%;
}

.job-contract h3.tel {
    background: url(../imgs/ico_phone.svg) no-repeat left center / auto 80%;
}

.job-contract h3.email {
    background: url(../imgs/ico_mail.svg) no-repeat left center / auto 80%;
}

.job-contract p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    margin: 10px 0 20px;
    color: #666;
    padding-left: 60px;
}




/* ----------DETAIL COMMON MODULES---------- */

/* 文章详情排版模板 */
/* MODULE 1 左右结构 */
.box-left-right {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
}

.box-left-right>p,
.box-left-right>div {
    font-size: 22px;
    width: 46%;
    line-height: 2;
}

.box-left-right img {
    width: 100%;
    vertical-align: middle;
}

/* MODULE 2 全图 */
.box-images {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 0 0;
}

.box-images p {
    font-size: 22px;
    width: 100%;
    text-align: center;
    gap: 80px;
}

.box-images img {
    width: 100%;
    vertical-align: middle;
}

/* MODULE 3 大字标题 */
.box-title {
    /* display: flex;
    flex-wrap: nowrap;
    justify-content: center; */
    padding: 80px 0 60px;
    color: #333333;
    margin: 0 auto;
    text-align: center;
    width: 80%;
}

.box-title p {
    font-size: 40px;
    font-weight: 600;
    /* width: 80%; */
    text-align: center;
}

.box-sub-title {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    margin: 0 0;
}

.box-sub-title p {
    font-size: 22px;
    width: 60%;
    text-align: center;
    color: #555555;
}

/* MODULE 4 段落文字 */
.box-texts {
    /* display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; */
    text-align: center;
    padding: 30px 0 60px;
    width: 80%;
    margin: 0 auto;
}

.box-texts p {
    font-size: 18px;
    /* width: 80%; */
    line-height: 1.5;
    text-align: left;
    /* margin: 0 auto; */
}

/* MODULE 7 */
.box-author {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0;
    margin: 80px 0;
}

.box-author p {
    font-size: 16px;
    width: 50%;
    line-height: 1.5;
    text-align: center;
    color: #777777;
}

/* 产品:左图右文 */
.box-product-img-txt{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;
    font-size: 22px;
    font-weight: 300;
    color: #333;

    .d1{
        width: 50%;

        img{
            width: 100%;
            height: auto;
        }
    }
    .d2{
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        justify-content: flex-end;
    }
}

/* 产品:左文右图 */
.box-product-txt-img{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 100px;
    font-size: 22px;
    font-weight: 300;
    color: #333;

    .d1{
        width: 40%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-end;
    }
    .d2{
        width: 50%;

        img{
            width: 100%;
            height: auto;
        }
    }
}

/* 产品:上图下文 */
.box-product-up-down{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 100px;
    font-size: 22px;
    font-weight: 300;
    color: #333;

    .d1{
        width: 100%;
        margin-bottom: 100px;

        img{
            width: 100%;
            height: auto;
        }
    }
    .d2{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-end;
    }
}

/* 产品:软硬度 */
.box-product-hardness{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd;

    h3{
        font-weight: 600;
        color: #333;
        font-size: 24px;
        line-height: 40px;
        height: 60px;
    }
    div{
        display: flex;
        gap: 2px;
        position: relative;
        max-width: 600px;
        width: 100%;
        color: #333;

        i{
            display: block;
            width: 20%;
            height: 15px;
            border: 1px solid #000;
        }
        p{
            display: block;
            position: absolute;
            height: 30px;
            font-size: 16px;
            top: 20px;
        }
    }
    .hardness-0 i:nth-child(-n + 0),
    .hardness-1 i:nth-child(-n + 1),
    .hardness-2 i:nth-child(-n + 2),
    .hardness-3 i:nth-child(-n + 3),
    .hardness-4 i:nth-child(-n + 4),
    .hardness-5 i:nth-child(-n + 5){
        background: #000;
    }
    .l{
        left: 0;
    }
    .r{
        right: 0;
    }
}

/* 共用内容 */
/* 误差，色差 */
.box-difference{
    font-size: 20px;
    font-weight: 400;
    color: #333;

    h3{
        display: inline-block;
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        border-bottom: 3px solid #333;
    }
    .left{
        max-width: 400px;
        width: 40%;
        float:left;
        margin-bottom: 20px;
    }
    .right{
        max-width: 50%;
        width: 40%;
        float:right;
        margin-bottom: 20px;
    }
    .img{
        width: 100%;
        clear: both;
        padding-bottom: 60px;
        border-bottom: 1px solid #ddd;

        img{
            width: 100%;
            height: auto;
        }
    }
}

/* 品牌工厂 */
.box-factory{
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-top: 80px;

    h3{
        font-size: 24px;
        font-weight: 600;
        line-height: 30px;
        margin-bottom: 10px;
    }
    h4{
        font-size: 36px;
        font-weight: 600;
        line-height: 40px;
        margin-bottom: 10px;
    }
    .title{
        margin-bottom: 50px;
    }
    .left{
        width: 32%;
        float:left;
        margin-bottom: 20px;
        margin-right: 2%;
    }
    .middle{
        width: 32%;
        float:left;
        margin-bottom: 20px;
        margin-right: 2%;
    }
    .right{
        width: 32%;
        float:right;
        margin-bottom: 20px;
    }
    .img{
        width: 100%;
        clear: both;
        font-size: 14px;
        line-height: 1.5;

        img{
            width: 100%;
            height: auto;
            margin-bottom: 10px;
        }
    }
}
.box-difference::after,
.box-factory::after{
    content: "";
    clear: both;
    display: block;
    width: 100%;
    height: 0;
}



/* ----------COMMON DETAIL---------- */
.common-detail {
    margin: 0 auto;
    padding: 40px 0;
}

.common-detail h1 {
    margin: 40px auto;
}

.common-detail h1 span::after {
    display: none;
}

.common-detail h5 {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0;
}

.common-detail .resume {
    text-align: left;
    font-size: 18px;
    line-height: 1.5;
    margin: 40px auto;
    width: 80%;

}

.common-detail .banner .banner-box li dl,
.common-detail .banner .banner-box li a:hover::after {
    display: none;
}

.common-detail .link-icons {
    float: none;
    display: block;
    width: 100%;
    margin: 40px auto;
}

.common-detail .link-icons ul {
    padding: 0;
    display: flex;
    justify-content: center;
}



/* ----------PRODUCT DETAIL---------- */
.product-about h1 {
    margin-top:0;
}
.product-info {
    padding: 0 100px;
    margin: 0 auto;
    padding-bottom: 100px;
    max-width: 2560px;
}

.product-info::before {
    content: "";
    display: table;
}

.model-box {
    height: auto;
    margin: 100px auto;
    padding: 0;
    display: flex;
    flex-direction: row;

    .model{
        width: 55%;

        model-viewer{

        }
    }
    .materials{
        width: 45%;

        h2{
            font-size: 20px;
            line-height: 40px;
            font-weight: 600;
            color: #666;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        h3{
            font-size: 18px;
            line-height: 30px;
            font-weight: 400;
            color: #666;
        }
        ul{
           display: flex;
           gap:20px;
           margin: 10px 0 20px;
            
            li{
                width: 80px;
                height: auto;
                margin-bottom: 20px;
                box-sizing: border-box;
                /* background: #999; */
                display: flex;
                align-items: center;
                justify-content: center;
                /* overflow: hidden; */
                transform: scale(1);
                transition: all .2s ease-in-out;

                a{
                    width: 100%;
                    height: 100%;
                }
                img{
                    width: 100%;
                    height: auto;
                    border: 0;
                    overflow: hidden;
                }
                span{
                    /* display: none; */
                    display: block;
                    height: 25px;
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 20px;
                    color: #999;
                    text-align: center;
                }
            }
            li:hover{
                background: #fff;
                transform: scale(1.1);
            }

            li.active{
                border: 1px solid #999;
            }
        }
        .more-products{
            gap: 30px;

            li{
                width: 100px;
                height: 100px;
                background: #ddd;
            }
        }
    }
    
}

.info-box {
    max-width: calc(2560px - 200px);
    background: #ffffff;
    margin: -1px auto 0;
    position: relative;
    border-top: 1px solid #dddddd;
}

.info-tab {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.info-tab li {
    width: 18%;
    line-height: 60px;
    border-top: 2px solid #cccccc;
    background: #dddddd;
    border-radius: 4px 4px 0 0;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    margin: 0 2px;
}

.info-tab li.active {
    border-top: 2px solid #333333;
    background: #ffffff;
}

.info-tab li a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}

.info-tab li:hover {
    background: #ffffff;
    border-top: 2px solid #333333;
}

.product-detail-box,
.product-color-box,
.product-download-box,
.product-file-box {
    display: none;
}

.info-box .active {
    display: block;
}

.product-detail-box,
.product-about-box {
    width: 90%;
    margin: 0 auto;

    h2{
        text-align: left;
        font-weight: 600;
        font-size: 48px;
        color: #333;
        line-height: 60px;
        margin-bottom: 50px;
    }
}


.product-map {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto 60px;
    width: 100%;
}

.product-map img {
    width: 100%;
    /* border: 1px solid #eeeeee; */
}

.product-para {
    width: 80%;
    margin: 0 auto;
}

.btn-product-para,
.btn-product-color,
.btn-product-model,
.btn-product-file {
    display: block;
    font-size: 30px;
    line-height: 60px;
    font-weight: 600;
    margin: 60px auto 20px;
    border-bottom: 1px solid #ddd;
    color: #333;
    width: 100%;
    cursor: pointer;
    height: 60px;
    background: url(../imgs/ico_arrow_up_black.svg) no-repeat right 20px center / auto 50%;
}
.btn-product-para:hover,
.btn-product-color:hover,
.btn-product-model:hover,
.btn-product-file:hover {
    background-color: rgba(0,0,0,.03);
}
.expand{
    background-image: url(../imgs/ico_arrow_up_black.svg);
}
.retract{
    background-image: url(../imgs/ico_arrow_down_black.svg);
}

.product-para dd {
    font-size: 16px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
}

.product-para dd span {
    color: #333;
    font-weight: 600;
    width: 30%;
}

.product-para dd p {
    color: #333;
    width: 60%;
    text-align: right;
}

.product-video {
    width: 80%;
    margin: 80px auto;
}

.product-video video {
    width: 100%;
}

.product-other {
    margin: 0 auto;
    padding: 0;
    max-width: 100%;
    /* width: 100%;*/
}

.product-other .product-list {
    overflow-x: auto;
    overflow-y: hidden;
    height: 430px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding: 0;
}

.product-other .product-list ul {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.product-other .product-list li {
    position: relative;
    padding-bottom: 45px;
    margin: 0;
    overflow: hidden;
    width: 300px;
    min-width: 300px;
    margin-right: 50px;
    /* height: 360px; */
    height: 405px;
}

.product-other .product-list ul li>a {
    width: 100%;
    height: 300px;
    position: relative;
}

/*PRODUCT COLOR*/
.product-color-box {
    padding: 100px;
}

.product-color-box h2 {
    margin: 0 auto;
    width: 100%;
    font-size: 30px;
    font-weight: 400;
    padding: 40px 0 10px;
    color: #333;
    line-height: 60px;
}

.product-color {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.product-color li {
    width: 100px;
    height: auto;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.product-color li img {
    width: 100px;
    height: 100px;
}

.product-color li span {
    display: block;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

/*PRODUCT DOWNLOAD*/
.product-download-box {
    padding: 100px;
}

.image-box {
    padding: 40px 0;
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
    overflow: hidden;
}

.image-box li {
    width: calc(33% - 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-box::after {
    content: "";
    /* flex: 1; */
    width: calc(33% - 10px);
}

.image-box li img {
    width: 100%;
    height: auto;
}

.image-box li .btns {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
}

.image-box li button {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: rgba(0.5, 0.5, 0.5, 0.3) no-repeat center center /60%;
    border: 0;
    margin-left: 15px;
}

.image-box li button:hover {
    background-color: rgba(0.5, 0.5, 0.5, 0.6);
    cursor: pointer;
}

.image-box li button.download {
    background-image: url(../imgs/ico_download_white.svg);
    display: none;
}

.image-box li button.preview {
    background-image: url(../imgs/ico_preview_white.svg);
}

.button-box {
    width: 100%;
    margin: 40px 0;
}

.button-box:active {}

.btn-more {
    display: block;
    width: 100%;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f5f5f5;
    border: 1px solid #eeeeee;
    color: #999999;
    border-radius: 5px;
}

.btn-more:hover {
    background: #eeeeee;
    border: 1px solid #dddddd;

}

.image-preview {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: flex;
    align-content: center;
    align-items: center;
    visibility: hidden;
}

.image-preview .image-preview-box {
    margin: 0 auto;
    padding: 20px;
    width: 70%;
    height: 80%;
    overflow: hidden;
    background: #fff;
    border: 0;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all .3s ease-in-out;
}

.image-preview .image-preview-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-preview-show {
    visibility: visible;
}

.image-preview-show .image-preview-box {
    transform: scale(1);
    opacity: 1;
}

.image-preview-box a.close {
    /* background: rgba(0, 0, 0, 0.4); */
    border: 0;
    outline: 0;
    width: 50px;
    height: 50px;
    /* border-radius: 5px; */
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview-box a.close::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
    background: no-repeat center center / 60%;
}

.image-preview-box a::after {
    transition: all .3s ease-in-out;
    /* background-size: 65%; */
}
.image-preview-box a:hover::after {
    transform: scale(1.1);
    /* background-size: 65%; */
}

.image-preview-box a.close::after {
    background-image: url(../imgs/ico_close_min_white.svg);
    background-color: rgba(0, 0, 0, 0.5);
}

.product-download-box h3 {
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #dddddd;
    color: #333;
    min-width: 100%;
    font-size: 22px;
    line-height: 40px;
}

.product-model {
    margin-bottom: 20px;
}

.product-model dt {
    height: 50px;
    font-weight: 600;
    color: #333;
    justify-content: flex-start;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    line-height: 1;
    align-items: center;
}

.product-model dd {
    height: 50px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dddddd;
    line-height: 1.2;
    align-items: center;
}

.product-model dd.g {
    background: #f9f9f9;
}

.product-model dd.w {
    background: #ffffff;
}

.product-model dt span,
.product-model dd span {
    font-weight: 600;
    width: 30%;
    padding: 0 20px;
}

.product-model dd span {
    font-weight: 400;
}

.product-model dd:hover {
    background: #eef9ff;
}

.product-model dt p,
.product-model dd p {
    width: 60%;
    text-align: right;
}

.product-model dd a {
    display: inline-block;
    line-height: 40px;
    text-align: center;
    padding: 0 60px 0 20px;
    border: 1px solid #f9f9f9;
    color: #777777;
    background: url(../imgs/ico_download.svg) no-repeat right 20px center / auto 40% border-box;
}

.product-model dd a:hover {
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #dddddd;
    margin: 0 4px;
}

/*PRODUCT FILE*/
.product-file-box {
    padding: 60px;
}


/* ----------PROJECT DETAIL---------- */
.project-detail-box {
    padding: 0 0;
    max-width: calc(2560px - 0px);
    margin: 0 auto;
}

.project-detail-box img {
    max-width: 100%;
}



/* ----------INSPIRATION DETAIL---------- */
.inspiration-detail {}

.inspiration-detail-box {}

.inspiration-detail-box img {
    max-width: 100%;
}


/* ----------DESIGNER DETAIL---------- */
.designer-photo {
    /* padding: 100px 0 40px; */
    text-align: center;
}

.designer-photo img {
    height: 380px;
}

.designer-detail-box {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.designer-detail-box p {
    line-height: 1.7;
}

.designer-detail-box img {
    max-width: 100%;
}



/* ----------NEWS DETAIL---------- */
.news-detail-box {
    width: 90%;
    margin: 0 auto;
}

.news-detail-box img {
    max-width: 100%;
}

.product-list-nav-foot {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 18px;
    border-top: 2px solid #aaa;
    padding-top: 2rem;
    color: #98999c;
    white-space: nowrap;
    flex-wrap: wrap;
    line-height: 2rem;
}



/*-----------------------------------1440 pc------------------------------*/
@media screen and (max-width:1440px) {

    /*COMMON*/
    header,
    section {
        padding: 0 60px;
        max-width: calc(2560px - 120px);
    }

    section.full {
        padding: 0;
        margin: 0 auto;
        max-width: none;
        width: 100%;
    }



    /*HEADER*/
    .home .nav {
        padding: 40px 0 80px;
        /* height: 80px; */
    }

    .home .fast-nav {
        /* width: 26%; */
        /* background: gray; */
    }

    .home .fast-nav li:last-child {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .fast-nav .search,
    .fast-nav .user,
    .fast-nav .home {
        /* width: 30px; */
        /* background-size: 80%; */
    }

    .fast-nav .lang {
        padding: 0 5px;
    }

    .nav-list {
        justify-content: space-between;
    }

    .nav-list li a {
        font-size: 15px;
        line-height: 60px;
        margin: 0 10px;
        display: block;
        position: relative;
    }

    .menu-list {
        padding: 0 0;
    }

    .menu-list li a {
        font-size: 16px;
        margin: 0 10px;
    }

    #menu-list1,
    #menu-list2,
    #menu-list3,
    #menu-list4,
    #menu-list5 {
        justify-content: space-between;
        left: -80px;
        padding: 29px 80px;
        gap:0;
    }

    /*HOME*/

   

    /*SPACE*/
    .three-column {}

    .three-column ul li {
        margin-bottom: 40px;
        width: calc(33.33% - 12.5px);
        height: auto;
    }

    .three-column ul li a {
        width: 100%;
        height: 250px;
    }

    .three-column ul li span {
        line-height: 1.5;
        margin: 20px 0;
    }

    /*SORT LIST*/


    /*PRODUCT LIST*/
    .product-list ul li {
        padding-bottom: 50px;
        margin: 0;
        width: calc(25% - 12.5px);
        height: auto;
    }

    .product-list ul li>a {
        width: 100%;
        height: 280px;
        position: relative;
    }

    .product-list ul li>a dl {
        position: absolute;
        display: block;
        width: calc(100% - 20px);
        height: 135%;
        top: -100px;
        left: 0;
        z-index: 1;
        justify-content: center;
        opacity: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .product-list ul li:hover>a dl {
        background: rgba(0, 0, 0, 0.4);
        opacity: 1;
        top: -45px;
    }

    .product-list ul li>a dl dt {
        color: #ffffff;
        display: block;
        line-height: 1.2;
        padding: 15px 0;
        font-size: 18px;
        text-align: center;
        position: relative;
        width: 100%;
    }

    .product-list ul li>a dl dd {
        color: #dddddd;
        display: block;
        line-height: 1.2;
        padding: 15px 0;
        font-size: 18px;
        text-align: center;
        width: 100%;
    }

    .product-list ul li>a dl dt::after {
        content: "";
        display: block;
        width: 80px;
        border-bottom: 1px solid #ffffff;
        position: absolute;
        left: calc(50% - 40px);
        bottom: calc(0% + 0px);
    }

    .product-list ul li>span {
        display: block;
        text-align: center;
        line-height: 1.1;
        /* height: 100px; */
        /* position: absolute; */
        width: 100%;
    }

    .product-list ul li .btn-list {
        position: absolute;
        width: 100%;
        height: 100px;
        display: flex;
        bottom: -100px;
        flex-direction: column;
        opacity: 0;
    }

    /*PROJECT LIST*/
    .project-list h5 {
        height: 40px;
        padding: 0 10px;
        margin: 10px 0 40px 0;
    }

    /*DESIGNER LIST*/
    .designer-list ul li span {
        line-height: 20px;
        padding: 0;
    }

    /*BRAND LIST*/
    .brand-list ul li span {
        line-height: 20px;
        padding: 0;
    }

    /*VR*/
    .vr>div {
        padding: 0 60px;
        max-width: calc(2560px - 120px);
    }

    .buy h1 span::after {
        display: none;
    }

    .buy ul {
        border-top: 1px solid #dddddd;
        padding: 30px 0;
        margin-bottom: 40px;
    }

    /*CONTACT*/
    .contact {
        padding: 60px 0;
    }

    .mail {
        padding: 60px 0;
    }

    /*ABOUT*/
    .about img {
        margin: 20px 0;
    }

    /*DEALER*/
    .select-city {
        margin: 0 0 60px;
    }

    /*PRODUCT DETAIL*/
    .product-info {
        padding: 0 0;
        padding-bottom: 100px;
    }

    .info-tab li {
        width: 22%;
    }

    .product-detail-box {
        padding: 60px 60px;
    }

    .product-map {
        width: 100%;
    }

    .product-para {
        width: 100%;
    }

    .product-video {
        width: 100%;
        margin-bottom: 40px;
    }

    .product-color-box {
        padding: 60px;
    }

    .product-download-box {
        padding: 60px;
    }

    .product-file-box {
        padding: 60px;
    }

    .product-other {
        padding: 100px 0 0 0;
    }



    /*PROJECT DETAI*/



    /*INSPIRATION DETAIL*/



    /*DESIGNER DETAIL*/



    /*NEWS DETAIL*/



    /*LAYER SEARCH BAR*/
    .search-bar .search-box {
        padding: 75px 60px;
        height: 0;
        opacity: 0;
    }

    .search-bar-show .search-box {
        height: 50px;
        opacity: 1;
        padding: 75px 60px;
    }
}



/*-----------------------------------1000 mobile------------------------------*/
@media screen and (max-width:1000px) {
    .product-list-nav-foot {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        font-size: 16px;
        border-top: 2px solid #aaa;
        padding-top: 2rem;
        white-space: nowrap;
        flex-wrap: wrap;
    }

    .product-list-nav-foot a {
        width: calc(33.33% - 12.5px);
    }

    .product-list-nav-foot a:nth-child(3n+2) {
        text-align: center;
    }

    .product-list-nav-foot a:nth-child(3n) {
        text-align: right;
    }

    body {
        font-size: 18px;
        line-height: 36px;
    }

    header,
    section {
        padding: 0 40px;
        max-width: calc(2560px - 80px);
    }

    h1 {
        margin: 60px auto;
    }

    h1 span {
        font-size: 28px;
        padding: 2px 0;
        border-bottom: none;
    }

    .gotop-show {
        display: none;
    }

    /*HEADER*/
    .logo {
        width: 260px;
        min-width: 260px;
        height: 40px;
        min-height: 40px;
        position: relative;
    }

    .nav {
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        align-content: flex-start;
        height: auto;
        flex-direction: column;
    }

    .nav::after {
        display: block;
    }

    .home .nav {
        height: 60px;
        padding: 20px 0px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        background-size: 90%;
        display: block;
        position: absolute;
        top: auto;
        right: 0;
    }

    .nav-list,
    .home .nav-list {
        display: none;
    }

    .fast-nav {
        display: none;
        /* width: 260px; */
        margin-right: 20px;
    }

    .fast-nav li {
        width: auto;
        height: 50px;
        align-items: center;
    }

    .fast-nav li.signed {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .fast-nav .home {
        /* screen width < 1000px = hide home icon */
        display: none;
    }

    .fast-nav .home,
    .fast-nav .search,
    .fast-nav .user,
    .fast-nav .name {
        width: 60px;
        height: 60px;
    }

    .fast-nav .name {
        width: auto;
        font-size: 26px;
    }

    .fast-nav .name::after {
        bottom: 14px;
    }

    .fast-nav .user-signed::after {
        bottom: 0px;
    }

    .fast-nav .lang {
        font-size: 30px;
        line-height: 60px;
        display: inline-block;
        padding: 0 10px;
    }

    .fast-nav span {
        font-size: 32px;
    }

    .menu-list {
        clear: both;
        position: static;
        padding: 20px 0 0;
        margin: 20px 0 0;
        width: calc(100% - 0px);
        display: flex;
        border-top: 1px solid #dddddd;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        visibility: visible;
        opacity: 1;
        max-height: max-content;
        box-shadow: none;
        display: none;
    }

    .mobile-active{
        display: flex;
    }

    .menu-list li .child{
        display: none;
    }

    #menu-list1,
    #menu-list2,
    #menu-list3,
    #menu-list4,
    #menu-list5 {
        padding: 20px 0 0;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px 40px;

    }

    .home .nav-show,
    .nav-show {
        position: relative;
        height: 40px;
        z-index: 100;
        background: #ffffff;
        position: fixed;
        left: 0;
        top: 0;
        width: calc(100% - 80px);
        margin: 0 40px;
    }

    .nav-show::before {
        content: "";
        display: block;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: #ffffff;
        transition: height .3s ease-in-out;
        height: 100%;
    }

    .nav-show::after {
        display: block;
    }

    .nav-show .fast-nav {
        float: none;
        width: 100%;
        /* height: 98px; */
        position: relative;
        z-index: 101;
        font-size: 24px;
        line-height: 60px;
        display: flex;
        justify-content: space-between;
        /* border-top: 1px solid #cccccc; */
        /* border-bottom: 1px solid #cccccc; */
        margin: 20px 0 0;
        padding: 20px 0;
    }

    .nav-show .logo {
        z-index: 101;
    }

    .nav-show .nav-btn {
        background-image: url(../imgs/ico_menu_close.svg);
        transform: scale(.8);
    }

    .nav-show .nav-list {
        position: static;
        clear: both;
        display: block;
        margin: 0;
        margin-top: 3px;
        width: 100%;
        height: auto;
        padding: 0;
        max-width: 100%;
        border: none;
    }

    .nav-show .nav-list li {
        display: block;
        border-top: 1px solid #eeeeee;
    }

    .nav-show .nav-list li:last-child {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-show .nav-list li a {
        font-size: 32px;
        line-height: 80px;
        display: block;
        width: 100%;
        height: 80px;
        text-align: center;
        margin: 0;
        border-bottom: none;
        padding: 0;
        transition: all .3s ease-in-out;
    }

    .nav-show .nav-list li.active a,
    .nav-show .nav-list li a:hover {
        background: #f5f5f5;
        color: #000000;
        transform: scale(1.1);
    }

    .nav-show .nav-list li a::after,
    .nav-show .nav-list li a::after {
        display: none;
    }

    .nav-show .menu-list {
        display: block;
        position: absolute;
        top: 20px;
        left: 185.5px;
        opacity: 0;
        pointer-events: none;
        display: none;

    }


    /*BANNER*/
    .banner {
        height: 600px;
    }

    .banner .banner-box li dt {
        font-size: 32px;
    }

    .banner .banner-box li dd {
        margin-top: 20px;
    }

    .news-banner .banner-box li dl {
        gap: 20px;
        width: calc(45% - 60px);
        height: calc(100% - 60px);
        padding: 30px 30px;
    }
    .news-banner .banner-box li dd {
        margin-top: 0;
    }

    /*HOME*/
    .home-project ul li {
        width: calc(50% - 5px);
        height: calc(50% - 5px);
    }

    .home-project ul li:nth-child(2) {
        left: calc(50% + 5px);
        width: calc(25% - 7.5px);
    }

    .home-project ul li:nth-child(3) {
        width: calc(25% - 7.5px);
    }

    .home-product {
        padding: 30px;

        h1 {
            margin: 0 auto 30px;
        }
        .more {
            position: absolute;
            right: 10px;
            top: 40px;
            margin: 0;
            padding: 0 20px;
            color: #333;
        }
    }
    .home-product ul li {
        width: calc(37% - 5%);
    }
    .home-product ul li div {
        span {
            width: 100%;
        }
        a {
            display: none;
        }
    }


    .home-designer>div {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .home-designer div.video {
        width: 100%;
    }
    .home-designer div.info {
        width: 100%;
        padding-left: 0;
        text-align: left;
    }

    .home-designer h2 {
        padding: 20px 0;
        font-size: 24px;
    }

    .home-designer p {
        padding: 0;
        line-height: 1.1;
        text-align: left;
        width: 80%;
    }

    
    .box .more {
        top: 30px;
        right: 20px;
    }

    /*SPACE*/
    .three-column {}

    .three-column ul li {
        margin-bottom: 30px;
        width: calc(50% - 10px);
    }

    .three-column ul li a {
        height: 320px;
    }

    .three-column ul li span {
        line-height: 1.3;
        /* min-height: 40px; */
    }

    .space-design {
        article {
            .space-info {
                h1{
                    margin: 60px auto 40px;
                    font-size: 18px;
                }
                p {
                    margin: 0 auto 60px;
                    width: 70%;
                }
            }
        }
    }

    .space-download ul {
        width: 100%;
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 15.8% 15.8% 15.8% 15.8% 15.8% 15.8%;
        grid-auto-flow: row dense;
        gap: 1% 2%;
    }
    .space-download ul li:nth-child(1){
        grid-row-start: 1;
        grid-row-end: 3;
    }
    .space-download ul li:nth-child(4){
        grid-column-start: 1;
        grid-column-end: 1;
        grid-row-start: 3;
        grid-row-end: 5;
    }
    .space-download ul li:nth-child(7){
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 5;
        grid-row-end: 7;
    }
    
    
    
    .space-download ul li a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 0;
        background: #f1f1f1;
        /* border-radius: 10px; */
        overflow: hidden;
    }
    
    .space-download ul li img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all .3s ease-in-out;
    }
    
    .space-download ul li:hover img {
        transform: scale(1.1);
    }


 
    .space-news ul {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    
    .space-news ul li {
        margin-bottom: 50px;
        width: calc(50% - 3%);
    }
    
    
    .space-news ul li a {
        display: block;
        width: 100%;
        height: auto;
        line-height: 0;
        background: #f1f1f1;
        /* border-radius: 10px; */
        overflow: hidden;
    }
    
    .space-news ul li img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transform: scale(1);
        transition: all .3s ease-in-out;
    }
    
    .space-news ul li div{
        display: flex;
        gap: 20px;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: nowrap;
        padding: 10px 15px;
        
        span {
            display: block;
            width: 100%;
            line-height: 1;
            text-align: left;
            padding: 10px 0;
            color: #333;
            font-size: 18px;
            font-weight: 400;
        }
        p{
            line-height: 1.1;
            color: #666;
        }
        a {
            margin-top: 20px;
            display: block;
            width: 100%;
            line-height: 1;
            text-align: left;
            padding: 10px 0;
            color: #333;
            background: none;
            text-decoration: underline;
        }
    }

    /*SORT LIST*/
    .sort-list {
        margin: 30px auto;
        /* border-bottom: 1px solid #ddd; */
    }

    /*PRODUCT LIST*/
    .product-list {}

    .product-list ul li {
        margin-bottom: 0;
        width: calc(33.33% - 12.5px);
    }

    .product-list ul li a {
        height: 300px;
    }

    .product-list ul li span {
        line-height: 1.2;
        margin: 20px 0;
        font-size: 16px;
    }

    .product-list ul li:hover .btn-list {
        display: none;
    }

    .product-list ul li:hover>a dl {
        top: -40px;
    }

    .product-list ul li>a dl {
        height: 120%;
        top: -100px;
    }

    /*PROJECT LIST*/
    .project-list {
        padding-top: 40px;
    }

    .project-list h5 {
        height: 50px;
        padding: 0 10px;
        margin: 10px 0 20px 0;
    }

    /*DESIGNER LIST*/
    .designer-list {}

    .designer-list ul li h3 {
        font-size: 20px;
        line-height: 1;
        margin: 20px 0;
    }

    .designer-list ul li span {
        text-align: left;
        line-height: 30px;
        min-height: 20px;
        margin: 10px 0;
    }

    /*BRAND LIST*/
    .about-info {
        h1 {
            margin: 60px auto 40px;
        }
        p {
            width: 80%;
        }
    }
    .brand-vision {
        article {
            margin-bottom: 50px;

            .about-info {
                width: 50%;

                p {
                    margin: 0 auto 80px;
                    width: 70%;
                    text-align: justify;
                    color: #333;
                }
            }

            .about-info:nth-child(3){
                width: 100%;

                p{
                    width: 85%;
                }
            }
        }
    }
    .brand-list {}

    .brand-list ul {
        width: 90%;
        grid-template-columns: repeat(2, auto);
        grid-gap: 40px;
    }

    .brand-list ul li h3 {
        font-size: 20px;
        line-height: 1;
        margin: 20px 0;
    }

    .brand-download ul {
        width: 100%;
        display: grid;
        grid-template-columns: 49% 49%;
        grid-template-rows: 32% 32% 32%;
        grid-auto-flow: row dense;
        gap: 2% 2%;
    }
    .brand-download ul li:nth-child(1),
    .brand-download ul li:nth-child(2){
        grid-row-start: 1;
        grid-row-end: 3;
    }

    .brand-product {
        padding: 0;
    }
    .brand-product ul {
        grid-template-columns: repeat(3, auto);
        grid-gap: 10px;
    }
    .brand-product ul li{
        width: 100%;
    }
    

    /*VR*/
    .vr {
        margin: 0;
    }

    .vr>div {
        padding: 0;
        max-width: calc(2560px - 0px);
    }

    .buy ul {
        border-top: 1px solid #dddddd;
        padding: 30px 0 30px;
        margin: 0 20px 20px;
    }

    .buy ul li {
        line-height: 20px;
        margin-bottom: 20px;
    }

    .buy ul li img {
        height: 30px;
        margin: 0 10px;
    }

    .buy ul li span {
        text-align: center;
        line-height: 20px;
        min-height: auto;
        padding: 0;
    }

    /*NEWS*/
    .news {
        padding-top: 40px;
    }

    .news-list ul li h3 {
        font-size: 18px;
        line-height: 20px;
        margin: 20px 0;
        height: 60px;
    }

    .news-list ul li i {
        margin: 10px 0;
        line-height: 20px;
    }

    .news-list ul li span {
        line-height: 1;
        margin: 10px 0;
        font-size: 16px;
    }

    /*CONTACT*/
    .contact {
        padding: 40px 0;
    }

    .mail {
        padding: 40px 0;
    }
    .message {
        font-size: 20px;
        background: #eee;
        margin: 80px 0;
        padding: 40px 10% 80px;

        dd.name {
            gap: 0;
            flex-direction: column;

            div {
                width: 100%;
                margin-bottom: 20px;
            }
        }
        button.submit {
            width: 100%;
            height: 42px;
        }
    }

    /*ABOUT*/
    .about {
        margin: 40px 0;
    }

    .about video {
        margin: 0;
        width: 100%;
        height: auto;
    }

    .about img {
        margin: 10px 0;
    }

    /*DEALER*/
    .dealer-list {
        margin: 20px;
    }

    .select-city div:last-child {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .select-city .country,
    .select-city .city {
        width: 48%;
        margin: 20px 0;
    }

    .select-city select {
        height: 40px;
        font-size: 18px;
    }

    .select-city select option {
        font-size: 18px;
        line-height: 40px;
        height: 40px;
    }

    .select-city button {
        width: 48%;
        height: 40px;
        font-size: 18px;
    }

    .location ul li {
        width: 48%;
        border-bottom: 1px solid #999999;
        padding: 15px 0;
    }

    .location ul li h5 {
        padding-left: 25px;
        background: url(../imgs/ico_position.svg) no-repeat left center /auto 80% border-box;
    }

    .location ul li span {
        font-size: 14px;
        padding-left: 5%;
        line-height: 25px;
    }

    .location ul li p {
        font-size: 14px;
        padding-left: 5%;
        line-height: 25px;
        background: none;
    }

    /* ----------FAQ---------- */
    .faq ul::after {
        content: "";
        /* flex: 1; */
        width: 100%;
    }

    .faq ul li {
        padding: 20px 20px 10px 20px;
    }

    .faq ul li a {
        font-size: 18px;
        font-weight: 600;
        line-height: 20px;
        column-gap: 10px;
    }

    /* ----------JOB---------- */
    .job-list {
        width: 50%;
        min-width: 240px;
        padding-bottom: 20px;
    }

    .job-menu {
        left: 10px;
    }

    .job-list h1 {
        margin: 20px auto;
        font-size: 32px;
        line-height: 1.3;
    }

    .job-list dl {
        width: auto;
        margin: 0 20px;
    }

    .job-list dt {
        font-size: 20px;
        color: #333;
        line-height: 1;
        height: 40px;
        margin: 20px 0;
        padding-right: 40px;
        background-size: auto 50%;
        display: flex;
        align-items: center;
    }

    .job-list dd button {
        width: 100%;
        height: 40px;
        margin: 10px 0;
    }

    .job-content {
        /* width: 60%; */
        padding: 0;
    }

    .job-content ul li {
        width: auto;
        margin: 40px;
    }

    .job-content p {
        font-size: 18px;
        line-height: 30px;
    }

    .full-info h1 {
        margin: 40px 0;
        font-size: 32px;
        line-height: 1.3;
    }

    .full-info dl dd {
        font-size: 18px;
        line-height: 1.3;
        margin: 40px 0;
    }

    .job-contract dl:first-child {
        width: 50%;
        min-width: 240px;
    }

    .job-contract dl dd {
        width: 80%;
    }

    .job-contract h3 {
        font-size: 20px;
        font-weight: 400;
        padding-left: 40px;
        height: 25px;
        line-height: 30px;
    }

    .job-contract p {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.3;
        margin: 10px 0 20px;
        color: #666;
        padding-left: 40px;
    }

    .full-info-ud dl dd {
        margin: 0 0 40px;
        width: 70%;
    }



    /* ----------LAYER SEARCH BAR---------- */
    .search-bar .search-box {
        padding: 70px 20px;
        height: 0;
        opacity: 0;
    }

    .search-bar-show .search-box {
        height: 40px;
        opacity: 1;
    }

    .search-bar .search-box input {
        height: 40px;
        font-size: 20px;
        margin-left: 20px;
        text-indent: 40px;
    }

    .search-bar .search-box button {
        width: 100px;
        height: 40px;
        margin-left: 10px;
    }

    /* ----------SEARCH RESULT---------- */
    .search-area {
        margin: 40px 0 40px;
    }

    .search-area .search-area-box {
        width: 80%;
    }

    .search-area .search-area-box input {
        width: 100%;
        height: 40px;
    }

    .search-sort {
        width: 80%;
        margin: 0 auto;
        display: flex;
        margin-top: 30px;
        justify-content: space-between;
    }

    .search-sort li {
        width: 23%;
    }

    /* ----------DETAIL COMMON MODULES---------- */

    /* 文章详情排版模板 */
    /* MODULE 1 左右结构 */

    .box-left-right {
        margin: 20px 0;
    }

    .box-left-right>p,
    .box-left-right>div {
        font-size: 16px;
        width: 50%;
        line-height: 1.4;
        padding-right: 20px;
    }

    .box-left-right img {
        width: 100%;
    }

    /* MODULE 2 全图 */
    .box-images {
        padding: 30px 0;
    }

    .box-images p {
        font-size: 16px;
        width: 100%;
    }

    .box-images img {
        width: 100%;
    }

    /* MODULE 3 大字标题 */
    .box-title {
        padding: 30px 0;
    }

    .box-title p {
        font-size: 24px;
        /* width: 80%; */
    }

    .box-sub-title p {
        font-size: 18px;
        width: 80%;
        line-height: 1.4;
    }

    /* MODULE 4 段落文字 */
    .box-texts {
        padding: 30px 0;
    }

    .box-texts p {
        font-size: 16px;
        /* width: 80%; */
        line-height: 1.4;
    }


    .box-product-img-txt,
    .box-product-txt-img,
    .box-product-up-down{
        margin-bottom: 50px;

        .d1,
        .d2{
            font-size: 16px;
            line-height: 1.4;
            font-weight: 400;
            margin-bottom: 0;

            b{
                font-size: 18px;
                font-weight: 600;
            }
        }
    }
    .box-product-up-down{
        margin-bottom: 50px;

        .d1{
            margin-bottom: 50px;
        }
    }

    .box-product-hardness {
        .l,
        .r {
            font-size: 14px;
        }
    }

    .box-difference{
        font-size: 16px;
        line-height: 1.4;
        font-weight: 400;

        h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 20px;
            padding-bottom: 5px;
            margin-bottom: 20px;
            border-bottom: 2px solid #333;
        }
    }
    .box-factory{
        font-size: 16px;
        line-height: 1.4;
        font-weight: 400;
        margin-top: 60px;

        h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 20px;
            padding-bottom: 5px;
            margin-bottom: 20px;
        }
        h4 {
            font-size: 24px;
        }
        .img {
            font-size: 12px;
            line-height: 1.2;
        }
    }


    /* ----------COMMON DETAIL---------- */
    .common-detail h1 {
        text-align: center;
        margin: 10px 0;
    }

    .common-detail h5 {
        font-size: 16px;
        margin: 10px 0;
    }

    /* ----------PRODUCT DETAIL---------- */
    .product-info {
        padding: 0;
        padding-bottom: 60px;
    }

    .product-detail-box {
        padding: 60px;

        h2 {
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 30px;
        }
    }

    .product-map {
        margin: 0 auto 40px;
        width: 100%;
    }

    .product-para {
        width: 100%;
        margin: 0 auto;
    }

    .product-para dt {
        font-size: 24px;
        padding: 60px 0;
        text-align: center;
    }

    .product-para dd {
        padding: 10px 0;
    }

    .product-video {
        width: 100%;
        margin: 60px auto;
        margin-bottom: 20px;
    }

    .product-color-box {
        padding: 60px;
    }

    .product-download-box {
        padding: 60px;
    }

    .product-download-box h2 {
        padding: 10px 0;
        font-size: 24px;
        line-height: 40px;
    }

    .image-box {
        padding: 40px 0;
        /* height: 235px; */
    }

    .product-other {
        background: #ffffff;
        padding: 40px 20px 0;
    }

    .product-other .product-list {
        height: 430px;
        width: 100%;
        display: flex;
        margin: 0 auto 40px;
    }

    .product-other .product-list ul {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .product-other .product-list li {
        position: relative;
        padding-bottom: 45px;
        margin: 0;
        overflow: hidden;
        width: 300px;
        min-width: 300px;
        margin-right: 50px;
        height: 360px;
    }

    .product-other .product-list ul li>a {
        width: 100%;
        height: 300px;
        position: relative;
    }

    .product-file-box {
        padding: 40px;
    }

    /* ----------PROJECT DETAIL---------- */
    .project-detail-box {
        padding: 0 20px;
        max-width: calc(2560px - 40px);
        margin: 0 auto;
    }

    .image-preview .image-preview-box {
        /* padding: 10px; */
        width: 90%;
    }

    /* ----------INSPIRATION DETAIL---------- */

    /* ----------DESIGNER DETAIL---------- */
    .designer-photo img {}

    .designer-detail-box {
        margin-top: 60px;
        text-align: center;
    }

    /* ----------NEWS DETAIL---------- */

}



/*-----------------------------------600 mobile------------------------------*/
@media screen and (max-width:600px) {
    .product-list-nav-foot {
        padding-top: 0.5rem;
        display: block;
    }

    .product-list-nav-foot a {
        font-size: 16px;
        text-align: center;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .product-list-nav-foot a:nth-child(3n+2) {
        text-align: center;
    }

    .product-list-nav-foot a:nth-child(3n) {
        text-align: center;
    }

    body {
        font-size: 16px;
        line-height: 32px;
    }

    header,
    section {
        padding: 0 20px;
        max-width: calc(2560px - 40px);
    }

    h1 {
        margin: 40px auto;
    }

    /*HEADER*/
    .home .nav-show,
    .nav-show {
        width: calc(100% - 40px);
        margin: 0 20px;
    }

    .fast-nav {
        display: none;
    }

    .fast-nav .home,
    .fast-nav .search,
    .fast-nav .user,
    .fast-nav .name {
        width: 40px;
    }

    .fast-nav .name {
        width: auto;
        font-size: 20px;
    }

    .fast-nav .name::after {
        bottom: 17px;
    }

    .fast-nav .lang {
        display: inline-block;
        padding: 0 5px;
        font-size: 24px;
        line-height: 60px;
    }

    .fast-nav span {
        font-size: 24px;
    }

    .menu-list {
        flex-wrap: wrap;
    }

    .menu-list li a {
        font-size: 16px;
    }

    #menu-list1,
    #menu-list2,
    #menu-list3,
    #menu-list4,
    #menu-list5 {
        gap: 10px;
        flex-wrap: wrap;
    }

    .nav-show .fast-nav {
        /* height: 80px; */
        padding: 10px 0;
    }

    .nav-show .fast-nav li {
        height: 40px;
    }

    .nav-show .nav-list {
        margin: 0;
        margin-top: 2px;
    }

    .nav-show .nav-list li a {
        font-size: 24px;
        line-height: 60px;
        height: 60px;
    }

    .nav-show .menu-list {
        display: none;
    }

    /* .nav-show::after{
        display: none;
    } */

    /*BANNER*/
    .banner {
        height: 400px;
    }

    .banner a.btnPrev,
    .banner a.btnNext {
        background-size: 50px;
    }

    .banner a.btnNext {
        left: auto;
        right: 0;
    }

    .banner .banner-box li dt {
        font-size: 24px;
        line-height: 50px;
    }

    .banner .banner-box li dd {
        line-height: 1.5;
        font-size: 16px;
        margin-top: 10px;
    }

    .news-banner .banner-box li dt {
        font-size: 20px;
        line-height: 1;
    }

    .news-banner .banner-box li dd,
    .news-banner .banner-box li dd span {
        display: none;
    }


    /*HOME*/
    .home-project ul {
        width: 100%;
        height: 500px;
        position: relative;
    }

    .home-project ul li {
        height: calc(33.33% - 2px);
    }

    .home-project ul li:nth-child(1) {
        width: calc(100%);
        height: calc(33.33% - 2px);
    }

    .home-project ul li:nth-child(2) {
        left: 0;
        top: calc(33.33% + 2px);
        width: calc(50% - 2px);
        height: calc(33.33% - 2px);
    }

    .home-project ul li:nth-child(3) {
        left: calc(50% + 2px);
        top: calc(33.33% + 2px);
        width: calc(50% - 2px);
        height: calc(33.33% - 2px);
    }

    .home-project ul li:nth-child(4) {
        top: calc(66.66% + 3px);
        width: calc(100%);
        height: calc(33.33% - 2px);
    }

    .home-product,
    .home-news {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 20px 0;
        background: none;

        .more{
            display: none;
        }
    }

    .home-designer h2 {
        padding: 10px 0;
        font-size: 20px;
    }

    .home-news ul li {
        margin: 0;
        width: calc(50% - 2px);
        margin-bottom: 4px;
    }

    .box .more {
        top: 10px;
        right: 10px;
    }

    /*SPACE*/
    .three-column {}

    .three-column ul li {
        margin-bottom: 20px;
        width: calc(50% - 2.5px);
    }

    .three-column ul li a {
        height: 200px;
    }

    .three-column ul li span {
        line-height: 1.2;
        margin: 10px 0 0;
    }

    .space-news ul li {
        margin-bottom: 30px;
        width: calc(100% - 0%);
    }

    /*SORT LIST*/


    /*PRODUCT LIST*/
    .product-list {}

    .product-list ul li {
        padding-bottom: 30px;
        margin-bottom: 0;
        width: calc(50% - 2.5px);
    }

    .product-list ul li a {
        height: 280px;
    }

    .product-list ul li span {
        margin: 10px 0 0;
        position: static;
        min-height: auto;
    }

    .product-list ul li>a dl {
        height: 110%;
        top: -100px;
    }

    .product-list ul li:hover>a dl {
        top: -25px;
    }

    .product-list ul li:hover .btn-list {
        display: none;
    }

    .list-order {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-top: 40px;
    }

    /*PROJECT*/
    .project-list {
        padding-top: 20px;
    }

    .project-list h5 {
        height: 50px;
        padding: 0 10px;
        margin: 10px 0 20px 0;
    }

    .project-list h5 a {
        margin: 0 10px;
    }

    /*DESIGNER*/
    .designer-list {
        margin-top: 20px;
    }

    .designer-list ul li h3 {
        text-align: center;
        margin: 10px 0;
    }

    .designer-list ul li span {
        text-align: center;
        margin: 10px 0;
    }

    /*BRAND*/
    .brand-list {
        margin-top: 20px;
    }

    .brand-list ul li h3 {
        text-align: center;
        margin: 10px 0;
    }
    /*BRAND LIST*/
    .about-info {
        h1 {
            font-size: 18px;
        }
    }
    .brand-vision {
        article {
            padding-bottom: 60px;

            .about-info,
            .about-info:nth-child(3){
                width: 100%;
                margin: 0 auto;

                h1 {
                    margin: 40px auto;
                }
                p{
                    width: 85%;
                    margin: 0 auto;
                }
            }
        }
    }
    .brand-product ul {
        grid-template-columns: repeat(2, auto);
    }

    /*VR*/
    .vr {
        padding: 0;
    }

    .buy ul {
        border-top: 1px solid #dddddd;
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .buy ul li {
        line-height: 20px;
        margin-bottom: 20px;
    }

    .buy ul li img {
        height: 18px;
        margin: 0 3px;
    }

    /*NEWS*/
    .news-list ul li h3 {
        font-size: 18px;
        line-height: 1.1;
        margin: 20px 0;
        height: 60px;
    }

    .news-list ul li i {
        margin: 10px 0;
        font-size: 14px;
    }

    .news-list ul li span {
        line-height: 1.1;
        margin: 10px 0;
        font-size: 16px;
    }

    /*INSIPIRATION*/
    .inspiration-list {
        padding-top: 20px;
    }

    /*CONTACT*/
    .contact {
        padding: 20px 0;
    }

    .mail {
        padding: 20px 0;
    }
    .message {
        font-size: 18px;
        margin: 60px 0;
        padding: 5% 5% 40px;

        h1 {
            margin: 0 auto 20px;
            font-size: 30px;
        }
        dl {
            margin-bottom: 10px;
        }
    }

    /*ABOUT*/
    .about {
        margin: 20px 0;
    }

    .about video {
        margin: 0;
        width: 100%;
        height: auto;
    }

    .about img {
        margin: 5px 0;
    }

    /*DEALER*/
    .select-city div:last-child {
        width: 100%;
    }

    .select-city .country,
    .select-city .city {
        width: 48%;
        margin: 20px 0;
    }

    .select-city button {
        width: 100%;
    }

    .location ul li {
        width: 100%;
        border-bottom: 1px solid #999999;
        padding: 15px 0;
    }

    .location ul li h5 {
        padding-left: 30px;
        margin-bottom: 5px;
    }

    .location ul li span {
        font-size: 16px;
        padding-left: 30px;
        margin: 5px 0;
        line-height: 16px;
        min-height: 20px;
        height: auto;
    }

    .location ul li p {
        font-size: 16px;
        padding-left: 30px;
        margin: 5px 0;
        line-height: 16px;
        min-height: 20px;
        height: auto;
        background: none;
    }

    /* ----------JOB---------- */
    .job-box {
        position: relative;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .job-list {
        width: 180px;
        min-width: 180px;
        height: 40px;
        border: none;
        border-right: 1px solid #cccccc;
        position: absolute;
        overflow: hidden;
        top: 20px;
        left: 0;
        box-shadow: 5px 10px 15px 5px rgb(0 0 0 / 30%);
        transition: all .3s ease-in-out;
    }

    .job-list:hover {
        min-width: 200px;
    }

    .job-list h1 {
        margin: 0;
        font-size: 22px;
        line-height: 60px;
        border: none;
        text-align: center;
        padding-left: 30px;
    }

    .job-list .job-menu {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 60px;
        background: url(../imgs/ico_menu.svg) no-repeat left 15px center /auto 50% border-box;
        opacity: 1;
        text-indent: -100px;
        overflow: hidden;
    }

    .job-list dt,
    .job-list dd {
        display: none;
    }

    .job-content ul {
        /* padding-top: 60px; */
    }

    /* .job-content::after {
        clear: both;
        content: "";
        display: block;
    } */
    .job-content ul li {
        width: auto;
        margin: 100px 40px 40px;
    }

    .job-list-show {
        width: 50%;
        min-width: 200px;
        height: auto;
        z-index: 1001;
        transition: width .3s ease-in-out;
        margin: 0;
        padding-bottom: 10px;
        background: #ffffff;
        border-top: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
        border: none;
        box-shadow: 5px 10px 10px 10px rgb(0 0 0 / 10%);
    }

    .job-list-show h1 {
        padding-left: 0;
    }

    .job-list-show .job-menu {
        background-image: url(../imgs/ico_menu_close.svg);
        background-size: auto 40%;
        background-position: left 20px center;
    }

    .job-list-show dl:first-child {
        border-top: 1px solid #cccccc;
    }

    .job-list-show dd {
        display: block;
    }

    .job-list-show dd a {
        display: block;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        margin: 10px 0;
        width: auto;
        padding: 0 10px;
    }

    .full-info dl {
        flex-direction: column;
    }

    .full-info h1 {
        margin: 40px auto 30px;
        font-size: 24px;
        border-bottom: none;
        text-align: center;
    }

    .full-info dl dd,
    .full-info-ud dl dd {
        margin: 0 0 40px;
        width: 80%;
        text-align: left;
        font-size: 16px;
        line-height: 1.3;
    }

    .job-contract dl:first-child {
        display: none;
    }

    .job-contract dl dd {
        width: 80%;
    }

    .job-contract h3 {
        font-size: 22px;
        padding-left: 40px;
        height: 30px;
        line-height: 30px;
    }

    .job-contract p {
        font-size: 16px;
        line-height: 1.2;
        padding-left: 40px;
        word-break: break-all;
    }



    /* ----------LAYER SEARCH BAR---------- */
    .search-bar-show .logo {
        display: none;
    }

    .search-bar .search-box input {
        margin-left: 0;
        width: 100%;
    }

    /* ----------SEARCH RESULT---------- */
    .search-sort li {
        width: calc(50% - 5px);
        margin: 0;
        margin-bottom: 10px;
    }

    .search-area .search-area-box {
        width: calc(100% - 40px);
        margin: 0 auto;
        position: relative;
    }

    .search-sort {
        width: calc(100% - 40px);
        margin: 30px auto 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /* ----------DETAIL COMMON MODULES---------- */

    /* 文章详情排版模板 */
    /* MODULE 1 左右结构 */
    .box-left-right {
        margin: 20px 0;
    }

    .box-left-right>p,
    .box-left-right>div {
        font-size: 16px;
        width: 50%;
        line-height: 1.4;
        padding-right: 20px;
    }

    .box-left-right img {
        width: 100%;
    }

    /* MODULE 2 全图 */
    .box-images {
        padding: 20px 0;
    }

    .box-images p {
        font-size: 16px;
        width: 100%;
    }

    .box-images img {
        width: 100%;
    }

    /* MODULE 3 大字标题*/
    .box-title {
        width: 90%;
        padding: 20px 0 10px;
    }

    .box-title p {
        font-size: 22px;
    }

    .box-sub-title p {
        font-size: 18px;
        width: 90%;
    }

    /* MODULE 4 段落文字 */
    .box-texts {
        padding: 20px 0;
        width: 90%;
    }

    .box-texts p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* ----------COMMON DETAIL---------- */
    .common-detail h1 {
        margin: 10px 0;
    }

    /* ----------PRODUCT DETAIL---------- */
    .product-info {
        padding-bottom: 40px;
    }

    .model-box {
        height: auto;
        margin: 100px auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        
        .model {
            width: 100%;
            height: 500px;
        }
        .materials {
            width: calc(100% - 40px);
            padding-left: 40px;

            h2 {
                margin-top: 10px;
                margin-bottom: 10px;
            }
            ul{
                margin: 10px 0;
                gap: 10px;

                li{
                    margin-bottom: 20px;
                }
            }
            .more-products {
                gap: 10px;
            }
        }
    }

    .info-tab li {
        width: 24%;
    }

    .product-detail-box {
        padding: 20px;
    }

    .product-map {
        width: calc(100% + 0px);
        margin: 0 auto 20px;
    }

    .product-para {
        width: 100%;
    }

    .product-para dt {
        font-size: 24px;
        padding: 40px 0;
    }

    .product-video {
        width: 100%;
        margin: 40px auto;
        margin-bottom: 20px;
    }

    .product-color-box {
        padding: 20px;
    }

    .product-download-box {
        padding: 20px;
    }

    .image-box {
        /* height: 150px; */
        padding: 20px 0;
    }

    .product-file-box {
        padding: 20px;
    }

    .product-other {
        padding-top: 40px;
    }

    .product-other .product-list {
        height: auto;
        width: 100%;
        margin: 0 auto 40px;
    }

    .product-other .product-list ul {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        overflow-y: hidden;
    }

    .product-other .product-list li {
        width: calc(50% - 2.5px);
        min-width: auto;
        margin: 0;
        height: auto;
    }

    /* ----------PROJECT DETAIL---------- */
    .project-detail-box {
        padding: 0 0;
        max-width: calc(2560px - 0px);
        margin: 0 auto;
    }

    /* ----------INSPIRATION DETAIL---------- */

    /* ----------DESIGNER DETAIL---------- */
    .designer-photo img {
        width: calc(100% - 0px);
        height: auto;
    }

    .designer-detail-box {
        margin-top: 40px;
        width: auto;
        padding: 0 20px 40px;
        /* text-align: left; */
    }

    /* ----------NEWS DETAIL---------- */

}



/*-----------------------------------400 mobile------------------------------*/
@media screen and (max-width:400px) {

    header,
    section {
        padding: 0 10px;
        max-width: calc(2560px - 20px);
    }

    h1 {
        margin: 40px auto;
    }

    .logo {
        width: 210px;
        min-width: 210px;
        background-size: auto 60%;
    }

    .nav {
        padding: 10px 0 15px;
        /* height: 140px; */
    }

    .home .nav-show,
    .nav-show {
        width: calc(100% - 20px);
        margin: 0 10px;
        height: 35px;
    }

    .nav .nav-btn,
    .nav-show .nav-btn {
        background-size: 70%;
    }

    .nav-show .fast-nav {
        margin: 10px 0 0;
    }

    .nav-show .fast-nav li {
        height: 40px;
    }

    .nav-show .nav-list li a {
        font-size: 22px;
        line-height: 60px;
        height: 60px;
    }

    .menu-list {
        flex-wrap: wrap;
        padding-top: 10px;
        margin-top: 10px;
    }

    .menu-list li a {
        font-size: 16px;
        height: 40px;
    }

    .list-filter input {
        width: 100%;
        margin: 0 0;

    }


    /*JOB*/
    .full-info h1 {
        margin: 30px auto 20px;
        font-size: 20px;
    }

    .full-info dl dd,
    .full-info-ud dl dd {
        margin: 0 0 40px;
        width: 90%;
        font-size: 16px;
    }

    .job-contract dl:first-child {
        display: none;
    }

    .job-contract dl dd {
        width: auto;
        margin: 0 20px 30px;
    }

    .job-contract h3 {
        font-size: 16px;
        padding-left: 30px;
        height: 20px;
        line-height: 20px;
    }

    .job-contract p {
        font-size: 14px;
        padding-left: 0;
    }
}