.blank-gap{
width:100%;
height:var(--section-gap);
background: white;
}
.pop-up-tips {
position: fixed;
top: 0;
left: 0;
z-index: 300;
width: 100%;
height: 100dvh;
background: rgba(255, 255, 255, 0.8);
display: none;
padding: var(--pad-space);
}
.pop-up-tips>div {
display: flex;
width: 100%;
height: 100%;
align-items: center;
justify-content: center;
}
.pop-up-tips>div>div {
width: 100%;
max-width: 300px;
padding: 40px 20px;
background: white;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
border-radius: 20px;
}
.pop-up-tips h6 {
font-family: var(--ch-font);
font-size: 25px;
font-weight: 700;
text-align: center;
margin: 0;
margin-bottom: 10px;
}
.pop-up-tips p {
font-family: var(--ch-font);
font-size: 15px;
font-weight: 400;
text-align: center;
margin-bottom: 30px;
}
.pop-up-tips button {
font-family: var(--ch-font);
font-size: 15px;
display: block;
margin: 0 auto;
font-weight: 700;
background: var(--main-color) !important;
color: white;
border-radius: 100px;
padding: 8px 30px;
cursor: pointer;
outline: unset !important;
}
.identity{
padding: 0 var(--pad-space);
margin-bottom: 80px;
}
.identity>div{
width: 100%;
max-width: 1450px;
margin: 0 auto;
}
.identity-head{
width: 100%;
max-width: 780px;
}
.identity-head p{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 400;
margin: 0;
color: #000000;
line-height: 2em;
}
.identity-head p:first-child{
color: #000000;
}
.identity-head p:last-child{
color: #707070;
}
.identity>div,
.identity-head{
display: grid;
grid-template-columns: 1fr;
grid-gap: 40px;
}
.identity-radio-body h6{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 600;
margin: 0;
color: var(--main-color);
line-height: 2em;
margin-bottom: 25px;
}
.identity-radio-body form{
display: grid;
grid-template-columns: auto auto auto auto auto;
grid-gap: 25px 20px;
width: 100%;
max-width: 1100px;
}
.identity-radio-line{
display: grid;
grid-template-columns: auto 1fr;
align-items: center;
grid-gap: 30px;
}
.identity-radio-line label{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 400;
margin: 0;
color: #000000;
}
.identity-radio-line input[type="radio"]{
width: var(--xd-19px);
height: var(--xd-19px);
cursor: pointer;
}
.survey{
padding: 0 var(--pad-space);
padding-bottom: calc( var(--section-gap) + 30px );
position: relative;
}
.survey::before{
content: "";
position: absolute;
width: 100%;
height: 55%;
left: 0;
bottom:0;
background-image: url(//www.tahhsin.com.tw/wp-content/uploads/2024/07/close-up-green-leaves-nature.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
z-index: 0;
}
.survey>div{
width: 100%;
max-width: 1450px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.survey form{
border-radius: 20px;
border: 2px solid #DBDBDB;
overflow: hidden;
}
.survey>div>button{
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
text-decoration: none !important;
background: white;
border: 2px solid #707070;
padding: 11px 30px;
border-radius: 100px;
position: relative;
overflow: hidden;
min-width: 130px;
margin: 70px auto 0 auto;
}
.survey>div>button>span {
font-family: var(--ch-font);
font-size: var(--xd-16px);
font-weight: 400;
margin: 0;
color: #000000;
line-height: 1em;
z-index: 1;
}
.survey>div>button::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 100%;
left: 0;
transition: all .5s;
background: var(--main-color);
z-index: 0;
}
.survey>div>button:hover::before{
top: 0%;
}
.survey>div>button:hover{
background: var(--main-color);
border: 2px solid var(--main-color);
}
.survey>div>button:hover span{
color: white;
transition: all .5s;
}
.survey table{
table-layout: fixed;
border-collapse: separate;
border-spacing: 0;
margin: 0;
}
.survey th,
.survey td{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-size: 16px;
font-weight: 400;
margin: 0;
vertical-align: middle;
color: #4B4A4A;
height: 95px;
border: unset;
border-block-start:unset !important;
text-align: center;
padding: 20px;
}
.survey td{  line-height: 2em;
}
.survey th{
background: var(--main-color);
color: white;
font-weight: 500;
text-align: center;
}
.survey thead tr th:nth-child(1),
.survey thead tr th:nth-child(2),
.survey thead tr th:nth-child(3){
border-right: 2px solid white;
}
.survey thead tr th:nth-child(1){
width: 90px;
}
.survey thead tr th:nth-child(2){
width: 200px;
} .survey thead tr th:nth-child(4),
.survey thead tr th:nth-child(5),
.survey thead tr th:nth-child(6),
.survey thead tr th:nth-child(7),
.survey thead tr th:nth-child(8){
width: 120px;
}
.survey tbody tr:nth-child(odd) {
background-color: #E8E8E8;
}
.survey tbody tr:nth-child(even) {
background-color: #F7F7F7;
}
.survey tbody tr:not(:last-child) td{
border-bottom: 2px solid #DBDBDB;
}
.survey tbody tr td.gray-td-bold{
background-color: #2E2E2E !important;
color: white;
text-align: center;
border-right: 2px solid #DBDBDB;
border-bottom: 2px solid white;
}
.survey tbody tr td.gray-td-light{
background-color: #4B4A4A !important;
color: white;
text-align: center;
border-right: 2px solid #DBDBDB;
border-bottom: 2px solid white;
}
.survey tbody tr td.gray-td-light.bottom-last-tr,
.survey tbody tr td.gray-td-bold.bottom-last-tr{
border-bottom: unset;
}
table tbody tr:hover>td, table tbody tr:hover>th{
background-color:unset !important;
}
.survey tbody tr td.gray-line-right{
border-right: 2px solid #DBDBDB;
text-align: left;
}
.survey input[type="radio"]{
width: var(--xd-19px);
height: var(--xd-19px);
cursor: pointer;
}
.survey-mobile{
padding: 0 var(--pad-space);
padding-bottom: var(--section-gap);
}
.survey-mobile>div{
width: 100%;
margin-right: auto;
}
.survey-mobile>div h3{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 600;
margin: 0;
color: var(--main-color);
line-height: 1.7em;
margin-bottom: 25px;
}
.survey-mobile-section{ }
.survey-mobile-section h4{
font-family: var(--ch-font);
font-size: var(--xd-28px);
font-weight: 600;
margin: 0;
color: var(--main-color);
line-height: 1em;
margin-bottom: 10px;
}
.survey-mobile-section-box-lable{
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.survey-mobile-section-box-lable h5,
.survey-mobile-section-box-lable h6{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 600;
margin: 0;
color: black;
line-height: 1.7em;
margin-bottom: 10px;
}
.survey-mobile-section-box{
margin-bottom: 50px;
}
.survey-mobile-section-box>p{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 400;
margin: 0;
color: black;
line-height: 1.4em;
margin-bottom: 17px;
}
.survey-mobile-section-box-radio{
display: grid;
grid-template-columns: 1fr;
grid-gap: 10px;
}
.survey-mobile-section-box-radio>div{
display: flex;
align-items: center;
gap: 15px;
}
.survey-mobile input[type="radio"]{
width: 15px;
height: 15px;
cursor: pointer;
}
.survey-mobile-section-box-radio label{
font-family: var(--ch-font);
font-size: var(--xd-19px);
font-weight: 400;
margin: 0;
color: black;
line-height: 1.4em;
}
.survey-mobile{
display: none;
}
.survey-mobile>button{
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
text-decoration: none !important;
background: white;
border: 2px solid #707070;
padding: 11px 30px;
border-radius: 100px;
position: relative;
overflow: hidden;
min-width: 130px;
margin: 70px auto 0 auto;
}
.survey-mobile>button>span {
font-family: var(--ch-font);
font-size: var(--xd-16px);
font-weight: 400;
margin: 0;
color: #000000;
line-height: 1em;
z-index: 1;
}
.survey-mobile>button::before {
content: "";
width: 100%;
height: 100%;
position: absolute;
top: 100%;
left: 0;
transition: all .5s;
background: var(--main-color);
z-index: 0;
}
.survey-mobile>button:hover::before{
top: 0%;
}
.survey-mobile>button:hover{
background: var(--main-color);
border: 2px solid var(--main-color);
}
.survey-mobile>button:hover span{
color: white;
transition: all .5s;
}
@media only screen and (max-width:1350px){
.survey{
margin-bottom: 40px;
display: none;
}
.survey-mobile{
display: block;
}
.identity{
margin-bottom: 50px;
}
}
@media only screen and (max-width:1024px){
.identity-radio-line{
grid-gap: 15px;
}
.identity-radio-body form,
.identity-head{
max-width: unset;
}
}
@media only screen and (max-width:767px){
.identity-radio-body form{
grid-template-columns: auto auto auto;
}
}
@media only screen and (max-width:600px){
.identity-radio-body form{
grid-template-columns: auto auto;
}
.identity>div, .identity-head{
grid-gap: 25px;
}
.identity-radio-body h6{
margin-bottom: 15px;
}
.identity-radio-body form{
grid-gap: 17px;
}
.banner-title-box h3{
font-size: 33px;
}
}