body {
	font-family: "Open Sans", Lato, Arial, Verdana, Helvetica, 'Microsoft Yahei', Lato, Roboto, sans-serif;
	font-size: 14px;
	color: #282828;
	overflow-x: hidden;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	outline: none!important;
	color: #282828;
}
a:hover, a:active {
	color: #b57f4d;
	text-decoration: none;
}
#portfolio-container .portfolio-item .glass-animation a{
    width: 263px;
    height: 185px;
    display: block;
    overflow: hidden;
    position: relative;
}
#portfolio-container .portfolio-item .glass-animation .img-responsive{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.dark-title a {
	color: #fff;
}
.dark-title a:hover, .dark-title a:active {
	color: #b57f4d;
}
.text-center {
	text-align: center;
}
.footer-bottom{
    position: relative;
}
.footer-bottom .technicalservice{
    position: absolute;
    right: 60px;
    font-size: 12px;
    color: #969696;
}

        .characterlist .team-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 默认4列 */
            gap: 25px; /* 卡片间距 */
            max-width: 1200px;
            margin: 0 auto;
        }
        .characterlist .lawyer-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            display: flex; /* 核心：横向排列 */
            flex-direction: row;
            height: 240px; /* 固定高度，保持整齐 */
            transition: transform 0.3s;
        }
        .characterlist .lawyer-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .characterlist .card-img-box {
            flex: 0 0 40%; /* 图片占宽度的40% */
            overflow: hidden;
        }
        .characterlist .card-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片填满且不变形 */
            object-position: center top;
            transition: transform 0.5s;
        }
        .characterlist .lawyer-card:hover .card-img-box img {
            transform: scale(1.1);
        }
        .characterlist .card-text-box {
            flex: 1;
            padding: 10px 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }
        .characterlist .lawyer-name {
            font-size: 18px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            display: -webkit-flex;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .characterlist .tag {
            display: inline-block;
            background-color: #e6a23c; /* 金色标签 */
            color: #fff;
            font-size: 12px;
            padding: 2px 4px;
            border-radius: 2px;
            margin-bottom: 10px;
            width: fit-content;
            font-weight: 400;
            margin-top: 2px;
        }
        .characterlist .info-row {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        .characterlist .desc {
            font-size: 13px;
            color: #888;
            margin-top: 10px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-align: left;
        }
        .characterlist .btn-view {
            margin-top: 15px;
            padding: 6px 20px;
            background-color: #e6a23c;
            color: #fff;
            border: none;
            border-radius: 20px;
            font-size: 13px;
            cursor: pointer;
            align-self: flex-start; /* 按钮靠左 */
            transition: background 0.3s;
        }
        .characterlist .btn-view:hover {
            background-color: #d4882b;
        }
        
        
        /* --- 核心容器：网格布局 --- */
        .sucases{
            padding: 0 15px;
        }
        .sucases .case-list-container {
            display: grid;
            /* 自动填充列，每列最小宽度 320px，最大 1fr (均分) */
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px; /* 卡片间距 */
            max-width: 1200px;
            margin: 0 auto;
        }
        /* --- 单个卡片样式 --- */
        .sucases .case-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none; /* 去掉链接下划线 */
            box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* 轻微阴影 */
            transition: all 0.3s ease; /* 平滑动画 */
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid #eaeaea;
        }
        /* 鼠标悬停效果：上浮 + 阴影加深 */
        .sucases .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.12);
            border-color: #c5a47e; /* 悬停时边框变金色 */
        }
        /* --- 图片区域 --- */
        .sucases .case-image-wrapper {
            position: relative;
            width: 100%;
            height: 200px; /* 固定高度 */
            overflow: hidden;
        }
        .sucases .case-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片裁剪以填满容器 */
            transition: transform 0.5s ease;
        }
        /* 图片上的渐变遮罩，让文字更清晰 */
        .sucases .case-image-wrapper::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
        }
        /* 图片悬停放大效果 */
        .sucases .case-card:hover .case-image-wrapper img {
            transform: scale(1.05);
        }

        /* --- 文字内容区域 --- */
        .sucases .case-content {
            padding: 15px;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2; /* 确保文字在遮罩之上（如果遮罩延伸下来） */
        }
        /* 案件类型标签：刑事辩护 | 民事代理 */
        .sucases .case-category {
            font-size: 12px;
            color: #c5a47e; /* 金色 */
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        /* 装饰竖线 */
        .sucases .case-category::before {
            content: "";
            display: inline-block;
            width: 3px;
            height: 14px;
            background-color: #c5a47e;
            margin-right: 8px;
            border-radius: 2px;
        }
        /* 案件标题：具体案情 */
        .sucases .case-title {
            font-size: 16px;
            color: #333;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 15px;
            /* 限制两行文字，超出显示省略号 */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        /* 底部更多信息（可选） */
        .sucases .case-meta {
            margin-top: auto; /* 推到底部 */
            font-size: 13px;
            color: #999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #f0f0f0;
            padding-top: 15px;
        }
        .sucases .case-meta span {
            display: flex;
            align-items: center;
        }
        .sucases .iconview {
            margin-right: 4px; 
            font-size: 12px;
        }
        
        
        
        

        /* --- 容器 --- */
        .company .news-container {
            max-width: 900px; /* 限制最大宽度，阅读体验更好 */
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 25px; /* 卡片之间的间距 */
        }

        /* --- 新闻卡片 --- */
        .company .news-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden; /* 圆角裁剪 */
            box-shadow: 0 4px 15px rgba(0,0,0,0.09); /* 柔和阴影 */
            display: flex;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 200px; /* 桌面端固定高度，保持整齐 */
        }

        .company .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }

        /* --- 图片区域 --- */
        .company .news-image {
            flex: 0 0 30%; /* 桌面端图片占35%宽度 */
            overflow: hidden;
            position: relative;
        }

        .company .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 图片填充 */
            transition: transform 0.5s ease;
        }

        .company .news-card:hover .news-image img {
            transform: scale(1.05); /* 悬停放大 */
        }

        /* --- 文字区域 --- */
        .company .news-content {
            flex: 1;
            padding: 20px 25px;
            display: flex;
            flex-direction: column;
            /*justify-content: center;*/
            position: relative;
            justify-content: flex-start;
        }
        .company .news-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            bottom: 20%;
            width: 3px;
            background: #b8860b;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .company .news-card:hover .news-content::before {
            opacity: 1;
        }

        /* 标题 */
        .company .news-title {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 1; /* 限制标题1行 */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* 摘要 */
        .company .news-excerpt {
            font-size: 14px;
            color: #666666;
            margin-bottom: 20px;
            flex-grow: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3; /* 限制摘要2行 */
            -webkit-box-orient: vertical;
            overflow: hidden;
            line-height: 1.7;
            flex: none;
            align-self: flex-start;
        }

        /* 底部元数据 (日期、分类、阅读数) */
        .company .news-meta {
            font-size: 12px;
            color: #999999;
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }

        .company .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .company .iconview {
            margin-right: 4px;
            font-size: 12px;
        }

        .scopese {
           padding: 0 15px;
        }
        /* --- 服务列表网格布局 (核心部分) --- */
        .scopese .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px; /* 卡片间距 */
        }
        /* --- 服务卡片 --- */
        .scopese .service-card {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.09);
            transition: all 0.3s ease;
            text-align: center;
            border-bottom: 3px solid transparent; /* 预留底部边框位置，防止抖动 */
            display: flex;
            flex-direction: column;
        }
        /* 悬停效果 */
        .scopese .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-bottom-color: #c5a059;
        }

        /* 图片容器 */
        .scopese .card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .scopese .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保证图片不变形且填满容器 */
            transition: transform 0.5s ease;
        }

        /* 图片悬停放大效果 */
        .scopese .service-card:hover .card-image img {
            transform: scale(1.05);
        }
        /* 内容区域 */
        .scopese .card-content {
            padding: 15px 10px;
            flex-grow: 1; /* 让内容区域填满剩余空间 */
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .scopese .card-content h3 {
            font-size: 18px;
            color: #383838;
            margin: 0 0 15px 0;
            font-weight: 600;
        }
        .scopese .card-content p {
            font-size: 14px;
            color: #666666;
            line-height: 1.6;
            margin: 0;
            flex-grow: 0;
            display: -webkit-box !important;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            text-align: left;
            align-self: flex-start;
            padding-bottom: 10px;
        }
        /* 按钮样式 (可选) */
        .scopese .read-more {
            margin-top: auto;
            text-decoration: none;
            color: #c5a059;
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        .scopese .read-more:hover {
            color: #1a253f;
            letter-spacing: 1px;
        }
        
        
b, strong {
	font-weight: bold;
}
#logo img {
	max-height: 50px;
}
.top-line .social a {
	color: #fff;
}
.top-line .social a:hover, .top-line .social a:active {
	color: #b57f4d;
}
#navbar > ul > li > a {
	padding: 24px 0;
	font-size: 17px;
}
#navbar .Lev1 {
	margin: 0 18px;
}
.navbar-nav .dropdown-menu .Lev2 {
	position: relative;
}
.navbar-nav .dropdown-menu .sub-menu3 {
	display: none !important;
}
.navbar-nav .dropdown-menu .Lev2:hover .sub-menu3 {
	display: block !important;
	left: 100%;
	top: -5px!important;
	margin-top: -1px!important;
}
#navbar .dropdown-menu .menu2:after {
	display: none;
}
#navbar ul li ul.sub-menu3 {
	left: 100%;
}
.swiper-container .pagination {
	height: 18px;
	clear: both;
}
.block {
	padding: 40px 0 37px;
}
#index-slider .slide-name {
	font-size: 25px;
}
#index-slider .slide-title {
	font-size: 50px;
	margin-bottom: 30px;
	font-weight: bold;
}
#index-slider .slider-arrow {
	border: 2px solid #aaa;
}
#index-slider .swiper-pagination-switch {
	height: 24px;
}
.icon-blocks .services .title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
}
.icon-blocks .description {
	padding-left: 100px;
}
.icon-blocks .icon-service {
	color: #fff;
	font-size: 40px;
	padding: 15px 16px;
}
#index-portfolio .team .icon-entry .information {
	margin: 0 0px 18px 0px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	border: none;
}
#index-portfolio .team .icon-entry {
	margin-bottom: 15px;
}
#index-portfolio .swiper-slide .thumb-link {
	width: 260px;
    height: 198px;
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
#index-portfolio .swiper-slide .thumb-link img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
#index-about {
	padding-bottom: 50px;
}
#index-about .title {
	margin-bottom: 20px;
}
#index-about .iabout-right img {
	max-width: 100%;
	border-radius: 50px;
}
#index-about .content-block .text p {
	font-size: 14px;
}
.block .block-header-wrapper {
	padding-bottom: 30px;
}
.block .block-header .title {
	font-size: 45px;
	font-weight:bold;
}
.block .block-header .title .first {
	font-size: 14px;
}
#index-team .swiper-slide .clients-entry {
	padding: 0 15px;
	/*width: 292.5px;*/
    height: 198px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}
