/* ===========================
   Local Font: Saira
   =========================== */
   @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/Saira/saira-v22-latin-300.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Saira/saira-v22-latin-regular.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/Saira/saira-v22-latin-500.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/Saira/saira-v22-latin-600.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/Saira/saira-v22-latin-700.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/Saira/saira-v22-latin-800.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Saira';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/Saira/saira-v22-latin-900.woff2') format('woff2');
	font-display: swap;
  }
  
  /* ===========================
	 Local Font: Oswald
	 =========================== */
  @font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/Oswald/oswald-v57-latin-300.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/Oswald/oswald-v57-latin-regular.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/Oswald/oswald-v57-latin-500.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/Oswald/oswald-v57-latin-600.woff2') format('woff2');
	font-display: swap;
  }
  
  @font-face {
	font-family: 'Oswald';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/Oswald/oswald-v57-latin-700.woff2') format('woff2');
	font-display: swap;
  }
  
/* ===========================
   Local Font: Anton
   =========================== */
   @font-face {
	font-family: 'Anton';
	font-style: normal;
	font-weight: 400; /* Anton 只有一个字重 */
	src: url('../fonts/Anton/anton-v27-latin-regular.woff2') format('woff2');
	font-display: swap;
  }
  
html {
	overflow-x: hidden;
	padding: 0px;
	margin: 0px
}
body{
	overflow-x: hidden;
	width: 100%;
	font-family: "Saira";
	font-size: 14px;
	line-height: 2.3;
	letter-spacing: 1px;
	word-wrap: break-word;
	font-weight: 400;
	background-color: rgba(0,0,0,1.00);
	color: #888;
}
svg{
	fill: currentcolor;
	width: 15px;
	height: 15px;
}
img.svg{
	width: 15px;
	height: 15px;
}
.emilio_tm_wrapper_all,
.emilio_tm_wrapper_all *{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	   -moz-box-sizing: border-box; /* Firefox, other Gecko */
			box-sizing: border-box; /* Opera/IE 8+ */
}
.emilio_tm_wrapper_all{
	width: 100%;
	min-height: 100vh;
	clear: both;
	float: left;
	position: relative;
}
.emilio_tm_wrapper_all .wrapper_inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

.emilio_tm_section{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

/* 顶部栏动画 */
.emilio_tm_topbar_wrap {
	animation: fadeInDown 0.6s ease-out;
}

.emilio_tm_content{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #FFFFFF;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color: #FFFFFF;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color: #FFFFFF;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #FFFFFF;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #FFFFFF;
}

::placeholder { /* Most modern browsers support this now. */
   color: #FFFFFF;
}

/*---------------------------------------------------*/
/*	02) EMILIO HOME
/*---------------------------------------------------*/

.emilio_tm_home_wrap{
	width: 100%;
	height: 100vh;
	float: left;
	display: flex;
	position: relative;
}
.emilio_tm_home_wrap .leftbox{
	width: 50%;
	height: 100%;
	background-color: #000;
	display: flex;
	align-items: center;
	text-align: left;
}
.emilio_tm_home_wrap .leftbox .texts_wrap{
	padding: 0px 20px;
	position: relative;
	left: 20%;
}
.emilio_tm_home_wrap .leftbox .texts_wrap .features-list li {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease-out;
}

.emilio_tm_home_wrap .leftbox .texts_wrap .features-list li.loaded {
	opacity: 1;
	transform: translateY(0);
}
.emilio_tm_home_wrap .leftbox .texts_wrap h1{
	color: #FFFFFF;
	text-transform: uppercase;
	margin-bottom: 4px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.emilio_tm_home_wrap .leftbox .texts_wrap h1:before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
	left: -100%;
	transition: 1s ease-in-out;
}
.emilio_tm_home_wrap .leftbox .texts_wrap.load h1:before{left: 100%;}
.emilio_tm_home_wrap .leftbox .texts_wrap h1 span{
	position: relative;
	display: inline-block;
	font-size: 45px;
	font-weight: 600;
	font-family: "Oswald";
	overflow: hidden;
	visibility: hidden;
}
.emilio_tm_home_wrap .leftbox .texts_wrap.load h1 span{
	visibility: visible;
	transition-delay: .5s;
}
.emilio_tm_home_wrap .leftbox .texts_wrap p.subtitle{
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	display: inline-block;
	margin-bottom: 27px;
	max-width: 400px;
	line-height: 1.8;
	
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
		clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
	-webkit-transition: 1s ease-in-out;
		-o-transition: 1s ease-in-out;
			transition: 1s ease-in-out;
}
.emilio_tm_home_wrap .leftbox .texts_wrap.load p.subtitle{
	-webkit-clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 50% 100%, 100% 100%, 100% 0%);
		clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 50% 100%, 50% 100%, 100% 100%, 100% 0%); 
}
.emilio_tm_home_wrap .leftbox .texts_wrap p.subtitle:before{
	position: absolute;
	content: "";
	width: 0%;
	height: 100%;
	background-color: rgba(209,44,46,1.00);
	left: 0px;
}
.emilio_tm_button{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	margin-top: 30px;
}
.emilio_tm_button[data-position="left"]{text-align: left;}
.emilio_tm_button[data-position="center"]{text-align: center;}
.emilio_tm_button[data-position="right"]{text-align: right;}
.emilio_tm_button a{
	text-decoration: none;
	color: #000;
	display: inline-block;
	padding: 14px 70px;
	line-height: 14px;
	font-weight: 600;
	font-family: "Saira";
	text-transform: uppercase;
	letter-spacing: 2.5px;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}
