@charset "utf-8";

/*============================================= 全部共用區 ===============================================*/
.clear {
    margin: 0px;
    padding: 0px;
    border: 0;
    clear: both;
}

body {
    font-family: 'Noto Sans TC', sans-serif, Helvetica, Arial, sans-serif, "微軟正黑體", Heiti TC, "メイリオ";
}

/*----------- input placeholder設定 -----------*/
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #58658c;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

input[type="text"]:hover::-webkit-input-placeholder,
input[type="password"]:hover::-webkit-input-placeholder,
textarea:hover::-webkit-input-placeholder {
    color: #3b47ab;
    opacity: 1;
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

input[type="text"]:focus::-webkit-input-placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

/*----------- input placeholder設定 end -----------*/

/*----------- 美化的Select下拉框設定 -----------*/
.nice-select {
    position: relative;
    display: inline-block;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left !important;
    font-weight: 300;
    /*	font-family:"ITC Avant Garde Gothic","微軟正黑體";*/
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, .5);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, .5);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nice-select:hover {}

.nice-select:active,
.nice-select.open,
.nice-select:focus {}

.nice-select:after {
    position: absolute;
    display: block;
    /*    
    width: 20px;
    height: 47px;
	font-size:24px;
	line-height:45px;
    margin-top: -23px;
    right: 8px;
*/
    top: 50%;
    content: "\f0d7";
    font-family: FontAwesome;
    font-weight: normal;
    text-align: center;
    pointer-events: none;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.nice-select:hover:after {}

.nice-select.open:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nice-select.open .list {
    opacity: 1;
    background-color: #fff;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    /*
      left: 0 !important;
      right: 0 !important;
*/
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select .list {
    /*
    top: 100%;
    left: 0;
    margin-top: 0;
*/
    position: absolute;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    color: #58658c;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -moz-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    -ms-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 10;
}

.nice-select .list:hover .option:not(:hover) {
    color: #58658c;
    background-color: transparent !important;
}

.nice-select .option {
    min-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
    list-style: none;
    line-height: 40px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    color: #fff;
    background-color: #9374c2;
}

.nice-select .option.selected {
    color: #fff;
    background-color: #9374c2;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

.selectIndigo {
    border-radius: 10px;
    height: 47px;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    border: 1px solid #3b47ab;
    background-color: #3b47ab;
}

.selectPurple {
    border-radius: 10px;
    height: 47px;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    border: 1px solid #6a39b6;
    background-color: #6a39b6;
}

.selectOne {
    border-radius: 10px;
    height: 47px;
    font-size: 20px;
    line-height: 45px;
    color: #363e59;
    border: 1px solid #455a64;
    background-color: #fafafa;
}

.selectIndigo.nice-select.wide .list,
.selectPurple.nice-select.wide .list,
.selectOne.nice-select.wide .list {
    left: 0;
    right: 0;
}

.nice-select:hover .selectIndigo {
    color: #fff;
    border: 1px solid #3b47ab;
}

.selectPurple .nice-select:hover {
    color: #fff;
    border: 1px solid #6a39b6;
}

.selectOne .nice-select:hover {
    color: #363e59;
    border: 1px solid #455a64;
}

.selectIndigo .nice-select:active,
.nice-select .selectIndigo.open,
.selectIndigo .nice-select:focus {
    color: #fff;
    border: 1px solid #3b47ab;
    background-color: #3b47ab;
}

.selectPurple .nice-select:active,
.selectPurple .nice-select.open,
.selectPurple .nice-select:focus {
    color: #fff;
    border: 1px solid #6a39b6;
    background-color: #6a39b6;
}

.selectOne .nice-select:active,
.selectOne .nice-select.open,
.selectOne .nice-select:focus {
    color: #363e59;
    border: 1px solid #455a64;
    background-color: #fafafa;
}

.selectIndigo .nice-select:after,
.selectIndigo .nice-select:hover:after,
.selectPurple .nice-select:after,
.selectPurple .nice-select:hover:after {
    color: #fff;
}

.selectIndigo.nice-select:after,
.selectPurple.nice-select:after {
    color: #fff;
    width: 20px;
    height: 47px;
    font-size: 24px;
    line-height: 45px;
    margin-top: -23px;
    right: 8px;
}

.selectOne.nice-select:after {
    color: #363e59;
    width: 20px;
    height: 47px;
    font-size: 24px;
    line-height: 45px;
    margin-top: -23px;
    right: 8px;
}

.selectIndigo.nice-select.open:after,
.selectPurple.nice-select.open:after {
    color: #fff;
}

.selectOne.nice-select.open:after {
    color: #363e59;
}

.selectIndigo.nice-select.wide .list {
    top: 100%;
    left: 0;
    margin-top: 0;
    border: 1px solid #5762c2;
    background-color: #fff;
}

.selectPurple.nice-select .list {
    top: 100%;
    left: 0;
    margin-top: 0;
    border: 1px solid #9374c2;
    background-color: #fff;
}

.selectOne.nice-select .list {
    top: 100%;
    left: 0;
    margin-top: 0;
    border: 1px solid #363e59;
    background-color: #fff;
}

.selectIndigo.nice-select .option:hover,
.selectIndigo.nice-select .option.focus,
.selectIndigo.nice-select.option.selected.focus {
    color: #fff;
    background-color: #5762c2;
}

.selectPurple.nice-select .option:hover,
.selectPurple.nice-select .option.focus,
.selectPurple.nice-select .option.selected.focus {
    background-color: #9374c2;
}

.selectOne.nice-select .option:hover,
.selectOne.nice-select .option.focus,
.selectOne.nice-select .option.selected.focus {
    background-color: #58658c;
}

.selectIndigo.nice-select .option.selected {

    background-color: #5762c2;
}

.selectPurple.nice-select .option.selected {
    color: #fff;
    background-color: #9374c2;
}

.selectOne.nice-select .option.selected {
    color: #fff;
    background-color: #58658c;
}

/*----------- 美化的Select下拉框設定 end -----------*/


/*---------------------   動畫設定    ---------------------*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;

    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;

    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;

    visibility: visible !important;
}

/*---------------------   動畫設定 end    ---------------------*/
.blank30 {
    height: 30px;
}

.blank50 {
    height: 50px;
}

.blank80 {
    height: 80px;
}

.blank100 {
    height: 100px;
}

.blank200 {
    height: 200px;
}

/*---------------------   卡片輪播設定    ---------------------*/
.controlL01 {
    /*    margin-right: 40px;*/
    font-size: 70px;
    color: #78909c;
}

.controlR01 {
    /*    margin-left: 40px;*/
    font-size: 70px;
    color: #78909c;
}

.carousel-indicators [data-bs-target] {
    width: 30px;
    height: 7px;
    margin-left: 5px;
    margin-right: 5px;
}

.carousel-indicators {
    bottom: -40px;
    /*底下選擇的button*/
}

.carousel-indicators button {
    background-color: #bdbdbd !important;
    width: 50%;
    border: none !important;
}

.carousel-indicators .active {
    background-color: #5762c2 !important;
}

/*---------------------   卡片輪播設定 end    ---------------------*/

.inputSearch {
    display: block;
    width: 100%;
    height: 47px;
    padding-left: 15px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 45px;
    color: #58658c;
    font-weight: 300;
    border: 1px solid #757bc2;
    border-right: none;
    border-radius: 10px 0 0 10px;
    background-color: #fafafa;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputSearch:hover {
    border: 1px solid #00bcd4;
    border-right: none;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputSearch:focus {
    color: #686868;
    border: 1px solid #00bcd4;
    background-color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputSearch:focus {
    border-left: none;
}

.buttonSearch {
    width: 100%;
    height: 47px;
    text-align: center;
    font-size: 20px;
    line-height: 41px;
    color: #fff;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(to right, #577ac1 0%, #3b47ab 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: solid 2px #6a89c7;
    border-right: solid 1px #2e388e;
    border-bottom: solid 2px #2d3b82;
    border-left: solid 1px #6a89c7;
    border-radius: 0 10px 10px 0;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
}

.buttonSearch:hover,
.buttonSearch:active {
    background: linear-gradient(to right, #ffa726 0%, #ff6d00 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: solid 2px #ffbc6e;
    border-right: solid 1px #c75600;
    border-bottom: solid 2px #dd730e;
    border-left: solid 1px #ffb344;
    border-radius: 0 10px 10px 0;
}

.buttonApply {
    width: 100%;
    height: 47px;
    text-align: center;
    font-size: 20px;
    line-height: 41px;
    color: #fff;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    background: linear-gradient(to top, #577ac1 0%, #3b47ab 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: solid 2px #6a89c7;
    border-right: solid 1px #445caa;
    border-bottom: solid 2px #354b86;
    border-left: solid 1px #3f51a4;
    border-radius: 10px;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
}

.buttonApply:hover,
.buttonApply:active {
    background: linear-gradient(to top, #ffa726 0%, #ff6d00 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: solid 2px #ffaf71;
    border-right: solid 2px #e48216;
    border-bottom: solid 2px #dd730e;
    border-left: solid 2px #f28413;
    border-radius: 10px;
}

.inputOne {
    width: 100%;
    height: 47px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 3px;
    font-size: 18px;
    color: #3b47ab;
    font-weight: 300;
    border: 1px solid #757bc2;
    border-radius: 10px;
    background-color: #fafafa;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.textArea01 {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: #3b47ab;
    border: 1px solid #757bc2;
    border-radius: 10px;
    background-color: #fafafa;
    -webkit-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputOne:hover,
.textArea01:hover {
    color: #3b47ab;
    border: 1px solid #00bcd4;
    background-color: #fffff0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.inputOne:focus,
.inputOne:active,
.textArea01:focus,
.textArea01:active {
    color: #3b47ab;
    border: 1px solid #00bcd4;
    background-color: #fffff0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.titleOne {
    margin-bottom: 20px;
    font-size: 70px;
    line-height: 48px;
    text-align: center;
    color: #242538;
    font-weight: 700;
}

.titleOne span {
    padding: 0 3px;
    font-size: 32px;
    font-weight: 300;
    border-bottom: 5px solid #ff9800;
}

.fmColW18R1 {
    width: 18%;
    margin-right: 1%;
}

.fmColW16R1 {
    width: 16%;
    margin-right: 1%;
}

.fmColW11R1 {
    width: 11%;
    margin-right: 1%;
}

.fmColW11 {
    width: 11%;
}

/*---------------------   標題表單寬度設定 end    ---------------------*/

/*============================================= 全部共用區 end ===============================================*/

/*============================================== 桌機版型區 ================================================*/

/*----------------   許願池、廣告刊登設定   ----------------*/
.wishBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wishInfo {
    font-size: 20px;
    line-height: 36px;
    color: #363e59;
    font-weight: 300;
}

.wishInfo p {
    margin-bottom: 20px;
}

.wishInfo a {
    color: #3b47ab;
    font-weight: 400;
    text-decoration: none;
}

.wishInfo a:hover,
.wishInfo a:active {
    color: #6a39b6;
    font-weight: 500;
}

.wishBox label {
    display: block;
    padding: 5px 10px;
    font-size: 18px;
    line-height: 24px;
    color: 424242;
    font-weight: 300;
}

.wishBox label i {
    padding-right: 5px;
    font-size: 22px;
    vertical-align: baseline;
    color: #3b47ab;
}

.advSlotBox {
    font-size: 18px;
    line-height: 24px;
    color: 424242;
    font-weight: 300;
}

.advSlotBox p {
    margin-bottom: 5px;
}

.advSlotBox p i {
    padding-right: 5px;
    font-size: 22px;
    vertical-align: baseline;
    color: #3b47ab;
}

.advSlotBox input[type=checkbox] {
    visibility: hidden;
}

.advSlotBox label {
    padding-bottom: 7px;
}

.advSlotBox label.checkbox01 {
    float: left;
    position: relative;
    overflow: visible;
    margin-right: 15px;
    text-indent: 22px;
    cursor: pointer;
    vertical-align: middle;
}

.advSlotBox label.checkbox01:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    margin-top: -10px;
    border-radius: 5px;
    background-color: #3b47ab;
    -webkit-box-shadow: 1px 2px 2px rgba(51, 51, 51, .5);
    -moz-box-shadow: 1px 2px 2px rgba(51, 51, 51, .5);
    box-shadow: 1px 2px 2px rgba(51, 51, 51, .5);
}

.advSlotBox label.checkbox01:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 6px;
    background: transparent;
    top: 50%;
    left: 5px;
    margin-top: -6px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.advSlotBox input[type=checkbox]:checked+label:after {
    opacity: 1;
}

/*----------------   許願池、廣告刊登設定 end   ----------------*/


/*----------------   導覽列設定   ----------------*/
#topHeader {
    width: 100%;
    height: 50px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.5);
}

#topHeader img {
    max-height: 100%;
    width: auto;
}

.header {
    width: 100%;
    display: flex;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(51, 51, 51, 0.5);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    z-index: 999;
}

#logoWeb01 {
    display: flex;
    align-items: center;
    width: 14%;
    padding-left: 30px;
}

#logoWeb01 img {
    text-align: center;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 3px 3px 5px rgba(51, 51, 51, 0.5);
    border: none;
}

#navLine01 {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 86%;
}

#searchBar01 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
    height: 90px;
    padding-right: 30px;
    background-color: #58658c;
    border-bottom-left-radius: 90px;
}

#navItem01 {
    padding-right: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100px;
}