#index-team .swiper-slide .clients-entry a{
	width: 100%;
    height: 100%;
    display: block;
}
#index-team .swiper-slide .clients-entry a img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}
#index-team .iteam-h3-title {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 20px 18px 20px;
	font-size: 15px;
	margin-bottom: 0;
	text-align: center;
}
#index-team .iteam-h3-title a {
	color: #fff;
}
#index-team .iteam-h3-title a:hover, .iport-h3-title a:active {
	color: #FFC400;
}
#index-news .blog-post .title {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
}
#index-news .blog-post .text {
	text-align: left;
}

#index-news .swiper-slide .thumb-link {
	/*width: 260px;*/
    height: 198px;
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}
#index-news .swiper-slide .thumb-link img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

#footer-sec {
	padding: 40px 0 0px;
}
footer h3.title {
	font-weight: bold;
}
.footer-bottom {
	margin-top: 30px;
	padding: 35px 0;
	border-top: 1px #ffddbd solid;
	text-align: center;
	color: #fff;
}
.footer-bottom a {
	color: #b57f4d;
}
#footer-sec .address {
	margin-bottom: 15px;
}
#footer-sec .social a {
	color: #fff;
}
#footer-sec .social a:hover, #footer-sec .social a:active {
	color: #b57f4d;
}
.foot-news .blog-latest {
	display: -webkit-flex;
    display: flex;
    flex-direction: row;
}
.foot-news .blog-latest .info {
	margin-left: 10px;
}
.foot-news .blog-latest .title {
	margin-bottom: 3px;
	font-size: 14px;
}
.foot-news .blog-latest .date {
	font-size: 12px;
}
.foot-news .blog-latest .thumb-link{
	width: 60px;
    height: 50px;
    overflow: hidden;
    position: relative;
    display: block;
    flex-shrink: 0;
}
.foot-news .blog-latest .thumb-link img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* 内页 */

