/* DKYB页面特定样式 - 不影响其他页面 */

/* 基础功能模块第一列宽度调整 */
.dk-features-column:nth-child(1) .dk-feature-item {
    width: 600px !important;
}

/* 手持单元模块自定义布局 */
.dkyb-specs-custom {
    padding: 0 20px;
}

.product-detail-container-dk {
    padding-bottom: 0 !important;
}

.dkyb-specs-row-first {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.dkyb-specs-row-first .dkyb-spec-item {
    flex: 1;
    position: relative;
    padding-left: 12px;
}

.dk-product-image {
    display: flex;
    justify-content: center;
}

.dk-product-item {
    max-width: 500px;
}
.product-info-section-dk{
    margin-top: 40px;
}
.dkyb-specs-row-second {
    display: flex;
}

.dkyb-spec-item-full {
    width: 100%;
    position: relative;
    padding-left: 12px;
}

.dkyb-spec-item::before,
.dkyb-spec-item-full::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 2px);
    left: -10px;
}

/* 技术规格表格样式 */
.dkyb-specs-table {
    padding: 0 20px;
}

.dkyb-spec-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
}

.dkyb-table-header {
    background: #f8f9fa;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border: 1px solid #ddd;
}

.dkyb-spec-label {
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    font-weight: 500;
    color: #333;
    width: 40%;
}

.dkyb-spec-data {
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
}

/* 页面导航按钮样式 */
.dkyb-nav-button-prev,
.dkyb-nav-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    color: transparent;
    transition: all 0.3s ease;
    z-index: 15;
    cursor: pointer;
    text-decoration: none;
}

.dkyb-nav-button-prev {
    left: -50px;
}

.dkyb-nav-button-next {
    right: -50px;
}

.dkyb-nav-button-prev:hover,
.dkyb-nav-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.dkyb-nav-button-prev::before {
    content: '‹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.dkyb-nav-button-next::before {
    content: '›';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* 禁用状态的导航按钮样式 */
.dkyb-nav-button-prev.disabled,
.dkyb-nav-button-next.disabled {
    background: rgba(0, 0, 0, 0.1);
    cursor: not-allowed;
    opacity: 0.5;
}

.dkyb-nav-button-prev.disabled:hover,
.dkyb-nav-button-next.disabled:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dkyb-nav-button-prev.disabled::before,
.dkyb-nav-button-next.disabled::before {
    color: #ccc;
}

/* 产品图片放大样式 */
.product-image-section-dk .dk-product-image img {
    width: 120% !important;
    height: auto !important;
    transform: scale(1.2);
    transform-origin: center center;
}