nav {
    width: 100%;
    display: none;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(51, 51, 51, 0.5);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    z-index: 999;
}

.fixNav {
    margin-bottom: 170px;
}

.fixNav+nav {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
}

#logoWeb02 {
    display: flex;
    align-items: center;
    width: 10%;
    padding-left: 30px;
}

#logoWeb02 a {
    display: block;
}

#logoWeb02 a img {
    max-width: 100%;
    height: auto;
    border: none;
    border-radius: 50%;
    box-shadow: 3px 3px 5px rgba(51, 51, 51, 0.5);
}

#navLine02 {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 90%;
}

#searchBar02 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 70%;
    height: 70px;
    padding-right: 30px;
    background-color: #58658c;
    border-bottom-left-radius: 70px;
}

#navItem02 {
    padding-right: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 80px;
}

.searchPart01 {
    width: 55%;
}

.searchPart02 {
    width: 25%;
}

a.navBtn01 i {
    padding-right: 5px;
    font-size: 22px;
    color: #fff;
    vertical-align: text-bottom;
    vertical-align: baseline;
}

a.navBtn01 {
    width: 100%;
    display: block;
    height: 47px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #007d99 0%, #00bcd4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #1e92aa;
    border-right: 2px solid #007686;
    border-bottom: 2px solid #006a77;
    border-left: 2px solid #24bbd1;
    box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.5);

}

a:hover.navBtn01 {
    background: linear-gradient(to bottom, #cc526a 0%, #d96c89 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #d3697e;
    border-right: 2px solid #a95368;
    border-bottom: 2px solid #90485b;
    border-left: 2px solid #da7990;
}

/*------------   跑馬燈設定   ------------*/
.marqueeBox {
    /*  margin-top: 190px;*/
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.marqueeTitle {
    width: 14%;
    padding-left: 30px;
    font-size: 24px;
    line-height: 60px;
    color: #3b47ab;
    font-weight: 400;
    position: absolute;
    left: 0;
    z-index: 200;
    background-color: #ebebeb;
}

.marqueeEnd {
    position: absolute;
    width: 30px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 200;
    background-color: #ebebeb;
}

.marqueeTitle i {
    font-size: 30px;
    padding-right: 5px;
}

.marqueeContent {
    width: 100%;
    height: 60px;
    background-color: #ebebeb;
}

.marqueeContent a {
    font-size: 20px;
    line-height: 60px;
    font-weight: 300;
    color: #363e59;
    text-decoration: none;
    transition: all ease-out 100ms;
}

.marqueeContent a:hover,
.marqueeContent a:active {
    color: #3b47ab;
    font-weight: 400;
}

.marqueeContent a:after {
    content: "|";
    margin: 0 20px;
    color: #00bcd4;
}

.marqueeContent a:hover:after,
.marqueeContent a:active:after {
    content: "|";
    color: #d96c89;
}

/*
.marquee, *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
    width:2000px;
}
.marquee{
   margin-right: 30px;
}
*/

/*
.marqueeContent li{
    display: inline-block;
    margin-right: 0;
    line-height: 60px;
    background-color: #eee;
}
*/

/*
ul.marqueeContent{
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  overflow: hidden;
}

.marqueeContent li {
    margin-right: 20px;
}
.marqueeContent li a{
    display: inline-block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 300;
    color: #242538;
    text-decoration: none;
}
.marqueeContent li a:hover, marqueeContent li a:active{
    color: #3b47ab;
}*/
/*--------------   跑馬燈設定 end   --------------*/


/*---------------------   Banner大輪播設定   ---------------------*/
#bigBanner .carousel-control-next {
    width: 7%;
}

#bigBanner .carousel-control-prev {
    width: 7%;
}

a.bigBannerBg {
    display: block;
    background-color: #333;
}

a.bigBannerBg img {
    opacity: 0.8;
}

.carousel-caption {
    bottom: 18%;
    padding-left: 5%;
    padding-right: 5%;
    text-shadow: 0px 0px 10px #242538;
}