.noDis {
	display: none;
}
.search-tips {
	color: #f00;
	font-size: 16px;
	text-align: center;
}
.page-content {
	line-height: 1.6;
}
.page-content p {
	margin-bottom: 0;
	line-height: 1.6;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
	margin: 0;
	padding: 0;
	line-height: 2.0;
}
.search-tips {
	color: #f00;
	font-size: 16px;
	text-align: center;
}
em.error {
	overflow: hidden;
	zoom: 1;
	background: url("../images/unchecked.gif") no-repeat 0px 0px;
	padding-left: 19px;
	color: red;
}
em.success {
	overflow: hidden;
	zoom: 1;
	background: url("../images/checked.gif") no-repeat 0px 0px;
	padding-left: 19px;
	color: red;
}
.com-cnt table th {
	font-weight: bold;
	background: #f9f9f9
}
.com-cnt table th, .com-cnt table td {
	border: 1px #eee solid;
	padding: 6px 12px;
}
.com-cnt img {
	max-width: 100%;
}
#pages {
	clear: both;
	padding: 10px 0 10px;
	text-align: center;
	font: 12px 'Microsoft YaHei';
	width: 100%;
    display: flex;
}
#pages a {
	/*display: inline-block;*/
	padding: 0px 8px;
	height: 24px;
	font-size: 12px;
	line-height: 22px;
	text-align: center;
	color: #fff;
	margin-right: -1px;
}

#pages span:hover {
	background: #c89769;
	text-decoration: none;
}
#pages span,#pages .span {
	display: inline-block;
	padding: 0px 8px;
	height: 24px;
	line-height: 22px;
	background: #b57f4d;
	border: 1px solid #b57f4d;
	color: #fff;
	text-align: center;
	margin-left: 20px;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50%;
    box-sizing: border-box;
    cursor: pointer;
}
#pages span:first-child,#pages .span:first-child {
    margin-left: 0;
}
.page .noPage {
	display: inline-block;
	padding: 0px 12px;
	height: 22px;
	line-height: 22px;
	border: 1px solid #e3e3e3;
	text-align: center;
	color: #a4a4a4;
}
.pageright {
	margin-right: 40px;
}
@media (max-width : 420px) {
#pages .prev, #pages .next {
	display: none;
}
}
.blog-post {
	text-align: left;
}
/* 可移植内页样式 */
.for-bottom-padding-no {
	padding-top: 45px;
	clear: both;
}
.text-center {
	text-align: center;
}
.sidebar .widget:last-child {
	margin-bottom: 0;
}
.entry-header {
	background: none;
	box-shadow: none;
	padding-top: 0;
	border: none;
}
.prolist-wrap .glass-animation img {
	border: 1px #e6e6e6 solid;
	max-height:234px;
	border-radius: 10px;
}
.prolist-wrap .glass-animation .honor-img{
    border: 1px #cd9d70 solid;
}
.s-contact {
	color: #555;
	line-height: 2;
	font-size:16px;
}
.sidebar .widget {
	margin-top: 0;
}
.entry-meta li:before {
	margin: 0;
}
#innerpage-wrap {
	background: #fff;
	padding: 45px 0;
	clear: both;
}
#innerpage-wrap .format-image .swipebox-x .img-responsive{
    border-radius: 10px;
}
.character-article figure .img-responsive{
    width: 100%;
}
.breadcrumb-wrapper {
	background: #F4F4F4;
	padding: 30px 0;
}
.breadcrumb-section .bc-cat {
	padding-top: 16px;
	position: relative;
	top: 2px;
}
.bcid-cat {
	font-size: 20px;
	font-weight: bold;
}
.breadcrumb-wrapper .container .bcid-cat {
    position: relative;
}
.breadcrumb-wrapper .container .bcid-cat .bcid-btn{
    background-color: #cd9d70;
    color: #fff;
    padding: 10px;
    width: fit-content;
    position: absolute;
    top: -13px;
}
@media (max-width: 800px) {
    .bcid-btn {
        background-color: transparent !important;
        color: inherit !important;
        padding: 0 !important;
        position: static !important;
        width: auto !important;
        top: auto !important;
        display: inline-block; 
    }
}
.location {
	text-align: right;
}
.widget .tagcloud a, .tags-list a, .searchform #searchsubmit {
	transition: all 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.searchform {
	overflow: hidden;
	background-color: #f16543; /* firefox 19+ */ /* ie */
}
.searchform ::-webkit-input-placeholder {
color: #ffffff;
}
.searchform ::-moz-placeholder {
color: #ffffff;
}
.searchform :-ms-input-placeholder {
color: #ffffff;
}
.searchform input:-moz-placeholder {
color: #ffffff;
}
.searchform #s, .searchform #searchsubmit {
	color: #ffffff;
	height: 48px;
	border: none;
	background-color: #b57f4d;
	margin-bottom: 0;
	border-radius: 0;
}
.searchform #s {
	float: left;
	width: 85%;
	padding-left: 20px;
	padding-right: 0;
}
.searchform .screen-reader-text {
	display: none;
}
.searchform #searchsubmit {
	float: right;
	width: 15%;
	padding-left: 0;
	padding-right: 0;
	background-image: url("../images/icon-lense.png");
	background-repeat: no-repeat;
	background-position: center center;
	cursor: pointer;
}
.searchform #searchsubmit:hover {
	background-color: #c69263;
}
.searchform {
	background: none;
	border: none;
}
.searchform #s {
	background: none;
	color: #444;
	border: 1px #ddd solid;
	border-right: none;
}
.searchform #searchsubmit {
	background-color: #b57f4d;
}
.searchform ::-webkit-input-placeholder {
color: #444;
}
.searchform ::-moz-placeholder {
color: #444;
}
.searchform :-ms-input-placeholder {
color: #444;
}
.searchform input:-moz-placeholder {
color: #444;
}



.social .search .wrap{
    border-bottom: 1px solid rgb(255 255 255);
    height: 32px;
    line-height: 32px;
}

.social .search .wrap #searchsubmit {
    background-image: none; 
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    width: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content:flex-start
}
.social .search .wrap #searchsubmit .fa {
    font-size: 16px;
    color: #ffffff;
}
.social .search .wrap .keyword{
    text-indent: 5px;
    font-size: 12px;
    color: #fff;
}
.social .search .wrap form{
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.social .search .wrap form input{
    background: none;
    border-right: none;
    border-width: 0px;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    text-indent: 5px;
    font-size: 14px;
    color: #fff;
}
.social .search .wrap .keyword::placeholder {
    color: #ffffff;
    opacity: 1;
}
.social .search .wrap .keyword::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}
.social .search .wrap .keyword:-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}
.social .search .wrap .keyword:-ms-input-placeholder {
    color: #ffffff;
    opacity: 1;
}



