﻿/* reset bootstrap */
.breadcrumb > .active {
	color: #000;
  }

@media only screen and (min-width: 992px) and (max-width: 1919px) {
	.header-wrap {
		padding-left: 3.75rem;
		padding-right: 3.75rem;
	}
  }


/*=======  BOOKING FORM  =======*/
.booking-form {
	position: relative;
	margin-top: -5.625rem;
	z-index: 2;
  }
  
  .booking-form .booking-form-inner {
	background-color: #fff;
	padding: 0 .6875rem 2.75rem 1.4375rem;
	box-shadow:0px 0px 1.1875rem 2px rgba(204,204,223,0.5);
  }

  @media only screen and (max-width: 991px) {
	.booking-form .booking-form-inner {
		background-color: #fff;
		padding: 0 1.125rem 2.5rem;
		box-shadow:0px 0px 1.1875rem 2px rgba(204,204,223,0.5);
	  }
}

  .booking-form .booking-form-inner .info-title {
	margin-bottom: 30px;
	height: 4.375rem;
  }

  .booking-form .booking-form-inner .info-title .news-title {
	background-color: rgba(53, 127, 151, 1);
	font-size: 1rem;
	font-family:Microsoft YaHei;
	font-weight:bold;
	color: #fff;
	line-height: 4.375rem;
	height: 4.375rem;
	width: 6.25rem;
	margin-top: - 0.625rem;
	text-align: center;
	border-bottom-left-radius: 0.625rem;
	border-bottom-right-radius: 0.625rem;
  }
  
  .booking-form .booking-form-inner .info-title .more-btn {
	float: right;
	line-height: 4.375rem;
	color: rgba(53, 127, 151, 1);
	padding-right: 0.9rem;
	-moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
  }
  
  .booking-form .booking-form-inner .info-title .more-btn a:hover {
	color: rgba(53, 127, 151, 1);
	cursor: pointer;
  }

  .booking-form form input,
  .booking-form form select,
  .booking-form form .nice-select {
	background-color: transparent;
	width: 100%;
	height: 3.125rem;
	font-size: 0.875rem;
	border: none;
	border-bottom: 2px solid #bead8e;
	line-height: 3.125rem;
	color: rgba(119, 119, 119, 0.5);
  }
  
  .booking-form form .nice-select {
	border-color: #e9e9e9;
	padding-left: 0;
  }
  
  .booking-form form .nice-select::after {
	display: none;
  }
  
  .booking-form form .nice-select::before {
	left: 0;
  }
  
  .booking-form form label {
	color: #222;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	display: block;
	margin: 0;
  }
  
  .booking-form form .inputs-filed {
	position: relative;
  }
  
  .booking-form form .inputs-filed input,
  .booking-form form .inputs-filed .nice-select {
	padding: 0 20px;
  }
  
  .booking-form form .inputs-filed .icon {
	position: absolute;
	left: 0;
	bottom: 15px;
	font-size: 0.875rem;
	color: #bead8e;
  }
  
  .booking-form form button {
	width: 100%;
	border: none;
	background-color: #bead8e;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	height: 60px;
	letter-spacing: 2px;
	-webkit-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
  }
  
  .booking-form form button:hover {
	background-color: #111;
  }
  
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
	.booking-form form button {
	  font-size: 12px;
	  letter-spacing: 1px;
	}
  }
  
  .booking-form.booking-form-dark {
	background-color: #222;
	margin-top: 0;
  }
  
  .booking-form.booking-form-dark .booking-form-inner {
	background-color: transparent;
  }
  
  .booking-form.booking-form-dark form label {
	color: #fff;
  }
  
  .booking-form.boxed-layout {
	margin-top: -5.625rem;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.booking-form.boxed-layout {
	  margin-top: 0;
	}
  }
  
  @media (max-width: 767px) {
	.booking-form.boxed-layout {
	  margin-top: 0;
	}
  }
  
  .booking-form.boxed-layout form button {
	font-size: 12px;
	letter-spacing: 1;
  }

/* 动画效果 */

