#phoneCode{
	display: none;
    opacity: 0;
    position: fixed;
    z-index: 2147483647;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    -moz-transition: opacity .5s;
    -o-transition: opacity .5s;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}
.phoneCodeBackground{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .6;
	filter: alpha(opacity=60);
	background-color: black;
}


.captcha-container {
	background: white;
	border-radius: 16px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 400px;
	max-width: 100%;
	
	position: absolute;
    top: 50%;
    left: 50%;
    -moz-transition: width .5s ease,height .5s ease;
    -o-transition: width .5s ease,height .5s ease;
    -webkit-transition: width .5s ease,height .5s ease;
    transition: width .5s ease,height .5s ease;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
	
}

.captcha-header {
	background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
	padding: 20px;
	text-align: center;
	color: white;
	font-size: 18px;
	font-weight: bold;
}

.puzzle-container {
	position: relative;
	width: 100%;
	height: 240px;
	background: #f8f9fa;
	overflow: hidden;
}

.puzzle-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.puzzle-piece {
	position: absolute;
	width: 60px;
	height: 60px;
	background: white;
	border: 2px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.puzzle-hole {
	position: absolute;
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	border: 2px dashed #fff;
	z-index: 5;
}

.slider-container {
	padding: 20px;
	background: #f8f9fa;
}

.slider-track {
	position: relative;
	width: 100%;
	height: 50px;
	background: #e9ecef;
	border-radius: 25px;
	overflow: hidden;
	cursor: pointer;
}

.slider-bg {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: linear-gradient(90deg, #4CAF50, #8BC34A);
	width: 0%;
	transition: width 0.3s ease;
	border-radius: 25px;
}

.slider-button {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 44px;
	height: 44px;
	background: white;
	border-radius: 50%;
	cursor: grab;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.slider-button:active {
	cursor: grabbing;
	transform: scale(1.1);
}

.slider-button::after {
	content: "→";
	font-size: 18px;
	color: #666;
	font-weight: bold;
}

.slider-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #666;
	font-size: 14px;
	pointer-events: none;
	z-index: 5;
}

.controls {
	padding: 20px;
	display: flex;
	gap: 10px;
}

.btn {
	flex: 1;
	padding: 12px 20px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-verify {
	background: #4CAF50;
	color: white;
}

.btn-verify:hover {
	background: #45a049;
	transform: translateY(-2px);
}

.btn-refresh {
	background: #2196F3;
	color: white;
}

.btn-refresh:hover {
	background: #1976D2;
	transform: translateY(-2px);
}

.status-message {
	padding: 15px 20px;
	text-align: center;
	font-weight: bold;
	display: none;
}

.status-success {
	background: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

.status-error {
	background: #f8d7da;
	color: #721c24;
	border-left: 4px solid #dc3545;
	position: absolute;
	width: 100%;
	bottom: 0;
	z-index: 98576543;
}

.loading {
	opacity: 0.6;
	pointer-events: none;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.shake {
	animation: shake 0.5s ease-in-out;
}

@keyframes success {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.success {
	animation: success 0.6s ease-in-out;
}


.controls a.geetest_close,.controls a.geetest_refresh_1{
	margin-left: 2%;
    width: 7%;
    cursor: pointer;
    text-decoration: none;
    vertical-align: top;
	position: relative;
    display: inline-block;
    height: 0;
    padding-bottom: 7%;
}
.controls a.geetest_close,.controls a.geetest_refresh_1{
	background-repeat: no-repeat;
    background-image: url('../image/phonesprite.png');
}
.controls a.geetest_close{
	margin-left: 0;
    overflow: hidden;
    background-size: 1083.33333%;
    background-position: 0 41.79775%
}
.controls a.geetest_close:hover{
	background-size: 1083.33333%;
    background-position: 0 48.53933%;
    overflow: visible
}
.controls a.geetest_refresh_1{
	overflow: hidden;
    background-size: 1083.33333%;
    background-position: 0 79.77528%
}
.controls a.geetest_refresh_1:hover{
	background-size: 1083.33333%;
    background-position: 0 86.51685%;
    overflow: visible
}

.controls .geetest_close_tip,.controls .geetest_refresh_tip{
    position: absolute;
    top: -32px;
    left: 10px;
    border-radius: 2px;
    padding: 0 4px;
    height: 22px;
    min-width: 50px;
    line-height: 22px;
    background-color: #5F5F5F;
    white-space: nowrap;
    font-size: 12px;
    text-align: center;
    color: white
}