* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgba(51, 51, 51, 1);
}

/* 重新定义 fadeInLeft（覆盖原版） */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);  /* 距离缩小到40px */
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 重新定义 fadeInRight */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 如果你页面里真有 fadeInLeft50 / fadeInRight50，可以一并定义 */
@keyframes fadeInLeft50 {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight50 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* 再把这些动画绑定到 .animated 下对应的类 */
.animated.fadeInLeft {
  animation-name: fadeInLeft;
}
.animated.fadeInRight {
  animation-name: fadeInRight;
}
.animated.fadeInLeft50 {
  animation-name: fadeInLeft50;
}
.animated.fadeInRight50 {
  animation-name: fadeInRight50;
}
li { list-style: none; }
.wow {
    visibility: hidden;
}

main {
    background: url('../images/secondbg.png') no-repeat center center;
    background-size: cover;
}

.wow.animated {
    animation-duration: 0.8s !important;
    -webkit-animation-duration: 0.8s !important;
}

.w1600 {
    max-width: 16rem;
    margin: 0 auto;
}

.secondBanner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.secondBanner .banner_text {
    position: absolute;
    top: 45%;
    left: 30%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 25%;
}

.secondBanner .text_left,
.secondBanner .text_right {
    font-size: 0.6rem;
    font-weight: 500;
    color: #fff;
}

.secondBanner .text_left {
    text-align: left;
}

.secondBanner .text_right {
    text-align: right;
}

.secondBanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.secondMenuBox {
    background-color: #fff;
    padding: 0.2rem 0;
    height: 0.8rem;
}

.secondFlexBrand {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand_left {
    font-size: 0.2rem;
    color: #666;
    transition: all 0.3s linear;
}

.brand_left a {
    color: rgba(132, 133, 133, 1);
}

.second_menu {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
}

.second_menu li {
    list-style: none;
    position: relative;
}

.second_menu li a {
    text-decoration: none;
    color: #666;
    font-size: 0.2rem;
    transition: all 0.2s;
    padding: 0.1rem 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    display: inline;
}

.second_menu li a:hover {
    color: rgba(47, 111, 179, 1);
    font-weight: bold;
}

.second_menu li.active a {
    color: rgba(47, 111, 179, 1);
    background-color: transparent;
    border: none;
    font-weight: bold;
}

.second_menu li.active a::after {
    content: '';
    position: absolute;
    bottom: -0.32rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.04rem;
    background-color: rgba(47, 111, 179, 1);
}


.ywzx_content {
    padding: 0.3rem 0 1.2rem;
}

.ywzx_nav {
    margin-bottom: 0.4rem;
}

.ywzx_nav ul {
    display: flex;
    gap: 0.22rem;
}

.ywzx_nav ul li {
    list-style: none;
    position: relative;
}

.ywzx_nav ul li.nav-item a {
    text-decoration: none;
    color: #666;
    font-size: 0.2rem;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.2rem 0.4rem;
    border-radius: 0.12rem;
    background-color: #fff;
    display: inline-block;
    width: auto;
    text-align: center;
}

.ywzx_nav ul li.nav-item:hover a {
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 73, 165, 1), rgba(0, 99, 200, 1));
    transition: all 0.2s;
}

.ywzx_nav ul li.nav-active a {
    text-decoration: none;
    color: #fff;
    font-size: 0.2rem;
    font-weight: 500;
    transition: all 0.2s;
    padding: 0.2rem 0.4rem;
    border-radius: 0.12rem;
    background: linear-gradient(90deg, rgba(0, 73, 165, 1), rgba(0, 99, 200, 1));
    border: 1px solid transparent;
    display: inline-block;
    width: auto;
    text-align: center;
}

.ywzx_detail {
    padding-bottom: 0.01rem;
}

/* 板块 */
.ywzx_section1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    padding: 0.4rem;
    background-color: #fff;
    border-radius: 0.08rem;
}

.section1_left {
    width: 100%;
    padding-right: 0.4rem;
}

.block_title {
    font-size: 0.34rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.4rem;
    position: relative;
    padding-bottom: 0.15rem;
}

.block_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.6rem;
    height: 0.04rem;
    background: url(../images/bthx.png) no-repeat;
}

.section1_desc {
    margin-top: 0.2rem;
}

