/* 客户端配置部分增强样式 */
.client-download {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.client-download h4 {
    color: #1a73e8;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-download h4 i {
    font-size: 20px;
}

.download-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.download-option {
    flex: 1;
    min-width: 200px;
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.download-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.download-icon {
    width: 60px;
    height: 60px;
    background-color: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.download-icon i {
    font-size: 28px;
    color: #1a73e8;
}

.download-option h5 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #202124;
}

.download-option p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #5f6368;
}

.download-btn {
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.download-btn:hover {
    background-color: #0d5bcd;
    box-shadow: 0 2px 6px rgba(26, 115, 232, 0.3);
}

.client-setup {
    margin-top: 30px;
}

.setup-steps {
    margin-top: 20px;
}

.setup-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.setup-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #dadce0;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-details {
    flex: 1;
}

.step-details h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #202124;
}

.step-details p {
    margin: 0 0 12px 0;
    font-size: 15px;
    color: #5f6368;
}

.step-image {
    margin-top: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    display: block;
}

.step-tips {
    margin-top: 12px;
    background-color: #e8f0fe;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    color: #1a73e8;
}

.step-tips i {
    margin-right: 6px;
}

.client-troubleshooting {
    margin-top: 30px;
    background-color: #fef7e0;
    border-radius: 8px;
    padding: 20px;
}

.client-troubleshooting h4 {
    color: #f29900;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-troubleshooting h4 i {
    font-size: 20px;
}

.troubleshooting-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.troubleshooting-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.troubleshooting-item i {
    color: #f29900;
    font-size: 16px;
    margin-top: 2px;
}

.troubleshooting-item p {
    margin: 0;
    font-size: 14px;
    color: #3c4043;
}