.widget ul li:before {
	display: none;
}
.widget-category ul li:before {
	font-family: 'FontAwesome';
	content: "\f101";
	padding-right: 17px;
}
.sidebar .widget .title {
	color: #525659;
	text-transform: uppercase;
	font-weight: 600;
}
.sidebar .widget ul li {
	border-bottom: 1px solid #d3dae0;
	padding: 6px 0 6px 0;
	font-size: 14px;
	color: #6e7375;
}
.sidebar .widget ul li a {
	color: #373c40;
	color: #6e7375;
}
.sidebar .widget ul li .newsimg {
	width: 105px;
    height: 90px;
    position: relative;
    display: block;
}
.sidebar .sn-wrapper .s-desc{
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
}
.sidebar .widget ul li a:hover {
	color: #c5a459;
}
.sidebar .widget ul li ul {
	padding: 6px 0 0;
}
.sidebar .widget ul li ul li:first-child {
	border-top: 1px solid #dedede;
}
.sidebar .widget ul li ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.widget .title {
	font-size: 20px;
	line-height: 20px;
	margin-bottom: 22px;
	margin-top: 0;
}
.widget ul {
	list-style: none;
	margin: 0;
}
.widget ul li ul li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.widget .gallery-post-slider ul li {
	border: none;
	background: none;
	padding: 0;
}
.widget .tabbed .tabs {
	margin: 0;
	padding: 0;
}
.widget .tabbed .tabs li {
	float: left;
	list-style: none;
	margin: 0;
	background-image: none;
	border: none;
	padding: 10px 1px 10px;
	width: 33.333%;
	color: #878c90;
	text-align: center;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
	border-right: 1px solid #d3dae0;
}
.widget .tabbed .tabs li:last-child {
	border-right: none;
}
.widget .tabbed .tabs li:hover, .widget .tabbed .tabs li.current {
	color: #ffffff;
	background-color: #f16543;
	border-right: 1px solid #f16543;
	border-bottom: 1px solid #f16543;
	margin-bottom: -1px;
}
.widget .tabbed .block {
	margin: 0;
	display: none;
}
.widget .tabbed .block.current {
	display: block;
	padding: 22px 0 0;
	border-top: 1px solid #d3dae0;
}
.widget .tabbed .widget-list li {
	background: none;
	border-bottom: 1px solid #E8E9EF;
	padding: 0 0 20px;
	margin-bottom: 25px;
	line-height: 1.0;
}
.widget .tabbed .widget-list li .link-read-more {
	color: #f16543;
}
.widget .tabbed .widget-list li .link-read-more:hover {
	color: #373c40;
}
.widget .tabbed .widget-list li .link-read-more:hover:after {
	color: #373c40;
}
.widget-list li {
	overflow: hidden;
	margin-bottom: 20px;
}
.widget-list li:last-child {
	border-bottom: none;
}
.widget-list li h5 {
	margin: 0 0 9px;
	line-height: 21px;
	color: #a5aaae;
	font-size: 13px;
	font-weight: normal;
}
.widget-list li figure {
	float: left;
	margin-right: 22px;
	margin-bottom: 0;
}
.widget-list li figure img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.widget-list li span {
	display: inline-block;
	font-size: 12px;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: left 3px;
	text-transform: uppercase;
	margin-bottom: 7px;
}
.widget-list li .comments {
	background-image: url("../images/icon-chat-3.png");
	background-position: left 3px;
	margin-right: 18px;
	margin-bottom: 0;
}
.widget-list li .author {
	background-image: url("../images/icon-user.png");
	background-position: left 3px;
	padding-left: 17px;
}
.widget-list li .link-read-more {
	text-transform: uppercase;
	font-size: 12px;
	display: block;
}
.widget-list li .link-read-more:after {
	content: " \f101";
	font-family: FontAwesome;
	color: #f16543;
}
.widget .tagcloud {
	overflow: hidden;
	margin-left: -4px;
	margin-right: -4px;
}
.widget .tagcloud a {
	display: block;
	float: left;
	padding: 6px 15px;
	color: #84898b;
	background-color: #ecf0f3;
	font-size: 14px;
	margin: 4px;
	text-decoration: none;
}
.widget .tagcloud a:hover {
	color: #ffffff;
	background: #f16543;
}
.glass-animation:hover .glass span {
	-webkit-transition-delay: .2s; /* Safari */
	transition-delay: 0s;
	opacity: 1;
	width: 30px;
	height: 30px;
	border-radius: 200px;
}
.glass-animation:hover .glass span i {
	right: -14px;
	bottom: -7px;
	-webkit-transition-delay: .2s; /* Safari */
	transition-delay: .2s;
}
.glass-animation:hover .background {
	height: 100%;
	width: 100%;
	opacity: .7;
	border-radius: 10px;
}
.glass-animation .background {
	transition: 0.3s all ease-in-out;
	background: #b57f4d;
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
}
.glass-animation .glass {
	display: block;
	transition: 0.2s all ease-in-out;
}
.glass-animation .glass > span {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	transition: 0.2s all ease-in-out;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	width: 200px;
	height: 200px;
	border-radius: 100px;
	display: block;
	border: 5px solid #ffffff;
}
.glass-animation .glass > span i {
	transition: 0.2s all ease-in-out;
	-webkit-transition-delay: 0s; /* Safari */
	transition-delay: 0s;
	position: absolute;
	right: -200px;
	bottom: -200px;
	display: inline-block;
	width: 18px;
	height: 5px;
	background: #ffffff;
	border-radius: 10px;
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	transform: rotate(45deg);
}
.breadcrumb-section {
	background: url(../images/breadcrumb-bg.jpg) center top no-repeat;
	background-size: cover;
	padding: 52px 0px 70px;
}
.breadcrumb-section h1 {
	margin-bottom: 0;
	font-size: 35px;
	color: #f9f9fa;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.breadcrumb-section h1:after {
	background: #ff7800;
	height: 3px;
	content: "";
	display: block;
	width: 100px;
	margin: 15px 0px 0px
}
.breadcrumb {
	background: none;
	border-radius: 0;
	padding: 4px 0;
	margin: 39px 0px 0px;
}
.breadcrumbs:after {
	height: 1px;
	background: #fff;
	content: "";
	display: block;
	margin: 0px 0px 0px 115px;
	opacity: 0.25;
}
.bc-location {
	margin-top: 39px;
	color: #fff;
}
.bc-location a {
	color: #fff;
}
.bc-location a:hover, .bc-location a:active {
	color: #0093DD;
}
.blog-article {
	margin-bottom: 30px;
}
.blog-article figure {
	margin-bottom: 20px;
}
.blog-article .format-icon {
	left: 0;
}
.blog-article p {
	margin-bottom: 20px;
	line-height: 24px;
}
.blog-article blockquote p {
	line-height: 32px;
}
.blog-article .read-more-link {
	text-transform: uppercase;
	line-height: 23px;
	color: #7d8489;
}
.blog-article .read-more-link:after {
	content: "\f101";
	font-family: FontAwesome;
	color: #f16543;
	padding-left: 8px;
}
.blog-article .read-more-link:hover {
	color: #373c40;
}
.blog-article .read-more-link:hover:after {
	color: #373c40;
}
.blog-article .post-meta {
	color: #a5aaae;
	font-size: 12px;
	float: left;
	width: 21.97402597402597%;
	border-right: 2px solid #d7dee0;
	margin: 0 30px 15px 0;
}
.blog-article .post-meta a {
	color: #a5aaae;
}
.blog-article .post-meta a:hover {
	color: #f16543;
}
.blog-article .post-meta ul {
	list-style: none;
	margin: 0;
	padding: 0 15px;
}
.blog-article .post-meta ul li {
	margin: 0 0 6px;
	padding: 4px 0;
	text-transform: uppercase;
	background: none;
}
.blog-article .post-meta ul li:before {
	font-family: 'FontAwesome';
	padding-right: 17px;
	font-size: 14px;
	color: #8C9194;
}
.blog-article .post-meta ul li.date:before {
	content: "\f073";
}
.blog-article .post-meta ul li.comments:before {
	content: "\f086";
}
.blog-article .post-meta ul li.tags:before {
	content: "\f02b";
}
.blog-article .post-meta ul li.author:before {
	content: "\f007";
}
.blog-article .post-summary {
	padding-right: 10px;
}
.blog-article .post-summary p {
	margin-bottom: 10px;
	line-height: 23px;
	color: #666;
}
.blog-article .post-content-wrapper {
	padding: 15px 0 30px;
}
.blog-article .post-meta ul li time {
	background: none;
	margin-left: -3px;
}