.btn-plain-text-with-arrow {
	color: #2f3241;
	font-size: 1rem;
	padding: 0;
	border: 0;
	vertical-align: initial; }
	.btn-plain-text-with-arrow:after {
	  display: inline-block;
	  content: "\f061";
	  font-family: fontawesome;
	  font-size: 0.625rem;
	  font-variant: normal;
	  font-weight: normal;
	  line-height: 1;
	  margin-left: 0.5rem;
	  position: relative;
	  text-shadow: none;
	  text-transform: none;
	  top: -0.125rem;
	  transition: all 0.3s ease 0s; }
	  @media screen and (prefers-reduced-motion: reduce) {
		.btn-plain-text-with-arrow:after {
		  transition: none; } }
	.btn-plain-text-with-arrow:focus:after, .btn-plain-text-with-arrow:hover:after {
		color: rgba(53, 127, 151, 1);
	  -webkit-animation: moveArrow 1s;
	  -moz-animation: moveArrow 1s;
	  animation: moveArrow 1s; }
	.btn-plain-text-with-arrow.focus, .btn-plain-text-with-arrow:focus {
	  box-shadow: none; }
	.btn-plain-text-with-arrow.text-white:after {
	  color: #fff !important; }
  
  @keyframes moveArrow {
	0%, 55% {
	  opacity: 1;
	  -webkit-transform: translateX(0) scale(1);
	  -moz-transform: translateX(0) scale(1);
	  transform: translateX(0) scale(1); }
	25% {
	  opacity: 0;
	  -webkit-transform: translateX(13px) scale(0.9);
	  -moz-transform: translateX(13px) scale(0.9);
	  transform: translateX(13px) scale(0.9); }
	26% {
	  opacity: 0;
	  -webkit-transform: translateX(-13px) scale(0.9);
	  -moz-transform: translateX(-13px) scale(0.9);
	  transform: translateX(-13px) scale(0.9); } }

/*  */
.announce ul {
    width: 98%;
}
.announce li {
    height: 2.1875rem;
	/* line-height: 2.1875rem; */
	line-height: 2;
    font-size: 1rem;
	overflow:hidden; 
	text-overflow:ellipsis;
	white-space: nowrap;
    width: 100%;
	float: left;
}

.announce li:not(:last-child) {
	margin-bottom: 0.6rem;
}

.announce li span {
    float: right;
    font-size: 1rem;
    color:#9FA4AF;
}
.announce a {
	font-size: 1rem;
	line-height: 2;
    color: #000;
    cursor: pointer;
}
.announce a:hover {
	color:rgba(53, 127, 151, 1);
}

/*---------------------------------------
   11 BOOKING FORM           
-----------------------------------------*/
.booking {
	padding: 70px 0;
	background: url('../image/book_bg.jpg') center center no-repeat;
	background-size: cover;
  }
  .booking-form-item {
	margin-bottom: 15px;
  }
  .booking-form-item input,
  .booking-form-item textarea {
	width: 100%;
  }
  .booking-form-item input.error,
  .booking-form-item textarea.error {
	border-color: #f9755f !important;
  }
  .booking-form-item textarea {
	height: 120px;
  }
  .booking-form-item .help.help-red {
	position: absolute;
	right: 30px;
	top: 13px;
	display: none;
  }
  .booking-form-item .help-block {
	position: absolute;
	right: 23px;
	background: #d03f30;
	color: #fff;
	padding: 20px;
	top: -60px;
	margin: 0;
	border-radius: 3px;
	font-size: 13px;
	display: none;
	z-index: 1;
  }
  .booking-form-item .help-block:after {
	top: 100%;
	right: 12px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(208, 63, 48, 0);
	border-top-color: #d03f30;
	border-width: 8px;
  }
  .booking-form-item:before {
	position: absolute;
	font-family: 'FontAwesome';
	content: '';
	z-index: 1;
	font-size: 17px;
	left: 30px;
	top: 14px;
	color: #00dba5;
  }
  .booking-form-item.has-error:before {
	color: #f9755f;
  }
  .booking-form-item.has-error .help.help-red {
	display: block;
  }
  .booking-form-item.name:before {
	content: "\f007";
  }
  .booking-form-item.name input {
	padding-left: 40px;
  }
  .booking-form-item.phone:before {
	content: "\f095";
  }
  .booking-form-item.phone input {
	padding-left: 40px;
  }
  .booking-form-item.email:before {
	content: "\f0e0";
  }
  .booking-form-item.email input {
	padding-left: 40px;
  }
  .booking-form-item.date:before {
	content: "\f133";
  }
  .booking-form-item.date input {
	padding-left: 40px;
  }
  .booking-form-item.time-f:before {
	content: "\f017";
  }
  .booking-form-item.time-f input {
	padding-left: 40px;
  }
  .booking-form-item.f-doctor:before {
	content: "\f0f0";
	top: 15px;
  }
  .booking .help {
	float: right;
  }
  .booking .latest-row {
	margin-top: 40px;
  }


/*----------------------------------------*/
/*           05. banner CSS
/*----------------------------------------*/
.mid-banner {
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	background-size: cover;
	position: relative;
	/* full width banner style 01 */
	/* banner style 02 */
  }
  .banner-full__inner {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	padding: 6.75rem 0 17.125rem;
	text-transform: capitalize;
	margin-bottom: 0.375rem;
  }
  @media only screen and (max-width: 767px) {
	.banner-full__inner {
	  text-align: center;
	  padding: 3.25rem 0;
	}
  }
  .banner-full__inner h3 {
	color: #fff;
	font-weight: 400;
	font-size: 1.25rem;
	text-align: center;
  }
  @media only screen and (min-width: 768px) {
	.banner-full__inner h3 {
	  font-size: 1.5rem;
	}
  }
  .banner-full__inner h2 {
	color: #fff;
	font-size: 2.25rem;
	font-weight: 400;
	text-align: center;
	margin-top: 2.6875rem;
  }
  @media only screen and (max-width: 767px) {
	.banner-full__inner h2 {
		font-size: 1.25rem;
		margin-top: 2.25rem;
	}
  }
  @media only screen and (min-width: 768px) {
	.banner-full__inner h2 {
	  font-size: 2rem;
	}
  }
  @media only screen and (min-width: 992px) {
	.banner-full__inner h2 {
	  font-size: 2.5rem;
	}
  }
  .banner-full__inner .more-btn {
	margin-top: 1rem;
  }

/*----------------------------------------*/
/*           buttons
/*----------------------------------------*/
.mid-banner .more-btn-mt {
	margin-top: 5rem;
}
.mid-banner .more-btn {
	background:rgba(255,255,255,1);
	box-shadow:0px 0px 1.125rem 0.125rem rgba(203,203,223,0.5);
	/* border: 1px solid; */
	font-family:Microsoft YaHei;
	font-weight:400;
	color:rgba(53,127,151,1);
	font-size: 1rem;
	padding: 0.375rem 1.25rem;
	-webkit-border-radius: 1.375rem;
	-moz-border-radius: 1.375rem;
	-ms-border-radius: 1.375rem;
	-o-border-radius: 1.375rem;
	border-radius: 1.375rem;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
  }
  .mid-banner .more-btn:hover {
	color: rgba(53,127,151,1);
  }

  
/*=======  TEXT BLOCK  =======*/
  .text-block.with-bg {
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: 1;
  }
  
  .text-block.with-bg::after {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background-color: #fff;
	z-index: -1;
	opacity: 1;
  }
  
  .text-block .block-text {
	padding-left: 0.8125rem;
  }

	/* iPad Pro */
	@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
		.text-block .block-text {
			margin-left: 10rem;
		  }
	}
	/* iPad Pro  for PC test*/
	/* @media only screen and (min-width : 768px) and (max-width : 1024px) {
		.text-block .block-text {
			margin-left: 10rem;
		  }
	} */

  .text-block .section-title {
	font-size: 1.125rem;
	font-family: Microsoft YaHei;
	font-weight: bold;
	color:rgba(0,0,0,1);
	line-height: 2.875rem;
  }

  .text-block.bg-black p,
  .text-block.bg-black .section-title h2 {
	color: #fff;
  }
  
  .text-block.bg-black .section-title .title-tag {
	color: #bead8e;
  }
  
  .text-block.bg-black .main-btn.btn-filled {
	-webkit-box-shadow: none;
			box-shadow: none;
  }
  
  .text-block.bg-black .main-btn.btn-filled:hover {
	color: #fff;
  }
  
  .text-block.with-pattern {
	position: relative;
	z-index: 1;
  }
  
  .text-block.with-pattern .pattern-wrap {
	position: absolute;
	background: #bead8e;
	right: 0;
	height: 100%;
	z-index: -1;
	width: 30%;
	top: 0;
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.text-block.with-pattern .pattern-wrap {
	  width: 100%;
	  height: 320px;
	}
  }
  
  @media (max-width: 767px) {
	.text-block.with-pattern .pattern-wrap {
	  width: 100%;
	  height: 320px;
	}
  }
  
  .text-block.with-pattern .pattern-wrap .pattern {
	position: relative;
	width: 100%;
	height: 100%;
  }
  
  .text-block.with-pattern .pattern-wrap .pattern::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: url(http://www.glacbdst.com/index/img/icon/pattern-03.png);
	content: '';
	background-size: cover;
	background-position: right;
  }
  
  @media (max-width: 575px) {
	.text-block .block-text p {
	  padding-right: 0;
	}
  }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
	.text-block .mb-small {
	  margin-bottom: 50px;
	}
  }
  
  @media (max-width: 767px) {
	.text-block .mb-small {
	  margin-bottom: 50px;
	}
  }

  .text-block .block-shadow {
	box-shadow: 0px 0px 1.125rem 0.125rem rgba(203,203,223,0.5);
  }

  /* iPad Pro */
	@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
		.text-block .text-right img {
			margin-right: 13rem;
			margin-top: 3rem;
		  }
	}
	/* iPad Pro  for PC test*/
	/* @media only screen and (min-width : 768px) and (max-width : 1024px) {
		.text-block .text-right img {
			margin-right: 13rem;
			margin-top: 3rem;
		  }
	} */

  /*  */
  .padding-zero {
	  padding: 0;
  }

  .clearfix{
    zoom:1;
}
.clearfix:after{
    display:block;
    content:"";
    overflow:hidden;
    clear:both;
}
/* ul,ol,li{list-style:none;} */
.tabtitle{
    list-style:none;
}
.tabfocus{
	/* border:1px rgba(148,148,148, 0.48) solid; */
    padding:0px;
    /* margin:30px; */
    /* width:500px; */
}
.tabfocus ul li {
    float:left;
    text-align:center;
    cursor:pointer;
	/* width:90px; */
	width: 6.25rem;
	padding:0.625rem 0;
	/* margin-right: 5rem; */
	font-family: MicroSoft YaHei;
	font-size: 1rem;
	color:rgba(159,163,175,1);
	-moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}
