/*-------------------
    GENERAL
-------------------*/

html, body {
	color: #053754;
	background: url("./images/poly.webp") no-repeat center fixed; 
	-webkit-background-size: cover; /* pour anciens Chrome et Safari */
	background-size: cover; /* version standardise */;
	padding: 0;
	
	/* 添加科技感背景动画 */
	position: relative;
	overflow-x: hidden;
}

/* 科技感背景动画元素 */
html::before, html::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
}

html::before {
	background: radial-gradient(ellipse at center, rgba(0, 102, 153, 0.1) 0%, rgba(0, 102, 153, 0) 70%);
	animation: pulse 5s infinite alternate;
}

html::after {
	background: radial-gradient(ellipse at bottom, rgba(0, 102, 153, 0.15) 0%, rgba(0, 102, 153, 0) 70%);
	animation: pulse 7s infinite alternate-reverse;
}

@keyframes pulse {
	0% {
		opacity: 0.3;
		transform: scale(1);
	}
	100% {
		opacity: 0.7;
		transform: scale(1.2);
	}
}

.wrap {	
    margin: 12px auto;
	border-radius:20px;
    border: 2px solid #fff;
	box-shadow: 2px 1px 5px #053754;
	background-color: rgba(255, 255, 255, 0.45);
    background-image: none;
	padding: 0 15px;
	
	/* 添加扫光效果 */
	position: relative;
	overflow: hidden;
}
.wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
	animation: sweep 6s infinite ease-in-out;
	z-index: 999;
	pointer-events: none;
}
@keyframes sweep {
	0% {left: -100%;}
	100% {left: 100%;}
}

a, table.table1 td, h3, dl.details dd, dl.details dd a, dl.faq a, .postprofile, ul.topiclist li, ul.topiclist li:hover, .content dl.faq, .content h2, .panel h2, dt label, dt span, .copyright {
    color: #053754;
}
h3 {
	border-bottom-color: #053754;
}
.content h2, .panel h2 {
	border-bottom-color: #053754;
	color:#053754;
}
hr {
	border-color: #053754;
}
.wrap, .panel-container h3, .panel-container hr, .cp-menu hr, ul.linklist li.responsive-menu a.responsive-menu-link::before, ul.linklist li.responsive-menu a.responsive-menu-link:hover:before, ul.linklist li.responsive-menu a.responsive-menu-link.a:before {
	border-color: #FFF;
}
a:hover {
	color:#0a608a;
}

/*----------------
    HEADER
-----------------*/

.headerbar {
    background-color: transparent;
    background-image: none;
	
	/* 添加呼吸灯效果 */
	animation: headerGlow 4s ease-in-out infinite;
}

@keyframes headerGlow {
	0%, 100% { 
		box-shadow: 0 0 5px rgba(0, 102, 153, 0.5); 
	}
	50% { 
		box-shadow: 0 0 20px rgba(0, 102, 153, 0.8); 
	}
}

.site_logo {
	background: url("./images/site_logo.png")no-repeat;
	height:100px;
	width:203px;
	
	/* 添加光晕效果 */
	filter: drop-shadow(0 0 5px rgba(0, 102, 153, 0.7));
	animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
	0%, 100% { 
		filter: drop-shadow(0 0 5px rgba(0, 102, 153, 0.7));
	}
	50% { 
		filter: drop-shadow(0 0 15px rgba(0, 102, 153, 1));
	}
}

/* 网站标题和描述容器 */
.site-title-container {
	position: relative;
	display: inline-block;
}

.site-title-container h1 {
	position: relative;
	margin: 0;
	padding: 10px 0;
	
	/* 添加科技感文本效果 */
	color: #00334d;
	text-shadow:
		0 0 5px #fff,
		0 0 10px #fff,
		0 0 15px #00bfff,
		0 0 20px #00bfff,
		0 0 25px #00bfff;
	
	animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
	0%, 100% {
		text-shadow:
			0 0 5px #fff,
			0 0 10px #fff,
			0 0 15px #00bfff,
			0 0 20px #00bfff,
			0 0 25px #00bfff;
	}
	50% {
		text-shadow:
			0 0 10px #fff,
			0 0 20px #fff,
			0 0 30px #00bfff,
			0 0 40px #00bfff,
			0 0 50px #00bfff;
	}
}

