* {
    margin:0; 
	padding:0;
    box-sizing:border-box;
    list-style:none;
    text-decoration:none;
}
body {
    font-family:"Microsoft YaHei",sans-serif;
    background:#fff;
    color:#333;
    font-size:16px;
    min-width: 1360px;
    overflow-x: hidden;
}
a {
    color: #1d1d1d;
    text-decoration: none;
}
a:hover {
    color:#ca0019;
    text-decoration: none;
}
.fl { 
    float:left;
}
.fr { 
    float:right;
}
/* 核心：电脑版固定宽度，不缩放、不挤压 */
.container {
    width:1360px;
    margin:0 auto;
    padding: 0;
    flex-shrink: 0;
	max-width: 100%;
}

.top-nav {
    background: #ffffff;
    height: 60px;
    line-height: 60px;
    border-top: 2px solid #c90019;
    border-bottom: 1px solid #f1f1f1;
    padding: 0; 
    margin-bottom: 5px;
    width: 100%;
    min-width: 1360px;
}
.top-nav .inner {
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    /* 强制固定inner宽度，不缩放 */
    flex-shrink: 0;
}
.top-nav .logo {
    width: 100px;
    float: none;
    height: 36px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.top-nav .logo a {
    display: block;
    width: 100%;
    height: 100%;
}
.top-nav .logo img {
    height: 100%; 
    width: auto;
}
.top-nav .nav-list {
    float: none;
    margin-left: 25px; 
    display: flex;
    flex-shrink: 0;
}
.top-nav .nav-list li {
    float: none;
    margin: 0 13px;
}
.top-nav .nav-list li a {
    color: #333333;
    font-size: 18px;
    font-weight: normal !important;
}
.top-nav .nav-list li a:hover {
    color: #c90019;
    text-decoration: none;
}
.top-nav .nav-list li.active a {
    color: #c90019;
    font-weight: bold;
}

/* 搜索框：强制固定尺寸，不缩放、不挤压 */
.top-nav .search-bar {
    float: none;
    margin-top: 0;
    display: flex; 
    margin-left: auto; 
    align-items: center;
    /* 强制固定搜索框宽度和高度，不随窗口变化 */
    width: 320px !important;
    height: 38px !important;
    border: 1px solid #dedede; 
    border-radius: 20px;
    flex-shrink: 0;
}
.top-nav .search-bar input {
    padding: 0 5px;
    border: 1px solid #f9f9f9; 
    outline: none;
    float: left;
    /* 输入框固定尺寸，不缩放 */
    width: 235px !important;
    height: 32px !important;
    border-radius: 20px; 
    text-indent: 15px;
    flex-shrink: 0;
}
.top-nav .search-bar button {
    height: 28px;
    width: 70px;
    background: #c90019;
    color: #ffffff;
    border: none;
    cursor: pointer;
    float: left;
    border-radius: 20px; 
    margin:3px 0 0;
    flex-shrink: 0;
}

/* 移动端导航菜单按钮（仅768px以下显示） */
.top-nav .menu-icon {
    width: 30px;
    height: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
}
.top-nav .menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}
/* 移动端下拉导航容器 */
.mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: none !important;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.mobile-nav.show {
    max-height: 500px;
}
.mobile-nav ul {
    padding: 10px;
}
.mobile-nav ul li {
    padding: 10px 0;
    border-bottom: 1px dotted #eee;
}
.mobile-nav ul li:last-child {
    border-bottom: none;
}
.mobile-nav ul li a {
    font-size: 16px;
    color: #333;
}
.mobile-nav ul li.active a {
    color: #c90019;
    font-weight: bold;
}

/* 横幅广告：固定宽度，不缩放 */
.banner-ad {
    width: 1360px; 
    margin: 20px auto;
    height: 60px;
    display: block;
    flex-shrink: 0;
}
.banner-ad img {
    display: block;
    width: 100%;
    height: auto;
}

/* 主体布局：强制固定宽度，不缩放 */
.main-wrap {
    display: flex;
    gap: 0;
    overflow: visible;
    width: 1360px;
    margin: 0 auto;
    flex-shrink: 0;
}

