:root {
    --lif-color: #ffffff;
    --primary-color: #1a73e8;
    --secondary-color: #0d47a1;
    --accent-color: #4caf50;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #2e7d32);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 35px rgba(0, 0, 0, 0.2);
}
img {
    border: 0;
}
img{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}
@keyframes box-shadow-animation-fccb8a {
	0% {
		box-shadow: rgba(160 ,184 ,245, 0.68) 0px 0px 12px;
	}

	50% {
		box-shadow: rgba(160 ,184 ,245,0.68) 0px 0px 30px;
	}

	100% {
		box-shadow: rgba(160 ,184 ,245, 0.68) 0px 0px 12px;
	}
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #444;
}

/* 导航栏优化 */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    background: var(--lif-color) !important;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}



.nav-link {
    font-weight: 500;
    position: relative;
    margin: 0 5px;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
}

/* 轮播图优化 */
.carousel-indicators [data-bs-target]{width: 15px;height: 15px}
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 300px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#detail-page .hero-section{padding: 180px 0;background-size: 100% 100%;}
.py-5content{line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;}
.py-5content p,.py-5content p span{background-color: inherit !importantm}
.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease 0.4s both;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* 内容区域优化 */
.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title.left-align {
    text-align: left;
}

.section-title.left-align:after {
    left: 0;
    transform: none;
}

/* 产品卡片优化 */
.product-card {
    transition: all 0.4s ease;
    margin-bottom: 0px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.product-card .card-img-top {
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

.product-card .card-body {
    padding: 25px;
}

.product-card .card-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-card .card-text {
    color: #666;
    margin-bottom: 20px;
}

.product-card .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}

/* 新闻列表优化 */
.news-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    transition: all 0.3s;
}

