body {
    margin: 0;
    animation: fade-in;
     animation-duration: 5s; 
    -webkit-animation: fade-in 1s;
    scroll-behavior: smooth;
    font-family: Microsoft JhengHei;
    padding-top: 100px;
}
a,a:hover{
    text-decoration: none;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.event {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 150px;
    bottom: 3px;
    left: calc(50% - 1.5px);
    content: " ";
    display: block;
    background: #3d8eb9;
}
.form-control:focus {
    color: #495057;
    background-color: transparent;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: none;
}
h1,h2,h3,h5 {
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: bold !important;
    color: #0d0d0d;
    font-size: 36px;
    letter-spacing: 3px;
}

h4 {
    font-weight: bold !important;
    color: #0d0d0d;
    font-size: 11px;
    letter-spacing: 3px;
}

h2{
    letter-spacing: 3px;
}

p {
    color: #0d0d0d;
    line-height: 1.5em;
    letter-spacing: 0.15em;
    font-size: 16px;
    letter-spacing: 3px;
}

a {
    letter-spacing: 3px;
}

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 10;
    top: 0px;
    box-shadow: 0px 0px 1px #ddd;
}

header .container,
footer .container {
    max-width: 80%;
}

header .logo {
    margin-top: 20px;
    display: block;
}

header .logo img {
    max-height: 60px;
}


header .menu ul {
    display: flex;
    padding: 0;
    list-style-type: none;
    margin-right: 1%;
    align-items: center;
    justify-content: flex-end;
}

header .menu ul li a.item {
    width: 110px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    transition: all 0.5s;
    padding: 0px;
    color: black;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 3px;
}

header .menu ul li a.item:hover {
    background-color: rgb(235, 232, 232);
}

header .menu ul li ol {
    opacity: 0;
    visibility: hidden;
    background-color: rgba(59, 59, 59, 0.9);
    list-style-type: none;
    padding: 0;
    position: absolute;
    min-width: 200px;
    font-size: 14px;
    transition: all 0.5s;
    top: 150px;
    z-index: 20;
}

header .menu ul li:hover ol {
    opacity: 1;
    visibility: visible;
    top: 100px;
}

header .menu ul li ol li a {
    display: block;
    color: black;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    transition: all 0.5s;
}

header .menu ul li ol li a:hover {
    background-color: rgb(235, 232, 232);
}

header .menu a.btn {
    color: #fff;
    background-color: black;
    border-color: black;
    width: 160px;
    border-radius: 17px;
    text-decoration: none;
    /*margin-bottom: 10%;*/
    position: relative;
    overflow: hidden;
}
header .menu a.icon{
    color: #000;
    min-width: 50px;
    display: inline-block;
    text-align: center;
}
.waves {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    border-radius: 3px;
    display: inline-block;
    outline: none;
    border: 0;
    overflow: hidden;
    position: relative;
    opacity: 0.9;
    text-align: center;
}

.waves:hover {
    opacity: 1;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.20), 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}

.waves-effect {
    border-radius: 100%;
    background-color: rgb(235, 230, 230);
    left: 20px;
    top: 20px;
    transform: scale(0);
    width: 10px;
    height: 10px;
    position: absolute;
}

.waves-effect-animation {
    animation: animation-definition 2s ease-out;
    /*兼容各大浏览器*/
    -moz-animation: animation-definition 2s ease-out;
    -webkit-animation: animation-definition 2s ease-out;
    -o-animation: animation-definition 2s ease-out;
}

@keyframes animation-definition {
    from {
        transform: scale(0.1);
        opacity: 1;
    }
    to {
        transform: scale(2);
        /*因为涟漪的大小为标签的最长边，为了保证点击标签边缘时，涟漪也能覆盖整个标签，scale值最小应为2*/
        opacity: 0;
    }
}

header .loginArea img {
    width: 36px;
    margin-left: 20px;
    margin-bottom: 35%;
}

.header_icon {
    margin-right: 5% !important;
}

