/* 在CSS文件顶部添加颜色变量定义 */
:root {
    --primary-color: #0d5ba3;
    --primary-dark: #0a4a82;
    --secondary-color: #1a7bc9;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #333;
    --text-gray: #666;
    --border-color: #ddd;
}
/* Header 样式 */
.header-container {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo-container {
    margin-right: 20px;
}

.logo-img {
    max-height: 80px;
    width: auto;
}

.header-text {
    flex: 1;
}

.firm-name, .firm-info {
    font-family: "KaiTi", "楷体", "STKaiti", serif;
    margin: 0;
    padding: 0;
}

.firm-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.firm-info {
    font-size: 16px;
    color: #666;
}

.firm-info a {
    color: #0077cc;
    text-decoration: none;
}

.firm-info a:hover {
    text-decoration: underline;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .logo-img {
        max-height: 60px;
    }
}


.picScroll-left1 .bd li a,.nav a,.snv a,.btn-more{
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.wp{
    width: 1000px;
    margin:0 auto;
}

.wps{
    width: 1000px;  /* 修改为与其他部分一致的宽度 */
    margin: 0 auto;
}



body {
    font-family: "微软雅黑", "Microsoft YaHei", sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}
a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--primary-color);
}
#hd{
    height: 110px;
    border-bottom: 1px solid #ddd;

}
.hdr{
    padding-top: 40px;
}
.hdr li{
    float: left;
}
.so,.div-language{
    padding-top: 4px;
    height: 34px;
    z-index:10;
}
.so{
    padding-right: 20px;
    background:url('../image/br.jpg') no-repeat right top;
    position: relative;
}
.so .input{
    color:#747474;
    width: 183px;
    padding: 6px 15px;
    border:1px solid #acacac;
    border-radius: 5px;
    
}
.so .imgbt{width: 17px;height:18px;
    position: absolute;right:25px;top:10px;}
.div-language p{
    margin-left: 15px;
    color:#808080;
}
.div-language li{
    position: relative;
    color:#fff;
    border-radius:3px;
    width: 70px;
    padding-left: 10px;
    height:30px;
    line-height:30px;
    background:#0d5ba3 url('../image/arrow.jpg') no-repeat 55px center;
	
}
.div-language .ok dl{
    display: block;
}
.div-language dl{
    background: #fff;
    border-radius: 3px;
    display: none;
    position: absolute;
    left:0;
    top:30px;
    z-index:100;
    border-left:1px solid #0d5ba3;
    border-right:1px solid #0d5ba3;
}
.div-language dl dd a{
    width: 68px;
    padding-left: 10px;
    height: 30px;
    line-height:30px;
    color:#0d5ba3;
    display: block;
    border-bottom:1px solid #0d5ba3;
}
.div-language dl dd a:hover{
    background: #0d5ba3;
    color:#fff;
}
.div-language p{
    line-height:32px;
}

.nav{
    height: 60px;
    position: relative;
    z-index: 50;
	background:#B5EDFF
}
.nav li{
    padding-top: 5px;
    padding-bottom: 2px;
    height: 50px;
    width: 75px;
    float: left;
    margin-right: 40px;
}
.nav li .v1{
    padding-left:5px;
    padding-right: 5px;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 16px;
    border-bottom: 3px solid #fff;
}
.nav li .v1:hover,.nav li.on .v1,.nav .ok .v1{
    border-bottom: 5px solid #0d5ba3;
}

.nav .sub{
    width: 100%;
    background:url('../image/blue.jpg');
    position: absolute;
    left:0;
    top:58px;
    display: none;
}
.nav .areasub{height: 100px;}
.nav .sub p{
    margin-left: 80px;
}
.nav .sub p a{
    font-size: 16px;
    line-height: 54px;
    margin-right: 15px;
}
.nav .sub p .a-on{
    color:#0d5ba3;
}
.nav .ok .sub{
    display: block;
}
.nav .sub .area{padding-top: 15px;}
.nav .sub .area a{width: 200px; height:24px;display: block;float: left;margin-right:0;line-height: 24px;}


/* 律师模块优化样式 */
.lawyer-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.lawyer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lawyer-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 20px; /* 减小内边距 */
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 350px; /* 设置最小高度 */
}

