.page {
    .banner {
        width: 100%;
        position: relative;

        .img {
            width: 100%;
        }

        .banner-text {
            position: absolute;
            left: 5vw;
            top: 40%;
            transform: translateY(-50%);

            .img {
                width: 15vw;
                margin-bottom: 2vw;
            }

            .text {
                font-size: 1.3vw;
            }
        }
    }

    .rgzn-container {
        .rgzn1 {
            width: 60vw;
            margin: auto;
            padding-top: 5vw;

            .tabs {
                display: flex;
                align-items: flex-end;
                margin-bottom: .8rem;
                height: 1.5rem;

                .tab-item {
                    font-size: .6rem;
                    margin-right: 2.5rem;
                    color: #919499;
                    cursor: pointer;
                }

                .active {
                    font-size: 1rem;
                    font-weight: bold;
                    color: black;
                }
            }

            .tabs-container {
                width: 100%;
                position: relative;
                height: 38vw;
                overflow: hidden;

                .tab-container-item {
                    width: 100%;
                    position: absolute;
                    left: 50%;
                    top: 0;
                    opacity: 0;

                    .tip {
                        font-size: .4rem;
                        color: #666666;
                        margin-bottom: 1rem;
                    }

                    .img-box {
                        width: 100%;
                        height: 29vw;
						text-align:center;
                        .img {
                            width: 85%;
                        }
                    }
                }

                .active {
                    top: 0;
                    left: 0;
                    opacity: 1;
                    z-index: 5;
                }
            }
        }
    }
}


/* 头部 */
/* 屏幕 > 1120px */
@media (min-width: 1120px) {
    .page {
        .header-container {

            .header1,
            .header2 {
                display: none;
            }
        }
    }
}

/* 700px < 屏幕 < 1099px */
@media (min-width: 700px) and (max-width: 1119px) {
    .page {
        .header-container {

            .header,
            .header2 {
                display: none;
            }
        }
    }
}

/* 屏幕 < 699px */
@media (max-width: 699px) {
    .page {
        .header-container {

            .header,
            .header1 {
                display: none;
            }
        }

        .rgzn-container {
            .rgzn1 {
                width: 90vw
            }
        }
    }
}


/* 底部 */
@media (min-width: 1000px) {
    .page {
        .footer-container {
            .footer2 {
                display: none;
            }
        }
    }
}

@media (max-width: 999px) {
    .page {
        .footer-container {
            .footer1 {
                display: none;
            }
        }
    }
}