*{margin: 0px;padding: 0px;}
/* 去除浮动破坏性 */
.clearfix::after{
	height: 0px;
	overflow: hidden;
	content: "";
	display: block;
	clear: both;
}
/*容器*/
.pn-container {
	width: 98%;
	margin: auto;
}
/*标题*/
.pn-title{
	border-bottom: 1px dashed cornflowerblue;
	color: cornflowerblue;
	text-align: center;
	font-size: 35px;
    font-weight: bold;
    text-align: center;
}
.pn-button-list{
	float: right;
}
/*单位*/
.pn-unit{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.pn-unit-item{
    margin: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pn-input{
	height: 30px;width: 140px;
	box-shadow: 0 0 4px 1px lightgrey inset;
    border: 1px solid lightgray;
    border-radius: 3px;
}
/*按钮*/
.pn-button{
	height: 30px;
	min-width: 70px;
    border-radius: 3px;
	padding-left: 10px;
	padding-right: 10px;
    background-color: lightskyblue;
    border: none;
}
.pn-button:hover{
	background-color: lightcyan;
	cursor: pointer;
    box-shadow: 0 0 3px 1px lightgrey;
}
/* 表单 */
.pn-form{
	width: 100%;height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: scroll;
	overflow-x: hidden;
	padding-bottom: 10px;
}
/*滚动条整体样式*/ /*高宽分别对应横竖滚动条的尺寸*/ 
.pn-form::-webkit-scrollbar { 
	width: 10px;
	height: 1px; 
}
/*滚动条里面小方块*/
.pn-form::-webkit-scrollbar-thumb { 
	border-radius: 5px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: darkgray;
}
/*滚动条里面轨道*/ 
.pn-form::-webkit-scrollbar-track { 
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 5px; background: #ededed;
}
/* 边框 */
.pn-border{
	box-shadow: 0 0 5px 1px lightgrey;
	border-radius: 5px;
}
.pn-form-item{
	width: 98%;
}
.pn-form-item-title{
	height: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 3px;
	background-color: lightblue;
	border-radius: 3px;
	margin-top: 10px;
	cursor: pointer;
}
.pn-shrink-img{
	width: 30px;height: 30px;
	background: url(../IMG/org/pn_shrink.png) no-repeat;
	background-size: cover;
}
.pn-unflod-img{
	width: 30px;height: 30px;
	background: url(../IMG/org/pn_unflod.png) no-repeat;
	background-size: cover;
}
.pn-form-item-container{
	padding-top: 5px;
	
}
/* 左右div容器 */
.pn-lr-container{
	display: flex;
	margin-top: 5px;
}
.pn-div-left{
	width: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #87CEFA;
	border-radius:5px 0px 0px 5px;
	padding: 5px;
}
.pn-div-right{
	width: 100%;
	margin-left: 10px;
	padding: 10px;
}
/* .pn-little-kv{
	padding: 5px;
	margin-right: 5px;
} */
/* 左右span容器 */
.pn-lr-span{
	display: inline-flex;
	margin-right: 5px;
}
.pn-span-left{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius:5px 0px 0px 5px;
	background-color: #87CEFA;
	padding:0px 15px 0px 15px;
}
.pn-span-right{
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 40px;
	text-align: center;
	padding: 5px;
}
.pn-del-r{
	width: 30px;height: 100%;
	border-radius:0px 3px 3px 0px;
	background-image: url(../IMG/org/del_blue.png);
	background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	/* background-color: lightcoral; */
}
.pn-del-r:hover{
	background-color: pink;
	box-shadow: 0px 0px 4px 2px red;
}
/* 删除确认框 */
.pn-win-cont{
	width: 200px;
	padding: 10px;
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 100px);
    background-color: white;
    z-index: 10;
}
.pn-win-title{
	width: 100%;height: 30px;
	text-align: center;
	font-size: 20px;
	border-bottom: 1px solid lightgray;
}
.pn-win-body{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}