.bigBannerName {
    font-size: 36px;
    font-weight: 400;
}

.bigBannerSlogan {
    padding: 0.5rem 0;
    font-size: 55px;
    font-weight: 500;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.carousel-caption p {
    padding-top: 1rem;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
}

.controlL02 {
    z-index: 999;
    padding: 10px 40px;
    font-size: 70px;
    color: #fff;
    background-color: rgba(36, 37, 56, 0.7);
    border-radius: 0 50% 50% 0;
}

.controlR02 {
    z-index: 999;
    padding: 10px 40px;
    font-size: 70px;
    color: #fff;
    background-color: rgba(36, 37, 56, 0.7);
    border-radius: 50% 0 0 50%;
}

/*---------------------   Banner大輪播設定 end   ---------------------*/



/*---------------------   熱門民宿推薦設定   ---------------------*/

#hotminsuWeb .carousel-control-next,
#hotminsuPad .carousel-control-next,
#hotminsuM .carousel-control-next {
    right: -10%;
}

#hotminsuWeb .carousel-control-prev,
#hotminsuPad .carousel-control-prev,
#hotminsuM .carousel-control-next {
    left: -10%;
}

.hotminsuBox {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #bdbdbd;
    border-top: 0;
    background-color: #fff;
}

a.hotminsuPic {
    display: block;
    width: 100%;
    text-decoration: none;
    border: 0;
}

a.hotminsuPic img {
    border-radius: 10px 10px 0 0;
}

