
/* Artwork Intro */


.breadcrumb {
    margin: 0px 160px 24px 160px;
}

.artworkPage {
    min-height: 100vh;
}

.mv_bg.artworkPage {
    margin-top: 200px;
    margin-bottom: 160px;
}

section#artwork_intro {
    margin-top: 300px;
    margin-bottom: 200px;
}

.artworkPage .container{
    padding: 0px;
}

.artwork_wrap {
    display: inline-flex;
    column-gap: 120px;
    justify-content: center;
}

.artwork_left {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artwork_left .main-image {
    width: 100%; /* 或者具體尺寸 */
}




/* 样式调整 */
.artwork_left {
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
}

.arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
}

.arrow-left {
    left: 0px;
}

.arrow-right {
    right: 0px;
}




.artwork_left .thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.artwork_left .thumbnail {
    width: 40px; /* 縮略圖尺寸 */
    margin-right: 8px;
    cursor: pointer;
    opacity: 0.8;
}

.artwork_left .thumbnail:last-child {
    margin-right: 0;
}

.artwork_left .thumbnail.active {
    border: 2px solid var(--primary_Green);
}


.artwork_right {
    width: 40%;
}


.artwork_left img {
    width: 100%;
}

.artwork_left .img_condition {
    margin-top: 24px;
}

.img_condition p{
    font-size: 14px;
}

.artwork_left .condition_icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.artwork_right .img_condition {
    display: none;
}

.artwork_des h6 {
    font-size: 20px;
    line-height: 180%;
    margin-top: 0px;
}

.artwork_des p {
    font-size: 16px;
    font-weight: 400;
}


.artwork_right table {
    width: 100%;
    text-align: left;
    margin-top: 40px;
    margin-bottom: 40px;
}

table, tr:last-child {
    border-bottom: unset !important;
}

table, tr, th, td {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray500);
    padding-bottom: 16px;
    padding-top: 16px;
}

table, th{
    color: var(--gray700);
    font-weight: 400;
}

table, td{
    color: var(--primary-color);
}


.artwork_right button {
    width: 100%;
    cursor: pointer;
    margin-bottom: 40px;
    text-decoration: unset;
    border: unset;
    padding: 20px 0px;
    border-radius: 8px;
    background: var(--primary_Green);
    color: var(--base_white);
    font-weight: 300;
    transition: all 0.8s;
}

.artwork_right button:hover {
    background: #5d776a;
}

.artwork_right button:last-child {
    border: 1px solid var(--primary_Green);
    color: var(--primary_Green);
    background: unset;
    font-weight: 400;
}

.artwork_right button:last-child:hover {
    border: 1px solid #5d776a;
    color: #5d776a;
    background: unset;
}

button:disabled {
    background: var(--primary_Green);
    opacity: 0.3;
    cursor: no-drop;
}

.artwork_right button i{
    margin-left: 8px;
    font-weight: 600;
}

@media(max-width: 960px){

    section#artwork_intro {
         margin: 160px 16px 80px 16px;
      
    }

    .breadcrumb {
        margin: 0px 40px 24px 40px;
    }

    .artwork_wrap {
        display: inline-flex;
        column-gap: 48px;
        margin: 0px 16px;
    }

    .artwork_left {
        width: 40%;
    }

    .artwork_right {
        width: 50%;
    }
}


@media(max-width: 576px){

    .mv_bg.artworkPage {
        margin-top: 160px;
        margin-bottom: 80px;
        border-radius: 0px;
        margin: 180px 24px 0px 24px;
    }

    .breadcrumb {
        margin: 0px 0px 24px 0px;
    }


    
    .artwork_wrap {
        display: block;
        margin: 0px 0px;
    }

    .artwork_left {
        width: 100%;
    }

    .arrow {
        display: block;
    }
    

    .artwork_right {
        width: 100%;
        margin-top: 24px;
    }

    .artwork_left .img_condition{
        display: none;
       
    }

    .artwork_right .condition_icon{
        display: inline-flex;
        justify-content: center;
        align-items: center;
    }

    .artwork_right .img_condition {
        display: block;
        margin-top: 40px;
    }
    

}














