 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        
        body {
            background-color: #FFF;
            color: #333;
         
            font-family:"思源黑体";
        }
        p{letter-spacing: 1px;}
        dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, legend, input, button, textarea, p, blockquote, th, td { margin: 0; padding: 0; }
table {  border-spacing: 0; outline: 0; font-size: 14px;font: 14px Helvetica Neue,Helvetica,PingFang SC,\5FAE\8F6F\96C5\9ED1,Tahoma,Arial,sans-serif; }
img { border: 0; }
address, caption, cite, code, dfn, em, strong, th, var, optgroup { font-style: normal; font-weight: inherit; }
strong { font-weight: bold; }
li { list-style: none; }
abbr, acronym { border: 0; font-variant: normal; }
input, button, textarea, select, optgroup, option { font-family: inherit; font-size: inherit; font-style: inherit; font-weight: inherit; }
a:link {   text-decoration: none; }
a:visited { color: #000000; text-decoration: none; }
a:hover { color: #DD0000; text-decoration: none; }
a:active { color: #000000; text-decoration: none; }
        .container {
            max-width: 1380px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 导航栏样式 */
        header {
            background-color: #eb3436;
            position: sticky;
            top: 0;
            z-index: 999;
            transition: background-color 0.3s;
        }
        
        header.scrolled {
            background-color: #eb3436;
            box-shadow: 0 2px 10px rgba(240, 44, 44, 0.2);
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .navbar-left {
            display: flex;
            align-items: center;
            flex: 1;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFF;
            margin-right: 50px;
        }
        
        .nav-search {
            position: relative;
            width: 385px;
        }
        
        .nav-search input {
            width: 100%;
            padding: 10px 15px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            background-color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s;
            position: relative;
            padding-left: 35px;
        }
        .nav-search input::before {
            content: "🔍";
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
        }
        .search-icon{
            position: absolute;
            top: 11px;
            left: 10px;
            z-index: 2;
            color: #eb3436;
        }
        .nav-search input:focus {
            background-color: #fff;
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
        }
        
        .nav-search button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #eb3436;
            border: none;
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            cursor: pointer;
            font-size: 12px;
            transition: background-color 0.3s;
        }
        
        .nav-search button:hover {
            background: #d32a2c;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #FFF;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFF;
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .auth-links a {
            text-decoration: none;
            color: #d32a2c;
            font-size: 15px;
           
            transition: color 0.3s;
        }
        .auth-links{background: #FFF;border-radius: 6px;padding: 5px 15px;color: #d32a2c;}
        
        .auth-links a:first-child {
            color: #d32a2c;
 
        }
        
        .auth-links a:hover {
            color: #d32a2c;
        }
        
        /* 轮播图样式 */
        .carousel {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
          
        }
        
        .carousel-inner {
            display: flex;
            width: 300%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            width: 33.333%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .slide-content {
            text-align: left;
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
            margin-left: -648px;
        }
         
        .slide-title {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }
        
        .slide-subtitle {
            font-size: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 20px;
        }
        
        .slide-desc {
            font-size: 1.2rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            margin-bottom: 30px;
        }
        
        .slide-btn {
            background: #FFF;
            color: #eb3436;
            border: none;
            padding: 15px 44px;
            border-radius: 8px;
            font-size: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        .slide-btn a{
             color: #eb3436;
        }
        .slide-btn:hover a{
            color:#FFF;
        }
        .slide-btn:hover {
            background: linear-gradient(45deg, #eb3436, #ec2528);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color:#FFF;
        }
        
        .slide-1 {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('./images/banner1.png');
        }
        
        .slide-2 {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('./images/banner2.png');
        }
        
        .slide-3 {
            background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('./images/banner3.png');
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background-color 0.3s;
            z-index: 3;
        }
        
        .carousel-control:hover {
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .prev {
            left: 20px;
        }
        
        .next {
            right: 20px;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 3;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .indicator.active {
            background-color: white;
        }
        
        /* 主要内容区域 */
        .main-content {
            padding: 0px 0 40px;
            z-index: 9;
            max-width: 1380px;
            margin: 20px auto;
            min-width: 1280px;
        }
        
        .hero-section {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero-title {
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .hero-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #2c80ff;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: background-color 0.3s, transform 0.2s;
        }
        
        .cta-button:hover {
            background-color: #1a6de0;
            transform: translateY(-2px);
        }
        
        /* 课程展示区域 */
        .course-section {
            background-color: #fff;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 30px;
            color: #1a1a1a;
            text-align: center;
        }
        
        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .course-card {
            background-color: #f9fafc;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .course-img {
            height: 160px;
            background-color: #e1e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
        }
        
        .course-info {
            padding: 20px;
        }
        
        .course-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .course-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
        }
        
        .course-meta {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            color: #888;
        }
        
        /* 页脚 */
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 0;
            margin-top: 20px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #2c80ff;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            color: #95a5a6;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
            }
            
            .navbar-left {
                width: 100%;
                margin-bottom: 15px;
                justify-content: space-between;
            }
            
            .nav-search {
                width: 60%;
            }
            
            .nav-links {
                margin: 15px 0;
            }
            
            .carousel {
                height: 400px;
            }
            
            .slide-title {
                font-size: 2rem;
            }
            
            .slide-subtitle {
                font-size: 1.2rem;
            }
            
            .slide-desc {
                font-size: 1rem;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .course-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-column {
                flex: 100%;
            }
        }
         .cont_1-container {
            max-width: 1380px;
            width: 100%;
            margin: 0 auto;
            margin-top: -80px;
        }
        
        .cont_1-title {
            text-align: center;
            color: #333;
            margin-bottom: 40px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        .cont_1-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }
        .cont_1-cards .vss1{display: flex;align-items: center;justify-content: space-between;}
        .cont_1-cards img{width:38px;height: 38px;display: inline-block;margin-right: 20px;}
        .cont_1-card {
            background: white;
            border-radius: 15px;
            padding: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: max-content;
        }
        
        /* .cont_1-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #ee1515, hsl(0, 98%, 44%));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        } */
        
        .cont_1-card:hover {
            transform: translateY(-10px) scale(1.15);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        /* .cont_1-card:hover::before {
            transform: scaleX(1);
        } */
        
        .cont_1-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            font-size: 30px;
            color: white;
        }
        
        .cont_1-card:nth-child(1) .cont_1-icon {
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
        }
        
        .cont_1-card:nth-child(2) .cont_1-icon {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }
        
        .cont_1-card:nth-child(3) .cont_1-icon {
            background: linear-gradient(135deg, #43e97b, #38f9d7);
        }
        
        .cont_1-card:nth-child(4) .cont_1-icon {
            background: linear-gradient(135deg, #fa709a, #fee140);
        }
        .cont_1-cards .hovv{
            transform: translateY(-38px) scale(1.01);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            background-image: linear-gradient(90deg, rgba(255, 253, 254, 0.8), rgb(225 179 148 / 80%));
            background-repeat: no-repeat;
            background-size: contain;
            background-position:  50%;
        }
        .cont_1-cards .ms1{
            width: 30px;
            height: 45px;
            margin-left: 0px !important; ;
            margin-right: 10px !important;
        }
        .cont_1-cards .ms2{
            width: 30px;
            height: 45px;
            margin-left:  10px !important; ;
            margin-right: 0 !important;
        }
         .cont_1-card.hovv:hover::before {
            transform: scaleX(1);
        }
         .cont_1-card.hovv:hover p.cont_2-card-description{
            color: #d32a2c;
            display: inline-block;
         }
         .cont_1-card  p.cont_2-card-description{
            display: none;
         }
         .hovv  h2{
              color: #f3a979 !important;
         }
         .cont_1-card.hovv:hover h2{
            color: #f3a979 !important;
         }
        .cont_1-card.hovv::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /* background: linear-gradient(90deg, #ee1515, hsl(0, 98%, 44%)); */
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        .cont_1-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }
        
        .cont_1-card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-top: 5px;
        }
        .cont_2-card-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .cont_1-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .cont_1-cards {
                grid-template-columns: 1fr;
            }
            
            .cont_1-title {
                font-size: 2rem;
            }
        }
        .logo{display: flex;align-items: center;margin-right: 50px;}
        .logo img{width: 130px;margin-right: 20px;}
 .cont_2-container{
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
 }
 
 .cont_2_tit p{color: gray;margin-top: 10px;}
  .cont_2_tit{
    margin: 25px auto 30px;
    text-align: center;
 }
 .cont_2_tit h2{
    font-size: 36px;
 }
 .cont_3_tit p{color: gray;margin-top: 10px;}
  .cont_3_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_4_tit p{color: gray;margin-top: 10px;}
  .cont_4_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_5_tit p{color: gray;margin-top: 10px;}
  .cont_5_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_6_tit p{color: gray;margin-top: 10px;}
  .cont_6_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_7_tit p{color: gray;margin-top: 10px;}
  .cont_7_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_8_tit p{color: gray;margin-top: 10px;}
   .cont_8_tit{
    margin: 80px auto 40px;
    text-align: center;
 }
 .cont_2_c_left{
    width: 300px;
    border-radius:20px ;
    background-color: #cb3536;
 }
.cont_2_c_left ul{width: 100%;padding: 48px 0;}
.cont_2_c_left li{position: relative;}
.c2h_1 {position: absolute;width: 100%;height: 100%;}
.cont_2_c_left ul li div{display: flex;align-items: center; position: relative;padding: 0 20px;padding: 15px;line-height: 45px;}
.cont_2_c_left ul li div img{margin-right: 25px;}
.cont_2_c_left ul li .shug{position: absolute;top: 20px;left: 0;z-index: 1;height: 35px;}
.cont_2_c_left ul li{color:#FFF;font-size: 18px;font-weight: 700; }
.cont_2_c_left ul li.hover{color: #cb3536; }
.cont_2_c_left ul li:hover{cursor: pointer; transition: transform 0.6s ease;}
.c2h_3{width: 20px;}
.cont_2_c_left li.hover .shu{display: inline-block;}
.cont_2_c_left li .shu{display: none;}
.cont_2_c_left li.hover .c2h_1{display: inline-block;}
.cont_2_c_left li .c2h_1{display: none;}
.cont_2_c_left li.hover .c2h_2{display: inline-block;}
.cont_2_c_left li .c2h_2{display: none;}
.cont_2_c_left li .c2h_3{display: inline-block;}
.cont_2_c_left li.hover .c2h_3{display: none;}
.cont_2_c_left li .c2h_2{width: 19px;}
.cont_2_c_left li .c2h_3{width: 19px;}
.cont_2_c_lr {width: 100%; margin: 0 auto;display: flex;align-items: center;}
.cont_2_c_right{width: 1050px;margin-left: 30px;border-radius: 20px;}
.cont_2_c_r_ti{background: #cb3536;color: #FFF;padding:25px 30px 35px;border-top-right-radius: 20px;border-top-left-radius: 20px;}
.cont_2_c_r_tit{display: flex;align-items: center;font-size:20px;font-weight: 800;padding: 10px 0;}
.cont_2_c_r_tit img{width: 50px;margin-left: 15px;}
.cont_2_c_right li{border-radius: 20px;}
.mk1_2 img{width: 30px;margin-left: 10px;}
.mk1{display: inline-flex;width:45%;margin: 15px 1%;margin-left: 3%; }
.mk1_1{color: #FFF;background: #cb3536; border-radius: 6px;height: 20px;line-height: 20px;font-size: 12px;width: 55px;text-align: center;}
.cont_2_c_r_tit_t{letter-spacing: 1px;width: 75%;}
.cont_2_c_r_tit_con{box-shadow:2px 10px 15px 1px #DDD;padding: 10px;border-bottom-left-radius:15px;border-bottom-right-radius: 15px;}
.mk1_2{margin-left: 10px;}
.mk1_2 div{display: flex;align-items: center;font-size: 18px;font-weight: 800;}
.mk1_2 p{color: gray;font-size: 12px;margin-top: 5px;}
.mk1_2 div:hover,.mk1_2 p:hover {cursor: pointer;color: #cb3536;}
.usinfs a{color: #333 !important;}
.cont_6-right {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
            padding: 0;
        }
        
        .teacher-profile {
            background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            color: white;
            position: relative;
        }
        
        .teacher-info-left {
            flex: 1;
            padding:0  5px;
        }
        
        .teacher-image-right {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
        
        .teacher-image-right img {
            width: 100%;
            max-width: 200px;
            border-radius: 18px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .teacher-name {
            display: flex;
            align-items: center;
            font-size: 28px;
            margin-bottom: 10px;
            /* font-weight: bold; */
            justify-content: flex-start;
            text-align: left;
        }
        .teacher-name  img{
            margin-right: 10px;
        }
        
        .teacher-icon {
            width: 30px;
            /* height: 40px; */
            margin-right: 10px;
        }
        
        .teacher-meta {
            margin-bottom: 20px;
        }
        
        .teacher-subject {
            font-size: 18px;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .teacher-experience {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .experience-line {
            height: 2px;
            background-color: white;
            margin: 15px 0;
            width: 100%;
        }
        
        .teacher-introduction {
            /* margin-bottom: 25px; */
            line-height: 1.6;
        }
        
        .teacher-introduction p {
            margin-bottom: 10px;
            font-size: 15px;
            text-indent: 1em;
        }
        
        .teacher-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 29px;
            margin-top: 20px;
        }
        
        .teacher-tag {
            border: 6px solid white;
            border-radius: 6px;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: bold;
            color: white;
            background-color: transparent;
        }
        
        .try-button-container {
            display: flex;
            justify-content: flex-end;
     
        }
        
        .try-button {
            background-color: white;
            color: #b21f1f;
            border: none;
            border-radius: 6px;
            padding: 8px 35px;
            font-size: 14px;
            font-weight: inherit;
            /* font-weight: 800; */
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .try-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background-color: #ffebee;
        }
        
        @media (max-width: 768px) {
            .teacher-profile {
                flex-direction: column-reverse;
            }
            
            .teacher-image-right {
                padding-top: 0;
            }
            
            .teacher-tags {
                flex-direction: column;
                gap: 15px;
            }
            
            .try-button-container {
                justify-content: center;
            }
        }


        /* cont_8-left 样式 */
.cont_8-left {
   width: 720px;
    padding-right: 10px;
}

.company-intro {
    /* background: #fff; */
    border-radius: 8px;
    padding: 30px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

.company-desc {
    margin-bottom: 30px;
}

.indented {
    text-indent: 2em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
    /* display: flex; */
    /* align-items: center; */
}
.indented span{font-size: 30px;font-weight: 800;color: #cb3536;width: 103px;}
.company-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 0;
    border-radius: 8px;
    /* background: #f9f9f9; */
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.1); */
}

.feature-item img {
    width:30px;
    height: 30px;
    margin-bottom: 10px;
}

.cont_6-left .feature-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
}
.feature-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.feature-en {
    font-size: 10px;
    color: #666;
    /* text-transform: uppercase; */
}
.teacher-overlay .teacher-details p{text-indent: 1em;font-size: 14px;line-height: 22px;margin-bottom: 10px;}
.jpjs{    background-color: white;
    color: #b21f1f;
    border: none;
    border-radius: 6px;
    padding: 8px 35px;
    font-size: 14px;
    font-weight: inherit;
    /* font-weight: 800; */
    cursor: pointer;
    transition: all 0.3s ease;
    width:max-content;
      display: flex;
        align-items: center;
        justify-content: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 30px;
    right: 30px;
}

    .jpjs:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            background-color: #ffebee;
        }
     .teacher-overlay .teacher-tags{
        margin: 0px 0;
     }
    .teacher-overlay .teacher-courses{
        padding-left: 25px;
    }
    .teacher-overlay .teacher-tags{
        display: flex;
        align-items: center;
        justify-content: left;
    }

    .teacher-overlay .teacher-info{display: inline-block;}
    .teacher-overlay .teacher-details {overflow-y: inherit;position: relative;height: max-content;flex: inherit;margin-bottom: 30px;}
    .bg_w100{width: 100%;margin:0 auto;background: #fff7f8;}
      .navbar .auth-links{position: relative;}
    .navbar .usinfs{top: 105%;}