.hotminsuTitle {
    margin-bottom: 10px;
    padding-left: 3px;
    font-size: 20px;
    line-height: 32px;
    color: #3b47ab;
    font-weight: 400;
    border-left: 5px solid #00bcd4;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotminsuBrief {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 24px;
    color: #424242;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hotminsuFeature {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 24px;
    color: #424242;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hotminsuSuit,
.hotminsuAddress,
.hotminsuTel {
    font-size: 18px;
    line-height: 32px;
    color: #424242;
    font-weight: 300;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotminsuFeature span,
.hotminsuSuit span,
.hotminsuAddress span,
.hotminsuTel span {
    color: #6a39b6;
    font-weight: 400;
}

.hotminsuFeature a,
.hotminsuSuit a,
.hotminsuAddress a,
.hotminsuTel a {
    text-decoration: none;
    color: #00bcd4;
    font-weight: 300;
}

.hotminsuFeature a:hover,
.hotminsuSuit a:hover,
.hotminsuAddress a:hover,
.hotminsuTel a:hover,
.hotminsuFeature a:active,
.hotminsuSuit a:active,
.hotminsuAddress a:active,
.hotminsuTel a:active {
    color: #cc526a;
    font-weight: 400;
}

.hotmsLink {
    width: 100%;
    display: flex;
}

a.hotmsBtnLinkL i,
a.hotmsBtnLinkR i {
    padding-right: 5px;
    font-size: 24px;
    color: #fff;
    vertical-align: text-bottom;
    vertical-align: middle;
}

a.hotmsBtnLinkL {
    width: 48%;
    margin: 15px 2% 10px 0;
    display: block;
    height: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #3b47ab 0%, #5762c2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #747cc4;
    border-right: 2px solid #384095;
    border-bottom: 2px solid #3f4082;
    border-left: 1px solid #6771c3;
    box-shadow: 0 0 0 1px #868ecc, 2px 2px 3px rgba(51, 51, 51, 0.7);
}

a.hotmsBtnLinkR {
    width: 48%;
    margin: 15px 0 10px 2%;
    display: block;
    height: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    line-height: 45px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #007d99 0%, #00bcd4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #48a6b9;
    border-right: 2px solid #008fb3;
    border-bottom: 2px solid #007c9b;
    border-left: 1px solid #29aec3;
    box-shadow: 0 0 0 1px #5db0c1, 2px 2px 3px rgba(51, 51, 51, 0.7);
}

a:hover.hotmsBtnLinkL,
a:hover.hotmsBtnLinkR,
a:active.hotmsBtnLinkL,
a:active.hotmsBtnLinkR {
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(to bottom, #cc526a 0%, #d96c89 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #db8597;
    border-right: 2px solid #9c3e52;
    border-bottom: 2px solid #9e465c;
    border-left: 1px solid #d77388;
    box-shadow: 0 0 0 1px #c55f7a, 2px 2px 3px rgba(51, 51, 51, 0.7);
}

/*---------------------   熱門民宿推薦設定 end   ---------------------*/


/*---------------------   特色民宿推薦設定   ---------------------*/

#featureWeb .carousel-control-next,
#featurePad .carousel-control-next,
#featureM .carousel-control-next {
    right: -10%;
}

#featureWeb .carousel-control-prev,
#featurePad .carousel-control-prev,
#featureM .carousel-control-prev {
    left: -10%;
}

.featureBox {
    justify-content: flex-start;
    margin-bottom: 15px;
}

.featurePic {
    width: 100%;
    position: relative;
}

.featurePic img {
    border-radius: 10px 10px 0 0;
}

.featureMask {
    width: 100%;
    height: 100%;
    z-index: 100;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    padding: 15px;
    background-color: rgba(36, 37, 56, 0.1);
    border-radius: 10px 10px 0 0;
}

.featureName {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
}

a .featurePic {
    display: block;
    text-decoration: none;
    font-weight: 300;
    text-shadow: 0px 0px 10px #333;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
}

a:hover .featurePic {
    font-weight: 500;
    text-shadow: 0px 0px 2px #000;
}

.featureInfo {
    width: 100%;
    padding: 5px 15px;
    background-color: #363e59;
}

.featureAddress,
.featureTel {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 100;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featureTel a {
    text-decoration: none;
    color: #fff;
}

.featureTel a:hover,
.featureTel a:active {
    color: #ffa726;
}

.featureLink {
    width: 100%;
    display: flex;
}

a.featureLinkL {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom-left-radius: 10px;
    background: linear-gradient(to bottom, #3b47ab 0%, #5762c2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

a.featureLinkR {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-bottom-right-radius: 10px;
    background: linear-gradient(to bottom, #007d99 0%, #00bcd4 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

a:hover.featureLinkL,
a:hover.featureLinkR {
    background: linear-gradient(to bottom, #ff6d00 0%, #ffa726 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.featureLinkL div:first-child,
.featureLinkR div:first-child {
    width: 35%;
    text-align: center;
}

.featureLinkL div:last-child,
.featureLinkR div:last-child {
    width: 63%;
    margin: 0 1%;
    font-size: 18px;
    line-height: 24px;
}

.featureLink div i {
    font-size: 26px;
    line-height: 48px;
}

/*---------------------   特色民宿推薦設定 end   ---------------------*/

/*---------------------   優質民宿、新進民宿推薦設定   ---------------------*/
#recommendWeb .carousel-control-next,
#recommendPad .carousel-control-next,
#recommendM .carousel-control-next {
    right: -10%;
}

#recommendWeb .carousel-control-prev,
#recommendPad .carousel-control-prev,
#recommendM .carousel-control-prev {
    left: -10%;
}

#newMsWeb .carousel-control-next,
#newMsPad .carousel-control-next,
#newMsM .carousel-control-next {
    right: -10%;
}

#newMsWeb .carousel-control-prev,
#newMsPad .carousel-control-prev,
#newMsM .carousel-control-prev {
    left: -10%;
}

.recommendBox {
    justify-content: flex-start;
    margin-bottom: 15px;
}

.recommendBox a {
    display: block;
    text-decoration: none;
}

.recommendPic {
    width: 100%;
    position: relative;
}

.recommendPic img {
    border-radius: 10px 10px 0 0;
}

.recommendHover {
    width: 90%;
    height: 90%;
    z-index: 100;
    position: absolute;
    display: none;
    top: 5%;
    left: 5%;
    padding: 10px;
    background-color: #00bcd4;
}

.hoverTitle {
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hoverBrief {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.recommendName {
    padding: 0 5px;
    height: 42px;
    font-size: 16px;
    line-height: 42px;
    color: #3b47ab;
    text-align: center;
    font-weight: 400;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0 0 10px 10px;
    background-color: #ebebeb;
}

.recommendBox a:hover .recommendHover {
    display: block;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    animation-duration: .7s;
    -webkit-animation-duration: .7s;
    animation-timing-function: ease;
    -webkit-animation-timing-function: ease;
}

.recommendBox a:hover .recommendName {
    color: #6a39b6;
    font-weight: 500;
    background-color: #fff2cc;
}

.subDomainLine {
    flex-wrap: wrap;
    overflow: hidden;
    margin-bottom: 20px;
}

.tagSubDomain {
    font-size: 16px;
    flex-shrink: 0;
    /* 阻止标签按钮收缩 */
    margin: 5px 3px;
}

.tagSubDomain a {
    display: block;
    padding: 2px 7px 3px;
    color: #3b47ab;
    font-weight: 300;
    border: 1px solid #5762c2;
    border-radius: 10px;
    background-color: #e5e5ff;
    text-decoration: none;
}

.tagSubDomain a:hover,
.tagSubDomain a:active {
    color: #cc526a;
    font-weight: 300;
    background-color: #ffe5e6;
    border-color: #d96c89;
}

/*---------------------   優質民宿、新進民宿推薦設定 end   ---------------------*/


/*---------------------   文章列表、文章內容設定    ---------------------*/
.storyTitle01 {
    text-align: left;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #242538;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.storyContent01 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 96px; /* 假設每行高度為24px，4行就是96px */
    margin-bottom: 10px;
}

.tagBtnLine {
    height: 40px;
    flex-wrap: nowrap;
    overflow: hidden;
}

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

.tagBtn {
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
    /* 阻止标签按钮收缩 */
    margin: 5px 3px;
}

.tagBtn a {
    display: block;
    padding: 2px 10px 3px;
    color: #007d99;
    border: 1px solid #00bcd4;
    border-radius: 10px;
    background-color: #ccf9ff;
    text-decoration: none;
}

.tagBtn a:hover,
.tagBtn a:active {
    color: #ff6d00;
    font-weight: 500;
    background-color: #fff2d9;
    border-color: #ffa726;
}

.tagBtn span {
    display: block;
    padding: 2px 10px 3px;
    color: #ff6d00;
    border: 1px solid #ffa726;
    border-radius: 10px;
    background-color: #fff2d9;
    margin: 3px;
}

.moreLink a {
    margin-top: 10px;
    padding: 3px;
    font-size: 20px;
    line-height: 28px;
    color: #5762c2;
    font-weight: 700;
    text-decoration: none;
}

.moreLink a:hover,
.moreLink a:active {
    color: #6a39b6;
}

.searchInfoBox01 {
    text-align: center;
    font-size: 20px;
    line-height: 36px;
    color: #363e59;
    font-weight: 300;
}

span.searchTag {
    margin-left: 7px;
    margin-right: 7px;
    padding: 2px 10px 5px;
    font-size: 20px;
    color: #ff6d00;
    font-weight: 500;
    border: 1px solid #ffa726;
    border-radius: 10px;
    background-color: #fff2d9;
}

span.searchKeyword {
    margin-left: 7px;
    margin-right: 7px;
    font-size: 20px;
    color: #3b47ab;
    font-weight: 500;
}

article {
    padding: 30px 0;
    font-size: 18px;
    line-height: 26px;
    color: #424242;
    font-weight: 300;
}

article a {
    text-decoration: none;
    color: #00bcd4;
}

article a:hover {
    color: #d96c89;
}

article img {
    max-width: 100%;
    height: auto;
}

.listItem {
    line-height: 32px;
}

.font20 {
    font-size: 20px;
    font-weight: 300;
}

.font24 {
    font-size: 24px;
    font-weight: 300;
}

.fontGreen01 {
    color: #009961;
}

.fontRed01 {
    color: #cc526a;
}

.fontIindigo01 {
    color: #007d99;
}

.fontBlue01 {
    color: #007d99;
}

.blockVcenter {
    display: flex;
    align-items: center;
}

.articleTitle {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 32px;
    border-left: 5px solid #00bcd4;
    color: #3b47ab;
    font-weight: 400;
}

.articleShareL {
    display: flex;
    justify-content: flex-start;
    text-align: right;
    margin-bottom: 20px;
}

.articleShareR {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    margin-top: 20px;
}

span.sharePrefix {
    margin: 6px;
    padding-top: 5px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #58658c;
}

.articleShareR a,
.articleShareL a {
    display: block;
    margin: 6px;
    text-decoration: none;
}

.articleShareR a.bookmark01,
.articleShareL a.bookmark01 {
    padding: 2px 10px 3px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 32px;
    color: #5762c2;
    font-weight: 400;
    background-color: #fafafa;
    border: 1px solid #5762c2;
}

.articleShareR a.bookmark01::before,
.articleShareL a.bookmark01::before {
    content: "\f005";
    font-family: "FontAwesome";
    font: var(--fa-font-regular);
    padding-right: 5px;
    font-size: 20px;
}

.articleShareR a.shareLine,
.articleShareL a.shareLine {
    font-size: 32px;
    line-height: 32px;
    color: #00c300;
}

.articleShareR a.shareFB,
.articleShareL a.shareFB {
    font-size: 36px;
    line-height: 32px;
    color: #1877f2;
}

.articleShareR a.shareIG,
.articleShareL a.shareIG {
    font-size: 36px;
    line-height: 32px;
    color: #df08a5;
}

.articleShareR a:hover,
.articleShareR a:active,
.articleShareL a:hover,
.articleShareL a:active {
    color: #00bcd4;
}

.articleShareR a:hover.bookmark01,
.articleShareL a:hover.bookmark01 {
    border: 1px solid #00bcd4;
    color: #fff;
    background-color: #00bcd4;
}

.articleShareR a:hover.bookmark01::before,
.articleShareR a:active.bookmark01::before,
.articleShareL a:hover.bookmark01::before,
.articleShareL a:active.bookmark01::before {
    font: var(--fa-font-solid);
    font-size: 20px;
}

.articlePrev {
    display: flex;
    justify-content: flex-start;
    margin: 15px 0;
    padding-left: 10px;
}

.articleNext {
    display: flex;
    justify-content: flex-end;
    margin: 15px 0;
    padding-right: 10px;
}

.articlePrev a {
    display: block;
    height: 42px;
    padding-left: 5px;
    padding-right: 10px;
    font-size: 18px;
    line-height: 42px;
    font-weight: 300;
    color: #3b47ab;
    text-decoration: none;
    background-color: #ebebeb;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articleNext a {
    display: block;
    height: 42px;
    padding-left: 10px;
    padding-right: 5px;
    font-size: 18px;
    line-height: 42px;
    font-weight: 300;
    color: #3b47ab;
    text-decoration: none;
    background-color: #ebebeb;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articlePrev::before {
    height: 42px;
    content: "\f104";
    font-family: "FontAwesome";
    font: var(--fa-font-solid);
    padding-left: 10px;
    font-size: 32px;
    line-height: 42px;
    color: #58658c;
    background-color: #ebebeb;
}

.articleNext::after {
    height: 42px;
    text-align: right;
    content: "\f105";
    font-family: "FontAwesome";
    font: var(--fa-font-solid);
    padding-right: 10px;
    font-size: 32px;
    line-height: 42px;
    color: #58658c;
    background-color: #ebebeb;
}

.articleNext:hover::after,
.articlePrev:hover::before,
.articleNext:active::after,
.articlePrev:active::before,
.articleNext a:hover,
.articlePrev a:hover,
.articleNext a:active,
.articlePrev a:active {
    color: #6a39b6;
    background-color: #fff2cc;
}

.advBox {
    margin: 7px 0;
    overflow: hidden;
}

.advBox a {
    display: block;
    text-decoration: none;
}

.advPic {
    height: 120px;
}

.advPic img {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advName {
    padding: 0 5px;
    height: 42px;
    font-size: 16px;
    line-height: 42px;
    color: #3b47ab;
    text-align: center;
    font-weight: 400;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 0 0 10px 10px;
    background-color: #ebebeb;
}

.advBox a:hover .advName {
    color: #6a39b6;
    font-weight: 500;
    background-color: #fff2cc;
}

/*---------------------   文章列表、文章內容設定 end    ---------------------*/

/*---------------------   專題報導    ---------------------*/
#reportWeb .carousel-control-next,
#reportPad .carousel-control-next,
#reportM .carousel-control-next {
    right: -10%;
}

#reportWeb .carousel-control-prev,
#reportPad .carousel-control-prev,
#reportM .carousel-control-prev {
    left: -10%;
}

/*---------------------   專題報導 end    ---------------------*/


/*----------------   專業報報    ----------------*/
#storyWeb .carousel-control-next,
#storyPad .carousel-control-next,
#storyM .carousel-control-next {
    right: -10%;
}

#storyWeb .carousel-control-prev,
#storyPad .carousel-control-prev,
#storyM .carousel-control-prev {
    left: -10%;
}

/*----------------   專業報報 end    ----------------*/

/*----------------   所有民宿查詢    ----------------*/
.modal {
    --bs-modal-width: 650px;
}

.modal-header {
    padding: 5px 0;
    display: flex;
    justify-content: center;
    color: #fff;
    background-color: #363e59;
}

.modal-title {
    width: 90%;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    /*    background-color: #ccc;*/
}

.modal-body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.modalPic {
    background-color: #ccc;
}

.modalPic img {
    max-width: 100%;
    height: auto;
}

.modalInfo {
    padding-left: 20px;
}

.modalBnBname {
    font-size: 20px;
    line-height: 32px;
    color: #6a39b6;
    font-weight: 400;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modalBnBtel {
    font-size: 18px;
    line-height: 32px;
    color: #424242;
    font-weight: 300;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modalBnBaddress {
    font-size: 18px;
    line-height: 32px;
    color: #424242;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.modalBnBwebsite {
    font-size: 18px;
    line-height: 32px;
    color: #424242;
    font-weight: 300;
}

.modalBnBwebsite a {
    text-decoration: underline;
    color: #007d99;
}

.modalBnBwebsite a:hover {
    text-decoration: none;
    color: #d96c89;
}

.modalBrief {
    margin-top: 20px;
    font-size: 18px;
    line-height: 28px;
    color: #424242;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.modal-footer {
    justify-content: center;
    padding-top: 0;
    border-top: none;
}

.closeBtn {
    padding: 0 20px 2px;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #3b47ab 0%, #5762c2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #747cc4;
    border-right: 2px solid #384095;
    border-bottom: 2px solid #3f4082;
    border-left: 1px solid #6771c3;
    box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.7);
}

.closeBtn:hover,
.closeBtn:active,
.closeBtn:focus {
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #cc526a 0%, #d96c89 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-top: 1px solid #db8597;
    border-right: 2px solid #9c3e52;
    border-bottom: 2px solid #9e465c;
    border-left: 1px solid #d77388;
    box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.7);
}

a.xClose01 {
    width: 10%;
    text-align: center;
    display: block;
    text-decoration: none;
    color: #fff;
    /*    background-color: #000;*/
}

a.xClose01 i {
    font-size: 36px;
}

#otherMsWeb .carousel-control-next,
#otherMsPad .carousel-control-next,
#otherMsM .carousel-control-next {
    right: -10%;
}

#otherMsWeb .carousel-control-prev,
#otherMsPad .carousel-control-prev,
#otherMsM .carousel-control-prev {
    left: -10%;
}

.otherMsBox {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.otherMsBox a {
    display: block;
    padding: 15px 12px;
    text-decoration: none;
    border: 1px solid #9374c2;
    border-radius: 10px;
    background-color: #fafafa;
}

.otherMsBox a:hover,
.otherMsBox a:active {
    border: 1px solid #00bcd4;
    border-radius: 10px;
    background-color: #fff2cc;
}

.otherMsBox span {
    display: block;
    padding: 15px 12px;
    text-decoration: none;
    border: 1px solid #757575;
    border-radius: 10px;
    background-color: #fafafa;
}

.otherMsName {
    font-size: 18px;
    line-height: 32px;
    color: #6a39b6;
    font-weight: 500;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.otherMsTel {
    padding: 0 0 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #424242;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.otherMsAddress {
    padding: 0 0 5px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #424242;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.otherMsBrief {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: #424242;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.otherMsSubLine {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.tagOtherSub {
    flex-shrink: 0;
    /* 阻止标签按钮收缩 */
    margin-top: 0;
    margin-bottom: 3px;
}

.tagOtherSub:first-child {
    margin-right: 3px;
}

.tagOtherSub:last-child {
    margin-left: 3px;
}

.tagOtherSub a {
    font-size: 16px;
    padding-top: 2px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 7px;
    color: #6a39b6;
    font-weight: 300;
    border: 1px solid #944dff;
    border-radius: 10px;
    background-color: #f0e5ff;
    text-decoration: none;
}

.tagOtherSub a:hover,
.tagOtherSub a:active {
    color: #9d4b8e;
    font-weight: 300;
    background-color: #ffe5ee;
    border-color: #c05cae;
}

/*----------------   所有民宿查詢 end    ----------------*/


/*---------------------    頁籤設定    ---------------------*/
.tabBox {
    transition: all 0.4s ease;
}

.tabBox input[type="radio"] {
    display: none;
}

.tabPosition {
    display: flex;
    /*	float: left;*/
    width: 100%;
}

.tabButton {
    position: relative;
    /*	float: left;*/
    margin: 0 5px 12px;
    height: 40px;
    padding: 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 42px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to bottom, #3b47ab 0%, #5762c2 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.tabButton:hover {
    cursor: pointer;
    background: linear-gradient(to bottom, #cf4f51 0%, #fd6969 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

[type=radio]:checked+.tabButton {
    cursor: default;
    background: linear-gradient(to bottom, #cf4f51 0%, #fd6969 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.buttonPointDown {
    position: absolute;
    z-index: 30;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background-color: transparent;
    visibility: hidden;
}

.buttonPointDown:after {
    position: absolute;
    content: " ";
    top: 100%;
    left: 50%;
    margin-left: -12px;
    border-width: 12px;
    border-style: solid;
    border-color: #fd6969 transparent transparent transparent;
}

[type=radio]:checked+.tabButton .buttonPointDown {
    visibility: visible;
}

/*---------------------    頁籤設定 end    ---------------------*/

/*---------------------   訊息中心設定    ---------------------*/

a.newsLine {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px 10px 6px;
    text-decoration: none;
    border-bottom: 1px dashed #a3becc;
}

a.newsLine:nth-child(odd) {
    background-color: #fafafa;
}

a.newsLine:nth-child(even) {
    background-color: #fff;
}

a.newsLine:hover,
a.newsLine:active {
    background-color: #fff2cc;
    border-bottom: 1px dashed #ffa726;
}

.date01 {
    /*    width: 14%;*/
    font-size: 18px;
    color: #3b47ab;
    font-family: Arial, Helvetica;
}

.date01 i {
    padding-right: 3px;
    font-size: 20px;
    color: #9374c2;
}

.newsClass {
    /*    width: 10%;*/
    padding: 3px 0 2px;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    background-color: #6a39b6;
}

.newsTitle {
    /*    width: 76%;*/
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
    color: #363e59;
}

/*
.qLinkPic{
    padding: 5px;
    border: 1px solid #5762c2;
    background-color: #fff;
}
.qLinkText{
    padding: 10px 5px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    color: #5762c2;
    background-color: #fafafa;
}
a.qLink{
    display: block;
    text-decoration: none;
}
a.qLink:hover .qLinkPic, a.qLink:active .qLinkPic{
    border: 1px solid #00bcd4;
}
a.qLink:hover .qLinkText, a.qLink:active .qLinkText{
    color: #00bcd4;
}
*/

/*---------------------   訊息中心設定 end    ---------------------*/


/*--------------------------   頁尾設定   --------------------------*/
footer {
    padding: 30px 10%;
    border-top: 5px solid #ffa726;
    color: #fff;
    background-color: #363e59;
}

footer a {
    color: #ebebeb;
    text-decoration: none;
    font-weight: 300;
}

footer a:hover,
footer a:active {
    color: #ffa726;
    font-weight: 500;
}

footer ul {
    list-style: none;
}

footer li {
    font-size: 16px;
    line-height: 24px;
    padding: 5px 0;
    font-weight: 300;
}

footer span {
    font-size: 20px;
    line-height: 32px;
    color: #fff;
    font-weight: 500;
}

footer p {
    padding: 5px 0;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: 300;
}

/*--------------------------   頁尾設定 end   --------------------------*/

/*=============================================== 桌機版型區end =================================================*/


/*================================================ 平板版型區 ==================================================*/

@media screen and (min-width: 992px) and (max-width: 1200px) {

    /*----------- 美化的Select下拉框設定 -----------*/
    .nice-select:after {
        width: 18px;
    }

    .selectIndigo {
        height: 45px;
        font-size: 18px;
        line-height: 43px;
    }

    .selectPurple {
        height: 45px;
        font-size: 18px;
        line-height: 43px;
    }

    .selectOne {
        height: 45px;
        font-size: 18px;
        line-height: 43px;
    }

    /*----------- 美化的Select下拉框設定 end -----------*/

    /*-----------   標題表單寬度設定    -----------*/
    .inputSearch {
        width: 100%;
        height: 45px;
        padding-left: 15px;
        font-size: 18px;
        line-height: 43px;
    }

    .buttonSearch {
        width: 100%;
        height: 45px;
        font-size: 18px;
        line-height: 39px;
    }

    .textArea01 {
        padding: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .titleOne {
        margin-bottom: 20px;
        font-size: 42px;
        line-height: 40px;
    }

    .titleOne span {
        padding: 0 3px;
        font-size: 24px;
    }

    /*-----------   標題表單寬度設定 end    -----------*/

    /*----------- 導覽列設定 -----------*/
    #logoWeb01 {
        width: 10%;
        padding-left: 12px;
    }

    #navLine01 {
        width: 90%;
    }

    #searchBar01 {
        width: 85%;
        height: 70px;
        padding-right: 12px;
        border-bottom-left-radius: 70px;
    }

    #navItem01 {
        padding-right: 12px;
        width: 100%;
        height: 80px;
    }

    .fixNav {
        margin-bottom: 170px;
    }

    #logoWeb02 {
        width: 10%;
        padding-left: 12px;
    }

    #navLine02 {
        width: 90%;
    }

    #searchBar02 {
        width: 85%;
        height: 70px;
        padding-right: 12px;
        border-bottom-left-radius: 70px;
    }

    #navItem02 {
        padding-right: 12px;
        width: 100%;
        height: 80px;
    }

    .searchPart01 {
        width: 60%;
    }

    .searchPart02 {
        width: 30%;
    }

    a.navBtn01 i {
        padding-right: 2px;
        font-size: 18px;
    }

    a.navBtn01 {
        height: 45px;
        font-size: 18px;
        line-height: 43px;
    }

    /*----------- 導覽列設定 end -----------*/


    /*---------------------   跑馬燈設定   ---------------------*/
    .marqueeTitle {
        width: 18%;
        padding-left: 20px;
        font-size: 24px;
        line-height: 60px;
    }

    .marqueeEnd {
        width: 20px;
        height: 60px;
    }

    .marqueeTitle i {
        font-size: 30px;
        padding-right: 5px;
    }

    .marqueeContent {
        width: 100%;
        height: 60px;
    }

    .marqueeContent a {
        font-size: 20px;
        line-height: 60px;
    }

    .marqueeContent a:after {
        content: "|";
        margin: 0 15px;
    }

    /*---------------------   跑馬燈設定 end   ---------------------*/


    /*------------------   卡片輪播設定    ------------------*/
    .controlL01 {
        display: none;
    }

    .controlR01 {
        display: none;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 7px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .carousel-indicators {
        bottom: -40px;
        /*底下選擇的button*/
    }

    /*------------------   卡片輪播設定 end    ------------------*/

    /*----------- Banner大輪播設定 -----------*/
    #bigBanner .carousel-control-next {
        right: 0;
        width: 12%;
    }

    #bigBanner .carousel-control-prev {
        left: 0;
        width: 12%;
    }

    a.bigBannerBg {
        display: block;
        background-color: #333;
    }

    a.bigBannerBg img {
        opacity: 0.8;
    }

    .carousel-caption {
        left: 15%;
        width: 70%;
        bottom: 20%;
        padding-left: 0;
        padding-right: 0;
        text-shadow: 0px 0px 7px #242538;
    }

    .bigBannerName {
        font-size: 32px;
        font-weight: 400;
    }

    .bigBannerSlogan {
        padding: 5px 0;
        font-size: 50px;
        font-weight: 500;
        border-top: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }

    .carousel-caption p {
        padding-top: 5px;
        font-size: 24px;
        line-height: 32px;
        font-weight: 300;
    }

    .controlL02 {
        z-index: 999;
        padding: 10px 38px;
        font-size: 60px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 0 50% 50% 0;
    }

    .controlR02 {
        z-index: 999;
        padding: 10px 38px;
        font-size: 70px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 50% 0 0 50%;
    }

    /*----------- Banner大輪播設定 end -----------*/

    /*---------------------   特色民宿推薦設定   ---------------------*/
    .featureName {
        font-size: 20px;
        line-height: 26px;
    }

    a.featureLinkL {
        width: 50%;
        padding: 0 5px;
        height: 60px;
    }

    a.featureLinkR {
        width: 50%;
        padding: 0 5px;
        height: 60px;
    }

    .featureLinkL div:first-child,
    .featureLinkR div:first-child {
        width: 31%;
        margin-right: 1%;
        text-align: center;
    }

    .featureLinkL div:last-child,
    .featureLinkR div:last-child {
        width: 68%;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        font-size: 16px;
        line-height: 24px;
    }

    .featureLink div i {
        font-size: 22px;
        line-height: 30px;
    }

    /*---------------------   特色民宿推薦設定 end   ---------------------*/

}