.tabfocus ul li:not(:last-child) {
	margin-right: 5rem;
}
.tabfocus ul li:hover,
.tabfocus ul li:active {
	color: rgba(53,127,151,1);
}

.tabfocus ul li.active {
	color: rgba(53,127,151,1);
}
.tabfocus ul{
    border-bottom:1px solid rgba(148,148,148, 0.48);
    position:relative;
     
}
.tabfocus ul div.line{
    display: block;
	position: absolute;
	border-bottom: 2px solid rgba(53,127,151,1);
	bottom: -2px;
	width: 90px;
	left: 0;
	text-align: center;
	bottom: -2px;
	height: 4px;
}
/* .tabfocus ul b{
display: inline-block;
  height: 0;
  width: 0;
  overflow:hidden;
  line-height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(53,127,151,1) transparent transparent transparent;
  margin-top: 4px;
} */

.conn{
    margin:13px;
}
.conn .con{
    display: none;
    color:#666;
}
.conn .current{
    display:block;
}

/*  */
.form-control:focus,
.page-link:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  outline: none;
  border: 1px solid #cfcfcf;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #474747;
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -moz-box-shadow: 0 0 0px 1000px #ffffff inset;
  -ms-box-shadow: 0 0 0px 1000px #ffffff inset;
  -o-box-shadow: 0 0 0px 1000px #ffffff inset;
  box-shadow: 0 0 0px 1000px #ffffff inset;
}


