.main_title2_set .title {
    flex-direction: column;
    align-items: start;
}

.main_title2_set .title>p.has_back {
    margin-left: 56px;
    margin-top: 8px;
}

/* checkbox 勾選按*/
/*勾選同意及按鍵區*/
.chk-container {
    display: flex;
    align-items: center;
    font-size: 22px;
    letter-spacing: 1px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.chk-container input {
    position: absolute;
    top: 8px;
    left: 8px;
    opacity: 0;
    cursor: pointer;
}

.chk-container .checkmark {
    display: inline-block;
    height: 20px;
    width: 20px;
    border-radius: 3px;
    position: relative;
}

.chk-container .checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.chk-container .checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #658ae6;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.chk-container .outter {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: .3s;
}

.chk-container .outter:hover {
    background: #d2e0e4;
}

.chk-container .outter:active {
    background: #a7cdd0;
}

.chk-container .outter .checkmark {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #285ee4;
    z-index: 2;
    background: 0 0;
}

.chk-container input:checked~.outter .checkmark {
    background: #285ee4;
}

.chk-container input:checked~.outter .checkmark:after {
    display: block;
    border-color: #fff;
}

.action > .group{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 8px;
}

.action > .group >span{
    margin-top: 4px;
} 

.input_content .dividing_line {
    margin-bottom: 24px;
}

.amount_unit {
    position: relative;
}

.amount_unit::after {
    content: '元';
    padding-left: 8px;
}


.input_group .chk1 {
    display: flex;
    flex-wrap: nowrap;
}

.input_group .chk1>.group {
    width: calc(100% - 140px);
    margin-right: 8px;
    position: relative;
}

.calculate_group {
    font-size: 18px;
}

.calculate_group strong {
    font-size: 20px;
    font-weight: bold;
}

/* 上傳圖檔區塊 */
.upload_group {
    margin-bottom: 24px;
    position: relative;
}

.upload-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 240px;
    padding: 16px;
    border: 1px dashed #ccc;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-box>.group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-box>.group>p {
    color: #767676;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    text-align: center;
}

.upload-box>.group>.btn {
    width: 112px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-box>.group img {
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-action {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    cursor: pointer;
}

.preview-box {
    position: absolute;
    /* top: 0;
    left: 0; */
    width: 90%;
    height: 90%;
    /* padding: 16px; */
    object-fit: contain;
    background-position: center;
    overflow: hidden;
    box-sizing: border-box;

}

.preview-box img {
    min-width: 100%;
    width: 100%;
    min-height: 100%;
}

/* 重傳 刪除按鈕 */
.upload_group>.button-wrapper {
    position: absolute;
    top: -4px;
    right: 0;
    /* display: none; */
}

.upload_group>.button-wrapper>label {
    background-color: #fff;
}

.button-wrapper {
    display: flex;
}

.button-wrapper>label {
    width: 64px;
    height: 24px;
    font-size: 14px;
    padding: 2px 12px;
    line-height: 1.3;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
}

.button-wrapper>label.upload_btn {
    color: #0d66ff;
    border: 1px solid #0d66ff;
}

.button-wrapper>label.del_btn {
    color: #ff0000;
    border: 1px solid #ff0000;
}

.upload_file {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
}

.input_content:last-child .group>.action {
    margin-top: 40px;
}

.input_content .sub_group+.sub_group {
    margin-top: 80px;
}

.input_content .sub_group>.title {
    font-size: 18px;
    color: #3d3d3d;
    font-weight: bold;
    margin-bottom: 16px;
}

.input_content .sub_group>p {
    font-size: 18px;
    line-height: 1.33;
    margin-top: 40px;
    margin-bottom: 40px;
}

.input_content .sub_group>p.text {
    width: 100%;
    text-align: center;
    font-size: 24px;
}

/* modal */


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

    .action > .group{
        width: 100%;
        margin-left: 0;
        margin-bottom: 8px;
    }

}

