.notice_sign_view{
	display: flex;
    flex-direction: column;
    gap: 8px;
}

.notice_sign_line{
	display: flex;
    align-items: center;
    gap: 8px;
}

.notice_sign_line img{
	width: 100px;
	height: 50px;
}

.normalBtn.disable_class{
	background: var(--ant-primary-color, #4C9EFC);
	border: none;
	color: var(--gray-1, var(---gray0, #FFF));
	cursor: default;
}

#vsn_agress{
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background: white;
    cursor: pointer;
    position: relative;
    font-family: 'iconfont';
    outline: none;
}

#vsn_agress:checked {
	background-color: #007bff;
	border-color: #007bff;
}

#vsn_agress:checked::after {
	content: "\e6c1";
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
  	color: white;
  	font-size: 13px;
  	line-height: 1;
}