/* global */
body {
/*    font-family: "MHei","Lucida Grande", "Lucida Sans Unicode", "Helvetica","Arial","Verdana","微軟正黑體", "MicrosoftJhengHeiRegular","sans-serif";*/
	font-family: "微軟正黑體", "MicrosoftJhengHeiRegular", "sans-serif", "Arial", "Verdana";
    color: #333333;
	font-size: 1em;
/*	line-height: 1.8;*/
    overflow-x: hidden;
	background:url(/img/bg.jpg) repeat;
	padding:0 80px;
}
*, *:before, *:after {
    box-sizing: border-box;
	 -webkit-box-sizing: border-box;
}
*:focus { 
    outline: none; 
}
table {
    width: 100%;
}
a {
    text-decoration: none;
}
a:hover {
/*    text-decoration: underline;*/
}
.link {
    color: #007dc5;
    display: inline-block;
}
.link:hover {
    text-decoration: underline;
}
p, .p {
    margin-bottom: 10px;
	line-height: 1.5;
}
.hidden {
    overflow: hidden;
}
.clear:after {
	content: '';
	display: table;
	clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.tl {
    text-align: left;
}
.tc {
    text-align: center;
}
.tr {
    text-align: right;
}
.inner {
	max-width: 1200px;
	margin: auto;
	padding:0 30px;
}
main {
	
}
.max100 {
	max-width: 100%;
}

/* header */
header {
	padding:40px 0 10px; position:relative;
}
nav { 
	
}

/* footer */
footer { font-size:14px; text-align:center; color:#333; padding:30px 0;
	
}
.home footer {
	
}

/* title & font-size */
h2 {
    color: #259bb1;
    margin-bottom: 5px;
    font-size: 24px;
    line-height: 1.5;
}
h3 {
    margin-bottom: 20px;
}
h4 {
    color: #259bb1;
}
h5 {
    color: #ffffff;
}
big {
	
}
small {
    font-size: 20px;
}

/* btn */
button {
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    border: none;
    cursor: pointer;
    font-size: 20px;
}
.btns > *[class^='btn'] {
    float: none;
    margin-right: 20px;
    width: 180px;
}
.btns > *[class^='btn']:last-child {
    margin-right: 0;
}
.align_center .btn1 {
    margin-top: 15px;
}
.btn {
	
}
.btn1 {
    display: inline-block;
    background: #259bb1;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 100px;
    padding: 15px 65px;
    padding-left: 45px;
    position: relative;
    line-height: 1;
}
.btn1:after {
    position: absolute;
    content: '';
    border: solid white;
	border-width: 2px 2px 0 0;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-top: -8px;
	top: 50%;
	right: 40px;
	width: 15px;
	height: 15px;
}
.btn1:hover {
    background: #1c7c8e;
}

/* form */
.form_wrap {
    margin-bottom: 20px;
}
.form_wrap > label {
    display: block;
    color: #259bb1;
}
textarea {
	width: 100%;
	resize: none;
	padding: 10px;
}

/* input */
.input {
    width: 100%;
    padding: 0 10px;
    border: 1px solid #235535;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    color: #333333;
}
.input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input[disabled] {
    background: #cccccc;
    color: #333333;
}
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
    width: 100%;
}
.input-group > * {
    display: table-cell;
    vertical-align: top;
}
.input-group input {
/*    color: #999999;*/
}

/* select */
select::-ms-expand {
    display: none;
}
.select1 {
    position: relative;
    text-align-last: center;
}
.select1 select {
    width: 100%;
    padding: 0 20px;
    border: 1px solid #cccccc;
    height: 40px;
    border-radius: 10px;
    box-shadow: none;
    margin: 0;
    font-size: 20px;
    color: #333333;
    appearance:none;
-moz-appearance:none; /* Firefox */
-webkit-appearance:none; /* Safari and Chrome */
    background: #ffffff;
}
.select1 .arrow {
    border-radius: 0 3px 3px 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 30px;
    line-height: 30px;
    pointer-events: none;
}
.select1 .arrow:before {
    position: absolute;
    content: '';
    border: solid #000000;
    border-width: 2px 2px 0 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: -1px;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
}

