/*功能样式*/

input[type='button'] {
    cursor: pointer;
    border: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.float-clean:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.float-clean {
    zoom: 1;
}

/*样式代码*/
.dialog-background {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, .7);
}

.dialog {
    display: none;
    width: 600px;
    height: 560px;
    position: absolute;
    font-family: "Microsoft Sans Serif";
    top: calc(50% - 280px);
    left: calc(50% - 300px);
    padding: 50px;
    background: #fff;
    -webkit-box-shadow: 8px 8px 14px #000;
    -moz-box-shadow: 8px 8px 14px #000;
    box-shadow: 8px 8px 14px #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.dialog-title {
    width: 500px;
    height: 60px;
}

.dialog-title .line-red {
    height: 60px;
    width: 5px;
    background: #cb3c3c;
}

.dialog-title .d-title {
    display: inline-block;
    font-family: 'Microsoft YaHei';
    font-size: 35px;
    padding-left: 15px;
    line-height: 60px;
}

.dialog-title .close {
    width: 25px;
    height: 25px;
    background: url("../images/close.png") no-repeat;
    margin-top: 18px;
}

.dialog-input-name {
    width: 500px;
    height: 270px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 60px 20px;
}

.dialog-input-name img{
	 margin-left:128px;
}
.content p{
    text-align:center;
	font-size:16px;
}



/*后来加的代码*/
input{border: none;
	border-bottom: 1px solid #999;
	width: 320px;
	height:50px;
	font-size:20px;
	}
.content b{
	font-weight: normal;
	cursor: pointer;
}
.log-text{
	margin: 10px 0 20px 0;
	}
.dialog button{
	width: 440px;
	height: 50px;
	border-radius: 10px;
	margin: 30px auto;
	display: block;
	cursor: pointer;
	background:#cb3c3c;
	color: #fff;
	font-size: 20px;
	}

.dialog-input-name {
	margin:0 0 20px 0;
}
.hide{
	display:none;
	}
