/* 通用样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f9f9f9;
	color: #333;
	font-size: 16px;
}

.container {
	width: 1150px;
	margin: 0 auto;
}

a {
	text-decoration: none;
	color: inherit;
}

/* 主要内容样式 */
main section {
	margin: 20px 0;
}

h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #f53;
}

section {
	width: 1150px;
	margin: 0 auto;
}

.crumbs {
	font-weight: 400;
	line-height: 40px;
	color: rgba(153, 153, 153, 1);
	text-align: left;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	width: 132.71px;
	height: 38.62px;
	background-color: #ff6600;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	transition: background-color 0.3s;
}

.btn:hover {
	background-color: rgba(255, 93, 3, 1);
}



.flex-box {
	display: flex;
	justify-content: space-between;
	gap: 0 10px;
}

.left-box {
	width: 75%;
}





/*搜索模块*/


.tab-box {
	padding: 20px;
	background-color: #fff;
	border-radius: 5px;
	margin-bottom: 15px;
}

.tab-box h3 {
	font-size: 24px;
	color: rgba(51, 51, 51, 1);
	margin-bottom: 20px;
}

.tab {
	display: flex;
	gap: 15px;
	/* 按钮之间的间距 */
	justify-content: flex-start;
	/* 按钮靠左对齐 */
	flex-wrap: wrap;
	/*margin-bottom: 30px;*/
}

.tab .tab-item {
	/* 每个按钮最小宽度为100px，最大宽度会自动调整 */
	color: rgba(51, 51, 51, 1);
	font-size: 16px;
	border-radius: 5px;
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(216, 216, 216, 1);
	padding: 2px 20px;
}
.tab .tab-item.active,
.tab .tab-item:hover{
	background: rgba(255, 93, 3, 1);
	color: #fff;
}

.tab-box .tab{
	margin-bottom: 30px;
}

.tab-country {
	background: rgba(249, 249, 249, 1);
	margin-bottom: 0;
	padding: 20px;
}

.tab-country .tab-country-item {
	flex: 1 1 90px;  /* 每个按钮最小宽度为100px，最大宽度会自动调整 */
	max-width: 90px;
	color: rgba(51, 51, 51, 1);
	font-size: 16px;
	border: 1px solid rgba(216, 216, 216, 1);
	border-radius: 16.5px;
	text-align: center;
	margin-right: 10px;
}

.tab-country .tab-country-item.active,
.tab-country .tab-country-item:hover {
	background: rgba(255, 93, 3, 1);
	color: #fff;
}

/* 列表模块 */
.list {
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}

.list-item {
	display: flex;
	padding: 20px;
	background-color: #fff;
}

.list-item img {
	width: 224px;
	height: 140px;
	border-radius: 5px;
	margin-right: 30px;
}

.list-item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.list-item h3 {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 3px;
}

.list-item p {
	line-height: 1.8;
	font-size: 14px;
	height: fit-content;
	overflow: hidden;
	display: -webkit-box;
	/* 将对象作为弹性伸缩盒子模型显示 */
	-webkit-line-clamp: 3;
	/* 行数，值可以改，表示展示X行后多余的缩略展示 */
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 */
	word-break: break-all;
	padding: 0;
	margin-bottom: auto;
}

.list-item-content-foot {
	color: rgba(182, 182, 182, 1);
	font-size: 12px;
	display: flex;
	justify-content: space-between;
}

.pagination {
	margin: 20px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 5px;
	color: rgba(153, 153, 153, 1);
}

.pagination span {
	line-height: 40px;
	padding: 0 1px;
}

.pagination li {
	/*padding: 0 15px;*/
	line-height: 40px;
	text-align: center;
	color: rgba(153, 153, 153, 1);
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(216, 216, 216, 1);
	border-radius: 5px;
	margin: 0;
	font-size: 14px;
	cursor: pointer;
	list-style: none;
	/* savers */
	float: left;
}

.pagination li a,.pagination li span{
	display: block;
	padding: 0 15px;
}

.pagination .previous-off,
.pagination .next-off {
	border: solid 1px #DEDEDE;
	color: #888888;
	display: block;
	float: left;
	font-weight: bold;
	margin-right: 2px;
	padding: 3px 4px;
}

.pagination .next a,
.pagination .previous a {
	font-weight: bold;
}

.pagination .active {
	background: rgba(255, 93, 3, 1);
	color: #FFFFFF;
	font-weight: bold;
	display: block;
}

.pagination  .disabled {
	background: unset;
	border: 0;
}

.pagination li:first-child.disabled,
.pagination li:last-child.disabled{
	border: 1px solid rgba(216, 216, 216, 1)!important;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}


p {
	border: 0;
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
}

ul {
	border: 0;
	margin: 0;
	padding: 0;
}
