			:root{
				--border-radius: 8px;
				--light-red: #f8e9e9;
			}
			
			.text-muted{
				color: #e6e6e6;
			}
			
			
			
			.red-culture-section {
			    background-color: #f3f4f5;
			    padding: 60px 0;
			    overflow: hidden;
			}
			
			.section-header {
			    text-align: center;
			    margin-bottom: 10px;
			}
			
			.section-title {
			    font-size: 2.5rem;
			    font-weight: 700;
			    color: var(--primary-color);
			    margin-bottom: 15px;
			    position: relative;
			    /*display: inline-block;*/
			}
			
			.section-title:after {
			    content: "";
			    position: absolute;
			    bottom: -10px;
			    left: 50%;
			    transform: translateX(-50%);
			    width: 80px;
			    height: 4px;
			    background-color: var(--primary-color);
			}
			
			.section-subtitle {
			    font-size: 1.2rem;
			    color: #6c757d;
			    max-width: 700px;
			    margin: 0 auto;
			}
			
			
			.btn-view-all {
			    display: block;
			    max-width: 200px;
			    margin: 40px auto 0;
			    padding: 12px 24px;
			    background-color: var(--primary-color);
			    color: white;
			    font-weight: 600;
			    border-radius: 30px;
			    text-align: center;
			    transition: all 0.3s;
			}
			
			.btn-view-all:hover {
			    background-color: var(--primary-color);
			    transform: translateY(-2px);
			    color: white;
			    text-decoration: none;
			    box-shadow: 0 4px 12px rgba(193, 44, 44, 0.3);
			}
			
			@media (max-width: 768px) {
			    .scroll-btn {
			        display: none;
			    }
			    
			    .courses-wrapper {
			        padding: 20px 5px;
			    }
			    
			    .course-card {
			        flex: 0 0 280px;
			        margin-right: 15px;
			    }
			    .neibannerdesc-title{margin-bottom:30px;}
                .neibannerdesc-title img{display:none;}
			}
