

 
    /* 轮播图盒子 */
.banner-box {
    width: 100%;
    height: 600px;
    /* margin: 70px auto; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
     /* 上、下一页 */
     .prev,
     .next {
         opacity: 0;
         display: inline-block;
         cursor: pointer;
         width: 50px;
         height: 50px;
         position: absolute;
         top: 50%;
         color: #d2d0d0;
         z-index: 33;
         text-align: center;
         font-size: 40px;
         transform: translateY(-25px);
     }

     /* 上一页不同的属性 */
     .prev {
         left: 0;
         border-radius: 0 25% 25% 0;
     }

     /* 下一页不同的属性 */
     .next {
         right: 0;
         border-radius: 25% 0 0 25%;
     }

     /* 图片容器 */
     .images {
         position: absolute;
         top: 0;
         left: 0;
         width: 100%;

     }

         /* 图片 */
    .images li {
        list-style: none;
        float: left;
    }
    .images li img {
        height: 100%;
        width:100%;
    }
     /* 小圆点盒子 */
    .dots {
         position: absolute;
         bottom: 20px;
         left: 50%;
         height: 13px;
         transform: translateX(-50%);
         /* background: rgba(255, 255, 255, .3); */
         border-radius: 7px;
         display: flex;
         z-index: 99;

     }
     
        /* 小圆点 */
    .dots li {
        width: 10px;
        width: 98px;
        height: 10px;
        /* border-radius: 50%; */
        border-radius: 30px;
        border-color: white;
        background-color: rgb(0, 0, 0, 0.2);
        margin: 2px 28px;
        cursor: pointer;
        position: relative;
    }

    /* 选择的小圆点 */
    .dots .active {
        background-color: rgb(247, 243, 243);
    }
    /* 鼠标移入盒子显示上、下按钮 */
    .banner-box:hover .prev,
    .banner-box:hover .next {
        /* opacity: 1; */
    }
 
    /* 鼠标移入上、下按钮，背景模糊 */
    .banner-box .prev:hover,
    .banner-box .next:hover {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .banner-box .banner-content{
        position: absolute;
        z-index: 88;
        inset: 0;
        /* width: var(--default-width); */
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 18px;
        transition: all 0.3s ease;
        padding: 0 20px;
        box-sizing: border-box
    }
    
    .banner-box .banner-content .banner-content-box{
        width: var(--default-width);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .banner-box .banner-content .left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .banner-box .banner-content .left .top .tit{
        font-size: 42px;
        margin-bottom: 12px;
        margin-right: 168px;
        opacity: .9;
    }
    .banner-box .banner-content .left .top .tip{
        font-size: 22px;
        margin-bottom: 62px;
        opacity: .8;
    }
    .banner-box .banner-content .left .bom .button{
        background-color: var(--main-color);
        opacity: .9;
        text-align: center;
        width: 168px;
        padding: 10px 0;
        font-size: 18px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .banner-box .banner-content .left .bom .button:hover{
        background-color: var(--main-color-hover);
        opacity: 1;
    }
        .banner-box .banner-content .right {
            background-color: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            width: 420px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            position: relative;
            z-index: 99;
            box-shadow: 1px 1px 10px 1px #ccc;
        }
    .banner-box .banner-content .right .right-box .tit{
       color: var(--default-text-color);
       text-align: center;
       margin-bottom: 20px;
       font-weight: 600;
    }
    .banner-box .banner-content .right .right-box .input-box{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
    }
    .banner-box .banner-content .right .right-box .input-box input{
        padding: 16px 12px;
        border: 1px solid #d6d6d6;
        border-radius: 20px;
        margin-right: 10px;
        width: 240px;
        font-size: 16px;
    }
    .banner-box .banner-content .right .right-box .input-box input:focus-visible{
        border: 1px solid var(--main-color);
        outline: none;
    }
    .banner-box .banner-content .right .right-box .input-box .button{
        background-color: var(--main-color);
        padding: 12px 10px;
        border-radius: 20px;
        font-size: 14px;
        cursor: pointer;
    }
            .banner-box .banner-content .right .right-box .tip {
                color: #333;
                font-size: 14px;
                margin-bottom: 22px;
                margin-left: 12px;
            }
    .banner-box .banner-content .right .right-box .tel{
        color: var(--main-color);
        font-size: 32px;
        margin-left: 12px;
        display: flex;
        align-items: center;
    }
    .banner-box .banner-content .right .right-box .tel img{
        width: 48px;
        height: 48px;
        display: inline-block;
        margin-right: 4px;
    }
    .banner-box .mask{
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        z-index: 8;
        transition: all 0.3s ease;
        z-index: 11;
    }