.character-article {
	margin-bottom: 30px;
	display: flex;
	align-items: stretch;
    gap: 10px;
}
.character-article figure {
	/*margin-bottom: 20px;*/
}
.character-article .format-icon {
	left: 0;
}
.character-article p {
	margin-bottom: 20px;
	line-height: 24px;
}
.character-article blockquote p {
	line-height: 32px;
}
.character-article .read-more-link {
	text-transform: uppercase;
	line-height: 23px;
	color: #7d8489;
}
.character-article .read-more-link:after {
	content: "\f101";
	font-family: FontAwesome;
	color: #f16543;
	padding-left: 8px;
}
.character-article .read-more-link:hover {
	color: #373c40;
}
.character-article .read-more-link:hover:after {
	color: #373c40;
}
.character-article .post-meta {
	color: #747474;
	font-size: 12px;
	float: left;
	/*width: 21.97402597402597%;*/
	border-right: 2px solid #d7dee0;
	/*margin: 0 30px 15px 0;*/
}
.character-article .post-meta a {
	color: #a5aaae;
}
.character-article .post-meta a:hover {
	color: #f16543;
}
.character-article .post-meta ul {
	list-style: none;
	margin: 0;
	padding: 0 15px;
	display: -webkit-flex;
    display: flex;
    flex-direction: column;
}
.character-article .post-meta ul li {
	margin: 0 0 6px;
	padding: 4px 0;
	text-transform: uppercase;
	background: none;
}
.character-article .post-meta ul li .fn{
    line-height: normal;
}
.character-article .post-meta ul li:before {
	font-family: 'FontAwesome';
	padding-right: 17px;
	font-size: 14px;
	color: #8C9194;
}
.character-article .post-meta ul li.date:before {
	content: "\f073";
}
.character-article .post-meta ul li.comments:before {
	content: "\f086";
}
.character-article .post-meta ul li.tags:before {
	content: "\f02b";
}
.character-article .post-meta ul li.author:before {
	content: "\f007";
}
.character-article .post-summary {
	padding-right: 30px;
	flex: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
}
.character-article .post-summary p {
	margin-bottom: 10px;
	line-height: 23px;
	color: #666;
}
.character-article .post-content-wrapper {
	padding: 15px 0 30px;
}
.character-article .post-meta ul li time {
	background: none;
	margin-left: -3px;
}