/*----------------------------------------*/
/*           28. Register/sign up CSS
/*----------------------------------------*/
.custom-form--box {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	margin: 0 auto;
	padding-top: 4.375rem;
	padding-left: 1rem;
	/* -webkit-border-radius: 0.4rem;
	-moz-border-radius: 0.4rem;
	-ms-border-radius: 0.4rem;
	-o-border-radius: 0.4rem;
	border-radius: 0.4rem;
	-webkit-box-shadow: 1px 1px 5px 0 rgba(71, 71, 71, 0.2);
	-moz-box-shadow: 1px 1px 5px 0 rgba(71, 71, 71, 0.2);
	-ms-box-shadow: 1px 1px 5px 0 rgba(71, 71, 71, 0.2);
	-o-box-shadow: 1px 1px 5px 0 rgba(71, 71, 71, 0.2);
	box-shadow: 1px 1px 5px 0 rgba(71, 71, 71, 0.2); */
  }
  /* @media only screen and (min-width: 768px) {
	.custom-form--box {
	  padding: 3.5rem;
	}
  } */
  .custom-form--box .custom-form__title {
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 2rem;
	font-weight: 600;
	text-transform: capitalize;
  }
  @media only screen and (min-width: 768px) {
	.custom-form--box .custom-form__title {
	  font-size: 1.25rem;
	}
  }
  .custom-form--box .custom-form__link {
	display: inline-block;
	padding-bottom: 1.5rem;
  }
  .custom-form--box .custom-form__link > a {
	color: #54cb8f;
	letter-spacing: 1px;
	font-weight: 600;
  }
  .custom-form--box .custom-form__link > a:hover {
	text-decoration: underline;
  }
  .custom-form__title {
	font-size: 1.1rem;
	margin-bottom: 1.25rem;
	font-weight: 600;
	text-transform: capitalize;
  }
  @media only screen and (min-width: 768px) {
	.custom-form__title {
	  font-size: 1.25rem;
	  margin-bottom: 1.5rem;
	}
  }
  .custom-form__input {
	margin-bottom: 0;
	padding-bottom: 1.25rem;
  }
  .custom-form__input .form-control {
	border: 1px solid transparent;
	padding: 0.375rem 1rem;
	background: rgba(241,247,251,1);
	color:rgba(159,163,175,1);
	width: 28.75rem;
  }
  @media only screen and (max-width: 991px) {
	.custom-form__input .form-control {
		width: 18.75rem;
	  }
  }

  .custom-form__input .form-control:not(textarea) {
	height: calc(2.25rem + 6px);
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	border-radius: 1.5rem;
  }
  .custom-form__input .form-control:focus {
	border: 1px solid rgba(53,127,151,1);
	-webkit-transition: border 0.3s ease-in-out 0s;
	-moz-transition: border 0.3s ease-in-out 0s;
	-ms-transition: border 0.3s ease-in-out 0s;
	-o-transition: border 0.3s ease-in-out 0s;
	transition: border 0.3s ease-in-out 0s;
  }
  .custom-form__input label {
	color: #808080;
  }
  .custom-form__input .nice-select {
	width: 100%;
	line-height: 27px;
  }
  .custom-form__input .nice-select .list {
	width: 100%;
	-webkit-border-radius: 1.5rem;
	-moz-border-radius: 1.5rem;
	-ms-border-radius: 1.5rem;
	-o-border-radius: 1.5rem;
	border-radius: 1.5rem;
  }
  .custom-form .input-box {
	position: relative;
  }
  .custom-form .input-box__icon {
	position: absolute;
	top: 50%;
	right: 10px;
	z-index: 2;
	width: 20px;
	background: transparent;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
  }
  .custom-form .btn {
	padding: 0.5rem 1.25rem;
  }
  @media only screen and (max-width: 991px) {
  	.custom-form__btn {
		padding-bottom: 3rem;
  	}
  }
  .custom-form__btn .submit-btn {
	background:rgba(53,127,151,1);
	border-color: rgba(53,127,151,1);
	width: 11.875rem;
	display: block;
	margin: 0 auto;
  }
  .custom-form__btn .submit-btn:hover {
	background:rgba(53,127,151,1);
	border-color: rgba(53,127,151,1);
	opacity: .7;
  }
  .custom-form__btn .change-pass-btn {
	width: 100%;
	display: block;
	margin-top: 0.625rem;
  }
  .custom-form .forgot-pass a {
	color: #808080;
	display: block;
	line-height: 1;
	padding-bottom: 1.25rem;
  }
  .custom-form__footer {
	/* login with social medias */
  }
  .custom-form__footer .devider {
	border: 1px solid rgba(207, 207, 207, 0.45);
	margin: 2.75rem 0;
	text-align: center;
	position: relative;
  }
  .custom-form__footer .devider span {
	position: absolute;
	left: 0;
	right: 0;
	top: -9px;
	background: #ffffff;
	display: inline-block;
	width: 100px;
	margin: auto;
	line-height: 1;
  }
  .custom-form__footer .social-login {
	text-align: center;
  }
  .custom-form__footer .social-login li {
	display: inline-block;
  }
  .custom-form__footer .social-login li .social-icon {
	font-size: 1.5rem;
	padding: 0 0.5rem;
  }
  .custom-form__footer .social-login li .social-icon.fb-icon {
	color: #3b5998;
  }
  .custom-form__footer .social-login li .social-icon.tr-icon {
	color: #00aced;
  }
  .custom-form__footer .social-login li .social-icon.gl-icon {
	color: #dd4b39;
  }
  .custom-form__footer--link {
	margin-top: 1.5rem;
	text-align: center;
  }
  .custom-form__footer--link h6 {
	margin-bottom: 1rem;
  }
  .custom-form__img {
	margin-top: 1.25rem;
  }
  
  /* 首页研究员查询 */
  .pageContent {
	width: 33.4375rem;
  }
  @media only screen and (max-width: 991px) {
	.pageContent {
		width: 22rem;
	  }
  }
  /* .text-block-mt {
	margin-top: -18rem;
} */
  @media only screen and (min-width: 992px) {
	.text-block-mt {
		margin-top: -18rem;
	}
  }




  /*----------------------------------------*/
