/* 导航菜单和banner区域 */
.index-banner {
    position: relative;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

/* 导航菜单样式 */
.header-top {
    position: absolute;
    z-index: 99999;
    top: 0;
    width: 100%;

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 70px;
    line-height: 70px;
    /* background: #FFFFFF;
    opacity: 0.8;  */
    background: rgba(255, 255, 255, 0.8);

}


.navbar {
    position: relative;
    /* 确保伪元素能正确定位 */
    /* 其他样式 */
}


/* Logo样式 */
.nav-logo {
    /* display: flex;
    align-items: center; */
    /* margin-right: 1rem; */
    width: 223px;
    height: 29px;
}

.nav-logo a {
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/logo.png) no-repeat;
    background-size: contain;
}

.logo-img {
    height: 29px;
    width: auto;
}


/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    /* 默认隐藏汉堡菜单按钮 */
    border: none;
    cursor: pointer;
    /* position: absolute; */
    /* right: 1.5rem; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    margin-left: 12px;
    margin-right: 12px;
    width: 16px;
    height: 14px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    background: url(../images/menu-toggle.png) no-repeat;
    background-size: cover;
}

.menu-toggle a {
    width: 16px;
    height: 14px;
}

/* .menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
} */

/* 基本按钮样式 */
.toggle-btn {
    display: none;
    /* 初始隐藏 */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* 导航菜单样式 */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.navul {
    width: 100%;
    display: flex;
}

.arrowL {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    padding: 0 30px;
    display: block;
    font-size: 20px;
}

/* 激活状态 */
.nav-link.active {
    background-color: #FA8C20;
    color: #fff;
}

.nav-link:hover {
    background-color: #FA8C20;
    color: #fff;
}

/* 二级菜单样式 */
.submenu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 700px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 5px 15px;
    top: 100%;
    left: 0;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #EEEEEE;

}


.submenu-item {
    margin: 10px 0;
    line-height: 26px;
    overflow: hidden;
}

.submenu-area {
    text-align: right;
    width: 90px;
    display: inline-block;
    float: left;
}

.submenu-city {
    float: left;
    width: 86%;
}

.submenu-link {
    color: #666;
    text-decoration: none;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: normal;
    position: relative;


}

.submenu-link-hot {
    color: #FA8C20;
}

.submenu-link::after {
    display: inline-block;
    position: absolute;
    margin-left: 15px;
    content: "";
    height: 12px;
    border-right: 1px solid #C5C5C5;
    top: 8px;
}

.submenu-link:last-child::after {
    border: 0;
}

.submenu-link:hover {}

.submenu-link-hot:hover {
    color: #FA8C20;
}

/* ipad、手机端遮罩层 */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 34, 34, 0.5);
    z-index: 999;
}

/*currency语言选择器*/
.currency-current {
    position: relative;
    padding: 0px 5px 0px 10px;
    cursor: pointer;
    background: url(../images/arrow-down.png) no-repeat right center;
    box-sizing: border-box;
}

.currency-current * {
    box-sizing: border-box;
}

