.layout {
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 100%;
}

.blindWrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

body {
     padding-top: 80px; 
	padding-bottom: 55px;
    /* min-width: 1300px; */
    /* max-width: 1920px; */
    margin: 0 auto;
    /* height: auto; */
    position:relative;
}

.header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 80px;
    /* transition: all .5s; */
    /* max-width: 1920px; */
    margin:0 auto;
    /* background-color: #1f1b13; */
	z-index: 1500;
	transition: all .3s;
	background: #fff; 
}

.header.scroll {
     background: #fff; 
}

.header.active .topWrap {
    height: 100%;
    background-color:#fff;
}

.header .topWrap {
    position:relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    padding: 0 4%;
    transition:all .5s;
    /* border-bottom:1px solid rgba(255, 255, 255, 0.2); */
}

.header.active .topWrap {
    border-bottom:none;
}

.header .topWrap .leftWrap {
    display: flex;
    align-items: center;
    height: 100%;
	width: 54%; max-width: 310px;
}

.header .topWrap .logo,
.header .topWrap .toggleBtn,
.header .topWrap .telBtn,
.header .topWrap .intBtn{
    position:relative;
}
 


.header .topWrap .logo2 {
    width: 60px;
    height: 100%;
}

.header .topWrap .rightWrap {
    display: flex;
    align-items: center;
	width: 36%;
	max-width: 180px;
}

.header .topWrap .toggleBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 25px; */
    /* margin-right: 15px; */
    /* height: 40px; */
    overflow: hidden;
    position:relative;
    transition:all .5s;
	margin-left: 10px;
	width: 60%;
}



.header .topWrap .rightWrap .toggleBtn span {
    width: 6px;
    height: 6px;
    display: block;
    border-radius:100%;
    background-color: #fff;
    transition:all .5s;
    position:absolute;
}

