/* 给整个容器加相对定位基准 */
.home_show_section_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* 左下角半圆 */
/* .home_show_section_box::before {
    content: '';
    position: absolute;
    left: -8vw;
    bottom: -12vw;
    width: 20vw;
    height: 20vw;
    border-radius: 50%;
    background: rgba(0, 255, 230, 1);
    z-index: 1;
} */

/* 右上角半圆 */
/* .home_show_section_box::after {
    content: '';
    position: absolute;
    right: -5vw;
    top: 1vw;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    background: #ffffff;
    z-index: 1;
} */

.home_show_section_box img {
    width: 100%;
    /* max-height: 600px; */
    object-fit: cover;
}

.home_show_section_img_phone {
    display: none;
}

.home_show_section_content {
    position: absolute;
    text-align: center;
    width: 100%;
    padding: 0px 5%;
}

.home_show_section_content h1,
.home_show_section_content span {
    font-family: 'MiSans', sans-serif;
    font-weight: 700;
    line-height: 1.2em;
    font-size: clamp(34px, 3.3vw, 64px);
    /* margin-left: 27px; */
    margin-bottom: 30px;
}

.home_show_section_content h1 {
    color: #FFFFFF;
}

.home_show_section_content span {
    color: #00FFE6;
}

.home_show_section_content .home_show_section_content_p {
    font-family: 'MiSans', sans-serif;
    color: #FFFFFF;
    font-size: clamp(16px, 1.67vw, 32px);
    font-weight: 400;
    line-height: 42px;
    /* color: rgba(41, 41, 41, 1); */
    /* margin-left: 27px; */
    /* margin-bottom: 1em; */
    width: 50%;
    margin: auto;
    /* font-size: 1.6vw; */
}

.home_show_section_content p {
    font-family: 'MiSans', sans-serif;
    margin-bottom: 0.5em;
}

.home_show_section_content_button {
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 1);
    padding: 8px 23px;
    color: #000000;
    margin-left: 27px;
}