::-webkit-scrollbar {
    display: none;
	scrollbar-width: none;
}
:root {
    --swiper-navigation-size: 28px;
    --swiper-theme-color: #0afa;
}
.swiper-button-next:after, .swiper-button-prev:after{
    padding: 10px;
}
html{
	scrollbar-width: none;
	-ms-overflow-style: none;
}
body{
    margin: 0;
	padding: 0;
	padding-bottom: 20px;
	height: 100%;
	width: 100%;
}
.body{
}
img{
    border: none;
    pointer-events: none;
}
.gray{
    -webkit-filter: grayscale(80%);
    filter: grayscale(80%);
}
a{
    text-decoration: none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.cards a,.cards a:link,.cards a:active,.cards a:visited,.cards a:focus{
    color:#444;
    outline:none;
    border: none;
    background:none;
    border-radius: 6px;
    display: inline-block;
    width: 50%;
}
#container{
    width: 100vw;
    height: 50vw;
	transition: filter 0.3s;
}
#container img{
    width: 100%;
}
.cards{
    display:flex;
    justify-content: space-between;
    flex-direction:row;
    flex-wrap:wrap;
    margin-top:5px;
	transition: filter 0.3s;
}
.card{
    margin: 3px;
    border-radius:8px;
    background-color:#fff;
    transition:all 0.2s;
    font-size: 15px;
    text-align: center;
    animation-name: scale_anim;
    animation-duration: 0.5s;
}
@keyframes scale_anim {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}
.card img{
    width: 100%;
    border-radius: 8px 8px 0 0;
    transition:opacity 0.2s;
}
.card:hover{
    background:rgba(255,255,255,0.8);
}
.card:hover img{
    opacity:0.5;
}
.card:active{
    transform: scale(0.97);
}
#bbg{
    display: none;
	height: 44px;
    z-index: 999;
    position: fixed;
    padding: 10px 0;
    width: 100%;
    top: 0;
    text-align: center;
}
#bbg_form{
    margin: 0 auto;
    width: calc(100% - 10px);
    height: 44px;
    background-color: rgba(255,255,255,0.7);
    border-radius: 20px;
	box-shadow: 0 0 1px 1px rgba(128, 128, 128, 0.1);
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	transform: translateZ(0);
}
#search_engine{
    float: left;
    border: none;
    outline: none;
    width: 75px;
	margin-left: 5px;
    height: 44px;
	background-color: transparent;
    font-size: 14px;
    text-align: center;
}
#search_engine::-ms-expand {
    display: none;
}
#ittext{
	height: 44px;
	width: calc(100% - 180px);
	padding: 0 10px;
	outline: none;
	border: none;
	float: left;
	background-color: transparent;
}
#itsub{
	width: 65px;
	height: 46px;
	margin-right: 5px;
	background-color: transparent;
	font-weight: bold;
    border: none;
    color: white;
    outline: none;
	float: right;
	background-image: url(../img/ic_search.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40%;
}
#itsub:hover{
	transition: background-color 0.2s;
}
#itsub:active{
	transition: background-size 0.1s;
	background-size: 33%;
}
#copyright{
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}
#weather_box{
    z-index: 999;
    position: fixed;
    width: 100%;
    bottom: 0;
    color: #444;
    text-align: center;
    background: rgba(128,128,128,0.2);
    height: 28px;
    line-height: 28px;
    padding: 2px 10px;
	-webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
#weather_icon{
    height: 26px;
    vertical-align: top;
}
#announce .card{
    background:rgba(255,255,255,0.8);
    padding: 10px;
    color: #000;
    text-align: left;
}
#announce .card:hover{
    background:rgba(255,255,255,0.6);
}
#announce .title{
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    color: #f60;
}