.site-desc-container {
	position: relative;
	display: inline-block;
}

.site-desc-container p {
	position: relative;
	margin: 5px 0;
	font-size: 14.5px;
	font-weight: 500;
	
	/* 添加科技感文本效果 */
	color: #005c8a;
	text-shadow:
		0 0 3px #fff,
		0 0 6px #fff,
		0 0 10px #00bfff,
		0 0 15px #00bfff;
		
	animation: descGlow 4s ease-in-out infinite;
}

@keyframes descGlow {
	0%, 100% {
		text-shadow:
			0 0 3px #fff,
			0 0 6px #fff,
			0 0 10px #00bfff,
			0 0 15px #00bfff;
	}
	50% {
		text-shadow:
			0 0 5px #fff,
			0 0 10px #fff,
			0 0 20px #00bfff,
			0 0 25px #00bfff;
	}
}

/*----------------
    NAVBARS
-----------------*/

/* Navbar Superieure - Upper Navbar 
------------------------------------*/

.navbar /* largeur totale - total width */{
	background-color: rgba(0, 102, 153, 0.55);
	border-color: #053754;
	
	/* 添加呼吸灯效果 */
	animation: navbarGlow 4s ease-in-out infinite;
}

@keyframes navbarGlow {
	0%, 100% { 
		box-shadow: 0 0 5px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 15px rgba(0, 102, 153, 0.8);
	}
}

.navbar .inner /* contenu centr - centered content */{
	background-color: transparent;
	color:#fff;
	max-width: 1152px;
	margin: 0 auto;
}
@media (max-width: 700px) {
	.navbar {
		margin: 0;
	}	
}

/* Navbar sous le logo - Navbar between logo
---------------------------------------------*/

.nav-breadcrumbs {
	border-radius:7px;
	padding: 3px 10px;
	background-color: rgba(0, 102, 153, 0.55);
	
	/* 添加呼吸灯效果 */
	animation: breadcrumbsGlow 4s ease-in-out infinite;
}

@keyframes breadcrumbsGlow {
	0%, 100% { 
		box-shadow: 0 0 3px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 10px rgba(0, 102, 153, 0.8);
	}
}

ul.navlinks {
    border-top: none;
	color:#fff;
}
.navbar a, .nav-breadcrumbs a{
	color:#fff;
}

/* Navbar Inferieure - Lower Navbar 
------------------------------------*/

.page-footer .navbar {
	background-color: rgba(0, 102, 153, 0.55);
	
	/* 添加呼吸灯效果 */
	animation: footerNavbarGlow 4s ease-in-out infinite;
}

@keyframes footerNavbarGlow {
	0%, 100% { 
		box-shadow: 0 0 3px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 10px rgba(0, 102, 153, 0.8);
	}
}

/*-------------------
    DROPDOWN LINKS
-------------------*/
.dropdown-extended .header{
	background-color: rgba(0, 102, 153, 0.85);
	background-image: none;
	text-shadow: none;
}
.dropdown-extended ul li:hover {
	background-color: #0C83A4;
}
/* Dropdown colors - Couleurs des listes droulantes
-----------------------------------------------------*/

.dropdown .dropdown-contents {
	background-color: rgba(0, 102, 153, 0.80);
    border-color: #e4eff1;
    color:#fff;
}
.dropdown-nonscroll a{
    color:#fff;
}

/* Dropdown Pointers Colors - Pointeurs des listes droulantes
---------------------------------------------------------------*/
.dropdown .pointer {
    border-color: #fff transparent;
}
.dropdown .pointer-inner {
    border-color: rgba(0, 102, 153, 0.90) transparent;
}

/* Dropdown Contact Pointers Colors - Pointeurs des listes contact
-------------------------------------------------------------------*/
.dropdown .contact-icons{
	box-shadow: 2px 2px 5px #333;
}
.dropdown .contact-icons a:hover{
    background-color: #fff;
}

