:root {
	--sub-border-radius20: 20px; 
}
@media (max-width:768px){
    :root {
        --sub-border-radius20: 10px;
    }
}

/* background */
.bg-gray {
    background-color: #fafafa;
}
.bg-mint {
    background-color: #f2f7f9;
}
/* subtop */
#subtop {
    height: 650px;
    position: relative;
    overflow: hidden;
    transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
    -webkit-transition: all 2s;
}
#subtop.smHeight {
    height: 550px;
}
#subtop .subtopBg {
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;

    -webkit-animation: zoomOutInBg 1.8s ease-out 1;
    -moz-animation: zoomOutInBg 1.8s ease-in 1;
    -ms-animation: zoomOutInBg 1.8s ease-in 1;
    -o-animation: zoomOutInBg 1.8s ease-in 1;
    animation: zoomOutInBg 1.8s ease-in 1;
}
@keyframes zoomOutInBg {
    0% {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }  
}
#subtop .subtopTxt {
    position: relative;
    z-index: 8;
    padding-bottom: 7.5%;
}
#subtop .subTxt {
    opacity: .85;
}
@media (min-width:992px){
    #subtop .mainTxt {
        font-size: 8.5em;
    }
}
@media (max-width:768px){
    #subtop.smHeight,
    #subtop {
        height: 250px;
    }
}

/* subTabs */
#subTabs {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    z-index: 15;
}
#subTabs .con {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    border-radius: 100px;
    text-align: center;

    transition: background-color 0.4s, transform 0.4s 0.2s;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
#subTabs .con > a {
    display: block;
    flex-grow: 1;
    flex-basis: 33.3333%;
    color: rgba(255,255,255,.5);
    font-size: 20px;
    padding: 18px 10px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}
#subTabs .con > a.act {
    color: #222;
    background-color: #ffd324;
    border-radius: 100px;
    font-weight: 800;
}
@media (max-width:992px){
    #subTabs .con > a {
        font-size: 18px;
        padding: 15px 10px;
    }
}
@media (max-width:500px){
    #subTabs .con > a {
        font-size: calc(100vw * (16 / 500));
        padding: 8px 5px;
    }
}


/* bg-bk */
.bg-bk {
    background-color: #080808;
}

/* costItem */
.costItem {
    display: flex;
    align-items: center;
    padding: 0 50px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.3);
    justify-content: space-between;
    height: 130px;
}
.costItem .con_cost {
    display: flex;
    align-items: center;
}
.costItem .con_cost .per {
    padding-right: 20px;
}
.costItem .con_cost .per .dft {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:10px;
    background-color: #30dbd5;
    color: #111;
}
.costItem .con_cost .cost {
    text-align: right;
}
.costItem .con_cost .cost .originInfo {
    display: inline-block;
    padding: 0 8px;
    position: relative;
}
.costItem .con_cost .cost .originInfo:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background-color: rgba(255,255,255,.2);
}
@media (max-width:768px){
    .costItem {
        padding: 20px 25px;
        height: auto;
    }
    .costItem .con_cost .per .dft {
        width: 50px;
        height: 50px;
    }
}
/* costItem2 */
.costItem2 {
    display: flex;
    align-items: center;
    padding: 15px 50px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.3);
    justify-content: space-between;
    background-color: rgba(255,255,255,.05);
    box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
}
.costItem2.costItem2_cnt {
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.costItem2 .con_tear {
    width: 250px;
}
.costItem2 .con_name {
    width: calc(100% - 550px);
    text-align: center;
    padding: 0 15px;
}
.costItem2 .con_cost {
    width: 300px;
}
.costItem2 .con_cost > div {
    text-align: center;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.costItem2 .con_cost > div + div {
    margin-top: 5px;
}
.costItem2 .con_cost .costLabel .dft {
    display: flex;
    align-items: center;
    gap: 8px;
}
.costItem2 .con_cost .costLabel .hd {
    display: inline-block;
    line-height: 1em;
    padding: 8px 10px;
    border-radius: 4px;
    background-color: rgba(0,0,0,.6);
    font-size: .8em;
}
@media (max-width: 992px){
    .costItem2 {
        
    }
    .costItem2 .con_tear {
        width: 150px;
    }
    .costItem2 .con_name {
        width: calc(100% - 400px);
        text-align: center;
    }
    .costItem2 .con_cost {
        width: 250px;
    }
}
@media (max-width:768px){
    .costItem2 {
        flex-wrap: wrap;
        padding: 15px 40px;
        padding-bottom: 30px;
    }
    .costItem2 .con_tear {
        width: 100%;
        text-align: center;
    }
    .costItem2 .con_name {
        width: 100%;
    }
    .costItem2 .con_cost {
        width: 100%;
        margin-top: 15px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}