.home {
    font-size: calc(16 * 100vmin / 375);
    background: #F9F9F9;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.home-banner {
    /* 头部不设置固定高度，由内容撑开 */
    flex-shrink: 0;/* 防止被压缩 */
    position: relative;
}

.banner-info {
    position: absolute;
    right: 20px;
    bottom: 22px;
    display: flex;
    align-items: center;
}

.country-select {
    font-size: 12px;
    display: flex;
    align-items: center;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .4);
    padding: 0 4px 0 12px;
    color: white;
}

.country-select img {
    width: 8px;
    margin-left: 3px;
    transform: rotate(90deg);
}

.banner-info > img:nth-last-child(2)  {
    width: 22px;
    margin-left: 14px;
}

.banner-info > img:nth-last-child(1)  {
    width: 24px;
    margin-left: 14px;
}

.home-content {
    flex: 1; /* 占据剩余空间 */
    min-height: 0; /* 重要：解决 flex 容器滚动问题 */
    overflow-y: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 100px;
}

.tools {
    margin: 15px 20px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 13px;
}

.check-in {
    width: 50%;
    height: 16rem;
    background-image: url("/ac/assets/iN/overseasWebsite/bg_check_in.png");
    background-size: 100% 100%;
    position: relative;
}

.check-in span {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}


.tools-right {
    margin-left: 1rem;
    width: 50%;
}

.tools-right > div:nth-child(1) {
    height: 7.5rem;
    background-image: url("/ac/assets/iN/overseasWebsite/bg_trip.png");
    background-size: 100% 100%;
    box-shadow: 0px 10px 16px 0px rgba(0,0,0,0.03);
    border-radius: 8px;
    position: relative;
}

.tools-right > div:nth-last-child(1) {
    margin-top: 1rem;
    height: 7.5rem;
    background-image: url("/ac/assets/iN/overseasWebsite/bg_tool.png");
    background-size: 100% 100%;
    box-shadow: 0px 10px 16px 0px rgba(0,0,0,0.03);
    border-radius: 8px;
    position: relative;
}

.tools-right > div span {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.tools-right > div img {
    position: absolute;
    bottom: 1.3rem;
    right: 2rem;
    width: 2.25rem;
    height: 2.25rem;
}

.activity-item {
    margin: 15px 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 6px 12px 0px rgba(146,146,175,0.1);
}

.activity-item > img {
    width: 100%;
    height: 11.5rem;
}

.activity-item > div {
    padding: 0 15px;
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 500;
    font-size: 13px;
    background-color: white;
}