/* 知识产权版块样式 */
#intellectual-property {
    padding: 80px 0;
    background-color: #fff;
}

.ip-badge {
    margin-top: 15px;
}

.ip-badge .badge {
    background-color: #36bcf6;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    margin: 0 5px;
    font-size: 12px;
}

.card-style {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.card-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 125px rgba(0,0,0,0.1);
}

.card-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.card-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 微信弹窗样式 */
/* 底部微信弹窗基础样式 */
.md-modal-bottom-wechat {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    max-width: 530px; 
    height: auto;
    z-index: 2000;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/* 微信弹窗样式 */
.wechat-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wechat-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wechat-popup-content {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    max-height: 80vh;
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wechat-popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    z-index: 1;
}

.wechat-popup-title {
    color: #333;
    margin: 20px 0;
    padding-bottom: 15px;
    text-align: center;
    font-size: 28px;
    border-bottom: 1px solid #eee;
}

.wechat-popup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    overflow-y: auto;
}

.wechat-popup-body p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.wechat-popup-body img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 响应式调整 */
@media (max-width: 768px) {
	
    .wechat-popup-content {
        width: 90%;
        height: 90%;
        padding: 15px;
    }
    
    .wechat-popup-title {
        font-size: 22px;
    }
    
    .wechat-popup-body p {
        font-size: 16px;
    }
	
}

.md-show {
    visibility: visible;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}

.md-content {
    color: #333;
    background: #fff;
    position: relative;
    border-radius: 35px;
    margin: 0 auto;
    padding: 20px;
	height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.md-content img {
    max-width: 100%;
    border: 1px solid #eee;
    padding: 5px;
    background: #fff;
}

.md-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 34px;
    color: #999;
    text-decoration: none;
}

.md-close:hover {
    color: #333;
}

/* 弹窗动画效果 */
.md-effect-1 .md-content {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-show.md-effect-1 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

/* 弹窗容器样式 */
.popup-overlay {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease; 
}

.popup-overlay.active {
    opacity: 1; 
    visibility: visible; 
}

/* 弹窗内容区域 */
.popup-content {
    background-color: #fff; 
    border-radius: 30px; 
    width: 80%; 
    max-width: 1000px; 
    height: 90%;  /* 固定高度 */
    max-height: 90vh; 
    padding: 30px; 
    position: relative; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex; 
    flex-direction: column; 
}

.popup-job-content p {
    margin: 12px 0;       /* 上下8px，左右0 */ 
}

.popup-job-content h3{ 
	margin-top: 5px;
}

/* 关闭按钮（右上角） */
.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 39px;
    cursor: pointer;
    color: #666;
    z-index: 1; /* 确保在最上层 */
}

/* 职位标题区域 */
.popup-job-title {
    color: #2c3e50;
    margin-top: 30px;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 40px); /* 留出关闭按钮空间 */
}

/* 内容区域（可滚动） */
.popup-job-content {
    flex: 1; /* 占据剩余空间 */
    overflow-y: auto;
    padding: 0 50px;
    line-height: 1.5;
    color: #555; 
}


/* 按钮容器（固定在底部） */
.popup-button-container {
    text-align: center;
    padding-top: 10px;
	margin-bottom: 20px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .popup-content {
        padding: 15px;
        width: 90%;
        height: 90%;
        max-height: 85vh;
    }
    
    .popup-job-content {
        padding: 0 20px;
    }
	
	.popup-job-content p {
		margin: 12px 0;       /* 上下8px，左右0 */ 
	}
	
	.popup-job-content h3{ 
		margin-top: 5px;
	}
    
    .popup-job-title {
		text-align: center;
        font-size: 25px;
    }
}




/* 轮播控件样式 */

/*-------------------
 * Jumbotron
 *-------------------*/

.jumbotron_news_page {
    
	background: url("../img/top-banner-bg.png") no-repeat center center;
				background-size: cover;  /* 确保背景图覆盖整个区域 */
				padding: 0;
				margin: 0;
				position: relative; 
				height                : 20vh;
				min-height            : 20vh;
    }
 

.jumbotron {
    background            : url("../img/img-edu-hero-1.jpg");
    background-size       : cover;
    padding               : 0;
    margin                : 0;
    height                : 100vh;
    min-height            : 700px;
    vertical-align        : middle; 
    background-attachment : fixed;
    background-repeat     : no-repeat;
    background-position   : center center;
    overflow              : hidden;
    position: relative; /* 父容器必须设置 relative */   
}

