* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}



/* ----------------------------------------------------------------------首页头部----------------------------------------------------------------------- */

.section {
    display: flex;
    flex-direction: column;
}

.friend-wrap {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
	display: flex;
    overflow: hidden;
    justify-content: left;
}

.friend-bg {
    width: 100%;
    height: auto;
    display: block;
}

.friend-box {
    position: absolute;
    width: 85%;
    padding-left: 8%;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.friend-banner img {
    width: 100%;
    display: block;
	margin-top: 150px;
}

.friend-banner2 img {
    width: 100%;
    display: block;
    margin-top: 50px;

}

.friend-content {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 5%;

}

.friend-content .item {
    text-align: left;
}

.friend-content .item h3 {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 24px;
    color: #275DBF;
    margin-top: 30px;
}

.friend-content .item p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
}


.map {
    text-align: center;

    .map-title-img {
        width: 1600px;
        height: auto;
        margin: 60px 0 0;
    }

    .map-box {
        display: flex;
        justify-content: center;
        /* height: 500px; */
        transform: translateY(100%);
        position: relative;
        z-index: 100;

        .map-box-item {
            cursor: pointer;
            width: 280px;
            height: 90px;
            background: #FFFFFF;
            box-shadow: 3px 4px 15px 0px rgba(39,93,191,0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                width: auto;
                height: 70px;
            }
        }

            .map-box-item.pos0 {
                transform: rotate(-25deg) translateY(130px) rotate(0deg);
                margin-right: 60px;
            }

            .map-box-item.pos1 {
                transform: rotate(-10deg) translateY(30px) rotate(0deg);
                margin-right: 30px;
            }

            .map-box-item.pos2 {
                transform: rotate(0deg) translateY(0px) rotate(0deg);
            }

            .map-box-item.pos3 {
                transform: rotate(10deg) translateY(30px) rotate(0deg);
                margin-left: 30px;
            }

            .map-box-item.pos4 {
                transform: rotate(25deg) translateY(130px) rotate(0deg);
                margin-left: 60px;
            }

        .select {
            background: #F8FAFF;
			box-shadow: 5px 4px 15px 0px rgba(39, 93, 191, 0.3);
        }

        .hidden {
            display: none !important;
        }
    }

    .pagination {
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
        position: relative;
        z-index: 250;
        display: flex;
        position: absolute;
        top: 50%;
        left: 45%;

        button {
            cursor: pointer;
            background: #275DBF;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            font-size: 26px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.2s;

            &:hover {
                opacity: 0.85;
            }

            &:disabled {
                background: #ccc;
                cursor: not-allowed;
                opacity: 1;
            }
        }

        .page-info {
            font-size: 14px;
            color: #333;
            white-space: nowrap;
        }
    }

    .map-text {
        position: relative;

        .map-text-box {
            position: absolute;
            z-index: 200;
            top: 36%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            justify-content: center;

            .title {
                font-weight: bold;
                font-size: 18px;
                color: #333333;
            }

            .dsc {
                width: 763px;
                font-weight: 400;
                font-size: 16px;
                color: #787878;
                line-height: 30px;
            }
        }

        .ditu {
            margin-top: -17%;
            width: 100%;
            height: auto;
        }
    }
}
