/* 产品横向背景图区域 */
.product-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
}

.product-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.product-hero .hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.product-hero .hero-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.product-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary-color, #fff);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.product-hero .hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--secondary-color, #fff);
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* 产品详情页样式 */

.product-detail {
    padding: 40px 0;
}

/* 顶部标签页导航 */
.tabs-nav-top {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--light-gray);
    overflow-x: auto;
    flex-wrap: wrap;
    padding-bottom: 0;
}

.tab-btn-top {
    padding: 15px 25px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    color: var(--dark-gray);
    white-space: nowrap;
}

.tab-btn-top::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn-top.active::after,
.tab-btn-top:hover::after {
    transform: scaleX(1);
}

.tab-btn-top.active {
    color: var(--primary-color);
}

/* 顶部标签页面板 */
.tab-panel-top {
    display: none !important;
}

.tab-panel-top.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--dark-gray);
}

.breadcrumb a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* 详情布局 */
.detail-layout {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding: 40px 0;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 图片展示区 */
.detail-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    position: relative;
    width: 100%;
    height: 600px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.zoom-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    width: 100%;
    height: 120px;
    background: var(--light-gray);
    border: 3px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

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

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-color);
}

/* 产品信息 */
.detail-info {
    padding-top: 20px;
}

.product-header {
    margin-bottom: 30px;
}

.product-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.detail-info h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 3px;
    color: #ffa500;
}

.product-rating span {
    font-size: 14px;
    color: var(--dark-gray);
}

/* 价格区域 */
.product-price-section {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 35px;
    display: none;
}

