
.crm_download {
    max-width: 1180px;
    width: 100%;
}

.crm-header-popup-window {
    background-color: #f1f5f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    height: 90px;
    max-width: 1180px;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 20px 10px 30px;
}


.crm-header-close-icon-i {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 28px solid #d8d8d8;
    border-right: 28px solid transparent;
}
.crm-header-close-icon-i::after {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/downloadClose.png');
    background-size: 8px 8px; /* 使背景图适应容器 */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -25px;
    left: 3px;
    content: "";
}

.crm-header-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.crm-header-logo img {
    width: 100%;
    height: auto;
    content: url('../images/winonIcon.png');
}

.crm-header-content {
    width: calc(100% - 160px);
    margin-left: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Droid Sans', Roboto, Arial, 'PingFang TC', hei, 'Source Han Sans TC', 'Noto Sans CJK TC', 'PingFang SC', 'Source Han Sans SC', 'Noto Sans CJK SC', 'Microsoft YaHei', sans-serif;
}

.crm-header-main-title {
    font-size: 1.2rem;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* 设置显示的行数为1行 */
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.crm-header-sub-title {
    font-size: 1rem;
    color: #666;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 设置显示的行数为1行 */
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.crm-header-download-btn {
    width: 60px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.crm-header-download-btn:hover {
    background-color: #0056b3;
}


@media only screen and (max-width: 780px) {
    .crm-header-popup-window {
        width: 100%;
        height: auto;
        padding: 10px 20px;
    }

    .crm-header-logo {
        width: 60px;
        height: 60px;
    }

    .crm-header-content {
        margin-left: 10px;
    }

    .crm-header-main-title {
        font-size: 1.1rem;
        color: #000000;
    }

    .crm-header-sub-title {
        font-size: 0.8rem;
    }

    .crm-header-download-btn {
        cursor: pointer !important;
    }
    .crm-header-download-btn:hover {
        background-color: #007bff;
        cursor: pointer;
    }
}
