.main-index {
    width: 100%;
    .index_title {
        display: flex;
        justify-content: center;
        .title_box {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding-bottom: 0.12rem;
            &:after {
                content: "";
                position: absolute;
                left: calc(50% - 0.27rem);
                bottom: 0;
                width: 0.55rem;
                height: 0.03rem;
                background-color: var(--primary-color);
            }
            .title_tip {
                font-size: 0.32rem;
                font-weight: bold;
            }
            .title_sub {
                font-size: 0.22rem;
                color: var(--font-sub-color);
            }
        }
    }
    .index_header {
        position: relative;
        .index_swiper {
            .swiper-wrapper {
                .swiper-slide {
                    width: 100%;
                    img {
                        width: 100%;
                        object-fit: contain;
                    }
                }
            }
            .swiper-to {
                position: absolute;
                top: calc(50% - 0.3rem);
                width: 0.64rem;
                height: 0.66rem;
                z-index: 9;
                cursor: pointer;
                opacity: 0.5;
                background-image: url("../images/icon_swiper-to.png");
                background-size: 100% 100%;
                &:hover {
                    opacity: 1;
                    background-image: url("../images/icon_swiper-active.png");
                }
            }
            .swiper-to-prev {
                left: 0;
                transition: all var(--animation-time) ease;
            }
            .swiper-to-next {
                right: 0;
                transform: rotate(180deg);
                transition: all var(--animation-time) ease;
            }
            .swiper-to-prev-hide {
                opacity: 0;
                left: 0;
                transition: all 1s ease;
            }
            .swiper-to-next-hide {
                opacity: 0;
                right: 0;
                transition: all 1s ease;
            }
        }
    }
    .index_company {
        width: 100%;
        display: flex;
        justify-content: space-between;
        .company_wrap {
            width: 100%;
            background-image: url("../images/index_company_back.jpg");
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: space-between;
            .company_info {
                width: 9.6rem;
                height: 8.5rem;
                padding-left: var(--primary-padding);
                padding-right: 0.86rem;
                box-sizing: border-box;
                background-color: rgba(255, 255, 255, 0.8);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                .company_title {
                    font-size: 0.32rem;
                }
                .company_subtitle {
                    font-size: 0.22rem;
                    color: var(--font-sub-color);
                    margin-top: 0.1rem;
                    position: relative;
                    &:after {
                        content: "";
                        position: absolute;
                        left: 0;
                        bottom: -0.15rem;
                        width: 0.55rem;
                        height: 0.03rem;
                        background-color: var(--primary-color);
                    }
                }
                .company_content {
                    font-size: 0.16rem;
                    margin-top: 0.36rem;
                    text-indent: 0.32rem;
                    white-space: pre-wrap; /* 保留换行和空格 */
                }
                .company_tag {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    .tag_item {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        margin-top: 0.62rem;
                        .tag_icon {
                            height: 0.4rem;
                            object-fit: contain;
                        }
                        .tag_title {
                            font-size: 0.18rem;
                            margin-top: 0.05rem;
                        }
                    }
                }
                .company_btn {
                    width: 1.45rem;
                    height: 0.42rem;
                    border: 1px solid var(--primary-color);
                    box-sizing: border-box;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 0.18rem;
                    color: var(--primary-color);
                    margin-top: 0.48rem;
                    &:hover {
                        color: #FFFFFF;
                        background-color: var(--primary-color);
                        .btn_icon {
                            display: none;
                        }
                        .btn_icon_hover {
                            display: block;
                        }
                    }
                    .btn_icon {
                        height: 0.13rem;
                        margin-left: 0.1rem;
                    }
                    .btn_icon_hover {
                        display: none;
                        height: 0.13rem;
                        margin-left: 0.1rem;
                    }
                }
            }
            .company_menu {
                width: 9.6rem;
                height: 8.5rem;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;
                padding: 2.2rem 2rem;
                box-sizing: border-box;
                background-color: rgba(20, 129, 63, 0.8);
                .menu_item {
                    width: 2.1rem;
                    height: 2.1rem;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    box-sizing: border-box;
                    &:nth-child(1) {
                        border-bottom: 1px solid #FFFFFF;
                    }
                    &:nth-child(2) {
                        border-left: 1px solid #FFFFFF;
                        border-bottom: 1px solid #FFFFFF;
                    }
                    &:last-child {
                        border-left: 1px solid #FFFFFF;
                    }
                    .tag_icon {
                        height: 0.6rem;
                    }
                    .tag_title {
                        font-size: 0.2rem;
                        color: #FFFFFF;
                        margin-top: 0.15rem;
                    }
                }
            }
        }
    }
    .index_product {
        width: 100%;
        padding: 1rem 0;
        background-color: var(--back-sub-color);
        .product_wrap {
            display: flex;
            background-color: #FFFFFF;
            margin-top: 0.27rem;
            .product_category {
                .category_item {
                    width: 4.5rem;
                    height: 1.67rem;
                    background-color: var(--primary-color);
                    display: flex;
                    align-items: center;
                    padding: 0 0.7rem;
                    box-sizing: border-box;
                    color: #FFFFFF;
                    margin-bottom: 0.01rem;
                    cursor: pointer;
                    .category_icon {
                        height: 0.6rem;
                        margin-right: 0.26rem;
                    }
                    .category_box {
                        .category_title {
                            font-size: 0.24rem;
                        }
                        .category_subtitle {
                            display: none;
                        }
                    }
                }
            }
        }
        .product_list {
            .product_active{
                display: flex!important;
            }
            .product_block {
                display: none;
                flex-wrap: wrap;
                align-items: center;
                .product_item {
                    width: 2.68rem;
                    margin: 0.2rem 0.11rem 0;
                    &:hover {
                        color: var(--primary-color);
                        .product_img {
                            border: 1px solid var(--primary-color);
                        }
                        .product_box {
                            .product_icon {
                                display: none;
                            }
                            .product_hover {
                                display: block;
                            }
                        }
                    }
                    .product_img {
                        width: 100%;
                        height: 2.68rem;
                        object-fit: cover;
                        border: 1px solid #FFFFFF;
                        box-sizing: border-box;
                    }
                    .product_box {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        margin-top: 0.12rem;
                        .product_name {
                            width: 2.4rem;;
                            font-size: 0.16rem;
                        }
                        .product_icon {
                            height: 0.2rem;
                        }
                        .product_hover {
                            display: none;
                            width: 0.2rem;
                            height: 0.2rem;
                        }
                    }
                }
            }
            .product_occupy {
                width: 2.68rem;
            }
        }
    }
    .index_news {
        padding: 1rem 0;
        .news_list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 0.4rem;
            .news_item {
                width: 8rem;
                background-color: var(--back-sub-color);
                padding: 0.18rem 0.2rem 0.22rem;
                box-sizing: border-box;
                display: flex;
                justify-content: space-between;
                margin-top: 0.22rem;
                &:hover {
                    background-color: var(--primary-color);
                    .news_info {
                        .news_title {
                            color: #FFFFFF;
                        }
                        .news_desc {
                            color: #FFFFFF;
                        }
                        .date_date {
                            color: #FFFFFF;
                        }
                    }
                }
                .news_img {
                    width: 3rem;
                    height: 2.1rem;
                    object-fit: cover;
                }
                .news_info {
                    width: 4.4rem;
                    .news_title {
                        font-size: 0.2rem;
                        margin-top: 0.3rem;
                    }
                    .news_desc {
                        font-size: 0.16rem;
                        color: var(--font-sub-color);
                        margin-top: 0.15rem;
                    }
                    .date_date {
                        font-size: 0.16rem;
                        color: var(--font-sub-color);
                        margin-top: 0.15rem;
                    }
                }
            }
        }
    }
}

