@charset "utf-8";

/* ========== 引导页 ========== */
.guide-page {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景视频 */
.guide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.guide-bg img {
    transform: scale(1.05);
 transition: transform 1.2s ease-out;
}
.guide-bg img,
.guide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}
.guide-bg img.scale-normal {
  transform: scale(1);
}
/* 遮罩层 */
.guide-overlay {
    /* position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 11, 71, 0.00) 0%, rgba(0, 11, 71, 0.28) 43.26%, rgba(0, 11, 71, 0.40) 100%);
    z-index: 1; */
}

/* 左上角 Logo */
.guide-logo {
    position: absolute;
    top: 50px;
    left: 75px;
    z-index: 3;
}

.guide-logo img {
    max-height: 64px;
    width: auto;
    display: block;
}

/* 中间公司列表 */
.guide-content {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    max-width: 870px;
}

.guide-company-list .big_title{
    margin-bottom: 30px;
    font-family: "OPPOSans M";
    color: var(--white-color);
    text-align: center;
    font-weight: 400;
    line-height: 1.2;
}
.guide-company-list ul {
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
}
.guide-company-list ul li {
    padding: 0 12px;
    width: 33.33%;
}
/* 公司链接卡片 */
.guide-company-item {
    position: relative;
    align-items: center;
    display: flex;
    width:100%;
    height: 60px;
    padding: 16px 10px 16px 28px;
    justify-content: space-between;
    align-items: center;
    border-radius: 70px;
    border: 1px solid #FFF;
    background-color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(4px);
    transition: all 0.35s ease;
    overflow: hidden;
}


/* 信息 */
.company-info {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 0;
}
.company-info h3 {
    font-size: 20px;
    font-weight:400;
    color: var(--dark-color);
    transition: color 0.35s ease;
}

/* 箭头 */
.company-arrow {
    position: relative;
    display: flex;
    width: 40px;
    height: 40px;
    padding: 2px 0;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}
.company-arrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: var(--main-color);
    z-index: -1;
    transition: background-color 0.35s ease;
}
.company-arrow img {
    position: relative;
    z-index: 1;
}

/* 触摸背景填充 ::after — 从箭头中心向四周扩散 */
.guide-company-item::after {
    content: "";
    position: absolute;
    right: 20px;  
    top: 50%;
    width: 40px; 
    height:40px;
    border-radius: 50px;
    background-color: var(--main-color);
    transform: translateY(-50%) scale(0);
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.08, 0.79, 0.45, 0.94);;
    z-index: 1;
}
.guide-company-item:hover{
    border: 1px solid rgba(255, 255, 255, 0.40);
    background-color: rgba(255, 255, 255, 0.40);
}

.guide-company-item:hover::after {
    transform: translateY(-50%) scale(50);
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.guide-company-item:hover .company-info h3 {
    color: var(--white-color);
}
.guide-company-item:hover .company-arrow::before {
    background-color: var(--white-color);
}

.guide-company-item:hover::before {
    background-color: var(--white-color);
}
.guide-company-item:hover .company-arrow svg path {
    stroke: var(--main-color);
}

/* ========== 响应式 - 手机 ========== */
@media (max-width: 767px) {
    .guide-page {
        min-height: 100vh;
    }
    .guide-logo {
        top: 25px;
        left: 20px;
    }

    .guide-logo img {
        height: 36px;
    }

    .guide-content {
        padding: 0 16px;
        bottom: 20px;
    }

   .guide-company-list ul {
    flex-flow: column;
   }
   .guide-company-list ul li {
    width: 100%;
    padding-bottom: 16px;
   }
   .guide-company-item {
    height: auto;
    padding: 10px 20px 10px 28px;
    }
    .company-info h3{
        font-size: 18px;
    }
    .company-arrow {
    width: 30px;
    height: 30px;
    }

}
