﻿
/* 手機 */
@media screen and (max-width: 767px) {
    .create-customer-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 20px 0px;
    }
    
    .create-customer-container > .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        padding: 0px 20px 20px 20px;
    }
    
    /* ---------------------------------------------------------------------------------------------------- */
    
    .create-customer-container > .content > .item-box {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px 20px 20px;
    }
    
    .create-customer-container > .content > .item-box > .title-box {
        width: 100%;
    }
    
    .create-customer-container > .content > .item-box > .title-box > p {
        width: 90px;
        border-bottom: 2px solid transparent;
        color: #00a5a6;
        font-size: 15px;
        font-weight: 700;
        padding: 5px 0px;
    }
    
    .create-customer-container > .content > .item-box > .title-box > p.active {
        border-bottom: 2px solid #00a5a6;
    }
    
    .create-customer-container > .content > .item-box > .title-box > hr {
        border: none;
        border-top: 1px solid #d7d7d7;
        margin: 0px;
    }
    
    .create-customer-container > .content > .item-box > .row-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
    }
    
    .create-customer-container > .content > .item-box > .row-box.other {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box > input {
        width: calc(100% - 75px);
        height: 36px;
    }
    
    .create-customer-container > .content > .item-box > .row-box > span.instructions {
        display: none;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box > textarea {
        width: 100%;
        height: 100%;
    }
    
    /* ---------------------------------------------------------------------------------------------------- */
    
    .create-customer-container > .content > .images-box {
        width: 100%;
        background-color: #ffffff;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }
    
    .create-customer-container > .content > .images-box > .box {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .create-customer-container > .content > .images-box > .box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box {
        width: 100%;
        background-color: #8ac1cc;
        border-radius: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box > .img-box {
        width: 100%;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box > .img-box > img {
        width: 100%;
        max-width: 320px;
        max-height: 320px;
    }

    /* ---------------------------------------------------------------------------------------------------- */

    .create-customer-container .footer-box > button {
        background-color: #00a5a6;
        color: #ffffff;
    }
}

/* PC */
@media screen and (min-width: 768px) {
    .create-customer-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 20px 0px;
    }
    
    .create-customer-container > .content {
        width: 1226px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 0px 20px 20px 20px;
    }
    
    /* ---------------------------------------------------------------------------------------------------- */
    
    .create-customer-container > .content > .item-box {
        width: calc(100% - 17px);
        background-color: #ffffff;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px 20px 20px;
    }
    
    .create-customer-container > .content > .item-box > .title-box {
        width: 100%;
    }
    
    .create-customer-container > .content > .item-box > .title-box > p {
        width: 90px;
        border-bottom: 2px solid transparent;
        color: #00a5a6;
        font-size: 15px;
        font-weight: 700;
        padding: 5px 0px;
    }
    
    .create-customer-container > .content > .item-box > .title-box > p.active {
        border-bottom: 2px solid #00a5a6;
    }
    
    .create-customer-container > .content > .item-box > .title-box > hr {
        border: none;
        border-top: 1px solid #d7d7d7;
        margin: 0px;
    }
    
    .create-customer-container > .content > .item-box > .row-box {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }
    
    .create-customer-container > .content > .item-box > .row-box.other {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .box > input {
        width: 200px;
        height: 36px;
    }
    
    .create-customer-container > .content > .item-box > .row-box > span.instructions {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .item-box > .row-box > .full-box > textarea {
        width: 100%;
        height: 100%;
    }
    
    /* ---------------------------------------------------------------------------------------------------- */
    
    .create-customer-container > .content > .images-box {
        width: calc(100% - 17px);
        background-color: #ffffff;
        border: 1px solid #d7d7d7;
        border-radius: 8px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
        row-gap: 40px;
        padding: 20px;
    }
    
    .create-customer-container > .content > .images-box > .box {
        width: calc((100% - 60px) / 5);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .create-customer-container > .content > .images-box > .box > span {
        font-size: 15px;
        font-weight: 700;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box {
        width: 100%;
        height: 181px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box {
        width: 100%;
        height: calc(100% - 41px);
        background-color: #8ac1cc;
        border-radius: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box > .img-box {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .create-customer-container > .content > .images-box > .box > .column-box > .upload-image-box > .img-box > img {
        max-width: 100%;
        max-height: 100%;
    }
}