.bt{	font-size: 14px;
	color: #000;}
.bt1{	font-size: 12px;
	color: #fff;}

button {
	/* 取消按钮自带的轮廓 */
	outline: 0;
	width: 100px;
	color: #FFFFFF;
	/* 圆角属性 */
	border-radius: 4px;
	border: 1px solid #009933;
	background-color: #000000;
	/* 过渡 */
	transition: all 0.3s;
	/* 鼠标变小手 */
	cursor: pointer;
}
button:hover {
	color: #fff;
	background-color: #284bdb;
	border-top-color: #284bdb;
	border-right-color: #284bdb;
	border-bottom-color: #284bdb;
	border-left-color: #284bdb;
}
/* 模态框 start */

.abouttt {

	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 15%; /* 距离页面顶部的距离 */
	z-index: 20;
}
.model-box {
	/* 隐藏模态框 */
	
	display: none;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;

	background-color: rgba(0, 0, 0, 0.45);
}
.model-box .content {
	position: absolute;
	top: 100px;
	/* calc方法可以自动计算数值 */
	left: calc(50% - 230px);
	width: 420px;
	height: 420px;
	border-radius: 5px;
	padding: 0 20px;
	/* 盒子阴影 */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.model-box .content .title {
	/* 弹性布局 */
	display: flex;
	/* 让子元素水平与两端对齐 */
	justify-content: space-between;
	height: 60px;
	line-height: 60px;
	/* 鼠标移入呈现移动光标 */
	cursor: move;
}
.model-box .content .title span {
	font-size: 20px;
	color: #333;
	font-weight: 500;
}
.model-box .content .title i {
	/* i标签默认是斜体 这个属性可以变正 */
	font-style: normal;
	font-size: 24px;
	color: #909399;
	cursor: pointer;
}
/* 鼠标移入变色 */
.model-box .content .title i:hover {
	color: #409eff;
}
.model-box .content form .form-input {
	margin: 10px 0;
}
/* 因为label元素的for属性和input元素id属性设置了相同的属性值 所以就可以通过label元素选中 输入框 布局已完成 下一个视频开始js的书写 */
.model-box .content form .form-input label {
	font-size: 14px;
	color: #606266;
	cursor: pointer;
	float: left;
	width: 20%;
	height: 42px;
	line-height: 42px;
	margin-top: 5px;
	text-align: right;
}
.model-box .content form .form-input input {
	/* 取消输入框默认的轮廓 表单元素一般都有轮廓 很不好看 */
	outline: 0;
	width: 70%;
	height: 42px;
	padding: 0 15px;
	margin-top: 5px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	font-size: 14px;
}

.model-box .content form .form-input textarea {
	/* 取消输入框默认的轮廓 表单元素一般都有轮廓 很不好看 */
	outline: 0;
	width: 70%;
	height: 82px;
	margin-top: 5px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	font-size: 14px;

}




.model-box .content form .form-input input:hover {
	border-color: #c0c4cc;
}
/* 输入框获取焦点变色 */
.model-box .content form .form-input input:focus {
	border-color: #409eff;
}
.model-box .content form .form-input button {
	/* 让按钮浮动到右侧 */
	float: right;
	margin-top: 10px;
	height: 40px;
}
/* 模态框 end */



.abouttt1 {

	position: -webkit-sticky; /* Safari */
	position: sticky;
	top: 5%; /* 距离页面顶部的距离 */
	z-index: 20;
}

.model-box1 {
	/* 隐藏模态框 */
	
	display: none;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;

	background-color: rgba(0, 0, 0, 0.45);
}
.model-box1 .content {
	position: absolute;
	top: 100px;
	/* calc方法可以自动计算数值 */
	left: calc(50% - 410px);
	width: 820px;
	height: 550px;
	border-radius: 5px;
	padding: 0 20px;
	/* 盒子阴影 */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.model-box1 .content .title {
	/* 弹性布局 */
	display: flex;
	/* 让子元素水平与两端对齐 */
	justify-content: space-between;
	height: 60px;
	line-height: 60px;
	/* 鼠标移入呈现移动光标 */
	cursor: move;
}
.model-box1 .content .title span {
	font-size: 20px;
	color: #333;
	font-weight: 500;
}
.model-box1 .content .nr {
	font-size: 16px;
	color: #333;
height: 450px; /* 设置固定高度 */
  overflow: auto; /* 或者使用 'scroll' 总是显示滚动条 */
}
.model-box1 .content .title i {
	/* i标签默认是斜体 这个属性可以变正 */
	font-style: normal;
	font-size: 24px;
	color: #909399;
	cursor: pointer;
}


@media only screen and (max-width: 767px) {
	
	
.model-box .content {
	position: absolute;
	top: 100px;
	/* calc方法可以自动计算数值 */
	left: calc( 10px);
	width: 85%;
	height: 420px;
	border-radius: 5px;
	padding: 0 20px;
	/* 盒子阴影 */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.model-box .content form .form-input label {
	font-size: 14px;
	color: #606266;
	cursor: pointer;
	float: left;
	width: 28%;
	height: 42px;
	line-height: 32px;
	margin-top: 5px;
	text-align: right;
}
.model-box .content form .form-input input {
	/* 取消输入框默认的轮廓 表单元素一般都有轮廓 很不好看 */
	outline: 0;
	width: 50%;
	height: 32px;
	padding: 0 15px;
	margin-top: 5px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	font-size: 14px;
}
.model-box .content form .form-input textarea {
	/* 取消输入框默认的轮廓 表单元素一般都有轮廓 很不好看 */
	outline: 0;
	width: 50%;
	height: 82px;
	margin-top: 5px;
	border: 1px solid #dcdfe6;
	border-radius: 4px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	font-size: 14px;

}


.model-box1 {
	/* 隐藏模态框 */
	
	display: none;
	position: relative;
	top: 0;
	left: 0;
	width: 98%;

	background-color: rgba(0, 0, 0, 0.45);
}


.model-box1 .content {
	position: absolute;
	top: 100px;
	/* calc方法可以自动计算数值 */
	left: calc( 2px);
	width: 100%;
	height: 500px;
	border-radius: 5px;
	padding: 0 20px;
	/* 盒子阴影 */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
	background-color: #fff;
}
.model-box1 .content .nr {
	font-size: 14px;
	color: #333;
height: 420px; /* 设置固定高度 */
  overflow: auto; /* 或者使用 'scroll' 总是显示滚动条 */
}
	}