/*关于我们 start*/
			/* .about-row{ height: 640px; } */
			.aboutImg_div{height: 600px;}
			.position-absolute{ object-fit:cover; }
			
			.transform-img-1 {
				top: 0; left: 0; width: 80%; height:60%; z-index: 1;
			}
			.transform-img-2 {
				bottom: 0px; right: 0px; width: 60%; height: 60%; z-index: 2;
				border: 6px solid #fff;
			}
			.transform-img-3 {
				top: 0px; right: 0px; width: 19%; height: 39%; z-index: 3;
				object-fit:contain;
				/* background-color: #fff; */
			}
			.transform-img-3 img{
				object-fit:contain;
			}
			.transform-img-4 {
				bottom: 0px; left: 0px; width: 230px; height: 230px; z-index: 4;				
			}	
			
			.yan-text{
				background: 
				    linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), /* 半透明白色遮罩 */
				    url('../images/yan_bg.jpg') left/cover; /* 背景图 */	
				height: 600px;
				overflow: hidden;
			}
			.yan-text-box{
				margin-top: 65px;
				line-height: 260%;
				text-indent: 29px;
				font-size: 16px;
			}
			.yan-text-box .yan{
				width: 160px;float: left; 
				margin-top: -60px; 
				margin-right:-18px;
				margin-left:18px;
			}
			.yan-text-box .highlight{
				color: #d62d2d;
				text-decoration: none;
				font-weight: 600;
				margin-right: 3px;
				
			}
			/* 音乐播放器容器 */
			.music-player {
			  position: relative;
			}
			
			/* 专辑封面样式 */
			.album-art {
			  width: 100%;
			  height: 100%;
			  overflow: hidden;
			  border-radius: 50%;
			  box-shadow: 
			      0 0 0 5px #eee,
			      0 0 0 10px #fff;
			}
			
			/* 旋转动画 */
			.rotate-animation {
			  animation: rotate 20s linear infinite;
			  animation-play-state: paused;
			}
			
			.music-player.playing .rotate-animation {
			  animation-play-state: running;
			}
			
			@keyframes rotate {
			  from { transform: rotate(0deg); }
			  to { transform: rotate(360deg); }
			}
			
			/* 播放按钮样式 */
			.play-btn {
			  position: absolute;
			  top: 50%;
			  left: 50%;
			  transform: translate(-50%, -50%);
			}
			
			.btn-play-pause {
			  width: 40px;
			  height: 40px;
			  border-radius: 50%;
			  background: rgba(255, 255, 255, 0);
			  border: none;
			  color: #e8e8e8;
			  font-size: 18px;
			  display: flex;
			  align-items: center;
			  justify-content: center;
			  cursor: pointer;
			  z-index: 10;
			  position: relative;
			  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			  transition: all 0.3s ease;
			}
			
			.btn-play-pause:hover {
			  transform: scale(1.05);
			  background: rgba(255, 255, 255, 0.5);
			}
			
			/* 水波纹效果 */
			.ripple {
			  position: absolute;
			  top: 50%;
			  left: 50%;
			  transform: translate(-50%, -50%);
			  width: 40px;
			  height: 40px;
			  border-radius: 50%;
			  background: rgba(255, 255, 255, 0.5);
			  z-index: 1;
			  opacity: 0;
			}
			
			.music-player.playing .ripple-1 {
			  animation: ripple 2s infinite;
			}
			
			.music-player.playing .ripple-2 {
			  animation: ripple 2s infinite 0.5s;
			}
			
			.music-player.playing .ripple-3 {
			  animation: ripple 2s infinite 1s;
			}
			
			@keyframes ripple {
			  0% {
			    width: 40px;
			    height: 40px;
			    opacity: 0.5;
			  }
			  100% {
			    width: 120px;
			    height: 120px;
			    opacity: 0;
			  }
			}
			
			@media (max-width: 992px) {
			    .transform-img-4 {
			    	width: 180px; height: 180px; 
			    }
			    .aboutImg_div,.yan-text{height: 500px;}
			}
			@media (max-width: 768px) {
			    .transform-img-4 {
					width: 130px; height: 130px; 
				}
				.aboutImg_div{height: 350px;}
				.yan-text{height: auto;}
			}
			/*关于我们 end*/
			/*新闻资讯板块--start*/
			.news-container {
			    background-color: white;
			    border-radius: 8px;
			    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
			    overflow: hidden;
			}
			
			/* 轮播样式 */
			.news-container .carousel-item img {
			    height: 408px;
			    object-fit: cover;
			}
			
			.news-container .carousel-caption {
			    background-color: rgba(0,0,0,0.6);
			    padding: 15px;
			    bottom: 0;
			    left: 0;
			    right: 0;
			}
			
			.news-container .carousel-caption h5 {
			    font-size: 1.2rem;
			    margin-bottom: 5px;
			}
			
			.news-container .carousel-caption p {
			    font-size: 0.9rem;
			    margin-bottom: 0;
			}
			
			/* 新闻列表样式 */
			.news-list {
			    padding: 20px;
			    height: 100%;
			}
			
			.news-item {
			    padding: 15px 0;
			    border-bottom: 1px solid #eee;
			    transition: all 0.3s;
			}
			
			.news-item:last-child {
			    border-bottom: none;
			}
			
			.news-item:hover {
			    background-color: #f9f9f9;
			}
			
			.news-item .date {
			    font-size: 0.8rem;
			    color: #888;
			    margin-bottom: 5px;
			}
			
			.news-item h4 {
			    font-size: 1.1rem;
			    margin-bottom: 10px;
			}
			
			.news-item h4 a {
			    color: #333;
			    text-decoration: none;
			    transition: color 0.3s;
			}
			
			.news-item h4 a:hover {
			    color: #d62d2d;
			}
			
			.news-item p {
			    font-size: 0.9rem;
			    color: #666;
			    margin-bottom: 0;
			}
			
			.more-news {
			    text-align: right;
			    margin-top: 20px;
			}
			
			.more-news a {
			    color: #d62d2d;
			    text-decoration: none;
			    font-weight: 500;
			}
			
			.more-news a:hover {
			    text-decoration: underline;
			}
			
			@media (max-width: 992px) {
			    .news-container .carousel-item img {
			        height: 300px;
			    }
			}
			
			@media (max-width: 768px) {			    
			    .news-container .carousel-item img {
			        height: 250px;
			    }
			    
			    .news-list {
			        padding: 15px;
			    }
			}
			/*新闻资讯板块--end*/
			/*名师风采*/
			.msfc-top-bg{
				position: absolute;
				width: 100%;
				padding-bottom: 400px;
				left: 0;
				z-index: -1;
				color: var(--primary-color);
				background: linear-gradient(135deg, rgba(220, 34, 14, 0.7), rgba(145, 32, 32, 0.8)),
				            url('../images/780.jpg');
				background-size: cover;
				background-position: center;
			}
			.msfc_card .section-title{
				color: #fff;
			}
			.msfc_card .section-title:after{
				background-color: #fff;
			}
			.msfc_card .section-subtitle{
				color: #d68582;
			}
			.msfc_card .expert-card{
				border:3px solid;
				border-color: rgba(245,247, 250, 0.1);
			}
			
			/* 专家卡片 */
						.expert-card {
						    background: white;
						    border-radius: var(--border-radius);
						    overflow: hidden;
						    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
						    transition: all 0.3s;
						    margin-bottom: 30px;
						}
						
						.expert-card:hover {
						    transform: translateY(-10px);
						    box-shadow: 0 15px 30px rgba(220, 34, 14, 0.15);
						}
						
						.expert-img {
						    height: 320px;
						    width: 100%;
						    object-fit: cover;
						}
						
						.expert-info {
						    padding: 25px;
						}
						
						.expert-info h4 {
						    color: var(--primary-color);
						    margin-bottom: 5px;
						}
						
						.expert-info .title {
						    color: #666;
						    font-size: 0.9rem;
						    margin-bottom: 15px;
						}

			.course-card {
			    transition: all 0.3s ease;
			    margin-bottom: 30px;
			    height: 100%;
			    border: none;
			    border-radius: 10px;
			    overflow: hidden;
			    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
			    position: relative;
			}
			
			.course-card:hover {
			    transform: translateY(-10px);
			    box-shadow: 0 15px 30px rgba(193, 44, 31, 0.2);
			}
			
			.course-card .card-img-top {
			    height: 220px;
			    object-fit: cover;
			    transition: transform 0.5s;
			}
			
			.course-card:hover .card-img-top {
			    transform: scale(1.05);
			}
			
			.course-card .card-body {
			    padding: 25px;
			}
			
			.course-card .card-title {
			    color: var(--primary-color);
			    font-weight: 700;
			    margin-bottom: 15px;
			    font-size: 1.4rem;
			}
			.badge-feature {
			    background-color: var(--light-red);
			    color: var(--primary-color);
			    font-weight: normal;
			    padding: 5px 10px;
			    margin-right: 8px;
			    margin-bottom: 8px;
			    border-radius: 20px;
			    font-size: 0.85rem;
			}
			
			.btn-red {
			    background-color: var(--primary-color);
			    color: white;
			    border: none;
			    padding: 10px 25px;
			    border-radius: 30px;
			    font-weight: 500;
			    transition: all 0.3s;
			}
			
			.btn-red:hover {
			    background-color: var(--dark-red);
			    color: white;
			    transform: translateY(-2px);
			    box-shadow: 0 5px 15px rgba(193, 44, 31, 0.3);
			}
			
			.btn-outline-red {
			    border: 1.5px solid var(--primary-color);
			    color: var(--primary-color);
			    background: transparent;
			    padding: 8px 20px;
			    border-radius: 30px;
			    font-weight: 500;
			    transition: all 0.3s;
			}
			
			.btn-outline-red:hover {
			    background-color: var(--primary-color);
			    color: white;
			}
			
			.feature-icon {
			    font-size: 2.5rem;
			    color: var(--primary-color);
			    margin-bottom: 20px;
			}
