/********
Base CSS
*********/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i&display=swap');
* {
    padding: 0;
    margin: 0;
}


/*** Body CSS ***/

body {
    font-size: 14px;
    font-family: '微軟正黑體', sans-serif;
    line-height: 1.9;
    color: #576477;
}

p {
    margin-bottom: 0;
}


/*** Focus CSS ***/

a:focus,
input:focus,
button:focus,
textarea:focus {
    outline: 0 solid;
}

a:hover {
    text-decoration: none;
}


/*** Image CSS ***/

img {
	font-size: 0;
	line-height: 0;
	max-width: 100%;
}


/*** Heading CSS ***/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: #001737;
}

h1 {
    font-size: 64px;
}

h2 {
    font-size: 36px;
}

h3,
h3 a {
    font-size: 23px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}


/*** Ul & Li CSS ***/

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    display: inline-block;
	position: relative;
}
/*** Color Typo ***/
.white,
.white a,
.white h1,
.white h2,
.white h3,
.white h4,
.white h5,
.white h6{
    color: #ffffff;
}

/*** Section padding CSS ***/

.pd-80 {
    padding: 80px 0;
}

.pd-100 {
    padding: 100px 0;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}


/*** Overflow hidden CSS ***/

.o-hi {
    overflow: hidden;
}



/*** Overflow hidden CSS ***/

.aic {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*** Display flex CSS ***/

.dfx {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/*** Background CSS ***/

.bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/***************
Header area CSS
***************/

.header-area {
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.header-absolute {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
	background: #ffffff;
	padding-bottom: 13px;
}

#mainmenu-area-sticky-wrapper {
	z-index: 11;
	position: relative;
}

.is-sticky .header-area {
    -webkit-box-shadow: 0 0 4px rgb(0 0 0 / 0.14), 0 4px 8px rgb(218 213 213 / 0.31);
    box-shadow: 0 0 4px rgb(0 0 0 / 0.14), 0 4px 8px rgb(218 213 213 / 0.31);
    z-index: 99999;
    margin: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: #ffffff;
    padding-top: 13px;
	padding-bottom: 13px;
}
.header-logo {
	width: 195px;
	display: block;
}
@media (max-width:1200px) {.header-logo{width: 140px;}}

/*** Menu CSS ***/
.login-t {
	padding: 0 20px 0 0;
}
@media (max-width:1240px) {.login-t{position: absolute;right: 50px;top: 6px;}}

.login-t a {
	color: #AFB42B;
	border: 1px solid #AFB42B;
	border-radius: 5px;
	padding: 5px 20px;
	-webkit-transition: 0.5s;
    -o-transition: 0.5s;
}
@media (max-width:480px) {.login-t a{padding: 5px 10px;}}

.login-t a:hover {
	color: #ffffff;
	border: 1px solid #AFB42B;
	background-color: #AFB42B;
}
.mainmenu {
    text-align: right;
	padding-right: 10px;
}

.mainmenu li {
    position: relative;
}

.mainmenu li a {
	display: block;
	padding: 10px 17px 10px;
	color: #333333;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	font-size: 20px;
	font-weight: 400;
}
.mainmenu li a i {
	font-size: 16px;
	color: #AFB42B;
	position: absolute;
	margin: 5px 0 0 0;
}
.mainmenu li a.active {
    color: #C82C29 !important;
}

.mainmenu li:hover a {
    color: #AFB42B;
}

.mainmenu li ul {
    position: absolute;
    left: 0;
    top: 63px;
    width: 200px;
    background-color: white;
    text-align: left;
    -webkit-transition: 0.5s;

    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.mainmenu li:hover ul {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.mainmenu li li {
    display: block;
    position: relative;
}

.mainmenu li ul li>a {
    padding: 5px 20px;
    font-weight: 400;
    color: #576477 !important;
}

.mainmenu li li:hover>a {
    color: #AFB42B !important;
}

.is-sticky .mainmenu li a {
    padding-bottom: 25px;
}

.is-sticky .mainmenu li ul li a {
    padding: 5px 20px;
}

.mainmenu li a:after {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 0;
    height: 3px;
    content: "";
    background-color: #AFB42B;
    z-index: -1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 5px;
}

.mainmenu li a.active:after,
.mainmenu li:hover a:after {
    width: 100%;
    left: 0;
    right: auto;
}

.mainmenu li ul li a:after {
    opacity: 0;
}


/*************
首頁
*************/

.index-member {
    background-color: #F8E3EA;
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
}
@media (max-width:991px) {.index-member{padding-top: 10px;padding-bottom: 20px;}}

.index-event {
    background-color: #FFFFFF;
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
}
@media (max-width:991px) {.index-event{padding-top: 20px;padding-bottom: 50px;}}

.index-signup {
    background-color: #E9F4F6;
    position: relative;
    padding-top: 30px;
    padding-bottom: 50px;
}
.index-banner {
    background-color: #FFFFFF;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}
.index-title {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	color: #AFB42B;
	position: relative;
	margin-bottom: 60px;
}
@media (max-width:991px) {.index-title{font-size: 25px}}

.index-title::before {
	top: calc(100% + 0px);
	left: 50%;
	transform: translateX(-50%);
	width: 270px;
	height: 20px;
	background-image: url("../images/title_bg.png");
	content: "";
	position: absolute;
}
.index-title i{
	font-size: 40px;
}
.index-title i::before{
	margin-right: 0;
}
.index-title2 {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
	color: #111111;
	position: relative;
}
.index-title2::before {
	top: calc(100% + 0px);
	left: 50%;
	transform: translateX(-50%);
	width: 270px;
	height: 20px;
	background-image: url("../images/title_bg2.png");
	content: "";
	position: absolute;
}
.member-list {
	overflow: hidden
}
.member-list ul {
	margin: 0 -10px;
}
.member-list ul li {
	padding: 0 10px 40px;
	font-size: 16px;
	width: 20%;
	float: left;
}
@media (max-width:991px) {.member-list ul li{width: 33.33%;}}
@media (max-width:767px) {.member-list ul li{width: 50%;}}

.member-list ul li a{
	display: block;
	transition: all 0.3s ease-out 0s;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.1);
}
.member-list ul li a:hover{
	display: block;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.2);
}
.member-list-inner {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	background: #fff;
	transition: all .3s;
	padding: 5px;
}

.member-list-inner .cover {
	position: relative;
	height: 195px;
	overflow: hidden;
}
@media (max-width:1199px) {.member-list-inner .cover{height: 160px;}}
@media (max-width:991px) {.member-list-inner .cover{height: 205px;}}
@media (max-width:767px) {.member-list-inner .cover{height: 235px;}}
@media (max-width:420px) {.member-list-inner .cover{height: 175px;}}
@media (max-width:380px) {.member-list-inner .cover{height: 130px;}}
@media (max-width:360px) {.member-list-inner .cover{height: 145px;}}
@media (max-width:330px) {.member-list-inner .cover{height: 110px;}}

.member-list-inner .cover img {
	width: 100%;
	height: 100%;
	left: 50%;
	position: relative;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	object-fit: cover;
}
.member-list-inner .box {
	padding: 16px;
	text-align: center;
}
@media (max-width:1199px) {.member-list-inner .box{padding: 16px 5px;}}
@media (max-width:480px) {.member-list-inner .box{padding: 16px 10px;}}
@media (max-width:380px) {.member-list-inner .box{padding: 16px 5px;}}

.member-list-inner .box .name{
	font-size: 18px;
	font-weight: 600;
	color: #AFB42B;
	line-height: 1.4;
}

.member-list-inner .box .info{
	font-size: 16px;
	color: #333333;
	line-height: 1.6;
}
@media (max-width:480px) {.member-list-inner .box .info{font-size: 13px;}}

.more {
	text-align: center;
}
.more a {
	color: #555555;
	font-size: 18px;
	font-weight: 600;
	background: #ffffff;
	padding: 8px 20px;
	border-radius: 30px;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.1);
	transition: all 0.3s ease-out 0s;
	margin: 0 10px;
}
@media (max-width:480px) {.more a{display: block;margin: 0 10px 15px;}}

.more a:hover {
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	background: #AFB42B;
	padding: 8px 20px;
	border-radius: 30px;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.2);
	transition: all 0.3s ease-out 0s;
	margin: 0 10px;
}
@media (max-width:480px) {.more a:hover{margin: 0 10px 15px;}}

.more a i {
	background: #AFB42B;
	padding: 4px 4px;
	border-radius: 30px;
	color: #ffffff;
	font-size: 16px;
}
.event-list {
	overflow: hidden;
	margin: 30px 0;
}
@media (max-width:991px) {.event-list{margin: 20px 0;}}

.event-list ul {
	margin: 0 -1%;
}
.event-list ul li {
	display: inline-block;
	padding: 0 1% 90px;
	vertical-align: top;
	font-size: 16px;
	width: 32%;
}
@media (max-width:991px) {.event-list ul li{width: 100%;padding: 0 1% 100px;}}
.eventphoto.event-list ul li {
	/* display: inline-block; */
	padding: 0 1% 50px;
	vertical-align: top;
	font-size: 16px;
	width: 33.33%;
	/* margin: 0 -4px; */
	float: left;
}
@media (max-width:767px) {.eventphoto.event-list ul li{width: 49%;padding: 0 1% 30px;}}
@media (max-width:480px) {.eventphoto.event-list ul li{width: 100%;padding: 0 0 30px;}}

.event-list ul li a{
	display: block;
	transition: all 0.3s ease-out 0s;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.1);
}
.event-list ul li a:hover{
	display: block;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.2);
}
.event-list ul li .event-list-inner {
	position: relative;
}
.event-list ul li .event-list-inner .cover::before {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 1px solid #fff;
	content: '';
}
.event-list ul li .event-list-inner .cover img {
	width: 100%;

}
.event-list ul li .box {
	position: absolute;
	background: #ffffff;
	width: 94%;
	padding: 10px;
	text-align: center;
	bottom: -50px;
	left: 3%;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.1);
}
@media (max-width:480px) {.event-list ul li .box{width: 96%;left: 2%;}}

