input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: #3d3d3d !important;
}

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

#basic-info .group>p {
    font-size: 14px;
    font-weight: 300;
    color: #3d3d3d;
}

#basic-info .action .btn {
    width: 150px;
    height: 40px;
    font-size: 18px;
}

#basic-info .action .btn+.btn {
    margin-left: 8px;
}

.input_content {
    display: flex;
    flex-wrap: wrap;
}


.input_content>.group:first-child {
    width: 286px;
    margin-bottom: 40px;
    margin-right: 16px;
}

.input_content>.group:nth-child(2) {
    max-width: 480px;
    width: 100%;
}

.input_group {
    margin-bottom: 24px;
    position: relative;
}

.input_group label {
    display: block;
    margin-bottom: 8px;
}

.annotation-title {
    display: flex;
}

.annotation-title>label {
    font-size: 18px;
    width: 80px;
    text-align: justify;
    text-align-last: justify;
    margin-right: 4px;
}

.annotation-title>.small {
    color: red;
}

.annotation-title>a {
    margin-left: 16px;
    text-decoration: underline;
}

.input_group input {
    width: 100%;
    height: 36px;
    font-size: 20px;
    background: #fff;
    color: #3d3d3d;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 8px;
    padding: 8px 16px;
    box-sizing: border-box;
}

.input_group .error_message {
    color: red;
    font-size: 14px;
    position: absolute;
    bottom: -14px;
    right: 8px;
    display: none;
}

.input_group.error input {
    border: 2px solid red;
}

.input_group.error .error_message {
    display: block;
}

/* 下拉式選單 */
.select-selected {
    text-align: start;
    padding: 8px 28px 8px 16px;
}

.select-items div,
.select-selected {
    height: 36px;
    border: 1px solid #c6c6c6;
    box-sizing: border-box;
}

.select-items div {
    min-height: 36px;
    height: 100%;
    text-align: start;
    word-break: break-all;
}

.select-selected {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-items .search-items_content {
    position: relative;
    padding: 0;
    height: 40px;
    padding: 2px;
}

/* 下拉選單-搜尋框 */
.custom-select .select-items>.search-items_content input {
    display: block;
    width: calc(100% - 4px) !important;
    height: calc(100% - 4px);
    color: #048080;
    font-size: 18px;
    padding: 4px 16px;
    z-index: 2;
    border: 1px solid #767676 !important;
    border-radius: 20px;
}

.input_group.error .select-selected {
    border: 2px solid red;
}

/* 狀態 */
.click_container_title .small {
    color: red;
}

.click_container {
    display: flex;
    margin-bottom: 16px;
}

.tb_container+.tb_container {
    margin-left: 16px;
}

@media screen and (max-width:980px){
    .input_content>.group:first-child{
        max-width: 480px;
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width:450px) {
    #basic-info .action {
        display: flex;
        flex-direction: column-reverse;
    }

    #basic-info .action .btn {
        width: 100%;
    }

    #basic-info .action .btn+.btn {
        margin-left: 0px;
        margin-bottom: 16px;
    }
}