/* radio */
.radio_wrap {
    position: relative;
    padding: 0 25px;
    padding-bottom: 30px;
    font-size: 18px;
}
.radio_wrap input[type='radio'] {
    display: none;
}
.radio_wrap input[type='radio'] + label {
    height: 20px;
    position: relative;
    cursor: pointer;
    padding-left: 30px;
    display: inline-block;
} 
.radio_wrap input[type='radio'] + label:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100px;
    border: 2px solid #555555;
    top: 8px;
    left: 0;
}
.radio_wrap input[type='radio']:checked + label {
    color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:before {
    border-color: #259bb1;
}
.radio_wrap input[type='radio']:checked + label:after {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 100px;
    background: #259bb1;
    top: 12px;
    left: 4px;
    z-index: 3;
}

/* checkbox */
.checkbox_wrap {
    margin-bottom: 10px;
}
.checkbox_wrap input[type='checkbox'] {
    display: none;
}
.checkbox_wrap input[type='checkbox'] + label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    display: inline-block;
/*	line-height: 1.5;*/
}
.checkbox_wrap input[type='checkbox'] + label:before {
    position: absolute;
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 5px;
    border: 2px solid #ffffff;
    top: 50%;
	margin-top: -.5em;
    left: 2px;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}
.checkbox_wrap input[type='checkbox']:disabled + label {
    color: #999999;
}
.checkbox_wrap input[type='checkbox']:disabled + label:before {
    border-color: #999999;
}
.checkbox_wrap input[type='checkbox'] + label:before {
    border-radius: 100px;
    border-color: #259bb1;
}
.checkbox_wrap input[type='checkbox']:checked + label:before {
    background: #259bb1;
}

/* elements */
.box1 {
    border: 1px solid #259bb1;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 40px;
    background: #ffffff;
}
.bar1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#259bb1+0,01b6ad+83,01b6ad+100 */
    background: #259bb1;
    /* Old browsers */
    background: -moz-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #259bb1 0%, #01b6ad 83%, #01b6ad 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#259bb1', endColorstr='#01b6ad', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px;
    position: relative;
}

/* tab */
.tab {
	
}
.tab_btn {
	
}
.tab_con > div {
	opacity: 0;
	transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
	display: none;
	padding: 10px;
}
.tab_con > div.show {
	display: block;
}
.tab_con > div.fade {
	opacity: 1;
}
.tab_con .inner {
	padding: 0 94px;
}

/* acc */
.acc_con {
    display: none;
}


/* list */
.list1 {
    background: #ffffff;
    border-radius: 10px;
}
.list1 tr {
    border-bottom: 1px solid #c33333;
    padding: 10px 20px;
}
.list1 tr:last-child {
    border-bottom: 0;
}
.list1 td {
    padding: 10px 20px;
    vertical-align: middle;
}
.list1 td:first-child {
    padding-right: 5px;
}
.list1 td:last-child {
    padding-left: 5px;
    width: 110px;
}

/* pc & mobile */
.pc {
	display: block;
}
.mo {
	display: none;
}

@media only screen and (max-width: 769px) {
    .pc {
    	display: none;
    }
    .mo {
    	display: block;
    }
}


/** 首頁 **/
.cycle-slideshow {
 z-index: 0;
}
.kv-box{ position:relative; overflow:hidden;}
.kv-box:before{ background: rgba(0,0,0,0.65); display:block; position:absolute; top:0; left:0; content:" "; width:100%; height:100%; z-index: 1;}
.kv-wrap {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 2;
}
.kv-box .kv-title{ width: 22vw; max-width: 405px; margin: auto;}
.kv-box .kv-mascot{ width: 51vw; max-width: 962px; margin: -8vw auto 0;}
.kv-bg {
	position: absolute;
	height: 100%;
}
.kv-bg .i2 {
	left: 100%;
}
.kv-bg .i3 {
	left: 200%;
}
.kv-bg .item {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: url(/img/kv-bg.jpg);
	background-size: auto 100%;
	animation: move 10s infinite linear;
/*	animation-play-state: paused;*/
}
@keyframes move {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-100%);
	}
}

