헤더 오류 수정

This commit is contained in:
com02 2021-12-09 14:56:39 +09:00
parent c859afbbcc
commit ff45d1e539
3 changed files with 5 additions and 2 deletions

View File

@ -179,6 +179,7 @@ section .inner p.desc {font-size: 18px;color:#666;margin-bottom:40px;}
.MainSwiper .swiper-slide {height:600px} .MainSwiper .swiper-slide {height:600px}
.MainSwiper .swiper-slide .img {height:600px;} .MainSwiper .swiper-slide .img {height:600px;}
.MainSwiper .swiper-slide .img img {object-fit:cover;width:100%;height:100%;} .MainSwiper .swiper-slide .img img {object-fit:cover;width:100%;height:100%;}
.MainSwiper .swiper-slide .text {}
.sec1 .inner .color-box {width:960px;margin:0 auto;text-align: center;position: relative;top:-108px;z-index:9;} .sec1 .inner .color-box {width:960px;margin:0 auto;text-align: center;position: relative;top:-108px;z-index:9;}
.sec1 .inner .color-box .list {float:left;width:25%;height: 216px;background:#333;position: relative;overflow: hidden;} .sec1 .inner .color-box .list {float:left;width:25%;height: 216px;background:#333;position: relative;overflow: hidden;}

View File

@ -8,7 +8,7 @@ a.pop-logo img { margin-right: 10px; }
.btn-go-top.mo-go-top { bottom: 86px; } .btn-go-top.mo-go-top { bottom: 86px; }
#mo-member-btn { display: none; width: calc(100% - 32px); height: 50px; background: #376795; border-radius: 5px; position: absolute; right: 16px; top: -65px; z-index: 19; position: fixed; top: inherit; bottom: 20px; font-weight: 500; font-size: 14px; color: #ffffff; } #mo-member-btn { display: none; width: calc(100% - 32px); height: 50px; background: #376795; border-radius: 5px; position: absolute; right: 16px; top: -65px; z-index: 19; position: fixed; top: inherit; bottom: 20px; font-weight: 500; font-size: 14px; color: #ffffff; }
.mo-nav-wrap { width: 0; height: 100vh; background: #fff; position: fixed; top: 0; right: 0; z-index: 100; transition: all 0.2s ease-in; display:none;} .mo-nav-wrap { width: 0; height: 100vh; background: #fff; position: fixed; top: 0; right: 0; z-index: 100; transition: all 0.2s ease-in; display:none;}
.mo-nav-wrap.show { width: 286px;display:inline-block; } .mo-nav-wrap.show { width: 286px;display:inline-block;}
.mo-nav-wrap .menu_bg { display: none; width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; background: rgba(0, 0, 0, 0.6); z-index: -1; transition: all 0.2s ease-in; } .mo-nav-wrap .menu_bg { display: none; width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; background: rgba(0, 0, 0, 0.6); z-index: -1; transition: all 0.2s ease-in; }
.mo-nav-wrap.show .menu_bg { display: block; } .mo-nav-wrap.show .menu_bg { display: block; }
.mo-nav-wrap .login_box { width: 100%; height: 267px; background: linear-gradient(90deg, #275f95 0%, #427cae 62.5%); padding: 135px 16px 18px; box-sizing: border-box; } .mo-nav-wrap .login_box { width: 100%; height: 267px; background: linear-gradient(90deg, #275f95 0%, #427cae 62.5%); padding: 135px 16px 18px; box-sizing: border-box; }
@ -1323,6 +1323,8 @@ footer .family_site {right:10px;}
footer .family_site .site_depth { width: 89%;margin:0% 5.5%; left: 0; top:auto;bottom: 40px; } footer .family_site .site_depth { width: 89%;margin:0% 5.5%; left: 0; top:auto;bottom: 40px; }
footer .family_site .site_name:after {background: url(/images/icon/icon-up-arr.png) no-repeat right top;} footer .family_site .site_name:after {background: url(/images/icon/icon-up-arr.png) no-repeat right top;}
footer .family_site.on .site_name:after {background: url(/images/icon/icon-down-arr.png) no-repeat right top;} footer .family_site.on .site_name:after {background: url(/images/icon/icon-down-arr.png) no-repeat right top;}
.wrap .nav-wrap #primary-nav {display:none !important;opacity:0 !important;}
} }
@media all and (max-width: 350px) { @media all and (max-width: 350px) {

View File

@ -438,7 +438,7 @@ $(document).ready(function(){
$("#primary-nav-button").on("click", function () { $("#primary-nav-button").on("click", function () {
$(".mo-nav-wrap").toggleClass("show"); $(".mo-nav-wrap").toggleClass("show");
$(".wrap .nav-wrap .inner").toggleClass("mo_show"); $(".wrap .nav-wrap .inner").toggleClass("mo_show");
$(".wrap .nav-wrap .inner .left").fadeToggle(); $(".wrap .nav-wrap .inner .left").fadeToggle(0);
$("#mo_search_icon").fadeToggle(0); $("#mo_search_icon").fadeToggle(0);
}); });