/* 大佬视角模块 - 按钮使用背景图片 */
.full_view {
    /* position: relative; */
    height: 910px;
    /* background: url('../image/footer-bg.png') no-repeat center top; */
    /* background-size: 100% auto; */
    display: flex;
    justify-content: center;
    /* 仅保留水平居中 */
    text-align: center;
    color: #fff;
}



/* 内容容器 - 调整垂直位置 */
.perspective-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin-top: 81px;
    /* 调整内容距离顶部的位置 */
}

/* 标题样式 */
.perspective-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 2px #000;
}

/* 描述文本 */
.perspective-desc {
    font-family: Source Han Sans SC;
    font-weight: 800;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 39px;
    padding-top: 56px;

}

/* 按钮样式 - 使用背景图片 */
.perspective-btn {
    width: 320px;
    height: 80px;
    background: url('/static/image/shop_ownhome/btn1.png') no-repeat center;
    background-size: 100% 100%;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    color: #000;
    font-family: Source Han Sans SC;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 98px;
    /* 确保按钮在容器内水平居中 */
}

/* 按钮悬停效果 */
.perspective-btn:hover {
    transform: translateY(-4px);
    background: url('/static/image/shop_ownhome/btn1-选中.png') no-repeat center;
    background-size: 100% 100%;
}

/* 按钮点击效果 */
.perspective-btn:active {
    transform: translateY(-1px);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .full_view {
        height: 600px;
        background-size: cover;
        background-image: none;
        position: none
    }

    .perspective-content img {
        /* margin-top: 30px; */
        width: 50%;
        /* 移动端调整内容位置 */
    }

    .perspective-content {
        /* margin-top: 300px; */
        /* 移动端调整内容位置 */
    }

    .perspective-title {
        font-size: 32px;
    }

    .perspective-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .perspective-btn {
        width: 280px;
        height: 70px;
        font-size: 20px;
    }

}

.all_back {
    width: 100%;
    background-image: url("/static/image/shop_ownhome/footerimg.jpg");
    background-size: cover;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    /* 图片居中 */
}