/*  profile-banner Style
/*----------------------------------------*/
.general-info {
	margin: 0 auto;
  }
  .general-info__img {
	width: 100%;
  }
  .general-info__title {
	position: relative;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	margin-top: 1.875rem;
	text-transform: capitalize;
	font-weight: 600;
  }
  @media only screen and (min-width: 768px) {
	.general-info__title {
	  font-size: 1.5rem;
	}
  }
  .general-info__list p:before {
	content: "";
	width: 10px;
	height: 10px;
	background: #808080;
	margin-right: 0.5rem;
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border-radius: 50%;
  }
  .general-info__payment img {
	margin-top: 0.5rem;
  }

  /*----------------------------------------*/
  /*  profile-banner Style END
  /*----------------------------------------*/

/*----------------------------------------*/
/*  Breadcrumb Style
/*----------------------------------------*/
  .profile-content {
	background: rgba(244,252,255,1);
}
.profile-main-content-bg {
	background: #ffffff;
}
.profile-main-content {
	/* padding: 2.6875rem 1rem; */
	background: rgba(244,252,255,1);
	/* background: #ffffff; */
}

/* Breadcrumbs
-------------------------------------------------------------- */
.breadcrumb {
	background-color: #fff;
}
.breadcrumbs ul {
	padding-top: 1.5rem;
}