@media screen and (min-width: 768px) and (max-width: 991px) {

    /*--------  美化的Select下拉框設定  --------*/
    .nice-select {
        padding-left: 10px;
        padding-right: 10px;
    }

    .selectIndigo.nice-select:after,
    .selectPurple.nice-select:after {
        width: 18px;
        margin-top: -25px;
        right: 8px;
    }

    .selectOne.nice-select:after {
        width: 30px;
        margin-top: -24px;
        right: 10px;
    }

    .nice-select.wide .list {
        left: auto !important;
        right: auto !important;
    }

    .selectIndigo.nice-select.wide .list {
        width: 200%;
        top: 100%;
        left: 0 !important;
    }

    .selectPurple.nice-select.wide .list {
        width: 200%;
        top: 100%;
        right: 0 !important;
    }

    .nice-select .option {
        min-height: 45px;
        padding-left: 10x;
        padding-right: 10px;
        line-height: 45px;
        border-bottom: 1px dashed #bdbdbd;
    }

    .nice-select .option:last-child {
        border-bottom: none;
    }

    .selectIndigo {
        height: 70px;
        font-size: 18px;
        line-height: 70px;
        border-radius: 0;
    }

    .selectPurple {
        height: 70px;
        font-size: 18px;
        line-height: 70px;
        border-radius: 0;
    }

    .selectOne {
        height: 47px;
        font-size: 18px;
        line-height: 45px;
    }

    .selectOne.nice-select.wide .list {
        width: 100%;
        top: 100%;
        left: 0 !important;
        right: 0 !important;
    }

    /*--------  美化的Select下拉框設定 end  --------*/


    /*-----------   標題表單寬度設定   -----------*/
    .inputSearch {
        width: 100%;
        height: 45px;
        padding-left: 15px;
        font-size: 18px;
        line-height: 43px;
        border: 1px solid #757bc2;
        border-radius: 10px;
    }

    .inputSearch:hover {
        border: 1px solid #00bcd4;
        border-right: 1px solid #00bcd4;
        background-color: #fff;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .inputSearch:focus {
        border-left: 1px solid #00bcd4;
    }

    .buttonSearch {
        width: 100%;
        height: 45px;
        font-size: 18px;
        line-height: 39px;
        border-radius: 10px;
        border-top: solid 2px #9299d0;
        border-right: solid 1px #4259a8;
        border-bottom: solid 2px #354b86;
        border-left: solid 1px #3d4ea3;
        background: linear-gradient(to bottom, #3b47ab 0%, #577ac1 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

    .buttonSearch:hover,
    .buttonSearch:active {
        background: linear-gradient(to bottom, #ffa726 0%, #ff6d00 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        border-top: solid 2px #ffbc6e;
        border-right: solid 1px #c75600;
        border-bottom: solid 2px #dd730e;
        border-left: solid 1px #ffb344;
        border-radius: 10px;
    }

    .textArea01 {
        padding: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .titleOne {
        margin-bottom: 20px;
        font-size: 42px;
        line-height: 36px;
    }

    .titleOne span {
        padding: 0 3px;
        font-size: 24px;
    }

    /*-----------   標題表單寬度設定 end   -----------*/

    /*-----------   導覽列設定   -----------*/
    .offcanvas,
    .offcanvas-md,
    .offcanvas-sm {
        --bs-offcanvas-width: 100% !important;
    }

    .offcanvas-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 5px 0;
        color: #fff;
        background-color: #363e59;
    }

    .offcanvas-title {
        width: 90%;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
    }

    a.xClose02 {
        width: 10%;
        text-align: center;
        display: block;
        text-decoration: none;
        color: #fff;
    }

    a.xClose02 i {
        font-size: 36px;
    }

    .offcanvas-body {
        padding-top: 0;
        padding-bottom: 0;
    }

    .offcanvas-body ul {
        width: 100%;
        list-style-type: none;
    }

    .offcanvas-body li {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        height: 50px;
        font-size: 20px;
        font-weight: 300;
        line-height: 50px;
        color: #363e59;
        border-bottom: 1px dashed #78909c;
        background-color: #fff;
    }

    .offcanvas-body li:active {
        color: #cc526a;
        font-weight: 400;
    }

    .offcanvas-body li a:active {
        color: #cc526a;
        font-weight: 400;
    }

    .offcanvas-body li a i,
    .offcanvas-body li i {
        padding-right: 5px;
        font-size: 28px;
        color: #3b47ab;
    }

    .offcanvas-body li:active i {
        color: #cc526a;
    }

    .offcanvas-body li a {
        color: #363e59;
        font-size: 20px;
        font-weight: 300;
        line-height: 50px;
        text-decoration: none;
    }

    #topMenu {
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 70px;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #fafafa;
        box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
    }

    #menuBtn {
        width: 12%;
    }

    #menuBtn a {
        display: block;
        padding: 0 5px;
        text-align: center;
    }

    #menuBtn a i {
        font-size: 42px;
        line-height: 70px;
        color: #242538;
    }

    #menuBtn a:hover,
    #menuBtn a:active {
        color: #3b47ab;
    }

    #xsLogo {
        width: 12%;
    }

    #xsLogo a {
        display: block;
        padding-right: 5%;
        border: none;
        text-align: center;
    }

    #xsLogo a img {
        max-width: 100%;
        height: auto;
    }

    .selectPart01 {
        width: 32%;
    }

    .selectPart02 {
        width: 32%;
    }

    .searchBox {
        width: 12%;
    }

    .searchBox a {
        display: block;
        padding: 0 5px;
        text-align: center;
    }

    .searchBox a i {
        font-size: 42px;
        line-height: 70px;
        color: #3b47ab;
    }

    .searchBox a:hover,
    .searchBox a:active {
        color: #cc526a;
    }

    .searchPart01 {
        width: 100%;
        margin-bottom: 20px;
    }

    .searchPart02 {
        width: 100%;
    }

    /*-----------   導覽列設定 end   -----------*/


    /*---------------------   跑馬燈設定   ---------------------*/
    .marqueeBox {
        margin-top: 70px;
    }

    .marqueeTitle {
        width: 20%;
        padding-left: 20px;
        font-size: 20px;
        line-height: 60px;
    }

    .marqueeEnd {
        width: 20px;
        height: 60px;
    }

    .marqueeTitle i {
        font-size: 24px;
        padding-right: 5px;
    }

    .marqueeContent {
        width: 100%;
        height: 60px;
    }

    .marqueeContent a {
        font-size: 18px;
        line-height: 60px;
    }

    .marqueeContent a:after {
        content: "|";
        margin: 0 10px;
    }

    /*---------------------   跑馬燈設定 end   ---------------------*/


    /*---------------------   卡片輪播設定    ---------------------*/
    .controlL01 {
        /*    margin-right: 40px;*/
        font-size: 50px;
    }

    .controlR01 {
        /*    margin-left: 40px;*/
        font-size: 50px;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 7px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .carousel-indicators {
        bottom: -50px;
        /*底下選擇的button*/
    }

    .carousel-indicators button {
        background-color: #bdbdbd !important;
        width: 50%;
        border: none !important;
    }

    .carousel-indicators .active {
        background-color: #5762c2 !important;
    }

    /*---------------------   卡片輪播設定 end    ---------------------*/


    /*----------- Banner大輪播設定 -----------*/
    #bigBanner {
        /*        margin-top: 70px;*/
    }

    #bigBanner .carousel-control-next {
        right: 0;
        width: 9%;
    }

    #bigBanner .carousel-control-prev {
        left: 0;
        width: 9%;
    }

    a.bigBannerBg {
        display: block;
        background-color: #333;
    }

    a.bigBannerBg img {
        opacity: 0.8;
    }

    .carousel-caption {
        left: 10%;
        width: 80%;
        bottom: 15%;
        padding-left: 0;
        padding-right: 0;
        text-shadow: 0px 0px 7px #242538;
    }

    .bigBannerName {
        font-size: 28px;
        font-weight: 400;
    }

    .bigBannerSlogan {
        padding: 5px 0;
        font-size: 42px;
        font-weight: 500;
        border-top: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }

    .carousel-caption p {
        padding-top: 5px;
        font-size: 20px;
        line-height: 28px;
        font-weight: 300;
    }

    .controlL02 {
        z-index: 100;
        padding: 7px 25px;
        font-size: 32px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 0 50% 50% 0;
    }

    .controlR02 {
        z-index: 100;
        padding: 7px 25px;
        font-size: 30px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 50% 0 0 50%;
    }

    /*----------- Banner大輪播設定 end -----------*/
}

