
/* 国家选择css */

.allCountry_box {
    display: flex;
    align-items: center;
	flex-flow: wrap;
}
.countryList_box{
	margin-right:15px;
	margin-bottom: 15px;
	padding: 0.375rem .8rem;
    line-height: 20px;
    text-decoration: none;
    text-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
    border: 1px solid #e7e7e7;
    cursor: pointer;
}
.countryList_box.isActive{
	color: #fff;
    background: #122a73;
}
.countryList_box.isActive:hover{
	color: #fff;
    background: #122a73;
}
.countryList_box:hover{
	color: #fff !important;
    background: #122a73;
}
.countryList_link{
	color: #000;
	text-decoration:none;
}
.countryList_link:hover{
	color: #fff;
	text-decoration:none;
}
.countryList_box:hover .countryList_link{
	color: #fff;
	text-decoration:none;
}
.Country_list{
	text-align: center;
}


/* Landmarks btn css */

.allLandmarks_box {
    padding:5px;
}
.landmarksList_box{
	height: 55px;
    text-decoration: none;
    text-shadow: rgba(255, 255, 255, 0.1) 0 1px 0;
    border: 1px solid #e7e7e7;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.landmarksList_box.isSelected{
	color: #fff;
    background: #122a73;
}
.landmarksList_box.isSelected:hover{
	color: #fff;
    background: #122a73;
}
.landmarksList_box:hover{
	color: #fff !important;
    background: #122a73;
}
.Landmarks_list{
	text-align: center;
}
.no_data{
	margin:20px auto;
}

@media (max-width:768px){
	.allLandmarks_box {
		width: 50%;
	}
}