.portfolio-item, .gallery-item {
	margin: 0 0 30px;
	overflow: hidden;
}
.portfolio-item .item-title {
	font-size: 15px;
	margin-bottom: 4px;
	color: #4f5458;
	letter-spacing: normal;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	line-height: 1.4;
}
.portfolio-item time {
	color: #687075;
}
.portfolio-item span {
	color: #f16543;
}
.portfolio-item .square {
	background-color: #bfc4c8;
}
.related-projects .item .separator, .portfolio-item .separator {
	margin: 30px 0 15px;
	display: none;
}
.portfolio-item figure {
	margin-bottom: 22px;
	position: relative;
}
.portfolio-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-color: #f16543;
}
.portfolio-item .overlay a {
	opacity: 0.8;
	filter: alpha(opacity=80);
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	background: url("../images/icon-lense.png") no-repeat center center;
}
.portfolio-item .overlay a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}
.our-work .gallery-item .inner-contents {
	border-bottom: 1px solid #cad3db;
	border-bottom: none;
}
.our-work .gallery-item {
	margin-bottom: 24px;
}
.our-work .gallery-item figure {
	position: relative;
	margin: 0 0 23px;
}
.our-work .gallery-item figure:hover .gallery-btn {
	opacity: 1;
}
.our-work .gallery-item img {
	padding: 0;
	margin: 0;
	max-width: 100%;
	border: 1px #ededed solid;
}
.our-work .gallery-item .gallery-btn {
	position: absolute;
	top: 45%;
	left: 50%;
	z-index: 200;
	width: 160px;
	margin: -22px 0 0 -79px;
	opacity: 0;
	padding: 10px 0;
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	border: 2px solid #ffffff;
	background-color: #B3813C;
}
.our-work .gallery-item .gallery-btn:hover {
	color: #f16543;
	background-color: #ffffff;
}
.our-work .gallery-item .media-container {
	position: absolute;
	z-index: 100;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-color: #B3813C;
}
.our-work .gallery-item .item-title {
	font-size: 15px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 0px;
	color: #61676c;
	color: #282828;
	padding-bottom: 0;
	position: relative;
	z-index: 999;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
	text-align: center;
}
.our-work .gallery-item p {
	margin-bottom: 12px;
}
.our-work .gallery-item p a {
	color: #a1a9b0;
	margin-right: 3px;
	text-decoration: none;
}
.our-work .gallery-item p a:hover {
	color: #f16543;
}
.sidebar .widget {
	margin-bottom: 35px;
}
.widget-list li .comments {
	background: none;
	margin-right: 0;
	padding-left: 0;
	padding-top: 3px;
}
.widget-list li figure {
	margin-right: 15px;
}
.widget .tabbed .widget-list li {
	padding: 0 0 15px;
	margin-bottom: 15px;
}
.widget .tabbed .widget-list li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}
.widget .widget-list {
	padding-left: 0;
}
.widget .widget-list img{
	border-radius: 5px;
}
.sidebar .widget ul li .s-desc {
	margin-bottom: 8px;
	line-height: 1.5
}
.blog-article {
	float: left;
	width: 100%;
}
.blog-article figure {
	float: left;
	width: 250px;
	margin-right: 25px;
	margin-bottom: 10px;
}
.blog-article .post-meta {
	width: 125px;
	margin: 0 30px 15px 0;
}
.blog-article .post-meta ul {
	padding: 0;
}

.character-article {
	float: left;
	width: 50%;
}
.character-article figure {
	float: left;
	width: 50%;
	/*margin-right: 15px;*/
	/*margin-bottom: 10px;*/
	/*margin: 0;*/
}
.character-article .post-meta {
	/*width: 155px;*/
	/*margin: 0 15px 15px 0;*/
	/*padding-right: 10px;*/
	flex: 1;
    display: flex;
    flex-direction: column;
}
.character-article .post-meta ul {
	padding: 0;
}
h2.post-title {
	font-size: 20px;
	letter-spacing: normal;
	margin-top: 0;
	margin-bottom: 12px;
	line-height: 1.4;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: bold;
}
h2.post-title a:hover{
    color:#b57f4d;
}
.downlist-wrap .blog-article figure {
	width: 220px;
	margin-right: 25px;
}
.downlist-wrap .character-article figure {
	width: 220px;
	margin-right: 25px;
}
.download-wrap .d-content {
	padding-top: 15px;
}
.download-wrap .down-info li {
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px #ddd solid;
}
.blog-post-wrap .bp-desc {
	text-align: center;
	display: block;
	margin: 20px 0;
	font-size: 14px;
}
.blog-post-wrap .bp-title {
	margin-top: 0;
	font-size: 23px;
	letter-spacing: normal;
	color: inherit;
	text-align: center;
}
.prolist-wrap .portfolio-item {
	margin-bottom: 17px;
}
.prolist-wrap .model {
	margin-bottom: 5px;
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
	color: #666;
}
.prolist-wrap .p-keyword {
	color: #666;
	margin-bottom: 0;
}
#contact-form textarea {
	height: 120px;
}
.msg-title {
	font-size: 22px;
	text-align: center;
	margin-bottom: 25px;
	color: inherit;
}
.add-msg-form .cf-column {
	padding-bottom: 20px;
	position: relative;
}
.add-msg-form .cf-tarea {
	clear: both;
}
.add-msg-form input {
	box-sizing: border-box;
	padding: 0 15px;
	border: 1px solid #ddd;
	height: 40px;
	line-height: 40px;
	color: #444;
	width: 100%;
	margin-bottom: 0;
}
.add-msg-form textarea {
	box-sizing: border-box;
	border: 1px solid #ddd;
	color: #333;
	min-height: 100px;
	padding: 15px;
	color: #444;
	width: 100%;
	margin-bottom: 0;
}
.add-msg-form .submit-button {
	box-sizing: border-box;
	width: 100%;
	line-height: 40px;
	height: 40px;
	float: right;
	padding: 0px 15px;
	border: 0px;
	color: #fff;
	position: relative;
	background-color: #b57f4d;
	cursor: pointer;
}
.add-msg-form .submit-button:hover, .add-msg-form .submit-button:active {
	background-color: #d4a273;
}
.add-msg-form em {
	position: absolute;
	bottom: 0;
	z-index: 1111;
	float: left;
	left: 20px;
}
.product-show .ps-title {
	font-size: 23px;
	color: inherit;
	margin-top: 0;
	padding-bottom: 0;
	margin-bottom: 0;
	line-height: 1;
}
.product-show .ps-desc {
	display: block;
	text-align: center;
	margin: 17px 0 20px;
	font-size: 14px;
}
.product-show .product-gallery .owl-controls {
	margin-top: 20px;
	text-align: center;
}
.product-gallery {
	margin: 0 -15px;
}
.product-gallery .item {
	padding: 0 15px;
}
.product-gallery img {
	margin-bottom: 1px;
	border: 1px #ededed solid;
}
.proshow-tab {
	margin-top: 20px;
	padding-bottom: 25px;
	padding-bottom: 0;
}
.proshow-tab .nav-tabs li:after {
	display: none;
}
.proshow-tab .nav-tabs .active a {
	color: #D4171E !important;
	text-decoration: none;
}
.proshow-tab .nav-tabs a {
	color: #333 !important;
}
.proshow-tab .tab-content {
	padding-top: 25px;
	width: 100%;
	float: left;
	margin: 0;
}
.proshow-tab .tab-pane {
	margin-top: 0;
}
#product-msg-form input[type="text"], #product-msg-form input[type="password"], #product-msg-form input[type="email"], #product-msg-form input[type="tel"], #product-msg-form input[type="number"], #product-msg-form input[type="file"], #product-msg-form input[type="url"], #product-msg-form select, #product-msg-form textarea {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	line-height: 24px;
	padding: 12px 20px;
	font-size: 13px;
	color: #202020;
	border: 1px solid #dddddd;
	background: #ffffff;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
}
#product-msg-form input[type="text"]:focus, #product-msg-form input[type="password"]:focus, #product-msg-form input[type="email"]:focus, #product-msg-form input[type="tel"]:focus, #product-msg-form input[type="number"]:focus, #product-msg-form input[type="file"]:focus, #product-msg-form input[type="url"]:focus, #product-msg-form select:focus, #product-msg-form textarea:focus {
	border-color: #202020;
}
#product-msg-form .cf-column {
	margin-bottom: 18px;
}
#product-msg-form #submit-btn {
	display: inline-block;
	background: #D4171E;
	color: #202e31 !important;
	color: #fff !important;
	border-radius: 6px;
	padding: 12px;
	border: none;
	cursor: pointer;
	width: 100%;
}
#product-msg-form #submit-btn:hover, #product-msg-form #submit-btn:focus, #product-msg-form #submit-btn:active {
	background: #202E31;
}

