
.yly-modal {
	
	&.fullscreen {
		top: 0;
		left: 0;
		padding: 0;

		// 兼容1.6.2版本的antdv
		& .ant-modal {
			top: 0;
			padding: 0;
			height: 100vh;
		}

		& .ant-modal-content {
			height: 100vh;
			border-radius: 0;

			& .ant-modal-body {
				height: calc(100% - 55px - 55px);
				overflow: auto;
			}
		}

		&.no-title, &.no-footer {
			.ant-modal-body {
				height: calc(100% - 55px);
			}
		}

		&.no-title.no-footer {
			.ant-modal-body {
				height: 100%;
			}
		}
	}

	.yly-modal-title {
		.left {
			width: calc(100% - 56px - 56px);
		}

		.right {
			width: 56px;
			position: inherit;

			.ant-modal-close {
				right: 56px;
				color: rgba(0, 0, 0, 0.45);

				&:hover {
					color: rgba(0, 0, 0, 0.75);
				}
			}
		}
	}
}