<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Special+Elite&amp;display=swap");

body, html { font-size: 100%; 	padding: 0; margin: 0;}

/* Reset */
*,
*:after,
*:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

body{
	background: #553e8f;
	color: #D5D6E2;
	font-weight: 500;
	font-size: 1.05em;
	font-family: "Microsoft YaHei","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
* {
  box-sizing: border-box;
}
.setPw{
  padding: 50px 0;
}
.pwGuide {
  position: relative;
  width: 250px;
  height: 160px;
  margin: 0 auto;
}
.pwGuide .pwList {
  position: absolute;
  top: 25px;
  left: 52px;
  width: 194px;
  height: 104px;
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 3px 0 0 #cfdae1;
  transform: rotate(-5deg) translate3d(0, 0, 0);
  font-family: 'Special Elite', cursive;
  font-size: 12px;
}
.pwGuide .pwList:before {
  content: '';
  width: 2px;
  height: 100%;
  background: #e45998;
  position: absolute;
  left: 22px;
}
.pwGuide .pwList ul {
  padding:0;
}
.pwGuide .pwList ul li {
  padding-bottom: 3px;
  margin-bottom: 6px;
  padding-left: 34px;
  border-bottom: 1px solid #d8cbf5;
}
.pwGuide .pwList ul li span {
  position: relative;
  color: #423666;
}
.pwGuide .pwList ul li span:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #70d5b9;
  position: absolute;
  left: 0;
  top: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.pwGuide .pwList ul li span.valid:after {
  transform: scaleX(1);
}
.pwGuide .pwCheck {
  position: absolute;
  fill: none;
  top: 84px;
  right: 10px;
}
.pwCheck {
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.86, 0.45, 0.72, 1.2);
}
.pwCheck.pwValid {
  transform: scale(1);
}
.inp-password {
  position: relative;
  margin: 60px 0 0 0;
}
.inp-password input {
  background: #3a296a;
  width: 100%;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
  padding: 12px 16px;
  margin: 0;
  color: #fff;
}
.inp-password input:focus {
  outline: none;
}
.inp-password #showPW {
  position: absolute;
  right: 15px;
  top: 14px;
  line-height: 14px;
  cursor: pointer;
  color: #f6bd41;
  font-size: 12px;
  font-weight: bold;
}
.inp-password #showPW:after {
  content: '隐藏';
}
.inp-password #showPW.hide:after {
  content: '显示';
}
.dribbble {
  position: fixed;
  right: 20px;
  bottom: 16px;
  color: #251a46;
  font-family: 'Special Elite', cursive;
  font-size: 17px;
  text-decoration: none;
}
::-webkit-input-placeholder {
  color: #ad9ed3;
}</pre></body></html>