/* 屏幕小于1000 - 手机端 */
@media screen and (max-width: 1000px){
    .company_title {
        font-size: 0.32rem;
    }
    .main-index {
        .index_title {
            .title_box {
                padding-bottom: 0.2rem;
                &:after {
                    width: 0.75rem;
                }
                .title_tip {
                    font-size: 0.52rem;
                }
                .title_sub {
                    font-size: 0.42rem;
                }
            }
        }
        .index_company {
            .company_wrap {
                flex-wrap: wrap;
                .company_info {
                    width: 100%;
                    height: auto;
                    padding-right: var(--primary-padding);
                    padding-bottom: 0.4rem;
                    .company_title {
                        font-size: 0.52rem;
                        margin-top: 0.4rem;
                    }
                    .company_subtitle {
                        font-size: 0.42rem;
                        &:after {
                            width: 0.75rem;
                        }
                    }
                    .company_content {
                        font-size: 0.35rem;
                        margin-top: 0.4rem;
                        text-indent: 0.16rem;
                    }
                    .company_tag {
                        .tag_item {
                            margin-top: 0.42rem;
                            .tag_icon {
                                height: 0.7rem;
                            }
                            .tag_title {
                                font-size: 0.35rem;
                                margin-top: 0.1rem;
                            }
                        }
                    }
                    .company_btn {
                        width: 2.2rem;
                        height: 0.62rem;
                        font-size: 0.3rem;
                        .btn_icon {
                            height: 0.24rem;
                            margin-left: 0.2rem;
                        }
                        .btn_icon_hover {
                            display: none;
                            height: 0.24rem;
                            margin-left: 0.2rem;
                        }
                    }
                }
                .company_menu {
                    width: 100%;
                    height: auto;
                    padding: 0.5rem;
                    .menu_item {
                        width: 3rem;
                        height: 3rem;
                        &:nth-child(1) {
                            border-bottom: 0;
                        }
                        &:nth-child(2) {
                            border-left: 0;
                            border-bottom: 0;
                        }
                        &:last-child {
                            border-left: 0;
                        }
                        .tag_icon {
                            height: 1.2rem;
                        }
                        .tag_title {
                            font-size: 0.4rem;
                            margin-top: 0.2rem;
                        }
                    }
                }
            }
        }
        .index_product {
            .product_wrap {
                display: flex;
                flex-wrap: wrap;
                .product_category {
                    width: 100%;
                    display: flex;
                    align-items: center;
                    .category_item {
                        width: 4.28rem;
                        margin-right: 0.02rem;
                        margin-bottom: 0;
                        padding: 0;
                        justify-content: center;
                        .category_icon {
                            height: 1rem;
                            margin-right: 0.1rem;
                        }
                        .category_box {
                            .category_title {
                                font-size: 0.3rem;
                            }
                            .category_subtitle {
                                font-size: 0.2rem;
                                margin-top: 0.1rem;
                            }
                        }
                    }
                }
            }
            .product_list {
                .product_block {
                    justify-content: space-between;
                    padding: 0 0.2rem;
                    box-sizing: border-box;
                    .product_item {
                        width: 8.35rem;
                        margin: 0.2rem 0 0 0;
                        padding-bottom: 0.2rem;
                        .product_img {
                            height: 8.35rem;
                        }
                        .product_box {
                            margin-top: 0.2rem;
                            .product_name {
                                width: 7.9rem;
                                font-size: 0.36rem;
                            }
                            .product_icon {
                                height: 0.4rem;
                            }
                        }
                    }
                }
                .product_occupy {
                    width: 2.68rem;
                }
            }
        }
        .index_news {
            .news_list {
                .news_item {
                    width: 100%;
                    .news_img {
                        width: 4.5rem;
                        height: 4rem;
                    }
                    .news_info {
                        width: 11.9rem;
                        .news_title {
                            font-size: 0.5rem;
                        }
                        .news_desc {
                            font-size: 0.34rem;
                            margin-top: 0.2rem;
                        }
                        .date_date {
                            font-size: 0.26rem;
                        }
                    }
                }
            }
        }
    }
}