.event-list ul li a .box {
	transition: .3s;
}

.event-list ul li .box .box-title {
	font-weight: 600;
	font-size: 20px;
	color: #AFB42B;
	border-bottom: 1px solid #DDDDDD;
	padding-bottom: 5px;
	margin-bottom: 10px;
	line-height: 1.3;
}
@media (max-width:992px) {.event-list ul li .box .box-title{font-size: 24px;}}
@media (max-width:480px) {.event-list ul li .box .box-title{font-size: 20px;}}

.event-list ul li .box p {
	font-size: 15px;
	color: #555555;
	line-height: 1.6;
	padding-bottom: 5px;
}
@media (max-width:992px) {.event-list ul li .box p{font-size: 18px;}}

.signup-inner {
	overflow: hidden;
	padding: 50px 0 0 0;
	background: #E9F4F6;
}
.signup-inner .signup-left {
	float: left;
	width: 55%;
}
@media (max-width:768px) {.signup-inner .signup-left{float: none;width: 100%;}}

.signup-inner .signup-left ul li{
	float: left;
	width: 50%;
	padding:20px;
}
.signup-inner .signup-left ul li img {
	border-radius: 200px;
}
.signup-inner .signup-right {
	float: right;
	width: 35%;
	padding-right: 20px;
}
@media (max-width:1200px) {.signup-inner .signup-right{width: 40%;}}
@media (max-width:768px) {.signup-inner .signup-right{float: none;width: 100%;}}

.signup-right-title{
	font-weight: 600;
	font-size: 23px;
	color: #333333;
	text-align: center;
	border-bottom: 1px solid #65ADB1;
	padding-bottom: 5px;
	margin-bottom: 10px;
	line-height: 1.3;
}
@media (max-width:992px) {.signup-right-title{font-size: 20px;}}
@media (max-width:768px) {.signup-right-title{font-size: 26px;}}

.signup-right-title2{
	font-weight: 600;
	font-size: 20px;
	color: #555555;
	text-align: center;
	padding: 0 0 20px 0;
}
@media (max-width:768px) {.signup-right-title2{font-size: 22px;line-height: 1.2;}}

.signup-bottom {
	text-align: right;
}
@media (max-width:480px) {.signup-bottom{text-align: center;}}

