/* 平板设备 */
/*平板端*/
@media (max-width: 1280px) {
    .content {
        width: 100%;
        padding: 0 2%;
    }
}

/*移动设备端*/
@media (max-width: 768px) {

    /* 公共 */
    .content {
        width: 100%;
        padding: 0 3%;
    }

    .region_title h2 {
        font-size: 20px;
    }

    .region_title p {
        font-size: 12px
    }

    .language {
        width: 5%;
    }

    /* 头部 */

    header .content {
        padding: 5% 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    header .left_phone {
        height: 50%;
        justify-content: center;
    }

    header .left_phone img {
        width: auto;
        height: 100%;
    }

    header .right_contents {
        height: 40%;
        width: 94%;
    }

    header .right_contents .logo {
        width: 20%;
    }

    header .right_contents .logo img {
        width: 100%;
    }

    header .right_contents .title h1 {
        font-size: 14px;
        text-align: center;
    }

    header .right_contents .qrcode_region {
        justify-content: space-between;
    }

    header .right_contents .qrcode_region .btn_download {
        font-size: 10px;
    }

    header .right_contents .qrcode_region .btn_download img {
        width: 15%;
    }

    header .right_contents .qrcode_region .qrcode {
        width: 24%;
    }

    header .right_contents .qrcode_region .qrcode_title {
        font-size: 10px;
        text-align: left;
    }

    /* 新手礼物 */
    .gifts_region .gifts_bottom {
        gap: 10px;
    }

    /* 折扣 */
    .discount_region .discount_goods {
        flex-direction: column;
        gap: 30px;
    }

    .discount_region .discount_goods .discount_goods_left,
    .discount_region .discount_goods .discount_goods_right {
        width: 100%;
    }

    .discount_region .discount_goods .goods_item .goods_name {
        font-size: 12px;
        height: 50%;
    }

    .discount_region .discount_goods .goods_item .goods_price {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .discount_region .discount_goods .goods_item .original_price {
        font-size: 16px;
    }

    .discount_region .discount_goods .goods_item .discount_price {
        font-size: 12px;
    }

    /* 优势 */
    .edge_region .edge_items {
        flex-direction: column;
        gap: 30px;
    }

    .edge_region .edge_items .edge_item {
        flex-direction: row;
        gap: 10px;
    }

    .edge_region .edge_items .edge_item_contents {
        gap: 10px;
        width: 70%;
    }

    .edge_region .edge_items .edge_item_title {
        font-size: 16px;
    }

    .edge_region .edge_items .edge_item_content {
        font-size: 12px;
    }

    /* 联系我们 */
    .contact_us_region {
        padding: 30px 0;
    }

    .contact_us_region .footer_img {
        bottom: 90%;
    }

    .contact_us_region .company_info {
        font-size: 12px;
        width: 100%;
    }

    /* 底部 */
    footer p {
        font-size: 12px;
    }

    /* 侧边栏 */
    .sidebar {
        width: 12%;
    }

    .sidebar ul li {
        font-size: 6px;
        padding: 20% 0;
    }

    .sidebar .inquiry_phone {
        right: 110%;
        width: 260%;
        font-size: 12px;
    }

    .sidebar .inquiry_phone p {
        padding: 6%;
    }
}