.hotline_banner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: var(--portalWidth);
    max-width: calc(100% - 15px);
    box-sizing: border-box;
    margin: 24px auto;
    padding: 14px 18px;
    background-color: #fefefe;
    border: 1px solid var(--primarycolor);
    border-radius: 10px;
    box-shadow: 2px 2px 4px 1px rgba(102, 102, 102, 0.25);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.hotline_banner:hover {
    background-color: #fbecee;
}

.hotline_banner_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background-color: #25d366;
    border-radius: 50%;
}

.hotline_banner_icon img {
    width: 20px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.hotline_banner_text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotline_banner_title {
    font-weight: 700;
    color: #1c1c1c;
}

.hotline_banner_subtitle {
    font-size: smaller;
    color: #6b6b6b;
}

.hotline_banner_arrow {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/assets/pics/next.png');
}

@media (max-width: 768px) {
    .hotline_banner_subtitle {
        display: none;
    }
}