.signup-bottom span{
	font-size: 16px;
	padding-right: 10px;
}
.signup-bottom button{
}
.banner-01 {
	overflow: hidden;
	background-color: #F8E3EA;
	position: relative;
	margin: 0 0 40px;
}
.banner-01::before {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 1px solid #fff;
	content: '';
}
.banner-01 .banner-01-left {
	float: left;
}
@media (max-width:991px) {.banner-01 .banner-01-left{width: 100%;float: none;}}

.banner-01 .banner-01-right {
	float: right;
	padding: 70px 70px 0 0;
	z-index: 100;
	position: relative;
	z-index: 1;
}
@media (max-width:1199px) {.banner-01 .banner-01-right{padding: 70px 20px 0 0;}}
@media (max-width:991px) {.banner-01 .banner-01-right{width: 100%;float: none;padding: 25% 0 50px;}}
@media (max-width:480px) {.banner-01 .banner-01-right{width: 100%;float: none;padding: 35% 0 50px;}}

.banner-01 .banner-01-right .banner-01-right-icon {
	font-size: 55px;
	color: #DD4272;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
.banner-01 .banner-01-right .banner-01-right-title {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	text-align: center;
}
.banner-01 .banner-01-right .banner-01-right-title2 {
	font-size: 18px;
	color: #333;
	font-weight: 400;
	text-align: center;
}
.banner-01 .banner-01-right .banner-01-right-title2 a{
	color: #DD4272;
}
.banner-01-box {
	position: absolute;
	background: rgba(249,170,203,0.6);
	color: #ffffff;
	padding: 60px;
	left: 50%;
	top: 15%;
	text-align: center;
	transform: translatex(-50%);
}
@media (max-width:991px) {.banner-01-box{top: 40%;}}
@media (max-width:767px) {.banner-01-box{top: 30%;width: 60%;}}
@media (max-width:520px) {.banner-01-box{top: 25%;width: 70%;padding: 50px;}}
@media (max-width:420px) {.banner-01-box{top: 25%;width: 70%;padding: 50px 30px;}}

a.banner-01-box {
	display: block;
	position: relative;
}

.banner-01-box::before {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 1px solid #fff;
	content: '';
}
.banner-01-box .banner-01-box-title {
	font-size: 28px;
	color: #333333;
	font-weight: 600;
	border-bottom: 1px solid #ffffff;
}
.banner-01-box .banner-01-box-title2 {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
}
.banner-02 {
	overflow: hidden;
	background-color: #E9F4F6;
	position: relative;
}
.banner-02::before {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 1px solid #fff;
	content: '';
}
.banner-02 .banner-02-left {
	float: left;
	padding: 70px 0 0 100px;
	z-index: 100;
	position: relative;
	z-index: 1;
}
@media (max-width:991px) {.banner-02 .banner-02-left{float: none;width: 100%;padding: 110px 0 40px 0;}}
@media (max-width:420px) {.banner-02 .banner-02-left{float: none;width: 100%;padding: 130px 0 40px 0;}}

.banner-02 .banner-02-left .banner-02-left-icon {
	font-size: 55px;
	color: #65ADB1;
	font-weight: 600;
	text-align: center;
	line-height: 1.2;
}
.banner-02 .banner-02-left .banner-02-left-title {
	font-size: 24px;
	color: #333;
	font-weight: 600;
	text-align: center;
}
.banner-02 .banner-02-left .banner-02-left-title2 {
	font-size: 18px;
	color: #333;
	font-weight: 400;
	text-align: center;
}
.banner-02 .banner-02-left .banner-02-left-title2 a{
	color: #DD4272;
}
.banner-02 .banner-02-right {
	float: right;
}
@media (max-width:991px) {.banner-02 .banner-02-right{float: none;}}

.banner-02-box {
	position: absolute;
	background: rgba(101,173,177,0.5);
	color: #ffffff;
	padding: 60px;
	left: 50%;
	top: 15%;
	text-align: center;
	transform: translatex(-50%);
}
@media (max-width:991px) {.banner-02-box{top: 40%;}}
@media (max-width:767px) {.banner-02-box{top: 30%;width: 60%;}}
@media (max-width:520px) {.banner-02-box{top: 25%;width: 70%;padding: 50px;}}
@media (max-width:420px) {.banner-02-box{top: 25%;width: 70%;padding: 50px 30px;}}

.banner-02-box::before {
	position: absolute;
	top: 5px;
	right: 5px;
	bottom: 5px;
	left: 5px;
	border: 1px solid #fff;
	content: '';
}
.banner-02-box .banner-02-box-title {
	font-size: 28px;
	color: #333333;
	font-weight: 600;
	border-bottom: 1px solid #ffffff;
}
.banner-02-box .banner-02-box-title2 {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
}
.form-group input {
	padding: 12px 20px;
	border: 1px solid #dddddd;
}
.btn-primary {
	color: #fff;
	background-color: #65ADB1;
	border-color: #65ADB1;
}
.btn-primary:hover {
	color: #fff;
	background-color: #3E8D91;
	border-color: #3E8D91;
}
.btn {
	padding: 10px 20px;
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 600;
}
input[type="radio"] {
    display:none;
}

input[type="radio"] + label {
    color:#555555;
	padding: 0 15px;
}
@media (max-width:768px) {input[type="radio"] + label{padding: 0 10px;}}

input[type="checkbox"] + label {
    color:#555555;
	padding: 0 3px;
}
@media (max-width:768px) {input[type="checkbox"] + label{padding: 0 10px;}}

input[type="radio"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    background:url(../images/check_radio_sheet.png) -38px top no-repeat;
    cursor:pointer;
}

input[type="radio"]:checked + label span {
    background:url(../images/check_radio_sheet.png) -57px top no-repeat;
}
input[type="checkbox"] + label span {
    display:inline-block;
    width:19px;
    height:19px;
    margin:-2px 10px 0 0;
    vertical-align:middle;
    background:url(../images/check_radio_sheet.png) 2px top no-repeat;
    cursor:pointer;
}

input[type="checkbox"]:checked + label span {
    background:url(../images/check_radio_sheet.png) -20px top no-repeat;
}
/*************
內頁
*************/
.Center {
	text-align: center;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination>li {
    display: inline
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #666666;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    z-index: 2;
    color: #F2879B;;
    background-color: #ffffff;
    border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #F2879B;
    border-color: #F2879B
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}
.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #F2879B;;
	border-color: #F2879B;;
}
.main {
    margin-top: 80px;
}
@media (max-width:1200px) {.main{margin-top: 40px;}}



/*************
關於
*************/
.about {
	background-color: #F8EFF2;
	position: relative;
	padding-top: 80px;
	padding-bottom: 80px;
	background-image: url("../images/invitation-img-8-min.jpg");
	background-size: cover;
	background-position: bottom;
}
.about-detail {
	background-color: #ffffff;
	position: relative;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #ddd;
	overflow: hidden;
}
.about-detail h2 {
	font-size: 26px;
	position: relative;
	color: #AFB42B;
	margin-bottom: 15px;
}
.about-detail p {
	font-size: 16px;
	color: #333333;
	margin-bottom: 20px;
	line-height: 1.6;
}
.about-detail p.title {
	font-weight: 600;
	font-size: 22px;
	color: #5b3773;
}
.about-img {
	float: right;
	width: 350px;
	margin-left: 50px;
	border: 1px solid #FBB3D1;
	padding: 5px;
}
@media (max-width:767px) {.about-img{float: none;margin-left: 0;width: 100%;}}

.about-img img{
	max-width: 100%;
}

.about-form {
	background-color: #E9F4F6;
	width: 70%;
	margin: 0 auto;
	padding: 30px 100px;
	border-radius: 30px;
}
@media (max-width:991px) {.about-form{padding: 30px;width: 100%;}}
@media (max-width:480px) {.about-form{padding: 15px;width: 100%;}}














/*************
活動
*************/
.eventphoto-header {
	background-image: url("../images/eventphoto-bg.jpg");
	text-align: center;
	padding: 40px 0;
	background-position: center center;
}
@media (max-width:767px) {.eventphoto-header{padding: 10px 0;}}

.eventphoto-header .eventphoto-header-title {
	font-size: 30px;
	padding: 40px 0;
	color: #ffffff;
}
.events-header {
	background-image: url("../images/h5-back-img-4.jpg");
	text-align: center;
	padding: 40px 0;
	margin-bottom: 20px;
}
.events-header .events-header-img img {
	height: auto;
	max-width: 113px;
	vertical-align: top;
}
.events-header .events-header-title {
	font-size: 30px;
	padding: 10px 0 0 0;
}
.events-header .events-header-des {
	font-size: 20px;
	font-weight: 600;
	color: #555555;
}
.events-header2 {
	background-image: url("../images/h5-back-img-5.jpg");
	text-align: center;
	padding: 40px 0;
	margin-bottom: 20px;
}
.events-header2 .events-header-img img {
	height: auto;
	max-width: 113px;
	vertical-align: top;
}
.events-header2 .events-header-title {
	font-size: 30px;
	padding: 10px 0 0 0;
}
.events-header2 .events-header-des {
	font-size: 20px;
	font-weight: 600;
	color: #555555;
}
.events-main {
	padding: 40px;
}
@media (max-width:767px) {.events-main{padding: 20px 0;}}

.events-main h2{
	font-size: 26px;
	position: relative;
	padding-left: 13px;
	color: #CD505C;
	margin-bottom: 15px;
}
.events-main h2::before {
	content: "";
	background: #CD505C;
	width: 6px;
	height: 30px;
	position: absolute;
	left: 0;
}
.events-main p {
	font-size: 16px;
	color: #625069;
	margin-bottom: 20px;
	line-height: 1.6;
}
.rose-title-type2 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.rose-title-type2 .rose-title-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.rose-title-type2 .rose-title-area .decor {
	width: 50px;
	height: 2px;
	background: #8e3c67;
	display: inline-block;
}
.rose-title-type2 .rose-title-area h3 {
	color: #AFB42B;
	position: relative;
	display: inline-block;
	margin: 0 10px;
	letter-spacing: 3px;
	font-weight: 600;
	text-align: center;
	z-index: 0;
}
.rose-title-type2 .rose-title-area h3 img {
	position: absolute;
	z-index: -1;
	width: 100px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.rose-title-type2 .rose-title-area .decor {
	width: 50px;
	height: 2px;
	background: #AFB42B;
	display: inline-block;
}
.content-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 20px 0;
}
.content-title .num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	/* align-items: center; */
	color: #C9A58B;
	width: 85px;
	height: 77px;
	background-image: url("../images/pink_heart.png");
	/* border-radius: 50%; */
	font-size: 30px;
	margin-right: 10px;
	padding-top: 10px;
	font-weight: 600;
}
.content-title .title {
	font-size: 22px;
	font-weight: 600;
	width: 60%;
	line-height: 1.2;
}
.signup {
	text-align: center;
}
.signup a {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	background: #F2879B;
	padding: 6px 30px;
	border-radius: 30px;
	box-shadow: 0px 6px 16px 0px rgba(22,35,58,0.2);
	transition: all 0.3s ease-out 0s;
	display: inline-block;
}
.signup a:hover {
	color: #ffffff;
	background: #65ADB1;
	transition: all 0.3s ease-out 0s;
}
.text-wrap {
	margin-bottom: 20px;
}
.text-wrap p {
	font-size: 18px;
	margin-bottom: 10px;
}










