@charset "utf-8";

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin:0px;
}


.mainBg{

    width: 1160px;
    min-width: 1160px;
    max-width:1160px;

    background: white;
    padding: 30px;

}


.mainBg #categoryNote{
    font-size: 12px;
    font-weight: 300;
    color: gray;
    width: 100%;
    text-align: right;
    padding: 10px;

}

.mainBg:has( #categoryNote ){
    padding-top: 10px;
}





.langDiv{
    position:absolute;
    top:10px;
    right:10px;
    z-index: 10000;

    width: 100%;
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
}

.langDiv a{
    color: white;
    margin: 20px 20px 20px 0px;
    text-decoration: none;
    font-size: 16px;

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

}

.logo img{
    width:100%;
    margin-top:18px;
}


.submit{
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 10px;
}

.submit > div:first-child{
    padding: 10px 30px;
    border:1px solid white;
    opacity:0.9;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
}

.submit > div:first-child:hover{
    box-shadow: 0 0 0 3px orange;
}





.bannerWrap{


    position:relative;
    padding:70px 0 0 0;
    margin:0px;
    width:100%;
    max-width: 1160px;
    font-size: 30px;

}

.title{
    color: white;
    text-shadow:0px 0px 2px #F900A6;

    font-weight: bold;
    font-family: Impact, Charcoal, sans-serif;
    line-height: 45px;

    letter-spacing: 3px;
}
.title  span{
    color: #F83D5D;
    text-shadow:0px 0px 5px black;
}

.titleCn{
    color:white;
    text-shadow:0px 0px 5px black;
    font-weight: bold;
    line-height: 45px;

    letter-spacing: 3px;
}

.rowWrap{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    padding: 20px 0px;
}

.rowWrap > div{
    flex-grow: 1;
}

.colWrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,0.5);
    padding: 20px 0px;
}

.tabWrap{
    display: flex;
    flex-direction: row;

}
.tabWrap > div {
    border-radius: 10px 10px 0 0 ;
    border-top: 1px solid white;

    color:white;
    height:50px;
    width:50%;

}
.tabWrap > div > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 16px;

}
.tabWrap > div > div:not(.tabSel){
    cursor: pointer;
    border-bottom: 1px solid white;
}
.tabWrap .tabSel{
    background: rgba(255,255,255,0.5);

    width: 100%;
    height: 100%;
}

.mask{
    background:linear-gradient(90deg,rgba(0,0,0,1),rgba(0,0,0,0));
    height:500px;
    width:10%;
}

.categoryMenu > div{

    padding: 5px 10px;
    margin: 10px 20px;
    border:1px solid white;
    font-size: 16px;
    position: relative;
    opacity: 0.8;
}

.categoryMenu > div >a{

    text-decoration: none;
    color:white;
}


.categoryMenu > .sel{


    border:2px solid white;

}

.categoryMenu > .sel:after{

    content: "";
    position: absolute;
    width:10px;
    height:10px;
    background:  var(--form-main-color);
    border-right: 2px solid white;
    border-bottom: 2px solid  white;
    transform: rotate(45deg);
    bottom:  -7px;
    left:35px;

}


.mainBgMobile{

    background: white;
    padding: 30px;

}



.footer {
    width:100%;
    display:flex;
    flex-direction: column; 
    opacity: 0.5; 
}
.footer .contact {
    border-bottom: 1px solid white;
    padding:10px;
    display:flex;
    flex-direction: row;
    align-items: center;
    min-height:100px;
}

.footer .contact .txtwrapper {

    color: #fff;
    font-size: 13px;
    line-height: 1.75em;
    padding-left: 40px;

}

.footer .copyrights {
    color: #fff;
    padding: 10px;
    font-size: 12px;
}