.product-price-section .price {
    font-size: 38px;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.price-note {
    font-size: 13px;
    color: var(--dark-gray);
}

/* 产品选项 */
.product-options {
    margin-bottom: 40px;
}

.option-group {
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.color-btn {
    width: 45px;
    height: 45px;
    border: 3px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.color-btn.active,
.color-btn:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.selected-option {
    font-size: 14px;
    color: var(--dark-gray);
}

.size-options {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.size-btn {
    width: 60px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn.active,
.size-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.size-guide {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 产品亮点 */
.product-highlights {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 35px;
}

.product-highlights h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-highlights ul {
    list-style: none;
}

.product-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.product-highlights li i {
    color: green;
    margin-top: 3px;
    font-size: 16px;
}

/* 产品操作 */
.product-actions-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-icons {
    display: flex;
    gap: 15px;
}

.btn-icon-large {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.btn-icon-large i {
    font-size: 20px;
}

.btn-icon-large:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 产品标签页 */
.product-tabs {
    background: var(--light-gray);
    padding: 60px 0;
}

.tabs-nav {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-gray);
    overflow-x: auto;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    color: var(--dark-gray);
    white-space: nowrap;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn.active::after,
.tab-btn:hover::after {
    transform: scaleX(1);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tabs-content {
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 技术规格 */
.specs-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
}

.spec-item-accordion {
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.spec-item-accordion:last-child {
    border-bottom: none;
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: var(--secondary-color);
    transition: var(--transition);
    user-select: none;
}

.spec-header:hover {
    background: var(--light-gray);
}

.spec-item-accordion.active .spec-header {
    background: var(--light-gray);
}

.spec-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    min-width: 120px;
}

.spec-value {
    font-size: 14px;
    color: var(--dark-gray);
    flex: 1;
    margin: 0 30px;
    text-align: left;
}

.spec-header i {
    font-size: 12px;
    color: var(--medium-gray);
    transition: transform 0.3s ease;
}

.spec-item-accordion.active .spec-header i {
    transform: rotate(180deg);
}

.spec-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--light-gray);
}

.spec-item-accordion.active .spec-details {
    max-height: 500px;
    padding: 20px;
}

.spec-details p {
    font-size: 14px;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--light-gray);
}

.specs-table td {
    padding: 12px 0;
    font-size: 14px;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 45%;
}

.specs-table td:last-child {
    color: var(--dark-gray);
}

/* 特性详解 */
.features-list {
    max-width: 100%;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.features-content {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse > * {
    direction: ltr;
}

.feature-block img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* 几何参数 */
.product-wrap-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.geometry-table-col {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
}

.geometry-image-col {
    flex: 0 0 45%;
    max-width: 500px;
}

.geometry-content {
    max-width: 1000px;
    margin: 0 auto;
}

.geometry-diagram {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
}

.geometry-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.geometry-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    background: transparent;
    table-layout: auto;
}

.geometry-table th,
.geometry-table td {
    padding: 10px 6px;
    text-align: center;
    font-size: 13px;
    border: none;
    white-space: nowrap;
}

.geometry-table th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.geometry-table td:first-child,
.geometry-table th:first-child {
    text-align: left;
    font-weight: 600;
    width: 160px;
    max-width: 160px;
}

.geometry-table td:not(:first-child),
.geometry-table th:not(:first-child) {
    width: 50px;
    min-width: 50px;
}

/* 下载资源 */
.downloads-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.download-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--dark-gray);
}

.download-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

.download-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    flex-shrink: 0;
}

.download-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* 视频 */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 0, 0, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    background: rgba(230, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.4;
}

/* 分类信息 */
.classification-info {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

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

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

.classification-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 15px 0;
}

.classification-item p {
    font-size: 15px;
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* 用户评价 */
.reviews-summary {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.rating-overview {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
}

.rating-score {
    text-align: center;
}

.rating-score .score {
    font-size: 72px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 15px;
}

.stars-large {
    display: flex;
    justify-content: center;
    gap: 5px;
    color: #ffa500;
    font-size: 24px;
    margin-bottom: 10px;
}

.rating-score p {
    font-size: 13px;
    color: var(--dark-gray);
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rating-bar-item {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 15px;
    align-items: center;
    font-size: 14px;
}

.bar {
    height: 10px;
    background: var(--secondary-color);
    border-radius: 5px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: #ffa500;
    transition: width 0.5s ease;
}

/* 评价列表 */
.reviews-list {
    max-width: 800px;
    margin: 0 auto;
}

.review-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.reviewer-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #ffa500;
    font-size: 14px;
}

.review-date {
    font-size: 13px;
    color: var(--dark-gray);
}

.review-content h5 {
    font-size: 16px;
    margin-bottom: 12px;
}

.review-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.review-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
}

.helpful-btn {
    background: transparent;
    border: 1px solid var(--medium-gray);
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.helpful-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* 相关产品 */
.related-products {
    padding: 60px 0;
}

.related-products h2 {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.products-slider {
    position: relative;
}

.products-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item-small {
    background: var(--secondary-color);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    transition: var(--transition);
}

.product-item-small:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-item-small a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-item-small h4 {
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
}

.product-item-small .price {
    padding: 0 15px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.slider-nav-btn.prev {
    left: -25px;
}

.slider-nav-btn.next {
    right: -25px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-gallery {
        position: static;
    }

    .main-image {
        height: 500px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-block.reverse {
        direction: ltr;
    }

    .feature-item {
        grid-template-columns: 1fr;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .rating-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .detail-info h1 {
        font-size: 32px;
    }

    .main-image {
        height: 350px;
    }

    .thumbnail-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .thumbnail {
        height: 80px;
    }

    .tabs-nav {
        overflow-x: auto;
        justify-content: flex-start;
    }

    .tab-btn {
        padding: 15px 25px;
        font-size: 13px;
        white-space: nowrap;
    }

    .tabs-content {
        padding: 30px 20px;
    }

    .spec-header {
        padding: 15px 12px;
        flex-wrap: wrap;
    }

    .spec-name {
        font-size: 13px;
        min-width: 100px;
    }

    .spec-value {
        font-size: 13px;
        margin: 0 15px;
    }

    .spec-header i {
        font-size: 11px;
    }

    .download-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .video-thumbnail {
        height: 150px;
    }

    .feature-item {
        padding: 25px;
    }

    .feature-text h3 {
        font-size: 18px;
    }

    .feature-text p {
        font-size: 14px;
    }

    .feature-block img {
        height: 250px;
    }

    .products-track {
        grid-template-columns: 1fr;
    }

    .slider-nav-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .detail-info h1 {
        font-size: 24px;
    }

    .product-price-section .price {
        font-size: 28px;
    }

    .color-options {
        gap: 8px;
    }

    .color-btn {
        width: 40px;
        height: 40px;
    }

    .size-btn {
        width: 50px;
        height: 45px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 13px;
    }

    .geometry-table {
        font-size: 12px;
    }

    .geometry-table th,
    .geometry-table td {
        padding: 10px 5px;
    }
}