.currency-item {
    display: block;
    width: 80px;
    height: 20px;
    line-height: 20px;
    padding: 0 0 0 35px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.currency-item.usd {
    background-image: url(../images/usd.svg);
}

.currency-item.cad {
    background-image: url(../images/cad.svg);
}

.currency-item.aud {
    background-image: url(../images/aud.svg);
}

.currency-item.gbp {
    background-image: url(../images/gbp.svg);
}

.currency-item.eur {
    background-image: url(../images/eur.svg);
}

.currency-item.nzd {
    background-image: url(../images/nzd.svg);
}

.currency-item.sgd {
    background-image: url(../images/sgd.svg);
}

.currency-item.hkd {
    background-image: url(../images/hkd.svg);
}

.currency-item.chf {
    background-image: url(../images/chf.svg);
}

.currency-item.usd::before {
    content: 'USD';
}

.currency-item.cad::before {
    content: 'CAD';
}

.currency-item.aud::before {
    content: 'AUD';
}

.currency-item.gbp::before {
    content: 'GBP';
}

.currency-item.eur::before {
    content: 'EUR';
}

.currency-item.nzd::before {
    content: 'NZD';
}

.currency-item.sgd::before {
    content: 'SGD';
}

.currency-item.hkd::before {
    content: 'HKD';
}

.currency-item.chf::before {
    content: 'CHF';
}

.currency-list {
    display: none;
    position: absolute;
    top: 35px;
    left: 10px;
    padding: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #999;
    z-index: 99;
}

.currency-list ul {
    margin: 0;
}


.currency-list li {
    list-style: none;
    padding: 10px 5px;
}

.currency-list li:hover {
    background: #d4d4d4;
}

/* banner轮播图区域样式 */
.bxslider img {
    width: 100%;
}

.bx-wrapper .bx-viewport {
    border: none !important;
    box-shadow: none !important;
    left: 0 !important;
    background:transparent;
}

/*------search-box搜索框样式------*/
.search-box {
    position: absolute;
    width: 100%;
    bottom: 30px;
    z-index: 9999;
}

.searchtour {
    max-width: 912px;
    margin: 0px auto;
    position: relative;
    bottom: 0;
    color: #fff;
    text-align: center;
    line-height: normal;
    box-sizing: border-box;
}

.searchtour-box {
    padding: 10px;
    background-color: rgba(21, 20, 20, 0.5);
}

.searchtour-form {
    width: 85%;
    height: 44px;
    position: relative;
    float: left;
}

.searchtour-form input {
    border: 0;
    height: 100%;
    float: left;
}

.searchtour-form-text {
    font-size: 16px;
    color: #999;
    width: 100%;
    text-indent: 20px;
    font-weight: bold;
    cursor: pointer;
    background: #fff;
}

.searchtour-form-r {
    /* width: 120px; */
    width: 15%;
    float: left;
    height: 44px;
}

.searchtour-form-btn {
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: 0;
    font-size: 16px;
    color: #fff;
    background: #FA8C20;
    border: none;
}

.input-info {
    display: none;
    flex-grow: 1;
}

.popularTitle {
    text-align: center;
    margin: 30px 0px;
    font-size: 32px;
    line-height: 24px;
    font-weight: bold;
    text-decoration: underline;
}

/* 地区链接开始 */
#linkBox {
    width: 100%;
    background: #f2f2f2;
    margin-top: 30px;
    padding-top: 10px;
    padding-bottom: 40px
}

.spotBox {
    width: 1390px;
    margin: 0 auto;
}
.popularLink {}

.popularLink li {
    text-indent: 10px;
    margin: 10px 0px;
}
.li20 li {
    float: left;
    width: 25%;

}

.li20 li::before {
    content: "•";
    /* 添加小圆点 */
    color: #333;
    /* 设置圆点的颜色 */
    font-size: 8px;
    /* 设置圆点的大小 */
    margin-right: 5px;
    /* 设置圆点和文本之间的间距 */
}

.li20 li:hover::before {
    content: "•";
    /* 添加小圆点 */
    color: #FA8C20;
    /* 设置圆点的颜色 */
    font-size: 8px;
    /* 设置圆点的大小 */
    margin-right: 5px;
    /* 设置圆点和文本之间的间距 */
}

.li20 li a {
    text-decoration: underline;
    vertical-align: middle;
}

.li20 li a:hover {
    color: #FA8C20;
}
/* footer样式 */
#footer {

    width: 100%;
    height: 214px;
    background: #282828;
    border-top: 6px solid #F58909;
}

.footer-address {
    width: 100%;
    height: 174px;
}

.footer-address-box {
    max-width: 1390px;
    margin: 0 auto;

}

.footer-address-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-address-list dl {
    padding: 0 125px;
    margin-top: 30px;
    border-right: 1px solid #999;
}

.footer-address-list dl:last-of-type {
    /* 只对 .footer-address-list 容器内的最后一个 dl 应用样式 */
    border-right: none;
}

.footer-address-list dl dd {
    color: #999;
    line-height: 32px;
}

