/* 走进协会css模块 */

/* 联系我们部分 */
.about-contact-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 0.3rem;
}

.contact-item {
    width: 33.33%;
    padding: 0.3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.2rem;
    color: #000;
}

.contact-item-img svg {
    width: 0.5rem;
    height: 0.5rem;
}

.contact-item-img svg image {
    width: 100%;
    height: 100%;
}

.contact-item-img {
    font-size: 0.42rem;
    border: 1px solid #666;
    width: 1.1rem;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-title {
    font-size: 0.26rem;
    color: #1d45cf;
    margin: 0.1rem 0 0.2rem;
    text-align: center;
}

.contact-item .line {
    width: 1.1rem;
    height: 0.02rem;
    margin-bottom: 0.24rem;
    background-color: #e3e2e0;
    position: relative;
}


.contact-item .line::after {
    content: "";
    width: 0.32rem;
    height: 0.04rem;
    background-color: var(--theme-color);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-item-content {
    text-align: center;
}

.contact-item-content p {
    font-size: 0.26rem;
}

.news-content-wrapper {
    padding-bottom: 0.5rem;
}

.download-list {
    list-style: none;
    padding: 0.28rem 0.16rem 0rem;
    margin: 0;
    background-color: #fff;
}

.download-list li {
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .4s;
}


.download-list li:last-child {
    margin-bottom: 0.2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.download-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
    color: #333;
    padding-left: 0.2rem;
}

.download-item:hover .download-title {
    color: #007bff;
}

.download-title {
    transition: .4s;
    font-size: 0.24rem;
    margin-bottom: 0.04rem;
    position: relative;
}

.download-title::before {
    content: "";
    width: 0.06rem;
    height: 0.06rem;
    background-color: var(--theme-color);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-0.14rem, -50%);
}

.download-meta {
    font-size: 0.18rem;
    color: #999;
    white-space: nowrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 0.05rem;
    padding: 0.08rem 0.1rem;
    color: #fff;
    border-radius: 6px;
    font-size: 0.18rem;
    transition: 0.4s;
    background: var(--theme-color);
}

.download-button__icon {
    width: 0.16rem;
    height: 0.16rem;
}

.download-button:active {
    transform: scale(0.98);
    box-shadow: 0 0.05rem 0.16rem -0.05rem hsla(218, 62%, 51%, 0.5);
}


@media (max-width: 768px) {
    .download-button {
        font-size: 0.18rem;
        margin-left: 0.1rem;
    }

    .download-button__icon {
        width: 0.2rem;
        height: 0.2rem;
    }

    .about-contact-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .download-list {
        padding: 0;
    }

    .download-title {
        font-size: 0.22rem;
    }

    .download-meta {
        font-size: 0.16rem;
    }
}