/* 内页响应 */

@media (max-width : 990px) { /* 960 */
.technicalservice {
    display: none !important;
}
#innerpage-wrap {
	padding: 30px 0 0;
}
.sidebar .widget:last-child {
	margin-bottom: 30px;
}
.sidebar {
	padding-top: 30px;
	clear: both;
}
.side-search .title {
	display: none;
}
.searchform #s {
	width: 94%;
}
.searchform #searchsubmit {
	width: 6%;
}
.blog-article .read-more-link {
	display: none;
}
.character-article .read-more-link {
	display: none;
}
.character-article figure {
    width: 100%;
}
.character-article {
	float: left;
	width: 100%;
	display: block;
}
.product-show .ps-desc {
	margin: 12px 0 15px;
}
            /* 修改容器为 2列 */
            .characterlist .team-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            /* 卡片变为纵向布局，深色背景 */
            .characterlist .lawyer-card {
                flex-direction: column; /* 纵向排列 */
                height: auto; /* 高度自适应 */
                background-color: #1a2b45; /* 深蓝色背景 */
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            }
            /* 图片区域占满宽度 */
            .characterlist .card-img-box {
                flex: none;
                width: 100%;
                height: 280px; /* 固定高度 */
            }
            /* 文字区域背景变白，圆角处理 */
            .characterlist .card-text-box {
                background-color: #fff;
                padding: 20px;
                border-bottom-left-radius: 12px;
                border-bottom-right-radius: 12px;
                align-items: center; /* 内容居中 */
                text-align: center;
            }
            .characterlist .lawyer-name {
                font-size: 18px;
                flex-direction: row;
                align-items: center;
                text-align: left;
                width: 100%;
            }
            .characterlist .desc {
                /*display: none;*/ /* 移动端空间有限，隐藏长描述 */
            }
            .characterlist .info-row {
                font-size: 13px;
                text-align: left;
                width: 100%;
            }
            .characterlist .btn-view {
                margin-top: 20px;
                align-self: center; /* 按钮居中 */
                width: 100%; /* 按钮变宽 */
                padding: 10px 0;
            }
            .characterlist .tag{
                margin-left: 4px;
                margin-top: 0px;
                margin-bottom: 0px;
            }
}
@media (max-width : 768px) { /* 向下考虑iphone6的667px和736px */
            .characterlist .lawyer-name {
                font-size: 16px;
            }
            .characterlist .team-container {
                grid-template-columns: repeat(1, 1fr);
            }
            .company .news-container {
                gap: 20px;
            }
            .company .news-card {
                flex-direction: column;
                height: auto;
                border: 1px solid #eee;
            }
            .company .news-image {
                flex: 0 0 200px; /* 图片固定高度 */
                width: 100%;
            }
            .company .news-content {
                padding: 20px;
            }
            .company .news-title {
                font-size: 18px;
                margin-bottom: 10px;
            }
            .company .news-excerpt {
                font-size: 13px;
                margin-bottom: 15px;
                /* 移动端依然保持显示摘要，但限制行数 */
                -webkit-line-clamp: 2;
            }
            .company .news-meta {
                padding-top: 10px;
                gap: 10px;
            }
            .scopese .section-title h2 {
                font-size: 28px;
            }
            .scopese .service-grid {
                gap: 20px;
            }
            .scopese .card-image {
                height: 180px;
            }
            
.portfolio-item .item-title {
	position: relative;
	z-index: 999;
}
.our-work .gallery-item .item-title {
	position: relative;
	z-index: 999;
}
.searchform #s {
	width: 92%;
}
.searchform #searchsubmit {
	width: 8%;
}
.product-show .ps-title, .blog-post-wrap .bp-title {
	line-height: 1.6;
	font-size: 18px;
	margin: 0;
	padding: 0;
	font-weight: bold;
}
}
@media (max-width : 740px) { /* 双行，568px,600px,640px */
.bcid-cat {
	text-align: center;
	margin-bottom: 15px;
}
.location {
	text-align: center;
	line-height: 1.4;
}
.side-news {
	display: none;
}
.searchform #s {
	width: 90%;
}
.searchform #searchsubmit {
	width: 10%;
}
.breadcrumb-section {
	padding: 82px 0 40px;
}
.breadcrumb-section .bc-cat {
	text-align: center;
}
.breadcrumb-section h1:after {
	margin: 15px auto 0;
}
.bc-location {
	margin-top: 25px;
	text-align: center;
}
.breadcrumbs:after {
	display: none;
}
}
@media (max-width : 480px) {
.searchform #s {
	width: 85%;
}
.searchform #searchsubmit {
	width: 15%;
}
.blog-article figure {
	margin-right: 0;
	width: 100%;
	margin-bottom: 25px;
}
.blog-article .entry-header {
	clear: both;
}
h2.post-title {
	font-size: 17px;
	margin-bottom: 14px;
}
.blog-article .post-meta {
	margin: 0 0px 15px 0;
	width: 100%;
	border-right: none;
}
.blog-article .post-meta ul li:before {
	padding-right: 10px;
}
.blog-article .post-meta ul li {
	float: left;
	padding: 0;
	margin: 0 12px 0 0px;
}
.blog-article .entry-content {
	clear: both;
}
.blog-article .post-summary p {
	margin-bottom: 0;
}


.character-article .post-meta {
	/*margin: 0 0px 15px 0;*/
	width: 100%;
	border-right: none;
}
.character-article .post-meta ul li:before {
	padding-right: 10px;
}
.character-article .post-meta ul li {
	float: left;
	padding: 0;
	margin: 0 12px 0 0px;
}
.character-article .entry-content {
	clear: both;
}
.character-article .post-summary p {
	margin-bottom: 0;
}

