/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

/* 技术参数样式 */
.tech-spec {
    margin: 15px 0;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: grid;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.1);
}

.tech-spec span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #696969;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.tech-spec span:last-child {
    border-bottom: none;
}

.tech-spec span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

/* 功能图标动画 */
.feature-icon img {
    transition: transform 0.3s ease;
}

.single-feature-inner:hover .feature-icon img {
    transform: rotate(10deg) scale(1.1);
}

/* 标题符号样式 */
h5 {
    position: relative;
    padding-left: 30px;
}

h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%234CAF50"><path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/></svg>');
    background-size: contain;
}