.emilio_tm_button a:before,
.emilio_tm_button a:after{
	position: absolute;
	content: "";
	width: 51%;
	height: 100%;
	background-color: #FFFFFF;
	top: 0px;
	z-index: 1;
	
	transition: 1s ease-in-out;
	transition-delay: .5s;
}
.emilio_tm_button a:before{left: -51%;}
.emilio_tm_button a:after{right: -51%;}
.emilio_tm_button.emilio_tm_waypoint_effect.load a:before{left: 0px;}
.emilio_tm_button.emilio_tm_waypoint_effect.load a:after{right: 0px;}
.emilio_tm_button a span{
	position: relative;
	z-index: 2;
}
.emilio_tm_button.no_animation a:before{display: none;}
.emilio_tm_button.no_animation a:after{display: none;}
.emilio_tm_button.no_animation a{background-color: #FFFFFF;}
.emilio_tm_topbar_wrap{
	width: 100%;
	height: auto;
	position: fixed;
	z-index: 15;
	left: 0px;
	top: 0px;
	padding: 15px 40px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.emilio_tm_topbar_wrap.home {
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* 调整logo和topbar-menu的样式 */
.logo {
	margin-right: 30px;
}

.topbar-menu {
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	transform: translateY(-20px);
	transition: all 0.5s ease-out;
}

.topbar-menu.loaded {
	opacity: 1;
	transform: translateY(0);
}

.topbar-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 20px;
}

.topbar-menu li a {
	text-decoration: none;
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 600;
	font-family: "Saira";
	letter-spacing: 2.5px;
	transition: color 0.3s ease;
	padding: 10px 15px;
	border-radius: 4px;
}

.topbar-menu li a:hover {
	color: #FF0000;
	background-color: rgba(255, 255, 255, 0.1);
}



.emilio_tm_topbar_wrap .logo img{
	max-width: 100px;
	max-height: 70px;
}
.emilio_tm_button.full a{
	width: 100%;
	padding: 14px 10px;
	background-color: #FFFFFF;
}




.emilio_tm_home_wrap .rightbox{
	width: 50%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.emilio_tm_home_wrap .rightbox .inner{
	position: absolute;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transform: scale(1.08);
}

/* 微信二维码弹窗样式 */
.wechat-qr-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.wechat-qr-container.active {
    display: block;
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.qr-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.qr-image {
    margin-bottom: 20px;
}

.qr-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.qr-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.qr-close:hover {
    background: #555;
}

/* 作品展示区域样式 */
.emilio_tm_home_wrap .rightbox .works-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}

/* 动画关键帧 */
@keyframes slideIn {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* 动画效果 */
.emilio_tm_home_wrap .rightbox .works-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease-out;
}

.emilio_tm_home_wrap .rightbox .works-scroll.active {
	opacity: 1;
	transform: translateY(0);
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease-out;
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item.active {
	opacity: 1;
	transform: translateY(0);
}

.emilio_tm_home_wrap .rightbox .works-scroll {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 30px 0;
	box-sizing: border-box;
	transition: transform 0.3s ease-out;
	z-index: 0;
}



/* 添加渐变层 */
.emilio_tm_home_wrap .rightbox .works-scroll::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(to bottom, 
		rgba(0,0,0,0.8) 0%,
		rgba(0,0,0,0.5) 15%,
		rgba(0,0,0,0) 30%,
		rgba(0,0,0,0) 70%,
		rgba(0,0,0,0.5) 85%,
		rgba(0,0,0,0.8) 100%
	);
	z-index: 2;
	pointer-events: none;
}

.emilio_tm_home_wrap .rightbox .works-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 10px;
	width: 100%;
	height: auto;
	padding: 0 100px;
	overflow: hidden;
	min-height: 100%;
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item {
	width: 100%;
	padding-top: 56.25%; /* 16:9比例，计算方式：9/16*100% = 56.25% */
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 8px;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	cursor: pointer;
	overflow: hidden;
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
	transition: opacity 0.3s ease-out;
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item:hover {
	transform: scale(1.05);
}

.emilio_tm_home_wrap .rightbox .works-grid .work-item:hover:before {
	opacity: 0;
}

.emilio_tm_home_wrap .rightbox .overlay{
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: rgba(0,0,0,.3);
}

/*---------------------------------------------------*/
/*	03) 版权和备案号容器样式
/*---------------------------------------------------*/

.emilio_tm_footer_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	padding: 20px 0px;
}
.emilio_tm_footer_wrap[data-border="yes"]{border-top: 1px solid rgba(255,255,255,.2);}
.emilio_tm_footer_wrap .inner_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.emilio_tm_footer_wrap .inner_wrap .social ul{
	margin: 0px;
	list-style-type: none;
}


.copyright-content {
	display: flex;
	align-items: center;
	gap: 15px;
}

.copyright-content p {
	margin: 0;
	flex: 1;
}

/* 搜索高亮样式 */
.highlight {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 2px;
    border-radius: 2px;
    font-weight: bold;
}

/* 筛选器样式 */
.filters-container {
    margin: 15px 0 25px;
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-group {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.filter-label {
    width: 50px;
    font-size: 14px;
    color: #bbb;
    padding: 6px 0;
    flex-shrink: 0;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #3a3a3a;
    color: #ddd;
    border-radius: 15px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #444;
}

.filter-tag:hover {
    background-color: #4a4a4a;
    color: #fff;
}

.filter-tag.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #3a3a3a;
}

.active-filter {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px 4px 12px;
    background-color: #3a3a3a;
    color: #ddd;
    border-radius: 15px;
    font-size: 13px;
    gap: 6px;
}

.active-filter .remove-filter {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0 2px;
    border-radius: 50%;
}

.active-filter .remove-filter:hover {
    background-color: #555;
}

/* 搜索框样式 */
.search-container {
    position: relative;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.search-container::before {
    content: '🔍';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
}

.clear-search-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #777;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

.clear-search-btn:hover {
    color: #fff;
}

/* 备案号链接样式 */
.beian-links {
	font-size: 12px;
	color: #888;
	white-space: nowrap;
}

.beian-links a {
	color: #888;
	text-decoration: none;
	margin-right: 10px;
}

.beian-links a:hover {
	color: #fff;
}

@media (max-width: 768px) {
	.emilio_tm_footer_wrap .inner_wrap{flex-direction: column;}
	.emilio_tm_footer_wrap .inner_wrap .copyright{margin-bottom: 5px;}
	.beian-links {
		margin-top: 10px;
		text-align: center;
	}
	.beian-links a {
		margin-right: 5px;
	}
}
.emilio_tm_footer_wrap .inner_wrap .social ul li{
	margin: 0px 15px 0px 0px;
	float: left;
}
.emilio_tm_footer_wrap .inner_wrap .social ul li:last-child{margin-right: 0px;}
.emilio_tm_footer_wrap .inner_wrap .social ul li a{
	text-decoration: none;
	color: #FFFFFF;
}



/* 添加在现有的 .emilio_tm_service_list ul 样式之后 */
.emilio_tm_service_list {
    padding-top: 50px; 
    width: 100%;
    margin: 0 auto;
}

/* 现有的 ul 样式保持不变 */
.emilio_tm_service_list ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
}

/* 动画关键帧 */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 课程链接样式 */
.course-link {
	text-decoration: none;
	color: inherit;
	width: 100%;
}

.course-link:hover {
	text-decoration: none;
}

.course-link .inner {
	transition: transform 0.3s ease;
}

.course-link:hover .inner {
	transform: translateY(-5px);
}

/* 课程播放器样式 */
.course-detail-container {
	display: flex;
	gap: 30px;
	margin-top: 60px;
}

/* Tab栏样式 */
.tab-bar {
	display: flex;
	gap: 500px;
	justify-content: center;
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab {
	cursor: pointer;
	color: #888;
	transition: all 0.5s ease;
	padding: 10px 20px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.05);
}

.tab:hover {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}

.tab.active {
	color: #fff;
	font-weight: bold;
	background-color: rgba(255, 255, 255, 0.1);
}

.tab-content {
	display: none;
	margin-top: 30px;
}

.tab-content.active {
	display: block;
}

.video-player {
	flex: 3;
	background-color: #000;
	border: 2px solid #9f9f9f; /* 描边颜色和宽度 */
	border-radius: 10px;
	overflow: hidden;
}

.video-player .vjs-big-play-button {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.video-js {
	width: 100%;
	height: 500px;
}

.course-list {
	flex: 1;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 20px;
	height: 67vh;
	max-height: 1000px;
	display: flex;
	flex-direction: column;
}

.course-list h3 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 20px;
}

.course-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
}

.course-list ul li {
	margin-bottom: 10px;
	cursor: pointer;
}

.course-list ul li a {
	text-decoration: none;
	color: #888;
	display: block;
	padding: 10px 15px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.course-list ul li a:hover,
.course-list ul li.active a {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.1);
}

/* 课程标题和描述 */
.course-header {
	margin-top: 0px;
    margin-bottom: 40px;
    color: #fff;
}

.course-title {
    font-size: 32px;
    font-weight: 700;
	margin-top: 25px;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.3;
}

.course-description {
    font-size: 15px;
    color: #929292;
    margin-bottom: 10px;
    line-height: 1.6;
}

.course-meta-info {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #888;
}

.course-meta-info .separator {
    margin: 0 10px;
    color: #686868;
}

.course-meta-info .status,
.course-meta-info .validity,
.course-meta-info .lesson-count {
    color: #929292;
}

/* 课程详情图片展示 */
.course-detail-images {
    margin-top: 40px;
    width: 100%;
}

.course-detail-images h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-images-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 响应式调整 */
@media (max-width: 1024px) {
	.course-detail-container {
		flex-direction: column;
		gap: 30px;
	}
	
	.video-js {
		height: 400px;
	}
	
	.course-list {
		height: 100vh;
		max-height: 400px;
	}
	
	.course-list ul {
		height: calc(100% - 60px); /* 减去标题高度 */
	}
}

@media (max-width: 768px) {
	.video-js {
		height: 300px;
	}
	
	.course-list {
		height: 100vh;
		max-height: 300px;
	}
	
	.course-list ul {
		height: calc(100% - 60px); /* 减去标题高度 */
	}
}

/* 课程卡片动画 */
.emilio_tm_service_list ul li .inner {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.6s ease;
}

.emilio_tm_service_list ul li .inner.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 动画延迟效果 */
.emilio_tm_service_list ul li:nth-child(1) .inner { transition-delay: 0.2s; }
.emilio_tm_service_list ul li:nth-child(2) .inner { transition-delay: 0.4s; }
.emilio_tm_service_list ul li:nth-child(3) .inner { transition-delay: 0.6s; }

.emilio_tm_section .container {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding-top: 100px;
}

.emilio_tm_service_list ul li {
	width: 100%;
	max-width: 350px;
	margin: 0;
	padding: 0;
}

.emilio_tm_service_list ul li .inner {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.emilio_tm_service_list ul li .inner:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.movie-card, .case-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-card:hover, .case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.movie-header, .case-header {
	padding: 15px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.movie-title, .case-title {
	color: #fff;
	font-size: 1.3em;
	margin: 0;
	margin-bottom: 5px;
}

.movie-region {
	color: #888;
	font-size: 0.9em;
}

.movie-media, .case-media {
	overflow: hidden;
}

.movie-cover, .case-cover {
	width: 100%;
	height: 150px;	
	object-fit: cover;
	transition: transform 0.3s ease;
}

.movie-cover:hover, .case-cover:hover {
	transform: scale(1.05);
}

.movie-content, .case-content {
	padding: 20px;
}

.movie-description, .case-description {
	margin-bottom: 20px;
}

.movies-grid, .cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;

}

.movie-description p, .case-description p {
	color: #888;
	line-height: 1.6;
}

.movie-details, .movie-technical {
	padding: 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
}

.label {
	color: #888;
	font-weight: 500;
}

.movie-details p, .movie-technical p, .movie-cast p {
	color: #fff;
	font-size: 0.9em;
	margin: 5px 0;
}

.movie-footer, .case-footer {
	padding: 15px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: right;
}

.movie-view-images, .case-view-images {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: none;
	padding: 8px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.movie-view-images:hover, .case-view-images:hover {
	background: rgba(255, 255, 255, 0.2);
}

.course-content .description p {
	line-height: 1.6;
}

/* 课程内容样式 */
.course-content {
	padding: 30px 30px 0;
	text-align: center;
}

/* 课程图片样式 */
.course-image {
	text-align: center;
}

.course-content .number {
	margin-bottom: 15px;
}

.course-content .number h3 {
	font-size: 48px;
	color: #fff;
	font-weight: 700;
}

.course-content .title {
	margin-bottom: 15px;
}

.course-content .title h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}

.course-content .description {
	margin-bottom: 20px;
	color: #888;
}

.course-content .description p {
	line-height: 1.6;
}

/* 课程元数据样式 */
.course-meta {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.course-meta span {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.course-meta span:hover {
	background: rgba(255, 255, 255, 0.2);
}

.course-meta .level {
	background: rgba(255, 140, 0, 0.2);
}

.course-meta .duration {
	background: rgba(0, 255, 0, 0.2);
}

/* 课程图片样式 */
.course-image {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.course-image img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

.course-image img:hover {
	transform: scale(1.05);
}

.emilio_tm_services_wrap .service_heading h3 .wrap{
	overflow: hidden;
	position: relative;
	display: inline-block;
}
.emilio_tm_services_wrap .inner_wrap{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.emilio_tm_service_list{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
}
.emilio_tm_service_list ul{
	margin: 0px 0px 0px -50px;
	list-style-type: none;
}
.emilio_tm_service_list ul li{
	margin: 0px 0px 50px 0px;
	float: left;
	width: 33.333%;
	padding-left: 50px;
}
.emilio_tm_service_list ul li .inner{
	width: 100%;
	height: auto;
	clear: both;
	float: left;
	position: relative;
}
.emilio_tm_service_list ul li .inner .number h3{
	color: #888888;
	font-size: 80px;
	margin-bottom: 11px;
}
.emilio_tm_service_list ul li .inner .title h3{
	color: #FFFFFF;
	margin-bottom: 10px;
}

/*---------------------------------------------------*/
/*	11) EMILIO MEDIA QUERIES (FOR SMALL DEVICES)
/*---------------------------------------------------*/

@media (max-width: 1500px) {
	.emilio_tm_topbar_wrap{background-color: rgba(0,0,0,.9);}
	.emilio_tm_topbar_wrap.home{background-color: transparent;}
}
@media (max-width: 1200px) {
	.emilio_tm_home_wrap .leftbox{justify-content: center;text-align: center;}
	.emilio_tm_home_wrap .leftbox .texts_wrap{left: 0px;}
	.emilio_tm_home_wrap{display: block;}
	.emilio_tm_home_wrap .rightbox{width: 100%;}
	.emilio_tm_home_wrap .rightbox .overlay{background-color: rgba(0,0,0,.8);}
	.emilio_tm_home_wrap .leftbox{width: 100%;position: absolute;z-index: 1;background-color: transparent;}
	.emilio_tm_author_definitions_wrap .inner_wrap{flex-direction: column; }
	.emilio_tm_author_definitions_wrap .inner_wrap .texts_wrap{margin-bottom: 40px;padding-right: 0px;}
	.emilio_tm_author_definitions_wrap .inner_wrap .short_info{padding-left: 20px;}
	.emilio_tm_author_definitions_wrap .inner_wrap .texts_wrap{width: 100%;}
	.emilio_tm_skill_wrap .inner_wrap{flex-direction: column;}
	.emilio_tm_skill_wrap .inner_wrap .leftbox{padding-right: 0px;width: 100%;margin-bottom: 14px;}
	.emilio_tm_skill_wrap .inner_wrap .rightbox{padding-left: 0px;width: 100%;}
	.emilio_tm_service_list ul li{width: 50%;}
	.emilio_tm_portfolio_single_wrap .single_descriptions_wrap{flex-direction: column;}
	.emilio_tm_portfolio_single_wrap .single_descriptions_wrap .leftbox{padding-right: 0px;margin-bottom: 30px;width: 100%;}
	.emilio_tm_portfolio_single_wrap .single_descriptions_wrap .rightbox{padding-left: 0px;}

}
@media (max-width: 1040px) {
	.emilio_tm_topbar_wrap{padding: 30px 20px;}
	.emilio_tm_partners_wrap .inner_wrap ul{flex-direction: column;}
	.emilio_tm_partners_wrap .inner_wrap ul li{width: 100%;margin-bottom: 60px;}
	.emilio_tm_partners_wrap .inner_wrap ul li:last-child{margin-bottom: 0px;}
	.emilio_tm_counter_list li{width: 100%;margin-bottom: 50px;}
	.emilio_tm_counter_list li:last-child{margin-bottom: 0px;}
}
@media (max-width: 768px) {
    .qr-content {
        max-width: 300px;
        padding: 20px;
    }
    .qr-image img {
        max-width: 90%;
    }
	.emilio_tm_home_wrap .leftbox .texts_wrap h1 span {font-size: 40px;}
	.emilio_tm_author_definitions_wrap .inner_wrap .short_info p .first{width: auto;padding-right: 10px;}
	.emilio_tm_author_definitions_wrap .inner_wrap .texts_wrap p{font-size: 22px;}
	.emilio_tm_choose_us_wrap .inner_wrap h1{font-size: 35px;}
	.emilio_tm_footer_wrap .inner_wrap{flex-direction: column;}
	.emilio_tm_footer_wrap .inner_wrap .copyright{margin-bottom: 5px;}
	.emilio_tm_service_list ul li{width: 100%;}
	.emilio_tm_services_wrap .service_heading h3{font-size: 30px;}
	.emilio_tm_services_wrap .service_heading{max-width: 100%;}
	.emilio_tm_service_list ul li .inner .title h3{font-size: 25px;}
	.emilio_tm_pagination_wrap a{font-size: 25px;}
	.emilio_tm_portfolio_wrap ul li{width: 100%;}
	.emilio_tm_portfolio_single_wrap .single_descriptions_wrap .rightbox ul li span.first{min-width: auto;padding-right: 10px;}
	.emilio_tm_pagination_wrap{flex-direction: column;}
	.emilio_tm_commentbox_wrap .wp .avatar{display: none;}
	.emilio_tm_commentbox_wrap .wp{padding-left: 0px;}


	/* topbar-menu响应式样式 */
	.emilio_tm_topbar_wrap {
		padding: 15px 20px;
	}
	.logo {
		margin-right: 15px;
	}
	.topbar-menu {
		flex-wrap: wrap;
		gap: 10px;
	}
	.topbar-menu ul {
		flex-wrap: wrap;
		gap: 10px;
	}
	.topbar-menu li a {
		font-size: 14px;
		padding: 8px 12px;
	}
}
@media (max-width: 480px) {
	.emilio_tm_news_single_wrap .tags span{display: block;margin-bottom: 10px;}
}