/* 首页全屏模块 */
.bg-full {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #bdbdbd 100%);
    overflow: hidden;
}

.bg-full .slogan {
    position: relative;
    z-index: 2;
    /* margin: 0 auto; */
    width: 760px;
    font-size: 52px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

.bg-full .slogan .point-me {
    position: absolute;
    margin-top: 12px;
    display: inline-block;
    padding: 2px 6px;
    background: #000;
    color: #fff;
    font-size: 12px;
}

/* 打字文本下面的标语文本 */
.bg-full .slogan-text2 {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    font-size: 20px;
    color: #5e5d5d;
}

@media screen and (max-width: 800px) {
    .bg-full .slogan {
        font-size: 32px;
    }
    .bg-full .slogan-text2 {
        font-size: 16px;
    }
}

/* 打字效果 */
#banner_slogan {
    display: inline-block;
}

#banner_slogan .text-linear {
  background: linear-gradient(45deg, rgb(255, 81, 0), rgb(241, 197, 21));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* 特效按钮外层容器 */
.shadow-btn-wrap {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* 特效按钮 */
.shadow-btn {
    width: 150px;
    height: 60px;
    border-radius: 50px;
    background-image: linear-gradient(135deg, #fb925e 0%, #e6660b 100%);
    box-shadow: 0 20px 30px -6px rgba(238, 103, 97, 0.5);
    outline: none;
    cursor: pointer;
    border: none;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease-in-out;
}

.shadow-btn a {
    color: white;
    text-decoration: none;
}
  
.shadow-btn:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.shadow-btn:active {
  opacity: 0.5;
}

/* 背景图片组 */
.img-box {
    position: absolute;
    border-radius: 6px;
    overflow: hidden;
    z-index: 0;
}

.img-box.box1 {
    right: -260px;
    bottom: -60px;
    width: 920px;
    transform: rotate(-30deg);
    opacity: .12;
    mix-blend-mode: multiply;
    animation: fadeIn 1s ease-in-out;
    transition: all 0.3s;
}

.img-box.box2 {
    left: -160px;
    bottom: -260px;
    width: 720px;
    transform: rotate(30deg);
    opacity: 0.1;
    mix-blend-mode: multiply;
    transition: all 0.3s;
}

.img-box.box2:hover, .img-box.box1:hover {
    transform: scale(1.01);
    transition: all 0.6s;
}

.img-box img {
    width: 100%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.12;
    }
}