.news-item:hover {
    background-color: rgba(248, 249, 250, 0.7);
    padding-left: 10px;
    border-radius: 8px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.news-item h5 a:hover {
    color: var(--primary-color);
}

.news-item .text-muted {
    font-size: 0.9rem;
}
.news-item .text-muted i{margin-right:8px}
/* 侧边栏优化 */
.sidebar-widget {
    margin-bottom: 30px;
    padding: 20px 15px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
}

.sidebar-widget:hover {
    box-shadow: var(--shadow-medium);
}

.sidebar-widget h4 {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
    color: var(--dark-color);
}

.category-list {
    list-style: none;
    padding-left: 0;
}

.category-list li {
    margin-bottom: 8px;
    padding: 12px 15px;
    background-color: white;
    border-radius: 8px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.category-list li:hover {
    background-color: var(--light-color);
    border-left-color: var(--primary-color);
    padding-left: 20px;
}

.category-list li.active {
    background: var(--gradient-primary);
    color: white;
    border-left-color: var(--secondary-color);
}

.category-list a {
    text-decoration: none;
    color: inherit;
    display: block;
    font-weight: 500;
}

/* 分页优化 */
.pagination-container {
    margin-top: 40px;
}

.page-link {
    border: none;
    color: var(--dark-color);
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.page-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

/* 面包屑导航优化 */
.breadcrumb {
    background-color: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--dark-color);
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #aaa;
}

/* 内容页优化 */
.content-page {
    margin-bottom: 30px;
}

.content-img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.content-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
    color: var(--dark-color);
}

.content-page p, .content-page li {
    font-size: 1.05rem;
    line-height: 1.7;
}

.content-page ol, .content-page ul {
    padding-left: 1.5rem;
}

.content-page li {
    margin-bottom: 8px;
}

/* 上一篇下一篇优化 */
.prev-next-nav {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.prev-next-nav a {
    color: var(--dark-color);
    transition: all 0.3s;
    padding: 10px;
    border-radius: 8px;
}

.prev-next-nav a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* 页脚优化 */
.footer {
    background: linear-gradient(to right, var(--dark-color), #2c3e50);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0px;
}

.footer h5 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: #aaa;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* 按钮优化 */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s;
}
.d-flex .btn-outline-primary {
   font-size: 20px;
    animation: 1.5s ease-in-out 0s infinite normal none running box-shadow-animation-fccb8a;
}
.d-flex .btn-outline-primary:before{margin-right:10px}
.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .hero-section {
        padding: 85px 0;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-card {
        margin-bottom: 20px;
    }
}

/* 滚动效果 */
html {
    scroll-behavior: smooth;
}

/* 页面切换器样式 */
.page-switcher {
    background: var(--light-color);
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-switcher .btn {
    margin: 0 5px;
    border-radius: 50px;
    font-weight: 500;
}


.navbar-brand img{max-height: 80px}

/* 分页整体容器 */
.pagebar {display:flex;justify-content:center;width: 100%;float:left ;padding: 30px 0}

.pagebar {
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pagination-container {
    display: inline-block;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
}

/* 分页列表样式 */
.pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination li {
    display: inline-block;
    margin: 0;
}

/* 默认链接样式 */
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 36px;
    text-align: center;
}

/* 链接悬停效果 */
.pagination a:hover {
    background-color: #007bff;
    color: white;
    transform: translateY(-1px);
}

/* 当前页样式 */
.pagination .active span {
    background-color: #007bff;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
    min-width: 36px;
    text-align: center;
}

/* 禁用状态（如“上一页”不可点） */
.pagination .disabled span {
    color: #aaa;
    cursor: not-allowed;
    padding: 8px 14px;
    font-style: italic;
}
/*内容*/
.content-page img{
    max-width: 90%; width: 100%;height: initial!important;}
.content-page p span{ width: auto!important;}
/* 可选：小屏幕适配 */
@media (max-width: 480px) {
    .pagination a,
    .pagination .active span,
    .pagination .disabled span {
        padding: 6px 10px;
        font-size: 13px;
    }
}
@media (max-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 96%;
        padding: 0;
    }
}
@media (max-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 96%;
    }
}

@media (max-width: 1024px) {
    .navbar-brand img{max-height: 50px}
    .container, .container-md, .container-sm{max-width: 96%}
    .py-5 .card img{max-height: 160px}
    #detail-page .hero-section{padding: 140px 0;background-size: cover;}
    .hero-section h1 {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    
    .py-5 .card img{max-height: 220px}
    .py-5 .img-fluid{max-height: 280px;margin-top: 20px}
    #detail-page .hero-section{padding: 120px 0;}
    
    
}




/*联系我们*/
.shadow-equal{box-shadow:0 0 50px 0 rgba(0,0,0,.08);-moz-box-shadow:0 0 50px 0 rgba(0,0,0,.08);-webkit-box-shadow:0 0 50px 0 rgba(0,0,0,.08)}
.contact-info-layout3{padding:40px 28px 55px;background-color:#fff}
.contact-info-layout3 h2{font-size:24px;text-transform:uppercase;color:#333;margin-bottom:30px;padding-bottom:25px;border-bottom:1px solid #d6d6d6}
.contact-info-layout3 p{margin-bottom:40px;font-size:18px;text-align:center;color:#ff9800}
.contact-form-layout4,.contact-info-layout3 ul.contact-address{margin-bottom:30px;padding-left:10px}
.contact-info-layout3 ul.contact-address li{padding-left:0px;margin-bottom:20px;position:relative;list-style: none;}
.contact-info-layout3 ul.contact-address li i{left:0;top:0;position:absolute;font-size:25px;color:#333}
.contact-info-layout3 ul.contact-address li p{margin:0;text-align:left;font-size:18px;color:#333;}
.contact-info-layout3 ul.contact-social{text-align:center}
.contact-info-layout3 ul.contact-social li{display:inline-block;margin-right:5px;margin-bottom:5px;}
ul.contact-social li{
    position: relative;
}
.contact-info-layout3 ul.contact-social li i{color:#fff;border-radius:2px;opacity:.8;-webkit-transition:.3s ease-out;-moz-transition:.3s ease-out;-ms-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out}
.contact-info-layout3 ul.contact-social .fa-facebook{padding:10px 14px;background-color:#395799}
.contact-info-layout3 ul.contact-social .fa-twitter{padding:10px 12px;background-color:#19b2f5}
.contact-info-layout3 ul.contact-social .fa-google-plus{padding:10px;background-color:#f05b44}
.contact-info-layout3 ul.contact-social .fa-dribbble{padding:10px 13px;background-color:#ea4c89}
.contact-info-layout3 ul.contact-social .fa-linkedin-square{padding:10px 13px;background-color:#0da6be}
.contact-info-layout3 ul.contact-social .fa-pinterest-p{padding:10px 14px;background-color:#9c0c1c}
.shadow-equal{box-shadow:0 0 50px 0 rgba(0,0,0,.08);-moz-box-shadow:0 0 50px 0 rgba(0,0,0,.08);-webkit-box-shadow:0 0 50px 0 rgba(0,0,0,.08)}
.btn-primary-fill-ghost{background:#7a6ad8;text-transform:uppercase;color:#fff;border:2px solid #7a6ad8;padding:12px 34px;border-radius:45px;display:inline-block;font-weight:500;-webkit-transition:.5s ease-out;-moz-transition:.5s ease-out;-ms-transition:.5s ease-out;-o-transition:.5s ease-out;transition:.5s ease-out}
.btn-primary-fill-ghost:hover{background:0 0;color:#ff9800}


.in_youshi{padding:35px 0}
.contact-form-layout4 form .form-control{height:auto;padding:0;box-shadow:none;background:0 0;line-height:1.5}
.contact-form-layout4 form .form-control:focus{box-shadow:none}
.contact-form-layout4 form .top-input{width:100%;padding:15px 20px;border:1px solid #d6d6d6;margin-bottom:30px}
.contact-form-layout4 form .message-box{padding:15px 20px;width:100%;height:170px;margin-bottom:40px;border:1px solid #d6d6d6}
.btn-primary-fill-ghost{background:#7a6ad8;text-transform:uppercase;color:#fff;border:2px solid #7a6ad8;padding:12px 34px;border-radius:45px;display:inline-block;font-weight:500;-webkit-transition:.5s ease-out;-moz-transition:.5s ease-out;-ms-transition:.5s ease-out;-o-transition:.5s ease-out;transition:.5s ease-out}
.btn-primary-fill-ghost:hover{background:0 0;color:#ff9800}


.in_youshi .item{border:1px solid #dcdcdc}
.in_youshi .item .list{float:left;width:33.33%;height:378px;position:relative;padding:0 3%;border-left:1px solid #dcdcdc;overflow:hidden;background:#fff}
.in_youshi .item .list:first-child{border-left:none}
.in_youshi .item .list .text{height:100%}
.in_youshi .item .list .text .inner{margin-top:16%}
.in_youshi .item .list .title{font-weight:700;font-size:30px;color:#333}
.in_youshi .item .list .con{font-size:18px;color:#7a6ad8;margin:10% 0 33%}
.in_youshi .item .list .con a{ color:#7a6ad8;}
.in_youshi .item .list .shu{font-size:30px;color:#7a6ad8;font-weight:700}
.in_youshi .item .list .shu span,.in_youshi .item .list:hover .img1{opacity:0}
.in_youshi .item .list .img1{position:absolute;height:100%;width:55%;top:20%;right:0}
.in_youshi .item .list .img1 img{filter:brightness(0);opacity:.3}
.in_youshi .item .list .img2{opacity:0;position:absolute;height:100%;width:55%;top:0;right:0}
.in_youshi .item .list .img2 img{filter:brightness(100)}
.in_youshi .item .list:hover{background:#7a6ad8}
.in_youshi .item .list:hover .text .shu span,.in_youshi .item .list:hover a{color:#fff;opacity:1}
.in_youshi .warpper{max-width:1400px;margin:0 auto}

.cate-list .ul .li.active a,.header-area.header-sticky .nav li a.active,.in_youshi .item .list:hover .text .con,.in_youshi .item .list:hover .text .shu,.in_youshi .item .list:hover .text .title{color:#fff}
#projects .gal-item a:hover:after,.contact-info-layout3 ul.contact-social li i:hover,.in_youshi .item .list:hover .img2{opacity:1;z-index: 1}


/*浮动框*/
.contact-pop {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: 100;
    width: 490px;
    padding-bottom: 30px;
    background-color: rgba(4, 14, 53, .8);
    display: none;
}

.contact-pop-top {
    padding: 20px 0 15px;
    position: relative;
}

.contact-pop-close {
    position: absolute;
    width: 40px;
    height: 60px;
    right: 0;
    top: 0;
    background: url(https://s.300.cn/attach/style/v4.0/home/images/special/co/contact-pop-close.png) no-repeat center;
}

.contact-pop-form {
    margin: 0 15px;
    padding: 0 30px 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, .4);
    font-size: 0;
}

.contact-pop-form img {
    height: 38px;
    vertical-align: middle;
}


.contact-pop-form label {
    color: #fff;
    margin-right: 10px;
    font-size: 14px;
    vertical-align: middle;
}

.contact-pop-form input {
    vertical-align: middle;
    border: none;
    width: 205px;
    height: 38px;
    line-height: 38px;
    box-sizing: border-box;
    padding: 0 10px;
    margin-right: 10px;
    background-color: #fff;
    font-size: 14px;
}

.contact-pop-form .verify-input {
    width: 102px;
    margin: 10px 0 0 80px;
}

.contact-pop-form .submit {
    vertical-align: middle;
    height: 38px;
    border: none;
    background-color: #FFE32A;
    color: #333;
    cursor: pointer;
    padding: 0 10px;
}

.contact-pop-form-item {
    justify-content: flex-start;
}

.contact-pop-form-item.bottom {
    padding-left: 80px;
    margin-top: 10px;
}

.contact-pop-form .contact-pop-form-verify-input {
    width: 60px;
    text-align: center;
}

.contact-pop-form .contact-pop-form-verify-pic {
    margin-right: 10px;
}

.is_verify_on .contact-pop-form-item .phoneNumber {
    margin: 0;
    width: 272px;
}

.workTime-pop {
    width: 584px;
    height: 383px;
    background-color: rgba(4, 14, 53, .9);
}

.workTime-pop .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: none;
}

.workTime-pop .contact-pop-close {
    right: 10px;
}

.workTime-pop .people {
    width: 180px;

    position: absolute;
    top: 31px;
    right: 30px;

}

.workTime-pop .title {
    position: absolute;
    font-size: 22px;
    font-weight: 400;
    color: #FFFEFE;
    line-height: 36px;
    left: 47px;
    top: 49px;
    text-align: left;
    margin-top: 0;
}

.workTime-pop .contact-pop-form {
    border: 0;
    padding: 0;
    margin: 0;
}

.workTime-pop .phoneKey {
    font-size: 18px;
    font-weight: 500;
    color: #FFCE66;
    line-height: 38px;
    position: absolute;
    left: 47px;
    top: 152px;
}

.workTime-pop .phoneValue {
    position: absolute;
    top: 156px;
    left: 135px;
    height: 32px;
    color: #e2b861;
    font-size: 24px;
    line-height: 28px;
    border-bottom: 1px solid #e2b861;
    font-weight: bold;
}

.workTime-pop .tip {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1;
    position: absolute;
    left: 47px;
    top: 206px;
}

.workTime-pop .bottom {
    position: absolute;
    left: 47px;
    right: 28px;
    bottom: 6px;
    height: 140px;
}

.workTime-pop .bottom .right {
    position: absolute;
    right: 0;
    top: 0;
    height: 120px;
    width: 108px;
}

.workTime-pop .bottom .right .line {
    position: absolute;
    width: 0;
    left: 0;
    border: 2px dashed transparent;
    border-left-color: #009688c4;
}

.workTime-pop .bottom .right .line1 {
    height: 10%;
    top: 0;
    opacity: 0.4;
}

.workTime-pop .bottom .right .line2 {
    height: 10%;
    top: 10%;
    opacity: 0.6;
}

.workTime-pop .bottom .right .line3 {
    top: 20%;
    height: 60%;
    opacity: 1;
}

.workTime-pop .bottom .right .line4 {
    height: 10%;
    bottom: 10%;
    opacity: 0.6;
}

.workTime-pop .bottom .right .line5 {
    height: 10%;
    bottom: 0;
    opacity: 0.4;
}

.workTime-pop .bottom .right .icon-avatar {
    width: 66px;
    height: 66px;
    position: absolute;
    top: 0;
    left: 23px;
    color: #fff;
    background:linear-gradient(-90deg, #0FCDB1 0%, #02B1C6 100%);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.workTime-pop .bottom .right .button {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #02B1C6;
    line-height: 1;
    position: absolute;
    top: 85px;
    left: 23px;
}

.workTime-pop .bottom .left {
    left: 0;
    width: 370px;
    height: 120px;
    position: absolute;
    overflow: hidden;
}

.workTime-pop .contact-pop-form-item {
    padding: 0;
    margin: 0;
    display: block;
    position: static;
}

.workTime-pop .contact-pop-form-item label {
    display: none;
}

.workTime-pop .contact-pop-form-item .phoneNumber,
.workTime-pop .contact-pop-form .phoneNumber {
    display: block;
    width: 370px;
    height: 48px;
    background: transparent;
    color: #fff;
    border: 1px solid #20B09F;
    outline: 0;
    font-size: 14px;
}

.workTime-pop .contact-pop-form .phoneNumber {
    width: 260px;
    margin: 0;
    margin-right: 10px;
}

.workTime-pop .contact-pop-form #mycall_input {
    width: 370px;
}

.workTime-pop .contact-pop-form .verify_image {
    height: 46px;
    right: 1px;
    top: 1px;
    position: absolute;
    width: 90px;
}

.workTime-pop .contact-pop-form-item #mycall_submit,
.workTime-pop .contact-pop-form .submit {
    width: 260px;
    height: 50px;
    margin-top: 18px;
    color: #fff!important;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: transparent;
    position: relative;
    background: linear-gradient(-90deg, #0FCDB1 0%, #02B1C6 100%);
}

/*.workTime-pop .contact-pop-form-item ::before {*/
/*color: #FFFFFF;*/
/*content: "预约顾问";*/
/*display: block;*/
/*position: absolute;*/
/*left: 50%;*/
/*margin-left: -32px;*/
/*}*/

.workTime-pop .contact-pop-form .inputWrap {
    width: 370px;
    height: 50px;
    display: flex;
    position: relative;
}

.workTime-pop .contact-pop-form .mr0 {
    margin-right: 0;
}

.workTime-pop .contact-pop-form .inputWrap::before {
    display: none;
}



.workTime-pop input:-moz-placeholder {
    color: #ccc;
}

.workTime-pop input::-moz-placeholder {
    color: #ccc;
}

.workTime-pop input:-ms-input-placeholder {
    color: #ccc;
}
@media(max-width: 576px) {
    .workTime-pop{width: 100%;transform: translate(-50%, 0%);height: 120px;top:auto;bottom: 0}
    .workTime-pop .bottom .right{display: none}

    .workTime-pop .title{display: none}
    .workTime-pop .phoneKey,.workTime-pop .phoneValue{display: none}
    .workTime-pop .people{display: none}
    .workTime-pop .contact-pop-form-item #mycall_submit, .workTime-pop .contact-pop-form .submit{width: 80px;margin-top:0;        color: #fff;
        font-size: 0.875rem;}
    .workTime-pop .contact-pop-form{display: flex;align-items: center;}
    .workTime-pop .contact-pop-form .inputWrap{width: 200px}
    .workTime-pop .bottom{height: 80px;}

}



@media (max-width:1600px) and (min-width:1400px){.in_youshi .item .list{height:344px}
.in_youshi .item .list .text .inner{margin-top:14%}
.in_youshi .item .list .con{margin:10% 0 27%}

}
@media (max-width:1400px) and (min-width:1200px){
    .owl-banner.owl-carousel{width: 88% !important}
    .header-area .container {
        padding: 0 10px;
    }
    .header-area .main-nav .logo{width: 310px}
    .header-area .main-nav .logo h1{font-size: 24px}


    .in_youshi .item .list .title{font-size:26px}
.in_youshi .item .list{height:344px}
.in_youshi .item .list .text .inner{margin-top:14%}
.in_youshi .item .list .con{margin:10% 0 27%}
    .services .service-item .main-content{margin-right:50px}

}
@media (max-width:1200px) and (min-width:992px){
    .navbar-brand img {
    max-height: 55px;
}
    .owl-banner.owl-carousel{width: 88% !important}
    .header-area .container {
        padding: 0 10px;
    }
    .header-area .main-nav .logo{width: 310px}
    .header-area .main-nav .logo h1{font-size: 22px}

    .in_youshi .item .list .title{font-size:24px}

    .in_youshi .item .list .title{font-size:26px}
.in_youshi .item .list{height:344px}
.in_youshi .item .list .text .inner{margin-top:14%}
.in_youshi .item .list .con{margin:10% 0 27%}
    .events .item .image img{max-width: 200px;height: 210px;}
    .services .service-item .main-content{margin-right:50px}
}
@media (max-width:992px) and (min-width:768px){
      .navbar-brand img {
    max-height: 50px;
}
    .owl-banner.owl-carousel{width:100% !important}
    .header-area .main-nav .logo h1{font-size: 22px}
    .header-area .main-nav .logo{width: 310px}

    .in_youshi.padding{padding:7% 0}
.in_youshi .item .list .title{font-size:22px}
.in_youshi .item .list{height:275px}
.in_youshi .item .list .text .inner{margin-top:14%}
.in_youshi .item .list .con{margin:10% 0 41%}
}

@media (max-width: 1440px) {
    .btn-outline-primary {
      font-size: 16px;
    }
}
@media (max-width: 1024px) {
    .btn-outline-primary {
      font-size: 14px;
    }
}
@media (max-width: 768px) {
    
    .py-5 .card img{max-height: 220px}
    .py-5 .img-fluid{max-height: 280px;margin-top: 20px}
    #detail-page .hero-section{padding: 120px 0;}
    
    .in_youshi .item .list{width:100%;border-bottom:1px solid #dcdcdc;border-left:none;height:205px}
.in_youshi .item .list:last-child{border-bottom:none}
.in_youshi .item .list .title{font-size:21px}
.in_youshi .item .list .con{margin:4% 0 13%}
.in_youshi .item .list .shu{font-size:25px}
.in_youshi .item .list .img1{width:42%}
.in_youshi .item .list .text .inner{margin-top:9%}
}


@media (max-width: 768px) {
    
    .in_youshi .item .list{width:100%;border-bottom:1px solid #dcdcdc;border-left:none;height:205px}
.in_youshi .item .list:last-child{border-bottom:none}
.in_youshi .item .list .title{font-size:21px}
.in_youshi .item .list .con{margin:4% 0 13%}
.in_youshi .item .list .shu{font-size:25px}
.in_youshi .item .list .img1{width:42%}
.in_youshi .item .list .text .inner{margin-top:9%}
.navbar-toggler{padding:5px 8px}
.navbar-toggler-icon{width: 1.2em; height: 1.2em;}
.breadcrumb-item a,.content-page .mb-4 .text-muted{font-size:0.8rem}
.breadcrumb{margin-bottom:0}
#detail-page .py-5{padding-top:1rem!important}
.d-flex .btn-outline-primary{font-size:15px}

}

@media (max-width: 576px) {
    .py-5 .card img{max-height: 160px; }
    .py-5 .col-6{margin-bottom: 20px}
    .product-card .card-body{padding: 15px 10px}
    .product-card .card-title{font-size: 16px}
    .product-card .card-text{font-size: 13px; display: none;}
    .product-card .btn{font-size: 14px;padding: 5px 15px;}
    #detail-page .hero-section{padding: 70px 0;}
    .hero-section h1 {
        font-size: 1.4rem;margin-bottom: 10px;
    }
    .hero-section .lead{font-size:1rem}
    .section-title {
        font-size: 1.4rem;
    }
    .contact-form-layout4, .contact-info-layout3 ul.contact-address{padding-left: 0;}
}

    
.img_p{text-align: center;text-indent:0!important;position: relative;overflow: hidden; border-radius: 8px 8px 0 0;}
.img_p .background{
    position: absolute;
    top: 0;
    z-index: 0;
}
.img_p img{
    position: relative;z-index: 1;max-width: 90%!important;}
.p_l{
    display: block;
    width: 100%;
    text-align: left;
    font-size: 12px;
    color: #555;text-indent: 0em;
    background: #fff url(https://hbsjsdoss.oss-cn-zhangjiakou.aliyuncs.com/hbsjsd-img/33/20250106/x.png) no-repeat 0 6px;
    background-size: 13px;padding-left: 15px;line-height: 1.6; position: relative;z-index: 1;padding-top: 8px;transition:.3s
}

.img_p img {
    /* 默认情况下 */
    cursor: default;
}

.img_p img:hover {
    /* 当鼠标悬停在图片上时 zoom-out*/
    cursor: zoom-in;
}
.img_p.fullscreen {position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background: #000;
    width: 100% !important;
    height: 100vh !important;
    display: flex
;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;  animation: slideopacity 0.3s ; }
.img_p.fullscreen img{max-height: 100%!important;width: auto!important;max-width:90%}
.img_p.fullscreen .p_l{display: none}
.img_p.fullscreen img:hover{
    cursor: zoom-out;
}
