body{
    color: #333;
    margin: 0px;
}
.msg-modal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: absolute;
    top: 0;
}
.msg-box{
    width: 80%;
    background: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
}
.msg-ok-btn{
    margin-top: 20px;
    width: 80%;
    height: 50px;
    border: solid 1px rgb(204, 73, 17);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
/* .msg-ok-btn:hover{
    background-color: rgba(0, 0, 0, 0.05);
} */
.white-btn-clicked{
    background-color: rgba(0, 0, 0, 0.05);
}
.flex-col{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
.bg-app-color{
    background-color: rgb(204, 73, 17);
}
.app-color{
    color: rgb(204, 73, 17);
}
h1,h2,h3,h4,h5,p{
    margin:0px;
}
.text-space{
    height: 24px;
    line-height: 24px;
}
.ml10{
    margin-left:10px;
}
.mt10{
    margin-top:10px;
}
.mt20{
    margin-top:20px;
}
.ltgray{
    color: #666;
}
.gray{
    color: gray;
}
.ltblack{
    color: #666;
}
.head-button{
    text-decoration: none;
    color:white;
    padding:10px;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.head-button:hover{
    opacity: 0.7;
}

.full-row-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}
.full-column-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header{
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    /* border-bottom: 1px solid #ddd; */
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: space-between;
}
.logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 10px;
}

.footer{
    display: flex;
    align-items: center;
    height: 60px;
    width: 100%;
    border-top: 1px solid #ddd;
    background-color: #222;
}
.footer-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
    width: 95%;
}
.content{
    min-height: 300px;
}

.mlabel12{
    font-size: 12px;
}
.mlabel16{
    font-size: 16px;
}
.mlabel24{
    font-size: 24px;
}
.mlabel36{
    font-size: 36px;
}
.mlabel48{
    font-size: 48px;
}

.icon-season {
    float: left;
    margin: -2px 10px 0 0;
    width: 32px;
    height: 32px;
    background: url(../image/line-details.png) no-repeat -40px 0;
    overflow: hidden;
}
.i-scenic {
    float: left;
    margin: 4px 10px 0 0;
    width: 20px;
    height: 20px;
    background: url(../image/line-details.png) no-repeat -25px -40px;
    overflow: hidden;
}

.i-traffic {
    float: left;
    margin: 4px 10px 0 0;
    width: 20px;
    height: 20px;
    background: url(../image/line-details.png) no-repeat 0 -120px;
    overflow: hidden;
    background-position: -50px -120px;
}

.i-food {
    float: left;
    margin: 4px 10px 0 0;
    width: 20px;
    height: 20px;
    background: url(../image/line-details.png) no-repeat 0 -120px;
    overflow: hidden;
    background-position: -25px -120px;
}

.i-hotel {
    float: left;
    margin: 4px 10px 0 0;
    width: 20px;
    height: 20px;
    background: url(../image/line-details.png) no-repeat 0 -120px;
    overflow: hidden;
    background-position: -100px -40px;
}
.i-place {
    float: left;
    margin: 5px 5px 0 0;
    width: 11px;
    height: 14px;
    background: url(../image/line-details.png) no-repeat -100px -145px;
    overflow: hidden;
}

.m-half-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
}
.tag-clicked{
    color:rgb(204, 73, 17);
    border: solid 1px rgb(204, 73, 17);
}
.button-clicked{
    opacity: 0.5;
}
.app-title-color{
    color:rgb(204, 73, 17);
}
.app-border-color{
    border:solid 1px rgb(204, 73, 17);
}
#goTop{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: white;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, .1);
    position: fixed;
    right: 20px;
    bottom: 80px;
    border-radius: 4px;
    cursor: pointer;
}
@media (max-width: 1500px) {
    .header{
        background-color: transparent;
    }
}

@media (max-width: 1024px) {
    .mlabel12{
        font-size: 11px;
    }
    .mlabel16{
        font-size: 14px;
    }
    .mlabel24{
        font-size: 20px;
    }
    .mlabel36{
        font-size: 30px;
    }
    .mlabel48{
        font-size: 40px;
    }
    .banner-title{
        margin-top:10%;
    }
    .banner-desc{
        margin-top:4%;
    }
}
@media (max-width: 767px) {
    .mlabel12{
        font-size: 10px;
    }
    .mlabel16{
        font-size: 12px;
    }
    .mlabel24{
        font-size: 16px;
    }
    .mlabel36{
        font-size: 24px;
    }
    .mlabel48{
        font-size: 36px;
    }
    .banner-title{
        margin-top:20px;
    }
    .banner-desc{
        margin-top:20px;
    }
    .m-half-row{
        width: 100%;
    }
}