.i-menu{ position:absolute; right:0; top:25px; z-index: 3;}
.i-menu ul{ list-style:none; margin:0; padding:0;}
.i-menu ul li{ float:left;  margin:0 10px;}
.i-menu ul li a{ color:#333; display:block; padding:8px 5px;}
.i-menu .subject li a:hover { border-bottom:2px solid #4086c7;}
.i-menu .menu_icon li a:hover { border: none; }
.i-menu-mobi{ display:none;}
.menu_icon { position: absolute; right: 0; top: 10px; }
.home .menu_icon { display: none; }
.home .subject_name { display: none; }
.page .subject_name {
	margin: 10px 50px 10px 10px;
}
.page .i-menu .subject {
	display: none;
	position: absolute;
	background: #5c84bc;
	z-index: 3;
	width: 110px;
	text-align: center;
	box-shadow: 0 0 8px rgba(0, 0, 0, .5);
	top: 55px;
	right: 0;
}
.page .i-menu .subject.show { display: block; }
	.page .i-menu .subject li {
		float: none;
		margin: 0;
	}
	.page .i-menu .subject li a {
		color: #fff;
		display: block;
		border-bottom: 1px solid #85a7d8;
	}
	.page .i-menu .subject li a:hover {
		border-bottom: 1px solid #85a7d8;
	}
	.page .i-menu .subject li:last-of-type a {
		border-bottom: none;
	}

.menu_01{ position:absolute; right:0; top:25px;}
.menu_01 ul{ list-style:none; margin:0; padding:0;}
.menu_01 ul li{ float:left;  margin:0 10px;}
.menu_01 ul li a{ color:#333; display:block; padding:8px 5px;}
.menu_01 ul li a:hover{ border-bottom:2px solid #4086c7;}



/** 內頁 **/

.banner{ position:relative;}
.banner .po{}
.banner .mobi{ display:none;}
.banner .theme{ font-size:42px; text-align:center; color:#666; margin:0; position:absolute; left: 50%;
top: 50%;transform: translate(-50%, -50%);}

.bn-focuspage{ position:relative;}
.bn-focuspage .theme{font-size:78px; color:#000; margin-left:170px; text-align:left;}
.bn-focuspage .theme span{ font-size:28px; color:#333; font-weight:normal; display:block; margin-top:10px;}
.bn-focuspage .bn-mascot-chinese{ position:absolute; top:2%; left:26%; z-index:1; width:26%; max-width:308px;}
/*
.bn-focuspage .bn-mascot-chinese.go {
	    animation-name: shake-rotate;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
}
*/
.bn-focuspage .bn-mascot-natural{ position:absolute; top:50px; left:24%; z-index:1; width:26%; max-width:443px;}
.bn-focuspage .bn-mascot-society{ position:absolute; top:50px; left:25%; z-index:1; width:21%; max-width:364px;}
.bn-focuspage .bn-mascot-health{ position:absolute; top:0; left:23%; z-index:1; width:25%; max-width:506px;}
.bn-focuspage .bn-mascot-mathematics{ position:absolute; top:35px; left:24%; z-index:1; width:24%; max-width:420px;}
.bn-focuspage .bn-mascot-art{ position:absolute; top:40px; left:26%; z-index:1; width:19%; max-width:325px;}


.content{ background:url(/img/content-bg.jpg) repeat; padding:50px 0; position:relative;}
.content .ac-rocket{ position:absolute; top:500px; left:7%; max-width:100%;
animation-name: shake-slow;
    animation-duration: 50s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.content .ac-book{ position:absolute; top:270px; right:6%; max-width:100%;
-webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation: ws_anime_3 1.7s cubic-bezier(0.37, 0, 0.63, 1) infinite both alternate 3.5s;
    animation: ws_anime_3 1.7s cubic-bezier(0.37, 0, 0.63, 1) infinite both alternate 3.5s;}
@-webkit-keyframes ws_anime_3 {
    0% {
        -webkit-transform: translate3d(0, -5.3%, 0);
        transform: translate3d(0, -5.3%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 5.3%, 0);
        transform: translate3d(0, 5.3%, 0);
    }
}
@keyframes ws_anime_3 {
    0% {
        -webkit-transform: translate3d(0, -5.3%, 0);
        transform: translate3d(0, -5.3%, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 5.3%, 0);
        transform: translate3d(0, 5.3%, 0);
    }
}
.content .ac-clock{ position:absolute; top:800px; right:12%; max-width:100%;
animation-name: shake-rotate;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;}


.page-title{ font-size:48px; color:#000; text-align:center; margin-bottom:40px; position: relative; z-index: 1;}

/** 項目選單 **/
.item-list{ padding:0 30px; }

.item-list .list-box{ max-width:1140px; margin:40px auto 60px; padding: 5px 0; }
.item-list .list-box ul{ list-style:none; padding:0; /*width:1500px;*/}
.item-list .list-box ul li{ display:inline-block;}
.item-list .list-box ul li a{ background:#dcf0ef; padding:5px 20px; margin:0 10px; box-shadow:3px 3px 3px #cfe8e8; color:#333; font-size:18px; border-radius: 20px; display: inline-block; cursor: pointer; }
.item-list .list-box ul li a:hover, .item-list .list-box ul li a.cur { background:#69bdba; box-shadow:3px 3px 3px #59b1ad; color:#FFF;}
/*.item-list .list-box ul li a:hover, .item-list .list-box ul li a.cur, .item-list .list-box ul .is-active a { background:#69bdba; box-shadow:3px 3px 3px #59b1ad; color:#FFF;}*/
.splide__arrow { 
	position: absolute;
	z-index: 1;
	top: 13px;
	cursor: pointer;
}
.splide__arrow--prev {
	position: absolute;
	left: -30px;
}
.splide__arrow--next {
	position: absolute;
	right: -30px;
}


.book-list{ max-width:926px; margin:0 auto; padding:0;}
.book-list li{ list-style:none; position:relative; padding-top:80px; margin-bottom:100px;} 
.book-list li .Img{ max-width:280px; position:absolute; left:0; top:0; z-index:1;}
.book-list li .Img img{box-shadow:0px 0px 8px #CCC; max-width: 280px; }
.book-list li .Txt{ background:#FFF; box-shadow:0px 0px 15px #EEE; min-height:350px; margin-left: 240px; border-radius:10px; padding-left:80px; padding:45px 55px 45px 100px; position:relative;}

.book-list li .Txt .date{ font-size:15px; color:#5986c4; display:inline-block; visibility: hidden; }
.book-list li .Txt h3{ font-size:20px; color:#333; margin:0 0 10px 0; padding:5px 0; border-bottom:3px solid #c9d7ec;}
.book-list li .Txt h3 span { font-size:16px; color:#666; display: block; margin-top: 5px; }
.book-list li .Txt .mark{ text-align:right; font-size:15px; margin-bottom:10px; }
.book-list li .Txt .mark .year{ color:#333; margin-bottom: 5px; display: inline-block; }
.book-list li .Txt .mark .sort{ background:#4b7cbf; color:#FFF;  padding:3px 18px 3px 6px; position:relative; margin-left:5px; display: inline-block; }
.book-list li .Txt .mark .sort:after{ content:" "; position:absolute; right:0; top:0;
width: 0;
height: 0;
border-style: solid;
border-width: 13px 10px 13px 0;
border-color: transparent #ffffff transparent transparent;}

.book-list li .Txt .description{ font-size:16px; line-height:1.5; min-height:140px;}
.book-list li .Txt .features{ position:relative;}
.book-list li .Txt .features .more{  font-size:15px; line-height:22px;}
.book-list-style02 li .Txt .features .more { visibility: hidden; }
.book-list li .Txt .features .more a{ background:url(/img/more.png) no-repeat 0 2px; padding-left:28px; color:#5986c4; cursor: pointer; }
.book-list li .Txt .features .more a:hover{ color:#70a6ef;}

.book-list li .Txt .features .tool{ text-align:right; font-size:16px; margin-top: 5px;}
.book-list li .Txt .features .tool a{ background:#6cb7b2; display:inline-block; padding:3px 12px; color:#FFF; border-radius: 20px; margin:0 3px; box-shadow: 1px 1px #5d9995; margin-bottom: 5px; }
.book-list li .Txt .features .tool a:hover{ background:#579d98;}

.book-list li:nth-child(even){ }
.book-list li:nth-child(even) .Img{ max-width:280px; position:absolute; left:auto; right:0; top:0;}
.book-list li:nth-child(even) .Txt{ background:#FFF; margin-left:0; margin-right:240px; padding-left:80px; padding:45px 100px 45px 55px;}

.book-list-style02{}
.book-list-style02 li{}
.book-list-style02 li .Txt{}
.book-list-style02 li .Txt .time{ position:relative; border-bottom: 3px solid #c9d7ec; padding-bottom:5px; margin-bottom:20px;}
.book-list-style02 li .Txt .time .mark{ position:absolute; top:0; right:1px;}
.book-list-style02 li .Txt h3{ border-bottom:none;}

.book-list-style02 li:nth-child(even) .Txt{ background:#FFF; margin-left:0; margin-right:240px; padding-left:80px; padding:45px 100px 45px 55px;}




/** 頁面 **/

.pager {
	text-align: center;
	margin: 50px 0;
}
.pager .arrow {
	position: relative;
	margin: 0 30px;
	width: 8px;
	display: inline-block;
}
.pager .arrow:after {
	position: absolute;
	content: '';
	background: url(/img/pg-arrow.png);
	width: 17px;
	height: 27px;
	top: 50%;
	margin-top: -13px;
	left: 0;
}
.pager .prev {
	margin-right: 30px;
}
.pager .next {
	margin-left: 30px;
}
.pager .next:after {
	-moz-transform:scaleX(-1);
    -webkit-transform:scaleX(-1);
    -o-transform:scaleX(-1);
    transform:scaleX(-1);
    filter:FlipH;
}
.pager a {
	border-radius: 100px;
	display: inline-block;
	line-height: 1;
	padding: 8px 12px;
	margin: 0 3px;
	color: #666;
}
.pager .cur {
	background: #98cee7;	
	color: #fff;
}




@media screen and (max-width:1600px){
	.bn-focuspage .bn-mascot-chinese {
		width: 20%;
	}
}


@media screen and (max-width:1500px){
	body {
	  padding:0 50px;
	}
	.kv-box .kv-bg{ width:200%; max-width: inherit; }
	.book-list{ padding:0 30px;}
	
	.banner .theme{ font-size:30px;}
	.bn-focuspage .theme{ font-size:45px; margin-left:80px;}
	.bn-focuspage .theme span{font-size: 18px;}
}

@media screen and (max-width:900px){
	body {
	  padding:0 20px;
	}
	.book-list li .Txt .features .tool{ position:static; text-align:center;}
}


@media screen and (max-width:768px){
	body {
	  padding:0;
	}
	
	header{ padding: 20px 15px;}
	
	.home .menu_icon {
		display: block;
	}
	.home .i-menu .subject, .page .i-menu .subject {
		display: none;
		background: #5c84bc;
		z-index: 3;
		width: 110px;
		text-align: center;
		box-shadow: 0 0 8px rgba(0,0,0,.5);
		top: 61px;
		right: -10px;
		position: absolute;
	}
	.home .i-menu .subject.show, .page .i-menu .subject.show {
		display: block;
	}
	.i-menu {
		top: 0;
		right: 0;
		margin: 10px;
	}
	.i-menu .subject li {
		float: none;
		margin: 0;
	}
	.i-menu .subject li a {
		color: #fff;
		display: block;
		border-bottom: 1px solid #85a7d8;
	}
	.i-menu .subject li a:hover {
		border-bottom: 1px solid #85a7d8;
	}
	.i-menu .subject li:last-of-type a {
		border-bottom: none;
	}
	.i-menu .subject_name li a:hover {
		border-bottom: none;
	}

/*	.i-menu-mobi{ display:block;  position:absolute; right:15px; top:25px;}*/
	
	.menu_01{ top:20px;}
	
	.kv-wrap { width: 100%; left: 0; transform: translate(0%, -50%); }
	.kv-box .kv-bg{ width:320%; }
	.kv-box .kv-title { width:65%; }
	.kv-box .kv-mascot{ width: 90%; }
	
	.inner{ padding:0 10px;}
	
	.page-title{ font-size:40px; margin-bottom:30px;}
	
	.banner .po{display:none;}
	.banner .mobi{ display:block; }
	
	.banner .theme{ width:90%; text-align:center; margin:0 auto; font-size:26px; }
	
	.bn-focuspage .theme{ margin-left: 80px; width: 180px; text-align:left;}
	.bn-focuspage .bn-mascot-chinese{ width:36%; top: 30px; left: 8%;}
		
	.item-list .list-box{ margin-top:20px;}
	
	.book-list{ padding:0;}
	.book-list li{ padding-top:10px; margin-bottom: 50px;}
	.book-list li .Img{ position:static; position:relative; z-index:1; margin:0 auto;}
	.book-list li .Txt{ margin:0 15px; padding:50px 30px 30px 30px; margin-top:-30px;}
	.book-list li .Txt .description{ min-height:60px; margin-bottom:20px;}
	.book-list li:nth-child(even) .Img{ position:static; position:relative; z-index:1; margin:0 auto;}
	.book-list li:nth-child(even) .Txt{margin:0 15px; padding:50px 30px 30px 30px; margin-top:-30px;}
	
	.bn-focuspage .bn-mascot-chinese{ display:none;}
	.bn-focuspage .bn-mascot-natural{ display:none;}
	.bn-focuspage .bn-mascot-society{ display:none;}
	.bn-focuspage .bn-mascot-health{ display:none;}
	.bn-focuspage .bn-mascot-mathematics{ display:none;}
	.bn-focuspage .bn-mascot-art{ display:none;}
}