﻿/* 全局字体大小限制，防止异常大字体 */
* {
    max-font-size: 36px !important;
}

h1, .h1 {
    font-size: 2rem !important;
}

h2, .h2 {
    font-size: 1.8rem !important;
}

h3, .h3 {
    font-size: 1.5rem !important;
}

p {
    font-size: 1rem !important;
}
/* 全局图片优化样式 - 修复锯齿问题 */
img {
    /* 确保图片平滑缩放，避免锯齿边缘 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    image-rendering: -moz-crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
    /* 确保图片保持清晰 */
    outline: none;
    border: none;
}
/* 覆盖bootstrap的超大字体样式 */
.jumbotron h1, .jumbotron .h1 {
    font-size: 2rem !important;
}
body { font-family: "PingFang SC", "miui", "system-ui", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue", "Helvetica", "sans-serif"; }
body { margin-top: 100px }

@media(min-width:768px) and (max-width:999px) {
body { margin-top: 73px }
}

@media(max-width:767px) {
body { margin-top: 69px }
}


ul, li, ol { margin: 0; list-style: none; padding: 0; }
a { color: #555; text-decoration: none }
a:hover, a:focus { color: #bf0015; text-decoration: none; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "PingFang SC", "miui", "system-ui", "-apple-system", "BlinkMacSystemFont", "Helvetica Neue"; font-weight: 500; line-height: 1.1; color: inherit }
.h1, .h2, .h3, .h4, .h5, .h6 { margin: 0 }
.ylw-img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.ylw-img-responsive2 { height: 160px; width: 220px }
.ylw-img-responsive3 { height: 250px; width: 360px }
.ylw-img-responsive4 { height: 173px; width: 248px }
*:link, *:visited, *:hover, *:active, *:focus, .item-on-hover, .btn-success, #button, .team img, .kehu figure a p { -webkit-transition: all .3s linear; -moz-transition: all .3s linear; -o-transition: all .3s linear; transition: all .3s linear }
.h-h2 { font-size: 24px; line-height: 150%; padding-top: 0; margin-top: 0; }

::-moz-selection {
 background: #bf0015;
 color: #fff
}
::selection { background: #bf0015; color: #fff }
.col-lg-20 { position: relative; min-height: 1px; padding: 10px 10px; }

@media(min-width:1200px) {
.col-lg-20 { float: left }
}

@media(min-width:1200px) {
.col-lg-20 { width: 10% }
}

@media(min-width:1200px) {
.z15 { padding-left: 30px; padding-right: 0 }
}

@media(min-width:1001px) and (max-width:1199px) {
.z15 { padding-left: 30px; padding-right: 0 }
}

@media(min-width:1200px) {
.zaz { padding-left: 3%; padding-right: 0 }
}

@media(min-width:1001px) and (max-width:1199px) {
.zaz { padding-left: 3%; padding-right: 0 }
}

/* 简洁红色头部样式 */
.red-header {
    background-color: #bf0015 !important; /* 红色背景 */
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    height: 60px;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    opacity: 1;
}

/* 滚动时的样式变化 */
.red-header.scrolled {
    background-color: rgba(191, 0, 21, 0.95) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease-in-out;
}

.red-header .container {
    height: 100%;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.red-header .navbar-header {
    float: left;
}

.red-header .navbar-brand {
    height: 60px;
    padding: 15px 15px;
    display: block;
}

.red-header .navbar-brand img {
    height: 30px;
    width: auto;
}

.red-header .navbar-nav {
    height: 60px;
    float: right;
    margin: 0;
}

.red-header .navbar-nav > li {
    height: 60px;
    float: left;
    position: relative;
}

.red-header .navbar-nav > li > a {
    color: #fff !important;
    padding: 0 18px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.red-header .navbar-nav > li > a:hover,
.red-header .navbar-nav > li.active > a {
    background-color: rgba(255,255,255,0.1);
    color: #fff !important;
}

.red-header .navbar-toggle {
    margin-top: 13px;
    margin-right: 15px;
    border-color: rgba(255,255,255,0.1);
}

.red-header .navbar-toggle .icon-bar {
    background-color: #fff;
}

.red-header .navbar-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

/* 滚动动画效果 */
.header-scroll {
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 767px) {
    .red-header {
        height: auto;
    }
    
    .red-header .navbar-collapse {
        background-color: #bf0015;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
        clear: both;
    }
    
    .red-header .navbar-nav {
        height: auto;
        float: none;
    }
    
    .red-header .navbar-nav > li {
        height: auto;
        float: none;
    }
    
    .red-header .navbar-nav > li > a {
        height: auto;
        line-height: 40px;
        padding: 0 15px;
    }
}

/* 移除原始头部样式，避免冲突 */
.navbar-default {
    display: none !important;
}

/* 调整body上边距，避免被固定头部遮挡 */
body {
    margin-top: 60px !important;
}

@media(max-width:767px) {
    body {
        margin-top: 60px !important;
    }
}
.box { width: 100%; height: 100%; padding: 0 15px; background-repeat: no-repeat; background-position: center top; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover }
.hba { height: 300px; background-attachment: fixed; }
.slider { position: relative; width: 100%; height: auto; overflow: hidden }
.slides { height: 100%; overflow: hidden; *zoom: 1;
-webkit-backface-visibility: hidden; -webkit-transform-style: preserve-3d; margin: 0; padding: 0; border: 0 }
.slide { height: 100%; float: left; clear: none; margin: 0; padding: 0; border: 0; list-style-image: none; list-style-type: none }
.slider-arrow { position: absolute; display: block; margin-bottom: -30px; background-color: rgba(0,0,0,0.3); text-indent: -9999px; overflow: hidden; height: 60px; width: 40px; background-repeat: no-repeat }
.slider-arrow--right { transform: translate(40px, 0); -ms-transform: translate(40px, 0); -webkit-transform: translate(40px, 0); -moz-transform: translate(40px, 0); -o-transform: translate(40px, 0) }
.slider-arrow--left { transform: translate(-40px, 0); -ms-transform: translate(-40px, 0); -webkit-transform: translate(-40px, 0); -moz-transform: translate(-40px, 0); -o-transform: translate(-40px, 0) }
.slider:hover .slider-arrow--right, .slider:hover .slider-arrow--left { transform: translate(0, 0); -ms-transform: translate(0, 0); -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -o-transform: translate(0, 0) }
.slider-arrow--right { bottom: 50%; right: 0; background-image: url(../images/banner-fy.png); background-position: center bottom }
.slider-arrow--left { bottom: 50%; left: 0; background-image: url(../images/banner-fy.png); background-position: center top }
.slider-nav { position: absolute; bottom: 30px }
.slider-nav__item { width: 12px; height: 12px; float: left; clear: none; display: block; margin: 0 5px; background: #fff; border-radius: 50% }
.slider-nav__item:hover { background: #ccc }
.slider-nav__item--current { background: #ccc }
.about, .kehu, .case, .team, .youshi, .news { padding: 45px 0 45px 0 }
.about .m-shu, .fuwu .m-shu, .huanjing .m-shu, .kehu .m-shu, .team .m-shu { color: #555; margin-bottom: 45px }
.about .m-shu, .pt-gongcheng .m-shu { margin-bottom: 30px }
.youshi .m-shu, .pt-gongcheng .m-shu, .neirong .m-shu { color: #555 }
.fuwu .m-shu, .fuwu .h-h2 { color: #FFF }
.fuwu-bg, .kehu-bg, .team-bg { background-repeat: no-repeat; background-position: center top; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover }
.fuwu-bg { background-image: url(../images/fuwu-bg.jpg) }
.kehu-bg { background-color: #ebebeb }
.team-bg { background-image: url(../images/team-bg.jpg) }
.btn-success { color: #fff; background-color: #bf0015; border-width: 0; border-radius: 0; padding: 12px 30px; margin: 0 15px 20px 15px }
.btn-success:hover { color: #fff; background-color: #000; }
.about .about-us { line-height: 26px; margin-bottom: 35px }
.fuwu { padding: 45px 0 30px 0 }
.fuwu, .fuwu a, .fuwu a small { color: #FFF }
.fuwu h3 a { font-size: 16px; font-weight: bold }
.fuwu h3 a small { font-size: 14px }
.fuwu h3 { background-image: url(../images/a-xian.gif); background-repeat: no-repeat; background-position: center bottom; padding-bottom: 18px; margin-bottom: 10px }
.fuwu figure p { line-height: 28px; margin: 0 }
.fuwu figure { margin-bottom: 30px }
.fuwu a.pic1, .fuwu a.pic2, .fuwu a.pic3, .fuwu a.pic4 { height: 140px; width: 140px; display: block; background-repeat: no-repeat; background-position: center top; margin: 0 auto }
.fuwu a.pic1, .fuwu a.pic2, .fuwu a.pic3, .fuwu a.pic4 { transform: scale(0.9, 0.9); -ms-transform: scale(0.9, 0.9); -webkit-transform: scale(0.9, 0.9); -moz-transform: scale(0.9, 0.9); -o-transform: scale(0.9, 0.9) }
.fuwu a.pic1:hover, .fuwu a.pic2:hover, .fuwu a.pic3:hover, .fuwu a.pic4:hover { transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); -moz-transform: scale(1, 1); -o-transform: scale(1, 1) }
.fuwu a.pic1 { background-image: url(../images/services-1-1.png) }
.fuwu a.pic1:hover { background-image: url(../images/services-1.png) }
.fuwu a.pic2 { background-image: url(../images/services-2-2.png) }
.fuwu a.pic2:hover { background-image: url(../images/services-2.png) }
.fuwu a.pic3 { background-image: url(../images/services-3-3.png) }
.fuwu a.pic3:hover { background-image: url(../images/services-3.png) }
.fuwu a.pic4 { background-image: url(../images/services-4-4.png) }
.fuwu a.pic4:hover { background-image: url(../images/services-4.png) }
.huanjing { padding: 45px 0 60px 0 }
.fudong-bg { position: relative }
.fudong { position: absolute; left: 0; top: 0; text-align: center; width: 100%; height: auto; color: #FFF; vertical-align: middle; padding-top: 13% }
.fudong h3 { font-size: 24px; margin-bottom: 20px }
.fudong p { line-height: 26px; margin-bottom: 25px }
.huanjing-cd { width: 98px; height: 16px; margin-top: 0; margin-right: auto; margin-bottom: 0; margin-left: auto }

@media(max-width:700px) {
.huanjing { padding: 45px 0 5px 0 }
.fudong-bg { position: static }
.fudong { position: static; padding-top: 15px }
.fudong h3 { color: #000 }
.fudong p { color: #666 }
.huanjing-cd { margin-bottom: 40px }
}

@media(min-width:701px) and (max-width:1023px) {
.fudong { padding-top: 8% }
}
.kehu figure a { margin-bottom: 30px; color: #FFF; display: block }
.kehu div.row, .case div.row { margin-bottom: 10px }
.kehu figure a p { display: none }

@media(min-width:1200px) {
.kehu div.xg { overflow: hidden }
}

@media(min-width:999px) {
.kehu figure a { position: relative }
.kehu figure a p { cursor: pointer; display: block; position: absolute; width: 204px; height: auto; background-color: #bf0015; top: 0; line-height: 118px; text-align: center; vertical-align: middle; font-size: 16px; opacity: 0; filter: Alpha(Opacity=0) }
.kehu figure a:hover p { display: block; opacity: 1; filter: Alpha(Opacity=1) }
}

@media(min-width:999px) and (max-width:1199px) {
.kehu figure a p { left: 4px }
}
.khml a { margin-bottom: 10px!important }
.khml a h4 { color: #bf0015; margin-top: 30px; margin-bottom: 0 }
.kehu figure img { border: 1px solid #eee!important }
.case .m-shu { color: #555; margin-bottom: 35px; line-height: 28px }
.case .m-shu p { margin-top: 15px; color: #ccc }
.case .m-shu p a { color: #333; margin: 0 3px }
.case .m-shu p a:hover { color: #bf0015 }
.case h3 { padding: 10px 0 10px 0; margin: 0 auto; text-align: left; }
.case h3 a { font-size: 18px; }
.case h3 small, .case h3 small a { color: #555; font-size: 16px; font-weight: normal }
.case a.pic-link {width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s 
ease;
}

@media(min-width:999px) {
.case a.pic-link, .tj-case a.pic-link { position: relative; display: block }
.case-hover { cursor: pointer; display: block; position: absolute; width: 100%; height: 100%; background-color: rgba(0,0,0,0); background-image: url(../images/on-hover.png); background-repeat: repeat; opacity: 0; filter: Alpha(Opacity=0); z-index: 96; -webkit-transition: all .3s linear; -moz-transition: all .3s linear; -ms-transition: all .3s linear; -o-transition: all .3s linear; transition: all .3s linear }
.case-hover:hover { opacity: 1; filter: Alpha(Opacity=1) }
.case-hover * { filter: inherit }
.case-hover { cursor: pointer }

.hover-link { width: 44px; height: 44px; top: 50%; left: 50%; margin-left: -22px; margin-top: -22px; position: absolute; display: block }
}
.team h3 { padding: 25px 0 40px 0; margin: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden }
.team h3 a { font-size: 16px; font-weight: bold; margin-bottom: 10px }
.team h3 small { font-size: 14px }
.team div.row { margin-bottom: 5px }
.team a.pic-link { max-width: 285px; margin-right: auto; margin-left: auto }

@media(min-width:999px) {
.team a.pic-link img { border: 6px solid transparent }
.team a.pic-link:hover img { border: 6px solid #FFF }
.team a.pic-link { position: relative; display: block }
.team a.pic-link img { transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); -moz-transform: scale(1, 1); -o-transform: scale(1, 1) }
.team a.pic-link:hover img { transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1) }
.hover-jia { width: 50px; height: 50px; margin-left: -25px; margin-top: -25px; opacity: 0; filter: Alpha(Opacity=0); -webkit-transition: all .2s linear .3s; -moz-transition: all .2s linear .3s; -o-transition: all .2s linear .3s; transition: all .2s linear .3s; -ms-transition: all .2s linear .3s }
.pic-link:hover .hover-jia { background-image: url(../images/team-hover.png); background-repeat: no-repeat; background-position: center center; opacity: 1; filter: Alpha(Opacity=1) }
.hover-jia { width: 50px; height: 50px; top: 50%; left: 50%; margin-left: -25px; margin-top: -25px; position: absolute; display: block; z-index: 99 }
}

@media(max-width:700px) {
.team a.pic-link img { border: 0 solid transparent }
.team a.pic-link img:hover { border: 0 solid #FFF }
}
.team .m-shu { margin-bottom: 35px }

@media(min-width:1200px) {
.team-nav { position: relative; height: 320px; overflow: hidden; padding: 10px 0 0 0 }
.team-w { position: absolute; left: 0 }
.team-array { float: left; max-width: 292px }
.img-r, .img-l { cursor: pointer; margin: 5px 8px; font-size: 24px }
}
.ny-team>div { padding-left: 0!important }

@media(max-width:768px) {
.ny-team>div { padding-right: 0!important }
}
.youshi figure { padding: 38px 0; border-width: 0 1px 1px 0; border-style: solid; border-color: #e6e6e6 }
.youshi div.row { margin: 45px 0 45px 0; border-width: 1px 0 0 1px; border-style: solid; border-color: #e6e6e6 }
.youshi figure h3 { font-size: 14px; font-weight: normal; white-space: nowrap; text-overflow: ellipsis; overflow: hidden }
.youshi figure h3 a { color: #666 }
.youshi figure p { position: absolute; left: 0; top: 0; height: 100%; width: 100%; background-color: #bf0015; color: #FFF; padding: 20px; font-weight: bold; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; opacity: 0; filter: Alpha(Opacity=0) }
.youshi figure p a { color: #FFF; text-decoration: underline }
.youshi figure:hover p { opacity: 1; filter: Alpha(Opacity=1) }

@media(max-width:1199px) {
.youshi figure:hover p { display: block }
.youshi figure p { display: none }
}
.youshi figure p small { text-align: left; margin-top: 10px; line-height: 180%; font-weight: normal; display: block; overflow: hidden; height: 80%; width: 100%; white-space: normal; text-overflow: ellipsis }
.news { background-color: #f2f2f2; padding-bottom: 0 }
.news h3 { font-size: 16px; font-weight: bold; color: #000; padding: 0 0 30px 0; margin: 0 }
.news ul li { line-height: 28px }
.news ul li a { color: #666; width: 80%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; float: left }
.news ul li small { color: #555 }
.news ul li a:hover { color: #bf0015 }
.news p { margin: 25px 0 45px 0 }
.active-qh { height: 16px; width: 10px; background-image: url(../images/huanjing-bg.png); background-repeat: no-repeat; background-position: center bottom; text-indent: -9999px; overflow: hidden; display: block; margin-left: 8px }
.active-qh:hover { background-position: center top }
.key, .mail { height: 40px; width: 100%; background-color: #FFF; color: #666; vertical-align: middle; padding-right: 10px; padding-left: 10px; border: 1px solid #e0e0e0; border-radius: 0 }
.mail-tx { color: #bf0015; font-size: 14px; margin: 15px 0 }
.s-button, .m-button { height: 40px; width: 40px; text-align: center; vertical-align: middle; color: #FFF; background-color: #FFF; position: absolute; right: 15px; border: 1px solid #e0e0e0; border-radius: 0; top: 0 }
.s-button { background-image: url(../images/input-bg.png); background-repeat: no-repeat; background-position: right -80px; background-color: #FFF; text-indent: -999px; overflow: hidden }
.m-button { background-image: url(../images/input-bg.png); background-repeat: no-repeat; background-position: right -120px; background-color: #FFF; text-indent: -999px; overflow: hidden }
.mail { margin: 0 0 40px 0 }
.crumbs { background-color: #f7f7f7; border-bottom: 1px solid #ededed }
.breadcrumb { padding: 18px 15px 20px 0; margin-bottom: 0; list-style: none; background-color: #f7f7f7; border-radius: 0 }
.breadcrumb>li { display: inline-block }
.breadcrumb>li+li:before { padding: 0 5px; color: #ccc; content: "/\00a0" }
.breadcrumb>.active { color: #555 }
.btn-menu { padding: 19px 19px; border: 0 solid transparent; border-radius: 0 }
.btn-default { color: #fff; background-color: #bf0015; border-color: #bf0015 }
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default { color: #fff; background-color: #000; border-color: #000 }
.btn-group .dropdown-menu { margin-top: 0 }
.breadcrumb>.active, .breadcrumb li { color: #555 }
.neirong { padding: 50px 0; margin: 0 auto; width: 100%; max-width:1360px; min-height: 550px; color: #666; font-size: 14px; line-height: 26px; }
.neirong .info h3 { color: #333; margin: 25px 0; font-weight: 600; line-height: 150% }
.neirong .info h3.h3 { margin: 0 0 25px 0 }
.neirong .h1, .neirong .h2, .neirong .h3 { margin-top: 0 }
.neirong .info, .neirong .info p, .neirong .info li, .case-fl p, .ny-news p { line-height: 30px; color: #666 }
.neirong .info h4, .neirong .info h5, .neirong .info h6 { line-height: 30px }
.neirong p.anniu .btn-success { margin: 20px 30px 0 0 }
.neirong .kehu img { border: 1px solid #eee }
.neirong .info img { margin: 8px 0 }
.mb-none { margin-bottom: 0 }
.pb-none { padding-bottom: 0 }
.red { color: #F00 }
.diwei .h3 { margin-bottom: 40px }
.diwei p { margin-top: 20px; margin-bottom: 0 }
.biaoti-sousuo { margin-bottom: 20px }
.ny-bt { font-size: 18px; padding: 0 0 20px 0; margin: 0; border-bottom: 1px solid #ededed; font-weight: 600 }
.ny-news p span { margin-right: 20px; }

@media(max-width:768px) {
.neirong { padding: 30px 0; width: 90%; min-height: 850px; }
.neirong .lxnr{width: 90%; float: left;}
.neirong .info img { margin-bottom: 20px; margin-top: 20px }
.neirong .info .like img { margin-bottom: 0; margin-top: 0 }
.neirong .mt { margin-top: 40px }
.diwei p { margin-bottom: 20px }
.ny-bt { border-bottom: 0 }
.neirong .pull-left, .neirong .pull-right { float: none!important }
.neirong .info p { margin: 15px 0 }
}

@media(min-width:768px) {
.neirong .pull-left { margin-right: 30px; margin-top: 0 }
.neirong .ny-right .pull-right { margin-left: 0 }
.neirong .pull-right { margin-left: 30px; margin-top: 0 }
.case-fl { margin: 0 0 15px 0; color: #eee }
.case-fl h2 { font-size:36px; color:#555; }
.case-fl strong { color: #666 }
.case-fl a { padding: 0 2px }
.case-fl a.hover { background-color: #bf0015; color: #FFF; padding: 0 5px }
.case-fl p { line-height: 30px; color: #555 }
.tj-case { margin-bottom: 30px }
.tj-case figure div h3 { padding: 15px 20px 23px 20px; margin: 0; width: 100%; max-width: 555px; background-color: #bf0015 }
.tj-case figure div:hover h3 { bottom: 0 }
.tj-case h3 a { font-size: 16px; font-weight: bold; color: #fff }
.tj-case h3 small { margin: 9px 0 0 0!important }
.tj-case h3 small, .tj-case h3 small a { color: #fff; font-size: 14px; font-weight: normal }
.tj-case a.pic-link { max-width: 555px; text-align: center; margin-right: auto; margin-left: auto }
.neirong .about, .neirong .kehu, .neirong .case, .neirong .team, .neirong .youshi, .neirong .news { padding: 0 }
.fanye .pagination { margin: 0 }
.fanye .pagination>.active>a, .fanye .pagination>.active>span, .fanye .pagination>.active>a:hover, .fanye .pagination>.active>span:hover, .fanye .pagination>.active>a:focus, .fanye .pagination>.active>span:focus { background-color: #bf0015; border-color: #bf0015; color: #FFF }
.fanye .pagination>li.thisclass a, .fanye .pagination>li>a:hover, .fanye .pagination>li>span:hover, .fanye .pagination>li>a:focus, .fanye .pagination>li>span:focus { color: #bf0015; background-color: #ededed; border-color: #ededed }
.fanye .pagination>li>a, .fanye .pagination>li>span { color: #bf0015; border-color: #ededed; font-size: 14px }
.pic-link { display: block; position: relative }
.pic-link .new, .pic-link .hot { background-image: url(../images/new.png); background-repeat: no-repeat; background-position: 0 0; height: 69px; width: 69px; display: block; position: absolute; top: 0; right: 0; z-index: 999 }
.pic-link .hot { background-image: url(../images/hot.png) }
.pic-link .rd { background-image: url(../images/rd.png); background-repeat: no-repeat; background-position: 0 0; height: 50px; width: 43px; display: block; position: absolute; top: 0; right: 0; z-index: 999 }
 @ media(max-width:1000px) {
.new, .hot, .tj-case {
 display: none
}
}
.text-danger, .text-danger:hover { color: #C00 }
.ny-news { margin: 15px 0 20px 0; padding-bottom: 30px; border-bottom: 1px solid #ededed }
 @ media(min-width:1200px) {
.ny-news {
 min-height: 189px
}
}
 @ media(min-width:768px) and (max-width:1199px) {
.ny-news {
 min-height: 159px
}
}
.ny-news a.pic-link { margin-right: 20px }
 @ media(min-width:999px) {
.ny-news a.pic-link {
 position: relative;
 display: block
}
.ny-h4.none {
 margin-top: 0
}
}
.ny-news h4 { font-size: 16px; margin: 0 0 10px 0 }
.ny-news p { margin: 0 0 5px 0 }
.ny-news p span { float: left; background-repeat: no-repeat; height: 18px; line-height: 18px; padding-left: 28px; margin-right: 10px; font-style: italic; color: #555; font-size: 14px }
.ny-news p span.fl { background-image: url(../images/ny-news-bg.png); background-position: 0 0 }
.ny-news p span.gz { background-image: url(../images/ny-news-bg.png); background-position: 0 -20px }
.ny-news p span.sj { background-image: url(../images/ny-news-bg.png); background-position: 0 -44px }
.ny-right { margin-left: 15px }
.ny-h4 { margin: 25px 0 25px 0; font-size: 16px; font-weight: bold }
.ny-h4 small { font-size: 14px; color: #555 }
.m-x-20 { margin-bottom: 20px }
 @ media(max-width:768px) {
.m-x-20 {
width:100%
}
}
}
.m-x-30 { margin-bottom: 30px }
.m-x-40 { margin-bottom: 40px }
.m-s-10 { margin-top: 10px }
.m-s-20 { margin-top: 20px }
.m-s-30 { margin-top: 30px }
.m-s-40 { margin-top: 40px }
.z-m-none { margin-left: 0!important }
.s-m-none { margin-top: 0!important }
.y-m-none { margin-right: 0!important }
.x-m-none { margin-bottom: 0!important }
.m-top-20 { margin-top: 20px; margin-bottom: 0 }
.m-sx-10 { margin: 10px 0; display: block }
.m-sx-20 { margin: 20px 0; display: block }
.m-sx-30 { margin: 30px 0; display: block }
.m-sx-40 { margin: 40px 0; display: block }
.m-sx-50 { margin: 50px 0; display: block }
.ny-shuoming { margin-bottom: 30px }
.al-bt { text-align: left; }
.ny-shuoming h2 { font-size: 24px; margin-top: 0; margin-bottom: 15px; font-weight: 600 }
.ny-shuoming p { color: #555; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #ededed; font-size: 14px }

@media(max-width:999px) {
.m-x-20 { margin-bottom: 20px }
.ny-right { margin-left: 0 }
}
.kj-case figure h3 { padding: 20px; margin: 0; display: block; font-size: 16px; line-height: 14px; width: 100%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden }
.kj-case a.pic-link { max-width: 285px; text-align: center; margin-right: auto; margin-left: auto }

@media(min-width:1200px) {
.kj-case .row { padding: 0 15px }
.kj-case .row .col-xs-6, .kj-case .row .col-sm-4, .kj-case .row .col-md-3, .kj-case .row .col-lg-3 { padding: 0 }
.kj-case .row figure { transform: scale(1, 1); -ms-transform: scale(1, 1); -webkit-transform: scale(1, 1); -moz-transform: scale(1, 1); -o-transform: scale(1, 1); position: relative; -webkit-transition: all .3s linear; -moz-transition: all .3s linear; -ms-transition: all .3s linear; -o-transition: all .3s linear; transition: all .3s linear; z-index: 95; display: block }
.kj-case .row figure:hover { transform: scale(1.1, 1.1); -ms-transform: scale(1.1, 1.1); -webkit-transform: scale(1.1, 1.1); -moz-transform: scale(1.1, 1.1); -o-transform: scale(1.1, 1.1); z-index: 97 }
.kj-case figure { position: relative; overflow: hidden }
.kj-case figure h3 { padding: 15px; margin: 0; background-color: rgba(102,153,204,0.7); position: absolute; left: 0; bottom: -44px; -webkit-transition: all .3s linear; -moz-transition: all .3s linear; -ms-transition: all .3s linear; -o-transition: all .3s linear; transition: all .3s linear; z-index: 99; display: block; font-size: 14px; line-height: 14px; width: 100% }
.kj-case figure:hover h3 { bottom: 0 }
.kj-case figure h3 a { color: #fff }
}
.gd-case a.pic-link { max-width: 263px; text-align: center; margin-right: auto; margin-left: auto }
.pt-gongcheng .m-x-10 { margin-bottom: 10px }
.ny-right ul li { line-height: 28px }
.ny-right ul li a { width: 80%; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; float: left }
.ny-right ul li small { color: #555 }
.map { color: #555 }
.map h3 a { font-size: 16px; color: #000; font-weight: bold }
.liucheng h4 { font-size: 16px; font-weight: bold; color: #bf0015 }
.kj-link { background-color: #f7f7f7; background-image: url(../images/kj-link-xian.jpg); background-repeat: repeat-y; background-position: center 0 }

@media(max-width:768px) {
.kj-link { background-image: none }
}
.kj-link h3 { font-size: 18px; font-weight: 600; background-image: url(../images/a-xian.gif); background-repeat: no-repeat; background-position: center 38px; margin: 0 0 15px 0; padding: 0 0 20px 0; color: #000 }
.kj-link p { line-height: 28px; color: #555 }
.kj-link div.row div { padding: 50px 30px 30px 30px }
.kj-link div.row div:hover { background: #bf0015 }
.kj-link div.row div:hover h3, .kj-link div.row div:hover p, .kj-link div.row div:hover p a { color: #FFF }
.kj-contact a { color: #FFF; background-color: #bf0015; display: block; padding: 15px 15px; font-size: 36px }

@media(max-width:320px) {
.kj-contact a { font-size: 14px }
}
.kj-contact a:hover { background-color: #bf0015; text-decoration: none }
.footer { background-color: #333; color: #919399; font-size: 14px; padding: 50px 50px; }
.footer a { color: #919399 }
.footer a:hover { color: #fff }
.footer .cidaohang, .address { line-height: 28px }
.footer p, .footer ul { padding: 0; margin: 0 }
.address { margin-bottom: 30px }
.sns a { margin-right: 5px }
#title, #mycall,.stitle, .mycall { height: 40px; width: 100%; background-color: #FFF; color: #666; border-width: 0; margin-bottom: 25px; vertical-align: middle; padding-right: 10px; padding-left: 10px; border-radius: 0 }
#mycall,.mycall { background-image: url(../images/input-bg.png); background-repeat: no-repeat; background-position: right 0 }
#title ,.stitle { background-image: url(../images/input-bg.png); background-repeat: no-repeat; background-position: right -40px }
#button,.button { height: 44px; width: 100%; text-align: center; vertical-align: middle; border-width: 0; background-color: #bf0015; color: #FFF; font-size: 14px; border-radius: 0 }
#button:hover { background-color: #bf0015 }
#savediv { padding-top: 20px }
.footer h3 { font-size: 16px; font-weight: bold; color: #FFF; padding: 0 0 30px 0; margin: 0 }
.footer .weixin img { margin-bottom: 5px }
.copy { text-transform: uppercase }
.copy hr { border-color: #384251; width: 100%; margin-top: 30px; margin-right: 0; margin-bottom: 35px; margin-left: 0 }
.copy .renzheng { padding-top: 20px }
.copy .renzheng img { margin-right: 12px }
.qixia p { margin-bottom: 2px }
.qixia p.qx { line-height: 20px }
.yq-link { color: #737680; line-height: 28px; padding-top: 30px }
.yq-link a { color: #737680 }
.yq-link a:hover { color: #fff }
.go-top a { background-color: #0f141a; color: #919399; display: block; padding: 25px 0 }
.go-top a:hover { background-color: #0b0e12; color: #fff; text-decoration: none }
.kefu { background-color: #d0361e; border: 2px solid #fff; position: fixed; width: 80px; top: 138px; right: 15px; text-align: center; display: block; -webkit-box-shadow: 0 0 12px rgba(0,0,0,0.1); box-shadow: 0 6px 12px rgba(0,0,0,0.1); border-radius: 0 0 8px 8px; font-size: 14px; z-index: 99999 }

@media(max-width:768px) {
.kefu { top: 108px }
}
.kefu ul { margin: 0; padding-top: 45px }
.kefu ul li a { display: block; color: #FFF; text-decoration: none; border-top: 1px solid #a42917; overflow: hidden; height: auto; width: 100%; padding-top: 43px; padding-right: 0; padding-bottom: 12px; padding-left: 0 }
.kefu ul li a:hover { background-color: #a42917 }
.kefu a.kefu-lx { background-image: url(../images/kefu.png); background-repeat: no-repeat; background-position: center top; position: absolute; top: -40px; text-indent: -9999px; height: 80px; width: 80px; z-index: 999999; left: -2px; border-width: 0; overflow: hidden }
.kefu a.kefu-lx:hover { background-color: rgba(255,255,255,0) }
.kefu ul li a.kf { display: block; padding: 10px 0 }
.kefu:hover ul li a.kf { display: none }
.kefu ul li a.kefu-yy { background-image: url(../images/kefu-tb.png); background-repeat: no-repeat; background-position: center -9px }
.kefu ul li a.kefu-zx { background-image: url(../images/kefu-tb.png); background-repeat: no-repeat; background-position: center -79px }
.kefu ul li a.kefu-di { background-image: url(../images/kefu-tb.png); background-repeat: no-repeat; background-position: center -227px; padding: 30px 0 10px 0; border-radius: 0 0 8px 8px }
.kefu ul li a.kefu-top { background-image: url(../images/kefu-tb.png); background-repeat: no-repeat; background-position: center -154px; padding: 30px 0 10px 0 }
.kefu ul li a.kefu-yy, .kefu ul li a.kefu-zx, .kefu ul li a.kefu-di, .kefu ul li a.kefu-top { display: none }
.kefu:hover ul li a.kefu-yy, .kefu:hover ul li a.kefu-zx, .kefu:hover ul li a.kefu-di, .kefu:hover ul li a.kefu-top { display: block }
.bdshare-button-style2-16 .bds_more { float: none!important }
.bdshare-button-style2-16 a, .bdshare-button-style2-16 .bds_more { float: none!important; padding-left: 0!important; line-height: 0!important; height: 18px!important; width: 18px!important; background-image: none!important; _background-image: none!important; margin: 0!important; text-indent: -9999; overflow: hidden }
.lxnr { width: 50%; float: left; }
.neirong .book { float: right; overflow: hidden; }
.neirong .intxt { width: 400px; font-size: 14px; color: #8D8D8D; border: 0px; background: #f3f3f3; padding: 0 18px; height: 45px; margin: 3px 0; }
.neirong .xqtxt { width: 400px; font-size: 14px; color: #8D8D8D; border: 0px; background: #f3f3f3; padding: 12px 18px; height: 100px; margin: 3px 0; }
.neirong .coolbg { background-color: #F00; font-size: 16px; color: #FFF; width: 100px; height: 40px; line-height: 40px; border: none; margin-top: 6px; }
.neirong .coolbg:hover { background: #000 }
.neirong .xinwe { width: 320px; float: left; margin-top: 40px; }
.neirong .xinwe dl { text-align: center; font-size: 14px; float: left; margin-right: 30px; }
.neirong dt { font-weight: normal; }
/**/
.view-prev { padding: 20px 0px; }
.view-prev li { line-height: 35px; color: #656565; }
.view-prev li a { color: #FF0400; }

@media screen and (max-width: 767px) {
.list-unstyled { margin-bottom: 20px !important; }
}
/**/
/**/
.page-turn { text-align: center; padding: 30px 10px 20px; overflow: hidden; }
.page-turn a { display: inline-block; overflow: hidden; height: 36px; line-height: 36px; font-size: 32px; color: #595959; margin: 0px 15px; text-align: center; }
.page-turn a.page-num-current { text-decoration: underline; color:#A00000; }
.page-turn span { display: none; }

@media screen and (max-width: 767px) {
}
/**/

/* 图片懒加载样式 */
img.lazy-load {
opacity: 0;
transition: opacity 0.3s ease-in-out;
}

img.lazy-loaded {
opacity: 1;
}

/* 统一的图片鼠标悬停放大效果 */
.img-hover-zoom {
overflow: hidden;
position: relative;
}

.img-hover-zoom img {
transition: transform 0.5s ease;
width: 100%;
height: auto;
}

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

/* 为现有图片容器添加统一的悬停效果 */
.case-box, .client-box, .banner-slide, .pic-link {
overflow: hidden;
}

.case-box img, .client-box img, .banner-slide img, .pic-link img {
transition: transform 0.5s ease;
}

.case-box:hover img, .client-box:hover img, .pic-link:hover img {
transform: scale(1.05);
}

/* 修复case a.pic-link样式中的语法错误 */
.case a.pic-link {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

/* float-up 动画效果 */
.float-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.float-up.active {
opacity: 1;
transform: translateY(0);
}

/* 如果需要，也可以在这里重新定义动画关键帧 */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translate3d(0, 30px, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}

/* 右侧三个红色方形色块 */
.float-action-buttons {
position: fixed;
top: 80%;
right: 10px;
transform: translateY(-20%);
z-index: 99999;
display: flex;
flex-direction: column;
gap: 1px;
}

.float-action-btn {
width: 60px;
height: 60px;
background-color: #e60012;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
text-decoration: none;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.float-action-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
transition: all 0.3s ease;
}

.float-action-btn:hover {
background-color: #FFF;
text-decoration:none;
}

.float-action-btn:hover::before {
left: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
.float-action-buttons {
right: 10px;
}
.float-action-btn {
width: 50px;
height: 50px;
font-size: 20px;
}
}

/* 案例详情页图片样式 */
.case-detail-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
/* 案例详情页布局调整 - 确保左右布局正确显示 */
.ny-shuoming {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
}

.case-header-left {
    text-align: left;
    flex: 0 0 48%;
    width: 48%;
    max-width: 48%;
}

.case-intro-right {
    text-align: left;
    flex: 0 0 48%;
    width: 48%;
    max-width: 48%;
    float: right;
}

/* 确保响应式布局在小屏幕上的表现 */
@media (max-width: 768px) {
    .ny-shuoming {
        flex-direction: column;
    }
    
    .case-header-left,
    .case-intro-right {
        text-align: left;
        width: 100%;
        max-width: 100%;
    }
    
    .case-intro-right {
        margin-top: 15px;
        float: none;
    }
}

/* 修复相关案例的比例问题 - 确保图片比例一致 */
.related-cases .case-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 20px;
}

.related-cases .case-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-cases .pic-link {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 保持4:3的宽高比 */
    overflow: hidden;
    display: block;
}

.related-cases .pic-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-cases .case-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

/* 优化相关案例在不同屏幕尺寸上的显示 */
@media (min-width: 992px) {
    .related-cases .case-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .related-cases .case-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .related-cases .case-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.related-cases .case-box {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-cases .case-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.related-cases .case-info {
    padding: 10px;
    text-align: center;
}

.related-cases .case-info h4 {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}
// 在现有的.ny-shuoming样式后添加

/* 确保案例详情页内容区域宽度一致 */
.info .bd {
    max-width: 100%;
    margin: 0 auto;
}

.info .bd img {
    width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
}
/* 美高梅MGM官网页面创意布局 */
.about-hero {
    position: relative;
    height: 600px;
    background-image: url(/static/upload/image/20220307/1646633261203083.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    animation: fadeInUp 1.5s ease-out;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-subtitle {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
}

.about-intro {
    margin-bottom: 100px;
}

.about-title {
    font-size: 3rem;
	line-height: 1.8;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.about-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #bf0015;
}

.about-content {
    font-size: 1.5rem;
    line-height: 2;
    color: #666;
    margin-bottom: 30px;
	text-align: justify;
}

.about-image-container {
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}


.about-features {
    margin-bottom: 100px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #bf0015;
}

.feature-item {
    text-align: center;
    padding: 30px 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	margin:0 5px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 4rem;
    color: #bf0015;
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.about-philosophy {
    margin-bottom: 100px;
}

.philosophy-bg {
    background-image: url(/skin/images/team-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.philosophy-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.philosophy-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.philosophy-content .section-title {
    color: white;
    margin-bottom: 40px;
}

.philosophy-content .section-title:after {
    background-color: white;
}

.philosophy-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.about-clients {
    margin-bottom: 50px;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.about-clients .client-item {
    width: 15%;
    height: auto;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.about-clients .client-item:hover {
    
}

.about-clients .client-item img {
    max-width: 90%;
    max-height: 70%;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-hero {
        height: 500px;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 400px;
        background-attachment: scroll;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-intro .col-md-6 {
        margin-bottom: 40px;
    }
    
    .philosophy-bg {
        padding: 60px 0;
    }
    
    .clients-grid {
        gap: 20px;
    }
    
    .client-item {
        width: 120px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        height: 300px;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .philosophy-content p {
        font-size: 1rem;
    }
}

/* 联系我们页面样式 */
.contact-banner {
            background-color: #222;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
			background-attachment: fixed;
        }
        
        .contact-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/skin/images/service-bg.jpg') center center no-repeat;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
			background-attachment: fixed;
			
        }

.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-header,
.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.contact-header h2,
.form-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-header h2:after,
.form-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #bf0015;
}

.contact-header p,
.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* 联系信息样式 */
.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: #bf0015;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.contact-text p {
	font-size: 1.5rem;
    color: #666;
    margin: 0;
	text-align:center;
}

/* 社交媒体样式 */
.social-links {
    margin-bottom: 40px;
    text-align: center;
}

.social-links h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #bf0015;
    color: white;
    transform: translateY(-3px);
}

/* 工作时间样式 */
.working-hours {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.working-hours h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.working-hours p {
    color: #666;
    margin: 5px 0;
}

/* 表单样式 */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    background-color: white;
    border-color: #bf0015;
    box-shadow: 0 0 0 5px rgba(254, 0, 0, 0.1);
}

.form-control::placeholder {
    color: #999;
}

.form-group.focused .form-control {
    background-color: white;
    border-color: #bf0015;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background-color: #bf0015;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 0, 0, 0.3);
}

.form-note {
    margin-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* 地图区域样式 */
.map-section {
    margin-top: 50px;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* 动画效果 */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-header h2,
    .form-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .contact-header h2,
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-header h2,
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .btn-submit {
        padding: 12px;
    }
}

/* 移除旧的联系我们样式，避免冲突 */
.lxnr,
.neirong .book,
.neirong .intxt,
.neirong .xqtxt,
.neirong .coolbg,
.neirong .xinwe {
    display: none;
}

/* 服务列表页面样式 */
        .service-banner {
            background-color: #222;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
			background-attachment: fixed;
        }
        
        .service-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/skin/images/service-bg.jpg') center center no-repeat;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
			background-attachment: fixed;
			
        }
        
        .banner-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        .banner-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
			visibility: visible;
			animation-duration: 1s;
        }
        
        .banner-content p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 服务项目四行布局 */
        .service-section {
            position: relative;
            overflow: hidden;
        }
        
        .service-row {
            display: flex;
            flex-wrap: wrap;
            height: 600px;
            position: relative;
        }
        
        .service-image {
            flex: 0 0 50%;
            width: 50%;
            position: relative;
            overflow: hidden;
        }
        
        .service-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-content {
            flex: 0 0 50%;
            width: 50%;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .service-title {
            font-size: 2rem;
            color: #bf0015;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .service-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: #bf0015;
        }
        
        .service-category {
            margin-bottom: 25px;
        }
        
        .category-title {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .service-list {
            padding-left: 20px;
        }
        
        .service-list li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 10px;
            color: #666;
            line-height: 1.6;
        }
        
        .service-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #bf0015;
        }
        
        /* 交替行样式 */
        .service-row:nth-child(even) .service-image {
            order: 2;
        }
        
        .service-row:nth-child(even) .service-content {
            order: 1;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .service-row {
                height: auto;
                min-height: 400px;
            }
            
            .service-content {
                padding: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .service-image,
            .service-content {
                flex: 0 0 100%;
                width: 100%;
            }
            
            .service-image {
                height: 300px;
            }
            
            .service-row:nth-child(even) .service-image {
                order: 1;
            }
            
            .service-row:nth-child(even) .service-content {
                order: 2;
            }
            
            .service-content {
                padding: 30px 20px;
            }
            
            .service-title {
                font-size: 1.8rem;
            }
        }
        
        /* 动画效果 */
        .service-row {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .service-row.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-image img:hover {
            transform: scale(1.05);
        }