
/*  =========  立式注塑机特点样式  ========= */
.card-content {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    margin-bottom: 30px;
}

.machine-image {
    width: 100%;
    max-width: 500px; /* 限制图片最大宽度 */
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    object-fit: cover;
}

/* 主要优势样式 */
.advantages-list {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.advantages-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* 局限性样式 */
.limitations-list {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.limitations-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

.limitations-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 18px;
}

/* 标题样式 */
h3 {
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #007bff;
    font-size: 20px;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .card-content {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .machine-image {
        max-width: 100%;
        height: auto;
    }
    
    .advantages-list li,
    .limitations-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}

/* 立式注塑工作流程样式 */
.process-steps {
    list-style-type: decimal;
    padding-left: 20px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.8;
}

.process-steps li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.process-steps li:last-child {
    border-bottom: none;
}

.process-steps li strong {
    color: #007bff;
    font-weight: 600;
    margin-right: 8px;
}

/* 关键技术特点样式 */
.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #007bff;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 图标样式 */
.feature i {
    color: #007bff;
    font-size: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        padding-left: 15px;
    }
    
    .feature {
        padding: 15px;
    }
}

/* 应用领域样式 */
.applications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.application {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #e74c3c;
    position: relative;
    overflow: hidden;
}

.application:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.application h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.application p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.application img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.application:hover img {
    transform: scale(1.05);
}

.industry-tag {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background-color: #c0392b;
    transform: scale(1.05);
}

/* 图标样式 */
.application i {
    color: #e74c3c;
    font-size: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .applications {
        grid-template-columns: 1fr;
    }
    
    .application {
        padding: 15px;
    }
    
    .application img {
        height: 150px;
    }
}



/* 固定跳转内容样式 */
/* .ul-service-details-sidebar {
    position: sticky;
    top: 110px;
    width: 100%;
    max-width: 300px;
    background-color: #F2F7FD;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 100;
} */

/* 固定跳转内容样式 */
.ul-service-details-sidebar {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 300px;
    background-color: white;
    border-radius: 8px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* padding: 20px; */
    /* transition: all 0.3s ease; */
    z-index: 100;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .ul-service-details-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        max-width: none;
        box-shadow: none;
        padding: 15px;
        max-height: none;
    }
}

/* 滚动效果 */
.ul-service-details-sidebar:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* 侧边栏小部件样式 */
.ul-service-details-sidebar-widget {
    margin-bottom: 20px;
}

.ul-service-details-sidebar-widget-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    font-size: 15px;
}

.service-list a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.service-list a i {
    color: #007bff;
    font-size: 14px;
}

/* 联系我们按钮样式 */
.ul-service-details-cta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.ul-service-details-cta .icon {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.ul-service-details-cta .title {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.ul-service-details-cta .number {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.ul-service-details-cta .number:hover {
    color: #0056b3;
    transform: scale(1.05);
}




/* 滚动条样式 */
.ul-service-details-sidebar::-webkit-scrollbar {
    width: 0px;
}

.ul-service-details-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.ul-service-details-sidebar::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 10px;
}

.ul-service-details-sidebar::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}


/* 机型分类与规格样式 */
.machine-types {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.machine-type {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
}

.insert-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.insert-type {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #fdcb6e;
}

.insert-type h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.material-type {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #fd79a8;
}

.material-type h4 {
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.machine-type h4 {
    margin-top: 0;
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.machine-type p {
    margin: 8px 0;
    color: #666;
    line-height: 1.6;
}

/* 规格参数表格样式 */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.specs-table th {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.specs-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* 选型建议样式 */
.advantages-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.advantages-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #666;
}

.advantages-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .machine-types {
        flex-direction: column;
    }
    
    .specs-table {
        font-size: 14px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 10px;
    }
}