.jumbotron .content {
    position          : absolute;
    top            : 43%;
    left              : 0;
    right             : 0;
    height            : 40%;
    width             : 100%;
    margin            : 0 auto;
    padding           : 0 10%;
    transform         : translateY(-50%);
    -webkit-transform : translateY(-50%);
    -moz-transform    : translateY(-50%);
}

.jumbotron .content h1 {
    color       : #ffffff;
    font-weight : bold;
	font-size: 4em;
}

.jumbotron .content p {
    font-size : 1.6em;
    color     : rgba(255, 255, 255, .7);
    }

.jumbotron .btn {
    margin-top : 20px;
    visibility: collapse;
}

.jumbotron .carousel-container { 
            width: 100%;
            max-width: 80vw; /* 限制最大宽度为视口宽度 */
            margin: 0 auto;
            bottom: 50px;
            left: 50%; /* 先移动到50%位置 */
            transform: translateX(-50%); /* 再向左回退自身宽度的一半 */
            position: absolute;
            overflow: hidden;
            box-sizing: border-box; /* 防止padding影响宽度 */   
        }
        
        .carousel {
            display: flex;
            transition: transform 0.5s ease;
            will-change: transform;
        }
        
        .carousel-item {
            flex: 0 0 25%;
            padding: 0 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .carousel-item:hover {
            transform: translateY(-5px);
        }
        
        .carousel-image {
            width: 100%;
            height: 170px;
            /* object-fit: cover; */ 
            border-radius: 20px;
            display: block;
            background-color: #444;
        }
        
        .carousel-title {
            color: white;
            margin-top: 10px;
            text-align: center;
            font-size: 16px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 0 5px;
        }
        
        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .nav-dot {
            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 ease;
        }
        
        .nav-dot.active {
            background-color: white;
        }
        
        .carousel-btn {
            position: absolute;
            top: 35%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.5);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .carousel-btn:hover {
            background-color: rgba(255, 255, 255, 0.7);
        }
        
        .carousel-btn.prev {
            left: 10px;
        }
        
        .carousel-btn.next {
            right: 10px;
        }
 
        
        @media (min-width: 768px) and (max-width: 1024px) {
			.jumbotron .lead{ 
				
			}
             
            .carousel-item {
                flex: 0 0 50%;
            }
            
            .jumbotron .content h1 {
                color       : #ffffff;
                font-weight : bold;
                font-size: 4em;
                line-height: 1.2;
            }
			
			.jumbotron_news_page {
				background: url("../img/top-banner-bg.png") no-repeat center center;
				background-size: cover;  /* 确保背景图覆盖整个区域 */
				padding: 0;
				margin: 0;
				position: relative;
				overflow: hidden;
			}
			
			 
			
			/* 菜单相对于 more 的位置
			 * and giving it a position of absolute */
			nav ul ul {
				display: none;
				position: absolute;
				top: 36px;
				right: 00px;
				background: #FFF;
				padding: 10px;
				border-radius: 15px;
				border-width: 1px;
				/* 阴影效果 */
				box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
			}

        }       

		@media (max-width: 767px) {
					.carousel-container{
						visibility: collapse;
					}
					.jumbotron .btn {
						visibility: visible;
					}
		}



/* 卡片样式 */
.card-style {
    background: #f8fbff; /* 浅蓝色背景 */
    border-radius: 30px;
    padding: 10px; /* 减少内边距 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #EFEFEF;
}

.card-gary-style {
    background: #FEFEFE; /* 浅蓝色背景 */
    border-radius: 30px;
    padding: 10px; /* 减少内边距 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #EFEFEF;
}

.card-style:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-content {
	padding-top: 8px;
	padding-left: 20px;
	padding-right: 20px; 
	padding-bottom: 25px;
}

.card-style h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 25px;  
    position: relative;
    padding-bottom: 12px;
}

.card-style h3:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 20px;
    height: 4px;
	border-radius: 4px;
    background: #36bcf6;
    transform: translateX(-50%);
}

.card-style p {
    color: #888888;
    line-height: 1.7;
    text-align: justify;
    padding: 0 15px;
	margin-top: 22px;
    font-size: 18px; /* 正文小2号 */
}

.highlight-text {  
    text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card-style {
        margin-bottom: 20px;
    }
    
    .card-style h3 {
        font-size: 30px !important; /* 标题30px */
    }
    
    .card-style p {
        font-size: 18px !important; /* 与公司介绍正文相同大小 */
    }
}
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

		 
        /* 新闻栏目样式 */
        .news-section { 
            padding: 70px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

		.section-title p {
            font-size: 19px;
        }
        
        .section-subtitle {
            font-size: 16px;
            color: #666;
        }
        
        /* 新闻网格布局 */
        .news-grid {
            margin: 0 -12px;
        }
        
        .news-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        
        /* 新闻项样式 */
        .news-item {
            flex: 0 0 calc(25% - 24px);
            margin: 0 12px 24px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .news-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }
        
        .news-image {
            position: relative;
            height: 160px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-item:hover .news-image img {
            transform: scale(1.05);
        }
        
        .news-content {
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .news-title {
            margin: 0 0 12px 0;
            font-size: 15px;
            font-weight: normal;
            line-height: 1.4;
            height: 42px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        
        .news-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .news-title a:hover {
            color: #36bcf6;
        }
        
        /* 新闻元信息样式 */
        .news-meta {
            display: flex;
            align-items: center;
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
            width: 100%;
        }
        
        .news-date {
            font-size: 13px;
            color: #888;
        }
        
        /* New标签样式 - 红色无背景动态 */
        .new-label {
            display: inline-block;
            color: #ff3333;
            font-size: 12px;
            font-weight: bold;
            margin-left: 10px;
            animation: pulse 0.8s infinite alternate;
            transform-origin: left center;
        }
        
        @keyframes pulse {
            0% { 
                transform: scale(0.9);
                opacity: 0.8;
            }
            100% { 
                transform: scale(1.1);
                opacity: 1;
            }
        }
        
        /* 查看更多按钮 */
        .btn-outline-primary {
            border: 1px solid #36bcf6;
            color: #36bcf6;
            padding: 10px 30px;
            border-radius: 30px;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            text-decoration: none;
        }
        
        .btn-outline-primary:hover {
            background: #36bcf6;
            color: white;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .news-item {
                flex: 0 0 calc(25% - 24px);
				margin-left: 10px;
				margin-right: 10px;
            }
        }
        
        @media (max-width: 992px) {
            .news-item {
                flex: 0 0 calc(33.333% - 94px); 
            }
        }
        
        @media (max-width: 768px) {
            .news-item {
                flex: 0 0 calc(50% - 24px);
            }
        }
        
        @media (max-width: 576px) {
            .news-item {
                margin-left: 10px;
                margin-right: 10px;
            }
            
            .news-image {
                height: 200px;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 16px;
                height: 44px;
            }
        }


body {
    font-family : 'Roboto', sans-serif;
    font-size   : 18px;
    line-height : 1.7em;
    color       : #888888;
    font-weight : normal;
    background  : #ffffff;
}


h1, h2, h3, h4, h5, h6 {
    margin : 0 0 15px;
    color  : #444444;
    }

h1 {
    font-size   : 54px;
    line-height : 1em;
    font-weight : 700;
    }

h2 {
    font-size   : 37px;
    line-height : 1em;
    font-weight : 700;
    }
 

h3 {
    font-size   : 25px;
    line-height : 1.08em;
    font-weight : 500;
    }

h4 {
    font-size   : 17px;
    line-height : 1.5em;
    font-weight : 500;
    }

h5 {
    font-size   : 17px;
    line-height : 1.5em;
    font-weight : 500;
    }

h6 {
    font-size   : 15px;
    line-height : 1.5em;
    }

/* --------------------------------------
 * LINK STYLE
 *------------------------------------------*/
a {
    color              : #0d99ce;
    text-decoration    : none;
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
    }

a,
a:active,
a:focus,
a:active {
	color              : #0d99ce;
    text-decoration    : none;
    -webkit-transition : all 0.3s ease 0s;
    -moz-transition    : all 0.3s ease 0s;
    -o-transition      : all 0.3s ease 0s;
    transition         : all 0.3s ease 0s;
    }

a:hover,
a:focus {
    text-decoration : none;
    color           : #333;
    }

p {
    margin-bottom : 20px;
    }

ul {
    margin     : 0;
    padding    : 0;
    list-style : none;
    }

/*------------------
 * Button Style
 *------------------*/
.btn {
    padding       : 15px 30px;
    margin-bottom : 0;
    font-size     : 16px;
    font-weight   : 500;
    border-radius : 30px;
    border        : 0; 
    }

.btn-lg {
    font-weight : 700;
    font-size   : 25px;
    padding     : 15px 30px;
    }

/*btn-primary*/
.btn-primary {
    background-color : #0d99ce;
    }

.btn-primary_apply_job {
    background-color : #CA3828;
    }
.btn-primary_apply_job:hover,
.btn-primary_apply_job:focus,
.btn-primary_apply_job:active:focus {
    background : #ca9133; 
	color: #FFF;
    }


.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
    background : #ca9133; 
    }

.btn-apply-job-default {
    color            : #ffffff;
    background-color : #EE3B3E;
    }

/*btn-default*/
.btn-default {
    color            : #ffffff;
    background-color : #1A93C1;
    }

.btn-default:hover,
.btn-default:focus,
.btn-default:active:focus {
    background : #1A93C1;
    color      : #ffffff;
    }

button:focus,
.btn:focus,
.btn:active:focus {
    outline : none;
    }

/* --------------------
 * Section Background
 * -------------------*/

.gray-bg {
    background-color : #FAF9FA;
    border-top       : 1px solid #eeeeee;
    border-bottom    : 1px solid #eeeeee;
    }

.white-bg {
    background-color : #ffffff;
    }

/* --------------------
 *  main Wrapper
 * -------------------*/
#main-wrapper {
    background : #ffffff;
    overflow   : hidden;
    }

/*-----------------------------
 * NAVIGATION & HEADER STYLE
 *-------------------------------*/

.header {
    position : absolute;
    left     : 0;
    right    : 0;
    top      : 40px;
    z-index  : 9;
	}
 
/*Logo*/
.logo {
    position : relative;
	margin-top: -4px;
 	}

.logo .logowidth {
	width: 60px; 
	height: 70px;
	}

@media (max-width : 768px) {
		.header {
			text-align: center;
			}
		.logo {
			position : relative; 
			margin-top: 10px;
		 	}
		.home-page-words{
			visibility: collapse
			}
		.logo .logowidth {
			width: 76px; 
			height: 88px;
			}
}


/* header info box */
.info-box {
    text-align : right;
    }

.info-box span {
    font-size : 14px;
    color     : rgba(255, 255, 255, 0.7);
    display   : block;
    }

.info-box strong {
    color     : #ffffff;
    font-size : 24px;
    }


@media (max-width : 600px) {
    .info-box {
        text-align: center;
        margin-top: 20px;
        }
    }

/*---------------------------
* Section Title
*---------------------------*/
.section-title {
    margin-bottom : 30px;
    text-align    : center;
    }

.section-title h2 {
    margin-bottom : 5px;
    }

.section-title p.lead {
	padding-top: 10px; 
    color     : #888888;
	padding-left: 100px;
	padding-right: 100px;
	font-size: 20px;
    }

@media (max-width : 800px){
	.section-title {
		margin-top: 10px;
		margin-bottom : 20px;
		text-align    : center;
    }
	
    .section-title h2{
        font-size: 35px;
        }
    .section-title p.lead{
		padding-left: 25px;
		padding-right: 25px;
        font-size: 20px;
        }
    }



/*-------------------
 * Icon Left Style
 *-------------------*/

.feature-icon-wrapper {
    padding : 90px 0 100px;
	background-color: #FFF;
    }

.icon-left-style {
    margin-bottom : 50px;
    padding       : 0 40px;
    }

.icon-left-style .media img {
    width : 80px;
    }

.icon-left-style .media .media-left {
    padding-right : 30px;
    }

.icon-left-style .media .media-heading {
    font-size     : 24px;
    margin-bottom : 15px;
    }

.icon-left-style .media .media-body
    font-size : 18px;
    }

@media (max-width: 600px){
	
	
    .icon-left-style .media{
        display: block;
        }

    .icon-left-style .media-object{
        max-width: 100%;
        height: auto;
        margin-bottom: 15px;
        }
    .icon-left-style .media-body,
    .icon-left-style .media-left,
    .icon-left-style .media-right{
        display: block;
        width: 100%;
        }
    }



/*-------------------
 * Our Approach
 *-------------------*/
.section-our-approach { 
	padding-top: 70px;
	padding-bottom: 90px;
    }

.section-our-approach .up-title {
    font-size     : 24px;
    margin-bottom : 15px;
    }

.section-our-approach .media-heading {
    margin-bottom : 30px;
    }


@media (max-width: 768px){
	.section-our-approach { 
		padding-top: 50px;
		padding-bottom: 50px;
    }
	
    .section-our-approach .media{
        display: block;
        }

    .section-our-approach .media-object{
        margin: 0 auto 16px;
        max-width: 100%;
        height: auto;
        }
    .section-our-approach .media-body,
    .section-our-approach .media-left,
    .section-our-approach .media-right{
        display: block;
        width: 100%;
        text-align: center; 
		padding-left: 7px;
		padding-right: 7px;
        }
	.section-our-approach .media-body .media-heading{
		font-size: 35px;
		display: block;
        width: 100%;
        text-align: center;
	}
	.section-our-approach .media-body .btncenter{
		text-align: center;
	}
	
    }

/*-------------------
 * Process Block
 *-------------------*/
.section-process-wrapper {
    padding-top : 70px;
	padding-bottom: 120px;
    }

.process-block i {
    width         : 80px;
    height        : 80px;
    line-height   : 80px;
    text-align    : center;
    font-style    : normal;
    font-size     : 30px;
    font-weight   : 400;
    display       : block;
    border        : 2px solid #cccccc;
    border-radius : 100%;
    color         : #0d99ce;
    margin        : 0 auto;
    }

.process-block h3 {
    margin : 30px 0 15px;
    }

.action-button-wrapper {
    margin-top : 50px;
    }

/*-------------------
 * Section Statistics
 *-------------------*/
.section-statistics {
    padding               : 100px 0;
    background            : url("../img/img-statistics-bg.jpg");
    position              : relative;
    background-attachment : fixed;
    background-repeat     : no-repeat;
    background-position   : center center;
    overflow              : hidden;
    }

.section-statistics::before {
    content    : "";
    position   : absolute;
    left       : 0;
    right      : 0;
    top        : 0;
    bottom     : 0;
    background : rgba(0, 0, 0, .8);
    }

.section-statistics .statistics-item {
    color      : #ffffff;
    text-align : center;
    padding    : 20px;
    }

.section-statistics .number {
    font-size     : 60px;
    line-height   : 1;
    font-weight   : 700;
    display       : block;
    margin-bottom : 20px;
    }

.section-statistics .statistics-item p {
    font-size : 18px;
    color     : rgba(255, 255, 255, .7);
    margin    : 0;
    }

/*-------------------
 * Testimonial
 *-------------------*/
.section-testimonial {
    padding : 70px 0;
	background-color: #fff;
    }

#testimonialSlider .carousel-inner {
    overflow : visible;
    }

#testimonialSlider .carousel-inner .item {
    text-align : center;
    }