.swiper-container {
    width: 100%;
    /*height: 87vh;*/
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img{
    width: 100%;
}
/*.home_ban1 {
    background-image: url("/assets/images/home_banner1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: 0 75%;
}

.home_ban2 {
    background-image: url("/assets/images/home_banner2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: 0 75%;
}

.home_ban3 {
    background-image: url("/assets/images/home_banner3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: 0 75%;
}

.home_ban4 {
    background-image: url("/assets/images/home_banner4.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: 0 75%;
}*/

.home_sec1 {
    width: 100%;
    height: auto;
    padding-top: 5%;
}
.home_sec1 h3{
    text-align: center;
    margin-bottom: 2%; 
}
.home_sec1 h4{
    text-align: center;
}
.home_sec1 hr{
    width: 1%;
    border-top: 1px solid rgba(0,0,0,.5);
    margin-bottom: 2%;
}
.home_sec1_title {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
}

.home_sec1_sub {
    width: 100%;
    text-align: center;
}

.home_sec1_dash {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
}

.home_sec2_dash {
    width: 100%;
    text-align: center;
}

.page_en{

    width: 100%;
    text-align: center;

}

.page_dash {
    width: 100%;
    text-align: center;

    margin-bottom: 3%;
}

.home_sec1 p {
    text-align: center;
    color: gray;
}

.home_sec1_img {
    width: 100%;
    background-size: 100%;
    background-position: center;
    height: 350px;
    position: relative;
    transition: all .5s;
}
.home_sec1_img:hover{
    background-size: 110%;
}
.home_sec1_bgfilter {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s;
    cursor: pointer;
}

.home_sec2_bgfilter {
    width: 100%;
    height: 20%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    transition: all 0.8s;
    cursor: pointer;
    bottom: 0;
    font-weight: 600;
}

.home_se1_imgroup h3 {
    width: 100%;
    text-align: center;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 36px;
    color: #fff;
    transition: all .5s; 
}

.home_se1_imgroup p {
    width: 100%;
    text-align: center;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 16px;
    color: #fff;
    transition: all .5s;
}
.home_sec1_bgfilter:hover h3,
.home_sec1_bgfilter:hover p{
    text-shadow: 5px 5px 5px #000;
}
/* .home_bgfilter1 {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 1;
} */



.home_se1_imgroup {
    margin-top: 5%;
}
.home_se1_imgroup p{
    color: #fff;
}
.home_se2_imgroup {
    margin-top: 2%;
}

.home_sec2 {
    width: 100%;
    height: auto;
    padding-top: 5%;
    background-color: rgb(243, 243, 243);
}

.home_sec2 h3,
.home_sec2 h4{
    text-align: center;
}

.home_sec2 hr{
    width: 1%;
    border-top: 1px solid rgba(0,0,0,.5);
    margin-bottom: 5%;
}

a.roomIndex {
    width: 100%;
    background-size: 100%;
    background-position: center;
    height: 50vh;
    position: relative;
    transition: all .5s;
    display: block;
}

/*a.home_sec2_img2,
.home_sec2_img2 {
    width: 100%;
    background-image: url("/assets/images/room2.jpg");
    background-size: 100%;
    background-position: center;
    height: 50vh;
    position: relative;
    transition: all .5s;
    display: block;
}*/

a.roomIndex:hover{
     background-size: 110%;
}

.home_sec2_btnarea {
    padding-top: 5%;
}

.home_btn {
    width: 220px;
    height: 50px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.8s;
    margin-left: auto;
    margin-right: auto;
}

.home_btn:hover {
    background-color: black;
    color: white;
}

.home_sec3 {
    width: 100%;
    height: auto;
}

.home_sec3_img {
    background-image: url("/assets/images/sec3.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 700px;
    background-position: 0 55%;
    position: relative;
}

.home_sec3_bgfilter {
    width: 100%;
    height: 50%;
    position: absolute;
    background-color: rgba(82, 81, 81, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s;
    cursor: pointer;
    bottom: 0;
}
.home_sec3_bgfilter:hover{
    background-color: rgba(0,0,0, 0.5);
}
.home_sec3_content {
    width: 100%;
    text-align: center;
    margin-top: 4%;
    font-size: 24px;
    margin-bottom: 12%;
    color: white;
}

a.home_btn2 {
    width: 300px;
    height: 50px;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.8s;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    color: #000 !important;
    border-color: white !important;
}

.sec3_phonecall {
    font-size: 26px;
    color: white !important;
    width: 100%;
    text-align: center;
    margin-top: 12%;
}

.sec3_phonecall a {
    color: white !important;
}

/* .home_btn2:hover{
    background-color: black;
    color:white;
} */

footer {
    width: 100%;
    height: auto;
    padding-top: 3%;
    padding-bottom: 3%;
    background-color: #353535;
}

footer a,
footer a:hover{
    color: #fff;
}
.footer_left {
    /*padding-left: 10%;*/
}

.footer_left img {
    width: 30%;
}

.footer_left_header {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    color: white;
    padding-left: 0px;
}

.footer_left_header a {
    width: 80px;
    font-size: 14px;
    margin-top: 5%;
    cursor: pointer;
}
.footer_left_header a:hover{
    color: #fff;
}

.footerInfo {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    color: white;
    /* padding-left: 2%; */
    margin-top: 13%;
}

.footer_left_logo {
    width: 24px !important;
    height: 24px !important;
    margin-right: 20px;
}

.footer_address{
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 1%;
}

.footer_company{
    font-size: 14px;
    letter-spacing: 3px;
    margin-top: 3%;
    color: white;
}

.footer_right {
    /*padding-right: 20%;*/
}

a.footer_btn{
    width: 210px;
    height: 45px;
    border-radius: 22.5px;
    background-color: #ffffff;
    margin-left: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5%;
    padding-left: 5%;
    cursor: pointer;
    color: #000;
    letter-spacing: 0px;
}
.otherResultTitle{
    border-bottom: 1px solid;
    margin-top: 30px;
    background-color: #666;
    color: #fff;
    padding: 5px;
}
.orderResultList a{
    border: 1px solid #666;
    margin-bottom: 5px;
    padding-bottom: 5px;
    padding: 5px;
    letter-spacing: 0px;
    width: 100%;
    display: block;
    font-size: 14px;
}
.orderResultList a:hover{
    background-color: #666;
    color: #fff !important;
}

.footer_right_down{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: white;
   

   
}
.footer_right_down div{
    width: 200px;
    letter-spacing: 3px;
    font-size: 14px;
    margin-top: 5%;
    display: flex;
    justify-content: flex-end;
}

.footer_right_down img{
    height: 24px;
    margin-right: 7%;
    margin-top: -5px;
}

.page_title {
    width: 100%;
    text-align: center;
    margin-bottom: 2%;
}

.roomintro_sec{
    padding-top: 3%;
    padding-bottom: 3%;
}

.intro_bgfilter {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s;
    cursor: pointer;
}

.intro_bgfilter:hover{
    background-color: rgba(0, 0, 0, 0.6);
}

.intro_content {
    width: 100%;
    text-align: center;
    font-size: 24px !important;
    color: white;
    letter-spacing: 3px;
}

.roomImg {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 20%;
    height: 500px;
    position: relative;
    margin-left: auto;
    margin-bottom: 5%;
    transition: all .5s;

}

/* .roomImg:hover{
    background-size: 110%;
} */

.intro_room2_img {
    width: 100%;
    background-size: cover;
    background-position: 0 20%;
    height: 500px;
    position: relative;
    margin-right: auto;
    margin-bottom: 5%;
    transition: all .5s;
    background-repeat: no-repeat;
}

/* .intro_room2_img:hover{
    background-size: 110%;
} */

.room_photo {
    width: 100% !important;
}

.header_fb {
    margin-left: 2% !important;
    margin-bottom: 1% !important;
}

.header_fb a {
    color: black;
}

.room_sec1{
    padding-top: 3%;
    padding-bottom: 3%;

}

.sec1_roomsub{
    display: flex;
    justify-content: flex-start;
    align-content: center
}
.sec1_roomsub div{
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    margin-top: 3%;
    color: gray;
}

.room_detail hr{
    margin-top: 5%;
    margin-bottom: 5%;
}

.room_detail p{
    font-size: 20px;
    margin-top: 5%;
}

.room_detail li{
    font-size: 16px;
    color: gray;
    letter-spacing: 3px;
    margin-top: 2%;
}

.booking_block{
    /* position: relative; */
}

.booking_card{
    /* position: absolute; */
    top: 0%;
    margin-left: auto;
    margin-right: auto;
    /*width: 75%;*/
    height: auto;
    border-style: solid;
    border-width: 1px;
    border-color: #cccccc;
    border-radius: 5px;
    padding: 5%;
}

.booking_card p{
    font-size: 26px;
    letter-spacing: 1px !important;
    font-weight: bold;
}

.booking_card hr{
    margin-top: 5%;
    margin-bottom: 5%;
}

.booking_card small{
    font-size: 14px;
    margin-left: 5px;
}

.booking_card label{
    width: 100%;
    font-size: 14px;
}
.booking_card input{
    width: 100%;
    padding: 2%;
    margin-bottom: 5%;
    /* border-radius: 3px; */
}

.booking_card select{
    margin-bottom: 5%;
}

.booking_btn{
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    color: white;
    background-color: black;
    border-radius: 5px;
    font-size: 20px;
    margin-top: 10%;

}






.room .swiper-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: black;
}

.room .swiper-slide {
    background-size: cover;
    background-position: center;
}

.room .gallery-top {
    max-height: 700px;
    width: 100%;
}

.room .gallery-thumbs {
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.room .gallery-thumbs .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
}

.room .gallery-thumbs .swiper-slide-active {
    opacity: 1;
}

/**********/
.mainBox{
    /*min-height: 300px;*/
    padding-top: 80px;
    padding-bottom: 80px;
}
.mainBox .w100{
    width: 100%
}
.mainBox h3{
    font-size: 24px;
}
.mainBox h4{
    font-size: 18px;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.mainBox ul{
    list-style-type: none;
    padding: 0px;
    font-size: 14px;
}
.mainBox ul.sidebar li{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.mainBox a {
    color: #666;
    transition: all .5s;
}
.mainBox a:hover{
    color: #000;
}
.mainBox.news span{
    margin-bottom: 30px;
    display: block;
}
.mainBox p{
    letter-spacing: 0px;
}
.mainBox.news img{
    margin-bottom: 15px;
}

.mainBox.about .text p{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8em;
  letter-spacing: normal;
  color: #000000;
}
.mainBox h5{
    font-size: 18px;
}
.mainBox.about h5{
    margin-top: 30px;
}
.mainBox.about ul{
    margin-top: 30px;
    list-style-type: disc;
    padding-left: 30px;
    font-size: 16px;
    color: #000;
}
.mainBox.about ul li{
    border-bottom: none;
}
.mainBox .title h3,
.mainBox .title p{
    text-align: center;
}
.mainBox .title hr{
    width: 1%;
    border-color: #000;
}
.container-fuild.room{
    width: 90%;
    margin: auto;
}
.mainBox.roomDetail ul{
    list-style-type: disc;
    padding-left: 25px;
}
.roomDetail ul.info{
    display: flex;
    list-style-type: none;
    padding: 0px;
}
.roomDetail ul.info li {
    font-size: 18px;
    margin-right: 15px;
    border-right: 1px solid #ddd;
    padding-right: 15px;
}
.roomDetail ul.info li:last-child{
    border-right:none;
}
.numArea{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.numArea span.flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.numArea span.people,
.numArea span.child{
    display: block;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 18px;
}
.numArea .btn{
    border: 1px solid;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    padding: 5px;
}
.numArea .btn:hover{
    background-color: #000;
    color: #fff;
}
.btnOrder{
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 15px;
    margin-top: 30px;
    font-size: 18px;
    letter-spacing: 2px;
}
.btnOrder:hover{
    background-color: #4D3B36;
}
.booking_card .remark{
    margin-top: 30px;
    display: block;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}
.booking_card .remark span{
    display: block;
}
.remark.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.totalArea .remark ul{
    list-style-type: none;
    padding: 0px;
    width: 100%;
    font-size: 16px;
}
.totalArea .remark ul li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.totalArea .remark ul li.totalAmount{
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    color: #D15C57;
}
.mainBox.order{
    padding-top: 5%;
    padding-bottom: 5%;
    /*padding: 5%;*/
}
#orderForm .form-group{
    display: flex;
    align-items: stretch;
}
#orderForm .form-group label{
    width: 120px;
    background-color: #353535;
    color: #fff;
    min-height: 38px;
    padding: 0px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#orderForm .form-group label.error{
    background-color: #E94E77;
}
#orderForm .form-group .form-control{
    border-radius: 0px;
}
.mainBox.order h3{
    margin-bottom: 30px;
    border-bottom: 1px solid;
    padding-bottom: 5px;
}
.mainBox.order ul.orderInfo{
    font-size: 16px;
    padding: 0px;
}
.mainBox.order ul.orderInfo li{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #8a8a8a;
    padding-bottom: 10px;
    margin-bottom: 10px;
    color: #000;
}
.mainBox.order ul.orderInfo li p{
    margin: 0px;
}
.mainBox.order ul.orderInfo li .orderDate{
    display: flex;
    flex-direction: column;
}
.mainBox.order ul.orderInfo li .orderDate div{
    margin-bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.mainBox.order ul.orderInfo li.flexColumn{
    display: flex;
    flex-direction: column;
}
.mainBox.order ul.orderInfo li.flexColumn p{
    margin-bottom: 5px;
}
.mainBox .btnGroup{
    width: 100%;
    display: flex;
}
.mainBox .btnGroup .btn{
    width: 100%;
    margin: 0px;
    border-radius: 0px;
}
.mainBox .btnGroup .btn:first-child{
    /*border-right:0px;*/
}
.mainBox .btnGroup .btn.active{
    background-color: #000;
}
.mainBox.order #orderForm .check{
    border-top: 1px solid;
    padding-top: 15px;
    margin-bottom: 15px;
}
.mainBox.order #orderForm .check .btn{
    background-color: #000;
    border-radius: 0px;
    height: 50px;
    /*color: #a21e1e;*/
    letter-spacing: 2px;
}
.mainBox h3.flex{
    display: flex;
    justify-content: space-between;
}
.mainBox h3.flex .btn{
    height: 28px;
    padding: 0px 15px;
    display: flex;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "微軟正黑體";
    font-size: 14px;
}
.mainBox h3.flex a.btn:hover{
    color: #fff;
}

.mainBox.orderResult{
    padding-top: 5%;
    padding-bottom: 5%;
}

.mainBox.orderResult img{
    margin-bottom: 15px;
}
.mainBox.orderResult ul.orderInfo{
    font-size: 16px;
    color: #000;
}
.mainBox.orderResult ul.orderInfo li{
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.mainBox.orderResult ul.orderInfo li.red{
    color: #FF005B;
}
.mainBox.orderResult ul.orderInfo li:last-child{
    border-bottom: none;
}
.mainBox.orderResult ul.orderInfo li span:first-child{
    display: block;
    min-width: 150px;
}
.mainBox.orderResult ul.orderInfo li span:last-child{
    display: block;
    min-width: calc(100% - 150px);
}
.mainBox.orderResult ul.orderInfo li ol{
    padding: 0px;
    width: 100%;
}
.mainBox.orderResult ul.orderInfo li ol li{
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: none;
}
.mainBox.orderResult .payInfo{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;

}
.mainBox.orderResult .payInfo:last-child{
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.mainBox.orderResult .payInfo p{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.orderResult .seachNoData p{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5%;
    padding-bottom: 5%;
}

#search{
    border: 2px solid;
    padding: 30px;
    border-radius: 15px;
    background-color: #fff;
    /*box-shadow: 0px 0px 20px #ddd;*/
    margin-top: 5%;
    margin-bottom: 5%;
}
#search .btn{

}

label.error{
    color: #ff8e8e;
}
footer p{
    color: #fff;
}
.phoneFooter{
    display: none;
}
@media (min-width: 1366px){
    .swiper-container{
        height: 87vh;
    }
}

@media (max-width: 1024px){
    header .container, footer .container{
        max-width: 100%;
    }
    header .menu ul li a.item{
        width: 90%;
    }
    header .menu a.btn{
        width: 140px;
    }
    .swiper-container{
        height: 30vh;
    }
    .home_sec1_img{
        background-size: cover;
        background-position: center;
    }
    .home_sec1_img:hover{
        background-size: cover;
    }
    .home_sec3_img{
        height: 350px;
    }
    .home_sec3_bgfilter{
        height: 100%;
    }
    .container-fuild.room{
        width: 100%;
    }
    .roomImg{
        margin-bottom: 0px;
    }
    .booking_card input{
        border: 1px solid #ddd;
    }
    .numArea .btn{
        background-color: #fff;
    }
}


@media (max-width: 768px) {
    header {
        height: 70px;
        /*overflow: hidden;*/
        top: 0;
        left: 0;
        background-color: rgb(255, 255, 255);
        z-index: 11;
    }
    header .logo{
        margin-top: 5px;
        display: inline-block;
    }
    body{
        padding-top: 70px;
    }
    .roomImg{
        height: 50vh;
    }
    
    header i.fas {
        position: fixed;
        right: 15px;
        top: 20px;
        color: #fff;
        font-size: 2em;
    }
    header .menu a.icon{
        margin-top: 15px;
    }
    header .menu {
        width: 100%;
        height: 100vh;
        position: fixed;
        background-color: #fff;
        left: 0;
        top: 70px;
        flex-direction: column;
        overflow: scroll;
        transition: all 0.5s;
        opacity: 0;
        justify-content: center;
        visibility: hidden;
    }
    header .menu.open {
        visibility: visible;
        opacity: 1;
        z-index: 20;
    }
    header .menu ul {
        flex-direction: column;
        z-index: 30;
        width: 100%;
    }
    header .menu ul li a.item {
        height: auto;
        padding: 10px;
        width: 100%;
        background-color: rgb(255, 255, 255);
        justify-content: flex-start;
        font-size: 16px;
        letter-spacing: 3px;
        margin-top: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menuBtn {
        width: 70px;
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        right: 0px;
        background-color: #000;
        color: #fff;
        z-index: 20;
    }
    .menuBtn i {
        color: black !important;
    }
    
    .loginArea.open a.btn {
        margin-top: 5px;
    }
    .phone_header_fb {
        width: 24px;
        margin-left: -5px;
    }
    .home_se1_imgroup h3{
        font-size: 24px;
    }

    .footer_right_down{
        flex-direction: column;

    }
    .footer_right_down div{
        justify-content: flex-start;
    }
    .phone-order-1{
        order: 1;
    }
    .phone-order-2{
        order: 2;
    }
}

@media (max-width: 576px){
    h1, h2, h3, h5{
        font-size: 24px;
    }
    footer{
        padding-bottom: 50px;
        position: relative;
    }
    p{
        line-height: 1.5em;
        font-size: 14px;
        letter-spacing: 0px;
    }
    .home_se1_imgroup h3{
        margin-bottom: 15px;
    }
    .footer_left_header{
        display: none;
    }
    .footer_left img.footLogo{
        display: none;
    }
    .footerInfo{
        flex-wrap: wrap;
        margin-top: 5px;
        justify-content: center;
    }
    .footerInfo p{
        margin-top: 15px;
    }
    .footer_btn{
        width: 80%;
        margin: auto;
        margin-top: 15px;
    }
    .footer_right_down {
        flex-direction: row;
    }
    .footer_right_down div{
        font-size: 12px;
        width: 50%;
        letter-spacing: 0px;
        justify-content: center;
    }
    .footer_company{
        display: none;
    }
    .phoneFooter{
        position: absolute;
        bottom: 0px;
        font-size: 12px;
        letter-spacing: 0px;
        width: 100%;
        left: 0px;
        background-color: #000;
        padding: 5px;
        text-align: center;
    }
    .phoneFooter span{
        width: 100%;
        display: block;
        color: #fff;
    }
    .phoneFooter span a{
        letter-spacing: 0px;
    }
    .mainBox.about .text p{
        line-height: 1.5em;
        font-size: 18px;
    }
    .roomImg{
        height: 50vh;
    }
    .roomDetail ul.info{
        flex-wrap: wrap;
    }
    .roomDetail ul.info li{
        width: calc(50% - 15px);
    }
    .roomDetail ul.info li .fa-money-bill-alt{
        display: none;
    }
    .roomDetail.mainBox{
        display: flex;
    }
    .room_detail{
        order: 2;
    }
    .booking_block{
        order: 1;
        margin-bottom: 15px;
    }
}





