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

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background-color: #0a2044;
    color: white;
    line-height: 1.6;
    overflow: hidden; /* 确保身体元素不会显示滚动条 */
}

.pagesWrap {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: opacity 1s ease; /* 添加渐变效果 */
    opacity: 1;
}

.content {
    position: relative;
    z-index: 2;
    top: 40%;
    left: 50%;
    padding: 0 240px;
    transform: translate(-50%, -40%);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e6f0f9;
}

.company-info {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e6f0f9;
}

.link {
    margin-top: 20px;
}

.link a {
    display: inline-block;
    color: #a8e4ff;
    text-decoration: none;
    margin-top: 10px;
}

.link a:hover {
    text-decoration: underline;
}

.slider {
    width: 100%;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.driver {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    top: 24px;
    left: 0;
    z-index: 1;
    opacity: 0.5;
}

.slider-item {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent; /* 初始边框透明 */
    position: relative;
    z-index: 2;
}

.slider-item.active {
    transform: scale(1.2); /* 放大效果 */
    border: 1px solid #fff; /* 添加白色边框 */
    background-color: rgba(255, 255, 255, 0.1); /* 添加背景色提高可见性 */
}

.slider-item img {
    width: 80%;
    height: 80%;
}

.logo {
    /*width: 100px;*/
    /*height: 70px;*/
    /*background-color: pink;*/
    margin-bottom: 20px;
}

.target-url {
    display: inline-block;
    color: #a8e4ff;
    text-decoration: none;
    margin-top: 10px;
}

.target-url:hover {
    text-decoration: underline;
}

/* 放大效果 */
.background-image.zoom-in {
    animation: zoomIn 6s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}
.slider-item {
    /* 其他样式 */
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid transparent;
}
.slider-item:hover {
    border: 1px solid #fff;
}