#testimonialSlider .carousel-inner .item img {
    display       : inline-block;
    width         : 150px;
    height        : 150px;
    border-radius : 100%;
    }

#testimonialSlider .carousel-inner .item .name {
    font-size   : 24px;
    font-weight : 500;
    color       : #555555;
    margin-top  : 5px;
    display     : block;
    }

#testimonialSlider .carousel-inner .item .desc {
    color : #999999;
	font-size: 18px;
    }

#testimonialSlider .carousel-inner .item blockquote {
    border-left : 0;
    padding: 10px 10px;
    }

#testimonialSlider .carousel-inner .item blockquote p {
    font-size   : 20px;
    line-height : 34px;
    font-weight : 300;
    margin      : 20px 0;
    }

#testimonialSlider .carousel-control.right,
#testimonialSlider .carousel-control.left {
    font-size   : 36px;
    background  : transparent;
    width       : 34px;
    height      : 36px;
    line-height : 36px;
    margin-top  : -18px;
    text-align  : center;
    text-shadow : none;
    top         : 50%;
    color       : #333333;
    }

#testimonialSlider .carousel-indicators{
    bottom: -60px;
    }

#testimonialSlider .carousel-indicators li {
    border : 2px solid #d8d8d8;
    }

#testimonialSlider .carousel-indicators .active {
    background-color : #0d99ce;
    border-color     : #0d99ce;
    }