.header.active .topWrap .rightWrap .toggleBtn span,
.header.scroll .topWrap .rightWrap .toggleBtn span {
    background-color: #232323;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(1) {
    top:0;
    left:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(2) {
    top:0;
    right:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(3) {
    bottom:0;
    right:0;
}

.header .topWrap .rightWrap .toggleBtn span:nth-child(4) {
    bottom:0;
    left:0;
}

.header .topWrap .telBtn {
    margin-right: 0px;
    position:relative;
    /* height: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
	width: 120%;
    /* border-right:1px solid rgba(255, 255, 255, 0.2); */
}

/* .header .topWrap .telBtn>img {
    transition:all .5s;
}

.header .topWrap .telBtn>img:last-child {
    position: absolute;
    top: 0;
    left: 0;
}

.header:not(.active):not(.scroll) .topWrap .telBtn>img:last-child,
.header.active .topWrap .telBtn>img:first-child,
.header.scroll .topWrap .telBtn>img:first-child {
    opacity: 0;
} */

.header .topWrap .cusBtn {
    width: 30px;
    margin-right: 10px;
}

.header .topWrap .menu {
    flex-flow: column;
    position:absolute;
    top:80px;
    left:0;
    width: 100%;
    height: calc(100vh - 80px);
    background:#fff; 
	background-size: contain;
	overflow-y: auto;
    /* background-color: #fff; */
    padding:0 0px 0px;
    display: none;
    justify-content: center;
    align-items: center;
	
}

.header .topWrap .menu>li {
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #bcb1ab;
}

.header .topWrap .menu>li:first-child {
    border-top: 1px solid #bcb1ab;
}

.header .topWrap .menu>li>a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0px;
	padding-left: 30%;
    font-size: 5.5vw;
    color: #074951;
	font-weight: 800;
    width: 100%;
    position: relative;
}
@media all and (min-width: 719px){
	.header .topWrap .menu>li>a {    font-size: 36px;}
}
.header .topWrap .menu>li.on>a,
.header .topWrap .menu>li.on>a {
    color:#957936;
} 

.header .topWrap .menu>li>a span{ display: inline-block; position: relative;}
.header .topWrap .menu>li>a span:after {
    content: ''; display: inline-block; width: 17px; height: 10px; position: absolute; top: 50%; margin-top: -5px; right: -40px; background:url("../../images/common/bulit.png") no-repeat bottom center; transition: all .4s; transform: rotateX(-180deg);
}

.header .topWrap .menu>li.on>a span:after {
    transform: rotateX(0deg);
} 

.header .topWrap .menu .link {
    width: 65%;
    display: block;
    margin:40px auto 0;
}

.header .topWrap .depth2 {
    width: 100%;
    display: none;
     border-top: 1px solid #bcb1ab; 
    background-color: #efefef;
    padding: 20px 0;
	justify-content: center;
	    flex-flow: column;
}

.header .topWrap .depth2>li{
    display: block; width: 100%;
	padding: 5px 0;
	margin-bottom: 10px;
}
.header .topWrap .depth2>li:last-child { margin-bottom: 0;}
.header .topWrap .depth2>li>a {
    font-size: 4.5vw;
	font-weight: 800;
    text-align: left;
	padding-left:  30%;
    display: block;
    color: #393939;
}
.header .topWrap .depth2>li>a::before { content: "●"; font-size: 8px; display: inline-block; vertical-align: middle; margin-right: 8px; margin-top: -2px;}
@media all and (min-width: 719px){
	.header .topWrap .depth2>li>a {    font-size: 24px;}
}

.header .topWrap .depth2>li.active>a {
    font-weight: bold;
}

.header .topWrap .depth2>li>a>span {
    display: block;
    font-size: 13px;
    margin-top: 3px;
}

.header .topWrap .depth3 {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.header .topWrap .depth3>li {
    margin:3px 0;
}

.header .topWrap .depth3>li>a {
    color:#876546;
    font-size: 12px;
}

.header .topWrap .rightWrap {
    display: flex;
    height: 100%;
    align-items: center;
}

.header .topWrap .rightWrap .telBtn {
}

.header .bottomWrap {
    position:absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: calc(100% - 125px);
    transition:all .5s;
    border-top:1px solid transparent;
}

.header.active .bottomWrap {
    border-top: 1px solid #c9caca;
}

.header .linksWrap {
    position:absolute;
    bottom:30px;
    left:0;
    width: 100%;
    display: none;
}

.header .linksWrap a {
    flex:auto;
    padding:0 15px;
}


.header .snsWrap { width: 100%; display: block; height: 0px;  position: fixed; top: 86%; left: 0; text-align: center; z-index: 3;overflow: hidden; opacity: 0;} 
.header.active .snsWrap { display: block; height: 85px;  opacity: 1; transition: all .6s ease .3s;}
.header .snsWrap a { display: inline-block; margin: 0 0px; width: 12%; max-width: 85px;}
.header .snsWrap a img { display: inline-block;}
.quickWrap {
    position:fixed;
    top:100px;
    right:0;
    width: 95px;
    height: calc(100% - 100px);
    z-index: 10000;
    background-color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
}

.quickWrap .linkWrap {
    padding:0 17px;
    background-color: #002a60;
    margin-bottom: 96px;
    width: 100%;
    height: 100%;
}

.quickWrap .linkWrap a {
    display: flex;
    justify-content: center;
    padding:20px 0;
    border-bottom:1px solid rgba(255, 255, 255, 0.2);
}

.quickWrap .bottomWrap {
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    padding-bottom: 30px;
}

.quickWrap .bottomWrap .topBtn {
    margin-top: 30px;
}

.quickWrap .open {
    position:absolute;
    right:calc(100% + 20px);
    top:20px;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    flex-flow: column wrap;
    /* padding:30px 20px; */
    /* background-color: #f5f5f5; */
}

.footer .cWrap {
    padding:15px 10px;
    display: flex;
    flex-flow: column;
    align-items: center;
    /* background-color: #f0f0f0; */
}

.footer .topBtn {
    position:absolute;
    top: 10%;
    right:3%;
	width: 12%;
	height: 11%;
	display: block;
    /* width: 50px; */
    /* box-shadow: 5.313px 5.76px 5px 0px rgba(0, 0, 0, 0.1); */
    /* border-radius:100%; */
}

.footer .topWrap {
    display: flex;
}

.footer .topWrap>* {
    flex:1 1 50%;
    width: 50%;
    max-width: 50%;
}

.footer .linkWrap {
    position:absolute;
    top:60%;
    left:5%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.footer .linkWrap a {
    width: auto;
    height: 20px;
    margin:0 10px;
}

.footer .linkWrap a img {
    max-width: 1000000%;
    height: 100%;
    width: auto;
}

.footer>a.link {
    position: absolute;
    top: 55%;
    left: 0;
    width: 8%;
    height: 10%;
}

.footer>a.link.link1 {
    left: 5%; width: 22%;
}

.footer>a.link.link2 {
    left: 70%;
}

.footer>a.link.link3 {
    left: 78%;
}

.footer>a.link.link5 {
    left: 87%;
}
.quick { width: 100%; position: fixed; bottom: 0; left: 0; z-index: 2000;}
.quick img { margin: 0px auto;}
.quick>a.link {
    position: absolute;
    top: 0%;
    left: 0;
    width: 50%;
    height: 100%;
}

.quick>a.link.link1 {
    
}

.quick>a.link.link2 {
    left: 50%;
}

.iframeWrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.iframeWrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rotateAni {
    position: relative;
    overflow: hidden;
}

.rotateAni img {
    position: absolute;
    top: 0;
    max-width: 10000%;
    height: 100%;
}

.beBtnWrap {
    display: flex;
}

.beBtnWrap>* {
    width: 50%;
}

.loadWrap {
    position:fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    background-color: rgba(0, 81, 81, 0.9);
    justify-content: center;
    gap:32px 0;
    z-index: 1000000;
}

.loadWrap .proWrap {
    width: 228px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
}

.loadWrap .proWrap .pro {
    width: 0%;
    height: 100%;
    background-color: #fff;
}

	.quick { width: 100%; position: fixed; bottom: 0; left: 0;  z-index: 11;}
	.quick div { width: 100%; max-width: 720px; position: relative; margin: 0 auto;}
	.quick img { display: block; width: 100%; }
	.quick a { width: 17.5%; display: block; height: 100%; background: rgba(0,0,0,0); position: absolute; bottom: 0;  z-index: 1;}
	.quick a.nth1 { left: 0%; width: 17.5%}
	.quick a.nth2 { left: 17.5%}
	.quick a.nth3 { left: 34.0%}
	.quick a.nth4 { left: 50.0%}
	.quick a.nth5 { left: 67.0%}
	.quick a.nth6 { left: 83.0%}
	.quick a.nth7 { left: 87.0%}
	.quick a.nth8 { left: 87.5%}
	.countWrap { width: 100%;  position: relative; max-width: 720px; margin: 0px auto; background: #fff; padding-bottom: 5px;}
	.countWrap::after {clear: both; content: ""; position: relative; display: block;}
	.countWrap span.nth_01, 
	.countWrap span.nth_02{ display: block; float: left; width: 49.5%; margin-bottom: 0px; font-size: 14px; line-height: 30px; height: 32px; color: #222; letter-spacing: -1px; text-align: right; position: relative; overflow: hidden;}		
	.countWrap span.nth_01 span,
	.countWrap span.nth_02 span{ display: inline-block; width: 63%; height: 30px; position: relative; border: 1px solid #bebebe; border-radius: 4px; overflow: hidden; box-sizing: content-box; font-weight: bold; font-size: 15px;}	
	
	.countWrap span.nth_01 { margin-right: 1%;}
	.countWrap span strong { width: 35%; height: 32px;  display: block; position: absolute; top: 0px; left: 0px; background: #214a51; color: #fff; text-align: center;  font-size: 14px; line-height: 32px;  border-radius: 4px;}
	.countWrap span.nth_02 strong { background: #c49f45;}
	.countWrap span.nth_03 {display: block; width: 100%; font-size: 12px; line-height: 20px; height: 20px; margin-bottom: 3px; color: #fff; text-align: center; letter-spacing: -1px; position: relative; background: #4d4d4f; border-bottom: none; float: none; border-radius: 0px;}

