/* freetest.css - 免费测试页面样式 */

.freetest-container {
    padding: 60px 0 120px;
    background: #F7F8FA;
    min-height: calc(100vh - 200px);
}

.page-title {
    font-weight: 500;
    font-size: 24px;
    color: #11122C;
    margin-bottom: 30px;
}

.product-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 20px;
    color: #11122C;
    font-weight: 400;
    margin-bottom: 20px;
}

.table-wrapper {
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #DADFE9;
}

.freetest-table {
    width: 100%;
    border-collapse: collapse;
}

.freetest-table thead {
    background: #F7F8FA;
}

.freetest-table th {
    padding: 10px 40px;
    text-align: left;
    font-weight: 500;
    font-size: 14px;
    color: #12141D;
    border: none;
}

.freetest-table td {
    padding: 14px 40px;
    font-size: 12px;
    color: #6B6D70;
    border: none;
    background: #FFFFFF;
}

.freetest-table tbody tr {
    border-top: 1px solid #DADFE9;
}

.freetest-table .btn-apply {
    padding: 0;
}

.freetest-table .btn-apply.disabled {
    cursor: not-allowed;
    color: #979797;
}

.form-select {
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background: #FFFFFF;
    cursor: pointer;
    min-width: 120px;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.notice-box {
    margin-top: 60px;
    padding: 20px 16px;
    background: rgba(8,160,247,0.1);
    border-radius: 8px;
    display: flex;
    gap: 8px;
}

.notice-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.notice-icon svg {
    width: 100%;
    height: 100%;
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-weight: 500;
    font-size: 18px;
    color: #36C3FF;
}

.notice-text {
    font-size: 16px;
    color: #888895;
    margin-bottom: 8px;
}

.notice-text:last-child {
    margin-bottom: 0;
    color: #11122C;
}

.highlight {
    color: var(--color-primary);
    font-weight: 500;
}

.link {
    color: var(--color-primary);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.freetest-modal {
    color: #6B6D70;
    font-size: 14px;
}
.freetest-label {
    min-width: 60px;
}
.freetest-group {
    gap: 46px;
}
.modal-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.modal-actions div {
    cursor: pointer;
}


/* 响应式设计 */
@media (max-width: 768px) {
    .freetest-container {
        padding: 40px 0 80px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .table-wrapper {
        overflow-x: auto;
    }

    .freetest-table {
        min-width: 600px;
    }

    .notice-box {
        flex-direction: column;
    }
}