

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	/* min-height: 100vh; */
	padding: 15px;
	touch-action: pan-y;
	/* 优化触摸滚动 */
}
.sliderSty {
	 width: 100vw; 
	 height: 100vh;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 
}
.verify-title{
	font-size: 16px;
}
/* 滑块样式 */
.verify-container {
	width: 100%;
	max-width: 320px;
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	margin: auto;
	z-index: 99;
}

.slider-wrapper {
	position: relative;
	width: 100%;
	height: 44px;
	margin: 25px 0;
	touch-action: none;
	/* 禁用默认触摸行为 */
}

.slider-bg {
	width: 100%;
	height: 100%;
	background: #f1f1f1;
	border-radius: 22px;
	position: relative;
	overflow: hidden;
}

.slider-progress {
	height: 100%;
	background: linear-gradient(to right, #26c6da, #00acc1);
	border-radius: 22px;
	width: 0;
	/* transition: width 0.2s; */
}

.slider-thumb {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #00acc1;
	font-size: 20px;
	user-select: none;
	z-index: 10;
	/* transition: transform 0.1s; */
}

.slider-thumb.active {
	transform: translateY(-50%) scale(1.05);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.slider-text {
	text-align: center;
	color: #999;
	font-size: 14px;
	margin-top: 10px;
}

.success-message {
	text-align: center;
	color: #4caf50;
	font-weight: bold;
	font-size: 16px;
	margin-top: 15px;
	opacity: 0;
	transform: translateY(10px);
	/* transition: all 0.2s; */
}

.success-message.show {
	opacity: 1;
	transform: translateY(0);
}

/* 登录页样式 */
.svgIconSty {
	position: absolute;
	top: 14px;
	right: 65px;
}

.seat {
	height: 40px;
}

.login_body_body {
	position: relative;
}

::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #157cb3;
}

/deep/ .el-checkbox__inner {
	margin-right: -3px;
	border: 1px solid #157cb3;
}


.login_column {
	height: 20%;
	width: 20%;
}

.login_column img,
.flex-body {
	width: 100%;
	height: 100%;
}

.login_content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 9;
}



.body_input {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
}