@media (max-width : 768px) {
    #testimonialSlider .carousel-control {
        display: none;
        }
    }

@media (max-width : 320px) {
    #testimonialSlider .carousel-inner .item blockquote {
        padding-left: 0;
        padding-right: 0;
        }
    #testimonialSlider .carousel-inner .item blockquote p {
        font-size: 15px;
        }
    }





/*-------------------
 * call to action
 *-------------------*/

.call-to-action {
	padding-top: 80px;
	padding-bottom: 100px;
    color            : #ffffff;
    background-image:url('../img/bottom-section-bg.png');
    background-repeat: repeat;
    background-size:cover;
    background-position:center; 
    }

.call-to-action h2 {
    color : #ffffff;
    }

.call-to-action .content {
    margin-bottom : 30px;
    }

.call-to-action .btn-default {
    background-color : #FFFFFF;
    border           : 2px solid #ffffff;
    color            : #333333;
	font-size: 30px;
	border-radius: 40px;
    }

.call-to-action .btn-default:hover,
.call-to-action .btn-default:focus {
	border           : 2px solid #ffffff;
    background-color   : #1A93C1;
    color              : #fff;
    border-color       : #ffffff;
    -webkit-box-shadow : none;
    -moz-box-shadow    : none;
    box-shadow         : none;
    }

