/* @font-face {
  font-family: "思源黑体 Bold";font-weight: 700;src: url("//at.alicdn.com/wf/webfont/rS2gw5Ud34Yv/Dp7yscaEEv5W.woff2") format("woff2"),
  url("//at.alicdn.com/wf/webfont/rS2gw5Ud34Yv/AXGtogWPjEXF.woff") format("woff");
  font-display: swap;
}
 */
a,a:active,a:focus{
	outline: none;
}
ul{
	list-style: none;
}
input{
	line-height: normal;
}
@font-face {
    font-family: 'Ubuntu';
    src: url('/_lj_fonts/Medium.woff2') format('woff2'); 
}

@font-face {
    font-family: 'Playfair Display';
    src: url('/_lj_fonts/Regular.woff2') format('woff2'); 
}

html{
	overflow-x: hidden;
}
html, body {
	width: 100vw;
	height: 100%;
	margin: 0;
	padding: 0;
}
button:focus, button:active{
	outline: none;
}

body{
	position: relative;
}

body > header{
	width: 100vw;
	height: auto;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100;
	transition: all .2s ease; /* 添加过渡效果 */
}
body > header.compressed {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影增强视觉效果 */
}
body > header .headerDiv{
	transition: all .2s ease; /* 添加过渡效果 */
}
.headerDiv-inner{
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
}
/* 压缩状态下隐藏顶部导航区域 */
body > header.compressed .headerDiv .topNav,
body > header.compressed .headerDiv .langList,
body > header.compressed .headerDiv .contactusOrsearch {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    transition: all .2s ease;
	padding-bottom: 3px;
}
body > header .headerDiv .topNav{
	width: 100%;
	margin-top: 20px;
	padding-bottom: 10px;
	transition: all .2s ease; /* 添加过渡效果 */
}
body > header .headerDiv .topNav ul{
	display: flex;
	align-items: center;
	list-style: none;
	justify-content: flex-end;
}
body > header .headerDiv .topNav ul li{
	margin: 0 14px;
}
body > header .headerDiv .topNav ul li i{
	margin-left: 5px;
}
body > header .headerDiv .topNav ul li a{
	font-size: 14px;
	color: #444;
	outline: none;
}
body > header .headerDiv .langList{
	margin: 5px 0px;
	padding-bottom: 5px;
}
body > header .headerDiv .langList ul{
	display: flex;
	align-items: center;
	list-style: none;
	justify-content: flex-end;
}
body > header .headerDiv .langList ul li{
	margin: 0px 5px;
	padding: 3px 0;
}
body > header .headerDiv .langList ul li a{
	outline: none;
}
body > header .headerDiv .langList ul li img{
	width: 30px;
	border: 1px solid #dfdfdf;
}

