body{

    width: 100vw;

    height: 100vh;

    overflow: hidden;

    display: flex;

    flex-direction: column;



}


@media screen and (max-width:700px){
    body{
        height: auto;
    }
}



header{

    background-color: white;

    box-sizing: border-box;

    position: relative;

    flex-shrink: 0;

}



header .headerBox{

    height: var(--header-height);

    border-bottom: 0.5vh solid var(--color-Primary);

}

header  .headerBox .right{

    display: flex;

    align-items: center;

}

header .headerBox .logo img{

    width: 13rem;

}



header .headerBox .menuBox{

    display: flex;

    align-items: center;

    gap: 3vw;

    margin-right: 50px;

    background-color: #fff;

}

header .headerBox .menuBox .nav a{

    font-size: 1.8rem;

    font-weight: bold;

    color: var(--color-Sub);

}

header .headerBox .menuBox .nav .children{

    display: none;

}

header .headerBox .menuBox .nav a:hover{

    color: black;

}

header .headerBox .menuBox .select a{

    color: black;

}

header .headerBox .menuBox .nav .children .select{

    color: black;

}

header .headerBox .right .mobMenuBtn .icon{

    font-size: 2rem;

    font-weight: bold;

    padding: 10px;

    color: var(--color-Sub);

}

header .headerBox .right .mobMenuBtn{

   width: 50px;

   height: 100%;

   margin-left: 10px;

   display: none;

}

header .headerBox .right .languageBtn{

    font-size: 1rem;

    /* font-weight: bold; */

    color: var(--color-Sub);

    display: flex;

    align-items: center;

}

header .headerBox .right .languageBtn:hover{

    color: var(--color-Primary);

}

header .headerBox .right .languageBtn .icon{

    font-size: 1rem;

    font-weight: 500;

    margin-right: 5px;

}

header .secMenu {

    width: 100%;

    height: 6vh;

    display: none;

    margin-top: 4px;

    background-color: #fff;

    border-bottom: 0.5vh solid var(--color-Primary);

}

header .secMenu .children{

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    box-sizing: border-box;

    gap: 20px;

    

    

}

header .secMenu a{

    font-size: 1.4rem;

    font-weight: bold;

    color: var(--color-Sub);

}

header .secMenu .select{

    color: black;

}



header .secMenu a:hover{

    color: black;

}





@media screen and (max-width:1100px) {

    header{

        position: sticky;

        top: 0;

        z-index: 999;

    }

    header .headerBox{

        /* padding: 0 10px; */

    }

    header .headerBox .menuBox{

        position: absolute;

        z-index: 9;

        top: var(--header-height);

        left: 0px;

        width: 100vw;

        flex-direction: column;

        gap: 20px;

        padding: 20px 0;

        display: none;

        border-bottom: 4px solid var(--color-Primary);

    }

    header .headerBox .menuBox .nav{

        text-align: center;

        width: 100%;

        padding: 1rem 0;

    }
    header .headerBox .right .languageBtn{
        font-size: 1.2rem;
    }
    header .headerBox .right .languageBtn .icon{
        font-size: 1.2rem;
    }
    header .headerBox .menuBox .nav .children{

        width: 100%;

        gap: 10px;

        padding: 20px 0;

        border-bottom: 2px solid var(--color-Primary);

        display: none;

    }

    header .headerBox .menuBox .nav .children a{

        display: block;

        padding: 5px 0;

        font-size: 1.3rem;

        color: var(--color-Sub);

    }

    header .headerBox .logo img{

        width: 200px;

    }

    header .headerBox .right .mobMenuBtn{

        display: block;

    }

    header .secMenu{

        display: none;

    }

}









.module1{

    width: 100%;

    height: 100%;


}

