#container {
	position: relative;
	width: 100%;
	height: 100vh;
    max-height: 100vh;
	min-width: 1200px;
}

.bg_top{
    position: relative;
    height: 76vh;
    background-image: url('https://oss.vidzochat.com/app/wecam/website/bg-home.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-sizing: border-box;
    overflow: hidden;
}

.logo{
    margin-left: 20%;
    margin-top: 2%;
}

.logo img{
    width: 231px;
    height: 56px;
}

.content{
    width: 100%;
    margin-top: 118px;
    display: flex;
    flex-direction: column;
    margin-left: 20%;
}

.content .des1{
    width: 796px;
    height: 76px;
    font-family: San Francisco Display, San Francisco Display;
    font-weight: bold;
    font-size: 3.5vw;
    color: #FFFFFF;
    line-height: 75px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.content .des2{
    margin-top: 32px;
    height: 48px;
    font-family: San Francisco Display, San Francisco Display;
    font-weight: 500;
    font-size: 2vw;
    color: #FFFFFF;
    line-height: 47px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.dowload_icon{
    position: absolute;
    bottom: 50px;
    margin-left: 20%;
    display: flex;
    z-index: 1000;
}

.dowload_icon img{
    width: 202px;
    height: 60px;
    cursor: pointer;
}

.dowload_icon :nth-child(1){
    margin-right: 32px;
}

.bg_btm{
    position: relative;
    height: 24vh;
}

.footer {
    position: absolute;
    left: 360px;
    bottom: 56px;
}

.footer__content {
    margin-bottom: 10px;
}

.footer__links {
    display: flex;
    justify-content: center;
    font-size: 14px;  
    color: #838286;      
}

.footer__link {
    text-decoration: none; 
    padding: 0 10px;
}

.footer__link:hover {
    text-decoration: underline; 
    color: #0056b3; 
}

.footer__link:not(:last-child) {
    border-right: 1px solid #838286;
}

.swiper-container{
    overflow: hidden;
    position: absolute;
    border-radius: 32px;
    top: 12vh;
    right: 13vw;
    height: 76vh;
    /* 关键修改：让容器宽度自适应，保持合理的宽高比 */
    width: calc(76vh * 0.6); /* 假设图片宽高比为3:5，可根据实际图片调整 */
    max-width: 25vw; /* 最大不超过屏幕宽度的25% */
    min-width: 280px; /* 最小宽度保证可用性 */
    padding-bottom: 30px;
    box-sizing: border-box;
}

.swiper-container .swiper-slide {
    /* 确保slide容器正确 */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-container .swiper-slide img{
    /* 关键修改：使用object-fit保持图片比例 */
    width: 100%;
    height: 100%;
    object-fit: contain; /* 保持图片完整显示，不裁剪不变形 */
    object-position: center;
}

.swiper-container .swiper-wrapper{
    /* 让wrapper自适应容器 */
    width: 100%;
    height: 100%;
}

/* 响应式适配不同屏幕尺寸 */
@media screen and (max-width: 1920px) and (min-width: 1600px) {
    .swiper-container {
        width: calc(76vh * 0.65);
        max-width: 28vw;
    }
}

@media screen and (max-width: 1599px) and (min-width: 1400px) {
    .swiper-container {
        width: calc(76vh * 0.7);
        max-width: 30vw;
    }
}

@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .swiper-container {
        width: calc(76vh * 0.75);
        max-width: 32vw;
    }
}