/*================================================ 平板版型區 end ================================================*/


/*================================================ 手機版型區 ==================================================*/

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

    /*----------- 美化的Select下拉框設定 -----------*/
    .selectIndigo.nice-select,
    .selectPurple.nice-select {
        padding-left: 5px;
        padding-right: 3px;
    }

    .selectOne.nice-select {
        padding-left: 10px;
        padding-right: 10px;
    }

    .selectIndigo.nice-select:after,
    .selectPurple.nice-select:after {
        font-size: 18px;
        width: 16px;
        margin-top: -20px;
        right: 1px;
    }

    .selectOne.nice-select:after {
        width: 30px;
        margin-top: -24px;
        right: 10px;
    }

    .nice-select.wide .list {
        left: auto !important;
        right: auto !important;
    }

    .selectIndigo.nice-select.wide .list {
        width: 200%;
        top: 100%;
        left: 0 !important;
    }

    .selectPurple.nice-select.wide .list {
        width: 200%;
        top: 100%;
        right: 0 !important;
    }

    .nice-select .option {
        min-height: 40px;
        padding-left: 5x;
        padding-right: 5px;
        line-height: 40px;
        border-bottom: 1px dashed #bdbdbd;
    }

    .nice-select .option:last-child {
        border-bottom: none;
    }

    .selectIndigo {
        height: 60px;
        font-size: 16px;
        line-height: 60px;
        border-radius: 0;
    }

    .selectPurple {
        height: 60px;
        font-size: 16px;
        line-height: 60px;
        border-radius: 0;
    }

    .selectOne {
        height: 45px;
        font-size: 18px;
        line-height: 43px;
    }

    .selectOne.nice-select.wide .list {
        width: 100%;
        top: 100%;
        left: 0 !important;
        right: 0 !important;
    }

    /*----------- 美化的Select下拉框設定 end -----------*/


    /*-----------  標題表單寬度設定 -----------*/
    .inputSearch {
        width: 100%;
        height: 45px;
        padding-left: 15px;
        font-size: 18px;
        line-height: 43px;
        border: 1px solid #757bc2;
        border-radius: 10px;
    }

    .inputSearch:hover {
        border: 1px solid #00bcd4;
        border-right: 1px solid #00bcd4;
        background-color: #fff;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    .inputSearch:focus {
        border-left: 1px solid #00bcd4;
    }

    .buttonSearch {
        width: 100%;
        height: 45px;
        font-size: 18px;
        line-height: 39px;
        border-radius: 10px;
        border-top: solid 2px #9299d0;
        border-right: solid 1px #4259a8;
        border-bottom: solid 2px #354b86;
        border-left: solid 1px #3d4ea3;
        background: linear-gradient(to bottom, #3b47ab 0%, #577ac1 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

    .buttonSearch:hover,
    .buttonSearch:active {
        background: linear-gradient(to top, #ffa726 0%, #ff6d00 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        border-top: solid 2px #ffaf71;
        border-right: solid 2px #e48216;
        border-bottom: solid 2px #dd730e;
        border-left: solid 2px #f28413;
        border-radius: 10px;
    }

    .textArea01 {
        padding: 10px;
        font-size: 18px;
        line-height: 24px;
    }

    .titleOne {
        margin-bottom: 20px;
        font-size: 38px;
        line-height: 36px;
    }

    .titleOne span {
        padding: 0 3px;
        font-size: 24px;
    }

    /*-----------  標題表單寬度設定 -----------*/


    /*----------- 導覽列設定  -----------*/
    .offcanvas,
    .offcanvas-md,
    .offcanvas-sm {
        --bs-offcanvas-width: 100% !important;
    }

    .offcanvas-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 7px 5px 10px;
        color: #fff;
        background-color: #363e59;
    }

    .offcanvas-title {
        width: 90%;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
    }

    a.xClose02 {
        width: 10%;
        text-align: center;
        display: block;
        text-decoration: none;
        color: #fff;
    }

    a.xClose02 i {
        font-size: 36px;
    }

    .offcanvas-body {
        /*
        padding-top: 0;
        padding-bottom: 0;
*/
    }

    .offcanvas-body ul {
        width: 100%;
        list-style-type: none;
    }

    .offcanvas-body li {
        display: block;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        height: 50px;
        font-size: 20px;
        font-weight: 300;
        line-height: 50px;
        color: #363e59;
        border-bottom: 1px dashed #78909c;
        background-color: #fff;
    }

    .offcanvas-body li:active {
        color: #cc526a;
        font-weight: 400;
    }

    .offcanvas-body li a:active {
        color: #cc526a;
        font-weight: 400;
    }

    .offcanvas-body li a i,
    .offcanvas-body li i {
        padding-right: 5px;
        font-size: 28px;
        color: #3b47ab;
    }

    .offcanvas-body li:active i {
        color: #cc526a;
    }

    .offcanvas-body li a {
        color: #363e59;
        font-size: 20px;
        font-weight: 300;
        line-height: 50px;
        text-decoration: none;
    }

    #topMenu {
        position: fixed;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 60px;
        top: 0;
        left: 0;
        z-index: 999;
        background-color: #fafafa;
        box-shadow: 0px 2px 3px rgba(51, 51, 51, 0.7);
    }

    #menuBtn {
        width: 12%;
    }

    #menuBtn a {
        display: block;
        padding: 0 5px;
        text-align: center;
    }

    #menuBtn a i {
        font-size: 36px;
        line-height: 60px;
        color: #242538;
    }

    #menuBtn a:hover,
    #menuBtn a:active {
        color: #3b47ab;
    }

    #xsLogo {
        width: 18%;
    }

    #xsLogo a {
        display: block;
        padding-right: 5px;
        border: none;
    }

    #xsLogo a img {
        max-width: 100%;
        height: auto;
    }

    .selectPart01 {
        width: 28%;
    }

    .selectPart02 {
        width: 28%;
    }

    .searchBox {
        width: 14%;
    }

    .searchBox a {
        display: block;
        padding: 0 5px;
        text-align: center;
    }

    .searchBox a i {
        font-size: 36px;
        line-height: 60px;
        color: #3b47ab;
    }

    .searchBox a:hover,
    .searchBox a:active {
        color: #cc526a;
    }

    .searchPart01 {
        width: 100%;
        margin-bottom: 20px;
    }

    .searchPart02 {
        width: 100%;
    }

    .searchPart01:before {
        margin-top: -24px;
        left: 10px;
        top: 50%;
        font-size: 32px;
    }

    /*----------- 導覽列設定 end -----------*/

    /*---------------------   跑馬燈設定   ---------------------*/
    .marqueeBox {
        margin-top: 60px;
    }

    .marqueeTitle {
        width: 35%;
        padding-left: 12px;
        font-size: 18px;
        line-height: 60px;
    }

    .marqueeEnd {
        width: 12px;
        height: 60px;
    }

    .marqueeTitle i {
        font-size: 20px;
        padding-right: 5px;
    }

    .marqueeContent {
        width: 100%;
        height: 60px;
    }

    .marqueeContent a {
        font-size: 18px;
        line-height: 60px;
    }

    .marqueeContent a:after {
        content: "|";
        margin: 0 10px;
    }

    /*---------------------   跑馬燈設定 end   ---------------------*/


    /*---------------------   卡片輪播設定    ---------------------*/
    .controlL01 {
        font-size: 50px;
        color: #78909c;
    }

    .controlR01 {
        font-size: 50px;
        color: #78909c;
    }

    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 7px;
        margin-left: 5px;
        margin-right: 5px;
    }

    .carousel-indicators {
        bottom: -40px;
        /*底下選擇的button*/
    }

    .carousel-indicators button {
        background-color: #bdbdbd !important;
        width: 50%;
        border: none !important;
    }

    .carousel-indicators .active {
        background-color: #5762c2 !important;
    }

    /*---------------------   卡片輪播設定 end    ---------------------*/


    /*--------------------- Banner大輪播設定 ---------------------*/
    #bigBanner {
        /*            margin-top: 60px;*/
    }

    #bigBanner .carousel-control-next {
        width: 3%;
    }

    #bigBanner .carousel-control-prev {
        width: 3%;
    }

    a.bigBannerBg {
        display: block;
        background-color: #333;
    }

    a.bigBannerBg img {
        opacity: 0.9;
    }

    .carousel-caption {
        left: 5%;
        width: 90%;
        bottom: 0;
        padding-left: 0;
        padding-right: 0;
        text-shadow: 0px 0px 3px #242538;
    }

    .bigBannerName {
        font-size: 18px;
        font-weight: 400;
    }

    .bigBannerSlogan {
        padding: 2px 0;
        font-size: 22px;
        font-weight: 500;
        border-top: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    }

    .carousel-caption p {
        padding-top: 2px;
        font-size: 16px;
        line-height: 20px;
        font-weight: 300;
    }

    .controlL02 {
        z-index: 100;
        padding: 5px 20px;
        font-size: 24px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 0 50% 50% 0;
    }

    .controlR02 {
        z-index: 100;
        padding: 5px 20px;
        font-size: 24px;
        color: #fff;
        background-color: rgba(36, 37, 56, 0.7);
        border-radius: 50% 0 0 50%;
    }

    /*----------- Banner大輪播設定 end -----------*/

    /*---------------------   特色民宿推薦設定   ---------------------*/
    a.featureLinkL {
        width: 50%;
        padding: 0 5px;
        height: 60px;
    }

    a.featureLinkR {
        width: 50%;
        padding: 0 5px;
        height: 60px;
    }

    .featureLinkL div:first-child,
    .featureLinkR div:first-child {
        width: 32%;
        text-align: center;
    }

    .featureLinkL div:last-child,
    .featureLinkR div:last-child {
        width: 66%;
        margin: 0 1%;
        font-size: 16px;
        line-height: 24px;
    }

    .featureLink div i {
        font-size: 22px;
        line-height: 32px;
    }

    /*---------------------   特色民宿推薦設定 end   ---------------------*/


    /*----------------   所有民宿查詢    ----------------*/
    .modal {
        --bs-modal-width: 360px;
    }

    .modal-header {
        padding: 5px 0;
    }

    .modal-title {
        width: 90%;
    }

    .modalInfo {
        padding-left: 0;
    }

    .modalBnBname {
        font-size: 18px;
        line-height: 28px;
    }

    .modalBnBtel {
        font-size: 16px;
        line-height: 28px;
    }

    .modalBnBaddress {
        font-size: 16px;
        line-height: 28px;
    }

    .modalBnBwebsite {
        font-size: 16px;
        line-height: 28px;
    }

    .modalBrief {
        margin-top: 10px;
        font-size: 16px;
        line-height: 24px;
    }

    .closeBtn {
        padding: 0 20px 2px;
        font-size: 18px;
        line-height: 40px;
    }

    a.xClose01 {
        width: 10%;
    }

    a.xClose01 i {
        font-size: 36px;
    }

    .otherMsBox a {
        padding: 15px 12px;
    }

    .otherMsName {
        font-size: 18px;
        line-height: 32px;
    }

    .otherMsTel {
        padding: 0 0 5px;
        font-size: 16px;
        line-height: 24px;
    }

    .otherMsAddress {
        padding: 0 0 5px;
        font-size: 16px;
        line-height: 24px;
    }

    .otherMsBrief {
        font-size: 16px;
        line-height: 24px;
    }

    .tagOtherSub a {
        font-size: 15px;
        padding-top: 2px;
        padding-bottom: 3px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .tagOtherSub:first-child {
        margin-right: 2px;
    }

    .tagOtherSub:last-child {
        margin-left: 2px;
    }

    /*----------------   所有民宿查詢 end    ----------------*/

    /*---------------------    頁籤設定    ---------------------*/
    .tabBox {
        transition: all 0.4s ease;
    }

    .tabBox input[type="radio"] {
        display: none;
    }

    .tabPosition {
        display: flex;
        width: 100%;
    }

    .tabButton {
        position: relative;
        margin: 0 5px 7px 0;
        height: 40px;
        padding: 0 15px;
        font-size: 18px;
        line-height: 36px;
    }

    .tabContentItem {
        padding: 5px 0;
    }

    /*---------------------    頁籤設定 end    ---------------------*/

    /*---------------------   訊息中心設定    ---------------------*/

    a.newsLine {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 12px 10px;
        text-decoration: none;
        border-bottom: 1px dashed #a3becc;
    }

    a.newsLine:nth-child(odd) {
        background-color: #fafafa;
    }

    a.newsLine:nth-child(even) {
        background-color: #fff;
    }

    a.newsLine:hover,
    a.newsLine:active {
        background-color: #fff2cc;
        border-bottom: 1px dashed #ffa726;
    }

    .date01 {
        /*    width: 14%;*/
        font-size: 18px;
        color: #3b47ab;
        font-family: Arial, Helvetica;
    }

    .date01 i {
        padding-right: 3px;
        font-size: 20px;
        color: #9374c2;
    }

    .newsClass {
        /*    width: 10%;*/
        padding: 3px 0 2px;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        color: #fff;
        background-color: #6a39b6;
    }

    .newsTitle {
        /*    width: 76%;*/
        font-size: 18px;
        line-height: 26px;
        font-weight: 300;
        color: #363e59;
    }

    /*---------------------   訊息中心設定 end    ---------------------*/

}

/*================================================ 手機版型區 end  ==================================================*/
