/*!
* Tabler v1.0.0-beta20 (https://tabler.io)
* @version 1.0.0-beta20
* @link https://tabler.io
* Copyright 2018-2023 The Tabler Authors
* Copyright 2018-2023 codecalm.net Paweł Kuna
* Licensed under MIT (https://github.com/tabler/tabler/blob/master/LICENSE)
*/
/* prettier-ignore */
/* prettier-ignore */

	    /* 遮罩层 */
	  #overlay {
		position: fixed;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		font-size: 16px;
		/* IE9以下不支持rgba模式 */
		background-color: rgba(0, 0, 0, 0.5);
		/* 兼容IE8及以下 */
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000);
		display: none;
	  }
	  /* 弹出框主体 */
	  .popup {
		background-color: #ffffff;
		max-width: 600px;
		min-width: 200px;
		height: 300px;
		border-radius: 5px;
		margin: 100px auto;
		text-align: center;
	  }
	  /* 弹出框的标题 */
	  .popup_title {
		height: 60px;
		line-height: 60px;
		border-bottom: solid 1px #cccccc;
	  }
	  /* 弹出框的内容 */
	  .popup_content {
		height: 50px;
		line-height: 50px;
		padding: 15px 20px;
	  }
	  /* 弹出框的按钮栏 */
	  .popup_btn {
		padding-bottom: 10px;
	  }
	  /* 弹出框的按钮 */
	  .popup_btn button {
		color: #778899;
		width: 40%;
		height: 40px;
		cursor: pointer;
		border: solid 1px #cccccc;
		border-radius: 5px;
		margin: 5px 10px;
		color: #ffffff;
		background-color: #337ab7;
	  }