.left-side {
    width: 130px;
    flex-shrink: 0;
    margin-right: 45px; /* left-side与news-area间隔45 */
    position: sticky;
    top: 20px; /* 滚动时距离顶部20px，可自定义 */
    align-self: flex-start; /* 配合sticky生效，避免flex布局影响 */
}
.left-side .side-menu {
    border: 1px solid #ebebeb;
    background: #ffffff;
}
.left-side .menu-header {
    background: #fcfcfc;
    padding: 0 8px;
    font-weight: bold;
    color: #c90019;
    border-bottom: 1px solid #ebebeb;
    display: flex; 
    justify-content: space-between;
    align-items: center;
}
.left-side .menu-title {
    flex: 1;
    display: none; 
    text-align:left;
}
.left-side .menu-toggle {
    width: 20px;
    height: 20px;
    display: none; /* 桌面端隐藏下拉按钮 */
    cursor: pointer;
}
.left-side .menu-toggle img {
    width: 100%;
    height: 100%;
}
.left-side .menu-list {
    max-height: none;
    overflow: visible; /* 电脑端列表始终展开 */
}
/* left-side列表项：居中、高度60 */
.left-side .menu-list li {
    padding: 0; /* 重置内边距 */
    height: 60px; /* 每块高度60 */
    line-height: 60px; /* 垂直居中 */
    text-align: center; /* 水平居中 */
    border-bottom: 1px dotted #ebebeb;
}
.left-side .menu-list li:last-child {
    border-bottom: none;
}
.left-side .menu-list li a {
    display: block; /* 让a标签撑满li，点击区域更大 */
    width: 100%;
    height: 100%;
}
.left-side .menu-list li a:hover {
    display: block; 
    background: #c90019; 
    color: #fff;
}
.left-side .menu-list li .active  {
    background: #c90019; 
    color: #fff;
}

/* 调整中间内容区宽度为800px */
.news-area {
    width: 800px;
    flex-shrink: 0;
    margin-right: 40px; /* news-area与right-side间隔40 */
}
.news-area2 {
    width: 975px;
    flex-shrink: 0;
    margin-right: 40px; /* news-area与right-side间隔40 */
}
.news-list {
    width: 100%;
}
.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: top;
}
/* 调整新闻图片尺寸：宽度220，高度150 */
.news-item .news-pic {
    width: 220px; /* 修改为220 */
    height: 150px; /* 修改为150 */
    margin-right: 20px;
    flex-shrink: 0;
}
.news-item .news-pic img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover; /* 保持图片比例，避免拉伸 */
}
.news-item .news-text {
    flex: 1;
}
.news-item .news-title {
    font-size: 18px;
    margin-bottom: 15px;
}
.news-item .news-desc {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 15px;
}
.news-item .news-time {
    color: #999999;
    font-size: 14px;
}

/* 重构新闻列表样式 - 纯文字布局 */
.news-item1 {
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    justify-content: space-between; /* 标题左，日期右 */
}
.news-item1 .news-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.news-item1 .news-title {
    margin: 0; /* 重置margin */
    white-space: nowrap; /* 标题不换行 */
    overflow: hidden; /* 超出隐藏 */
    text-overflow: ellipsis; /* 超出显示省略号 */
    flex: 1; /* 占满剩余空间 */
}
.news-item1 .news-time {
    color: #999999;
    margin-left: 20px; /* 与标题保持间距 */
    white-space: nowrap; /* 日期不换行 */
    font-size: 14px;
}

/* ：合并中间+右侧为combined-area */
.combined-area {
    width: 1185px;
    flex-shrink: 0;
    /* 内部可自由排版：可继续用flex/grid，也可上下排列 */
    display: flex;
    flex-direction: column; /* 默认上下排列，也可改为row左右排列 */
    gap: 20px; /* 内部元素间距 */
}
.single { 
	margin:0;
}
.singletit { 
    border-bottom: 1px solid #e6e6e6; 
	height: 38px;
	margin:15px 0;
}
.singlet { 
	border-bottom: 3px solid #c90019; 
	height: 38px; 
	font-size: 20px; 
	padding: 0 5px 0 0; 
	color: #c90019;
}
.singlecon {
	line-height: 36px;
	font-size:18px;
}
.singlecon img{
	height:auto;
	display:block; 
	margin-left:auto; 
	margin-right:auto;
}