.module1 .box{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module1 .logo{
    width: 80%;
    background: #ffffff9e;
    padding: 1rem;
}

@media screen and (max-width:700px){
    .module1{
        height: 94vh;
    }
}




.module2{

    width: 100%;

    height: 100%;

    box-sizing: border-box;

}

.module2 .box{

    height: 100%;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    align-items: center;

}

.module2 .box .img{

    width: 100%;

    height: 100%;

}



.module2 .box .content{

    padding:0 5vw;

}

.module2 .box .content h1{

    font-size: 3.4rem;

    font-weight: 500;

    line-height: 4.2rem;

}

.module2 .box .content p{

    margin: 5vh 0;

    font-size: 1.6rem;

    color: black;

    line-height: 2.5rem;
    letter-spacing: 0px;
}

.module2 .box .content a{

    display: block;

}

.module2 .box .content button{

    background-color: var(--color-Primary);

    width: 100%;

    padding: 3vh 0;

    color: white;

    font-size: 1.4rem;

    transition: all 0.3s;

}

.module2 .box .content button:hover{

    background-color: var(--color-Primary2);

}

@media screen and (max-width:700px){

    .module2{

        height: auto;

    }

    .module2 .box{

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .module2 .box .img{

        height: 400px;

    }

    .module2 .box .content h1{

        font-size: 2.6rem;
        line-height: 3.2rem;

    }
    .module2 .box .content p{
        visibility:visible;
    }

}





























.module3{

    width: 100%;

    height: 100%;


    box-sizing: border-box;

}

.module3 .box{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    height: 100%;

}

.module3 .box .content{

    background-color: var(--color-Primary);

    color: white;

    padding: 3rem;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

}

.module3 .box .content h2{

    font-size: 3rem;

    border-bottom: 0.1rem solid white;

    display: inline-block;

    padding-bottom: 1vh;

    margin-bottom: 1rem;

    font-weight: bold;

    letter-spacing: 0.1rem;

}

.module3 .box .content p{

    font-size: 1.2rem;

    margin-bottom: 1rem;

}



@media screen and (max-width:700px){

    .module3{

        height: auto;

    }

    .module3 .box{

        grid-template-columns: repeat(1,1fr);

    }

    .module3 .box .img{

        height: 400px;

    }

    .module3 .box .content{

        padding: 2rem;

    }

}















.module4{

    width: 100%;

    height: 100%;

    padding-top: 1rem;

    box-sizing: border-box;

}

.module4 .box{

    display: flex;

    height: 100%;

}

.module4 .box .leftName{

    width: 20%;

    font-size: 1.4rem;

    font-weight: bold;

    color: var(--color-Primary);

}

.module4 .box .rightContent{

    width: 80%;

    padding-right: 5%;

    display: flex;

    flex-direction: column;

    height: 100%;

    overflow: hidden;

}

.module4 .box .rightContent .top{

    display: flex;

    gap: 10%;

    margin-bottom: 2vh;

}

.module4 .box .rightContent .top h2{

    font-size: 1.4rem;

    width: 30%;

    font-weight: bold;

}

.module4 .box .rightContent .top p{

    width: 80%;

    font-size: 0.9rem;

}

.module4 .box .rightContent .content{

    display: flex;

    height: 100%;

    gap: 2rem;

    align-items: flex-end;

}

.module4 .box .rightContent .scrollBox{

    height: 100%;

    width: 100%;

    overflow: hidden;

}

.module4 .box .rightContent .scrollBox::-webkit-scrollbar{

    display: none;

}

.module4 .box .rightContent .gridBox{

    display: flex;

    flex-wrap: wrap;

    grid-template-columns: repeat(5,1fr);

    height: 100%;

    width: 100%;

    /* gap: 2vh; */

    grid-column-gap: 2vh;

}



.module4 .box .rightContent .gridBox .list{

    width: calc((100% - 8vh) / 5);

    height: calc((100%) / 2);

    padding-bottom: 2vh;

    flex-shrink: 0;

    display: flex;

    flex-direction: column;

}

.module4 .box .rightContent .gridBox .list .img{

    display: block;

    width: 100%;

    height: 100%;

    margin-bottom: 0.5rem;

}

.module4 .box .rightContent .gridBox .list h5{

    font-size: 1.1rem;

    line-height: 1.3rem;

    height: 1.3rem;

    flex-shrink: 0;

    margin: 0;

}

.module4 .box .rightContent .gridBox .list p{

    font-size: 0.8rem;

    line-height: 1rem;

    height: 2rem;

    margin: 0;

    flex-shrink: 0;

}

.module4 .box .rightContent .gridBox .list .border{

    width: 100%;

    height: 100%;

    border: 0.2rem solid var(--color-Primary);

}

.module4 .box .rightContent .content .btnBox{

    display: flex;

    flex-direction: column;

    gap: 1rem;

    flex-shrink: 0;

    display: none;

    

}

.module4 .box .rightContent .content .btnBox button{

    width: 2rem;

    height: 2rem;

    background-color:rgb(177, 177, 177);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50px;

    transition: all 0.5s;

}

.module4 .box .rightContent .content .btnBox button:hover{

    background-color: var(--color-Primary);

}

.module4 .box .rightContent .content .btnBox button .icon{

    color: white;

    font-size: 1rem;

}



@media screen and (max-width:700px){

    .module4 .box{

        flex-direction: column;

    }

    .module4 .box .rightContent .scrollBox{

        overflow: auto;

    }

    .module4 .box .rightContent{

        width: 100%;

        padding: 0;

    }

    .module4 .box .rightContent .top{

        flex-direction: column;

    }

    .module4 .box .rightContent .top h2{

        width: 100%;

        margin: 1rem 0;

    }

    .module4 .box .rightContent .gridBox .list{

        width: calc((100% - 2vh) / 2);

    }

    .module4 .box .rightContent .content .btnBox{

        display: none;

    }

    .module4 .box .rightContent .gridBox .list .border{

        border: 4px solid var(--color-Primary);

    }

}









.module5{

    width: 100%;

    height: 100%;

    padding: 1rem 0;

    box-sizing: border-box;

    overflow: hidden;

}



.module5 .box .top{

    display: grid;

    grid-template-columns: 30% 30% 40%;

}

.module5 .box .top h2{

    font-size: 1.4rem;

    font-weight: bold;

    width: 70%;

}

.module5 .box .top .t1{

    color: var(--color-Primary);

}

.module5 .box .top p{

    font-size: 0.8rem;

    width: 70%;

}

.module5 .box .content{

    display: flex;

    gap: 2rem;

    margin-top: 5vh;

    align-items: flex-end;

    justify-content: center;
}

.module5 .box .content .btnBox{

    display: flex;

    flex-direction: column;

    gap: 1rem;

    flex-shrink: 0;

    display: none;

}

.module5 .box .content .btnBox button{

    width: 2rem;

    height: 2rem;

    background-color: rgb(177, 177, 177);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50px;

    transition: all 0.5s;

}

.module5 .box .content .btnBox button:hover{

    background-color: var(--color-Primary);

}

.module5 .box .content .btnBox button .icon{

    color: white;

}

.module5 .box .content .scrollBox{

    overflow: hidden;

    height: 60vh;

}

.module5 .box .gridBox{

    display: grid;

    grid-template-columns: repeat(7,1fr);

}

.module5 .box .gridBox::-webkit-scrollbar{

    display: none;

}

.module5 .box .gridBox .list{

    height: 20vh;

    padding:1rem 0.5rem;

    display: flex;

    align-items: center;

    justify-content: center;

}

.module5 .box .gridBox .list .img{

    background-color: #ffffff;

    border: 0.3rem solid #DCDDDD;

    box-sizing: border-box;

    padding: 0.5rem;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}   



.module5 .box .gridBox .list img{

    max-width: 100%;

    max-height: 100%;

}





@media screen and (max-width:700px){
    .module5{
        height: auto;
    }
    .module5 .box .content .scrollBox{
        height: auto;
    }

    .module5 .box .top{

        grid-template-columns: 1fr;

        gap: 1rem;

    }

    .module5 .box .top h2{

        font-size: 2rem;

        width: 100%;

    }

    .module5 .box .top p{

        width: 100%;

        font-size: 1.2rem;

    }

    .module5 .box .gridBox{

        grid-template-columns: repeat(3, 1fr);

        overflow: visible;

        padding-bottom: 5vh;

        height: auto;

    }

    .module5 .box .gridBox .list{

        height: 13vh;

        padding: 0.5rem;

    }

    .module5 .box .content .scrollBox{
        width: 100%;

    }

}

















.module6{

    width: 100%;

    height: 100%;

    overflow: auto;
}

.module6 .box{

    background-color: var(--color-Primary);

    padding: 5vw;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    gap: 3vh;

}

.module6 .box .content{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    

    color: white;

}



.module6 .box .content .left h3{

    font-size: 1.6rem;

}

.module6 .box .content .left h2{

    font-size: 2.2rem;

    line-height: 3rem;

    margin-top: 3vh;

}

.module6 .box .content .list h4{

    font-size: 1.4rem;

    font-weight: bold;

}

.module6 .box .content .list p{

    margin: 1rem 0;

    font-size: 1.2rem;

    font-weight: 100;

    letter-spacing: 0.05rem;

}


.module6 .formBox{
    width: 100%;
    background-color: #fff;
    padding: 20px;
}
.module6 .formBox .inputBox{
    margin-bottom: 10px;
}
.module6 .formBox .inputBox .name{
    font-size: 1rem;
    font-weight: bold;
}
.module6 .formBox .inputBox input,.module6 .formBox .inputBox textarea{
    width: 100%;
    border: none;
    padding:5px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgb(97, 97, 97);
}
.module6 .formBox .submit{
    background-color: var(--color-Primary);
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items:center;
    gap: 10px;
    font-size: 1rem;
    margin: 20px 0;
}
.module6 .formBox .submit:hover{
    background-color: var(--color-Primary2);
}
.module6 .formBox .submit span{
    font-size: 20px;
}
.module6 .formBox img{
    width: 100%;
}


.module6 .box .codeBox{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    color: white;

}

.module6 .box .codeBox .code{

    display: flex;

    width: 100%;

    align-items: center;

}

.module6 .box  .codeBox img{

    width: 25%;

    height: auto;

    flex-shrink: 0;

}

.module6 .box  .codeBox p{

    font-size: 1.4rem;

    padding-left: 1rem;

    margin: 0;

}



@media screen and (max-width:700px){

    .module6{
        height: auto;
    }

    .module6 .box .content{

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .module6 .box .codeBox{

        grid-template-columns: 1fr;

        gap: 20px;

    }

}











.module7{

    width: 100%;

    height: 100%;

    padding: 5vh 0;

}

.module7 .box{

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}



.module7 .content{

    display: grid;

    grid-template-columns: 30% 66%;

    justify-content: space-between;

    height: 100%;

}

.module7 .content .left{

    display: flex;

    flex-direction: column;

    justify-content: space-between;

}

.module7 .content .left h2{

    font-size: 4rem;

}

.module7 .content .left p{

    font-size: 1.2rem;

    margin: 2vh 0;

}

.module7 .content .left a{

    display: block;

}

.module7 .content .left button{

    width: 90%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background-color: var(--color-Primary);

    padding:5%;

    color: white;

    font-size: 1.4rem;

    transition: all 0.3s;

}

.module7 .content .left button:hover{

    background-color: var(--color-Primary2);

}

.module7 .content .right{

    width: 100%;

    height: 100%;

    position: relative;

}

.module7 .content .right .swiper{

    width: 100%;

    height: 100%;

}

.module7 .content .right .swiper .swiper-slide{

    height: 100%;

    width: 100%;

}

.module7 .content .right .imgBox{

    height: 100%;

    width: 100%;

    color: white;

    padding: 6%;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;

}
.module7 .content .right .imgBox .img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0.4;
    z-index: 2;
}

.module7 .content .right .imgBox .img{

    position: absolute;

    width: 100%;

    height: 100%;

    left: 0;

    top: 0;

    z-index: -1;

    transition: all 0.5s;

}

.module7 .content .right .imgBox:hover h2{

    color: var(--color-Primary);

}

.module7 .content .right .imgBox:hover .img{

    transform: scale(1.1);

}



.module7 .content .right .imgBox h2{

    font-size: 2.8rem;

    transition: all 0.3s;

    width: 70%;

}

.module7 .content .right .imgBox p{

    font-size: 1.2rem;

}

.module7 .content .right .nextBtn{

    position: absolute;

    right: 3%;

    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    width: 2.5rem;

    height: 2.5rem;

    background-color: #fff;

    border-radius: 50rem;

    transition: all 0.3s;

}

.module7 .content .right .nextBtn:hover{

    background-color: var(--color-Primary);

}

.module7 .content .right .nextBtn:hover .icon{

    color: white;

}

.module7 .content .right .nextBtn .icon{

    font-size: 1.4rem;

    transition: all 0.3s;

    font-weight: bold;

}



.module7 .floor_bottom{

    display: grid;

    grid-template-columns: 34% calc(33% + 1.5vw) auto ;

    height: 100%;

    align-items: center;

    font-size: 1.6rem;

}

.module7 .floor_bottom .l{

    border-left: 2px solid rgb(59, 59, 59);

    padding-left: 0.5rem;

}





@media screen and (max-width:700px){

    .module7{

        height: auto;

    }

    .module7 .content{

        display: block;

        min-height: auto;

    }

    .module7 .content .left button{

        width: 100%;

    }

    .module7 .content .right{

        margin: 20px 0;

        height: 60vh;

    }

    .module7 .floor_bottom{

        grid-template-columns:1fr;

        gap: 10px;

        padding-bottom: 20px;

    }

}















.module8{

    width: 100%;

    height: 100%;

    padding-top: 3vh;

    box-sizing: border-box;

    overflow: hidden;

}

.module8 .box{

    height: 100%;

    display: flex;

    flex-direction: column;



}

.module8 .title{

    color: var(--color-Primary);

    font-size: 1.8rem;

    font-weight: bold;

    margin-bottom: 2vh;

}

.module8 .content{

    display: flex;

    height: 76vh;

    gap: 2rem;

    align-items: flex-end;

}

.module8 .content .scrollBox{

    overflow: hidden;

    height: 100%;

}

.module8 .content .btnBox{

    display: flex;

    flex-direction: column;

    gap: 1rem;

    flex-shrink: 0;

    display: none;

    margin-bottom: 1rem;

}

.module8 .content .btnBox button{

    width: 2rem;

    height: 2rem;

    background-color: rgb(177, 177, 177);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50px;

    transition: all 0.5s;

}

.module8 .content .btnBox button:hover{

    background-color: var(--color-Primary);

}

.module8 .content .btnBox button .icon{

    color: white;

}

.module8 .gridBox{

    display: grid;

    grid-template-columns: repeat(5,1fr);

    grid-column-gap: 1rem;

}

.module8 .gridBox .list{

    height: calc(76vh / 2);

    padding-bottom: 1rem;

    width: 100%;

    overflow: hidden;

}

.module8 .gridBox .list:hover h3{

    color: var(--color-Primary);

}

.module8 .gridBox .list:hover .img{

    transform: scale(1.1);

}

.module8 .gridBox .list .imgBox{

    display: block;

    width: 100%;

    height: 100%;

    padding: 0.6rem;

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    position: relative;

    overflow: hidden;

}

.module8 .gridBox .list .imgBox .img{

    position: absolute;

    left: 0;

    top: 0;

    z-index: -1;

    width: 100%;

    height: 100%;

    transition: all 0.3s;

}
.module8 .gridBox .list .imgBox .img::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: black;
    opacity: 0.4;
    z-index: 2;
}

.module8 .gridBox .list .imgBox h3{

    font-size: 1.6rem;

    transition: all 0.3s;

    width: 80%;

}

.module8 .gridBox .list .imgBox p{

    font-size: 1.1rem;

}





@media screen and (max-width:700px){

    .module8{

        height: auto;

    }

    .module8 .gridBox{

        grid-template-columns: repeat(2, 1fr);

        

    }

    .module8 .gridBox .list{

        height: 250px;

    }

    .module8 .content .scrollBox{

        overflow: auto;

    }

}



















.module9{

    width: 100%;

    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;

}

.module9 .bigTitle{

    line-height: 6vh;

    font-size: 1.6rem;

    font-weight: bold;

    color: var(--color-Primary);

    border-bottom: 0.5vh solid var(--color-Primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.module9 .bigTitle button .icon{
    font-size: 1.4rem;
    font-weight: bold;
}


.module9 .box{
    height: auto;
    padding-top: 1rem;
    flex-shrink: 0;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;

}

.module9 .content{

    display: grid;

    grid-template-columns: 15% 40% 30%;

    justify-content: space-between;

    margin-bottom: 1rem;
    flex-shrink: 0;

}
.module9 .content p{
    letter-spacing: 0px;
}

.module9 .content .left h4{

    font-weight: bold;

    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;

}



.module9 .content .right h4{

    font-size: 1rem;

    font-weight: bold;
    margin-top: 0;

}

.module9 .imgBox{

  height: 100%;
  padding:0 3rem;
  overflow: auto;

}

.module9 .imgBox img{

    max-width: 100%;

    max-height: 100%;

}



@media screen and (max-width:700px){

    .module9 .content{

        grid-template-columns: 1fr;

    }

}







.module10{

    width: 100%;

    height: 100%;

    padding-top: 3vh;

    box-sizing: border-box;

    overflow: hidden;

}

.module10 .box{

    height: 100%;

    display: flex;

    flex-direction: column;



}

.module10 .title{

    color: var(--color-Primary);

    font-size: 1.8rem;

    font-weight: bold;

    margin-bottom: 2vh;

}

.module10 .content{

    height: 76vh;

    display: flex;

    gap: 2rem;

    align-items: flex-end;

}

.module10 .content .btnBox{

    display: flex;

    flex-direction: column;

    gap: 1rem;

    flex-shrink: 0;

    display: none;

}

.module10 .content .btnBox button{

    width: 2rem;

    height: 2rem;

    background-color: rgb(177, 177, 177);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50px;

    transition: all 0.5s;

}

.module10 .content .btnBox button:hover{

    background-color: var(--color-Primary);

}

.module10 .content .btnBox button .icon{

    color: white;

}

.module10 .scrollBox{

    width: 100%;

    height: 100%;

    overflow: hidden;

}

.module10 .gridBox{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    grid-column-gap: 2rem;



}

.module10 .gridBox .list{

    height: calc(76vh / 2);

    padding-bottom: 2rem;

}

.module10 .gridBox .list .card{

    position: relative;

    border: 0.2rem solid var(--color-Primary);

    box-sizing: border-box;

    height: 100%;

}



.module10 .gridBox .list:hover .imgBox h4{

    color: var(--color-Primary);

}

.module10 .gridBox .list:hover .mask{

    opacity: 1;

}

.module10 .gridBox .list .imgBox{

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 3%;

}

.module10 .gridBox .list .imgBox h4{

    margin: 0;

    color: white;

    font-size: 1.4rem;

    line-height: 2rem;

    position: relative;

    z-index: 4;

}

.module10 .gridBox .list .imgBox p{

    margin: 0;

    color: white;

    position: relative;

    font-size: 1.1rem;

    z-index: 4;

}

.module10 .gridBox .list .mask{

    position: absolute;

    width: 100%;

    height: 100%;

   left: 0px;

   top: 0px;

   background-color: #0000007e;

   display: flex;

   align-items: center;

   justify-content: center;

   z-index: 3;

   opacity: 0;

   transition: all 0.5s;

}

.module10 .gridBox .list .mask button{

    background-color: var(--color-Primary);

    width: 3rem;

    height: 3rem;

    border-radius: 50rem;

    

}

.module10 .gridBox .list .mask button .icon{

    color: white;

    font-size: 1.4rem;

}





@media screen and (max-width:700px){

    .module10 .gridBox{

        grid-template-columns: repeat(1, 1fr);

    }



    .module10 .floor{

        grid-template-columns: repeat(1, 1fr);

    }

    .module10 .scrollBox{

        overflow: auto;

    }

    .module10 .gridBox .list .card{

        border: 0.2rem solid var(--color-Primary);

    }



}











.PopupBox1 .mask{

    position: fixed;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    z-index: 98;

    background-color: rgba(0, 0, 0, 0.6);

    display: none;

}

.PopupBox1{

    display: inline;

}

.PopupBox1 .PopBox{

    position: fixed;

    left: 50%;

    top: 50%;

    transform: translate(-50%,-50%);

    z-index: 99;

    display: none;

}

.PopupBox1 .PopBox .content{

    width: 70vw;

    max-height: 90vh;

    background-color: white;

    border-radius: 10px;

    transform: scale(0.4);

    transition: all 0.5s;

}

.PopupBox1 .PopBox .content .box{

    width: 100%;

    height: 100%;

    padding: 1rem;

    padding-top: 5rem;

}

.PopupBox1 .PopBox .content .box video{

    width: 100%;

    max-height: 100%;

}

.PopupBox1 .PopBox .content .closeBtn{

    position: fixed;

    right: 1rem;

    top: 1rem;

    z-index: 2;

    padding: 10px;

    transition: all 0.6s;

}

.PopupBox1 .PopBox .content .closeBtn:hover{

    transform: rotate(90deg);

}

.PopupBox1 .PopBox .content .closeBtn .icon{

    color: rgb(56, 56, 56);

    font-size: 26px;

}



















.module11{

    width: 100%;

    height: 100%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

}

.module11 .title{

    color: var(--color-Primary);

    font-size: 1.8rem;

    font-weight: bold;

    height: 8vh;

    line-height: 8vh;

    border-bottom: 0.5vh solid var(--color-Primary);

}

.module11 .box{

    height: 100%;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    height: 76vh;

    

}



.module11 .box .imgBox{

    height: 100%;

}

.module11 .box .imgBox .img{

    width: 100%;

    height: 100%;

}

.module11 .box .list{

    overflow: auto;

}

.module11 .box .list::-webkit-scrollbar{

    display: none;

}



.module11 .box .list li{

    padding: 0.5rem 0;

    padding-left: 3rem;

    font-size: 1.4rem;

    display: flex;

    align-items: center;

    gap: 2rem;

    width: 100%;

    border-bottom: 0.4vh solid var(--color-Primary);

}

.module11 .box .list li .left {

    width: 10%;

    flex-shrink: 0;

}

.module11 .box .list li .left h4{

    font-size: 1.4rem;

    margin: 0;

}

.module11 .box .list li .left p{

    font-size: 0.7rem;

}

.module11 .box .list li .right{

    width: 100%;

    overflow: hidden;

}

.module11 .box .list li p{

    font-size: 0.9rem;

    margin: 0;

}





.module11 .floor{



    height: 100%;



}





@media screen and (max-width:700px){

    .module11{

        height: auto;

    }

    .module11 .box{

        height: auto;

        grid-template-columns: repeat(1, 1fr);

    }

    



    .module11 .box .list li{

        padding: 0.5rem 10px;

        width: 100%;

    }



    .module11 .box .list li .left{

        width: 60px;

    }



    .module11 .floor{

        grid-template-columns: repeat(1, 1fr);

        gap: 5px;

        margin-top: 1vh;

    }

    .module11 .box .imgBox{

        height: 300px;

    }



}





.module12{

    width: 100%;

    height: 100%;

}

.module12 .title{

    text-align: center;

    padding: 1rem 0;

    font-size: 2rem;

    color: var(--color-Primary);

    font-weight: bold;

}

.module12 .time{

    text-align: center;

    font-size: 1rem;

}

.module12 .content{

    margin-top: 1rem;

    padding: 1rem 3rem;

    border-top: 0.5vh solid var(--color-Primary);

}

















.floor_bottom{

    display: grid;

    grid-template-columns: repeat(3,1fr);

    height: 100%;

    align-items: center;

    font-size: 1.6rem;

}

.floor_bottom .l{

    border-left: 2px solid rgb(59, 59, 59);

    padding-left: 0.5rem;

}

@media screen and (max-width:700px){

    .floor_bottom{

        grid-template-columns: repeat(1,1fr);

    }

}







footer{

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-size: 0.8rem;

    letter-spacing: 0.05rem;

    color: var(--color-Sub);

    padding-top:1rem !important;

    padding-bottom: 1rem !important;

    flex-shrink: 0;

}

footer .right{

    display: flex;

    align-items: center;

    gap: 2rem;

}



@media screen and (max-width:700px){



    footer,footer .right{

        text-align: center;

        font-size: 1rem;

        flex-direction: column;

        gap: 0.2rem;

    }

    footer{

        padding-top:10px !important;

        padding-bottom: 20px !important;

    }

}







.message-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999999999;
}

.message {
    background-color: #fff;
    border: 1px solid #ebeef5;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 15px 15px 20px;
    margin-bottom: 10px;
    min-width: 300px;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'iconfont';
}

.message.show {
    opacity: 1;
}

.message.success {
    color: #67c23a;
}
.message.success::before{
    content: "\e66e";
    margin-right: 10px;
}

.message.error {
    color: #ff3b3b;
}
.message.error::before{
    content: "\e66a";
    margin-right: 10px;
}

.message.warning {
    color: #f5a52e;
}
.message.warning::before{
    content: "\e63c";
    margin-right: 10px;
}

.message.info {
    color: #909399;
}