.input-group {
	position: relative;
	padding: 5px 0;
}
input::placeholder{
	color: #208bb5; /* 红色 */
	    opacity: 1; /* 确保颜色完全显示 */
		font-size: 13px;
}
.input {
	border: solid 1.5px #9e9e9e;
	border-radius: 1px;
	background: none;
	padding: 1px;
	font-size: 1px;
	color: #00f6ff;
	transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.user-label {
	position: absolute;
	left: 27px;
	font-size: 13px;
	color: #999999;
	pointer-events: none;
	transform: translateY(15px);
	transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input:focus {
	outline: none;
	border: 1px solid #00f6ff;
}

.input:focus~label,
input:valid~label {
	transform: translateY(-50%);
	background-color: #fff;
	padding: 8px 1px 1px 1px;
	position: absolute;
	left: 8px;
	color: #0971e1;
}

.input_smsuse {
	background-color: rgba(9, 54, 77, 1);
	border: none;
}

.input_password {
	background-image: url("/views/static/image/login/passWordImg.png");
	background-position: 6px;
	background-size: 10% 60%;
	background-repeat: no-repeat;
	background-color: rgba(9, 54, 77, 1);
	border: none;
}

.input_user {
	background-image: url("/views/static/image/login/userNameImg.png");
	background-size: 8% 54%;
	background-position: 6px;
	background-repeat: no-repeat;
	background-color: rgba(9, 54, 77, 1);
	border: none;
}

.body_input input {
	margin: 5px 0;
	height: 36px;
	width: 216px;
	padding-left: 30px;
	font-size: 13px;
}

.body_pxber {
	display: flex;
	justify-content: center;
	font-size: 12px;
	padding: 12px 52px 10px 52px;
	color: #999999;
}

/deep/ .el-checkbox__label {
	color: #999999;
	font-size: 12px;
}

.body_login {
	padding: 30px 0 16px 0;
	display: flex;
	justify-content: center;
}

.login_foot {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	font-size: 13px;
	color: #0097b8;
	text-align: center;
}



/deep/ .el-checkbox__input.is-checked+.el-checkbox__label {
	color: #0860bf;
}

/deep/ .el-checkbox__input.is-checked .el-checkbox__inner,
.el-checkbox__input.is-indeterminate .el-checkbox__inner {
	background-color: #0860bf;
	border-color: #0860bf;
}

.checkingBut {
	width: 76px;
	height: 35px;
	text-align: center;
	padding: 3px;
	line-height: 29px;
	color: white;
	background: linear-gradient(270deg, #00b9ff 0%, #0080ff 100%);
	white-space: nowrap;
	cursor: pointer;
}

.checking {
	display: flex;
	align-items: center;
}

.setup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
}


.setupTitle {
	width: 100%;
	height: 35px;
	font-size: 18px;
	padding: 8px;
	line-height: 21px;
	font-weight: bold;
	position: relative;
	color: rgba(0, 246, 255, .7);
}

.close {
	position: absolute;
	top: 8px;
	right: 6px;
	width: 20px;
	height: 20px;
	background: url(/views/static/image/login/close-wit.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	white-space: nowrap;
	cursor: pointer;
}

.close:hover {
	position: absolute;
	top: 8px;
	right: 6px;
	width: 20px;
	height: 20px;
	background: url(/views/static/image/login/close-red.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	white-space: nowrap;
	cursor: pointer;
}


.divider {
	height: 10px;
	border: none;
	border-bottom: 2px solid rgba(0, 246, 255, .7);
	margin-bottom: 10px;
}

.safetypxinder {
	margin-bottom: 20px;
}

.passSty {
	margin-top: 15px;
}

.newPassWord:focus {
	outline: none;
	border: 1px solid #00f6ff;
}

.newTile {
	width: 96px;
	display: flex;
	justify-content: end;
}

/* 忘记密码弹窗内样式 */
.setupContent {
	padding: 8px;
	color: rgba(0, 246, 255, .7);
}

.setupSta {
	margin-bottom: 10px;
	margin-top: 10px;
}


.smsReminder{
	display: flex;
}
.smsNum:focus {
	outline: none;
	border: 1px solid #00f6ff;
}

.smsNumBut {
	width: 90px;
	margin-left: 10px;
	margin-top: 10px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: white;
	border-radius: 4px;
	background: linear-gradient(270deg, #00b9ff 0%, #0080ff 100%);
	white-space: nowrap;
	cursor: pointer;
}

.phonepxinder {
	margin-top: 10px;
	width: 250px;
	height: 40px;
	background-color: #09364d;
	border: none;
	border-radius: 4px;
	color: #00f6ff;
	padding-left: 5px;
	font-size: 16px;
}

.phonepxinder:focus {
	outline: none;
	border: 1px solid #00f6ff;
}

.setupBut {
	width: 300px;
	height: 35px;
	background: linear-gradient(270deg, #00b9ff 0%, #0080ff 100%);
	border-radius: 4px;
	text-align: center;
	line-height: 35px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 20px;
	white-space: nowrap;
	cursor: pointer;
}

@media(max-width: 768px) {
	/* color: #1ba0e6 */
	.body_error {
		position: absolute;
		bottom: 104px;
		left: 56px;
		color: red;
		padding: 0px 0 19px 0;
		height: 40px;
		font-size: 12px;
	}
	.body_button {
		line-height: 18px;
		color: #fff;
		cursor: pointer;
		width: 216px;
		height: 36px;
		padding: 10px 0;
		border-radius: 1px;
		box-shadow: 0px 3px 6px rgba(0, 128, 255, 0.16);
		background: linear-gradient(270deg, #00b9ff 0%, #0080ff 100%);
		text-align: center;
		font-size: 15px;
	}
	
	.body_button:hover {
		background-color: #0860bf;
	}
	
	.body_button:active {
		background-color: #0753a6;
	}
	.forget {
		white-space: nowrap;
		cursor: pointer;
		text-align: center;
		color: #1ba0e6;
		font-size: 13px;
	}
	
	.forget:hover {
		color: #0860bf;
	}
  .smsNum{
    margin-top: 10px;
    width: 187px;
    height: 40px;
    background-color: #09364d;
    border: none;
    border-radius: 4px;
    color: #00f6ff;
    padding-left: 5px;
    font-size: 16px;
  }
  .step2{
    width: 100%;
    background-color: #0C445E;
    height: 300px;
    padding: 8px;
    color: rgba(0,246,255,.7);
  }
  .login_header {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    color: rgba(0,246,255,.7);
    font-size: 30px;
    padding-top: 32px;
    justify-content: center;
    margin-top: 60px;
    letter-spacing: 2px;
    
    font-family: "KaiTi", Times, serif;
  }
  .login {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #204b5f;
  }
  .login_body_right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(/views/static/image/login/loginImg.png);

    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 320px;

    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .login_body_header {
    font-size: 18px;
    color: rgba(0, 246, 255, 0.7);
    padding-top: 50px;
  }
  .setupBox{
    width: 320px;
    background-color: #0C445E;
  }
  .step3{
    width: 320px;
    background-color: #0C445E;

    padding: 8px;
    color: rgba(0,246,255,.7);
  }
  .define{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 288px;
    height: 30px;
    background:linear-gradient(270deg,#00b9ff 0%,#0080ff 100%);
    color: white;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    line-height: 30px;
    white-space: nowrap;
    cursor: pointer;
  }
  .newPassWord{
    width: 200px;
    height: 30px;
    background-color: #09364d;
    border: none;
    border-radius: 4px;
    color: #00f6ff;
    padding-left: 5px;
    font-size: 16px;
  }
}
/*pc端样式 */
@media(min-width: 769px) {
	.body_error {
		position: absolute;
		bottom: 104px;
		left: 104px;
		color: red;
		padding: 0px 0 19px 0;
		height: 40px;
		font-size: 12px;
	}
	.body_button {
		line-height: 18px;
		color: #fff;
		cursor: pointer;
		width: 216px;
		height: 36px;
		padding: 10px 0;
		border-radius: 1px;
		box-shadow: 0px 3px 6px rgba(0, 128, 255, 0.16);
		background: linear-gradient(270deg, #00b9ff 0%, #0080ff 100%);
		text-align: center;
		font-size: 15px;
	}
	
	.body_button:hover {
		background-color: #0860bf;
	}
	
	.body_button:active {
		background-color: #0753a6;
	}
	.forget {
		white-space: nowrap;
		cursor: pointer;
		text-align: center;
		color: #1ba0e6;
		font-size: 13px;
	}
	
	.forget:hover {
		color: #0860bf;
	}
  .smsNum{
    margin-top: 10px;
    width: 150px;
    height: 40px;
    background-color: #09364d;
    border: none;
    border-radius: 4px;
    color: #00f6ff;
    padding-left: 5px;
    font-size: 16px;
  }
  .step2{
    width: 450px;
    background-color: #0C445E;
    height: 300px;
    padding: 8px;
    color: rgba(0,246,255,.7);
  }
  .login_header {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    color: rgba(0,246,255,.7);
    font-size: 52px;
    padding-top: 32px;
    justify-content: center;

    letter-spacing: 2px;
    font-family: "KaiTi", Times, serif;
  }
  .login {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .login_body_right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(/views/static/image/login/loginImg.png);

    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 420px;

    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .login_body_header {
    font-size: 22px;
    color: rgba(0, 246, 255, 0.7);
    padding-top: 50px;
  }
  .setupBox{
    width: 450px;
    background-color: #0C445E;

  }
  .step3{
    width: 450px;
    background-color: #0C445E;

    padding: 8px;
    color: rgba(0,246,255,.7);
  }
  .define{
    margin-top: 20px;
    margin-bottom: 20px;
    width: 250px;
    height: 40px;
    background:linear-gradient(270deg,#00b9ff 0%,#0080ff 100%);
    color: white;
    border-radius: 4px;
    text-align: center;
    font-weight: 700;
    line-height: 40px;
    white-space: nowrap;
    cursor: pointer;
  }
  .newPassWord{
    width: 250px;
    height: 40px;
    background-color: #09364d;
    border: none;
    border-radius: 4px;
    color: #00f6ff;
    padding-left: 5px;
    font-size: 16px;
  }
}
