@charset "UTF-8";
/* =========================
   按钮区域容器
========================= */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;

    margin-top: 10px;
    text-align: center;
}

/* =========================
   按钮通用样式
========================= */
.btn-container a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

/* hover 效果 */
.btn-container a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,.28);
    opacity: .9;
}

/* =========================
   SVG 图标（按钮前端）
========================= */
/* 强制确认伪元素存在 */
.btn-container a::before {
    content: "";
    /*display: inline-block;*/
    width: 16px;
    height: 14px;
    margin-right: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* PDF */
.aspdf-btn::before {
    background-image: url("../images/icon-pdf.svg");
}

/* DXF */
.asdxf-btn::before {
    background-image: url("../images/icon-dxf.svg");
}

/* SHOP */
.asshop-btn::before {
    background-image: url("../images/icon-shop.svg");
}

/* =========================
   响应式（手机）
========================= */
@media (max-width: 768px) {

    .btn-container {
        gap: 10px;
    }

    .btn-container a {
        font-size: 12px;
        padding: 6px 16px;
        border-radius: 4px;
    }

    .btn-container a::before {
        width: 16px;
        height: 16px;
    }
}


/* ========== 按钮样式（主视觉强调） ========== */
.btn-container {
    text-align: center;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.asdxf-btn, .aspdf-btn, .asshop-btn {
    display: inline-block;
    font-size: 15px;
    font-weight: bold;
    padding: 5px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    transition: 0.25s ease;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #ff4b4b, #c90000);
}

.aspdf-btn:hover,
.asdxf-btn:hover {
    transform: translateY(-20px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.28);
}

/* DXF按钮颜色区别 */
.asdxf-btn, .aspdf-btn, .asshop-btn {
	/*background:url(../images/bg_tit.jpg) repeat;*/
}

.spec-list li:nth-child(odd) {
    background: #f8f8f8;     /* 奇数行背景色 */
}

.spec-list li:nth-child(even) {
    background: #ffffff;     /* 偶数行背景色 */
}

/* 外框：一行固定布局 */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 每个 li = 1 行 + 垂直居中 */
.spec-list li {
    display: flex;
    align-items: center;
	line-height:1.2;
	width:100% !important;
    padding: 1px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
}

/* 左侧标题栏 .t */
.spec-list .t {
    width: 120px;                 /* 固定宽度 */
    font-weight: 700;             /* 加粗 */
    text-align: justify;          /* 两端对齐 */
    text-align-last: justify;     /* 最后一行也对齐 */
    display: inline-block;
}

/* 右侧内容 */
.spec-list .d {
    flex: 1;
    padding-left: 10px;
}

/* PC字体 */
.spec-list .t,
.spec-list .d {
    font-size: 14px;
}

.pst-shortcode {
    cursor: pointer;
    user-select: all;
}
.pst-shortcode:hover {
    background: #f0f6fc;
}

/* 表格整体自适应 */
.pst-resizable-table {
    width: 100%;
    table-layout: auto; /* 关键 */
}

/* 单元格内容不强制换行（短代码好看） */
.pst-resizable-table th,
.pst-resizable-table td {
    white-space: nowrap;
}

/* 短代码列允许稍微溢出 */
.pst-resizable-table td code {
    white-space: nowrap;
}

/* 列宽拖拽把手 */
.pst-resizable-table th {
    position: relative;
}

.pst-resizer {
    position: absolute;
    right: 0;
    top: 0;
    width: 6px;
    height: 100%;
    cursor: col-resize;
    user-select: none;
}

.pst-resizer:hover {
    background: rgba(30, 10, 20, 0.08);
}

/* 手机字体（小于768px 自适应） */
@media (max-width: 768px) {
    .spec-list .t,
    .spec-list .d {
        font-size: 12px;
    }
.spec-list .t {
    width: 100px;     
}

.aspdf-btn, .asshop-btn, .asdxf-btn {
    display: inline-block;
    font-size: 12px;
    padding: 5px 16px;
    border-radius: 4px;
}
}
