@media only screen and (max-width: 800px) {
    a {
        all: unset;
        cursor: pointer;
    }

    .detail-content .detail-path {
        width: 100%;
    }

    .detail-content .detail-title {
        width: 100%;
    }
    .article-content.article-left {
        /* 在小屏幕下的样式 */
        width: 100%; /* 你可以设置为其他百分比或 vw */
    }

    .article-content {
        width: 100%;
    }

    .article-content img {
        width: 100%!important;
    }

    .contact-content {
        width: 100%;
    }

    .form-input {
        width: auto;
    }

    .form-textarea {
        width: auto;
        height: 100px;
        width: 240px;
    }

    .form-item img {
        margin-left: 0!important;
    }
}