.gray-row{
	background-color: #f3f3f3;
}
.content-style{
    line-height: 200%;
}
.content-style img{
    max-width: 100%;
    margin-right: 15px;
}
.content-style p{
    text-indent: 2rem;
    margin: 10px auto;
}
/*--课程体系--*/
.index-course-system .section-header{
    color: #fff;
}
.index-course-system .section-title:after{
				background-color: #fff;
			}
.course-system-card {
			    background-color: white;
			    border-radius: 10px;
			    padding: 30px;
			    height: 100%;
			    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
			    border-top: 4px solid var(--primary-color);
			    transition: all 0.3s;
			}
			
			.course-system-card:hover {
			    transform: translateY(-5px);
			    box-shadow: 0 10px 25px rgba(193, 44, 31, 0.1);
			}
			
			.course-system-card h4 {
			    color: var(--primary-color);
			    font-weight: 700;
			    margin-bottom: 20px;
				font-size: 1.2rem;
			    text-align: center;
			}
			
			.course-system-card ul {
			    padding-left: 20px;
			}
			
			.course-system-card ul li {
			    margin-bottom: 10px;
			    position: relative;
			}
			
			.course-system-card ul li:before {
			    content: '•';
			    color: var(--primary-color);
			    font-weight: bold;
			    display: inline-block;
			    width: 1em;
			    margin-left: -1em;
			    position: absolute;
			    left: 0;
			}
			
.xcjx_bg{
        
    	background: linear-gradient(135deg, rgba(220, 34, 14, 0.7), rgba(145, 32, 32, 0.8)),
				            url('../images/bg2.jpg');
    	min-height: 300px;
    	background-size: cover;
		background-position: bottom;
}
.xcjx_bg .section-title{
				color: #fff;
			}
			.xcjx_bg .section-title:after{
				background-color: #fff;
			}
			.xcjx_bg .section-subtitle{
				color: #d68582;
			}
.xcjx_bg .figure:hover {
						    transform: translateY(-10px);
			    box-shadow: 0 15px 30px rgba(193, 44, 31, 0.2);
						}
.xcjx_bg .course-card .card-body {
			    padding-bottom: 0px;
			}
			.xcjx_bg .course-card .card-title {
			    color: var(--primary-color);
			    font-weight: 600;
			    margin-bottom: 0px;
			    font-size: 1.0rem;
			}