* {
	margin: 0;
	padding: 0;
}
html, body {
    margin: 0;
    display: block;
	width: 100%;
	height: 100%;
	min-width: 1200px;
}
.isomer {
    width: 100%;
    height: auto;
    overflow: auto;
    min-width: 1200px;
	position: relative;
	background-color: #f5f5f5;
}
@media screen and (min-width: 1200px) {
    .isomer-common {
        width: 1300px;
        margin: auto;
        padding-top: 16px;
    }
}
@media screen and (max-width: 1200px) {
	.isomer-common {
		width: 1200px;
		margin: auto;
		padding-top: 16px;
	}
}
.isomerWrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
/* 筛选容器样式 */
.filter-container {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    padding: 15px 30px;
    box-sizing: border-box;
}

/* 筛选头部样式 */
.filter-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.filter-tab {
	padding: 0px 16px;
	margin-right: 10px;
	border-radius: 16px;
	transition: all 0.3s ease;
	font-weight: 600;
	font-size: 18px;
}

.filter-collapse {
    margin-left: auto;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

/* 筛选区域样式 */
.filter-section {
	width: 100%;
	margin: auto;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	margin-top: 16px;
}

.filter-section label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
	width: 80px;
}
.filter-value {
	width: calc(100% - 80px);
}
.filter-option {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
    color: #4a4a4a;
}

.filter-option.active {
    background: #fff1f0;
    color: #ff2424;
}

.filter-option:hover {
    background: #f0f0f0;
}

/* 搜索区域样式 */
.filter-section input.filter-input {
    width: 500px;
    padding: 1px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-section input.filter-input:focus {
    border-color: #ff2424;
}

.filter-search {
    width: 70px;
    padding: 8px 0;
    margin-left: 10px;
    background: #ff2424;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-search:hover {
    background: #ff2424;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .filter-container {
        padding: 15px;
    }
    
    .filter-tab {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .filter-option {
        padding: 3px 10px;
        font-size: 12px;
    }
}

/* 分数说明样式 */
.score-info-card {
    width: 100%;
    background: #fff7e6;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ffd591;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.info-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    padding-bottom: 10px;
}

.info-content {
    width: 100%;
}

.info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.info-content ul {
    padding-left: 20px;
    margin: 0;
}

.info-content ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.info-content ul li:last-child {
    margin-bottom: 0;
}

/* 同分去向参考表格样式 */
.isomer-table-card {
    width: 100%;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #eee;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px;
}

.table-title {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.table-subtitle {
    font-size: 16px;
    color: #999;
    margin-bottom: 10px;
}

.score-info {
    font-size: 16px;
    color: #666;
	font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.table-container {
    width: 100%;
    overflow: hidden;
}

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

.isomer-table th {
    background: #f5f5f5;
    padding: 12px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1;
}

.isomer-table td {
    padding: 10px;
    text-align: left;
    font-size: 16px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.isomer-table tr:nth-child(even) {
    background: #f9f9f9;
}

.isomer-table tr:hover {
    background: #f5f5f5;
}

.major-tag {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    margin-left: 5px;
    cursor: help;
}

/* 响应式调整 */
@media screen and (max-width: 1200px) {
    .isomer-table-card {
        padding: 15px;
    }
    
    .table-title {
        font-size: 16px;
    }
    
    .table-subtitle,
    .score-info {
        font-size: 13px;
    }
    
    .isomer-table th,
    .isomer-table td {
        padding: 8px;
        font-size: 13px;
    }
    
    .score-info-card {
        padding: 15px;
    }
    
    .info-title {
        font-size: 15px;
    }
    
    .info-content p,
    .info-content ul li {
        font-size: 13px;
    }
}
.tip-asterisk{
	color: #ff2424;
}