/* 左图右文新样式 */
.news-item2 {
    padding: 20px;
    border: 1px solid #ebebeb;
	border-radius: 6px; 
	box-shadow: 1px 2px 10px #e4e4e4;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}
/* 新闻图片尺寸保持 */
.news-item2 .news-pic {
    width: 320px;
    height: 220px;
    margin-right: 20px;
    flex-shrink: 0;
}
.news-item2 .news-pic img {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover; /* 保持图片比例，避免拉伸 */
    border-radius: 4px;
}
/* 日期样式容器 */
.news-item2 .news-date {
    width: 80px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
.news-item2 .news-date .day {
    font-size: 30px;
    color: #c90019;
    line-height: 1;
}
.news-item2 .news-date .month-year {
    font-size: 14px;
    color: #999999;
    margin-top: 5px;
}
.news-item2 .divider {
    width: 1px;
    height: 120px;
    background-color: #eeeeee;
    margin-right: 20px;
    flex-shrink: 0;
}
.news-item2 .news-text {
    line-height: 1.8;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-item2 .news-title {
    font-size: 22px;
    margin-bottom: 15px;
}
.news-item2 .news-desc {
    line-height: 1.8;
    margin-bottom: 10px;
}
.news-item2 .news-area {
    line-height: 1.6;
}


/* 新内容区域（原左侧+中间合并）：固定宽度 */
.content-area {
    width: calc(100% - 385px);
    flex-shrink: 0;
    margin-right: 40px;
}
.news--nav { 
    background: url(https://www.txss.com/skin/images/home_03.jpg) no-repeat; 
    text-indent: 35px; 
    margin: 10px 0;
}
/* 新闻内容页布局：固定尺寸，不缩放 */
.news-detail {
    width: 100%;
	margin:25px 0 0;
}
.news-detail-title {
    font-size: 30px;
    text-align: left;
    padding: 1px 0;
    line-height: 1.5;
}
.news-detail-meta {
    padding: 10px 0;
    text-align: left;
    color: #999;
}
.news-detail-meta  span{
    padding: 0 15px 0 0;

}
.news-detail-ad {
    width: 100%;
    height: 60px;
    margin: 10px 0;
}
.news-detail-content-wrap {
    display: flex;
    gap: 40px;
}

/* 左侧功能区：固定宽度，不缩放 */
.news-detail-toolbar {
    width: 96px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
    border: 1px solid #e6e6e6; 
    border-radius: 5px;
}
.news-detail-toolbar li {
    width: 100%;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 0 5px; 
    color: #b2b2b2; 
    transition: all 0.2s;
}
.news-detail-toolbar li img {
    vertical-align: middle;
}
.news-detail-toolbar .tool-share { 
    border-top: 1px solid #e6e6e6;
    text-align: center; 
    color: #b2b2b2; 
    padding: 15px 0 0;
    margin: 10px 0 0;
}

/* 右侧正文区：固定宽度，不缩放 */
.news-detail-content {
    width: 836px;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}
.news-detail-content p {
    margin-bottom: 10px;
    word-break: break-all;
}
.news-detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
}
.news-detail-bottom-ad {
    width: 100%; /* 与正文宽度保持一致 */
    height: 60px; /* 可根据广告需求调整高度 */
    margin: 20px 0;
    flex-shrink: 0;
    display: block; /* 默认电脑端显示 */
}
/* 合并后的内容容器 */
.content-container {
    width: 100%;
    flex-shrink: 0;
}

/* 第一行：筛选分类区域 */
.filter-area {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
}
.filter-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.filter-row:last-child {
    margin-bottom: 0;
}
.filter-label {
    font-weight: bold;
    color: #333;
    margin-right: 15px;
    min-width: 60px;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.filter-options li {
    padding: 5px 15px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ebebeb;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-options li .active  {
    color: #fff;
}
.filter-option {
    padding: 5px 15px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #ebebeb;
    cursor: pointer;
    transition: all 0.2s;
}
.filter-option:hover, .filter-option.active {
    background: #c90019;
    color: #fff;
    border-color: #c90019;
}

/* 第二行：图片列表区域 */
.gallery-area {
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-5px);
}
.gallery-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;

    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    padding: 5px 0;
}
/* 新增产品信息区域样式 */
.product-info-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
}
/* 左侧产品图片区域 */
.product-img-area {
    width: 460px;
    flex-shrink: 0;
}
.product-big-img {
    width: 460px;
    height: 460px;
    margin-bottom: 15px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* 小图滚动区域 */
.product-small-img-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.product-small-img-scroll {
    display: flex;
    gap: 10px;
    width: max-content;
    transition: transform 0.3s ease;
}
.product-small-img {
    width: 83px;
    height: 83px;
    border: 1px solid #ebebeb;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 强制填满，不留白 */
    display: block;
}
.product-small-img:hover {
    border-color: #c90019;
}
/* 滚动按钮 */
.img-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-scroll-left {
    left: 0;
}
.img-scroll-right {
    right: 0;
}

/* 右侧产品信息区域 */
.product-desc-area {
    flex: 1;
	padding:0 10px;
}
.product-main-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.product-brief {
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}
.product-info-divider {
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    margin-bottom: 20px;
}
.product-info-list {
    list-style: none;
}
.product-info-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-info-list li .label {
    flex-shrink: 0;
}
.product-info-list li .value {
    flex: 1;
}

/* 商品介绍标题样式 */
.product-intro-title {
    font-size: 22px;
    font-weight: bold;
    margin: 30px 0 0;
    color: #333;
}
.product-intro-divider {
    width: 100%;
    height: 1px;
    background-color: #d8d8d8;
    margin-bottom: 20px;
}
/* 商会地图 */
.map-content {
    padding: 15px 0;
	width:970px;
    margin: 0 auto;
}

.map-module {
    width: 970px !important;
    margin: 0 auto;
    position: relative;
    transition: all .3s ease;
}

.map-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.map-branch .map-title {
    margin: 20px 0 ;
    z-index: 1;
}
.map-title:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid;
    border-color: #c90019 transparent transparent;
}
.map-title:after {
    content: "";
    position: absolute;
    width: 265px;
    height: 2px;
    background-color: #c90019;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}
.map-content-info {
    position: relative;
}
.map-content-boxsy {
    width: 100%;
    height: 100%;
    background: url("https://www.txss.com/skin/images/mapshaoyang.png") no-repeat center;
    position: relative;
    margin: 0 auto;
}
.map-content-boxcn {
    width: 100%;
    height: 100%;
    background: url("https://www.txss.com/skin/images/mapchina.png") no-repeat center;
    position: relative;
    margin: 0 auto;
}
.branch-map {
    width: 970px;
    height: 750px;
    text-align: center;
    position: relative;
}
.map-content-box {
    width: 100%;
    height: 100%;
    background: url("https://www.txss.com/skin/images/mapshaoyang.png") no-repeat center;
    position: relative;
    margin: 0 auto;
}
.map-dot {
    position: absolute;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
}
.daxiang {
    left: 666px;
    top: 202px;
}
.shuangqing{
    left: 684px;
    top: 191px;
}
.beita {
    left: 661px;
    top: 177px;
}
.shaodong {
    left: 782px;
    top: 183px;
}
.xinshao {
    left: 670px;
    top: 150px;
}
.shaoyangxian {
    left: 595px;
    top: 282px;
}
.longhui {
    left: 498px;
    top: 235px;
}
.dongkou {
    left: 316px;
    top: 256px;
}
.wugang {
    left: 338px;
    top: 390px;
}
.xinning {
    left: 428px;
    top: 508px;
}
.suining {
    left: 150px;
    top: 450px;
}
.chengbu {
    left: 210px;
    top: 536px;
}
.jingkaiqu {
    left: 715px;
    top: 180px;
}

.aomen {
    left: 575px;
    top: 596px;
}
.beijing {
    left: 603px;
    top: 258px;
}
.chongqing {
    left: 460px;
    top: 465px;
}
.fujian {
    left: 662px;
    top: 517px;
}
.gansu {
    left:435px;
    top: 350px;
}
.guangdong {
    left: 573px;
    top: 572px;
}
.guangxi {
    left: 495px;
    top: 585px;
}
.guizhou {
    left: 470px;
    top: 505px;
}
.hainan {
    left: 515px;
    top: 645px;
}
.henan {
    left: 568px;
    top: 372px;
}
.hubei {
    left: 585px;
    top: 445px;
}
.hunan {
    left: 558px;
    top: 488px;
}
.jiangsu {
    left: 655px;
    top: 410px;
}
.jiangxi {
    left: 605px;
    top: 475px;
}
.liaoning {
    left: 695px;
    top: 230px;
}
.ningxia {
    left: 466px;
    top: 296px;
}
.shaanxi {
    left: 495px;
    top: 370px;
}
.shanghai {
    left: 695px;
    top: 416px;
}
.sichuan {
    left: 430px;
    top: 445px;
}
.tianjin {
    left: 615px;
    top: 285px;
}
.yunnan {
    left: 400px;
    top: 545px;
}
.xinjiang {
    left: 238px;
    top: 180px;
}
.zhejiang {
    left: 670px;
    top: 442px;
}
.shaoyang {
    left: 543px;
    top: 511px;
}
.map-dot:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    background-color: #c90019;
    border-radius: 70%;
}
.map-dot.cur:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #c90019;
    animation: dot 4s infinite;
}
.branch-map-data {
    position: absolute;
    box-sizing: border-box;
    width: 430px;
    border: 1px solid #c90019;
    box-shadow: 0 0 2px 2px #e9e9e9;
    background-color: #fff;
    padding: 10px 20px;
    z-index: 10;
    display: none;
}
.branch-map-data-title {
    border-bottom: 1px solid #ebebeb;
}
.branch-map-data-title p {
    font-size: 18px;
    color: #000;
    line-height: 28px;
}
.branch-map-data-info {
    max-height: 236px;
    overflow-y: auto;
}
.data-branch {
    border-bottom: 1px dashed #eee;
    padding: 6px 0;
    box-sizing: border-box;
}
.data-branch:last-child {
    border: none;
}
.data-branch .data-name {
    font-size: 16px;
    color: #c90019;
    line-height: normal;
    margin-bottom: 5px;
}
.data-branch p {
    font-size: 14px;
    color: #999;
    line-height: 20px;
}

/* 移动端园区列表样式 - 初始隐藏 */
.mobile-park-list {
    display: none;
    width: 100%;
    padding: 15px;
    margin: 20px 0;
}
.mobile-park-item {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
}
.mobile-park-item h3 {
    color: #c90019;
    font-size: 18px;
    margin-bottom: 10px;
}
.mobile-park-item .park-desc {
    margin:10px 0;
}
.mobile-park-item .park-desc a{
    color: #333;
    line-height: 1.8;
    font-weight: bold;
}
.mobile-park-item .park-desc p{
    color: #666;
    font-size: 14px;
}
.mobile-park-item.empty {
    color: #999;
    text-align: center;
    padding: 20px;
}

@keyframes dot {
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: .1;
    }
}

