
.hotelSelectPage .hotelSearchInput {
	position: relative;
	width: 100%;
	margin-left: 12px;
}

.hotelSelectPage .hotelSearchInput ul,
.hotelSearchInput li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hotelSelectPage .hotelSearchInput .input {
	width: 300px;
	height: 40px;
	background: #fff;
	border-radius: 2px;
	border: 1px solid #d9d9d9;
	display: flex;
	align-items: center;
	padding-left: 24px;
	font-size: 14px;
}

.hotelSelectPage .hotelSearchInput .input:hover {
	border: 1px solid #5582f3;
}

.hotelSelectPage .hotelSearchInput .searchIcon {
	position: absolute;
	top: 0;
	left: 0;
	width: 26px;
	height: 100%;
	background: url('./search.png') no-repeat center/16px 16px;
}

.hotelSelectPage .hotelSearchInput .closeIcon {
	position: absolute;
	top: 0;
	left: 280px;
	width: 14px;
	height: 100%;
	background: url('./close.png') no-repeat center/14px 14px;
}

.hotelSelectPage .hotelSearchInput .searchInputList {
	position: absolute;
	left: 0;
	top: 100%;
    z-index: 999;
	max-height: 480px;
    background: #fff;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,0.2);
	overflow-y: auto;
}

.hotelSelectPage .hotelSearchInput .searchInputList .actived {
	background: #f2f9ff;
}

.hotelSelectPage .hotelSearchInput li {
	min-width: 612px;
	min-height: 47px;
	font-weight: 400;
	font-size: 12px;
	color: #666;
	padding: 10px;
    cursor: pointer;
	border-bottom: 1px solid #e5e5e5;
}

