/* 业务内容区域 */
.business-content {
    padding-top:30px;
    background: #fff;
}

/* 业务概述部分 */
.business-overview {
    background: #F8F8F8;
    padding: 30px 40px;
    border-radius: 8px;
}

.section-title {
    font-size: 32px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}

.title-line {
    width: 40px;
    height: 4px;
    background: #23C16E;
    margin: 0 auto 30px;
    border-radius: 2px;
}

.overview-text {
    max-width: 1200px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.overview-text p {
    margin-bottom: 15px;
    text-align: left;
}

.overview-text p:last-child {
    margin-bottom: 0;
}

.overview-image {
    max-width: 1200px;
    margin: 60px 0 30px 0;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 业务卡片部分 */
.business-cards {
    padding: 20px 0;
}

.business-card {
    background: #F9F9F9;
    border-radius: 8px;
    padding: 24px 10px 14px 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 30px;
    min-height: 115px;
}

.business-card-1{
    padding: 30px 10px 14px 30px;
}
.business-card-2{
    padding: 30px 10px 14px 30px;
}
.business-card-2 .card-icon{
    margin-top: 3px;
}
.business-card-3 .card-icon{
     margin-top: 8px;
}
.business-card-4 .card-icon{
    margin-top: 8px;
}


.business-card.active {
    background: #23C16E;
}

.card-icon {
    width: 60px;
    height: 60px;
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}
.business-card-1 .card-icon{
    width: 43px;
}
.card-icon img {
    width: 56px;
    object-fit: contain;
    position: absolute;
    left: 0;
    top: 0;
    transition: opacity 0.3s;
}

.icon-active {
    opacity: 0;
}

.icon-inactive {
    opacity: 1;
}

.business-card.active .icon-active {
    opacity: 1;
}

.business-card.active .icon-inactive {
    opacity: 0;
}

.card-content {
    text-align: left;
}

.card-content h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 500;
}

.card-content p {
    font-size: 13px;
    color: #333333;
    margin: 0;
    line-height: 18px;
}

.business-card.active .card-content h3,
.business-card.active .card-content p {
    color: #fff;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .business-content {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .business-overview {
        margin-bottom: 40px;
        margin-top: 15px;
        padding: 20px 20px;
    }
    
    .business-card {
        padding: 25px;
        min-height: 90px;
        margin-bottom: 20px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .card-content h3 {
        font-size: 18px;
    }
    .col-md-3{
        width: 50%;
    }
    .business-card .card-icon{
         margin-top:4px;
    }
    .business-card img{
        width: 45px;
    }
    .business-card-1 img{
        margin-left:8px;
    }
    .overview-image {
        margin-top: 25px;
    }
}

@media (max-width: 767.98px) {
    .business-content {
        padding: 40px 0;
    }

    .section-title {
        padding-top: 16px;
        font-size: 24px;
    }
    .card-content{
        margin-left: 10px;
    }
    .overview-text {
        padding: 0 12px;
    }

    .business-card {
        padding: 20px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .card-content h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .card-content p {
        font-size: 12px;
    }

    .overview-image {
        margin-top: 20px;
        padding: 0 20px;
    }

    .business-overview {
        margin-bottom: 30px;
        margin-top: 10px;
        padding: 16px 8px;
    }
}

/* 产品分类与展示 */
.product-section {
    margin-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

.product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-grid .col-md-6{
    width: 100%;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.product-card:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product-card:hover .product-link{
    color: #23C16E;
}
.product-image {
    position: relative;
    overflow: hidden;
    max-width: 400px;
    padding: 10px;
    margin: 0 auto;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.product-info {
    padding: 13px 16px;
    text-align: left;
    overflow: hidden;
}
.product-info a{
    text-decoration: none;
}
.product-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    height: 26px;
    white-space: nowrap; 
    text-overflow: ellipsis;

}

.product-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: left;
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-link {
    display: inline-block;
    color: #666;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    text-align: left;
}

.product-link:hover {
    color: #23C16E;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .product-section {
        margin-top: 60px;
        padding-bottom: 60px;
    }


    .product-title {
        font-size: 18px;
        margin-bottom: 0px;
    }
    .product-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .product-section {
        margin-top: 40px;
        padding-bottom: 40px;
    }
    .product-info{
        padding:16px 0 0 0;
    }
    .product-grid {
        margin-top: 50px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 8px;
    }
    .product-card {
        flex-direction: row;
        align-items: center;
        padding: 15px;
    }

    .product-image {
        width: auto;
        padding: 0;
    }
    

    .product-title {
        font-size: 16px;
    }

    .product-desc {
        font-size: 12px;
        margin-bottom: 10px;
        height: 55px;
        overflow: hidden;
    }

    .product-link {
        font-size: 12px;
    }
}

/* 应用案例 */
.case-section {
    margin-top: 80px;
    padding-bottom: 80px;
}

.case-content {
    margin-top: 50px;
}

.case-image {
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
}

.case-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.case-info {
    padding: 0 10px 0 30px;
}

.case-title {
    font-size: 24px;
    color: #23C16E;
    margin-bottom: 20px;
    font-weight: 500;
    padding-top: 20px;
}

.case-item {
    margin-bottom: 20px;
}

.case-item h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.case-item h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #23C16E;
    border-radius: 2px;
}

.case-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

/* 响应式样式 */
@media (max-width: 991.98px) {
    .case-section {
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .case-info {
        padding: 30px 0 0;
    }

    .case-title {
        font-size: 22px;
        margin-bottom: 25px;
        
    }
}

@media (max-width: 767.98px) {
    .case-section {
        margin-top: 40px;
        padding-bottom: 0px;
    }

    .case-content {
        margin-top: 30px;
    }

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

    .case-item {
        margin-bottom: 20px;
    }

    .case-item h4 {
        font-size: 16px;
    }

    .case-item p {
        font-size: 13px;
    }
}

/* 产品详情页 */
.product-detail {
    padding: 60px 0;
    background: #fff;
}

.product-detail-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-intro {
    max-width: 1200px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
    padding: 0 15px;
}

.product-intro p {
    text-align: left;
    margin-bottom: 0;
}

.product-detail-content {
    margin-top: 60px;
}

.product-detail-image {
    width: 100%;
    border-radius: 8px !important;
    padding: 0px !important;
    margin: 0 auto;
    margin-bottom: 24px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.product-specs {
    border-radius: 8px;
    height: 100%;
}

.specs-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0px;
    font-weight: 500;
    line-height: 50px;
    position: relative;
    padding-left: 32px;
    border-radius: 8px 8px 0 0 ;
    background: #23C16E;
}

.specs-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #ffffff;
    border-radius: 2px;
}

.specs-table table{
    width: 100% !important;
    border-left:1px solid #e9e9e9;
    border-top:1px solid #e9e9e9;
    background: #F9F9F9;
    margin-bottom: 24px;
    border-radius: 0 0 8px 8px;
}
.specs-table table img{
    max-width: 100% !important;
    border-radius: 8px !important;
}
.specs-table table td{
    border-right:1px solid #e9e9e9;
    padding:12px 12px 12px 16px;
    font-size: 14px !important;
    word-break: break-all;
    border-bottom:1px solid #e9e9e9;
    line-height:24px;
    color:#666666 !important;
}
.specs-table table tr td:last-child{
    color:#000000 !important;
}
.specs-table .td_class tr td{
    color:#000000 !important;
}
.specs-table .td_class tr td:first-child{
    color:#666666 !important;
}
.specs-table table td p,.specs-table table td div,.specs-table table td *{
    margin:0px !important;
    padding: 0px !important;
}
.specs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #E8E8E8;
}

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

.specs-label {
    color: #666;
    font-size: 14px;
}

.specs-value {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .product-detail {
        padding: 40px 0;
    }

    .product-detail-title {
        font-size: 28px;
    }

    .product-intro {
        margin: 30px auto;
        padding: 0 20px;
    }

    .product-detail-content {
        margin-top: 40px;
    }

}

@media (max-width: 767.98px) {
    .product-detail {
        padding: 30px 0;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-intro {
        margin: 20px auto;
        font-size: 13px;
    }

    .product-detail-content {
        margin-top: 30px;
    }

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

    .specs-item {
        padding-bottom: 12px;
        margin-bottom: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .specs-label {
        margin-bottom: 5px;
        font-size: 13px;
    }

    .specs-value {
        font-size: 13px;
    }
}

/* 自定义栅格类 */
.col-md-5-4 {
    flex: 0 0 40%;
    max-width: 40%;
}

.col-md-6-6 {
    flex: 0 0 60%;
    max-width: 60%;
}

@media (max-width: 767.98px) {
    .col-md-5-4,
    .col-md-6-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.product-detail-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #F9F9F9;
    padding: 0px;
    margin: 0 auto;
    margin-bottom: 24px;
}

/* 国际物流服务 */
.logistics-services {
    padding-bottom: 80px;
}

.service-content {
    max-width: 1200px;
    margin: 50px auto 0;
}

.service-item {
    margin-bottom: 40px;
    background: #F8F8F8;
    padding: 30px;
    border-radius: 8px;
}

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

.service-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.service-subitem {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-subitem:last-child {
    margin-bottom: 0;
}

.service-subitem h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
}

.service-subitem h4::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #23C16E;
    border-radius: 2px;
}

.service-subitem p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .logistics-services {
        margin-top: 60px;
        padding-bottom: 60px;
    }

    .service-content {
        margin-top: 40px;
    }

    .service-item {
        margin-bottom: 30px;
        padding: 25px;
    }

    .service-item h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service-subitem {
        margin-bottom: 20px;
    }

    .service-subitem h4 {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .logistics-services {
        margin-top: 24px;
        padding-bottom: 0px;
    }

    .service-content {
        margin-top: 30px;
    }

    .service-item {
        margin-bottom: 25px;
        padding: 20px;
    }

    .service-item h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .service-item p {
        font-size: 13px;
    }

    .service-subitem {
        margin-bottom: 15px;
        padding-left: 15px;
    }

    .service-subitem h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .service-subitem h4::before {
        left: -15px;
        height: 14px;
    }

    .service-subitem p {
        font-size: 13px;
    }
}

/* 能源电站项目 */
.energy-project {
    margin-top: 40px;
    padding: 40px;
    background: #F8F8F8;
    border-radius: 8px;
    margin-bottom: 40px;
}

.project-title {
    margin-bottom: 30px;
}

.project-title h3 {
    font-size: 24px;
    color: #23C16E;
    margin-bottom: 15px;
    font-weight: 500;
}

.green-line {
    width: 40px;
    height: 4px;
    background: #23C16E;
    border-radius: 2px;
}

.project-content {
    margin-top: 0;
}

.project-info {
    position: relative;
    z-index: 2;
    background: #F8F8F8;
}

.p_l_20{
    padding-left: 20px;
}
.info-item {
    margin-bottom: 25px;
}

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

.info-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.info-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.project-image {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 能源新闻 */
.energy-news {
    margin-top: 60px;
}

.news-list {
    margin-top: 80px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 30px;
}

.news-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-info {
    flex: 1;
    position: relative;
}

.news-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
    padding-right: 100px;
}

.news-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    height: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.news-date {
    font-size: 14px;
    color: #999;
    position: absolute;
    right: 0;
    top: 0;
}

.news-link {
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-link:hover {
    color: #1a9f58;
    text-decoration: none;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .energy-project {
        margin-top: 40px;
        padding: 30px;
    }

    .project-title h3 {
        font-size: 22px;
    }

    .project-info {
        padding-right: 0;
    }

    .news-list {
        margin-top: 30px;
    }

    .news-item {
        padding: 25px;
    }

    .news-image {
        width: 180px;
        height: 135px;
        margin-right: 25px;
    }

    .news-info h4 {
        font-size: 16px;
        padding-right: 90px;
    }

    .project-image {
        height: 300px;
    }
    
}

@media (max-width: 767.98px) {
    .energy-project {
        margin-top: 30px;
        padding: 20px;
    }
    .project-image img {
        margin-top: 20px;
    }
    .project-title h3 {
        font-size: 20px;
    }
    .energy-project{
        margin-bottom: 8px;
    }
    .project-content {
        margin-top: 0;
    }

    .project-image {
        height: 250px;
        margin-bottom: 20px;
    }

    .project-info {
        padding: 0;
    }

    .project-title {
        margin-bottom: 20px;
    }

    .info-item {
        margin-bottom: 15px;
    }

    .info-item h4 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 13px;
    }

    .news-list {
        margin-top: 25px;
    }

    .news-item {
        flex-direction: row;
        padding: 12px;
        align-items: flex-start;
    }

    .news-image {
        width: 118px;
        height: 90px;
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .overview-image{
        height: 140px;
        border-radius: 8px;
        overflow: hidden;
        margin:20px 12px 12px 12px;
    }
    .overview-image img{
        width:700px;
        margin-left:-275px;
        border-radius: 8px;
    }
    .news-item{
        margin-bottom: 20px;
    }

    .news-info {
        width: calc(100% - 130px);
        min-width: 0;
    }

    .news-info h4 {
        font-size: 14px;
        padding-right: 0;
        margin-bottom: 5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-info p {
        font-size: 12px;
        margin-bottom: 5px;
        max-height: 36px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        word-break: break-all;
        line-height: 1.5;
    }

    .news-date {
        display: none;
    }

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

    
    
    .col-md-3{
        width: 100%;
    }
    .business-cards{
        padding:0;
    }
    .business-card{
        padding: 20px 12px 12px 16px;
        min-height: 83px;
        margin-bottom: 12px;
    }
}

/* 农产品加工流程 */

.process-title {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: normal;
    background: #F8F8F8;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 500;
}

.process-steps {
    margin-top: 40px;
    padding: 0;
    background: none;
}

.step-item {
    text-align: center;
    margin-bottom: 30px;
}

.step-image {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.step-line {
    width: 40px;
    height: 4px;
    background: #23C16E;
    margin: 0 auto 15px;
    border-radius: 2px;
}

.step-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.step-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 响应式样式 */
@media (max-width: 991.98px) {
    .agricultural-process {
        margin-top: 40px;
    }

    .process-title {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 16px 24px;
    }

    .step-image {
        height: 200px;
        margin-bottom: 15px;
    }

    .step-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .agricultural-process {
        margin-top: 30px;
    }

    .process-title {
        font-size: 15px;
        margin-bottom: 25px;
        padding: 12px 16px;
    }

    .process-steps {
        margin-top: 20px;
    }

    .step-image {
        height: 180px;
        margin-bottom: 12px;
    }

    .step-line {
        margin-bottom: 10px;
    }

    .step-item {
        margin-bottom: 25px;
    }

    .step-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .step-item p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 加工技术 */
.processing-technology {
    margin-top: 60px;
}

.technology-content {
    margin-top: 40px;
}

.technology-image {
    width: 100%;
    height: 310px;
    border-radius: 8px;
    overflow: hidden;
}

.technology-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.technology-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tech-item {
    margin-bottom: 30px;
}

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

.tech-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.tech-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991.98px) {
    .processing-technology {
        margin-top: 40px;
    }

    .technology-content {
        margin-top: 30px;
    }

    .technology-image {
        height: 200px;
        margin-bottom: 30px;
    }

    .tech-item {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .processing-technology {
        margin-top: 30px;
    }

    .technology-content {
        margin-top: 20px;
    }

    .technology-image {
        margin-bottom: 20px;
    }

    .tech-item {
        margin-bottom: 20px;
    }

    .tech-item h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .tech-item p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 产品展示 */
.product-display {
    margin-top: 60px;
}

.display-content {
    margin-top: 40px;
}

.display-text {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.display-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.display-image {
    width: 100%;
    height: 290px;
    border-radius: 8px;
    overflow: hidden;
}

.display-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 991.98px) {
    .product-display {
        margin-top: 40px;
    }

    .display-content {
        margin-top: 30px;
    }

    .display-text {
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .display-text p {
        font-size: 15px;
    }

    .display-image {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .product-display {
        margin-top: 30px;
    }

    .display-content {
        margin-top: 20px;
    }

    .display-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .display-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .product-display .display-content .row {
        flex-direction: column-reverse;
    }

    .product-display .display-text {
        margin-top: 20px;
    }

    .product-display .display-image {
        margin-bottom: 0;
    }

    .product-display .display-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }
}

/* 加工设备与市场覆盖 */
.equipment-market {
    margin-top: 60px;
}

.equipment-market-content {
    margin-top: 40px;
}

.equipment-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.market-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.market-item {
    margin-bottom: 30px;
}

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

.market-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 15px;
}

.market-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991.98px) {
    .equipment-market {
        margin-top: 40px;
    }

    .equipment-market-content {
        margin-top: 30px;
    }

    .equipment-image {
        height: 300px;
        margin-bottom: 30px;
    }

    .market-item {
        margin-bottom: 25px;
    }
}


/* 通用图片容器样式 */
.news-image,
.step-image,
.technology-image,
.display-image,
.equipment-image,
.product-detail-image,
.case-image,
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img,
.step-image img,
.technology-image img,
.display-image img,
.equipment-image img,
.product-detail-image img,
.case-image img,
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 确保所有文字容器左对齐 */
.news-info,
.step-item p,
.tech-item,
.display-text,
.market-info,
.product-intro,
.case-info,
.product-info {
    text-align: left;
}

.display-text {
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 40px;
}

.display-text p {
    text-align: left;
} 

@media (max-width: 767.98px) {
    .equipment-market {
        margin-top: 30px;
    }

    .equipment-market-content {
        margin-top: 20px;
    }

    .equipment-image {
        height: 200px;
        margin-bottom: 20px;
    }

    .market-item {
        margin-bottom: 20px;
    }

    .market-item h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .market-item p {
        font-size: 13px;
        line-height: 1.6;
    }
    .business-card img{
        margin-top:-3px;
    }
  
    .business-card-1 img{
        margin-left:8px;
    }
    img.icon-active{
        width: 40px !important;
    }
    img.icon-inactive{
        width: 40px !important;
    }
    .product-detail-image{
        padding: 0;
    }
}