.footer-info {
    width: 100%;
    min-height: 40px;
    background: #222222;
    text-align: center;
    color: #999;
    line-height: 40px;
    font-size: 14px;
}
@media screen and (max-width:1400px) {

    .nav-link {
        font-size: 16px;
    }

    .spotBox {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-link {
        padding: 0 15px;
        font-size: 16px;
    }

    .submenu {
        min-width: 500px;
    }

    .submenu-city {
        float: left;
        width: 80%;
    }

    .searchtour {
        max-width: 712px;
    }
   
}

@media screen and (max-width:1000px) {
    .nav-logo {
        width: 180px;
        height: 24px;
    }

    .searchtour {
        max-width: 512px;
    }

    .searchtour-form {
        height: 35px;
    }

    .searchtour-form-r {
        height: 35px;
    }

    .li20 li {
        float: left;
        width: 33%;

    }
}

@media screen and (max-width:820px) {
    .navbar {
        padding: 0 10px;

    }
    .nav-logo {
        width: 100px;
        height: 20px;
    }
    .footer-address-list dl {
        padding: 0 50px;
    }
}

@media screen and (max-width:767px) {
    .navbar {
        height: 44px;
        line-height: 44px;
        justify-content: flex-start;

    }

    .currency-current {
        display: none;
    }

    .nav-logo {
        width: 88px;
        height: 12px;

    }

    .logo-img {
        height: 30px;
        /* 移动端稍微缩小logo */
    }

    .menu-toggle {
        display: flex;
        /* 仅在移动端显示汉堡菜单按钮 */
    }

    .toggle-btn {
        display: block;
        /* 移动端显示 */
    }

    #header-navigator {}

    .arrowL {
        height: 30px;
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        padding: 12px;
        flex-direction: column;
        /* 垂直排列 */
        transition: 0.3s;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
        z-index: 9999;
        overflow-y: auto;
    }

    .navul {
        flex-direction: column;
    }

    .nav-item .dropdown-toggle {
        display: block;
        width: 14px;
        /* 按钮宽度 */
        height: 14px;
        /* 按钮高度 */
        background-image: url(../images/plus.png);
        /* 背景图片路径 */
        background-size: contain;
        /* 背景图片自适应 */
        background-repeat: no-repeat;
        /* 背景图片不重复 */
        position: absolute;
        /* 绝对定位 */
        right: 10px;
        /* 距离右侧10px */
        top: 22px;
        transform: translateY(-50%);
        /* 垂直微调 */
    }

    .nav-item .dropdown-toggle-active {
        background-image: url(../images/minus.png);
        /* 背景图片路径 */
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

    .submenu {
        position: static;
        /* 移动端子菜单不需要绝对定位 */
        background-color: #fff;
        box-shadow: none;
        border: 0;
        padding: 0;
        min-width: 100%;

    }

    .submenu-item {
        margin: 0;
    }

    .submenu-link {
        color: white;
        margin-right: 12px;
        padding: 0;
    }


    .nav-link {
        font-size: 18px;
        padding: 0;
    }

    .submenu-area {
        display: block;
        float: none;
        font-size: 14px;
        text-align: left;
        background: url(../images/lefticon.png) 0 7px no-repeat;
        padding-left: 10px;
    }

    .submenu-city {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }

    .submenu-link {
        font-size: 14px;
        color: #666;
    }

    .submenu-link::after {
        border: 0;
    }

    .nav-link:hover {
        background-color: #fff;
        color: #333333;
    }

    .nav-link.active {
        background-color: #fff;
        color: #FA8C20;
    }

    .submenu-link-hot {
        color: #FA8C20;
    }

    .overlay.active {
        display: block;
    }

    .search-box {
        display: none;
    }

    /* 手机端搜索框 */
    .input-info {
        height: 27px;
        /* width: 154px; */
        background: rgba(34, 34, 34, 0.1);
        border-radius: 14px;
        position: relative; 
        display: block;
        margin-right: 10px;
    }

    .input-info::before {
        content: "";
        display: inline-block;
        width: 12px;
        height: 12px;
        background: url(../images/search.png) no-repeat center center;
        background-size: contain;
        position: absolute;
        top: 8px;
        left: 10px;
        z-index: 1
    } 


    .input-info .serch-key {
        border: none;
        height: 20px;
        font-size: 14px;
        margin-left: 25px;
        -webkit-appearance: none;
        background: transparent;
        width: 70%;
        position: absolute;
        top: 4px;
        outline: 0;
        outline-width: 0;
        text-align: center
    }

    .bbb {
        display: inline-block;
        width: 14px;
        height: 14px;
        background: url(../images/search-clear.png) no-repeat center center;
        background-size: contain;
        position: absolute;
        right: 6px;
        top: 7px;
        z-index: 9999;
       
    }


    .currency-current {
        display: block;
        background: url(../images/arrow-down.png) no-repeat right center;
        box-sizing: border-box;
        padding: 0 20px 0 0px;
    }

    .currency-item {
        width: 50px;
        height: 15px;
        line-height: 15px;
        padding: 0 0 0 25px;

    }

    .currency-item::before {
        font-size: 14px;
    }
}

@media screen and (max-width:640px) {
    .navbar {
        padding: 0 15px;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .li20 li {
        width: 50%;
    }

    .footer-address-list dl {
        padding: 0px 10px;
    }

}

@media screen and (max-width:480px) {

    .display_none_480 {
        display: none;
    }
}

@media screen and (max-width:414px) {
    .input-info::before{ left: 5px;}

    .popularTitle {
        font-size: 30px;
    }

    .li20 li {
        width: 100%;
        text-align: center;
    }

    .footer-address-list dl {
        padding: 0px 5px;
        font-size: 14px;
    }
}


@media screen and (max-width:320px) {

    .navbar {
        padding: 0 10px;
    }
}