/*--------------
 * Modal Style
 *--------------*/

.modal .modal-content {
    padding       : 40px;
    border-radius : 0;
    }

.modal .modal-body {
    padding : 0;
}

.modal .modal-header {
    padding       : 0 0 15px;
    margin-bottom : 20px;
}

.modal .modal-content .form-group {
    margin-bottom : 20px;
}

/*-------------------
 * Form Style
 *-------------------*/
.form-control {
    height        : 53px;
    padding       : 6px 20px;
    font-size     : 13px;
    line-height   : 24px;
    color         : #969595;
    border        : 1px solid #f1f1f1;
    border-radius : 0;
    box-shadow    : none;
    }

.form-control:focus,
.form-control:active {
    box-shadow : none;
    }


#contact {
    position: relative;  /* 为绝对定位的子元素建立参考 */ 
    padding-bottom: 60px; /* 为footer留出空间，避免内容被覆盖 */
}

.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.footer-divider {
    height: 1.5px;
    background-color: #FFF; /* 分隔线颜色 */
	border-radius: 2px;
    margin: 50px auto 0px; 
	margin-bottom: 20px;
    opacity: 0.5; /* 50% 透明度 */
    width: calc(90%); /* 宽度减去左右 margin（30px × 2） */ 
}

/* 移动端适配 */
@media (min-width: 1200px) {  
    .footer-divider {
        height: 1.5px;
		background-color: #FFF; /* 分隔线颜色 */
		border-radius: 2px;
		margin: 50px auto 0px; 
		margin-bottom: 0px;
		opacity: 0.5; /* 50% 透明度 */
		width: calc(90%); /* 宽度减去左右 margin（30px × 2） */ 
    }
} 