/* Dropdown in viewforum - Liste droulante du viewforum
---------------------------------------------------------*/
.dropdown fieldset.display-options label {
    color:#fff;
}
.dropdown fieldset.display-options hr {
    border-color: #fff;
}

/* Jumpbox
-----------*/
.jumpbox .dropdown .pointer-inner {
    border-color: #3892b8 transparent;
}
.jumpbox-cat-link{
    background-color: #0a608a;
}
.jumpbox-cat-link:hover {
    background-color: #5fabaa;
}
.jumpbox-sub-link{
    background-color: #3892b8;
}
.jumpbox-sub-link:hover {
    background-color: #3892b8;
    color: #000;
}
/*---------------------------------
    INPUT FIELD - Connexion page
---------------------------------*/

.inputbox {
	background-color: #fff;
    border: 1px solid #fff;
	color: #333333;
	border-radius: 7px;
	padding:5px;
}
.inputbox:hover, .inputbox:focus {
	border-color: #47c99a;
}
.login-title h2{
	color: #fff;
}

/*-------------------
    POLLS
-------------------*/

fieldset.polls dl {
    border-top-color: #f5f5f5;
    color: #f5f5f5;
}
fieldset dd {
    color: #000;
}
fieldset.polls dd div {
    color: #000;
}
.pollbar1 {
    background-color: #4FAB90;
    border-bottom-color: #369E7F;
    border-right-color: #369E7F;
}
.pollbar2 {
    background-color: #59AE96;
    border-bottom-color: #4FAB90;
    border-right-color: #4FAB90;
}
.pollbar3 {
    background-color: #69BCA5;
    border-bottom-color: #59AE96;
    border-right-color: #59AE96;
}
.pollbar4 {
    background-color: #7AC9AC;
    border-bottom-color: #69BCA5;
    border-right-color: #69BCA5;
}
.pollbar5 {
    background-color: #A8EDD4;
    border-bottom-color: #7AC9AC;
    border-right-color: #7AC9AC;
}

/*----------------
    BOXES
-----------------*/

.smiley-box {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 7px;
    color: #053754;
    padding: 3px;
	width:16%;
}

/*----------------
    CATEGORIES
-----------------*/

.forabg, .panel {
	background-color: rgba(0, 102, 153, 0.55);
    background-image: none;
	border-color: #053754;
	color:#053754;
	
	/* 添加呼吸灯效果 */
	animation: forabgGlow 4s ease-in-out infinite;
}

@keyframes forabgGlow {
	0%, 100% { 
		box-shadow: 0 0 5px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 15px rgba(0, 102, 153, 0.8);
	}
}

/*--------------------
    FORUMS & POSTS
--------------------*/

.forumbg {
	background-color: rgba(0, 102, 153, 0.55);
    background-image: none;
	
	/* 添加呼吸灯效果 */
	animation: forumbgGlow 4s ease-in-out infinite;
}

@keyframes forumbgGlow {
	0%, 100% { 
		box-shadow: 0 0 5px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 15px rgba(0, 102, 153, 0.8);
	}
}

.bg2 {
	background-color: rgba(255, 255, 255, 0.65);
}
.bg3 {
	background-color: rgba(0, 102, 153, 0.75);
}
.bg3 h2, .panel-container h3, .cp-main h2 span a, .panel-container hr, .cp-menu hr, .navigation a, .navigation a:hover, label, .forumbg .header a:hover, .forabg .header a:hover, th a:hover {
	color: #fff;
}
ul.forums, .bg1, .panel-container .panel {
	background-color: rgba(255, 255, 255, 0.45);
    background-image: none;
}
li.row {
    border-color: #053754;
    border-top-color: #ffffff;
}
li.row:hover {
	background-color: rgba(255, 255, 204, 0.25);
}
/*----------------
    STATISTICS
-----------------*/

.headerspace, .stat-block {
	background-color: rgba(0, 102, 153, 0.55);
    background-image: none;
	border-color: #053754;
	color:#fff;
    border-radius: 7px;
    clear: both;
    margin-bottom: 4px;
    padding: 5px;
	
	/* 添加呼吸灯效果 */
	animation: statBlockGlow 4s ease-in-out infinite;
}