.breadcrumb > li {
	font-size:1rem;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:rgba(0,0,0,1);
	line-height:1.5;
}

.breadcrumbs ul li {
	display: inline-block;	
	position: relative;
	margin-right: 25px;
}

.breadcrumbs ul li a {
	font-size: 13px;
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumbs ul li a:hover {
	color: #00aeff;
}

.breadcrumbs ul li:before {
	position: absolute;
	right: -14px;
    top: 0;
	content: ">";	
	color: #fff;
}

.breadcrumbs ul li:last-child::before {
	width: 0;
	height: 0;
	background-color: transparent;
	content: "";
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #000000;
	content: ">\00a0";
}
/*----------------------------------------*/
  /*  Breadcrumb Style END
  /*----------------------------------------*/

  .profile-separator {
	height: 1px;
    border-top: 1px solid rgba(225,225,225,1);
	text-align: center;
	margin: 0;
  }
/* Sidebar
-------------------------------------------------------------- */
.sidebar {
	/* border-right: 1px solid rgba(225,225,225,1); */
	margin-left: 2.125rem;
	/* min-height: 33.5rem; */
	margin-bottom: 2rem;
}
@media only screen and (max-width: 991px) {
	.sidebar {
		margin-bottom: 0.5rem;
	}
}
@media only screen and (min-width: 768px) {
	.general-info__title {
	  font-size: 1.5rem;
	}
}

.sidebar .widget {
	margin-bottom: 3rem;	
	position: relative;
}

.widget ul  {
	padding: 0;
	margin: 0;
}

.widget ul li {
	list-style: none;
	padding: 0 0 0.5rem;
	width: 5.725rem;
	text-align: center;
}


.widget ul li:not(:first-child) {
	list-style: none;
	padding: 1.5rem 0 0.5rem;
	width: 5.725rem;
	text-align: center;
}

@media only screen and (max-width: 991px) {
	.widget ul li {
		list-style: none;
		padding: 0.2rem 0 0.2rem;
		width: 5.725rem;
		text-align: center;
	}
}

.widget ul li a {
	font-size: 1.125rem;
	color: #9FA4AF;
}

.widget ul li a:hover {
	color: #00aeff;
}

.sidebar .widget .widget-title:hover a {
	color: #357F97;
}

.sidebar .widget .widget-title a {	
	/* margin-top: 0px;
    font-size: 16px;    
    font-family: Microsoft YaHei, "Montserrat", sans-serif;    
    color: #1a1a1a;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
	text-transform: uppercase; */
	font-size:1.125rem;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:#9FA4AF;
	line-height:2;
	
}

@media only screen and (max-width: 991px) {
	.sidebar .widget .widget-title a {	
		font-size:1rem;
	}
}

.sidebar .widget .widget-title.active {	
	border-bottom: 0.1875rem solid #357F97;
}

.sidebar .widget .widget-title.active a {	
	font-size:1.125rem;
	font-family:Microsoft YaHei;
	font-weight:400;
	color:#357F97;
	line-height:2;
}

@media only screen and (max-width: 991px) {
	.sidebar .widget .widget-title.active a {
		font-size:1rem;
	}
}

/* .sidebar .widget .widget-title:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: #f0f0f0;
}

.sidebar .widget .widget-title:after {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background: #00aeff;
} */


@media only screen and (min-width: 768px) {
	.post-wrap {
		/* padding-bottom: 1.5rem; */
		padding-bottom: 4.75rem;
		border-left: 1px solid rgba(225,225,225,1);
	}
  }

/*  */

/* article {
	margin-bottom: 2rem;
} */

article .featured-post {
	position: relative;
}

@media only screen and (min-width: 768px) {
	article.post {
		padding: 0 2.5rem;
	}
  }


article .post-comment {
	position: absolute;
	left: 20px;
	top: 20px;
	z-index: 20;
	background-color: #00aeff;
	text-align: center;	
	color: #fff;
}

article .post-comment li.date span {
	display: block;
	font-size: 14px;
}

article .post-comment li.date .day {
	font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 12px;
}

article .post-comment li.comment {
	background-color: #273039;
	font-size: 14px;
	font-weight: 600;
	padding: 3px 0;
}

article .post-comment li {
	display: block;
}

article .content-post .title-post {
	font-size: 18px;
    font-weight: 600;    
    letter-spacing: 0.5px;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #1d1d1d;
}

article ul.meta-post {
	padding: 0;
	margin: 0;
	margin-bottom: 0;
	margin-top: 5px;	
	margin-bottom: 12px;
}

article ul.meta-post li {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-right: 20px;
	list-style: none;
}

article ul.meta-post li:before {
	position: absolute;
	left: 0;
	top: 0;
	font-family: "FontAwesome";
	content: "\f073";
	font-style: normal;
}

article ul.meta-post li.author {
	padding-left: 0;	
}

article ul.meta-post li.author:before {
	content: "";
}

article ul.meta-post li.categories:before {
	content: "\f02c";
}

article ul.meta-post li.vote:before {
	content: "\f086";
}

article ul.meta-post li a,
article ul.meta-post li {
	font-size: 12px;
    color: #1d1d1d;    
}

article ul.meta-post li a:hover {
	color: #00aeff;
}

article .more-link a {    
    position: relative;
    display: inline-block;
    line-height: 22px;
    padding: 8px 40px 8px 20px;
    font-size: 12px;
    text-transform: uppercase;
    color: #ffffff;
    background: #00aeff;
    border: 1px solid #00aeff;
    -webkit-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin-top: 20px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

article .more-link a:after {
	font-family: "FontAwesome";
	content: "\f061";
	color: #fff;
	position: absolute;
	right: 18px;
    top: 7px;
    font-size: 12px;
}

article .more-link a:hover {
	color: #fff;
	background: #273039;
	border-color: #273039;
}


.profile-main-content .foot-blank {
	height: 2.5rem;
	background: #fff;
}

/*----------------------------------------*/
/*           08. blog CSS
/*----------------------------------------*/
.blog-post {
	clear: both;
	/* border bottom devider */
	/* inner image */
	/* inner content */
	/* blog post grid view */
	/* blog post list view */
	/* blog post hover */
  }
  .blog-post--br {
	border-bottom: 1px solid rgba(207, 207, 207, 0.45);
	padding-bottom: 1.875rem;
	margin-bottom: 1.875rem;
  }
  @media only screen and (min-width: 768px) {
	.blog-post--br {
	  padding-bottom: 2.5rem;
	  margin-bottom: 2.5rem;
	}
  }
  .blog-post__img {
	position: relative;
	cursor: pointer;
  }
  .blog-post__img img {
	width: 100%;
	-webkit-border-radius: 0.4rem;
	-moz-border-radius: 0.4rem;
	-ms-border-radius: 0.4rem;
	-o-border-radius: 0.4rem;
	border-radius: 0.4rem;
  }
  .blog-post__img:before {
	content: "";
	background: rgba(71, 71, 71, 0.3);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-border-radius: 0.4rem;
	-moz-border-radius: 0.4rem;
	-ms-border-radius: 0.4rem;
	-o-border-radius: 0.4rem;
	border-radius: 0.4rem;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .blog-post__inner {
	padding-top: 1.25rem;
  }
  .blog-post__inner--title h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	-webkit-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	-ms-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
  @media only screen and (min-width: 768px) {
	.blog-post__inner--title h4 {
	  font-size: 1.375rem;
	}
  }
  .blog-post__inner--title h4:hover {
	color: #f7b926;
  }
  .blog-post__inner--details {
	font-size: 80%;
	margin-bottom: 0.75rem;
	line-height: 1.2;
  }
  .blog-post__inner--details span {
	color: #808080;
	opacity: 0.7;
  }
  .blog-post__inner--details .author {
	color: #808080;
	display: inline-block;
  }
  .blog-post__inner--content p {
	margin-bottom: 1rem;
  }
  @media only screen and (max-width: 991px) {
	.blog-post--grid {
	  margin-bottom: 1.875rem;
	}
  }
  .blog-post--grid .blog-post__inner--title h4 {
	font-size: 1.1rem;
  }
  .blog-post--grid .blog-post__inner--des p {
	margin-bottom: 0;
  }
  .blog-post--grid .blog-post__inner--btn {
	margin-top: 1rem;
  }
  .blog-post--grid .blog-post__btn {
	position: absolute;
	text-align: center;
	top: 80%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
  }
  .blog-post--grid:hover .blog-post__btn {
	top: 50%;
	left: 50%;
	opacity: 1;
  }
  @media only screen and (min-width: 992px) {
	.blog-post--mb {
	  margin-bottom: 1.875rem;
	}
  }
  .blog-post--list {
	background: #f8f8f8;
	overflow: hidden;
	-webkit-border-radius: 0.4rem;
	-moz-border-radius: 0.4rem;
	-ms-border-radius: 0.4rem;
	-o-border-radius: 0.4rem;
	border-radius: 0.4rem;
  }
  @media only screen and (min-width: 576px) {
	.blog-post--list {
	  display: -ms-flexbox;
	  display: flex;
	}
  }
  .blog-post--list .blog-post__img {
	position: relative;
	margin-top: -2px;
	margin-left: -2px;
	margin-bottom: -2px;
  }
  .blog-post--list .blog-post__img img {
	-webkit-border-top-right-radius: 0;
	-moz-border-top-right-radius: 0;
	-ms-border-top-right-radius: 0;
	-o-border-top-right-radius: 0;
	border-top-right-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	-ms-border-bottom-right-radius: 0;
	-o-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
  }
  @media only screen and (max-width: 575px) {
	.blog-post--list .blog-post__img img {
	  -webkit-border-bottom-left-radius: 0;
	  -moz-border-bottom-left-radius: 0;
	  -ms-border-bottom-left-radius: 0;
	  -o-border-bottom-left-radius: 0;
	  border-bottom-left-radius: 0;
	}
  }
  .blog-post--list .blog-post__inner {
	position: relative;
	padding: 1.25rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
  }
  @media only screen and (min-width: 992px) {
	.blog-post--list .blog-post__inner {
	  padding: 1.5rem;
	}
  }
  .blog-post--list .blog-post__inner--title h4 {
	font-size: 1.1rem;
	margin-bottom: 1rem;
  }
  .blog-post--list .blog-post__inner--content {
	height: 85px;
	overflow: hidden;
	margin-bottom: 1rem;
  }
  .blog-post--list .blog-post__inner--content p {
	margin-bottom: 1rem;
  }
  .blog-post--list .blog-post__inner--details {
	margin-top: auto;
	margin-bottom: 0;
  }
  .blog-post--list .blog-post__inner--btn {
	text-align: right;
	margin-top: auto;
  }
  .blog-post:hover .blog-post__img:before {
	opacity: 1;
  }
