/* 主要内容 */
.content {
	width: 1280px;
	background-color: white;
	box-shadow: 0 5px 20px rgba(30, 136, 229, 0.1);
	margin-top:28px;
	margin-right: auto;
	margin-left: auto;
	overflow: hidden;
	display: flex;
}

/* 左侧幻灯片区域 */
.product-gallery {
	width: 65%;
	background-color: #F2F8FB;
	position: relative;
}

.gallery-slider {
	width: 100%;
	height: 460px;
	overflow: hidden;
	position: relative;
}

.slides-container {
	width: 100%;
	height: 100%;
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e3f2fd;
}

.slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.slider-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 15px;
}

.nav-arrow {
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
	background-color: white;
	transform: scale(1.1);
}

.slide-indicators {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.indicator {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.indicator.active {
	background-color: #1E88E5;
	transform: scale(1.2);
}

/* 右侧信息区域 */
.product-info {
	width: 35%;
	padding-left: 30px;
	padding-top: 10px;

}
/* 标题部份框 */
.section {
	padding: 20px 0;
}

/* 标题 */
.title {
	font-size: 28px;
	font-weight: 600;
	color: #1E88E5;
	margin-bottom: 5px;
}

/* 简要 */
.statement {
	background-color: #e3f2fd;
	color: #1E88E5;
	padding: 5px 12px;
	border-radius: 20px;
	display: inline-block;
	font-size: 14px;
	margin-top: 5px;
}

/* 概要 */
.Summary {
	font-size: 16px;
	font-weight: 600;
	color: #444;
	line-height: 30px;
	border-bottom: 1px solid #CDCDCD;
}

.Summary span {
    border-bottom: 1px solid #747474;
	border-bottom-width: 2px;
	border-bottom-color: #1e88e5;
	text-transform: uppercase;
    display: inline-block;
    margin: 0 0 -1px;
    font: 600 16px / 36px "Open Sans Condensed", sans-serif;
    padding: 0 5px 0 0;

}

.info-section {
	padding-top: 20px;
	border-bottom: 1px dotted #CDCDCD;
}

.info-section:last-child {
	border-bottom: none;
}

/* 标签 */
.label {
	font-size: 14px;
	color: #666;
	font-weight: 600;
	margin-bottom: 8px;
	letter-spacing: 1px;
}

.label span {
	font-size: 14px;
	font-weight: 400;
	color: #666;
}

.shengming {
	padding-top: 20px;
	font-size: 12px;
	color: #8C8C8C;
}

/* 承诺框 */
.chengnuo {
	width: 1280px;
	height: 50px;
	line-height:50px;
	text-align: center;
	background: #FFF3CD;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	border-radius: 3px;
	border: 1px solid #FFE9A6;
}

/* 承诺内容 */
.chengnuo span {
	font-size: 14px;
	font-weight: 400;
	color: #957A86;
}

/* 列表 */
.list {
	width: 1280px;
	margin-right: auto;
	margin-left: auto;
	line-height: 30px;
	border-bottom: 1px solid #CDCDCD;
	margin-top: 30px;
}

.list span {
	font-size: 16px;
	font-weight: 600;
	color: #444;
    border-bottom: 1px solid #747474;
	border-bottom-width: 2px;
	border-bottom-color: #1e88e5;
    display: inline-block;
    margin: 0 0 -1px;
    font: 600 16px / 36px "Open Sans Condensed", sans-serif;
    padding: 0 5px 0 0;

}

.list a {
	font-size: 14px;
	float: right;
	color: #BBB;
	text-decoration: none;
}

.list a:hover {
	font-size: 14px;
	color: #FF0000;
	cursor: pointer;
}

/* 固定表头 */
.table-header {
	width: 1280px;
    display: flex;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
    background: #FFF;
    color: #000;
    padding: 15px 20px;
    font-weight: 600;
}

.col-title1 {
    flex: 3.5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}
.col-title1 span {
	font-size: 14px;
	color: #BBB;
}

.col-time {
	font-weight: 500;
    flex: 1.2;
    text-align: center;
}

.col-time1 {
	font-size: 14px;
	flex: 1.2;
	text-align: center;
}

.col-ed2k, .col-bt {
    flex: 0.3;
    display: flex;
    justify-content: center;
}

/* 列表内容 */
.table-row {
	width: 1280px;
	margin-right: auto;
	margin-left: auto;
    border-top: 1px solid #eee;
}

.table-row:last-child {
    border-bottom: none;
}

.content-main {
    display: flex;
    padding: 15px 20px;
    align-items: center;
    transition: background 0.3s;
}

.col-title {
    flex: 3.5;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.col-title:hover {
    color: #1E88E5;
}

.title-text {
    flex: 1;
}

/* 复制按钮 */
.copy-btn {
    background: #FFF;
    color: #007BFF;
    border: none;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

.copy-btn:hover {
	color: #0000FF;
}

.copy-btn.copied {
    background: #FFF;
}

.copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.copy-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.copy-btn.copied .copy-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.validation-info {
	padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: #F9F9F9;
}

.validation-info.active {
    padding-left: 20px;
	padding-bottom:20px;
    max-height: 238px;
    opacity: 1;
}

.validation-list {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
}

.validation-info.active .validation-list {
    opacity: 1;
    transform: translateY(0);
}

.validation-item {
    display: flex;
    padding: 12px 0;
    align-items: center;
}

.validation-item:last-child {
    border-bottom: none;
}

.validation-label {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
	flex: 1;
}

        
/* 顶部响应式设计 */
@media (max-width: 1320px) {
	.product-container {
		width: 95%;
		flex-direction: column;
	}

	.product-gallery, .product-info {
		width: 100%;
	}

	.product-info {
		border-left: none;
		border-top: 1px dashed #e0e0e0;
	}
}

/* 列表响应式设计 */
@media (max-width: 768px) {
    .table-header {
        display: none;
    }
    
    .content-main {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .col-title {
        flex: 1 0 100%;
        font-weight: 600;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
	
    .col-title1 {
        flex: 1 0 100%;
        font-weight: 600;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .col-time, .col-ed2k, .col-bt {
        flex: 1;
        min-width: 0;
    }
    
    .col-time::before {
        content: "发布时间: ";
        font-weight: 600;
        color: #34495e;
    }
    
    .col-ed2k::before {
        content: "ED2K: ";
        font-weight: 600;
        color: #34495e;
        margin-right: 5px;
    }
    
    .col-bt::before {
        content: "BT: ";
        font-weight: 600;
        color: #34495e;
        margin-right: 5px;
    }
    
    .validation-grid {
        grid-template-columns: 1fr;
    }
    
    .validation-info.active {
        padding: 15px;
        max-height: 400px;
    }
}