.clearfix {
	zoom: 1;
}

.clearfix:after { 
    content: '';
    height: 0;
    display: block;
    clear: both;
} 
html,body{
	background-color: #2b2b2b;
	margin:0;
	padding: 0;
	width: 100% ;
    height: 100% ; 
}
.flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% ;
    height: 100% ;
}
a{
	text-decoration: none;
	color: white;
	font-size: 14px;
}
img{
	width: 20px;
	height: 20px;
}
h2{
	left: 0;
	right: 0;
	margin: 0 auto; 
	margin-bottom: 25px;
	pointer-events: none;
	font-weight: 600;
	font-size: 22px
}
.two{
	display: none;
}
.top{
	width: 225px;
	text-align: center;
	position: fixed;
	top:12%;
	left: 0;
	right: 0;
	margin: 0 auto;
	color: white
}
.top h2{
	font-weight: 800;
	font-size: 35px
}
.nr{
	width: 410px;
	background-color: white;
	padding: 20px 0;
	text-align: center;
	border-radius: 3px;
	z-index: 999
}
.pass,.inputCopy{
	margin: 20px 0; 
}

.none{
	color: black;
	background-color: white;
}
.input{
	width:180px;
	padding: 10px 10px;
	text-align: center;
	border-radius: 3px;
	padding-right: 25px;
	border:1px solid #D7D7D7;
	margin-left: 15px;
}
.button{
	display: block;
	width: 150px;
	padding: 10px 30px;
	margin: 20px auto;
	margin-bottom: 5px;
	border-radius: 3px; 
	background-color: #169BD5;
	color: white;
	border: white; 
}
#eye,#eye2,#eye3{
	position: relative;
	top:2px;
	margin-left: -30px;
	width: 20px;
	height: 12px;
}
#tip{
	color: #ff0000;
	display: none;

}
.codoTiele{
	text-align: center;
	margin-bottom: 15px
}
.password{
	width: 141px;
	padding: 10px 10px;
	text-align: center;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
	border:1px solid #D7D7D7;
	margin-left: 15px;
}
.inputCopy{
	margin-left: 4px;
}
.copy{
	display: inline-block;
	position: relative;
	top: 2px;
	width: 55px;
	height: 37px;
	line-height: 37px;
	background-color: #2b2b2b;
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px;
	margin-left: -4px;
	color: white;
}
.eye{
	position: relative;
	top:8px;
	right: 36px;
	width: 20px;
	height: 12px;
}
.checkbox{
	text-align: center;
}
.checkbox p{
	display: inline-block;
	margin: 5px 3px
}
.fooer{
	position: absolute;
	bottom: 10%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 400px;
	color: white;
	text-align: center;
}
.fooer a{
	margin: 0 5px;
	padding: 6px 15px;
	border: 1px solid white;
	border-radius: 3px;
}
.fooer p{
	margin-top: 30px;
}
/*滑块开始*/
input[type="range"] {
	display: block;
	-webkit-appearance: none;
	background-color: #bdc3c7;
	width: 195px;
	height: 10px;
	border-radius: 5px!important;
	margin: 0 auto;
	outline: 0;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	background-color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border:1px solid #bdc3c7;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.range{
	position:relative;
	width:195px;
	margin:0 auto;
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 35px;
	left: 15px;
	margin-right: 15px;
	top:5px;
}
.rang_width{position:absolute;
	top:-16px;
	left:0;
	background:#4caf50;
	height:10px;
	border-radius:5px 0 0 5px;
	pointer-events: none; // 解决点击不了下层
}
.value{
    display: inline-block;
    position: relative;
    left: 5px
}
.length{
	position: relative;
	top:15px;

}
/*滑块结束*/
.home{
	color: white;
	font-size: 16px;
	text-decoration: none
}
#copytip{
	display: inline-block;
	color: black;
	padding: 5px 20px;
	background-color: white;
	border-radius: 3px; 
	display: none;
}


/*弹层动画（从上往下）*/

.fadeIn {
    -webkit-animation: fadeInDown .6s;
    animation: fadeInDown .6s;
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        -webkit-transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -20%, 0);
        opacity: 0;
    }
    100% {
        -webkit-transform: none;
        opacity: 1;
    }
}


.switch {	
			margin-top: -2px;
			margin-left: 10px;
			float: right;
            width: 57px!important;
            height: 28px!important;
            position: relative!important;
            border: 1px solid #dfdfdf!important;
            background-color: #fdfdfd!important;
            box-shadow: #dfdfdf 0 0 0 0 inset!important;
            border-radius: 20px!important;
            background-clip: content-box!important;
            display: inline-block!important;
            -webkit-appearance: none!important;
            user-select: none!important;
            outline: none!important;
        }
        .switch:before {
            content: ''!important;
            width: 26px!important;
            height: 26px!important;
            position: absolute!important;
            top: 0!important;
            left: 0!important;
            border-radius: 20px!important;
            background-color: #fff!important;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4)!important;
        }
        .switch:checked {
            border-color: #64bd63!important;
            box-shadow: #64bd63 0 0 0 16px inset!important;
            background-color: #64bd63!important;
        }
        .switch:checked:before {
            left: 30px!important;
        }
        .switch.switch-anim {
            transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s!important;
        }
        .switch.switch-anim:before {
            transition: left 0.3s!important;
        }
        .switch.switch-anim:checked {
            box-shadow: #64bd63 0 0 0 16px inset!important;
            background-color: #64bd63!important;
            transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s!important;
        }
        .switch.switch-anim:checked:before {
            transition: left 0.3s!important;
            background-image: none!important;
        }
        
@media (min-width: 10px) and (max-width: 599px) {
    .flexbox {
        height: auto;
        margin-top: 50%;
    }
    .nr{
        width: 90%;
    }
    .top{
        top:5%;
    }
    .fooer{
        bottom:5%
    }
}