/* 右侧边栏：固定宽度，不缩放 */
.right-side {
    width: 345px;
    flex-shrink: 0;
}
.right-side .ad-box {
    margin-bottom: 10px;
}
.right-side .ad-box img {
    width: 100%;
    height:230px;
    display: block;
}
.right-side .hot-news-box {
    margin: 20px 0;
    border: none;
}
.right-side .hot-news-title {
    background: transparent;
    padding: 15px 0 10px;
    color: #c90019;
    border-bottom: none;
    position: relative;
    margin-bottom: 15px;
    font-size:18px;
}
.right-side .hot-news-title::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, #c90019 80px, #dddddd 60px);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.right-side .hot-news-list {
    padding: 15px;
    background: #fafafa;
    margin:0 0 15px;
	width:345px;
    overflow: hidden;
}
.right-side .hot-news-list li {
    padding: 3px 0;
    border-bottom: 1px dotted #eeeeee;
    line-height:2;
	display: flex;
}
.right-side .hot-news-list li:last-child {
    border-bottom: none;
}
.right-side .hot-news-list li a {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mask-news-box {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 10px;
    overflow: hidden;
}
.mask-news-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.mask-news-box:hover img {
    transform: scale(1.05);
}
.mask-news-box .mask-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 0 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #ffffff;
    text-align: center;
}
.mask-news-box .mask-title {
    margin-bottom: 3px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5); 
    padding: 5px 0; 
    border-radius: 0; 
    display: block;
    width: 100%;
    overflow: hidden;
	white-space: nowrap;
    position: relative;
    left: 0;
    bottom: 0;
}
.mask-news-box .mask-title a{
    color:#fff;
}