/*************
成功案例
*************/
.contact {
	background-color: #F8EFF2;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("../images/heart-bg.png");
	background-position: right bottom;
	background-repeat: no-repeat;
}
.project-header {
	background-image: url("../images/project-bg.jpg");
	text-align: center;
	padding: 40px 0;
	background-position: center center;
}
@media (max-width:767px) {.project-header{padding: 10px 0;}}
.project-header .project-header-title {
	font-size: 30px;
	padding: 40px 0;
	color: #ffffff;
}



/*************
聯絡
*************/
.contact {
	background-color: #F8EFF2;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("../images/heart-bg.png");
	background-position: right bottom;
	background-repeat: no-repeat;
}
.contact-header {
	background-image: url("../images/contact-bg.jpg");
	text-align: center;
	padding: 40px 0;
	background-position: center center;
}
@media (max-width:767px) {.contact-header{padding: 10px 0;}}

.contact-header .contact-header-img img {
	height: auto;
	max-width: 113px;
	vertical-align: top;
}
.contact-header .contact-header-title {
	font-size: 30px;
	padding: 40px 0;
	color: #ffffff;
}

.form-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.form-container .input-area label {
	color: #777;
	letter-spacing: 3px;
	font-size: 16px;
}
.form-container .input-area label span {
	color: #8e3c67;
}
.form-container .input-area .wrap {
	margin-bottom: 20px;
	width: 100%;
}
.form-container .input-area .wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align-last: center;
	letter-spacing: 3px;
}
.form-container .input-area .wrap input, .form-container .input-area .wrap select, .form-container .input-area .wrap textarea {
	color: #666;
	width: 100%;
	border: none;
	border: 1px solid #ddd;
	background: transparent;
	border-radius: 5px;
}
.form-container .input-area .select {
	position: relative;
}
.form-container .input-area .select::before {
	content: "▼";
	position: absolute;
	display: block;
	right: 0px;
	pointer-events: none;
	color: white;
	background: #c0b0cb;
	top: 0;
	font-size: 16px;
	text-align: center;
	width: 45px;
	height: 100%;
	border-radius: 0 5px 5px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.form-container .input-area .check-area .check {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translate(120%, -50%);
	-ms-transform: translate(120%, -50%);
	transform: translate(120%, -50%);
}
.form-container .input-area .check-area .check div {
	display: inline-block;
}

/* -------------------------------------------
     FAQ
  ---------------------------------------------*/
.faq-main {
	padding: 40px;
}
@media (max-width:767px) {.faq-main{padding: 15px;}}

.faq-list {
	margin: 30px auto;
}
@media (max-width:767px) {.faq-list{margin: 15px auto;}}

.faq-list ol{
	margin: 0;
	padding: 0;
}
.opc .section.active {
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 20px;
	padding-bottom: 20px;
	list-style: none;
	display: block;
}
.opc .section .step-title {
	margin: 0 0 10px;
	position: relative;
	width: 100%;
}
.opc .section .step-title .number {
	background-color: #F2879B;
	border-radius: 50%;
	color: #ffffff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	height: 39px;
	line-height: 37px;
	margin-top: -20px;
	position: absolute;
	text-align: center;
	top: 25px;
	width: 39px;
}
.opc .section .step-title .number2 {
	background-color: #65ADB1;
	border-radius: 50%;
	color: #ffffff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	height: 39px;
	line-height: 37px;
	margin-top: -20px;
	position: absolute;
	text-align: center;
	top: 25px;
	width: 39px;
}

.opc .section .step-title h2 {
	/* float: left; */
	font-size: 1.1rem;
	font-weight: 400;
	line-height: normal;
	margin: 0 4px 0 55px;
	/* padding: 10px 0; */
}
.opc .section .step-title h2 a {
	color: #333;
	display: block;
	padding: 10px 0;
}
.opc .section .step-title .plus {
	background-color: #999999;
	border-radius: 50%;
	color: #ffffff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	height: 39px;
	line-height: 37px;
	margin-top: -20px;
	position: absolute;
	text-align: center;
	top: 25px;
	width: 39px;
	right: 0;
	cursor: pointer;
}
.opc .section .step-title .plus::before {
	content: "+";
}
.opc .section .step-title .minus {
	background-color: #05b2c6;
	border-radius: 50%;
	color: #ffffff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	height: 39px;
	line-height: 37px;
	margin-top: -20px;
	position: absolute;
	text-align: center;
	top: 25px;
	width: 39px;
	right: 0;
	cursor: pointer;
}
.opc .section .step-title .minus::before {
	content: "-";
}
.opc .section .step-title p {
	float: left;
	font-size: 16px;
	font-weight: 500;
	line-height: normal;
	margin: 0;
	padding: 10px 0;
	color: #555;
	margin: 0 4px 0 55px;
	line-height: 1.7;
}
.opc .section .step-title::after {
	clear: both;
	content: "";
	display: table;
}
.answer {
	display: none;
}
/*************
會員
*************/
.member {
	background-color: #F8EFF2;
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
	background-image: url("../images/heart-bg.png");
	background-position: right bottom;
	background-repeat: no-repeat;
}
.member-detail {
	background-color: #ffffff;
	position: relative;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid #ddd;
	overflow: hidden;
}
@media (max-width:767px) {.member-detail{padding: 15px;}}

.member-detail .member-Thumb {
	float: left;
	width: 400px;
}
@media (max-width:1199px) {.member-detail .member-Thumb{width: 300px;}}
@media (max-width:991px) {.member-detail .member-Thumb{width: 220px;}}
@media (max-width:767px) {.member-detail .member-Thumb{width: 100%;float: none;}}

.member-detail .member-Thumb .member-Thumb-b {
	margin: 0 0 20px;
	border: 1px solid #ddd;
	overflow: hidden;
	height: 400px;
}
.member-detail .member-Thumb .member-Thumb-b img {
	width: 100%;
}
.member-detail .member-Thumb .member-Thumb-s{
}
@media (max-width:767px) {.member-detail .member-Thumb .member-Thumb-s{width: 90%;margin: 0 auto;}}
.member-detail .member-Thumb .member-Thumb-s ul{
	margin: 0 -5px;
}
.member-detail .member-Thumb .member-Thumb-s ul li {
	float: left;
	width: 33.33%;
	padding: 0 5px 10px;
}
.member-detail .member-Thumb .member-Thumb-s ul li a{
	border: 1px solid #dedede;
	display: block;
}
.member-detail .member-info {
	float: right;
	width: 60%;
}
@media (max-width:767px) {.member-detail .member-info{width: 100%;float: none;border-top: 1px solid #F2879B;padding: 20px 0;margin-top: 10px;}}

.member-detail .member-info .member-info-top {
	overflow: hidden;
	position: relative;
	height: 120px;
}
.member-info-top2 {
	position: relative;
	margin: 15px 0 50px;
}
.member-info-invite{
	position: absolute;
	top: 0;
	right: 130px;
}
@media (max-width:767px) {.member-info-invite{right: 0;}}

.member-info-invite a {
	background: #AFB42B;
	color: #ffffff;
	padding: 5px 25px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 600;
	display: block;
	text-align: center;
	transition: .3s;
}
.member-info-invite a:hover {
	background: #AFB42B;
	color: #ffffff;
	transition: .3s;
}
.member-info-changepw{
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width:767px) {.member-info-changepw{top: 55px;}}

.member-info-changepw a {
	background: #65ADB1;
	color: #ffffff;
	padding: 5px 25px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 600;
	display: block;
	text-align: center;
	transition: .3s;
}
.member-info-changepw a:hover {
	background: #6DC5CA;
	color: #ffffff;
	transition: .3s;
}
.member-detail .member-info .member-info-title {
	font-size: 18px;
	margin-bottom: 20px;
	color: #f396a5;
	background: #ffebee;
	padding: 8px 12px;
	border-radius: 10px 10px 0px 0px;
	margin-top: 20px;
	font-weight: 600;
}
.member-detail .member-info .member-info-name {
	font-size: 24px;
	color: #333333;
	line-height: 1;
}
.member-detail .member-info .member-info-id {
	font-size: 15px;
	color: #999999;
}
.member-detail .member-info .member-info-age {
	border-radius: 15px;
	padding: 2px 15px;
	vertical-align: bottom;
	color: #fff;
	float: left;
	margin-bottom: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}
@media (max-width:767px) {.member-detail .member-info .member-info-age{margin-bottom: 10px;}}
.paper {
	position: relative;
	padding: 41px 90px;
	background-color: #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,.2);
	border-top: 3px solid #0171B4;
	width: 100%;
}
@media (max-width:767px) {.paper{padding: 30px;}}

.left {
	float: left;
}
.right {
	float: right;
}
.ofh {
	overflow: hidden;
}
.formLabel {
	display: inline-block;
	width: auto !important;
	margin-bottom: 6px;
	font-weight: 600;
}
.FormPanel {
	width: 100%;
	margin-bottom: 10px;
}
input[type="text"], input[type="password"], input[type="url"], input[type="email"], input[type="search"], input[type="number"], input[type="tel"] {
	background-color: #ffffff;
	border: 1px solid #ccc;
	font-size: 0.95rem;
	padding: 1rem;
	-webkit-appearance: textfield;
	border-radius: 3px;
}
[type="text"], [type="password"], [type="date"], [type="datetime"], [type="datetime-local"], [type="month"], [type="week"], [type="email"], [type="number"], [type="search"], [type="tel"], [type="time"], [type="url"], [type="color"], textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 2.6375rem;
	margin: 0 0 1rem;
	padding: .5rem;
	border: 1px solid #ccc;
	border-radius: 0;
	background-color: #ffffff;
	font-family: inherit;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.7;
	color: #333333;
	transition: box-shadow 0.5s,border-color 0.25s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 3px;
}
input[type="button"], input[type="submit"], input[type="reset"], .btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
	min-width: 200px;
	padding: 10px 24px;
	background-color: #65ADB1;
	color: #ffffff;
	border: 0;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
	cursor: pointer;
	-webkit-transition: all 120ms linear;
	transition: all 120ms linear;
	outline: 0;
	min-height: 48px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
input[type="button"]:hover, input[type="button"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, .btn:hover, .btn:focus {
	color: #ffffff;
	background-color: #6DC5CA;
	-webkit-box-shadow: 0 7px 14px 0 rgba(0,0,0,0.2);
	box-shadow: 0 7px 14px 0 rgba(0,0,0,0.2);
}
.owner-page h4 {
	font-size: 18px;
	line-height: 1.5em;
	padding-bottom: 5px;
	margin: 0;
	color: #222222;
}
@media (max-width:767px) {.owner-page h4{font-size: 16px;}}
.owner-page h4 span{
	font-size: 22px;
	color: #CD505C;
}
.owner-page h5 {
	font-size: 18px;
	line-height: 1.5em;
	padding-bottom: 5px;
	margin: 12px 0;
	color: #209EBB;
	position: relative;
	padding-left: 12px;
}
.owner-page h5::before {
	background: #209EBB;
	position: absolute;
	content: "";
	width: 5px;
	height: 25px;
	left: 0;
}
.owner-page .owner-top-section, .popup-add-car .owner-top-section {
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 47px;
}
.owner-page .owner-top-section .left, .popup-add-car .owner-top-section .left {
	width: calc(42% - 1px);
}
@media (max-width:767px) {.owner-page .owner-top-section .left, .popup-add-car .owner-top-section .left{width: 100%;float: none;}}

.owner-page .owner-top-section .divide.or, .popup-add-car .owner-top-section .divide.or {
	position: relative;
	height: 200px;
	margin: 50px 8%;
	border-right: 1px solid #ccc;
	border-bottom: 0;
	width: 1px;
}
@media (max-width:767px) {.owner-page .owner-top-section .divide.or, .popup-add-car .owner-top-section .divide.or{display: none;}}

.owner-page .owner-top-section .right, .popup-add-car .owner-top-section .right {
	width: calc(42% - 1px);
	padding-top: 0;
}
@media (max-width:767px) {.owner-page .owner-top-section .right, .popup-add-car .owner-top-section .right{width: 100%;float: none;margin-top: 30px;}}

.forget-link {
	font-size: 0.95rem;
	text-decoration: underline;
}
.owner-page .text, .popup-add-car .text {
	font-size: 0.95rem;
}
.owner-page .divide {
	width: 100%;
	border-bottom: 1px solid #CCC;
	margin: 2em 0;
}
@media (max-width:767px) {.owner-page .divide{margin: 1em 0;}}

.clear {
	clear: both;
}
.username {
	font-size: 1.1rem;
	font-weight: 600;
	color: #e7211b;
}
.login-text {
}
.login-text h2 {
	font-size: 1.3rem;
	margin-bottom: 10px;
	color: #024D7B;
}
.login-text h3 {
	font-size: 1rem;
	color: #666666;
	line-height: 1.6;
	margin-bottom: 10px;
}
.login-text ol {
	margin: 0;
}
.login-text ol li {
	font-size: 1rem;
	margin-bottom: 15px;
	color: #666666;
	display: block;
}
.register-box {
	overflow: hidden;
	margin: 0 -15px 20px;
}
.owner-page .note {
	color: #e7211b;
	font-size: 0.8rem;
	line-height: 1.2;
	margin: -10px 0 0 0;
}
.owner-page .star::before {
	content: "* ";
	color: #e7211b;
	font-weight: bold;
}
.input-item.policy {
	float: left;
	margin-right: 20px;
	width: auto;
	font-size: 0.9rem;
}
.input-item.policy a {
	text-decoration: underline;
}
input.ui[type="checkbox"] {
	padding: 0;
	width: 1em;
	height: 1em;
	line-height: 1em;
	margin: 0;
	background-color: transparent;
	border: 2px solid #CCC;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
	margin-right: 0.5em;
}
a.register-link {
	min-width: 200px;
	color: #fff;
	background-color: #F2879B;
	display: inline-block;
	padding: 10px 24px;
	letter-spacing: .1em;
	cursor: pointer;
	font-size: 20px;
	text-align: center;
	font-weight: 600;
}
@media (max-width:767px) {a.register-link{margin-top: 20px;}}

a:hover.register-link{
	color: #fff;
}
a.register-link i {
	display: inline-block;
	left: 0;
	margin-left: 0.3rem;
	position: relative;
	transition: left .5s;
	font-size: 1.2rem;
}
a:hover.register-link i{
	left: .50rem;
}
a:hover.register-link i{
	left: .50rem;
}
.register-cat {
	overflow: hidden;
	padding: 0 0 35px;
}
.register-cat ul li {
	display: inline-block;
	padding-right: 6px;
}
.register-cat ul li a {
	padding: 15px 20px;
	font-size: 0.95rem;
	line-height: 1.1;
	color: #555;
	background-color: #f0f0f0;
	text-decoration: none;
	display: block;
	border-radius: 3px;
	font-weight: 600;
}
@media (max-width:767px) {.register-cat ul li a{padding: 15px;}}

.register-cat ul li a.on, .register-cat ul li a:hover.on {
	background-color: #209EBB;
	color: #fff;
}
.register-cat ul li a:hover, .register-cat ul li a.click {
	background-color: #666666;
	color: #fff;
}
.signup-box {
	overflow: hidden;
}
.signup-col {
	float: left;
	width: 100%;
	padding: 0 15px;
}
.signup-col2 {
	float: left;
	width: 50%;
	padding: 0 15px;
}
.signup-col2 select{
	margin-bottom: 1rem;
}
.signup-col3 {
	float: left;
	width: 33.33%;
	padding: 0 15px;
}
@media (max-width:767px) {.signup-col2, .signup-col3{float: none;width: 100%;}}
.Required {
	margin: 0 0 0 2px;
	float: none;
	font-size: .8125rem;
	-webkit-font-smoothing: auto;
	color: #F93636;
}
select {
	border: 1px solid #ccc;
	height: 2.6375rem;
	line-height: 2.6375rem;
	padding: 0 50px 0 20px;
	-moz-appearance: none;
	-webkit-appearance: none;
	position: relative;
	background-image: url("../images/select-bg.svg");
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 50px 50px;
	color: #333333;
	border-radius: 3px;
	font-size: 0.95rem;
	box-sizing: border-box;
	width: 100%;
}
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin: 0 0 1rem;
	padding: .5rem;
	border: 1px solid #ccc;
	border-radius: 0;
	background-color: #ffffff;
	box-shadow: inset 0 1px 2px rgba(10,10,10,0.1);
	font-family: inherit;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.7;
	color: #0a0a0a;
	transition: box-shadow 0.5s,border-color 0.25s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 3px;
	max-width: 100%;
}
.FormPanel.location select {
	width: auto;
}
.grid-male {
	background: #94c7fd;
}
.grid-female {
	background: #f89eb2;
}
.table_style {
	width: 100%;
}
.table_style tr td {
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding: 8px 0px;
	word-break: break-all;
	vertical-align: top;
}
.table_style tr td:nth-of-type(1), .table_style tr td:nth-of-type(3) {
	width: 75px;
	color: #b0b0b0;
	vertical-align: top;
}
@media (max-width:767px) {.table_style tr td:nth-of-type(1), .table_style tr td:nth-of-type(3){width: 20%;}}

.table_style tr td:nth-of-type(2) {
	width: 155px;
	word-break: break-all;
	vertical-align: top;
}
@media (max-width:767px) {.table_style tr td:nth-of-type(2){width: 30%;}}


.sub-nav {
	margin-bottom: 30px;
}
.sub-nav ul {
	text-align: center;
}
.sub-nav ul li {
	padding: 0 5px;
}
.sub-nav ul li a {
	background: #ffffff;
	display: block;
	padding: 5px 20px;
	font-size: 18px;
	font-weight: 600;
	color: #333333;
	border-radius: 30px;
	border: 1px solid #dddddd;
	transition: .3s;
}
.sub-nav ul li a:hover {
	background: #e64759;
	color: #ffffff;
	border: 1px solid #e64759;
	transition: .3s;
}
.sub-nav ul li a.active {
	background: #e64759;
	color: #ffffff;
	border: 1px solid #e64759;
	transition: .3s;
}
.member-invite-box {
	margin-bottom: 40px;
}
.list-style .list-title .title {
	font-size: 24px;
	color: #5b3773;
	display: inline-block;
	margin-right: 20px;
}
.list-style .list-title span {
	font-weight: 400;
	color: #8e3c67;
}
.list-style .list-wrap {
	margin-top: 15px;
	background: white;
	border: 3px dashed #c0b0cb;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 0px 10px white;
	box-shadow: 0 0 0px 10px white;
	padding: 40px 60px;
}
@media (max-width:575px) {.list-style .list-wrap{padding: 20px 30px;}}

.list-style .item-name-row {
	padding-bottom: 20px;
	border-bottom: 1px solid #ece7ee;
}
@media (max-width:767px) {.list-style .item-name-row{display: none;}}

.list-style .item-name-row .item-name {
	font-size: 18px;
	color: #5b3773;
	text-align: center;
	font-weight: 600;
}


.list-style .list {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 30px 0;
	color: #625069;
	font-weight: 400;
	border-bottom: 1px solid #ece7ee;
}
.list-style .list:nth-last-child(1) {
	border: none;
}
.list-style .list .item-name {
	text-align: center;
	font-size: 16px;
}
@media (max-width:767px) {.list-style .list .item-name{text-align: left;}}

.list-style .list span {
	display: none;
}
@media (max-width: 767px) {
.list-style .list {display: block;}
.list-style .list span {display: inline-block;font-weight: 400;color: #5b3773;}
.list-style .list span:after {content: "：";} 
}
.list-style .note {
	font-weight: 400;
	color: #625069;
	margin-top: 50px;
	padding: 0 20px;
	font-size: 16px;
}
/***************
Footer area CSS
***************/

.footer-area {
	background: #F8E3EA;
	padding: 30px 0 10px;
	margin-top: -30px;
}
@media (max-width:480px) {.footer-area{margin: 0 0 75px;}}

.footer-btn,
.copyright-section {
    text-align: right;
}

.footer-btn h4 {
    margin-bottom: 25px;
}

.footer-btn .boxed-btn {
    text-align: left;
}

.copyright-section li a {
    padding-left: 15px;
    display: block;
    font-weight: 500;
    color: #576477;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.copyright {
	padding-top: 20px;
	text-align: center;
}
.footer-nav {
	text-align: center;
	border-top: 1px solid #ffffff;
	padding: 10px 0;
}
.footer-nav-inner {
	text-align: center;
	position: relative;
}
.footer-nav-inner ul li::before {
	top: 7px;
	width: 1px;
	height: 16px;
	background-color: #999999;
	content: "";
	position: absolute;
}
.footer-nav-inner ul li:first-child::before {
	top: 7px;
	width: 0px;
	height: 16px;
	background-color: #999999;
	content: "";
	position: absolute;
}
.footer-nav-inner ul li a {
	font-size: 16px;
	color: #555555;
	padding: 0 8px;
}
.footer-nav-inner ul li a:hover {
	color: #DD4272;
}
a.footer-logo {
    margin-bottom: 15px;
    display: block;
}

.copyright-section li a:hover {
    color: #C82C29;
}

.footer-title {
	font-size: 22px;
	color: #333333;
	font-weight: 600;
	position: relative;
	margin: 0 0 20px;
}
@media (max-width:991px) {.footer-title{text-align: center;}}

.footer-title::before {
	top: calc(100% + 2px);
	left: 0;
	/* transform: translateX(-50%); */
	width: 60px;
	height: 2px;
	background-color: #e64759;
	content: "";
	position: absolute;
}
@media (max-width:991px) {.footer-title::before{left: 50%;transform: translateX(-50%);}}

.footer-title2 {
	font-size: 18px;
	color: #333333;
	font-weight: 400;
	position: relative;
}
.footer-title2 a {
	color: #e64759;
	text-decoration: underline;
}
.footer-title2 a:hover{
	text-decoration: none;
}
.footer-title3 {
	font-size: 16px;
	color: #333333;
	font-weight: 400;
	position: relative;
}
@media (max-width:768px) {.footer-title3{font-size: 18px;}}

.footer-social ul li{
	padding: 0 5px 0 0;
}
.m-nav {
	display: none;
	width: 100%;
	position: relative;
	top: 60px;
	background-color: #F8E3EA;
}
@media (max-width:1240px) {.m-nav{display: block;}}
.m-nav ul{
	text-align: center;
}
.m-nav ul li a {
	color: #555555;
	font-size: 18px;
	padding: 6px 2px;
	display: block;
}
@media (max-width:410px) {.m-nav ul li a{font-size: 16px;padding: 6px 0;}}

.m-nav ul li a:hover {
	color: #E95681;
}
@media (max-width:1240px) {.mob	ile{display: none !important;}}
.mobile {
	display: inline-block;
}
@media (max-width:1240px) {.mobile{display: none !important;}}
.mobile-b {
	display: none;
}
@media (max-width:1240px) {.mobile-b{display: block;}}
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: -20px;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 8rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
}
.dropdown-menu a {
	padding: 4px 6px !important;
}
.mobile-bottom {
	display: none;
	position: fixed;
	bottom: 0;
	z-index: 10;
}
@media (max-width:480px) {.mobile-bottom{display: block;}}
.mobile-bottom ul li{
	float:left;
	width:25%;
}
.mobile-bottom ul li img{
	width:100%;
}
.member-m {
	display: none;
}
@media (max-width:480px) {.member-m{display: block;}}
.navbar {
	padding: .2rem 1rem;
	z-index: 10;
}
/*****************
Scroll to top CSS
*****************/

#topcontrol {
    z-index: 9;
}

#topcontrol {
    font-size: 16px;
    font-weight: 900;
    color: white;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #AFB42B;
    border-radius: 50%;
    -webkit-box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px 0px rgba(0, 0, 0, 0.1);
}

#topcontrol:hover {
    background-color: #65ADB1;
}
.video {
	background-color: #E9F4F6;
	width: 70%;
	margin: 0 auto 30px;
	padding: 10px;
}
@media (max-width:767px) {.video{width: 100%;}}

.main-top {
    padding-top: 120px;
}
.location {
	overflow: hidden;
}
.location .location-left {
	float: left;
	padding: 0 15px;
	width: 70%;
}
@media (max-width:767px) {.location .location-left{float: none;width: 100%;padding: 15px 0;}}

.location .location-right {
	float: right;
	padding: 0 15px;
	width: 30%;
}
@media (max-width:767px) {.location .location-right{float: none;width: 100%;padding: 15px 0;}}
.search-box {
	font-size: 16px;
	margin: 0 -30px;
}
@media (max-width:767px) {.search-box{margin: 0;}}

.search-box input {
	width: 30%;
	display: inline-block;
}
@media (max-width:480px) {.search-box input{width: 20%;}}

.search-box input[type="radio"] {
	display: none;
}
.search-box input[type="checkbox"] {
	display: none;
}
.hero {
	background: #F8E3EA;
	text-align: center;
	margin-top: 60px;
	position: relative;
}