/* banner 按钮容器（保留选择器用于未来扩展） */

.window_btn2 {
    height: 72px;
    border-radius: 40px;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    padding: 0 60px;
    /* 从上往下背景颜色渐变 */
    background: linear-gradient(to bottom, #50C8FF, #01D17B);
    /* 背景颜色过渡效果 */
    transition: background 0.3s ease;

    
}
.window_btn2:hover{
    background: linear-gradient(to bottom, #219AE5, #01D17B);
}


/* 弹窗 */
.popup_box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_content{
   width: 520px;
   max-width: 100%;
   border-radius: 12px;
   padding: 36px 28px;
   /* background: linear-gradient(180deg, rgba(18,20,32,0.88), rgba(11,12,20,0.95)); */
   background: #11141D;
   color: #ffffff;
   box-shadow: 0 10px 30px rgba(0,0,0,0.6);
   text-align: center;
   font-family: inherit;
   position: relative;
}

.popup_close_btn{
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    color: #9fb6d9;
    font-size: 22px;
    cursor: pointer;
}

.popup_content h1{
    font-size: 24px;
    font-weight: bold;
}
.popup_content p{
    font-size: 16px;
    color: #333;
}

/* 弹窗内部样式 */
.popup_gift{
    width:96px;
    height:96px;
    margin:0 auto 14px;
    border-radius:50%;
    /* 使用双层 background：内层作为内容背景，外层作为渐变边框 */
    background:
        linear-gradient(#11141D, #11141D) padding-box,
        linear-gradient(135deg, #4bb6ff, #01D17B, #7c4dff) border-box;
    border: 3px solid transparent;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 0 20px rgba(75, 182, 255, 0.3);
}
.popup_gift_inner{
    width:80px;
    height:80px;
    border-radius:50%;
    overflow: hidden;
}
.popup_gift_inner_img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}

.popup_title{
    color:#e6f2ff;
    font-size:16px;
    line-height:1.5;
    margin-bottom:6px;
}
.popup_sub{
    color:#c9d6e6;
    font-size:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:8px 0;
}
.popup_sub_icon{
    width:18px;
    height:18px;
    margin-right:8px;
    border-radius:4px;
    background:linear-gradient(180deg,#ff9fb8,#ff6b8a);
    display:inline-block;
}
.popup_btn{
    margin-top:18px;
    background:linear-gradient(90deg,#3fb0ff,#01D17B);
    border:none;
    color:#fff;
    padding:12px 42px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    box-shadow:0 6px 18px rgba(59,96,255,0.18);
}
.popup_btn:hover{
    filter:brightness(0.98);
}


/* 登录弹窗样式 */
.login_popup_box{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.login_popup_content{
    width: 420px;
    max-width: 100%;
    background: #0f1318;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    color: #eaf3ff;
    position: relative;
    font-family: inherit;
}
.login_close_btn{
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    color: #9fb6d9;
    font-size: 22px;
    cursor: pointer;
}
.login_popup_title h1{
    margin: 0 0 14px 0;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
}
.login_form{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.input_row{
    display:flex;
    align-items:center;
    gap:12px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    padding: 12px;
}
.input_icon{
    width:22px;
    height:22px;
    text-align: center;
    line-height: 22px;
    flex:0 0 22px;
    border-radius:4px;
    background: linear-gradient(180deg,#4bb6ff,#01D17B);
}
.phone_icon{ background-image: none; }
.code_icon{ background-image: none; }
.input_row input{
    flex:1;
    border: none;
    outline: none;
    background: transparent;
    color: #eaf3ff;
    font-size: 14px;
}
.code_row{
    position:relative;
}
.get_code_btn{
    margin-left:8px;
    background: transparent;
    border: none;
    color: #39d88a;
    cursor: pointer;
    font-weight:600;
}
.get_code_btn[disabled]{
    opacity:0.6;
    cursor: default;
}
.login_submit{
    margin-top:6px;
    background: linear-gradient(90deg,#3fb0ff,#01D17B);
    border:none;
    color:#fff;
    padding:12px;
    border-radius:8px;
    font-size:15px;
    cursor:pointer;
    font-weight:600;
}
.login_tips{
    margin-top:8px;
    font-size:12px;
    color:#9fb6d9;
    text-align:center;
}
.login_tips_register{
    margin-top:8px;
    font-size:12px;
    color:#9fb6d9;
    text-align:right;
}



.right_box2{
    width: 700px;
    height: 470px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 16px;
    padding: 8px;
    border: 2px solid transparent;
    /* 使用双层 background：内层作为内容背景，外层作为渐变边框（支持圆角） */
    background:
        linear-gradient(#111318, #111318) padding-box,
        linear-gradient(90deg, #4ddcf1, #7c4dff, #01D17B) border-box;
    box-shadow:
        0 12px 30px rgba(124,77,255,0.18),
        0 0 60px rgba(77,220,241,0.12);
    overflow: visible;
    
}
.right_box2::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 160%;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(124,77,255,0.30) 0%, rgba(77,220,241,0.12) 30%, rgba(124,77,255,0.00) 70%);
    filter: blur(40px);
    z-index: 0; /* 保持在图片下方 */
}
.pic2{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2; /* 确保图片位于光晕之上 */
}

/* banner字体标题 */
.banner_title_content{
	padding: 28px 0;
	font-family: "PingFang SC","Microsoft Yahei", "Helvetica Neue", Arial, sans-serif;
	color:#fff;
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 90vw;
	margin: 0 auto;
}

.banner_title_content .title_top{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:18px;
	margin-bottom: 12px;
}
.banner_title_content .title_logo{
	font-size:20px;
	font-weight:700;
	letter-spacing:2px;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.banner_title_content .title_decoration{
	display:inline-block;
	width:260px;
	height:4px;
	border-radius:2px;
	background: linear-gradient(90deg,#7c6bff,#01D17B);
	opacity:0.95;
}

.banner_title_content .title_main{
	font-size:110px;
	font-weight:900;
	letter-spacing:10px;
	line-height:1;
	margin: 0 auto;
	display:block;
	/* gradient text */
	/* background: linear-gradient(180deg,#eaf3ff 0%, #c9d6ff 60%); */
    background: linear-gradient(180deg, #7c6bff 0%, #01D17B 60%);;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	/* subtle outline and shadow to mimic the design */
	-webkit-text-stroke: 1px rgba(255,255,255,0.08);
	transform: skewX(-6deg);
}
.banner_title_content .title_main em{
	font-style: normal;
	display: inline-block;
	margin-left: 18px;
	transform: skewX(-6deg);
}

.banner_title_content .title_sub{
	margin-top:30px;
	color:#ffffff;
	font-size:18px;
	display:flex;
	gap:28px;
	justify-content:center;
	align-items:center;
	opacity:0.95;
}
.banner_title_content .title_sub span{
	position:relative;
	padding-left:6px;
}
.banner_title_content .title_sub span::before{
	content: "·";
	color: #fff;
	font-weight:700;
	margin-right:10px;
}

/* responsive adjustments */
@media (max-width: 1200px){
	.banner_title_content .title_main{ font-size:72px; letter-spacing:6px; }
	.banner_title_content .title_logo{ font-size:18px; }
	.banner_title_content .title_decoration{ width:160px; }
	.right_box2{
		width: 500px;
		height: 360px;
	}
}
@media (max-width: 768px){
	.banner_title_content{ padding:18px 0; }
	.banner_title_content .title_main{ font-size:36px; letter-spacing:2px; transform:none; -webkit-text-stroke:0; text-shadow:none; -webkit-text-fill-color: #ffffff; background:none; color:#eaf3ff;}
	.banner_title_content .title_top{ gap:8px; margin-bottom:6px; }
	.banner_title_content .title_decoration{ display:none; }
	.banner_title_content .title_sub{ flex-direction:column; gap:6px; font-size:14px; margin-top:8px; }
	.right_box2{
		width: 90vw;
		max-width: 400px;
		height: 270px;
		right: -5%;
		top: 50%;
		transform: translateY(-50%);
	}
}
@media (max-width: 480px){
	.right_box2{
		width: 85vw;
		max-width: 350px;
		height: 230px;
		right: -5%;
	}
}

.logo-container{
    /* background: pink; */
    /* position: fixed;
    z-index: 9;
    left: 0;
    right: 0; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}


/* 页脚样式 */
.page-footer {
    background: linear-gradient(180deg, #0a0c12 0%, #11141d 100%);
    color: #9fb6d9;
    padding: 60px 0 20px;
    /* margin-top: 80px; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.05); */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
}

.footer-logo {
    /* flex: 0 0 280px; */
}

.footer-logo img {
    width: 160px;
    margin-bottom: 16px;
}

.footer-slogan {
    font-size: 14px;
    color: #7a8ba3;
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 16px;
    color: #eaf3ff;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #9fb6d9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4bb6ff;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9fb6d9;
    font-size: 14px;
}

.footer-contact .iconfont {
    font-size: 16px;
    color: #4bb6ff;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 8px 0;
    font-size: 13px;
    color: #7a8ba3;
}

.footer-icp a {
    color: #7a8ba3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-icp a:hover {
    color: #9fb6d9;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-logo {
        flex: 0 0 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-links {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .page-footer {
        padding: 40px 0 20px;
        /* margin-top: 60px; */
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .page-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .footer-logo img {
        width: 140px;
    }
}
