@import './zz-common.css';

.zz-afterSales-main {
    padding: 0 13.5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.pm-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.pm-tabs .pm-tabs-item {
    /* 超链接标签不要下划线 */
    text-decoration: none;
    padding: .2rem .8rem;
    border-radius: 99em;
    color: #000;
    border: 1px solid #D9D9D9;
}

.pm-tabs .pm-tab-active {
    background-color: var(--zz-pm-tabs-active-bg-color);
    color: var(--zz-pm-tabs-active-color);

}

.pm-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    column-gap: 2rem;
    row-gap: 1.5rem;
}

.pm-product-item {
    width: 100%;
    background-color: #D9D9D9;
    color: #000;
    padding: 1rem;
    border-radius: .5rem;
    text-decoration: none !important;

}

.pm-product-item:hover {
    background-color: var(--zz-pm-tabs-active-bg-color);
    color: var(--zz-pm-tabs-active-color) !important;
}

.pm-product-item-internal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
}

.support {
    border-radius: .5rem;
    /* background-color: #f0f0f0; */
    background-color: #fff;
    padding: 6% 10%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-section {
    display: flex;
    flex-direction: column;
}

.support-section-title {
    font-size: 2.25rem;
    font-weight: bold;
}

.support-section-main {
    background-color: #fbfbfb;
    border-radius: .5rem;
    padding: 2rem;
    margin: 3rem 0;
}

.hotline-box{

    width: 100%;
    border-radius: .5rem;
    background-color: #fff;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.hotline-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, 30rem);
    justify-content: center;
    gap: 2rem;
    border-radius: .5rem;
    margin-top: 1.5rem;
}

.hotline-item {
    background-color: #f7f7f7;
    border-radius: .75rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
}

.hotline-item-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: 9rem;

}

.hotline-item-time {
    margin-top: .8rem;
    font-size: .9rem;
    color: #666;
    font-weight: 500;
    
}

.hotline {
    width: 100%;
    border-radius: .5rem;
    background-color: #fff;
    padding: 3% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.2rem;
    padding-top: 3.2rem;
}

.hotline-info{
    display: flex;
    align-items: center;
    width: 9rem;
    gap: .5rem;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: .5rem;
    
}

.support-table {



    th {
        font-size: 1.2rem;
    }

    th,
    td {
        height: 4rem;
    }

}


/* 售后登记表单 */
.aftersale-form-box {
    width: 100%;
    background-color: #f5f7fa;
    border-radius: 1rem;
    padding: 3.5rem 8%;
}

.aftersale-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.aftersale-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.aftersale-form-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
}

.aftersale-form-input {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    color: #333;
    background-color: transparent;
    border-bottom: 1px solid #e5e5e5;
    outline: none;
    transition: border-color 0.3s;
}

.aftersale-form-input:focus {
    border-bottom-color: #4BA9E0;
}

.aftersale-form-input::placeholder {
    color: #b0b0b0;
}

.aftersale-form-textarea {
    resize: vertical;
    min-height: 80px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 0.85rem 0;
    background-color: transparent;
}

.aftersale-form-textarea:focus {
    border-bottom-color: #4BA9E0;
}

.aftersale-form-btn {
    background-color: #2196F3;
    color: #fff;
    border: none;
    padding: 0.85rem 4rem;
    border-radius: 99em;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.aftersale-form-btn:hover {
    background-color: #1a7fd4;
}

@media (max-width: 768px) {
    .aftersale-form-box {
        padding: 2.5rem 6%;
    }
    .aftersale-form-label {
        font-size: 1.1rem;
    }
}