.proshow-tab .nav-tabs > li {
	width: 100%;
}
.proshow-tab .nav-tabs > li > a {
	border-radius: 0;
}
.proshow-tab .nav-tabs > li > a, .proshow-tab .nav-tabs > li.active > a, .proshow-tab .nav-tabs > li.active > a:hover, .proshow-tab .nav-tabs > li.active > a:focus {
	border: 1px #ddd solid;
	margin-right: 0;
}
}
@media (max-width : 420px) {/* 单行，240px,320px,375px,384px,414px */
.blog-article .post-meta ul li.author {
	display: none;
}
.character-article .post-meta ul li.author {
	display: none;
}
.prolist-wrap .model {
	overflow-x: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 1.4;
}
.breadcrumb-section h1 {
	font-size: 30px;
}
}
@media (max-width : 360px) {
.searchform #s {
	width: 80%;
}
.searchform #searchsubmit {
	width: 20%;
}
.prolist-wrap .portfolio-item {
	width: 100%;
}
}
@media (max-width:1440px) and (min-width:1200px) {
.searchform #s {
	width: 82%;
}
.searchform #searchsubmit {
	width: 18%;
}
}
@media (max-width:1200px) and (min-width:1040px) {
.searchform #s {
	width: 78%;
}
.searchform #searchsubmit {
	width: 22%;
}
}

/* responsive */
@media (min-width:1410px) {
.container {
	max-width: 1170px;
	width: 1170px;
}
}
@media (min-width:1570px) {
.container {
	max-width: 1170px;
	width: 1170px;
}
/*#navbar .Lev1{margin:0 22px;}*/
}
@media (min-width:1890px) {
.container {
	max-width: 1370px;
	width: 1370px;
}
#navbar .Lev1 {
	margin: 0 22px;
}
#index-about .content-block .text p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 2.4;
}
}
 @media (max-width : 1024px) {
body {
	word-break: break-all;
	word-wrap: break-word
}
.container {
	max-width: 98%;
	width: 98%;
}
#logo {
	margin: 15px 0;
}
.navbar-toggle {
	display: block !important;
	margin-top: 22px;
	margin-right: 0;
	margin-bottom: 0;
	padding: 7px 8px;
	border-radius: 5px;
}
.navbar-toggle .icon-bar {
	width: 18px;
}
#navbar {
	display: none !important;
}
#main-nav .navbar-header {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}
#mmenu {
	border-left: 1px #E5E5E5 solid;
}
#mmenu .mmDiv {
	padding-top: 20px;
}
#mmenu .mm-title {
	padding: 12px 0 11px;
}
#mmenu .mm-search-form {
	margin: 0;
}
#mmenu .mm-search {
	position: static;
	padding-left: 0;
	margin-top: 10px;
	padding-right: 0;
	margin-bottom: -17px;
}
#mmenu .mm-search .side-mm-keyword {
	max-height: 32px;
	height: 32px;
	padding: 0 16px;
}
#mmenu .noblock {
	display: inline !important;
	padding: 10px;
}
#mmenu .MMhead {
	line-height: 2.8;
	border-bottom: 1px #E5E5E5 solid;
	margin: 0 -20px;
	padding-left: 10px;
}
#mmenu .MMhead a {
	background: none;
}
#mmenu .mm-header .mm-title {
	top: -10px;
	font-size: 14px;
}
#mmenu a {
	color: #333;
	font-size: 14px;
}
#mmenu a:hover, #mmenu a:active {
	color: #AF7F48
}
#mmenu .mm-listview > li > a, #mmenu .mm-listview > li > span {
	padding: 10px 10px 10px 20px;
}
#index-slider .slide-title {
	font-size: 2.5em;
}
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 400px !important;
}
.block.type-1 .slider-arrow {
	top: 40%;
}
.block .block-header .title {
	font-size: 2.5em;
}
.block .block-header .title .first {
	line-height: 1.4;
}
.block .block-header-wrapper {
	padding-bottom: 20px;
}
}
@media (max-width : 990px) { /* 960 */
.container {
	max-width: 99%;
	width: 99%;
}
.block {
	padding: 30px 0 27px;
}
.block .block-header .title {
	text-align: center;
}
.iblock-title {
	width: 100%;
}
.iblock-desc {
	display: none;
}
.block.type-2 .icon-blocks .services {
	margin-bottom: 40px;
}
#footer-sec {
	padding: 0;
}
.footer-top {
	display: none;
}
.footer-bottom {
	margin-top: 0;
	padding: 20px 15px;
	line-height: 1.6;
}
}
@media (max-width : 768px) { /* 向下考虑iphone6的667px和736px */
.adtext {
	display: none;
}
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 350px !important;
}
.block.type-1 .slider-arrow {
	top: 35%;
}
#index-slider .slide-title {
	font-size: 2.1em;
}
}
@media (max-width : 740px) { /* 双行，568px,600px,640px */
.top-phone {
	display: none;
}
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 300px !important;
}
.block.type-1 .slider-arrow {
	top: 30%;
}
.block.type-2 {
	padding-bottom: 40px;
}
.block.type-2 .icon-blocks {
	margin-top: 30px;
}
}
@media (max-width : 480px) {
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 250px !important;
}
.block.type-1 .slider-arrow {
	top: 25%;
}
.block.type-1 .slide-text {
	display: none;
}
.block .block-header .title {
	font-size: 2em;
	line-height: 1.6;
}
.blog-post .meta-entry .comments {
	display: none;
}
}
@media (max-width : 420px) {/* 单行，240px,320px,375px,384px,414px */
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 220px !important;
}
.block.type-1 .slider-arrow {
	top: 22%;
}
#index-slider .slide-name {
	font-size: 1.2em;
	font-weight: bold;
	margin-bottom: 15px;
}
#index-slider .slide-title {
	font-size: 1.5em;
	font-weight: bold;
}
}
@media (max-width : 360px) {
.main-slider, .block.type-1 .swiper-container, .block.type-1 .swiper-wrapper, .block.type-1 .swiper-slide, .block.type-1 .swiper-slide .container {
	min-height: 200px !important;
}
.block.type-1 .slider-arrow {
	top: 20%;
}
#index-slider .slide-title {
	font-size: 1.3em;
	font-weight: bold;
}
.block .block-header .title {
	font-size: 1.7em;
}
.block {
	padding-right: 15px;
}
#index-slider {
	padding-right: 0;
}
#innerpage-wrap {
	padding: 30px 15px 0 0;
}
}
