@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
body{ 
    font-size:14px; 
    font-family: 'DM Sans',Microsoft JhengHei,Arial, Helvetica,sans-serif,nsimsun; 
    color:#fff; 
    position:relative;
    background-color: #000;
    /*overflow-y: hidden; */
}

a{ color:#fff;}
a:hover{ color:#B89052;}

* { 
 -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ 
 -moz-box-sizing: border-box;    /* Firefox, other Gecko */
 box-sizing: border-box;         /* Opera/IE 8+ */
}
  
   html{
    overflow-x: hidden; 
} 

body{
	width: 100%;
	overflow-x: hidden;
	/*font-family: 'Montserrat',Microsoft JhengHei;*/
	animation-name: fade-in;
	animation-duration:1s;
	animation-timing-function:ease-in;
}
@keyframes fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity: 1;
    }
}

/*::selection {
	background: #3463ac;
	color: #ececec;
}
::-moz-selection {
	background: #3463ac;
	color: #ececec;
}
*/

/****** scrollbar ******/
::-webkit-scrollbar {
    width: 10px;
    background-color: #0008;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px #0008;
    background-color: #0008;
}

::-webkit-scrollbar-thumb {
    background-color: #fff3;
    border-radius: 5px;
}

/*========================================*/




.menu_top_box{
    position: relative;
}


.i_box01{
    width: 100%;
    padding-left: 96px;
    position: relative;

}

.i_box01 img{
    width: 100%;
}

.index_banner_pc.no_pointer a{
    cursor: default;
}

.index_banner_pc a{
    padding-bottom: 59%;
    display: flex;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.index_banner_nav {
    position: absolute;
    right: 60px;
    bottom: 40px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0 30px;
}


.index_banner_nav .prev{
    width: 38px;
    cursor: pointer;
}

.index_banner_nav .next{
    width: 55px;
    cursor: pointer;
}

.index_banner_nav div{
    opacity: .5;
    transition: .3s;
}

.index_banner_nav div:hover{
    opacity: 1;
}

.index_banner_nav div img{
    width: 100%;
}




.menu {
    background-color: #000;
    width: 96px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    transition: .3s;
    border-right: 1px #fff0 solid;
}

.menu.active{
    border-right: 1px #fff solid;
}

.menu_nav {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: .3s;
    width: 50px;
    height:50px;
}


.menu_nav:hover{
    opacity: .8;
}

.menu_nav img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .5s;
}

.menu_nav .open{
    transform: translate(-50%,-50%)scale(1);
}

.menu_nav .close{
    transform: translate(-50%,-50%)scale(0);
}

.menu_nav.active .open{
    transform: translate(-50%,-50%)scale(0);
}

.menu_nav.active .close{
    transform: translate(-50%,-50%)scale(1);
}


.menu_media {
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    margin: 80px 0 0 0;
    justify-content: space-evenly;
}


.menu_media a{
    color: #FFFFFF55;
    transform: rotate(-90deg);
    transition: .5s;
    padding: 20px;
}


.menu_media a:hover{
    color: #fff;
}


.menu_logo{
    position: absolute;
    left: calc(100px + 50px);
    top: 50px;
    z-index: 2;
}

.menu_logo img{
    width: 100%;
}



.menu_list {
    background-color: #000;
    width: 50%;
    height: 100%;
    position: absolute;
    left: -50%;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 15;
    align-items: flex-start;
    justify-content: center;
    padding-left: 96px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu_list.active{
    left: 0;
    opacity: 1;

    visibility: visible;
    pointer-events: auto;

}

.menu_list_ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 50px;
}

.menu_list_ul>li{
    width: 100%;
}

.menu_list_ul>li>a{
    position: relative;
    display: flex;
    width: 100%;
    padding: 10% 20px;
}

.menu_list_ul>li>a p{
    font-weight: 700;
    font-size: 32px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    position: relative;
}

.menu_list_ul>li>a p:after{
    content: "";
    width: 170px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: -30px;
    left: 0;
}





.menu_list_ul>li>a .btn{
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
    z-index: 1;
    transition: .5s;
    opacity: 0;
}

.btn img{
    width: 23px;
}

.menu_list_ul>li>a .btn:after{
    content: "";
    width: 0px;
    height: 0px;
    background-color: #1D3141;
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); 
    border-radius: 50%; 
    z-index: -1;
    transition: .5s;
}

.menu_list_ul>li>a .btn:before{
    content: "";
    width: 0px;
    height: 0px;
    background-color: #1D3141;
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);  
    border-radius: 50%;
    z-index: -1;
    transition: .2s;
}



.menu_list_ul>li>a:hover .btn{
    opacity: 1;
}

.menu_list_ul>li>a:hover .btn:after{
    width: 72px;
    height: 72px;
}
.menu_list_ul>li>a:hover .btn:before{
    width: 96px;
    height: 96px;
}



.menu_close_box{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .3s;
}