.hotelSelectPage .hotelSearchInput li .nodataList {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hotelSelectPage .hotelSearchInput li .same {
	color: #5582f3;
}

.hotelSelectPage .hotelSearchInput li .nodataListLeft {
	font-weight: 500;
	font-size: 14px;
	color: #212121;
}

.hotelSelectPage .hotelSearchInput li .order {
	font-weight: 500;
	font-size: 14px;
	color: #212121;
	margin-bottom: 8px;
}

.hotelSelectPage .hotelSearchInput li:hover {
	background: #f2f9ff;
}

.hotelSelectPage .hotelSearchInput .searchInputList li div {
	width: 100%;
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hotelSelectPage .hotelSearchInput .searchInputList li div:last-child span {
	margin-right: 24px;
}

.hotelSelectPage .hotelSearchInput .searchInputList li div:last-child span:last-child {
	margin-right: 0;
}

.hotelSelectPage {
	width: 100%;
	height: calc(100vh - 44px - 80px);
	/* display: flex;
	flex-direction: column;
	justify-content: space-around; */
	border-top: 1px solid #f0f2f5;
	display: grid; /* 使用 Grid 布局 */
    grid-template-rows: 56px auto 55px; /* 设置三行，第一行和最后一行固定高度，中间行自适应高度 */
}

.hotelSelectPage .hotelHeader {
	padding: 0 40px;
	background: #fff;
	display: flex;
	align-items: center;
}

.hotelSelectPage .hotelHeader .hotelHeaderBtns {
	display: flex;
}

.hotelSelectPage .hotelHeader .hotelBtn {
	background: #5582f3;
	border-radius: 2px;
	padding: 11px 16px;
	margin-right: 12px;
	font-size: 14px;
	color: #fff;
	word-break: keep-all;
	cursor: pointer;
}

.hotelSelectPage .hotelHeader .disabled {
	color: rgba(0, 0, 0, .25);
    background-color: #f5f5f5;
    border-color: #d9d9d9;
	border-radius: 2px;
	padding: 11px 16px;
	margin-right: 12px;
	font-size: 14px;
	word-break: keep-all;
	cursor: not-allowed;
}

.hotelSelectPage .hotelHeader .hotelBtn:hover {
	background: #3987ed;
}

.hotelSelectPage .hotelHeader .hotelBtn:active {
	background: #004eb0;
}

.hotelSelectPage .hotelMid {
	padding: 8px;
	background: #f0f2f5;
	display: flex;
	flex: 1;
	overflow: hidden;
}

.hotelSelectPage .hotelMid .content {
	width: 100%;
	padding: 16px;
	background: #fff;
	display: grid; /* 使用 Grid 布局 */
    grid-template-columns: repeat(auto-fit, 273px); /* 每列宽度固定为270px，自动适应容器宽度 */
    grid-template-rows: repeat(auto-fit, 187px);
    grid-gap: 16px; /* 设置列间距为10px */
    overflow-y: auto; /* 如果内容超出容器高度，显示垂直滚动条 */
}

.hotelSelectPage .hotelMid .contentNodata {
	width: 100%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hotelSelectPage .hotelMid .contentNodata .nodata {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 16px;
	color: #666;
}

.hotelSelectPage .hotelMid .contentNodata .nodata .nodataImg {
	width: 168px;
	height: 96px;
	background: url('./nodata.png') no-repeat center/168px 96px;
}

.hotelSelectPage .hotelMid .contentNodata .nodata .updateImg {
	width: 168px;
	height: 96px;
	background: url('./loading.gif') no-repeat center/168px 96px;
	margin-bottom: 12px;
}

.hotelSelectPage .hotelMid .contentNodata .nodata .cancelRequest {
	color: #5582f3;
	cursor: pointer;
}

.hotelSelectPage .hotelMid .item {
	width: 273px;
	height: 187px;
	border-radius: 2px;
	border: 1px solid #ccc;
	position: relative;
}

.hotelSelectPage .hotelMid .item:hover {
	box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;;
}

.hotelSelectPage .hotelMid .actived {
	border: 2px solid #5582f3;
}

.hotelSelectPage .hotelMid .item:active {
	border: 2px solid #5582f3;
}

.hotelSelectPage .hotelMid .item .itemContent {
	padding: 12px 16px;
	font-size: 12px;
	font-weight: 400;
	color: #212121;
	line-height: 18px;
	word-wrap: break-word;
	word-break: break-all;
}

.hotelSelectPage .hotelMid .item .itemContent .title {
	min-width: 66px;
	display: inline-block;
	color: #999;
}

.hotelSelectPage .hotelMid .item .itemContent .first {
	font-weight: 600;
	font-size: 14px;
	color: #5582f3;
	line-height: 18px;
	margin-bottom: 4px;
	display: flex;
}

.hotelSelectPage .hotelMid .item .itemContent .billno {
	width: 213px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	cursor: pointer;
}

.hotelSelectPage .hotelMid .item .itemContent .first .title {
	color: #212121;
}

.hotelSelectPage .hotelMid .item .itemBtns {
	display: flex;
	justify-content: end;
	align-items: center;
	height: 29px;
	background: #fafafa;
	border-radius: 0 0 1px 1px;
	font-size: 12px;
	color: #5582f3;
}

.hotelSelectPage .hotelMid .item .itemBtns div {
	margin-right: 20px;
	cursor: pointer;
}

.hotelSelectPage .hotelMid .item .cardShadow {
	width: 273px;
	height: 187px;
	border-radius: 2px;
	background: #000;
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 400;
	font-size: 14px;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.hotelSelectPage .hotelMid .item .cardShadow .loading {
	width: 48px;
	height: 48px;
	background: url('./loading1.png') no-repeat center/48px 48px;
	margin-bottom: 8px;
}

.hotelSelectPage .hotelMid .item .cardShadow .loading {
    animation: rotate 2s infinite linear;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.hotelSelectPage .hotelFooter {
	height: 55px;
	background: #fff;
	box-shadow: 0 -1px 0 0 #dbdbdb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
	font-size: 12px;
	color: #212121;
	line-height: 12px;
	padding-left: 24px;
	padding-right: 40px;
}

.hotelSelectPage .hotelFooter .footerLeft span {
	color: #ee761c;
	font-size: 16px;
	font-weight: 600;
	margin-left: 4px;
	margin-right: 4px;
}

.hotelSelectPage .footerRight {
	display: flex;
	color: #999;
	align-items: center;
}

.hotelSelectPage .footerRight .footerBtn {
	width: 94px;
	height: 32px;
	background: #5582f3;
	border-radius: 2px;
	font-size: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 12px;
	cursor: pointer;
}

.hotelSelectPage .footerRight .footerBtn:hover {
	background: #3987ed;
}

.hotelSelectPage .footerRight .footerBtn:active {
	background: #004eb0;
}

.hotelSelectPage .hotelFooter .footerLeft {
	display: flex;
	align-items: center;
	position: relative;
}

.hotelSelectPage .hotelFooter .footerLeft .car {
	width: 32px;
	height: 32px;
	background: url('./car.png') no-repeat center/32px 32px;
	margin-right: 20px;
	cursor: pointer;
}

.hotelSelectPage .hotelFooter .footerLeft .num {
	width: 16px;
	height: 16px;
	background: #fb2323;
	border-radius: 8px;
	position: absolute;
	font-weight: 400;
	font-size: 12px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -6px;
    left: 18px;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList {
	position: absolute;
	left: 0;
	bottom: 50px;
    z-index: 999;
	width: 321px;
	max-height: 548px;
    background: #fff;
	box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item {
	border-radius: 2px;
	display: flex;
	justify-content: space-between;
	padding: 12px 16px;
	border-bottom: 1px dashed #ccc;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item:last-child {
	border: none;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemContent {
	font-size: 12px;
	font-weight: 400;
	color: #212121;
	line-height: 18px;
	word-wrap: break-word;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemContent .title {
	min-width: 66px;
	display: inline-block;
	color: #999;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemContent .first {
	font-weight: 600;
	font-size: 14px;
	color: #5582f3;
	line-height: 18px;
	margin-bottom: 4px;
	display: flex;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemContent .first .billno {
	width: 192px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemContent .first .title {
	color: #212121;
}

.hotelSelectPage .hotelFooter .footerLeft .hotelList .item .itemDel {
	color: #0e5fd8;
	cursor: pointer;
}