.section1_desc p {
    font-size: 0.2rem;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.section1_right {
    width: 48%;
    flex-shrink: 0;
    display: none;
}

.section1_right img {
    width: 100%;
    height: auto;
    border-radius: 0.08rem;
    object-fit: cover;
}

/* 板块 */
.ywzx_section2 {
    margin-bottom: 0.6rem;
    padding: 0.4rem;
    border-radius: 0.08rem;
}

.section2_content {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.advantage_item {
    flex: 1;
    min-width: 3rem;
    padding: 0.4rem;
    background-size: 108%;
    background-position: bottom;
    background-repeat: no-repeat;
    border-radius: 0.08rem;
    border: 0.02rem solid rgba(220, 230, 240, 1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 3.14rem;
}

.advantage_item:nth-child(1) {
    background-image: url(../images/dgfys1.png);
}

.advantage_item:nth-child(2) {
    background-image: url(../images/dgfys2.png);
}

.advantage_item:nth-child(3) {
    background-image: url(../images/dgfys3.png);
}

.advantage_item:hover {
    transform: translateY(-0.08rem) scale(1.02);
    box-shadow: 0 0.1rem 0.2rem rgba(47, 111, 179, 0.2);
    border-color: rgba(47, 111, 179, 0.4);
}

.advantage_top {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.2rem;
    align-items: center;
}

.advantage_icon {
    width: 0.62rem;
    height: 0.62rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage_title {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.advantage_text {
    font-size: 0.18rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin: 0;
}

/* 响应 */
.ywzx_section3 {
    padding: 0.4rem;
    border-radius: 0.08rem;
}

.features_list {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.feature_item {
    flex: 1;
    min-width: 3rem;
    padding: 0.3rem;
    background: url(../images/cptsbg.png) no-repeat;
    background-size: cover;
    border-radius: 0.16rem;
    transition: all 0.4s ease;
    text-align: center;
}

.feature_item:hover {
    transform: translateY(-0.1rem) scale(1.03);
    box-shadow: 0 0.12rem 0.24rem rgba(47, 111, 179, 0.2);
}

.feature_icon {
    width: auto;
    height: auto;
    margin: 0 auto 0.25rem;
    display: block;
    transition: all 0.4s ease;
}

.feature_item:hover .feature_icon {
    transform: scale(1.15);
}

.feature_title {
    font-size: 0.26rem;
    font-weight: bold;
    color: rgba(26, 42, 58, 1);
    margin-bottom: 0.15rem;
    text-align: center;
}

.feature_text p {
    font-size: 0.18rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}


/* 新闻中心板块 */
.xwzx_content {}

.xwzx_detail {
    padding: 0.5rem 0 0;
}

.xwzx-news {
    padding: 0.5rem 0;
}

.xwzx-title {
    font-size: 0.4rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.4rem;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.news-item {
    width: calc(50% - 0.2rem);
    display: flex;
    gap: 0.3rem;
    padding: 0.3rem;
    border-bottom: 1px dashed #ddd;
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    min-width: 1.2rem;
    padding: 0.2rem 0;
}

.date-day {
    font-size: 0.32rem;
    color: #2F6FB3;
    line-height: 1;
}

.date-year {
    font-size: 0.18rem;
    color: #999;
    margin-top: 0.05rem;
}

.news-content {
    flex: 1;
}

.news-title {
    margin-bottom: 0.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-title a {
    font-size: 0.2rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    color: #2F6FB3;
}

.news-desc {
    font-size: 0.2rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻中心 */
.xwzx-pagination {
    padding: 0.5rem 0;
    margin-top: 0.4rem;
}

.pagination-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
}

.page-prev,
.page-next {
    padding: 0.15rem 0.3rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.05rem;
    font-size: 0.2rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.page-prev:hover,
.page-next:hover {
    background-color: #2F6FB3;
    border-color: #2F6FB3;
    color: #fff;
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.page-num {
    width: 0.5rem;
    height: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.05rem;
    font-size: 0.2rem;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.page-num.active,
.page-num:hover {
    background-color: #2F6FB3;
    border-color: #2F6FB3;
    color: #fff;
}

.page-ellipsis {
    font-size: 0.2rem;
    color: #999;
    padding: 0 0.1rem;
}

.page-jump {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: 0.3rem;
}

.jump-input {
    width: 0.8rem;
    height: 0.62rem;
    padding: 0 0.1rem;
    border: 1px solid #ddd;
    border-radius: 0.05rem;
    font-size: 0.2rem;
    text-align: center;
}

.jump-btn {
    padding: 0.15rem 0.3rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.05rem;
    font-size: 0.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.jump-btn:hover {
    background-color: #2F6FB3;
    border-color: #2F6FB3;
    color: #fff;
}

/* ==================== 正文 ==================== */

/* PC */
.zw_content {
    padding: 2rem 0 0.8rem 0;
}

.zw_detail {
    margin: 0 auto;
    padding: 0 1rem;
}

.zw-title {
    font-size: 0.38rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.zw-info {
    display: flex;
    justify-content: space-evenly;
    padding: 0.3rem 0;
    border-bottom: 1px dashed #ddd;
    margin-bottom: 0.6rem;
}

.info-item {
    font-size: 0.22rem;
    color: #666;
}

.zw-body {
    font-size: 0.26rem;
    color: #333;
    line-height: 1.8;
}

.zw-body p {
    margin-bottom: 0.4rem;
    text-indent: 2em;
}

.zw-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0.5rem auto;
}

/* ==================== 瑙嗛闆嗛敠椤甸潰鏍峰紡 ==================== */

/* PC绔?*/
.spjj_content {
    padding: 0.8rem 0;
}

.spjj_detail {
    margin: 0 auto;
    padding: 0 1rem;
}

.spjj-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.6rem;
}
.video-list {
    display: flex;
    gap: 0.8rem;
}

/* 让链接作为 flex 子项，继承原 .video-item 的布局属性 */
.pic {
    flex: 1;
    cursor: pointer;
    text-decoration: none;   /* 去掉下划线 */
    color: inherit;          /* 文字颜色继承 */
    display: block;
}

.zx-item {
    /* 可保持原 .video-item 的部分样式，此处无需额外设置 */
}

.zx-item-pic {
    border-radius: 0.1rem;
    overflow: hidden;
    margin-bottom: 0.3rem;   /* 与标题的间距，同原 .video-wrapper */
}

.zx-item-pic img {
    width: 100%;
    height: auto;
    display: block;
}

/* 悬停效果：可轻微放大图片或改变透明度 */
.pic:hover .zx-item-pic img {
    transform: scale(1.02);
    transition: transform 0.3s;
}

.zx-item-title {
    font-size: 0.24rem;
    color: #333;
    text-align: center;
    margin: 0;
}
/* ==================== 浼佷笟鏂囧寲椤甸潰鏍峰紡 ==================== */

/* PC绔?*/
.qywh_content {
    padding: 0.8rem 0;
}

.qywh_detail {
    margin: 0 auto;
    padding: 0 1rem;
}

.qywh-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.6rem;
}

.whln-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.whln-item {
    display: flex;
    align-items: center;
    padding: 0.4rem;
    border: 1px solid #eee;
    border-radius: 0.1rem;
    background-color: #fff;
    transition: all 0.3s;
}

.whln-item:hover {
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.05);
}

.whln-left {
    width: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.3rem;
}

.whln-icon {
    width: 0.6rem;
    height: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whlnL-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(2);
}

.whln-center {
    flex: 1;
    padding: 0 0.4rem;
}

.whln-center .whln-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: rgba(47, 111, 179, 1);
    margin-bottom: 0.1rem;
}

.whln-en {
    font-size: 0.16rem;
    color: rgba(131, 145, 162, 1);
    margin-bottom: 0.15rem;
    display: block;
}

.whln-zx {
    width: 100%;
    height: 0.01rem;
    margin: 0.1rem 0;
    display: block;
}

.whln-desc {
    font-size: 0.34rem;
    color: rgba(38, 57, 78, 1);
    line-height: 1.6;
    margin: 0;
    font-weight: bold;
}

.whln-right {
    width: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whlnR-icon {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

/* 社会责任板块 */
.shzr_content {
    padding: 0.8rem 0;
}

.shzr_detail {
    margin: 0 auto;
    padding: 0 1rem;
}

.qywh-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.6rem;
}

.shzr-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 0.12rem;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.shzr-mubiao {
    background: url(../picture/shzr-mb.png) no-repeat center center;
    background-size: cover;

}

.shzr-linian {
    background: url(../picture/shzr-ln.png) no-repeat center center;
    background-size: cover;
}

.shzr-item:hover {
    transform: translateY(-0.1rem);
}

.shzr-item-left {
    flex: 1;
    padding-right: 0.5rem;
}

.shzr-item-left .block_title {
    font-size: 0.32rem;
    margin-bottom: 0.3rem;
}

.shzr-desc {
    font-size: 0.34rem;
    color: rgba(46, 66, 88, 1);
    line-height: 1.9;
    font-weight: bold;
    margin-top: 0.15rem;
}

.shzr-desc-ln {
    font-size: 0.2rem;
    color: rgba(46, 66, 88, 1);
}

.shzr-tags {
    display: flex;
    gap: 0.2rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
}

.shzr-tags .tag {
    padding: 0.08rem 0.28rem;
    background-color: #e8f4fd;
    color: #0063c4;
    font-size: 0.22rem;
    border-radius: 0.6rem;
    border: 1px solid #b8dcf5;
}

.shzr-item-right {
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.shzr-icon {
    max-width: 100%;
    height: auto;
}

.shzr-shijian {
    margin-top: 0.7rem;
}

.shzr-shijian>.block_title {
    font-size: 0.34rem;
    margin-bottom: 0.35rem;
}

.shzr-intro-box {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
    align-items: center;
}

.shzr-subtitle {
    width: 5.4rem;
    font-size: 0.34rem;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
    text-align: center;
}

.shzr-intro {
    flex: 1;
    font-size: 0.18rem;
    color: #666;
    line-height: 1.85;
}

.shzr-cards {
    display: flex;
    gap: 0.3rem;
}

.shzr-card {
    flex: 1;
    border-radius: 0.12rem;
    overflow: hidden;
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.1);
}

.card-green .card-header {
    background: linear-gradient(135deg, rgba(0, 99, 196, 1), rgba(0, 68, 144, 1));
}

.card-blue .card-header {
    background: linear-gradient(135deg, rgba(10, 141, 213, 1), rgba(1, 102, 190, 1));
}

.card-gradient .card-header {
    background: linear-gradient(135deg, rgba(9, 159, 142, 1), rgba(0, 109, 194, 1));
}

.card-header {
    padding: 0.35rem 0.35rem 0.3rem;
    color: #fff;
}

.card-header h4 {
    font-size: 0.24rem;
    font-weight: bold;
    margin: 0 0 0.08rem 0;
    line-height: 1.4;
    color: #fff;
}

.card-header p {
    font-size: 0.24rem;
    margin: 0;
    opacity: 0.95;
    color: #fff;
}

.card-body {
    background-color: #fff;
    padding: 0.3rem 0.35rem;
    height: 5.12rem;
}

.card-item {
    margin-bottom: 0.25rem;
}

.card-item:last-child {
    margin-bottom: 0;
}

.card-item .item-icon {
    color: rgba(213, 26, 73, 1);
    font-size: 0.08rem;
    margin-right: 0.1rem;
}

.card-item .item-title {
    font-size: 0.18rem;
    font-weight: bold;
    color: #333;
}

.item-desc {
    font-size: 0.18rem;
    color: #666;
    margin: 0.06rem 0 0 0.24rem;
    line-height: 1.65;
}

/* 征信异议处理板块 */
.zxyycl_content {
    padding: 1rem 0;
}

.zxyycl_detail {
    margin: 0 auto;
}

.zxyycl-box {
    display: flex;
    gap: 3.5rem;
    margin-top: 0.5rem;
}

.zxyycl-left {
    flex: 1;
    padding-right: 0.8rem;
}

.zxyycl-desc {
    font-size: 0.2rem;
    color: #333;
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 0.6rem;
}

.zxyycl-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.contact-icon {
    width: 0.32rem;
    height: 0.32rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.2rem;
    color: #333;
    font-weight: bold;
}

.contact-value {
    font-size: 0.2rem;
    color: #0063c4;
}

.zxyycl-right {
    width: 5rem;
    flex-shrink: 0;
    display: flex;
    position: relative;
    bottom: 1rem;
}

.zxyycl-img {
    width: 100%;
    height: auto;
}

/* 浼佷笟绠€浠嬫澘鍧?*/
.qyjj_content {
    padding: 0.8rem 0 1.5rem;
}

.qyjj_detail {
    margin: 0 auto;
}

.qyjj-intro-box {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.qyjj-intro-left {
    flex: 1;
}

.intro-title {
    font-size: 0.3rem;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 0.35rem;
}

.intro-desc {
    font-size: 0.22rem;
    color: #555;
    line-height: 1.9;
    text-indent: 2em;
    margin-bottom: 0.25rem;
    text-align: justify;
}

.intro-desc2 {
    font-size: 0.22rem;
    color: #555;
    line-height: 1.9;
    text-indent: 2em;
}

.qyjj-intro-right {
    width: 6.7rem;
    flex-shrink: 0;
}

.intro-card {
    background: url('../picture/qyjjbg.png') no-repeat center center;
    border-radius: 0.12rem;
    padding: 0.45rem 0.4rem;
    position: relative;
    min-height: 3.8rem;
}

.intro-card * {
    color: #fff;
}

.card-title {
    font-size: 0.28rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 0.1rem;
}

.card-year {
    position: absolute;
    top: 0.45rem;
    right: 0.4rem;
}

.year-num {
    font-size: 0.42rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.year-text {
    font-size: 0.16rem;
    opacity: 0.9;
    line-height: 1.3;
}

.card-tag {
    font-size: 0.22rem;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.card-btns {
    display: flex;
    gap: 0.15rem;
    margin-top: 1rem;
}

.btn-item {
    padding: 0.08rem 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 0.6rem;
    font-size: 0.18rem;
    background-color: rgba(255, 255, 255, 0.2);
}


/* 企业简介 */
.qyjj-detail-box {
    margin-top: 0.4rem;
}

.detail-text {
    font-size: 0.22rem;
    color: #555;
    line-height: 2;
    text-indent: 2em;
    margin-bottom: 0.15rem;
    text-align: justify;
}

/* 业务板块列表 */
.qyjj-business-list {
    margin-top: 0.6rem;
}

.business-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
    padding: 0.4rem;
    background: url('../picture/qyjjitembg.png') no-repeat center center;
    border-radius: 0.1rem;
    border-left: 6px solid rgba(1, 111, 204, 1);
    padding-right: 0;
}

.business-left {
    width: 20%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.business-num {
    font-size: 0.8rem;
    font-weight: bold;
    color: rgba(216, 231, 241, 0.6);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.business-title {
    font-size: 0.26rem;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 1;
    padding-right: 0.3rem;
}

.business-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.business-right::before {
    content: '';
    display: inline-block;
    width: 1px;
    background: rgba(216, 231, 241, 1);
    margin-right: 0.3rem;
    flex-shrink: 0;
    align-self: stretch;
}

.business-desc {
    font-size: 0.2rem;
    color: #666;
    line-height: 1.85;
    text-align: justify;
}

/* 资质荣誉 */
.zzry_content {
    padding: 0.6rem 0;
}

.zzry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    margin-top: 0.5rem;
}

.zzry-item {
    background-color: #fff;
    border-radius: 0.08rem;
    padding: 0.25rem;
    border: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

.zzry-item:hover {
    box-shadow: 0 0.05rem 0.2rem rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.zzry-img-box {
    width: 100%;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafafa;
    border-radius: 0.06rem;
    overflow: hidden;
    margin-bottom: 0.15rem;
}

.zzry-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zzry-name {
    font-size: 0.16rem;
    color: #333;
    text-align: center;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 鑱旂郴鎴戜滑 */
.lxwm_content {
    padding: 0.6rem 0;
}

.lxwm-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-items: flex-start;
}

.lxwm-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.4rem 0.3rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.22rem;
    color: #333;
    line-height: 1.6;
}

.contact-icon {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.15rem;
    flex-shrink: 0;
}

.contact-label {
    color: #666;
    white-space: nowrap;
}

.contact-value {
    color: #333;
}

.lxwm-right {
    width: 55%;
    flex-shrink: 0;
}

.lxwm-map {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.08rem;
    transform: scale(1.5);
    position: relative;
    top: -0.5rem;
}

/* 鏁版嵁缁熻鍗＄墖 */
.qyjj-stats {
    margin-top: 0.5rem;
    background: url(../picture/qyjjbj1.png) no-repeat center center;
    background-size: cover;
    border-radius: 0.12rem;
    padding: 0.5rem 0.4rem;
    display: flex;
    justify-content: space-around;
}

.stat-item * {
    text-align: center;
    color: #fff;
}

.stat-num {
    font-size: 0.48rem;
    font-weight: bold;
    display: inline;
}

.stat-unit {
    font-size: 0.18rem;
    margin-left: 0.05rem;
}

.stat-label {
    font-size: 0.17rem;
    opacity: 0.9;
    margin-top: 0.1rem;
    line-height: 1.4;
}

/* 企业简介 */
.qyjj-slogan {
    margin-top: 0.35rem;
    background: url(../picture/qyjjbj2.png) no-repeat center center;
    background-size: cover;
    border-radius: 0.12rem;
    padding: 0.45rem 0.5rem;
}

.qyjj-slogan * {
    color: #fff;
}

.slogan-title {
    font-size: 0.32rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.slogan-desc {
    font-size: 0.2rem;
    line-height: 1.75;
    opacity: 0.95;
}


/* ========== 其他资产经营服务 ========== */
.qtzcjyfw_content {
    padding: 0.8rem 0;
}

.qtzcjyfw_detail {
    margin: 0 auto;
    padding: 0 1rem;
}

.qtzcjyfw-title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.6rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 0.44rem 0.4rem 0.4rem;
    background-color: #fff;
    border-radius: 0.12rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-item:hover {
    box-shadow: 0 0.05rem 0.3rem rgba(47, 111, 179, 0.08);
    border-color: rgba(47, 111, 179, 0.1);
}

.service-icon {
    width: 0.64rem;
    height: 0.64rem;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.3rem;
    border-radius: 0.16rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-info {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-size: 0.28rem;
    font-weight: bold;
    color: #26394e;
    margin-bottom: 0.12rem;
    line-height: 1.4;
}

.service-line {
    width: 0.6rem;
    height: 0.03rem;
    display: block;
    margin-bottom: 0.24rem;
    object-fit: contain;
}

.service-desc {
    font-size: 0.22rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 响应式 */

@media (max-width: 1024px) {
    * {
        font-size: 25px;
    }

    .w1600 {
        padding: 0 20px;
    }

    .secondBanner {
        height: 400px;
        margin-top: 0 !important;
    }

    .secondBanner span {
        font-size: 21px;
    }

    .secondBanner .banner_text {
        width: 25%;
    }

    .secondBanner .banner_text * {
        font-size: 31px;
    }

    .secondMenuBox {
        padding: 20px 0;
        height: auto;
    }

    .secondFlexBrand {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .brand_left {
        font-size: 23px;
    }

    .second_menu {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        position: relative;
    }

    .second_menu::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #ccc;
    }

    .second_menu li a {
        font-size: 26px;
        padding: 8px 15px;
    }

    .second_menu li a.active::after {
        bottom: -15px;
        height: 4px;
    }

    .second_menu li.active a::after {
        display: none;
    }

    .ywzx_content,
    .xwzx_content {
        padding: 40px 0;
    }

    .ywzx_detail {
        padding: 0 20px;
    }

    .ywzx_nav {
        margin-bottom: 35px;
    }

    .ywzx_nav ul li.nav-item a,
    .ywzx_nav ul li.nav-active a {
        font-size: 18px;
    }

    .ywzx_nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .ywzx_nav ul li a {
        font-size: 18px;
        padding: 12px 25px;
    }

    .ywzx_detail h2 {
        font-size: 29px;
        margin-bottom: 25px;
    }

    .block_title {
        font-size: 27px;
    }

    .section1_desc p {
        font-size: 18px;
    }

    .advantage_item {
        padding: 25px;
    }

    .advantage_title {
        font-size: 21px;
    }

    .advantage_text {
        font-size: 17px;
    }

    .feature_item {
        padding: 25px;
    }

    .feature_title {
        font-size: 21px;
    }

    .feature_text p {
        font-size: 17px;
    }

    .xwzx-news {
        padding: 40px 0;
    }

    .xwzx-title {
        font-size: 29px;
        margin-bottom: 25px;
    }

    .news-item {
        padding: 20px;
    }

    .date-day {
        font-size: 25px;
    }

    .date-year {
        font-size: 17px;
    }

    .news-title a {
        font-size: 19px;
    }

    .news-desc {
        font-size: 17px;
    }

    .page-prev,
    .page-next {
        padding: 10px 18px;
        font-size: 17px;
    }

    .page-num {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .jump-input {
        width: 65px;
        height: 38px;
    }

    .jump-btn {
        padding: 10px 18px;
        font-size: 17px;
    }

    .shzr_content {
        padding: 50px 0;
    }

    .shzr-card-list {
        flex-direction: column;
        gap: 25px;
    }

    .shzr-card {
        width: 100%;
    }

    .card-header h4 {
        font-size: 26px;
    }

    .card-body p {
        font-size: 18px;
    }

    .card-body-expanded p {
        font-size: 18px;
    }

    .zxyycl_content {
        padding: 50px 0;
    }

    .zxyycl-box {
        flex-direction: column;
        gap: 25px;
    }

    .zxyycl-left,
    .zxyycl-right {
        width: 100%;
    }

    .zxyycl-left h4,
    .zxyycl-right h4 {
        font-size: 23px;
    }

    .zxyycl-left p,
    .zxyycl-right p {
        font-size: 18px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }

    .contact-item {
        font-size: 18px;
    }

    .qywh_title {
        font-size: 31px;
    }

    .qywh-item {
        padding: 25px;
    }

    .qywh-item h4 {
        font-size: 23px;
    }

    .qywh-item p {
        font-size: 18px;
    }

    .qyjj-intro-box {
        flex-direction: column;
        gap: 25px;
    }

    .qyjj-intro-left {
        width: 100%;
    }

    .qyjj-intro-left h3 {
        font-size: 31px;
    }

    .qyjj-intro-left p {
        font-size: 18px;
    }

    .card-title {
        font-size: 25px;
    }

    .year-num {
        font-size: 51px;
    }

    .year-text {
        font-size: 18px;
    }

    .card-tag {
        font-size: 19px;
    }

    .btn-item {
        font-size: 16px;
        padding: 8px 16px;
    }

    .business-item {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        background:#fff;
    }

    .business-right::before {
        display: none;
    }

    .business-left {
        width: 100%;
        text-align: center;
    }

    .business-num {
        font-size: 40px;
    }

    .business-title {
        font-size: 21px;
    }

    .business-desc {
        font-size: 20px;
    }
.intro-card{
    padding: 150px 150px;
}
    .detail-text {
        font-size: 18px;
    }

    .qyjj-stats {
        padding: 30px;
    }
.card-year{
    top: 25%;
    right: 30%;
}
    .stat-card {
        min-width: 120px;
    }

    .stat-num {
        font-size: 33px;
    }

    .stat-label {
        font-size: 16px;
    }

    .qyjj-slogan {
        padding: 30px;
    }

    .slogan-text {
        font-size: 25px;
    }

    .zzry-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .zzry-img-box {
        height: 200px;
    }

    .zzry-name {
        font-size: 17px;
    }

    .lxwm-box {
        flex-direction: column;
        gap: 25px;
    }

    .lxwm-right {
        width: 100%;
    }

    .lxwm-left {
        padding: 25px;
    }

    .contact-item {
        font-size: 19px;
    }

    .lxwm-map {
        transform: none;
    }

    .qtzcjyfw_content {
        padding: 40px 0;
    }

    .qtzcjyfw_detail {
        padding: 0 20px;
    }

    .qtzcjyfw-title {
        font-size: 35px;
        margin-bottom: 30px;
    }

    .service-list {
        gap: 15px;
    }

    .service-item {
        padding: 25px 22px 22px;
        border-radius: 10px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-right: 18px;
        border-radius: 13px;
        padding: 10px;
    }

    .service-title {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .service-line {
        width: 50px;
        height: 3px;
        margin-bottom: 15px;
    }

    .service-desc {
        font-size: 23px;
        line-height: 1.65;
    }

    .card-header {
        padding: 20px;
    }

    .card-body {
        height: auto;
    }

    .shzr-subtitle {
        width: 40%;
    }
}

@media (max-width: 768px) {
    * {
        font-size: 16px;
    }

    .w1600 {
        padding: 0 15px;
    }

    .secondBanner {
        height: 150px;
    }

    .secondBanner span {
        font-size: 14px;
    }

    .secondBanner .banner_text {
        width: 40%;
    }

    .secondBanner .banner_text * {
        font-size: 16px;
    }

    .secondMenuBox {
        padding: 15px 0;
        height: auto;
    }

    .second_menu li.active a::after {
        display: none;
    }

    .secondFlexBrand {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .brand_left {
        font-size: 12px;
    }

    .second_menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        position: relative;
    }

    .second_menu::before {
        content: '';
        position: absolute;
        top: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #ccc;
    }

    .second_menu li a {
        font-size: 18px;
        padding: 6px 10px;
    }

    .second_menu li a.active::after {
        bottom: -12px;
        height: 3px;
    }

    .ywzx_content,
    .xwzx_content {
        padding: 30px 0;
    }

    .ywzx_detail {
        padding: 0 15px;
    }

    .ywzx_nav {
        margin-bottom: 30px;
    }

    .ywzx_nav ul li.nav-item a {
        font-size: 14px;
    }

    .ywzx_nav ul li.nav-active a {
        font-size: 14px;
    }

    .ywzx_nav ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .ywzx_nav ul li a {
        font-size: 14px;
        padding: 10px 20px;
    }

    .ywzx_detail h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* 响应 */
    .ywzx_section1 {
        flex-direction: column;
        padding: 20px 15px;
    }

    .section1_left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .section1_right {
        width: 100%;
    }

    .block_title {
        font-size: 18px;
    }

    .section1_desc p {
        font-size: 14px;
    }

    /* 响应 */
    .ywzx_section2 {
        padding: 20px 15px;
    }

    .section2_content {
        flex-direction: column;
        gap: 15px;
    }

    .advantage_item {
        min-width: 100%;
        padding: 20px;
    }

    .advantage_top {
        gap: 15px;
    }

    .advantage_icon {
        width: 33px;
        height: 33px;
    }

    .advantage_title {
        font-size: 16px;
    }

    .advantage_text {
        font-size: 14px;
    }

    /* 响应 */
    .ywzx_section3 {
        padding: 20px 15px;
    }

    .features_list {
        flex-direction: column;
        gap: 15px;
    }

    .feature_item {
        min-width: 100%;
        padding: 20px;
    }

    .feature_icon {
        margin-bottom: 15px;
    }

    .feature_title {
        font-size: 16px;
    }

    .feature_text p {
        font-size: 14px;
    }

    /* 响应 */
    .xwzx_content {
        padding: 60px 0;
    }

    .xwzx_detail {
        padding: 0 15px;
    }

    .xwzx-news {
        padding: 30px 0;
    }

    .xwzx-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .news-list {
        flex-direction: column;
        gap: 20px;
    }

    .news-item {
        width: 100%;
        padding: 15px;
    }

    .news-date {
        flex-direction: row;
        gap: 5px;
        min-width: auto;
    }

    .date-day {
        font-size: 16px;
    }

    .date-year {
        font-size: 14px;
        margin-top: 0;
    }

    .news-title {
        margin-bottom: 10px;
    }

    .news-title a {
        font-size: 14px;
    }

    .news-desc {
        font-size: 14px;
    }

    .xwzx-pagination {
        padding: 30px 15px;
    }

    .pagination-wrap {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .page-prev,
    .page-next {
        padding: 8px 15px;
        font-size: 14px;
    }

    .page-num {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .page-jump {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }

    .jump-input {
        width: 60px;
        height: 35px;
    }

    .jump-btn {
        padding: 8px 15px;
        font-size: 14px;
    }


    .xwzx-title {
        font-size: 18px;
    }

    .news-list {
        flex-direction: column;
        gap: 15px;
    }

    .news-item {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }

    .news-date {
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px;
        min-width: auto;
    }

    .date-day {
        font-size: 22px;
    }

    .date-year {
        font-size: 14px;
        margin-top: 0;
        align-self: center;
    }

    .news-title a {
        font-size: 14px;
    }

    .news-desc {
        font-size: 14px;
    }

    .pagination-wrap {
        flex-wrap: wrap;
        gap: 5px;
    }

    .page-prev,
    .page-next {
        padding: 8px 15px;
        font-size: 14px;
    }

    .page-num {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .page-jump {
        margin-left: 15px;
    }

    .jump-input {
        width: 50px;
        height: 30px;
        font-size: 14px;
    }

    .jump-btn {
        padding: 8px 15px;
        font-size: 14px;
    }


    /* 响应 */
    .zw_content {
        padding: 60px 0 60px;
    }

    .zw_detail {
        padding: 0 15px;
    }

    .zw-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .zw-info {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .info-item {
        font-size: 14px;
    }

    .zw-body {
        font-size: 14px;
        line-height: 1.6;
    }

    .zw-body p {
        margin-bottom: 20px;
    }

    .zw-image {
        margin: 20px auto;
    }

    /* 响应 */
    .spjj_content {
        padding: 60px 0;
    }

    .spjj_detail {
        padding: 20px 15px;
    }

    .spjj-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .video-list {
        flex-direction: column;
        gap: 30px;
    }

    .video-item {
        width: 100%;
    }

    .video-wrapper {
        margin-bottom: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        width: 30px;
        height: 30px;
    }

    .video-title {
        font-size: 14px;
    }

    /* 响应 */
    .qywh_content {
        padding: 60px 0;
    }

    .qywh_detail {
        padding: 0 15px;
    }

    .qywh-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .whln-list {
        gap: 15px;
    }

    .whln-item {
        padding: 20px 15px;
    }

    .whln-left {
        width: 60px;
    }

    .whln-icon {
        width: 40px;
        height: 40px;
    }

    .whln-center {
        padding: 0 20px;
    }

    .whln-center .whln-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .whln-en {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .whln-zx {
        width: 100%;
        height: 1px;
        margin: 5px 0;
    }

    .whln-desc {
        font-size: 14px;
    }

    .whln-right {
        width: 80px;
    }

    /* 响应 */
    .shzr_content {
        padding: 60px 0;
    }

    .shzr_detail {
        padding: 0 15px;
    }

    .qywh-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .shzr-item {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
    }

    .shzr-item-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .shzr-item-left .block_title {
        font-size: 16px;
    }

    .shzr-desc {
        font-size: 14px;
    }

    .shzr-tags {
        justify-content: center;
    }

    .shzr-tags .tag {
        font-size: 14px;
        padding: 5px 15px;
    }

    .shzr-item-right {
        width: 100px;
    }

    .shzr-shijian {
        margin-top: 35px;
    }

    .shzr-shijian>.block_title {
        font-size: 18px;
    }

    .shzr-intro-box {
        flex-direction: column;
        gap: 11px;
    }

    .shzr-subtitle {
        width: 100%;
        font-size: 14px;
    }

    .shzr-intro {
        font-size: 13px;
    }

    .shzr-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card-header {
        padding: 18px 18px 15px;
    }

    .card-header h4 {
        font-size: 14px;
    }

    .card-header p {
        font-size: 13px;
    }

    .card-body {
        padding: 15px 18px;
    }

    .card-item .item-title {
        font-size: 14px;
    }

    .item-desc {
        font-size: 14px;
    }

    /* 响应 */
    .zxyycl_content {
        padding: 60px 0;
    }

    .zxyycl-box {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .zxyycl-left {
        padding-right: 0;
    }

    .zxyycl-desc {
        font-size: 14px;
        text-indent: 1.5em;
        margin-bottom: 20px;
    }

    .zxyycl-contact {
        gap: 15px;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .contact-label,
    .contact-value {
        font-size: 14px;
    }

    .zxyycl-right {
        width: 200px;
        margin-top: 50px
    }

    /* 浼佷笟绠€浠嬪搷搴斿紡 */
    .qyjj_content {
        padding: 30px 0 60px;
    }

    .qyjj-intro-box {
        flex-direction: column;
        gap: 25px;
    }

    .qyjj-intro-right {
        width: 100%;
    }

    .intro-title {
        font-size: 18px;
    }

    .intro-desc,
    .intro-desc2 {
        font-size: 14px;
    }

    .card-year {
        position: static;
        text-align: left;
        margin-bottom: 8px;
    }


    .business-num {
        min-height: auto;
    }

    .business-title {
        font-size: 14px;
    }

    .business-desc {
        font-size: 13px;
    }

    .business-right::before {
        display: none;
    }

    .honor-link {
        font-size: 13px;
    }

    .stat-num {
        font-size: 30px;
    }

    .slogan-title {
        font-size: 20px;
    }

    .slogan-desc {
        font-size: 14px;
    }

    .qyjj-detail-box {
        padding: 20px;
        margin-top: 20px;
    }

    .detail-text {
        font-size: 14px;
        text-indent: 1.5em;
    }

    /* 响应 */
    .zzry_content {
        padding: 30px 0;
    }

    .zzry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zzry-img-box {
        height: 180px;
    }

    .zzry-name {
        font-size: 13px;
    }

    /* 响应 */
    .lxwm_content {
        padding: 30px 0;
    }

    .lxwm-box {
        flex-direction: column;
        gap: 20px;
    }

    .lxwm-left {
        padding: 15px;
    }

    .contact-item {
        font-size: 14px;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .lxwm-right {
        width: 100%;
    }

    .lxwm-map {
        transform: scale(1.2);
        top: 0;
    }

    .qtzcjyfw_content {
        padding: 25px 0;
    }

    .qtzcjyfw_detail {
        padding: 0 12px;
    }

    .qtzcjyfw-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-list {
        gap: 12px;
    }

    .service-item {
        padding: 18px 14px 14px;
        border-radius: 8px;
        align-items: flex-start;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-right: 12px;
        border-radius: 10px;
        padding: 7px;
    }

    .service-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .service-line {
        width: 36px;
        height: 2px;
        margin-bottom: 10px;
    }

    .service-desc {
        font-size: 14px;
        line-height: 1.5;
    }
.intro-card{
padding:20px;
    }
.qyjj-stats{
padding:20px;
    flex-wrap: wrap;
    justify-content: space-between;
gap: 10px;
   }
 .stat-item{
       width:100%;
text-align:center;
    }
}