/* 移动端适配 */
@media (max-width: 990px) {  
    .footer-divider {
        height: 1.5px;
		background-color: #FFF; /* 分隔线颜色 */
		border-radius: 2px;
		margin: 50px auto 30px; 
		opacity: 0.5; /* 50% 透明度 */
		width: calc(90%); /* 宽度减去左右 margin（30px × 2） */ 
    }
}


/* 移动端适配 */
@media (max-width: 700px) { /* 屏幕宽度 ≤ 768px 时生效 */
    .footer-divider {
		visibility: hidden;
        height: 1.5px;
		background-color: #FFF; /* 分隔线颜色 */
		border-radius: 2px;
		margin: 50px auto 50px; 
		opacity: 0.5; /* 50% 透明度 */
		width: calc(90%); /* 宽度减去左右 margin（30px × 2） */ 
    }
}

.footer .copyright-section {
    font-size : 14.5px;
    color     : #FFF;
    padding   : 15px 0;
	line-height: 20px
    }

.footer .copyright-section .copytext {
    font-weight : 400;
    display     : block;
    }

.footer_news{ 
	background-image:url('../img/bottom-section-bg.png');
    background-repeat: repeat;
    background-size:cover;
    background-position:center; 
	display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中（可选） */
    min-height: 60px; /* 设置适当高度 */ 
    color: white; /* 文字颜色设置为白色（因背景图较暗） */
}
.footer_news .copyright-section_news {
    font-size : 14.5px;
    color     : #FFF;
    padding   : 20px 0;
	line-height: 20px
    }

.footer_news .copyright-section_news .copytext_news {
    font-weight : 400;
	vil
    display     : block;
    }