.menu_close_box.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*----------------------------------------*/

.footer{
    background-image: url(../img/footer_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0 50px 0;
}

.footer_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer_box img{
    width: 250px;
}

.footer_box p{
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;

    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    color: #FFFFFF;

}



.all_title_01{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.2px;
    color: #B89052;
    position: relative;
    text-transform: uppercase;
}

.all_title_01:after{
    content: "";
    width: 80px;
    height: 4px;
    border-radius: 5px;
    background-color: #fff;
    position: absolute;
    bottom: -30px;
}

.all_title_01 .small{
    font-size: 24px;
}

.all_introduce_01{
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
/*    cing: 0.2px;*/
    color: #FFFFFF;
    text-transform: capitalize;
}


.all_title_02{
    font-weight: 700;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #E2C89F;
    position: relative;
}

.all_title_02:after{
    content: "";
    width: 40px;
    height: 4px;
    border-radius: 5px;
    background-color: #fff;
    position: absolute;
    bottom: -20px;
}



.i_b2{
    overflow: hidden;
}

.i_b2_img{
    background-image: url(../img/story_01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}




.all_info_01.left,
.all_info_01.left h2,
.all_info_01.left p{
    text-align: left;
}

.all_info_01.left :after{
    left: 0;
}



.all_info_01.center,
.all_info_01.center h2,
.all_info_01.center p{
    text-align: center;
}

.all_info_01.center :after{
    left: 50%;
    transform: translateX(-50%);
}




.all_info_01 h2{
    margin-bottom: 70px;
}

.all_info_01 h2.all_title_02{
    margin-bottom: 40px;
}






.i_b2{
    display: flex;
    padding: 80px 0;
    min-height: 450px;
}

.i_b2_info{
    width: 50%;
    padding: 20px 50px 20px 120px;
}



.i_b2_img{
    width: 50%;
}

/*----------------------------*/


.i_b3{
    background-image: url(../img/i_b3_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 120px 0;
    position: relative;
}


.bg_pic01{
    position: absolute;
    left: -10%;
    top: 10%;
}

.bg_pic01:after{
    content: '';
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.4;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    -webkit-animation: auto02 3s linear infinite;
     animation: auto02 3s linear infinite;
}

@-webkit-keyframes auto02 {
    50% {opacity: 0.2;}
    100% {opacity: 0.4;}

}

@keyframes auto02 {
    50% {opacity: 0.2;}
    100% {opacity: 0.4;}
}

.bg_pic01:before{
    content: '';
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.3;
    width: 710px;
    height: 710px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    -webkit-animation: auto01 6s linear infinite;
     animation: auto01 6s linear infinite;
 }

@-webkit-keyframes auto01 {
    50% {width: 650px;height: 650px;}
    100% {width: 710px;height: 710px;}

}

@keyframes auto01 {
    50% {width: 650px;height: 650px;}
    100% {width: 710px;height: 710px;}
}


/*--------------------------------*/


.bg_pic02{
    position: absolute;
    right: -5%;
    bottom: 10%;
}

.bg_pic02:after{
    content: '';
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.4;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    -webkit-animation: auto03 3s linear infinite;
     animation: auto03 3s linear infinite;
}

@-webkit-keyframes auto03 {
    50% {opacity: 0.2;}
    100% {opacity: 0.4;}

}

@keyframes auto03 {
    50% {opacity: 0.2;}
    100% {opacity: 0.4;}
}

.bg_pic02:before{
    content: '';
    background: rgba(255, 255, 255, 0.15);
    opacity: 0.3;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    -webkit-animation: auto04 6s linear infinite;
     animation: auto04 6s linear infinite;
 }

@-webkit-keyframes auto04 {
    50% {width: 400px;height: 400px;}
    100% {width: 460px;height: 460px;}

}

@keyframes auto04 {
    50% {width: 400px;height: 400px;}
    100% {width: 460px;height: 460px;}
 
}






.i_b3_info,
.i_b4_info{
    width: 980px;
    max-width: 90%;
    margin: 0 auto;
    padding: 50px 0;
}


.i_b4{
    padding: 50px 0 50px 0;
}


/*-----------------------*/

.i_b5_ul{
    display: flex;
}

.i_b5_ul li{
    width: 100%;
}

.i_b5_ul li .bg_img{
    width: 100%;
    /*height: 500px;*/
    padding-bottom: 280%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    cursor: pointer;
    display: block;
    
    transition: .8s;
}

.i_b5_ul li:hover .bg_img:after {
    opacity: .7;
}

.i_b5_ul li:hover .bg_img.bg_style01:after{
    opacity: .5;
}

.i_b5_ul li .bg_img:after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1D3141;
    opacity: .5;
    transition: .8s;
}

.i_b5_ul li.bg_style01:after{
    opacity: .3;
}

.i_b5_ul li p {
    position: absolute;
    z-index: 3;
    width: 250%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)rotate(90deg);
    font-weight: 700;
    font-size: 32px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.i_b5_ul li p:after{
    content: "";
    width: 170px;
    height: 4px;
    background-color: #fff;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}




.i_b5_ul li .btn{
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: .3s;
    opacity: 0;
}

.i_b5_ul li .btn:after{
    content: "";
    width: 0px;
    height: 0px;
    background-color: #1D3141;
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); 
    border-radius: 50%; 
    z-index: -1;
    transition: .5s;
}

.i_b5_ul li .btn:before{
    content: "";
    width: 0px;
    height: 0px;
    background-color: #1D3141;
    opacity: .5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);  
    border-radius: 50%;
    z-index: -1;
    transition: .2s;
}



.i_b5_ul li:hover .btn{
    opacity: 1;
}

.i_b5_ul li:hover .btn:after{
    width: 100px;
    height: 100px;
}
.i_b5_ul li:hover .btn:before{
    width: 145px;
    height: 145px;
}

/*=========================================*/


.banner_text{
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner_text.bottom{
    top: auto;
    bottom: 100px;
    transform: translateY(0%);
}

.banner_text h2{
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: 32px;
    line-height: 20px;
    text-align: left;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #1D3141;
    position: relative;
    margin-bottom: 70px;
}


.banner_text h2.white{
    color: #fff;
}

.banner_text h2:after {
    content: "";
    width: 80px;
    height: 4px;
    border-radius: 5px;
    background-color: #B89052;
    position: absolute;
    bottom: -30px;
    left: 0;
    
}

.banner_text h2.white{
    color: #fff;
}



.banner_list {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.banner_list a{
    display: flex;
}

.banner_list .num{
    font-weight: 400;
    font-size: 24px;
    line-height: 20px;
    letter-spacing: 0.2px;
    color: #000000;
    padding: 20px 20px 0 0 ;
}


.banner_list .num.white{
    color: #fff;
}

.banner_list .title{
    font-weight: 700;
    font-size: 48px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.banner_list .title span{
    font-weight: 700;
    font-size: 32px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: block;
}

.banner_list .img{
    padding:20px 0 0 20px;
    opacity: 0;
    transition: .3s;
}

.banner_list>div:hover .img{
    padding-left: 40px;
    opacity: 1;
}





.style02.banner_list .num{
    padding: 10px 20px 0 0 ;
}

.style02.banner_list .img{
    padding:10px 0 0 20px;
}



.pro_info{
    display: flex;
    padding: 20px 0;
    justify-content: space-between;
    align-items: flex-start;
}

.pro_left{
    overflow-y: auto;
    max-height: 800px;
    width: calc(50% - 10px);
    padding: 20px 50px 20px 120px;
}

.pro_left.active{
    max-height: none;
    height: auto!important;
}


/****** scrollbar ******/
.pro_left::-webkit-scrollbar {
    width: 8px;
    background-color: #0008;
}

.pro_left::-webkit-scrollbar-track {
    box-shadow: inset 0 0 8px #0008;
    background-color: #0008;
}

.pro_left::-webkit-scrollbar-thumb {
    background-color: #B89052;
    border-radius: 5px;
}

.pro_left img{
    max-width: 100%;
}

.pro_left.left{
    text-align: left;
}





.pro_right{
    width: 50%;
    position: relative;
}






.pro_color_list {
    display: flex;
    gap: 10px 15px;
    flex-wrap: wrap;
}

.pro_color_list li {
    display: flex;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: #FFFFFF;

}

.pro_color_list li span{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 10px;
}



.color_yellow{
    background-color: #D19F6C ;
}

.color_white{
    background-color: #fff;
}

.color_black{
    background-color: #000;
    border: 1px #fff solid;
}

.color_green{
    background-color: #7FC5C1;
}

.color_green02{
    background-color: #809578;
}

.color_blue{
    background-color: #084474;
}

.color_blue02{
    background-color: #B9D1EB;
}

.color_blue03{
    background-color: #424D75;
}

.color_beige{
    background-color: #F5F2E9;
}

.color_purple{
    background-color: #C196AE ;
}

.color_silence{
    background: linear-gradient(180deg, #FFFFFF 0%, #82E8FF 100%);
}

.color_dreamer{
    background: linear-gradient(180deg, #82E8FF 0%, #FFF502 100%);
}






.pro_b1{
    margin-bottom: 60px;
}


.pro_img_num {
    position: absolute;
    right: 20px;
    bottom: 14px;
    z-index: 10;
    display: flex;
    width: 120px;
    justify-content: space-between;
}

.pro_img_num p{
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.2px;
    color: #000000;
}

.pro_img_num:after{
    content: "";
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 50px;
    height: 1px;
    background-color: #000000;
}

.pro_img_num p:nth-child(2){
    color: #B89052;
}


.white{
    color: #fff;
}





.pro_b1_flex {
    display: flex;
    align-items: center;
    gap: 0 30px;
}



