﻿@charset "utf-8";

#topimg{
	background: url(/class/img/topimg.jpg) center 0 repeat-x;
	background-size: cover;
}
.btn-switch{
	display: flex;
	flex-wrap: nowrap;
	width: 250px;
	height: 36px;
	margin: 0 auto;
	text-align: center;
}
.btn-switch div{
	width: 50%;
	height: 36px;
	line-height: 2.2em;
}
.btn-switch div.current{
	color: #FFF;
	background-color: #08CD77;
}
.btn-switch div.switch-right{
	border-radius: 0 18px 18px 0;
	-webkit-border-radius: 0 18px 18px 0;
	-moz-border-radius: 0 18px 18px 0;
}
.btn-switch div.switch-left{
	border-radius: 18px 0 0 18px;
	-webkit-border-radius: 18px 0 0 18px;
	-moz-border-radius: 18px 0 0 18px;
}
.btn-switch div.switch-right a{
	display: block;
	width: 100%;
	height: 36px;
	text-decoration: none;
	color: #555;
	background-color: #EEE;
	border-radius: 0 18px 18px 0;
	-webkit-border-radius: 0 18px 18px 0;
	-moz-border-radius: 0 18px 18px 0;
	transition: all 0.3s;
}
.btn-switch div.switch-left a{
	display: block;
	width: 100%;
	height: 36px;
	text-decoration: none;
	color: #888;
	background-color: #EEE;
	border-radius: 18px 0 0 18px;
	-webkit-border-radius: 18px 0 0 18px;
	-moz-border-radius: 18px 0 0 18px;
	transition: all 0.3s;
}
.btn-switch div.switch-right a:hover{
	color: #FFF;
	background-color: #08CD77;
}
.btn-switch div.switch-left a:hover{
	color: #FFF;
	background-color: #08CD77;
}
.wrap-album{
	display: flex;
	flex-wrap: wrap;
	padding: 10px 0 20px;
}
.wrap-album div{
	width: 25%;
	padding: 10px;
	text-align: center;
}
.wrap-album div img{
	margin-top: 20px;
}
.wrap-album div p{
	font-size: 0.8rem;
}
@media(max-width: 991.98px){
.wrap-album div{
	width: 50%;
}
.wrap-album div p{
	font-size: 0.9rem;
}
}
@media(max-width: 575.98px){
.wrap-album div{
	width: 100%;
}
}