/* 網頁海報 */
.poster{
    position: relative;
    width: 100%;
    aspect-ratio: 18 / 8;
    background-color: #C4E1FF;
    overflow: hidden;
}
.poster > .magnifier{
    position: absolute; /* 或 absolute，如果是在某個父容器內 */
    top: 10%;
    left: 2%;
    width: 8vw;                /* 寬度根據畫面變化 */
    aspect-ratio: 5 / 5;        /* 高度自動依比例計算（這邊以4:5為例） */
    background-image: url('../img/search/magnifier.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: 0;
}
.poster .net{
    position:absolute ; /* 或 absolute，如果是在某個父容器內 */
    top: 65%;
    right: -10%;
    width: 40vw;                /* 寬度根據畫面變化 */
    aspect-ratio: 3 / 5;        /* 高度自動依比例計算（這邊以4:5為例） */
    background-image: url('../img/search/full_network.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: 1;
}
.poster .left_point {
    position: absolute;
    top: -5%;
    right: 20%;
    width: 20vw;
    aspect-ratio: 3 / 5;
    background-image: url('../img/search/point_box.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    z-index: 1;
}
.poster > .content{
    width: 60%;
    position: relative;
    top:30%;
    left: 10%;
}
.poster > .content > h1{
    font-size: clamp(1.5rem, 3.5vw, 5rem);
    letter-spacing: 12px;
}
.poster > .content > h6{
    font-size: clamp(1rem, 1.5vw, 3rem);
    margin-top:2%;
    letter-spacing: 6px;
}

.poster > .textbox{
    position:absolute;
    top:20%;
    right:5%;
    width: 40%;
    aspect-ratio: 8 / 5;
    background-color:#0E6DA6;
    z-index: 3;
}
.poster > .textbox > img{
    position: relative;
    top: -5%;
    left: -5%;
    width: 100%;
    aspect-ratio: 8 / 5;
    z-index: 2;
    object-fit: cover;
    object-position: center;
}


.container {
    margin-top: 0% 2% 2% 2%;
    width: 100%;
}
.bottom-left {
    position: absolute;
    text-align: left;
    top: 37%;
    left: 5%;
}
.search_title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:3%;
    margin-bottom: 1%;
    letter-spacing: 8px;
}
.search_title > img{
    width:40px;
    height:40px;
}
.search_title > h2{
    width:25%;
    margin-bottom: 0;
    font-size: clamp(1.4rem, 2vw, 4rem);
}
.search_title .question{
    width:40px;
    height:40px;
    transition: 0.3s;
    cursor: pointer;
}
.search_title .question:hover{
    transform: scale(1.03);
}
.data_form{
    padding-left: 0%;
    padding-right: 0%;
    text-align: center;
}
.data_form > h2{
    margin-top:5%;
    display: inline-block;
}



.data_form .checkbox-span{
    white-space: nowrap;
}

.search_content{
    text-align: center;
}
.search_content > .type_des{
    display: inline-block;
    margin-top:0.5%;
    margin-bottom: 2%;
    color: rgba(33, 37, 41, 0.75);
    letter-spacing: 4px;
    font-size: clamp(0.8rem, 1.2vw, 2rem);
}
.search_content .form-check-input{
    margin-left:2%;
    margin-right:0.5%;
}
.search_content select{
    height: auto !important;
    padding-top: 1.9rem !important;
    font-size: 1em;
 }
.search_content .floatingSelect{
    margin-left:0.5em;
}
.search_content  .form_section > label{
    margin-left: 0.2em;
    margin-right: 0.7em;
}
.search_content  .checkbox-span > label{
    font-size: clamp(0.8rem, 1vw, 1.5rem);
}
.data_form > .btn_area{
    padding-top:5%;
    padding-bottom: 2%;
    text-align: center;
}
.data_form > .btn_area > button{
    width:10%;
}

.questions{
    width: 100%;
    padding: 0% 5% 0% 5%;
    background-color: white;
}

.questions .content_top{
    width: 100%;
    position: relative;
    top:5%;
    text-align: center;
}
.questions h1{
    font-size: clamp(1.4rem, 3vw, 4rem);
    margin-bottom: 5%;
    letter-spacing: 6px;
}
.questions h6{
    font-size: clamp(0.8rem, 1.2vw, 3rem);
    margin-top:2%;
    letter-spacing: 3px;
    line-height: 30px;
}
.questions .introduce_img{
    margin-top:4%;
    margin-bottom: 4%;
}
.questions .introduce_img > img{
    width:100%;
}

.questions .que hr{
    margin: 0;
    padding: 0;
}
.questions .que .q span{
    text-align: left;
    font-size: clamp(1.2rem, 1.4vw, 3.2rem);
    display: block;
    padding: 3% 0 3% 0;
    transition: 0.3s;
    border-radius: 5px;
}
.questions .card-body{
    font-size: clamp(1rem, 1vw, 3rem);
}
.questions .que .q span:hover{
    box-shadow: 0px 0px 5px #ADADAD;
    padding-left: 2%;
    font-weight: bold;
}


.b2 {
    background-color: gray;
}

/* 100% 1463px */
@media(max-width:1600px){  
 
}
/* 125% 1170px */
@media(max-width:1280px){ 
    .container{
        padding-left:2%;
    }
    .introduce_img > img{
        width:90%;
    }
    .bottom-left {
        position: absolute;
        top: 40%;
        left: 9%;
    }
    
    
}
/* 200% 731px */
@media(max-width:768px){  
    .poster{
        aspect-ratio: 18 / 18;
    }
    .poster > .content > h1 {
        margin-bottom: 5%;
    }
    .poster > .content {
        top: 21%;
        left: 8%;
        width: 80%;
    }
    .poster > .textbox {
        top: 53%;
        right: 25%;
        width: 59%;
    }
    .poster > .magnifier {
        top: 3%;
        left: 2%;
        width: 15vw;
    }
    .container1{
        font-size: 16px;
        background-image: url(../img/search/search_poster_768.png);
    }
    .data_form > h2{
        margin-top:10%;
        display: inline-block;
    }
    .container{
        padding-left: 3%;
    }
    .bottom-left{
        top:20%;
    }
    .search_title{
        margin-top:5%;
        margin-bottom: 2%;
    }
    .search_title > img{
        width:30px;
        height: 30px;
    }
    .search_title > h2{
        width:30%;
    }
    .search_title .question{
        width:30px;
        height:30px;
    }
    .data_form > .btn_area > button{
        width:20%;
    }
    .que img {
        width: 30px;
        height: 15px;
    }
}
/* 300% 487px */
@media(max-width:560px){  

    .bottom-left > .title2 {
        color: white;
    }
    .data_form > h2{
        margin-top:15%;
        display: inline-block;
    }
    .search_content > .type_des{
        margin-top:2%;
        margin-bottom: 3%;
    }
    .bottom-left{
        top:20%;
    }
    .search_title{
        margin-top:5%;
        margin-bottom: 1%;
    }
    .search_title > img{
        width:25px;
        height:25px;
    }
    .search_title > h2{
        width:30%;
    }
    .search_title .question{
        width:20px;
        height:20px;
    }
    .data_form > .btn_area {
        padding-top: 10%;
        padding-bottom: 2%;
    }
    .data_form > .btn_area > button{
        width:40%;
    }
}
@media(max-width:450px){  
    .poster {
        aspect-ratio: 18 / 22;
    }
    .poster > .content {
        top: 16%;
        left: 6%;
        width: 90%;
    }
    .poster > .textbox {
        top: 53%;
        right: 13%;
        width: 71%;
    }
    .data_form {
        padding-left: 5%;
        padding-right: 5%;
    }
    .search_title > h2 {
        width: 50%;
    }
    .search_content > .type_des {
        margin-top: 3%;
        margin-bottom: 5%;
    }
    .search_content {
        margin-bottom: 5%;
    }
    
}
@media(max-width:390px){  
    .poster {
        aspect-ratio: 18 / 25;
    }
    .search_title > h2 {
        margin-top:5%;
        width: 55%;
    }
    .bottom-left > .title2 {
        color: white;
        font-size: 1em;
    }
    .que img {
        width: 30px;
        height: 15px;
    }
}
