.pub-head{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 20px;
}
.cdk-page{
	background-color: white; /* 内容区域背景颜色 */
	    padding: 20px; /* 内容区域内边距 */
	    border-radius: 10px; /* 内容区域圆角 */
	    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 内容区域阴影 */
}
.cdk-page div {
    margin-bottom: 10px; 
}
.cdk-page input {
    width: 100%;
    height: 40px;
    font-size: 17px;
    outline: none;
    border: 1px solid #ccc; /* 添加输入框边框 */
    border-radius: 5px; /* 输入框圆角 */
    padding: 0 10px; /* 输入框内边距 */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* 输入框内阴影 */
	margin-top: 20px;
}
.btn{
	height: 40px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	background: linear-gradient(90deg, #66b3ff,#72e6ff, #66b3ff);
	border-radius: 22px;
	border: none;
	font-size: 17px;
	cursor: pointer;
	transition: opacity 0.3s;
}
.btn:hover{
	opacity: 0.8;
}