/********************* 第一页css *********************/
@import url('./lang.css');

html{
    background-color: #eee;
}

.top_box{
    background-color: blueviolet;
    position: relative;
}
.title{
    font-size: 0.35rem;
    font-weight: 600;
    color: #fff;
    height: 1rem;
    line-height: 1rem;
    text-align: center;
}
.pc_box{
    position: absolute;
    right: 0.2rem;
    top: 0.25rem;
    display: flex;
    align-items: center;
}
.pc_img{
    width: 0.5rem;
    object-fit: contain;
}
.pc_font{
    color: #ffffff;
    font-size: 0.24rem;
    margin-left: 0.1rem;
}
.search_box{
    width: 94%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
}
.destination{
    font-size: 0.3rem;
    font-weight: 600;
}
.search_input{
    width: 70%;
    height: 0.6rem;
    border:1px solid #bbb;
    border-radius: 0.1rem;
    padding-left: 0.2rem;

}
.search_btn{
    padding: 0.1rem 0.2rem;
}
.banner_box{
    position: relative;
}
.banner_img{
    width: 94%;
    /* object-fit: cover; */
    height: auto;
    display: block;
    margin: auto;
    margin-top: 0.2rem;
}
/* 控制圆点 */
.banner-circle{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 20px;
}
.banner-circle ul{
	/* margin: 0 50px; */
	height: 100%;
	text-align: center;
}
.banner-circle ul li{
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	border-radius: 4px;
	background-color: rgba(125,125,125,.8);
	cursor: pointer;
}

.popular_cities_box{
    width: 94%;
    margin: auto;
}
.popular_title{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    margin-top: 0.2rem;
}
.popluar_img{
    width: 0.6rem;
    height: 0.6rem;
}
.popular_font{
    margin-left: 0.2rem;
    font-weight: 600;
}
.city_name_box{
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.city_name_box2{
    width: 94%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.city_name{
    display: flex;
    justify-content: space-evenly;
    padding-left: 13px;
    width: 3.1rem;
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
    border: 1px solid #bbb;
    margin-top: 0.2rem;
    /* margin-left: 3%; */
    background-color: #fff;
}
.city_name2{
    width: 3.1rem;
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
    border: 1px solid #bbb;
    margin-top: 0.2rem;
    /* margin-left: 3%; */
    background-color: #fff;
}
.continent_box{
    /* width: 94%; */
    /* margin: auto; */
}
.continent_single{
    width: 94%;
    margin: auto;
    height: 0.8rem;
    border-bottom: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.continent_left{
    display: flex;
    align-items: center;
}
.continent_left_img{
    width: 0.6rem;
    height: 0.6rem;
}
.continent_left_p{
    font-weight: 600;
    margin-left: 0.2rem;
}
.continent_right_img{
    width: 0.6rem;
    height: 0.6rem;
}
.side_box_active{
    border-bottom: none;
}
.active{
	background-color: black !important;
}



.banner-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    font-weight: bold;
    user-select: none; /* 防止文本被选中 */
    -webkit-user-select: none; /* Safari兼容 */
    -moz-user-select: none; /* Firefox兼容 */
    -ms-user-select: none; /* IE兼容 */
    -webkit-touch-callout: none; /* 禁止长按弹出菜单 */
    -webkit-tap-highlight-color: transparent; /* 移除点击高亮 */
}


.banner-controls.prev {
    left: 10px;
}

.banner-controls.next {
    right: 10px;
}

.banner-controls:hover {
    background: rgba(0, 0, 0, 0.8);
}
/* #floating-icon {
    position: fixed;
    bottom: 40px;
    right: 23px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

#floating-icon:hover {
    transform: scale(1.1);
} */
 #floating-note {
  position: fixed;
  bottom: 16%;
  right: -20px;
  z-index: 1000;
  cursor: pointer;
  background-color: #ffffffb5;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.30);
  padding-left: 4px;
  transition: all 0.3s ease;
  /* transform: rotate(5deg); */
  border: 1px solid #eee;
  min-width: 60px;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#floating-note:hover {
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* #floating-note::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 15px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
} */
#citys{
    margin-top: 2px;
}
#citys-fonts{
    width: 3rem;
    margin-top: 3px;
    padding-left: 13px;
}