/* 分页样式：固定布局 */
.pglist { padding: 30px 0 20px; width: 100%; text-align: center; clear: both;}
.pglist a { color: #999;padding: 0 12px;margin: 0 3px; display: inline-block; vertical-align: middle;line-height: 28px; background: #fff; border: 1px solid #c7c7c7;border-radius:4px;}
.pglist li {display: inline-block;}
.pglist a:hover, .pglist .active a {display: inline-block; color: #fff; background: #de371d;border-color: #de371d; box-shadow: 0 0 14px rgba(0, 0, 0, .2);}


.company_shtt { line-height: 25px; overflow: hidden;}
.company_shnr { line-height: 25px; color: #5a5a5a; margin-top: 10px;overflow: hidden;}
.company_shnrbg { background: url(https://www.txss.com/skin/images/shnr_bg_01.jpg) no-repeat center top; height: 100%; background-size:cover;}
.company_shnrcom { width: 1300px; margin: auto; overflow: hidden;}
.company_shnrlogo { padding-top: 30px;}
.company_shnrfh { padding-top: 50px; color: #fffbd7; font-size: 18px;}
.company_shnrfh a { color: #fffbd7;}
.company_shnrfh a:hover { color: #fff;}
.company_shnrsiz { text-align: center; padding-top: 1px;font-size:62px;letter-spacing:6px;font-weight:bold;color:#fff;line-height:60px;background-image:-webkit-linear-gradient(bottom,white,#fd8403,yellow); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.company_stroke { -webkit-text-stroke: 0.5px #f0a474;}
.company_shnrzs { text-align: center; padding-top: 30px; }
.company_shnrkk { background: url(https://www.txss.com/skin/images/ss_shnrk_15.png) no-repeat center top; height: 589px; margin-top: 50px; position: relative; }
.company_shnrjs { width: 1120px; margin: auto; font-size: 22px; line-height: 45px; padding-top: 60px;height: 100%; }
.company_shzcbg {background: url(https://www.txss.com/skin/images/shzc_bg_02.png) no-repeat center top; height: 100%; background-size:cover;}
.company_shzctt { text-align: center; padding-top: 45px;}
.company_shzctt2 { text-align: center; padding-top: 20px;}
.company_shzckk { background: url(https://www.txss.com/skin/images/ss_shnrk_15.png) no-repeat center top; height: 589px; margin-top:40px;}
.company_shjrbg {background: url(https://www.txss.com/skin/images/jrsh_bg_04.jpg) no-repeat center top; height: 100%;background-size:cover;}
.company_shzslx { padding:160px 0 0 110px;font-size: 22px; line-height:59px;}
.company_shlxmap { padding: 140px 0 0 80px;}
.company_shdtbg { background: url(https://www.txss.com/skin/images/shdt_bg_08.jpg) no-repeat center top; height: 100%;background-size:cover; }
.company_shnew { width: 1080px;  margin: 0px 0 0 0px; padding-top: 1px;}
.company_shnew li { height: 51px; line-height: 51px; font-size: 22px; overflow: hidden;}
.company_shnew li span { color: #5b5d5d; float: right;padding-left:10px;}
.company_shnewmore { width: 1080px;  margin: 0px 0 5px 0px;}
.company_shnewmore p{ float: right;font-size: 20px;}
.company_shnewmore a{ color:#c90019;}
.company_shrwbg {background: url(https://www.txss.com/skin/images/shrw_bg_02.png) no-repeat center top; height: 100%;background-size:cover;}
.company_shrwlist { margin: 40px 17px 0;}
.company_shrwlist li { float: left; width: 390px; height: 350px; border: 5px solid #c9975c; background: #fff; margin: 0px 34px 0 0px; box-sizing:border-box;}
.company_shrwcom { width: 345px; margin: auto;}
.company_shrwpic { margin-top: 20px;}
.company_shrwpic img { width: 345px; height: 251px;}
.company_shrwmc { width: 345px; height: 22px; overflow: hidden; font-size: 20px; color: #be461e; text-align: center; margin-top: 25px;}
.company_shrwmc a {color: #be461e;}
.company_shrwmc a:hover {color: #000;}
.company_shrwjt { text-align: center; padding-top: 30px;}
.company_shrwjt img { padding-left: 40px; cursor:pointer;}
.company_shqybg {background: url(https://www.txss.com/skin/images/shqy_bg_03.jpg) no-repeat center top; height: 100%;background-size:cover;}
.company_shqynew li {background: url(https://www.txss.com/skin/images/shqy_jt_03.png) no-repeat; background-position: 1px; text-indent: 20px; width: 490px; height: 42px; line-height: 42px; overflow: hidden; float: left; font-size: 20px; margin: 0 40px 0 0px;}
.company_shqynew { padding-top: 0px;  width: 1080px;}
.company_lxbg {background: url(https://www.txss.com/skin/images/lxbg_04.jpg) no-repeat center top; height: 100%; background-size:cover;}
.company_lxnr { font-size: 20px; line-height: 44px; padding: 90px 0 0 110px;}
.company_lxwx { padding-left: 70px;}
.company_lxwx li { float: left; line-height: 35px; font-size: 19px; text-align: center; margin: 140px 0 0 30px;}
.company_lxwx li img { border: 1px solid #ececec;}
.company_lybg {background: url(https://www.txss.com/skin/images/message_bg_12.jpg) no-repeat center top; height: 100%;background-size:cover;}
.company_lynr { padding: 60px 0 0 330px; font-size: 20px;}
.company_lybk { border: 1px solid #767676; border-radius: 5px; height: 37px; width: 300px; background: #fff; text-indent: 9px; float: left;}
.company_lysiz { padding: 3px 10px 0px 0; color: #4c4c4d; width: 130px;}
.company_lynr li { overflow: hidden; margin-top:18px;}
.company_lykk { width: 520px;border: 1px solid #767676; background: #fff; height: 120px; border-radius: 5px;}
.company_lytj { background: #c30000; color: #fff; width: 86px; height: 44px; border: none; font-size: 18px; border-radius: 7px;}
.company_lycz { background: #adadad; width: 86px; height: 44px; border: none; font-size: 18px; border-radius: 7px;color: #fff;}

.company_nav { width: 1300px; margin: auto; overflow: hidden;background: url(https://www.txss.com/skin/images/shnr_navbg_13.png) no-repeat center top; height: 65px; position:fixed; bottom:0; left:0; right:0; z-index:100;}
.company_nav li { float: left; font-size: 20px; line-height: 65px; width: 162px; text-align: center;}
.company_nav li a { color: #bc3a07;}
.company_nav li.active a,
.company_nav li a:hover { color: #bc3a07; font-weight: bold;}

.scroll_main {
	width: 1120px;
	display: block;
	margin: 0px auto;
}
.scroll_main ::-webkit-scrollbar{ 
	background-color:#e4e4e4; 
	width:5px; 
	height:5px;
	border-radius:5px;
}
.scroll_main ::-webkit-scrollbar-thumb{ 
	background-color:#525252;
	border-radius:5px;
}

.scroll_wrap {
	width: 100%;
	height: 455px;
	overflow:auto;
	scrollbar-width:5px;scrollbar-color:#e4e4e4 #525252;scrollbar-width: thin;
}
.scroll_wrap .scroll_cont p {
	padding:0 10px;
}
.scroll_wrap .scroll_cont p img{
	max-width:100%!important;height:auto!important;
}
.scroll_wrap .scroll_bar {
	position: absolute;
	top:0;
	right:0;
	width: 5px;
	height: 100%;
	background-color: #e4e4e4;
}
.scroll_wrap .scroll_slider {
	position: absolute;
	top: 0;
	left: 0px;
	width: 5px;
	height: 48px;
	background-color: #525252;
	border-radius:5px;
	opacity: .5
}
.scroll_wrap .scroll_slider:hover{
	opacity: 1
}
.scroll_wrap br{
     display:none;
 }

.pageSwiper {
	height:100%;
	overflow:hidden;
}
.pageSwiper .swiper-slide {
	overflow:hidden;
}
.swiper1{ height:750px;}



/* 底部样式：固定宽度容器，不缩放 */
.footer {
    background: #c90019;
    color: #f4ccd1;
    line-height: 50px;
    margin-top: 20px;
    width: 100%;
    min-width: 1360px;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1360px;
    flex-shrink: 0;
}
.footer a {
    color: #f4ccd1;
}
.footer a:hover {
    text-decoration: none;
}
.footer .copyright {
    text-align: left;
}
.footer .footer-links {
    text-align: right;
}

/* 微信分享二维码弹窗样式 */
.wechat-qrcode-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}
.qrcode-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}
.qrcode-content img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}
.qrcode-content .close-btn {
    margin-top: 15px;
    padding: 6px 20px;
    background: #c90019;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* 仅保留768px断点（移动端适配） */
@media (max-width: 768px) {
    /* 重置body最小宽度，允许移动端缩放 */
    body {
        min-width: auto;
    }
    /* 顶部导航适配 */
    .top-nav {
        min-width: auto;
    }
    .top-nav .inner {
        width: 100%;
        padding: 0 5px !important;
    }
    .top-nav .nav-list {
        display: none;
    }
    .top-nav .search-bar {
        display: none !important;
    }
    .top-nav .menu-icon {
        display: flex;
    }
    /* 容器适配 */
    .container {
        width: 100%;
        padding: 0 5px;
    }
    .main-wrap {
        width: 100%;
        flex-direction: column;
    }
    .left-side, .right-side, .combined-area, .news-area, .news-area2 {
        width: 100%;
        margin-right: 0; /* 移动端垂直布局，取消横向间距 */
    }
	.singletit{
        margin: 15px 10px;
	}
    .singlecon{
        padding: 0 10px;
		font-size:16px;
        flex-direction: column;
        border:1px solid #ebebeb;
        border-radius: 4px;
        margin:15px 10px;
    }
    /* 核心：电脑端地图容器 手机端强制100%宽度，不溢出 */
    .map-content, .map-module, .branch-map {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        overflow: hidden !important;
    }

    /* 核心：移动端显示"分类"标题 + 显示下拉按钮 */
	.left-side {
        position: static !important; /* 关键：取消 sticky/fixed */
        top: auto !important;         /* 重置偏移 */
        align-self: auto !important;  /* 重置flex对齐 */
        width: 100%;
        margin-right: 0;
    }
    .left-side .menu-title {
        display: block; /* 移动端显示标题文字 */
    }
    .left-side .menu-toggle {
        display: block; /* 显示下拉按钮 */
    }
    .left-side .menu-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .left-side .menu-list.show {
        max-height: 500px; /* 展开菜单 */
    }
    .left-side .menu-list li {
        width: 100%;
        height: 60px; /* 保持移动端高度60 */
        line-height: 60px; /* 保持居中 */
        border-bottom: 1px dotted #eee;
        border-right: none;
        text-align: center; /* 保持居中 */
    }
    .left-side .side-menu {
        border: 1px solid #dddddd;
        background: #ffffff;
        margin:5px 10px 0;
    }
    .left-side .menu-header {
        background: #fcfcfc;
        padding: 6px 8px;
        font-weight: bold;
        color: #c90019;
        border-bottom: 1px solid #eee;
        display: flex; 
        text-align: center;
        justify-content: space-between;
        align-items: center;
    }
    /* 新闻项垂直排列 */
    .news-item {
        flex-direction: column;
        border:1px solid #eee;
        border-radius: 4px;
        margin:15px 10px;
        padding:0px;
    }
    .news-item .news-pic {
        width: 100%;
        height: auto;
        padding: 10px;
        margin:0;
    }
    .news-item .news-text {
        padding: 10px;
    }
    .news-item1 {
        border:1px solid #eee;
        border-radius: 4px;
        margin:15px 10px;
        padding:10px;
    }
    .news-item1 .news-title {
        font-size: 14px;
    }
    .news-item1 .news-time {
        font-size: 12px;
    }
    .news-item2 {
        flex-direction: column;
        border:1px solid #eee;
        border-radius: 4px;
        margin:15px 10px;
        padding:10px;
    }
    .news-item2 .news-pic {
        width: 100%;
        height: auto;
        padding: 0;
        margin:0 0 10px 0;
    }
    .news-item2 .news-date {
        display: none !important;
    }
    .news-item2 .divider {
        display: none;
    }
    .news-item2 .news-text {
        padding: 0 10px;
    }
	
    /* 移动端隐藏地图，显示列表 */
    .branch-map {
        display: none;
    }
    .mobile-park-list {
        display: block;
    }
    /* 内容区域适配 */
    .content-area {
        width: 100%;
        margin-right: 0;
    }
    .news-detail-content-wrap {
        flex-direction: column;
        gap: 0;
    }
    .news-detail-toolbar, .banner-ad, .news-detail-ad, .news-detail-bottom-ad {
        display: none !important;
    }
    /* 移动端产品信息区域适配 */
    .product-info-section {
        flex-direction: column;
    }
    .product-img-area {
        width: 100%;
    }
    .product-big-img {
        width: 100%;
        height: auto;
    }
    .news-detail-content {
        width: 100%;
        padding: 0 10px;
        font-size: 18px;
    }
    .news-detail-title {
        font-size: 22px;
        padding: 18px 0 5px; 
    }
    .news-pre {
        display: none !important;
    }
    /* 筛选区域移动端适配 */
    .filter-area {
        padding: 15px;
		margin:10px;
    }
    .filter-row {
        margin-bottom: 10px;
    }
    .filter-options {
        gap: 10px;
        width: calc(100% - 75px);
    }
    .filter-option {
        padding: 4px 12px;
        font-size: 14px;
    }
    
    /* 图片列表移动端适配 - 每行1个 */
	.gallery-area {
		margin:10px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-img {
        height: 450px;
    }
    /* 右侧边栏适配 */
    .right-side {
        display: none !important;
    }
    /* .right-side .ad-box, .right-side .hot-news-box, .right-side .mask-news-box {
        width: 100%;
        padding: 0 10px;
    } */
    .mask-news-box img {
        width: 100%;
        padding: 0;
    }
    /* 分页移动端适配 */
    .pglist a{
        padding: 6px 12px;
        font-size: 13px;
        margin: 3px;
    }
	
    .ztcontent {
        display: block !important;
        width: 100% !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    .ztcontent * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .ztcontent h1{ font-size: 28px;text-align:center;line-height:30px;color:#1f1f1f;font-weight:700;margin:0.5em 0 0;}
    .ztlist {padding:0;margin:0;}
    .ztlist article {margin-top:10px}
    .ztlist article h2 { font-size: 20px;line-height:35px;font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;}
    .ztlist article h2 a {color:#1f1f1f}
    .ztform{line-height:30px;}
    .zttext{ border: 1px solid #767676; border-radius: 5px; height: 26px; width: 50%; background: #fff; text-indent: 9px; }
    .zttextarea { width: 99%;border: 1px solid #767676; background: #fff; height: 100px; border-radius: 5px;}
    .ztsubmit { background: #666; color: #fff; width: 80px; height: 30px; border: none; font-size: 18px; border-radius: 7px;}
    
    .scroll_main {width: 100%!important;display: block;	margin: 0px auto;}
    .scroll_main ::-webkit-scrollbar{ background-color:#e4e4e4; width:5px; height:5px;border-radius:5px;}
    .scroll_main ::-webkit-scrollbar-thumb{ background-color:#525252;border-radius:5px;}
    
    .scroll_wrap {width: 100%!important;height: 300px!important;border: 1px solid #d8d8d8;overflow:auto;scrollbar-width:5px;scrollbar-color:#e4e4e4 #525252;scrollbar-width: thin;}
    .scroll_wrap .scroll_cont {padding:10px;}
    .scroll_wrap .scroll_cont p {}
    .scroll_wrap .scroll_cont p img{max-width:100%!important;height:auto!important;
        margin: 10px auto !important;
	}
    .scroll_wrap .scroll_bar {position: absolute;top:0;	right:0;width: 5px;	height: 100%;background-color: #e4e4e4;}
    .scroll_wrap .scroll_slider {position: absolute;top: 0;left: 0px;width: 6px;height: 48px;background-color: #525252;border-radius:5px;opacity: .5}
    .scroll_wrap .scroll_slider:hover{opacity: 1}
	
	
    /* 适配手机端表单/按钮等元素 */
    .ztcontent input,
    .ztcontent button,
    .ztcontent textarea {
        width: 100% !important;
        margin: 5px 0 !important;
        padding: 8px !important;
    }
	
    /* 底部适配 */
    .footer {
        min-width: auto;
    }
    .footer .container {
        width: 100%;
        flex-direction: column;
        text-align: center;
    }
    .footer .copyright {
        text-align: center;
        font-size: 14px;
        line-height: 1.5;
        padding: 10px 0;
    }
    .footer .footer-links {
        display: none !important;
    }
}