body > header .headerDiv .contactusOrsearch{
	display: flex;
}
body > header .headerDiv .contactusOrsearch>div{
	height: 45px;
	line-height: 45px;
}
body > header .headerDiv .contactusOrsearch div.l{
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1;
}
body > header .headerDiv .contactusOrsearch div.l .wechat{
	background: #20C100;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
	cursor: pointer;
}
body > header .headerDiv .contactusOrsearch div.l .wechat i{
	color: #fff;
	font-size: 22px;
}
body > header .headerDiv .contactusOrsearch div.l .wechat .qrcode{
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 10px);
	z-index: 9;
	padding: 10px;
	background: #fff;
	border-radius: 6px;
	box-shadow: 1px 1px 5px 5px rgba(0, 0, 0, 0.1);
}
body > header .headerDiv .contactusOrsearch div.l .wechat:hover .qrcode{
	display: block;
}
body > header .headerDiv .contactusOrsearch div.l .wechat .qrcode>img{
	display: block;
	width: 120px;
	max-width: none;
}
body > header .headerDiv .contactusOrsearch div.l .wechat .qrcode>p{
	font-size: 0.625rem;
	color: #20C100;
	line-height: normal;
	text-align: center;
	margin-top: 10px;
}
body > header .headerDiv .contactusOrsearch div.l .tel{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-right: 15px;
}
body > header .headerDiv .contactusOrsearch div.l .tel img{
	width: 32px;
	height: 45px;
}
body > header .headerDiv .contactusOrsearch div.l .tel i{
	font-size: 30px;
	color: #fff;
	margin-right: 5px;
}
body > header .headerDiv .contactusOrsearch div.l .tel .text{
	height: 40px;
	position: relative;
	font-size: 20px;
	color: #fff;
    font-weight: 600;
	background: #00b050;
	padding: 0 6px;
	border-radius: 6px;
	display: flex;
	align-items: center;
}
body > header .headerDiv .contactusOrsearch div.l .email{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
}
body > header .headerDiv .contactusOrsearch div.l .email img{
	width: 32px;
	height: 19px;
}
body > header .headerDiv .contactusOrsearch div.l .email .text{
	font-size: 16px;
	color: #FF2370;
	position: relative;
}
body > header .headerDiv .contactusOrsearch div.r{
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	position: relative;
}
body > header .headerDiv .contactusOrsearch div.r .search-box{
	display: flex;
	flex-direction: row;
	height: 40px;
}
body > header .headerDiv .contactusOrsearch div.r .search-box input{
	font-size: 14px;
	height: 40px;
	line-height: 40px;
	outline: none;
	border: none;
	border: 1px solid #888;
	border-right: 0;
	border-radius: 5px 0 0 5px;
	padding-left: 10px;
	box-sizing: border-box;
}
body > header .headerDiv .contactusOrsearch div.r .search-box button{
	background: #FF2370;
	width: 40px;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
}
body > header .headerDiv .contactusOrsearch div.r .search-box button i{
	color: #fff;
}
body > header .headerDiv .contactusOrsearch .r img{
	position: absolute;
    left: 626px;
    /* z-index: 100; */
    top: 5px;
}
body > header .bottomNavDiv{
	width: 100%;
	background-color: #FF2370;/* rgba(255, 35, 112); */
	margin-top: 24px;
	transition: all .2s ease;/* 添加过渡效果 */
}
/* 压缩状态下的底部导航区�?*/
body > header.compressed .bottomNavDiv {
    margin-top: 0;
}
body > header .bottomNavDiv .bottomNavDiv-list{
	max-width: 1320px;
	padding: 0 10px;
	width: 100%;
	margin: 0 auto;
}
body > header .bottomNavDiv .bottomNavDiv-list ul{
	display: flex;
	align-items: center;
	list-style: none;
	height: 60px;
	/* line-height: 60px; */
	color: #fff;
	transition: all .2s ease;/*添加过渡效果 */
}
/* 压缩状态下的底部导航列表高�?*/
body > header.compressed .bottomNavDiv .bottomNavDiv-list ul {
    height: 60px; /* 压缩后的高度 */
	margin-top: 20px;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li{
	flex: 1;
	font-size: 15px;
	line-height: 20px;
	/* width: 90%; */
	text-align: center;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li a{
	color: #fff;
	outline: none;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li:last-of-type a{
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 18px;
	border-radius: 12px;
	border: none;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 15.5px;
	color: #fff;
	background: linear-gradient(135deg, rgb(236, 27, 138) 0%, rgb(168, 85, 247) 48%, rgb(3, 248, 232) 100%) 0% 0% / 200% 200%;
	animation: 3s ease infinite gradient-pan;
	box-shadow: rgba(236, 27, 138, 0.38) 0 4px 20px, rgba(168, 85, 247, 0.2) 0 4px 24px;
	transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
	white-space: nowrap;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li:last-of-type a::before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -35%;
	width: 30%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	animation: 2.8s ease-in-out infinite shimmer-sweep;
	pointer-events: none;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li:last-of-type a:hover {
	transform: translateY(-1px);
	box-shadow: rgba(236, 27, 138, 0.44) 0 6px 24px, rgba(168, 85, 247, 0.24) 0 6px 28px;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li.qt{
	width: 60%;
}
body > header .bottomNavDiv .bottomNavDiv-list ul li img{
	max-width: 100%;
	height: auto;
	position: relative;
	bottom: 35px;
	transition: all .2s ease;/*添加过渡效果*/
}
/* 压缩状态下的中心图�?*/
body > header.compressed .bottomNavDiv .bottomNavDiv-list ul li img {
	max-width: 60%;
    bottom: 7px;
}
/* 共同banner模块 */
.indexBaner{
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
	top: 233px;
	padding-top: 43.68%;
	contain: layout style paint;
	background-color: #F2F2F2;
}
.indexBaner img{
	position: absolute;
	z-index: 1;
	width: 100%;
	max-width: 1920px;
	height: auto;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}
.indexBaner .indexBanerDiv{
	display: block;
	position: absolute;
	z-index: 2;
	top: 60%;
	left: 40%;
	text-align: left;
	width: 50%;
	max-width: 1600px;
	transform: translate(-50%, -80%);	
}
.indexBaner .indexBanerDiv div.text{
	max-width:320px;
	padding: 25px 20px;
	background-color: #F4702F;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	border-bottom: 4px solid #8B4513;
	position: relative;
}
.indexBaner .indexBanerDiv div.text h1{
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1;
}
.indexBaner .indexBanerDiv div.text h5{
	width: 70%;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 500;
}
.indexBaner .indexBanerDiv div.btn{
	position: absolute;
	top:calc(100% - 20px);
	left: calc(100% - 20px);
	text-align: center;
	width: 140px;
	padding: 8px 12px;
	background-color: #633786;
	border-radius: 6px;
	border-bottom: 4px solid #4B0082;
}
.indexBaner .indexBanerDiv div.btn a{
	color: #fff;
	font-size: 16px;
}

body > header .logo-box{
	margin-left: 10px;
	width: 42px;
	display: none;
}
body > header .logo-box img{
	height: 46px;
	max-width: none;
	width: auto;
}
.mobile-menu {
	width: 30px;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 10px	;
}
.mobile-menu span{
	display: block;
	width: 100%;
	height: 3px;
	background: #FFFFFF;
	margin: 3px 0;
	border-radius: 1.5px;
	transition: all .2s linear;
}
.mobile-menu.active span:nth-child(1) {
    transform: rotate(32deg) translateX(2px);
    transform-origin: left;
}
.mobile-menu.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu.active span:nth-child(3) {
	transform: rotate(-32deg) translateX(2px);
	transform-origin: left;
}

/* ----------------------------------- */
.topNav-child{
	position: fixed;
	z-index: 9;
	display: none;
}
.topNav-child.active{
	display: block;
}
.topNav-child .topNav-child-list{
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
	display: none;
}
.topNav-child .topNav-child-list li a{
	color: #FF2370;
	font-size: 16px;
	line-height: 30px;
}
.topNav-child .topNav-child-list.active{
	display: block;
}
/* .topNav-child .topNav-child-list:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -10px;
    top: -20px;
    border: 10px solid;
    border-color: transparent transparent #fff transparent;
} */

.verify{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	display: none;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.6);
}
.verify.show{
	display: flex;
}
.verify .outer{
	background-color: #fff;
	padding: 20px;
	border-radius: 6px;
	width: 300px;
}
.verify .outer .inner{
	display: flex;
	flex-direction: column;
	gap: 20px;

}
.verify .outer .inner .img-btn{
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.verify .outer .inner .img-btn .img-box{
	flex: 1;
}
.verify .outer .inner .img-btn .img-box img{
	width: 100%;
}
.verify .outer .inner .img-btn button{
	color: #0070C0;
	cursor: pointer;
}
.verify .outer .inner input{
	border: 1px solid #ccc;
	padding: 0 10px;
	font-size: 14px;
	height: 35px;
	border-radius: 4px;
}
.verify .outer .inner .btns{
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.verify .outer .inner .btns .btn{
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	border: 1px solid #ccc;
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	border-radius: 4px;
}
.verify .outer .inner .btns .confirm{
	color: #0070C0;
	border: 1px solid #0070C0;
}

.aiDesignEntry-outer{
	padding: 0 18px;
}
.aiDesignEntry{
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 860px;
	margin: 44px auto;
	padding: 1px;
	border-radius: 30px;
	background: linear-gradient(135deg, #ff2f92 0%, #8f66ff 54%, #22d3ee 100%);
	box-shadow: 0 14px 34px rgba(255, 43, 126, 0.10), 0 8px 20px rgba(15, 23, 42, 0.05);
}
.aiDesignEntry::before,
.aiDesignEntry::after{
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	background: rgba(255, 255, 255, 0.12);
	filter: blur(8px);
}
.aiDesignEntry::before{
	width: 220px;
	height: 220px;
	top: -110px;
	left: -80px;
}
.aiDesignEntry::after{
	width: 260px;
	height: 260px;
	right: -140px;
	bottom: -140px;
}
.aiDesignEntry .form-iner{
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 860px;
	padding: 40px 40px 34px;
	border-radius: 29px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 252, 253, 0.97) 100%);
}
.aiEntryHeader{
	text-align: center;
}
.aiDesignEntry h2{
	padding: 0;
	margin: 0;
	font-size: 36px;
	line-height: 1.4;
	font-weight: 700;
	background-clip: text;
	color: transparent;
	text-shadow: none;
	background: linear-gradient(90deg, rgb(236, 27, 138) 0%, rgb(168, 85, 247) 50%, rgb(3, 248, 232) 100%) 0% 0% / 200% text;
    -webkit-text-fill-color: transparent;
    animation: 4s linear 0s infinite normal none running gradient-pan;
}
@keyframes gradient-pan{
	0% {
		background-position: 0%;
	}
	
	50% {
		background-position: 100%;
	}
	100% {
		background-position: 0%;
	}
}
.aiDesignEntry h2 .aiTitleAccent{
	color: inherit;
	font-size: inherit;
}
.aiEntryBadge{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 14px;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1px solid #e7d5ff;
	background: rgba(168, 85, 247, 0.06);
	box-shadow: 0 8px 20px rgba(124, 77, 255, 0.08);
	color: #7a7097;
	font-size: 12px;
	line-height: 1;
}
.aiEntryBadge span{
	width: 5px;
	height: 5px;
	border-radius: 50%;
	
}
@keyframes dot-blink{
	0%, 100% {
		opacity: .35;
		transform: scale(.85);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}
.aiEntryBadge span:nth-child(1){ background: #ec4899; animation: 1.9s ease-in-out 0s infinite normal none running dot-blink;}
.aiEntryBadge span:nth-child(2){ background: #a855f7; animation: 1.9s ease-in-out 0.35s infinite normal none running dot-blink;}
.aiEntryBadge span:nth-child(3){ background: #22d3ee; animation: 1.9s ease-in-out 0.7s infinite normal none running dot-blink;}
.aiEntryDivider{
	height: 1px;
	margin: 26px 0 24px;
	background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.15), transparent);
}
.aiDesignEntry p{
	padding: 0;
}
.aiDesignEntry .aiDesignGrid{
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px 18px;
	margin: 0;
	padding: 0;
}
.aiDesignEntry .aiDesignGrid li{
	width: auto;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.aiDesignEntry .aiDesignGrid li.aiDesignFull{
	grid-column: 1 / -1;
}
.aiDesignEntry .aiDesignGrid li.aiSubmitRow{
	grid-column: 1 / -1;
	padding-top: 8px;
	align-items: center;
}
.aiDesignEntry label{
	display: block;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7b8798;
	margin-bottom: 0;
	text-align: left;
	
}
.aiDesignEntry .aiFieldNote{
	color: #94a3b8;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	font-size: 11px;
}
.aiDesignEntry .form-iner .aiDesignGrid li input,
.aiDesignEntry .form-iner .aiDesignGrid li select,
.aiDesignEntry .form-iner .aiDesignGrid li textarea{
	width: 100%;
	border-radius: 9px;
	border: 1px solid #d8dce8;
	background: linear-gradient(180deg, #f7f7fb 0%, #f3f4f8 100%);
	color: #111827;
	font-size: 15px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
	transition: border-color 0.2s linear, box-shadow 0.2s linear, background-color 0.2s linear, transform 0.2s linear;
}
.aiDesignEntry .form-iner .aiDesignGrid li input,
.aiDesignEntry .form-iner .aiDesignGrid li select{
	height: 42px;
	padding: 0 14px;
}
.aiDesignEntry .form-iner .aiDesignGrid li select{
	appearance: none;
	padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.25L7 9.25L11 5.25' stroke='%23cbd5e1' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}
.aiDesignEntry .form-iner .aiDesignGrid li textarea{
	padding: 14px;
	min-height: 90px;
	resize: vertical;
}
.aiDesignEntry .form-iner .aiDesignGrid li input::placeholder,
.aiDesignEntry .form-iner .aiDesignGrid li select:invalid,
.aiDesignEntry .form-iner .aiDesignGrid li textarea::placeholder{
	color: #94a3b8;
}
.aiDesignEntry .form-iner .aiDesignGrid li input:focus,
.aiDesignEntry .form-iner .aiDesignGrid li select:focus,
.aiDesignEntry .form-iner .aiDesignGrid li textarea:focus{
	outline: none;
	border-color: #d946ef;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.11);
	transform: translateY(-1px);
}
.aiDesignEntry .form-iner .aiDesignGrid li select option:checked{
	background: #d946ef;
	color: #fff;
}
.aiDesignEntry .aiToggleGroup{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.aiDesignEntry .aiToggleOption{
	position: relative;
	margin: 0;
	cursor: pointer;
}
.aiDesignEntry .aiToggleOption input{
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.aiDesignEntry .form-iner .aiDesignGrid li .aiToggleOption input{
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	box-shadow: none;
}
.aiDesignEntry .aiToggleOption span{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	border: 1px solid #d8dce8;
	border-radius: 9px;
	background: rgb(249, 249, 252);
	color: #334155;
	font-size: 14px;
	box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
	transition: all 0.2s linear;
}
.aiDesignEntry .aiToggleOption:first-child span::before{
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M7 1.5V3.1M7 10.9V12.5M12.5 7H10.9M3.1 7H1.5M10.89 3.11L9.76 4.24M4.24 9.76L3.11 10.89M10.89 10.89L9.76 9.76M4.24 4.24L3.11 3.11' stroke='%23666' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='7' cy='7' r='2.3' fill='%23666'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
	flex: 0 0 14px;
}
.aiDesignEntry .aiToggleOption:last-child span::before{
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 8px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2.3 6.2L7 2.5L11.7 6.2V11.5H2.3V6.2Z' stroke='%2364748b' stroke-width='1.2' stroke-linejoin='round'/%3E%3Cpath d='M5.5 11.5V8.7H8.5V11.5' stroke='%2364748b' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
	flex: 0 0 14px;
}
.aiDesignEntry .aiToggleOption input:checked + span{
	background: linear-gradient(135deg, rgb(236, 27, 138), rgb(192, 0, 122));
	border-color: transparent;
	color: #fff;
	box-shadow: rgba(236, 27, 138, 0.32) 0px 3px 14px;
}
.aiDesignEntry .aiToggleOption input:checked + span::before{
	filter: brightness(2.6) saturate(0);
}
.aiDesignEntry .aiSubmitRow{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.aiDesignEntry .aiGenerateButtonWrap{
	display: flex;
	justify-content: center;
	width: 100%;
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton{
	position: relative;
	overflow: hidden;
	padding: 13px 52px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	font-family: "Space Grotesk", sans-serif;
	font-weight: 600;
	font-size: 15.5px;
	color: #fff;
	background: linear-gradient(135deg, rgb(236, 27, 138) 0%, rgb(168, 85, 247) 48%, rgb(3, 248, 232) 100%) 0% 0% / 200% 200%;
	animation: 3s ease infinite gradient-pan;
	box-shadow: rgba(236, 27, 138, 0.38) 0 4px 20px, rgba(168, 85, 247, 0.2) 0 4px 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 220px;
	justify-content: center;
	transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
	opacity: 1;
	transform: translateY(0);
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton .aiGenerateButtonGlow{
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
	pointer-events: none;
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton .aiGenerateButtonShimmer{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -35%;
	width: 30%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	animation: 2.8s ease-in-out infinite shimmer-sweep;
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton > span:last-child,
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton > svg{
	position: relative;
	z-index: 1;
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton svg{
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}
.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton:hover{
	transform: translateY(-1px);
	box-shadow: rgba(236, 27, 138, 0.44) 0 6px 24px, rgba(168, 85, 247, 0.24) 0 6px 28px;
}
@keyframes shimmer-sweep{
	0%{
		left: -35%;
	}
	100%{
		left: 115%;
	}
}
.aiDesignEntry [hidden]{
	display: none !important;
}

/* 自适应样式 */
@media screen and (max-width:1200px){
	.indexBaner .indexBanerDiv{
		transform: translate(-50%, -60%);
	}
	.indexBaner .indexBanerDiv div.text{
		max-width: 280px;
	}
	.indexBaner .indexBanerDiv div.text h1{
		font-size: 26px;
	}
	.indexBaner .indexBanerDiv div.text h5{
		font-size: 14px;
	}
	.indexBaner .indexBanerDiv div.btn{
		max-width: 120px;
	}
	.indexBaner .indexBanerDiv div.btn a{
		font-size: 14px;
	}
}

@media screen and (max-width:1080px){
	body > header .headerDiv .topNav ul li{
		margin: 0 5px;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel img{
		width:24px;
		height: 35px;
	}
	body > header .headerDiv .contactusOrsearch div.l .email img{
		width: 28px;
		height: 17px;
	}
	body > header .headerDiv .contactusOrsearch div.l .email span.text{
		font-size: 12px;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel i{
		font-size: 26px;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel .text{
		font-size: 18px;
	}
	body > header .headerDiv .contactusOrsearch div.l .email .text{
		font-size: 14px;
	}
}
@media screen and (max-width:1024px){
	.aiDesignEntry{
		margin: 40px auto;
	}
	.aiDesignEntry .form-iner{
		padding: 32px 26px 28px;
	}
	.aiDesignEntry .aiDesignGrid{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton{
		min-width: 280px;
	}
}

@media screen and (max-width:860px){
	
	body{
		padding-top: 60px;
	}
	body > header{
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.indexBaner{
		top: 0;
	}
	body > header .logo-box{
		display: block;
	}
	.mobile-menu{
		display: flex;
	}
	body > header{
		height: 60px;
		background: #FF2370;
	}
	body > header .headerDiv{
		position: fixed;
		right: -280px;
		width: 100%;
		top: 60px;
		z-index: 999;
		background: #FF2370;
		border-top: 1px solid #fff;
		overflow: hidden;
		transition: all .2s;
		width: 280px;
		height: calc(100dvh - 60px);
		overflow-y: auto;
	}
	body > header .headerDiv.active{
		right: 0px;
	}
	body > header .headerDiv .topNav{
		margin-top: 0;
		padding-top: 10px;
		padding-bottom: 0;
		display: block;
	}
	body > header .headerDiv .topNav ul{
		flex-wrap: wrap;
		justify-content: flex-start;
		display: block;
	}
	body > header .headerDiv .topNav ul li{
		color: #fff;
	}
	body > header .headerDiv .topNav ul li:nth-child(2n-2){
		display: none;
	}
	body > header .headerDiv .topNav ul li a{
		color: #fff;
	}
	body > header .headerDiv .contactusOrsearch div.l{
		display: block;
	}
	body > header.compressed .headerDiv .topNav{
		padding-bottom: 0px;
	}
	body > header .headerDiv .headerDiv-inner{
		background: #FF2370;
	}
	body > header .bottomNavDiv{
		margin-top: 0;
		border-top: 1px solid #fff;
	}
	body > header.compressed .bottomNavDiv .bottomNavDiv-list ul{
		margin-top: 0;
		height: auto;
	}
	body > header .bottomNavDiv .bottomNavDiv-list ul{
		flex-wrap: wrap;
		height: auto;
	}
	body > header .bottomNavDiv .bottomNavDiv-list{
		padding-bottom: 20px;
	}
	body > header .bottomNavDiv .bottomNavDiv-list ul{
		display: block;
	}
	body > header .bottomNavDiv .bottomNavDiv-list ul li{
		flex: none;
		margin-right: 10px;
		margin-top: 10px;
		margin-left: 5px;
		font-size: 14px;
		line-height: 18px;
		display: block;
		text-align: left;
	}
	body > header .headerDiv .langList{
		display: none;
	}
	body > header .headerDiv .contactusOrsearch div.r{
		display: none;
	}
	 body > header.compressed .headerDiv .contactusOrsearch{
		padding-bottom: 0;
	}
	body > header .headerDiv .contactusOrsearch>div{
		width: 100%;
		height: auto;
		line-height: 30px;
	}
	body > header .headerDiv .contactusOrsearch div.l{
		flex-wrap: wrap;
		padding: 10px 0;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel .text{
		color: #fff;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel{
		margin-right: 10px;
		margin-left: 5px;
	}
	body > header .headerDiv .contactusOrsearch div.l .tel .text{
		font-size: 14px;
		font-weight: normal;
		height: 32px;
	}
	body > header .headerDiv .contactusOrsearch div.l .email{
		margin-left: 0;
		margin-left: 5px;
	}
	body > header .headerDiv .contactusOrsearch div.l .email .text{
		color: #fff;
	}
	body > header .bottomNavDiv .bottomNavDiv-list ul li:nth-child(5){
		display: none;
	}
	body > header.compressed .headerDiv .topNav,
	body > header.compressed .headerDiv .langList,
	body > header.compressed .headerDiv .contactusOrsearch {
	    opacity: 1;
	    height: auto;
	}
	
	body > header .headerDiv .topNav ul li i{
		display: none;
	}
	
	.indexBaner .indexBanerDiv div.text{
		padding: 15px 10px;
		max-width: 220px;
	}
	.indexBaner .indexBanerDiv div.text h1{
		font-size: 22px;
	}
	.indexBaner .indexBanerDiv div.text h5{
		font-size: 12px;
	}
	.indexBaner .indexBanerDiv div.btn{
		max-width: 110px;
	}
	.indexBaner .indexBanerDiv div.btn a{
		font-size: 12px;
	}
	}

@media screen and (max-width:768px){
	.aiDesignEntry h2{
		font-size: 30px;
	}
	.aiEntryBadge{
		margin-top: 12px;
		font-size: 11px;
	}
	.aiEntryDivider{
		margin: 22px 0 18px;
	}
	.aiDesignEntry .aiDesignGrid{
		grid-template-columns: 1fr;
	}
	.aiDesignEntry .aiToggleGroup{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.aiDesignEntry .form-iner .aiDesignGrid .aiSubmitRow .aiGenerateButton{
		min-width: 100%;
		width: 100%;
		padding: 13px 28px;
	}
}

@media screen and (max-width:480px){
	.aiDesignEntry h2{
		font-size: 24px;
	}

	.indexBaner .indexBanerDiv{
		left: 30%;
	}
	.indexBaner .indexBanerDiv div.text{
		max-width: 160px;
	}
	.indexBaner .indexBanerDiv div.text h1{
		font-size: 12px;
	}
	.indexBaner .indexBanerDiv div.text h5{
		font-size: 0.5rem;
	}
	.indexBaner .indexBanerDiv div.btn a{
		font-size: 0.625rem;
	}
	.indexBaner .indexBanerDiv div.btn{
		padding: 4px 6px;
		max-width: 80px;
	}
}

/* cookie提醒 */
.cookie-widget #cookie-banner {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    color: #333333;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999999999;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #eee;
	transform: translateY(0);
}
.cookie-widget #cookie-banner.show {
    transform: translateY(-100%);
}
.cookie-widget #cookie-banner .close{
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 20px;
	cursor: pointer;
}
.cookie-widget .cookie-text {
    flex: 1;
    min-width: 250px;
	text-align: left;
	max-width: 60%;
}
.cookie-widget .cookie-text h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}
.cookie-widget .cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.cookie-widget .cookie-btn-group {
    display: flex;
    gap: 10px;
}
.cookie-widget button {
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	height: 30px;
}
.cookie-widget .btn-preferences {
    background-color: transparent;
    color: #007bff;
    border-color: transparent;
}
.cookie-widget .btn-accept {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
}
.cookie-widget .btn-accept:hover {
    background-color: #0056b3;
}
.cookie-widget #preferences-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}
.cookie-widget .modal-content {
	text-align: left;
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    color: #333;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: fadeIn .2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-widget .modal-content h3 {
    margin-top: 0;
    color: #2c3e50;
    font-size: 20px;
}
.cookie-widget .modal-content p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}
.cookie-widget .cookie-options {
    margin: 20px 0;
}
.cookie-widget .option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.cookie-widget .option-item:last-child {
    border-bottom: none;
}
.cookie-widget .option-info h5 {
    margin: 0 0 4px 0;
    font-size: 15px;
    color: #333;
}
.cookie-widget .option-info span {
    font-size: 12px;
    color: #888;
}
.cookie-widget .switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}
.cookie-widget .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-widget .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .2s;
    border-radius: 22px;
}
.cookie-widget .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .2s;
    border-radius: 50%;
}
.cookie-widget input:checked + .slider {
    background-color: #007bff;
}
.cookie-widget input:checked + .slider:before {
    transform: translateX(18px);
}
.cookie-widget .modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}
.cookie-widget .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    width: auto;
}
.cookie-widget .close-modal:hover {
    color: #333;
}
@media (max-width: 600px) {
    .cookie-widget #cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .cookie-widget .cookie-text {
        width: 100%;
        margin-bottom: 10px;
		max-width: none;
    }
    .cookie-widget .cookie-btn-group {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .cookie-widget .btn-preferences, .btn-accept {
        width: 100%;
    }
    .cookie-widget .modal-content {
        padding: 20px;
        width: 85%;
    }
}




