/* 申领页面样式 */
.apply-notice {
    background: var(--white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.apply-notice h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.h3-icon {
    width: 20px;
    height: 20px;
}
.apply-notice ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.apply-notice li {
    font-size: 13px;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}
.apply-notice li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}
.product-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.product-option {
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.product-option:hover {
    border-color: var(--primary);
}
.product-option.selected {
    border-color: var(--primary);
    background: rgba(22, 119, 255, 0.05);
}
.product-option input {
    display: none;
}
.product-icon {
    margin-bottom: 10px;
}
.product-icon img {
    width: 48px;
    height: 48px;
    opacity: 0.7;
}
.apply-form {
    background: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .apply-notice ul {
        grid-template-columns: 1fr;
    }
    .product-select {
        grid-template-columns: 1fr;
    }
}