@charset "utf-8";
/* CSS Document */
.container{
	width: 100%;
	min-width: 1200px;
	height: 100vh;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}

.container_zgh{
        background:url("../images/list/bg_zgh.jpg") center no-repeat;
	background-size: 100% 100%;
}
.container_mjms{
        background:url("../images/list/bg_mjms.jpg") center no-repeat;
	background-size: 100% 100%;
}
.container_sfzk{
        background:url("../images/list/bg_sfzk.jpg") center no-repeat;
	background-size: 100% 100%;
}

.leftBox{
	width: 390px;
	height: auto;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex: 0 0 390px; /* 不增长不收缩 */
	margin-top: -50px;
	padding-left: 61px;
}
.tag {
    width: 330px;
	height: 604px;
}

.tag img{
  width: 100%;
  height: 100%;
}

.rightBox{
	height: 100vh;
	min-height: 600px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
/*	background: rgba(0,255,0,0.5);*/
/*
	padding-top: 100px;
	padding-bottom: 50px;
*/
	padding-right: 100px;
}

.picList{
	width: 100%;
	max-width: min(100%, 1080px);
	height: 720px;
}

.picLine{
	width: 100%;
	height: 50%;
/*	border: 1px orange solid;*/
	display: flex;
	flex-direction: row;
	justify-content: space-between;
/*	padding-top: 20px;*/
}

.picOne{
	width: 225px;
	height: 323px;
/*	border: 1px orange solid;*/
	
}

.picOne a{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.picOne .imgBox{
	width: 225px;
	height: 225px;
	border-radius: 50%;
	overflow: hidden;
}
.picOne .imgBox img{
	width: 100%;
	height: 100%;
	object-fit: cover; /* 保持比例并裁剪 */
    object-position: center; 
	transition: transform 0.3s ease; /* 添加过渡动画 */
}

.picOne .imgBox img:hover{
	transform: scale(1.1); /* 鼠标悬停时放大1.1倍 */
}

.picOne .introBox{
	width: 212px;
	height: 85px;
	font-size: 16px;
	line-height: 22px;
	color: #000;
}

.picOne .introBox p{
	width: 100%;
	white-space: nowrap;      /* 禁止换行 */
    overflow: hidden;         /* 隐藏超出部分 */
    text-overflow: ellipsis;  /* 超出部分显示省略号 */
}

.page{
	width: 800px;
	height: 40px;
	line-height: 40px;
/*	background: rgba(0,0,255,0.5);*/
	font-size: 20px;
	color: #000;
}

.page a{
	display: inline-block;
	width: auto;
	height: 40px;
	line-height: 40px;
	color: #000;
	border: 1px solid;
	padding: 0 0.5em;
}