@keyframes statBlockGlow {
	0%, 100% { 
		box-shadow: 0 0 3px rgba(0, 102, 153, 0.5);
	}
	50% { 
		box-shadow: 0 0 10px rgba(0, 102, 153, 0.8);
	}
}

.online-list {
	background-color: rgba(0, 102, 153, 0.85);
}
.header-profile .username-coloured, .online-list .username-coloured, em a{
    text-shadow: 1px 1px 2px black;
	font-weight: bold;
}
.headerspace h3, .stat-block h3{
    margin-top:5px;
}
.headerspace:hover, .stat-block:hover {
	background-color: rgba(0, 102, 153, 0.45);
}
.online-list:hover {
	background-color: rgba(0, 102, 153, 0.75);
}
.stat-block h3, .stat-block h3 a{
	color:#fff;
	border-bottom-color: #fff;
}
table.table1 tbody tr {
    border-color: #fff;
}
fieldset.display-options label {
    color: #053754;
}
/*--------------------------
    NAVIGATION PANELS (PM)
--------------------------*/

.navigation a {
	background: #3689af;
	background: -webkit-linear-gradient(left, #3689af 50%, #8dbbd1 100%);
	background: linear-gradient(to right, #3689af 50%, #8dbbd1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3689af', endColorstr='#8dbbd1', GradientType=1 );
}
.navigation a:hover {
	background: #8dbbd1;
}
.navigation .active-subsection a {
	background: #8dbbd1;
	color: #053754;
}
.navigation .active-subsection a:hover {
	color: #053754;
}
@media only screen and (max-width: 900px), only screen and (max-device-width: 900px)
{
	#navigation a, .rtl #navigation a {
		background-color: rgba(255, 255, 255, 0.45);
	}
}

/*-----------
    PANELS
-----------*/

.panel dd label{
	color:#000;
}
.panel a{
	color: #000;
}
label .search_forum {
    border-top-color: #f5f5f5;
    color: #000;
}
a.arrow-left:hover{
    color:#fff;
}
.panel p {
    color:#fff;
}
.postlink, .postlink a, .postlink:hover{
	border-bottom-color: #47c99a;
    color: #47c99a;
}

/*-------------
    BUTTONS
-------------*/
.action-bar .button, .button .icon, .button-secondary {
    color: #053754;
}
.button-secondary:focus, .button-secondary:hover, .button:focus .icon, .button:hover .icon {
    color: #397b99;
}
.button {
	background-color: #e4eff1;
	background-image: -webkit-linear-gradient(top, #e4eff1, #b4d1d7);
	background-image: linear-gradient(to bottom, #e4eff1, #b4d1d7);
	filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#e4eff1', EndColorStr='#b4d1d7')";
	box-shadow: 0 0 0 1px #e4eff1 inset;
	-webkit-box-shadow: 0 0 0 1px #e4eff1 inset;
	color: #053754;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica;
	
	/* 添加科技感效果 */
	position: relative;
	overflow: hidden;
	border: 1px solid #669999;
	border-radius: 4px;
	
	/* 添加呼吸灯效果 */
	animation: buttonGlow 3s ease-in-out infinite;
	transition: all 0.3s ease;
}

/* 按钮呼吸灯效果 */
@keyframes buttonGlow {
	0%, 100% {
		box-shadow: 0 0 3px rgba(0, 102, 153, 0.5), 0 0 0 1px #e4eff1 inset;
	}
	50% {
		box-shadow: 0 0 10px rgba(0, 102, 153, 0.8), 0 0 0 1px #e4eff1 inset;
	}
}

.button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	transition: left 1s;
}
.button:hover::before {
	left: 150%;
}
.button, .button:hover, .dropdown-visible .dropdown-select, .nojs .dropdown-container:hover .dropdown-select {
	background-image: -webkit-linear-gradient(top, #b4d1d7, #e4eff1);
	background-image: linear-gradient(to bottom, #b4d1d7, #e4eff1);
	filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#b4d1d7', EndColorStr='#e4eff1')";
	text-shadow: 1px 1px 0 #e4eff1, -1px -1px 0 #e4eff1, -1px -1px 0 rgba(188, 42, 77, 0.2);
}
.button:hover, .dropdown-visible .dropdown-select, .nojs .dropdown-container:hover .dropdown-select,.search-box .inputbox, .search-box .inputbox:hover, .search-box .inputbox:focus, .search-box .button:hover {
    border-color: #669999;
	color: #397b99;
	
	/* 增强悬停效果 */
	box-shadow: 0 0 10px rgba(0, 102, 153, 0.8), 0 0 0 1px #e4eff1 inset;
	transform: translateY(-2px);
}

/* 科技感搜索框 */
.search-box .inputbox {
	border: 1px solid #669999;
	border-radius: 4px;
	animation: inputGlow 4s ease-in-out infinite;
}

@keyframes inputGlow {
	0%, 100% {
		box-shadow: 0 0 3px rgba(0, 102, 153, 0.3);
	}
	50% {
		box-shadow: 0 0 8px rgba(0, 102, 153, 0.6);
	}
}

.search-box .button-search {
	border-radius: 4px 0 0 4px;
}

.search-box .button-search-end {
	border-radius: 0 4px 4px 0;
}

/*-------------
    TABS
-------------*/

.tabs .tab > a {
	background-color: rgba(0, 102, 153, 0.70);
    color: #fff;
}
.tabs .tab > a:hover {
	background-color: rgba(0, 102, 153, 0.90);
    color: #fff;
}
.tabs .activetab > a, .tabs .activetab > a:hover {
	background: rgba(0, 102, 153, 0.90);
    border-color: none;
    box-shadow: 0 1px 1px #fff inset;
    color: #fff;
}
.responsive-tab .responsive-tab-link::before {
    border-color: #fff;
}
.responsive-tab .responsive-tab-link:hover::before {
    border-color: #fff;
}

/*-------------
    ICONS
-------------*/

/* pour laisser la place  l'icone personnalise - to take place for personalized icons */
dl.row-item dt .list-inner {
    padding-left: 35px;
}
dl.row-item {
    background-size: 20px;
}
/* icones personnalises - personalized icons */
.global_read													{ background-image: url("./images/announce_read.gif"); }
.global_read_mine												{ background-image: url("./images/announce_read_mine.gif"); }
.global_read_locked												{ background-image: url("./images/announce_read_locked.gif"); }
.global_read_locked_mine										{ background-image: url("./images/announce_read_locked_mine.gif"); }
.global_unread													{ background-image: url("./images/announce_unread.gif"); }
.global_unread_mine												{ background-image: url("./images/announce_unread_mine.gif"); }
.global_unread_locked											{ background-image: url("./images/announce_unread_locked.gif"); }
.global_unread_locked_mine										{ background-image: url("./images/announce_unread_locked_mine.gif"); }
.announce_read													{ background-image: url("./images/announce_read.gif"); }
.announce_read_mine												{ background-image: url("./images/announce_read_mine.gif"); }
.announce_read_locked											{ background-image: url("./images/announce_read_locked.gif"); }
.announce_read_locked_mine										{ background-image: url("./images/announce_read_locked_mine.gif"); }
.announce_unread												{ background-image: url("./images/announce_unread.gif"); }
.announce_unread_mine											{ background-image: url("./images/announce_unread_mine.gif"); }
.announce_unread_locked											{ background-image: url("./images/announce_unread_locked.gif"); }
.announce_unread_locked_mine									{ background-image: url("./images/announce_unread_locked_mine.gif"); }
.forum_link														{ background-image: url("./images/forum_link.gif"); }
.forum_read														{ background-image: url("./images/forum_read.gif"); }
.forum_read_locked												{ background-image: url("./images/forum_read_locked.gif"); }
.forum_read_subforum											{ background-image: url("./images/forum_read_subforum.gif"); }
.forum_unread													{ background-image: url("./images/forum_unread.gif"); }
.forum_unread_locked											{ background-image: url("./images/forum_unread_locked.gif"); }
.forum_unread_subforum											{ background-image: url("./images/forum_unread_subforum.gif"); }
.sticky_read													{ background-image: url("./images/sticky_read.gif"); }
.sticky_read_mine												{ background-image: url("./images/sticky_read_mine.gif"); }
.sticky_read_locked												{ background-image: url("./images/sticky_read_locked.gif"); }
.sticky_read_locked_mine										{ background-image: url("./images/sticky_read_locked_mine.gif"); }
.sticky_unread													{ background-image: url("./images/sticky_unread.gif"); }
.sticky_unread_mine												{ background-image: url("./images/sticky_unread_mine.gif"); }
.sticky_unread_locked											{ background-image: url("./images/sticky_unread_locked.gif"); }
.sticky_unread_locked_mine										{ background-image: url("./images/sticky_unread_locked_mine.gif"); }
.topic_moved													{ background-image: url("./images/topic_moved.gif"); }
.topic_read														{ background-image: url("./images/topic_read.gif"); }
.topic_read_mine												{ background-image: url("./images/topic_read_mine.gif"); }
.topic_read_hot													{ background-image: url("./images/topic_read.gif"); }
.topic_read_hot_mine											{ background-image: url("./images/topic_read_mine.gif"); }
.topic_read_locked												{ background-image: url("./images/topic_read_locked.gif"); }
.topic_read_locked_mine											{ background-image: url("./images/topic_read_locked_mine.gif"); }
.topic_unread													{ background-image: url("./images/topic_unread.gif"); }
.topic_unread_mine												{ background-image: url("./images/topic_unread_mine.gif"); }
.topic_unread_hot												{ background-image: url("./images/topic_unread_hot.gif"); }
.topic_unread_hot_mine											{ background-image: url("./images/topic_unread_hot_mine.gif"); }
.topic_unread_locked											{ background-image: url("./images/topic_unread_locked.gif"); }
.topic_unread_locked_mine										{ background-image: url("./images/topic_unread_locked_mine.gif"); }
.pm_read														{ background-image: url("./images/topic_read.gif"); }
.pm_unread														{ background-image: url("./images/topic_unread.gif"); }
/* speed access icons - icones d'accs rapide */
.icon.icon-gray, a:hover .icon.icon-gray {
    color: #f8f8f8;
}
.icon.icon-red, a:hover .icon.icon-red {
    color: red;
}
.icon.icon-blue, a:hover .icon.icon-blue {
    color: #48d5dc;
}
.icon.icon-lightgray, a:hover .icon.icon-lightgray, .icon.icon-gray, a:hover .icon.icon-gray {
    color: #053754;
}

/* 图片3D光晕呼吸灯效果 */
.image-3d-effect {
	position: relative;
	display: inline-block;
	border: 1px solid rgba(0, 102, 153, 0.3);
	border-radius: 4px;
	
	/* 添加呼吸灯效果 */
	animation: imageGlow 4s ease-in-out infinite;
	
	/* 添加3D效果 */
	box-shadow: 
		0 5px 15px rgba(0, 0, 0, 0.3),
		0 0 10px rgba(0, 102, 153, 0.3);
	
	/* 添加光晕扫光效果 */
	overflow: hidden;
}

.image-3d-effect::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
	transform: skewX(-25deg);
	transition: left 0.8s;
	z-index: 1;
}

.image-3d-effect:hover::before {
	left: 150%;
}

.image-3d-effect img {
	display: block;
	border-radius: 3px;
	
	/* 添加内发光效果 */
	filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

@keyframes imageGlow {
	0%, 100% {
		box-shadow: 
			0 5px 15px rgba(0, 0, 0, 0.3),
			0 0 10px rgba(0, 102, 153, 0.3);
	}
	50% {
		box-shadow: 
			0 8px 20px rgba(0, 0, 0, 0.4),
			0 0 20px rgba(0, 102, 153, 0.6);
	}
}

/* 响应式设计 */
@media (max-width: 768px) {
	.image-3d-effect {
		max-width: 100%;
		height: auto;
	}
}