/* ---------------------------------------------- /*
 * Preloader
/* ---------------------------------------------- */
#preloader {
    background : #000000;
    bottom     : 0;
    left       : 0;
    position   : fixed;
    right      : 0;
    top        : 0;
    z-index    : 9999;
    }

#status,
.status-mes {
    /*background-image    : url(../img/preloader.gif);*/
    background-image    : url(../img/puff.svg);
    background-position : center;
    background-repeat   : no-repeat;
    height              : 200px;
    left                : 50%;
    margin              : -100px 0 0 -100px;
    position            : absolute;
    top                 : 50%;
    width               : 200px;
    }

.status-mes {
    background : none;
    left       : 0;
    margin     : 0;
    text-align : center;
    top        : 65%;
    }


/* Since we'll have the "ul li" "float:left"
 * we need to add a clear after the container. */

nav:after {
    content: "";
    display: table;
    clear: both;
}

/* Removing padding, margin and "list-style" from the "ul",
 * and adding "position:reltive" */
nav ul {
    float: right;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

/* Positioning the navigation items inline */
nav ul li {
    margin: 0px;
    display: inline-block;
    float: left;
}

/* Styling the links */
nav a {
    color: #fff;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 1px;
    padding-left: 0;
    padding-right: 0;
    padding: 6px 15px;
    display: inline-block;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}


nav ul li ul li:hover {
    background: #F2F3F3;
	border-radius: 15px;
}

.menu li .drop-text:hover {
    color: #000;
}

/* Background color change on Hover */
.menu li.active a,
.menu li a:hover {
    color: #fff;
    background: rgba(249, 247, 247, 0.31);
    border-radius: 25px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

/* 菜单容器 - 右对齐 */
.menu {
        margin-left: auto; /* 自动左推使菜单靠右 */ 
		padding-right: 30px;
}


/* 移动端样式调整 (≤768px) */
@media (max-width: 768px) {
    /* 导航栏容器 */
    .navbar .row {
        display: flex;
        justify-content: space-between;
        align-items: center; 
		margin-right: 0px;
        padding: 0;
        box-sizing: border-box;
        position: relative; /* 为logo绝对定位提供参照 */
    }

    /* Logo容器 - 绝对定位居中 */
    .col-sm-1.col-md-1.col-lg-1 {
        position: absolute;
        left: 52%;
        transform: translateX(-52%); 
        padding: 0;
        z-index: 1; /* 确保logo在上层 */
    }

    /* 菜单容器 - 右对齐 */
    .menu_news {
        margin-left: auto; /* 自动左推使菜单靠右 */ 
        padding: 0;
		visibility: collapse;
    }
	
	.menu {
        margin-left: auto; /* 自动左推使菜单靠右 */ 
        padding: 0; 
    }


    /* 下拉菜单位置调整 */
    .menu ul {
        right: 30;
        top: 40px;
    }
}

 
 
/* 菜单相对于 more 的位置
 * and giving it a position of absolute */
nav ul ul {
    display: none;
    position: absolute;
    top: 36px;
	right: 30px;
    background: #FFF;
    padding: 10px;
    border-radius: 15px;
	border-width: 1px;
	/* 阴影效果 */
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.15);
}

/* Display Dropdowns on Hover */
nav ul li:hover>ul {
    display: inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
    width: 100px;
    float: none;
    display: list-item;
    position: relative;
}

nav ul ul li a {
    color: #333;
    padding: 5px 10px;
    display: block;
}


nav ul ul ul li {
    position: relative;
    top: -60px; 
    left: 170px;
}


.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #0ba4e6;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  display: none;
  border-radius: 50%;
  transition: all .4s ease;
}
.scroll-to-top i {
  color: #fff;
  font-size: 18px;
  line-height: 45px;
}
.scroll-to-top:hover {
  background-color: #0ba4e6;
}
.scroll-to-top:hover i {
  color: #fff;
}


/* popup */
.popup-effect {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

.popup-effect:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: #fff;
    border-radius: 25px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
    box-sizing: border-box;
}

.popup .media-body {
    padding: 15px;
    color: #222;
}

.popup h2 {
    margin-top: 0;
}

.popup button {
    margin: 10px 5px;
}

.close-popup {
    background: #6c757d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup {
        padding: 15px;
    }
    
    .popup .media-body {
        padding: 10px;
    }
}