.lawyer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.lawyer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.lawyer-item .pic {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.lawyer-item .pic img {
    width: 120px; /* 减小图片尺寸 */
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid #e9ecef;
    display: block;
}

.lawyer-item .pic img:hover {
    border-color: #0077b6;
    transform: scale(1.05);
}

.txt-center {
    text-align: center;
    width: 100%;
}

.txt-center .position {
    font-size: 16px;
    color: #666;
    margin: 10px 0 5px;
    font-weight: normal;
}

.txt-center .lawyer-name {
    font-size: 20px;
    margin: 8px 0;
    font-weight: bold;
}

.txt-center .lawyer-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.txt-center .lawyer-name a:hover {
    color: #0077b6;
}

.btn-more {
    border: 1px solid var(--border-color);
    width: auto;
    height: auto;
    text-align: center;
    line-height: 1.5;
    display: inline-block;
    cursor: pointer;
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
}

.btn-more:hover {
    background: var(--primary-color);
    color: white;
}
/* 响应式断点定义 */
@media (max-width: 1200px) {
    .wp, .wps {
        width: 90%;
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .wp, .wps {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .wp, .wps {
        width: 100%;
        padding: 0 15px;
    }
    
    .nav li {
        width: auto;
        margin-right: 15px;
    }
    
    .picScroll-left1 {
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .nav {
        height: auto;
        padding: 10px 0;
    }
    
    .nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav li {
        margin: 5px;
    }
}
/* 响应式调整 */
@media (max-width: 768px) {
    .lawyer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
   .lawyer-card {
        padding: 15px;
        min-height: auto; /* 移动端不需要固定高度 */
    }
}
    .lawyer-item .pic img {
        width: 120px;
        height: 120px;
    }
    
    .txt-center .lawyer-name {
        font-size: 18px;
    }


@media (max-width: 480px) {
    .lawyer-item .pic img {
        width: 100px;
        height: 100px;
    }
    
    .lawyer-card {
        padding: 15px;
    }
}
/* 为律师标题添加渐变背景 */
.lawyer-header {
    background: linear-gradient(135deg, #0d5ba3 0%, #1a7bc9 100%);
    color: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.lawyer-header h2 {
    font-size: 24px;
    padding-top: 20px;
    color: white;
    font-weight: bold;
}

.lawyer-header p {
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 8px;
    color: white;
    margin-bottom: 18px;
}

/* 保持原有的txt-z样式但为律师部分特别定制 */
.txt-z.lawyer-header {
    background: transparent !important;
    text-align: center;
}

.lawyer-section .bgf {
    background: rgba(255, 255, 255, 0.95);  /* 略微透明的白色背景 */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(13, 91, 163, 0.15);  /* 蓝色阴影 */
    padding: 15px;
}

/* 修正ul-law样式 - 覆盖冲突样式 */
.ul-law {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ul-law li {
    flex: 1;
    min-width: 200px;
    margin-right: 12px;
    margin-bottom: 15px;
    text-align: center;
    padding: 12px;
    border: 1px solid rgba(13, 91, 163, 0.2);  /* 淡蓝色边框 */
    border-radius: 6px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    flex-basis: calc(25% - 12px);
}

.ul-law li:nth-child(4n) {
    margin-right: 0;
}

.ul-law li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(13, 91, 163, 0.25);  /* 蓝色阴影效果 */
    border-color: #0d5ba3;  /* 悬停时蓝色边框 */
}

.lawyer-item {
    text-align: center;
}

.lawyer-item .pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    border: 3px solid #e9ecef;  /* 淡灰色边框 */
    display: block;
}

.lawyer-item .txt {
    text-align: center;
}

.lawyer-item .ul-law-h1 {
    font-size: 13px;
    color: #0d5ba3;  /* 蓝色 */
    margin-bottom: 4px;
    font-weight: 600;
}

.lawyer-item h3 {
    margin: 6px 0;
    color: #333;  /* 深灰色文字，更柔和 */
}

.lawyer-item h3 a {
    font-size: 16px;
    color: #0d5ba3;  /* 蓝色链接 */
    text-decoration: none;
    display: block;
}

.lawyer-item h3 a:hover {
    color: #0a4a82;  /* 深蓝色悬停效果 */
}

.lawyer-item .btn-more {
    margin-top: 8px;
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(to right, #0d5ba3, #1a7bc9);  /* 蓝色渐变按钮 */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    border: none;
    transition: background 0.3s ease;
}

.lawyer-item .btn-more:hover {
    background: linear-gradient(to right, #0a4a82, #1560a0);  /* 深蓝色悬停效果 */
    color: white !important;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .ul-law li {
        flex-basis: calc(33.333% - 12px);
        margin-right: 12px;
    }
    
    .ul-law li:nth-child(3n) {
        margin-right: 0;
    }
    
    .ul-law li:nth-child(4n) {
        margin-right: 12px;
    }
}

@media (max-width: 768px) {
    .ul-law li {
        flex-basis: calc(50% - 10px);
        margin-right: 10px;
    }
    
    .ul-law li:nth-child(2n) {
        margin-right: 0;
    }
    
    .ul-law li:nth-child(3n) {
        margin-right: 10px;
    }
    
    .lawyer-header h2 {
        font-size: 22px;
        padding-top: 18px;
    }
    
    .lawyer-header p {
        font-size: 14px;
        margin-top: 6px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .ul-law li {
        flex-basis: 100%;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .lawyer-header h2 {
        font-size: 20px;
        padding-top: 15px;
    }
    
    .lawyer-header p {
        font-size: 12px;
        margin-top: 4px;
        margin-bottom: 14px;
    }
}



.fullSlide{ 
    width: 100%; 
    position: relative; 
    height: 510px; 
    overflow: hidden; 
}  
.fullSlide .bd{ 
    position: relative; 
    z-index: 0; 
}  
.fullSlide .bd ul{ 
    width: 100% !important; 
    height: 510px; /* 修复拼写错误 */
} 
.fullSlide .bd li{ 
    width: 100% !important; 
    height: 510px; 
    position: relative; /* 确保定位正确 */
} 
.fullSlide .bd li .siteWidth{ width:1000px; position:relative;  margin:0 auto;  height:299px;  }  
.fullSlide .bd li a{
         position:absolute; 
         width:100%;
          height:447px; 
          display:block;
           z-index:1;}  
.fullSlide .hd{
           width:100%; 
            position:absolute;
             z-index:10; bottom:0; 
             left:0; height:30px; 
             line-height:30px; 
             text-align:center; }              
.fullSlide .hd ul li {display: inline;}
          .fullSlide .hd ul li a{
              cursor:pointer;
              display:inline-block;
              width:35px; 
              height:6px; 
              margin:4px; 
              font-size: 1px;
              line-height: 6px;
              background:#fff; 
              vertical-align: middle; /* 替代IE hack实现相同效果 */
          }
.fullSlide .hd ul .on a{ 
       background: #0d5ba3;
}

#fd{
    padding-top: 33px;
    height: 200px;
   ;    background: #032662 url('../image/fd-1px.jpg') repeat-x;
}

#fd a{
    color:#888;
    line-height: 13px;
}
#fd a:hover {color: #fff;}

.fd-logo{
    margin-right: 70px;
}
.fd-logo p{
    color:#888;
    padding-top: 10px;
}
.fd-nav{
    width: 240px;
}
.fd-nav h3{
    padding-top: 10px;
    font-size: 16px;
    color:#fff;
}
.fd-nav ul{
    padding-top: 3px;
}
.fd-nav ul li{
    padding-top: 10px;
    float: left;
    width: 55px;
    margin-right: 35px;
    height: 20px;
}

.tel ul li p{
    color:#888;
    line-height:13px;
    padding-bottom: 5px;
}
.tel ul li{
    padding-top: 10px;
    float: none;
    width: 245px;
    line-height: 13px;
    color:#888;
}
.fd-nav span{
    width: 52px;
    height: 3px;
    line-height: 3px;
    font-size: 1px;
    background: #fff;
    display: inline-block;
}
#fd .top{
    display: block;
    position: absolute;
    width: 60px;
    padding-top: 5px;
    height: 20px;
    line-height: 20px;
    right:0;
    top:-58px;
    background:#0d5ba3;
    color:#fff;
    
    font-size: 18px;
    text-align: center;
}
#fd .top:hover{
    color:#fff;
}
.fullSlide .pr{
    height: 447px;
}
.fullSlide .pr .more{
    padding-left: 43px;
    width: 137px;
    height: 42px;
    line-height: 42px;  
    display: block;
    font-size: 16px;
    color:#fff;
    position: absolute;
    left:0;
    top:279px;
    background:#0d5ba3 url('../image/w-right.jpg') no-repeat 120px 12px;
}

.banner-in{
    height: 204px;
}
.banner-in .img{
    position: absolute;
    left:0;
    top:54px;
    width: 273px;
    height: 108px;
    background: #0d5ba3;
    text-align: center;
}
.banner-in .img p{
    font-size: 24px;
    color:#fff;
    padding-top: 35px;
}
.cur{
    background: #f6f6f6;
    margin-bottom: 30px;
}
.cur p{
    float: right;
    padding-left: 25px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    background:url('../image/cur.jpg') no-repeat left center;
}
.cur p a{
    color:#a1a1a1;
}
.cur p a.on{
    color:#565656;
}
.banner-in .img .p1{
    padding-top: 20px;
}





.btn-more{
    border: 1px dotted #ddd;
    width: 83px;
    height: 23px;
    text-align: center;
    line-height: 23px;
    display: block;
    cursor:pointer;
    color: #666;
}
.btn-more:hover{
    background: #0d5ba3;
    color: #fff;
}

.row-2b {margin-bottom: 60px; overflow: hidden;}

.row-2a .col-l {
  width: 60%;    /* 示例：父容器宽度的60% */
  max-width: 675px; /* 限制最大宽度 */
}
.row-2a .col-r {
  width: 30%;     /* 示例：父容器宽度的30% */
  max-width: 310px; /* 限制最大宽度 */

}

.row-2b .col-l{
    width: 220px;
}
.row-2b .col-r{
    width: 750px;
}

    .tit-a1{
        margin-bottom: 20px;
    }
    .tit-a1 strong{
        border-bottom: 2px solid #333;
        padding-bottom: 10px;
        font-size: 16px;
        color: #000;
    }
    .tit-a2{
		padding-bottom: 10px;
        margin-bottom: 15px;
        margin-top: 40px;
        font-size: 20px;
        font-weight: normal;
        background: url(../image/tit-a1.jpg) no-repeat left bottom;
    }
    .tit-a2 span{
        font-size: 30px;
        color:#333;
    }


    .box-l{
        width: 220px;
        height: 153px;
        background: url(../image/box-l.jpg) no-repeat center #0d5ba3;
    }
    .box-l h3{
        text-align: center;
        color: #fff;
        font-weight: normal;
        font-size: 18px;
        padding-top: 50px;
        font-family: Arial;
    }
    .box-l span{
        display: block;
        font-weight: bold;
        font-family:"微软雅黑","Microsoft Yahei";
    }
    .snv{
        width: 218px;
        border: 1px solid #ddd;
        padding-top: 20px;
        padding-bottom: 15px;
        border-radius:0 0 5px 5px; 
    }
    .snv li{
        text-align: center;
        
    }
    .snv li a{
        display: block;
        height: 45px;
        line-height: 45px;
        color: #000;
        font-size: 16px;
    }
    .snv .on a,
    .snv li a:hover{
        background: #0d5ba3;
        color: #fff;
    }




.pages{
    text-align: center;
    padding-top: 38px;
    padding-bottom: 88px;
}
.pages li{
    display: inline;
}
.pages a{
    color: #666;
    border: 1px solid #ddd;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 0 12px;
}
.pages .on a,
.pages a:hover{
    background: #0d5ba3;
    color: #fff;
    
}




.bgf{
    background: #fff;
    padding: 30px 20px 40px;
    border-bottom: 3px solid #ddd;
    margin-bottom: 50px; /* 减小底部间距，避免过大 */
}
.bcgf {
    background: url("../image/index_img_5.jpg");
    height: 150vh;
    overflow: auto;
}
   

.ul-news li{
    border-bottom: 1px dashed #ddd;
    height: 101px;
    padding-top: 13px;
    padding-bottom: 16px;
}
.ul-news .date{
    float: left;
}
.ul-news .date p{
    width: 29px;
    height: 21px;
    line-height: 21px;
    margin-right: 10px;
    text-align: center;
    font-size: 14px;
}
.ul-news .date .p1{
    background: #0d5ba3;
    color: #fff;
}
.ul-news .date .p2{
    border: 1px solid #0d5ba3;
    color: #0d5ba3;
}
.ul-news .pic{
    float: left;
}
.ul-news .pic img{
    width: 108px;  /* 从1080px改为108px */
    height: 90px;  /* 从900px改为90px */
}
.ul-news .txt{
    float: left;
    width: 440px;
    margin-left: 17px;
}
.ul-news .txt h3{
    padding-bottom: 5px;
}
.ul-news .txt p{
    color: #666;
    line-height: 22px;
    margin-bottom: 5px;
}

.ul-list{
    width: 750px;
}
.ul-list li{
    border-bottom: 1px dashed #ddd;
    height: 101px;
    padding-top: 13px;
    padding-bottom: 16px;
}
.ul-list .pic{
    float: left;
}
.ul-list .pic img{
    width: 130px;
    height: 101px;
}
.ul-list .txt{
    width: 605px;
    float: right;
}
.ul-list .txt span{
    color: #666;
}
.ul-list .txt p{
    color: #666;
    padding-top: 10px;
}
.ul-list .txt .btn-more{
    background: #0d5ba3;
    margin-top: 8px;
    margin-right:50px;
    color: #fff;
}



.ul-txt li{
    background: url(../image/ul-txt.jpg) no-repeat left center;
    border-bottom: 1px dashed #ddd;
    height: 50px;
    line-height: 50px;
}
.ul-txt a{
    padding-left: 10px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}
.ul-txt .on,
.ul-txt a:hover{
    color: #0d5ba3;
}

.ul-txt span{
    color: #666;
}


.ul-case{
    width: 780px;
}
.ul-case li{
    width: 235px;
    border: 1px solid #c4c4c4;
    margin-right: 19px;
    margin-bottom: 20px;
    float: left;
}
.ul-case .pic{
    margin-bottom: 10px;
}
.ul-case .pic img{
    width: 235px;
    height: 180px;
}
.ul-case .txt{
    padding-left: 20px;
    padding-right: 30px;
}
.ul-case .txt h4 a,
.ul-case .txt span{
    color: #333;
}
.ul-case .txt h4 a{
    line-height: 25px;
}
.ul-case .txt span{
    
}
.ul-case .txt h4{
    padding-bottom: 8px;
    font-size: 12px;
}
.ul-case .txt .btn-more{
    margin-top: 10px;
    margin-bottom: 15px;
}




.ul-team{
    width: 790px;
}
.ul-team li{
    width: 228px;
    padding: 2px;
    border: 1px solid #ddd;
    text-align: center;
    float: left;
    margin-right: 24px;
    margin-bottom: 25px;
}
.ul-team .pic{
    float: left;
    margin-bottom: 10px;
}
.ul-team .pic img{
    width: 228px;
    height: 175px;
}
.ul-team h4{
    line-height: 26px;
    font-size: 14px;
    color: #000;
}
.ul-team .btn-more{
    margin: 5px auto 0 auto;
}

.box-team{
    width: 745px;
    height: 280px;
    border: 1px solid #c4c4c4;
    margin-bottom: 30px;
}
.box-team .pic{
    border-right: 1px solid #c4c4c4;
    width: 364px;
}
.box-team .pic img{
    margin-left: 2px;
    margin-top: 2px;
    width: 360px;
    height: 276px;
}
.box-team .txt{
    width: 380px;

}
.box-team .txt h1{
    text-align: center;
    padding-top: 42px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    color: #333;
    background: url(../image/box-team-01.jpg) no-repeat center bottom;
}
.box-team .txt p{
    font-size: 14px;
    height: 25px;
    line-height: 25px;
    padding: 0px 23px;
    color: #333;
}



.h43{height:43px;}
.txt-z{overflow: hidden;text-align: center;background:url(../image/txt.gif) no-repeat center center;}
.txt-z h2{font-size: 22px;padding-top: 21px; color:#333;font-weight: normal;}
.txt-z .f3{color: #fff;}
.txt-z p{text-transform: uppercase;font-size: 24px;margin-top: 20px;color:#087CF5;}



.busare{background:#fff no-repeat center center;height: 513px;padding-top: 33px;}
.picScroll-left1{position:relative; width: 1025px;padding-top: 37px ;}
.picScroll-left1 .bd{ position:relative; height:100%; z-index:0;   }
.picScroll-left1 .bd li{float: left;margin-right: 23px;width: 233px;height: 500px;}
.picScroll-left1 .bd li a{display: block;width: 233px;height: 149px; padding-top: 156px;
    background:#f7f9fb url(../image/z-bg.jpg) no-repeat 75px 41px ;
}
.picScroll-left1 .bd li a.s2{background-position:-181px 41px;}
.picScroll-left1 .bd li a.s3{background-position:-437px 41px;}
.picScroll-left1 .bd li a.s4{background-position:-693px 41px;}
.picScroll-left1 .bd li a.s5{background-position:-693px 41px;}
.picScroll-left1 .bd li a.s6{background-position:-693px 41px;}

.picScroll-left1 .bd li a:hover,.picScroll-left1 .bd li.on{
    background:#0d5ba3 url(../image/z-bg2.jpg) no-repeat 75px 41px;color:#fff;
}
.picScroll-left1 .bd li a:hover h3,.picScroll-left1 .bd li.on h3{color:#fff;}
.picScroll-left1 .bd li a.s2:hover{background-position:-181px 41px;}
.picScroll-left1 .bd li a.s3:hover{background-position:-437px 41px;}
.picScroll-left1 .bd li a.s4:hover{background-position:-693px 41px;}

.picScroll-left1 .bd li h3{font-weight: normal;font-size: 16px;color:#000;text-align: center;
    margin-bottom: 11px;}
.picScroll-left1 .bd li p{line-height: 24px;padding:0 17px 0 12px;}


.picScroll-left1 .prev{left:-85px;}
.picScroll-left1 .prev,
.picScroll-left1 .next{top:174px;}
.picScroll-left1 .prev,
.picScroll-left1 .next,.picScroll-left2 .prev,
.picScroll-left2 .next{ position:absolute; width:28px; height:54px; 
    background:url(../image/next.png) no-repeat; filter:alpha(opacity=50);opacity:0.5;   }
.picScroll-left1 .next{right:-57px;}
.picScroll-left1 .next,.picScroll-left2 .next{background-image:url(../image/prev.png);}
.picScroll-left1 .prev:hover,
.picScroll-left1 .next:hover,.picScroll-left2 .prev:hover,
.picScroll-left2 .next:hover{ filter:alpha(opacity=100);opacity:1;  }
.picScroll-left2 .hd a{cursor: pointer;}


.compro{overflow: hidden;padding-top: 27px;margin-bottom: 59px;}
.compro .img{width: 428px;height: 329px;float: left;}
.compro .img img{width: 428px;height: 329px;}
.compro .txt{width: 551px;float: right;position: relative;height: 329px;}
.compro .txt h3{font-size: 18px;font-weight: normal;color:#333;padding: 32px 0 10px 0;
    background:url(../image/h3-bg1.jpg) no-repeat left bottom;margin-bottom:6px;}
.compro .txt p{font-size: 14px;line-height: 26px;}
.compro .txt a{position: absolute;bottom:0;right:0;}



.aclacas{padding: 44px 0 105px 0;background:#fff;overflow: hidden;}
.picScroll-left2{padding-top: 34px;position: relative;}
.picScroll-left2 .bd li{width: 300px;float: left;margin-right: 50px;}
.picScroll-left2 .bd .img{width: 300px;height: 230px;}
.picScroll-left2 .bd .img img{width: 300px;height: 230px;}
.picScroll-left2 .bd .txt{height: 127px;background:#fff;padding-left: 16px;}
.picScroll-left2 .bd .txt h3{font-size: 14px;padding: 13px 0 8px 0;}
.picScroll-left2 .bd .txt p{line-height: 26px;}
.picScroll-left2 .bd .txt .btn-a1{margin-top: 8px;}

.picScroll-left2 .prev,
.picScroll-left2 .next{top:206px;}
.picScroll-left2 .prev{left:-85px;}
.picScroll-left2 .next{right:-75px;}



.hiring{padding-bottom: 72px;}
.hiring-top p,.hiring-top ul{font-size: 13px;}
.hiring-top p{line-height: 26px;}
.hiring-top h3{font-size: 16px;color:#333;padding:11px 0 4px 0;}
.hiring-top ul{margin-bottom: 30px;}
.hiring-top ul li{line-height: 38px;}

.hiring-zp .m1{padding:0 15px;border:1px solid #ccc; border-radius: 4px;margin-bottom: 14px;}
.hiring-zp .bt span{float: right;margin-right: 8px;}
.hiring-zp .bt{padding:10px 0 ;} 
.hiring-zp .bt strong,.hiring-zp .con{font-size: 14px;}
.hiring-zp .bt strong,.hiring-zp .con h4{font-weight: normal;color:#000;}
.hiring-zp .bt strong a:hover{font-weight: bold;color:#0d5ba3;}

.hiring-zp .m1 .con{border-top: 1px solid #dbdbdb;padding-top:10px;display: none;}
.hiring-zp .m1 .con p{line-height: 26px;}
.hiring-zp .m1 .con h4{margin-top: 28px;}
.hiring-zp .m1 .con ul{line-height: 26px;color:#858585;margin-bottom:14px;}
.hiring-zp .m1.ok .con{display: block;}
.hiring-zp .m1.ok .bt a{color: #0d5ba3;font-weight: bold;}


.contact-lx{border:1px solid #ccc;padding-top: 73px;margin-bottom: 14px;
    background:url("../image/suobiao_2.png") no-repeat center 11px;}
.contact-lx h3{font-size: 18px;color:#000;text-align: center;}
.contact-lx .txt{margin:14px 0 0 92px;overflow: hidden;}
.contact-lx .txt p{margin-bottom: 16px;float: left;font-size: 14px;font-weight: bold;
    color:#333;padding-left: 26px;background:url(../image/z-li.gif) no-repeat left center;}
.contact-lx .txt p.s2{background-image:url(../image/z-li2.gif);}
.contact-lx .txt p.s3{background-image:url(../image/z-li3.gif);}
.contact-lx .txt p.s4{background-image:url(../image/z-li4.gif);}
.contact-lx .txt p.s5{background-image:url(../image/z-li5.gif);}
.contact-lx .txt p.s6{background-image:url(../image/z-li6.gif);}

.contact-lx .txt p.s2,.contact-lx .txt p.s4,.contact-lx .txt p.s6{width: 280px;float: right;}
.contact-lx .txt p.s1,.contact-lx .txt p.s3,.contact-lx .txt p.s5{width: 310px;}


.body-txt h1{text-align: center;font-size: 16px;color:#333;border-bottom:1px solid #ccc;padding-bottom: 14px;margin-bottom: 3px;}
.body-txt h3{color:#666;font-size: 12px;padding-left: 28px;}
.body-txt p{font-size: 14px;}
.body-txt p,.body-txt span{line-height: 26px;}
.body-txt span{display: block;text-align: center;}
.body-txt .a{overflow: hidden;border-top: 1px solid #ccc;padding-top: 20px;}
.body-txt .a em{font-size: 14px;}



.profile-z{overflow: hidden;height: 312px;}
.profile-z .img{width: 389px;float: left;border:1px solid #ccc;}
.profile-z .img img{width: 389px;height: 310px;vertical-align: bottom;}
.profile-z .pic{color:#fff;width:358px;float: right;border:1px solid #182b39; border-left: 0;height: 310px;background:#0d5ba3;}
.profile-z .pic h3{font-size: 16px;text-align: center;padding:65px 0 23px 0;font-weight: normal;
    background:url(../image/z-h3bg.jpg) no-repeat center bottom;margin-bottom: 20px;
}
.profile-z .pic p{font-size: 14px;line-height: 26px;width:294px;margin:0 auto;}


.busdom-img{height:259px;}
.busdom-img .left,.busdom-img .right{height: 259px;display: inline-block;vertical-align: bottom;}
.busdom-img .left{width: 357px;}
.busdom-img .right{width: 388px;}
