/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444;
  padding-top: 80px;
  overflow-x: hidden;
}

a {
  color: #4fa6d5;
}

a:hover {
  color: #45beff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #68A4C4;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #85b6cf;
  transition: background 0.2s ease-in-out;
}
.tlinks{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  background: #1e4356;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

#header.header-transparent {
  background: none;
}

#header.header-scrolled {
  background: rgba(30, 67, 86, 0.95);
  height: 60px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 100%;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
  vertical-align: middle;
}

#header .logo {
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

#main {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  display: flex;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ddecf5;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.3s;
}

.nav-menu a:hover .nav-user-avatar {
  border-color: #a2cce3;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1c3745;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #68A4C4;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -280px;
  width: 280px;
  padding-top: 20px;
  background: #1e4356;
  transition: 0.4s;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ddecf5;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #a2cce3;
  text-decoration: none;
}

.mobile-nav .nav-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 26px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  padding: 8px;
  border-radius: 4px;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 67, 86, 0.9);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 95vh;
  overflow: hidden;
  position: relative;
  margin-top: -80px;
  margin-bottom: 40px;
}

#hero::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.8), rgba(30, 67, 86, 0.6)), url("../img/hero-bg.jpg") center top no-repeat;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

#hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: #68A4C4;
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 15px;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #68A4C4;
}

#hero .btn-get-started:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  #hero::after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero::after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }
  #hero::before {
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

/* Hero with Image Background */
#hero .carousel-item {
  height: 100%;
}

.hero-bg-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 0 0 50% 50%;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: opacity 0.8s ease-in-out;
}

.hero-bg-layer.current {
  opacity: 1;
  z-index: 1;
}

.hero-bg-layer.next {
  opacity: 0;
  z-index: 2;
}

.hero-bg-layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 67, 86, 0.5), rgba(30, 67, 86, 0.3));
}

#hero.has-custom-bg::after {
  display: none;
}

#hero.has-custom-bg::before {
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-bg-wrapper {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .hero-bg-wrapper {
    left: 40%;
    width: 200%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f3f8fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #68A4C4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
section.breadcrumbs {
  padding: 90px 0 20px 0;
  background-color: #f3f8fa;
  min-height: auto;
  margin-top: -80px;
  position: relative;
  z-index: 0;
}

section.breadcrumbs .d-flex {
  align-items: center !important;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Our Services
--------------------------------------------------------------*/
.services {
  padding-bottom: 20px;
}

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0  0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}

.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon {
  background: #fceef3;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-pink:hover {
  border-color: #ff689b;
}

.services .icon-box-cyan .icon {
  background: #e6fdfc;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}

.services .icon-box-green .icon {
  background: #eafde7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-green:hover {
  border-color: #41cf2e;
}

.services .icon-box-blue .icon {
  background: #e1eeff;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.services .icon-box-blue:hover {
  border-color: #2282ff;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
  background: #fff;
}

.why-us .icon-box + .icon-box {
  margin-top: 50px;
}

.why-us .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: #f3f8fa;
  border-radius: 6px;
  transition: 0.5s;
}

.why-us .icon-box .icon i {
  color: #68A4C4;
  font-size: 32px;
}

.why-us .icon-box:hover .icon {
  background: #68A4C4;
}

.why-us .icon-box:hover .icon i {
  color: #fff;
}

.why-us .icon-box .title {
  margin-left: 95px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.why-us .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.why-us .icon-box .title a:hover {
  color: #68A4C4;
}

.why-us .icon-box .description {
  margin-left: 95px;
  line-height: 24px;
  font-size: 14px;
}

.why-us .video-box {
  position: relative;
}

.why-us .video-box img {
  padding-top: 15px;
  padding-bottom: 15px;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#68A4C4 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #68A4C4;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .row + .row {
  margin-top: 100px;
}

.features h3 {
  font-weight: 400;
  font-size: 24px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features ul li {
  padding-bottom: 10px;
}

.features ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.features p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 10px;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}

.about p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .counters span {
  font-size: 48px;
  display: block;
  color: #68A4C4;
}

.facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills {
  padding: 60px 0;
  text-align: left;
}

.skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

.skills .progress .skill {
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

.skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: .9s;
}

/*--------------------------------------------------------------
# Tetstimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 60px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fbfcfd;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #68A4C4 !important;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding-bottom: 10px;
}

.service-details .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.service-details .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.service-details .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-details .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.service-details .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.service-details .card-title a {
  color: #1e4356;
  transition: 0.3s;
}

.service-details .card-text {
  color: #5e5e5e;
}

.service-details .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.service-details .read-more a:hover {
  color: #68A4C4;
}

.service-details .card:hover img {
  transform: scale(1.1);
}

.service-details .card:hover .card-body {
  border-color: #68A4C4;
}

.service-details .card:hover .card-body .card-title a {
  color: #68A4C4;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #68A4C4;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #68A4C4;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  background: #1e4356;
  display: inline-block;
  padding: 6px 30px;
  border-radius: 20px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
}

.pricing .get-started-btn:hover {
  background: #68A4C4;
}

.pricing .featured {
  z-index: 10;
  margin: -30px -5px 0 -5px;
}

.pricing .featured .get-started-btn {
  background: #68A4C4;
}

.pricing .featured .get-started-btn:hover {
  background: #85b6cf;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding-bottom: 60px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 12px 5px 12px;
  display: inline-block;
  padding: 0 4px 6px 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #444;
  background: white;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #fff;
  font-family: "Roboto", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  border-color: #68A4C4;
  color: #68A4C4;
}

.portfolio .portfolio-item {
  background: #1e4356;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}

.portfolio .portfolio-item img {
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all .3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}

.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
}

.portfolio .portfolio-item .portfolio-info h3 a {
  color: #fff;
  font-weight: bold;
}

.portfolio .portfolio-item .portfolio-info a i {
  color: #68A4C4;
  font-size: 24px;
}

.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-bottom: 30px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(30, 67, 86, 0.8);
}

.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.team .member .social a:hover {
  color: #68A4C4;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #68A4C4;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}

.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 30px;
}

.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  margin-bottom: 30px;
}

.contact .info-box i {
  font-size: 32px;
  color: #68A4C4;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #a2cce3;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-bottom: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #68A4C4;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #68A4C4;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #8dbad2;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map {
  padding: 0;
  margin-bottom: -6px;
}

.map iframe {
  width: 100%;
  height: 380px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 400px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #32627b;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #68A4C4;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #dddddd;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 15px;
}

.blog .entry .entry-meta i {
  font-size: 14px;
  padding-right: 4px;
}

.blog .entry .entry-meta a {
  color: #aaaaaa;
  font-size: 14px;
  display: inline-block;
}

.blog .entry .entry-content p {
  line-height: 50px;
  letter-spacing:1.5px;
  color:green;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #68A4C4;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #32627b;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote .quote-left {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote .quote-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 36px;
  color: #e7e7e7;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #32627b;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #4c99c1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #90c0d8;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #68A4C4;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;

}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
  min-width: 80px;
  min-height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.blog .blog-author h4 {
  margin-left: 100px;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
}

.blog .blog-author .social-links {
  margin: 0 0 5px 100px;
}

.blog .blog-author .social-links a {
  color: #72afce;
}

.blog .blog-author p {
  margin-left: 100px;
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #68A4C4;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #32627b;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #72afce;
  margin-bottom: 5px;
}


.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 0;
  padding: 20px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #a2cce3;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 0;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #a2cce3;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 0;
  padding: 10px 20px;
  border: 0;
  background-color: #32627b;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #68A4C4;
}

.blog .blog-pagination {
  color: #7b9bab;
}

.blog .blog-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.blog .blog-pagination li {
  border: 1px solid white;
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li.active {
  background: white;
}

.blog .blog-pagination li a {
  color: #aaaaaa;
  padding: 7px 16px;
  display: inline-block;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #68A4C4;
  border: 1px solid #68A4C4;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .blog-pagination li.disabled {
  background: #fff;
  border: 1px solid white;
}

.blog .blog-pagination li.disabled i {
  color: #f1f1f1;
  padding: 10px 16px;
  display: inline-block;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #32627b;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #32627b;
  color: #fff;
  transition: 0.3s;
}

.blog .sidebar .search-form form button:hover {
  background: #68A4C4;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #3f8db5;
}

.blog .sidebar .categories ul a:hover {
  color: #68A4C4;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #0d2735;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #68A4C4;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #72afce;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #3f8db5;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #e4eff5;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #32627b;
  background: #32627b;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #bedae8;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0b212d;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #0d2735;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #a2cce3;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #68A4C4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #468db3;
}

#footer .footer-top {
  background: #0d2735;
  border-top: 1px solid #17455e;
  border-bottom: 1px solid #123649;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #a2cce3;
  font-weight: 600;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1e4356;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #68A4C4;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #a2cce3;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #a2cce3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #a2cce3;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-notice,
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #a2cce3;
}

#footer .footer-notice {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  line-height: 1.6;
}

#footer .footer-notice a {
  color: #a2cce3;
}

.login-form label {
  color: #777;
  margin-left:-130px;
  font-size: 14px;
  cursor: pointer;
}
.login-form .input {
  margin: 0;
  color: #555;
  font-size: 24px;
  padding: 3px;
  border: 1px solid #e5e5e5;
  background: #fbfbfb;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

/* 评论区整体容器 */
.blog-comments {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-top: 40px;
}

/* 评论数量标题 */
.blog-comments .comments-count {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

/* 单个评论卡片 */
.blog-comments .comment {
  padding: 20px;
  margin-bottom: 20px;
  background: #fafbfc;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
}

.blog-comments .comment:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: #d0d0d0;
}

.blog-comments .comment:last-child {
  margin-bottom: 0;
}

/* 评论头像 */
.blog-comments .comment-img {
  flex-shrink: 0;
}

.blog-comments .comment-img img {
  width: 50px;
  height: 50px;
  max-width: 50px;
  max-height: 50px;
  min-width: 50px;
  min-height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 评论内容区域 */
.blog-comments .comment-content {
  flex: 1;
  min-width: 0;
}

.blog-comments .comment-author {
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

/* 评论时间和IP属地 */
.blog-comments .comment time {
  display: block;
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.blog-comments .ip-location {
  display: inline;
  font-size: 12px;
  color: #68A4C4;
  background: rgba(104, 164, 196, 0.1);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 8px;
}

.blog-comments .reply-to {
  color: #999;
  font-size: 13px;
  margin-left: 8px;
}

.blog-comments .reply-author {
  color: #68A4C4;
  font-weight: 500;
}

/* 评论正文 */
.blog-comments .comment p {
  margin: 12px 0 0;
  color: #555;
  line-height: 1.7;
  font-size: 14px;
}

/* 评论操作按钮 */
.blog-comments .comment-actions {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #e0e0e0;
  font-size: 13px;
}

.blog-comments .comment-actions .reply a {
  color: #68A4C4;
  font-weight: 500;
  transition: color 0.2s;
}

.blog-comments .comment-actions .reply a:hover {
  color: #32627b;
  text-decoration: none;
}

.blog-comments .comment-actions .edit-link a {
  color: #999;
  transition: color 0.2s;
}

.blog-comments .comment-actions .edit-link a:hover {
  color: #666;
}

/* 子评论（回复） */
.blog-comments .children {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
  margin-left: 60px;
}

.blog-comments .children .comment {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.blog-comments .children .comment:last-child {
  margin-bottom: 0;
}

/* 评论表单区域 */
#respond h3,
#reply-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

#respond .logged-in-as {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

#respond .logged-in-as a {
  color: #68A4C4;
}

#respond .form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s;
}

#respond .form-control:focus {
  border-color: #68A4C4;
  box-shadow: 0 0 0 3px rgba(104, 164, 196, 0.1);
  outline: none;
}

#respond textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

#respond .btn-primary {
  background: linear-gradient(135deg, #68A4C4 0%, #4a8ab0 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s;
  margin-top: 10px;
}

#respond .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(104, 164, 196, 0.4);
}

#cancel-comment-reply-link {
  font-size: 13px;
  color: #999;
  margin-left: 10px;
  transition: color 0.2s;
}

#cancel-comment-reply-link:hover {
  color: #e74c3c;
  text-decoration: none;
}

/* 评论分页 */
.blog-pagination {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-pagination a {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-pagination a:hover {
  background: #68A4C4;
  color: #fff;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .blog-comments {
    padding: 20px;
    margin-top: 30px;
  }
  
  .blog-comments .comment {
    padding: 15px;
  }
  
  .blog-comments .children {
    margin-left: 30px;
  }
  
  .blog-comments .comment-img img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}

/* 广告样式 */
.seaous-ad {
  margin: 20px 0;
  text-align: center;
}

.seaous-ad img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.seaous-ad-home_top,
.seaous-ad-home_bottom {
  padding: 0 15px;
}

.seaous-ad-post_top,
.seaous-ad-post_bottom {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.seaous-ad-sidebar_top,
.seaous-ad-sidebar_bottom {
  margin: 15px 0;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 5px;
}

.seaous-ad-list_top,
.seaous-ad-list_bottom {
  margin: 15px 0;
}

/* 菜单对齐方式 */
.nav-menu.nav-align-left {
  flex: 1;
  text-align: left;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu.nav-align-left > ul {
  justify-content: flex-start;
  display: flex;
}

.nav-menu.nav-align-center {
  flex: 1;
  text-align: center;
}

.nav-menu.nav-align-center > ul {
  justify-content: center;
  display: flex;
}

.nav-menu.nav-align-right {
  flex: 1;
  text-align: right;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-menu.nav-align-right > ul {
  justify-content: flex-end;
  display: flex;
}

/* 用户菜单（始终在右侧） */
.nav-user-menu {
  flex-shrink: 0;
  margin-left: auto;
}

.header-menu-align-left .nav-user-menu,
.header-menu-align-center .nav-user-menu {
  margin-left: 0;
}

.header-menu-align-right .nav-user-menu {
  margin-left: 0;
}

.nav-user-menu > ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-user-menu .user-menu-item {
  position: relative;
  white-space: nowrap;
}

.nav-user-menu .user-menu-item > a {
  display: flex;
  align-items: center;
  color: #ddecf5;
  padding: 10px 15px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-user-menu .user-menu-item > a:hover {
  color: #a2cce3;
  text-decoration: none;
}

/* 用户菜单下拉菜单 - 悬浮气泡式设计 */
.nav-user-menu .drop-down ul {
  display: block;
  position: absolute;
  right: 50%;
  transform: translateX(50%) scale(0.95);
  top: calc(100% + 15px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 8px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  min-width: 180px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transform-origin: top center;
  list-style: none;
  margin: 0;
}

/* 气泡小三角 */
.nav-user-menu .drop-down ul::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.04));
}

.nav-user-menu .drop-down:hover > ul {
  opacity: 1;
  top: calc(100% + 10px);
  visibility: visible;
  transform: translateX(50%) scale(1);
}

/* 菜单项动画 */
.nav-user-menu .user-dropdown-menu li {
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  list-style: none;
}

.nav-user-menu .drop-down:hover .user-dropdown-menu li {
  opacity: 1;
  transform: translateY(0);
}

.nav-user-menu .drop-down:hover .user-dropdown-menu li:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-user-menu .drop-down:hover .user-dropdown-menu li:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-user-menu .drop-down:hover .user-dropdown-menu li:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-user-menu .drop-down li {
  min-width: auto;
  position: relative;
  margin: 4px 0;
}

.nav-user-menu .drop-down li:first-child {
  margin-top: 0;
}

.nav-user-menu .drop-down li:last-child {
  margin-bottom: 0;
}

.nav-user-menu .drop-down ul a {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #4a5568;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 2px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

/* 图标样式 */
.nav-user-menu .drop-down ul a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: all 0.2s ease;
}

/* 用户中心图标 */
.nav-user-menu .menu-item-user-center a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2368A4C4' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
}

/* 管理后台图标 */
.nav-user-menu .menu-item-admin a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2368A4C4' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 002.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 001.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 00-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 00-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 00-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 00-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 001.066-2.573c-.94-1.543.826-3.31 2.37-2.37.996.608 2.296.07 2.572-1.065z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

/* 登出图标 */
.nav-user-menu .menu-item-logout a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23e53e3e' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1'/%3E%3C/svg%3E");
}

/* 注册图标 */
.nav-user-menu .menu-item-register a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2368A4C4' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M18 9v3m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z'/%3E%3C/svg%3E");
}

/* 登录图标 */
.nav-user-menu .menu-item-login > a::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ddecf5' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1'/%3E%3C/svg%3E");
  vertical-align: middle;
  transition: all 0.3s ease;
}

.nav-user-menu .menu-item-login > a:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23a2cce3' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11 16l-4-4m0 0l4-4m-4 4h14m-5 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h7a3 3 0 013 3v1'/%3E%3C/svg%3E");
}

.nav-user-menu .drop-down ul a:hover,
.nav-user-menu .drop-down ul .active > a,
.nav-user-menu .drop-down ul li:hover > a {
  color: #68A4C4;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transform: translateX(2px);
}

.nav-user-menu .drop-down ul a:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

/* 登出按钮特殊样式 */
.nav-user-menu .menu-item-logout a {
  color: #e53e3e;
}

.nav-user-menu .menu-item-logout a:hover {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #c53030;
}

/* 未登录时的 submenu 窄宽度 */
.nav-user-menu .user-menu-item.drop-down:not(:has(.user-menu-header)) > ul {
  min-width: 120px;
}

/* 用户菜单头部 */
.nav-user-menu .user-menu-header {
  padding: 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 2px;
  margin-bottom: 8px;
  text-align: center;
}

.nav-user-menu .user-greeting {
  font-size: 16px;
  font-weight: 600;
  color: #1e4356;
  margin-bottom: 4px;
}

.nav-user-menu .user-uid {
  font-size: 12px;
  color: #68A4C4;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 下拉菜单分隔线 */
.nav-user-menu .user-dropdown-menu li + li {
  position: relative;
}

.nav-user-menu .user-dropdown-menu li + li::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

/* 移动端用户卡片样式 */
.mobile-nav .mobile-user-card {
  margin: 15px 20px;
  border-radius: 3px;
  background: linear-gradient(135deg, #68A4C4 0%, #1c4356 100%);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav .mobile-user-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  color: #fff;
  text-decoration: none;
}

.mobile-nav .mobile-user-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-nav .mobile-user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-nav .mobile-user-info {
  text-align: center;
}

.mobile-nav .mobile-user-greeting {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.mobile-nav .mobile-user-uid {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.mobile-nav .mobile-submenu-item {
  padding: 0 20px;
}

.mobile-nav .mobile-submenu-item a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #ddecf5;
  font-size: 14px;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-nav .mobile-submenu-item a:hover {
  background: rgba(104, 164, 196, 0.2);
  color: #a2cce3;
}

.mobile-nav .mobile-submenu-item a i {
  margin-right: 10px;
  font-size: 18px;
}

.mobile-nav .mobile-login-item a {
  display: flex;
  align-items: center;
  color: #ddecf5;
  padding: 10px 20px;
}

.mobile-nav .mobile-login-item a i {
  margin-right: 8px;
  font-size: 18px;
}

/* Logo样式 */
.logo img {
  max-height: 50px;
  width: auto;
  vertical-align: middle;
}

.logo a {
  display: inline-block;
  line-height: 1;
}


/*--------------------------------------------------------------
# Server Status
--------------------------------------------------------------*/
.server-status {
  padding: 60px 0;
}

.server-status .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.server-status .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1e4356;
  margin-bottom: 10px;
}

.server-status .section-title p {
  color: #666;
  font-size: 16px;
}

.server-status-card {
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server-status-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.server-status-card.offline {
  background: #fff5f5;
  border: 1px solid #ffcccc;
}

.server-icon {
  padding: 15px;
}

.server-icon img {
  width: 100%;
  max-width: 80px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.server-info {
  padding: 10px 0;
}

.server-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.server-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e4356;
  margin: 0;
  margin-right: 15px;
}

.server-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.server-status-badge.online {
  background: #e8f5e9;
  color: #2e7d32;
}

.server-status-badge.offline {
  background: #ffebee;
  color: #c62828;
}

.server-status-badge i {
  margin-right: 5px;
}

.server-motd {
  background: #f8f9fa;
  border-left: 4px solid #68A4C4;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 0 3px 8px 0;
}

.server-motd p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.server-motd p + p {
  margin-top: 8px;
}

.server-motd span {
  display: inline;
}

.server-motd .mc-reset {
  all: inherit;
  color: #444;
}

.server-motd .mc-obfuscated {
  display: inline-block;
  animation: mc-obfuscated 0.3s infinite;
}

@keyframes mc-obfuscated {
  0% { opacity: 0.8; }
  50% { opacity: 0.5; }
  100% { opacity: 0.8; }
}

.server-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.server-details .detail-item {
  display: flex;
  align-items: center;
  background: #f0f7fa;
  padding: 12px 18px;
  border-radius: 3px;
  transition: background 0.3s ease;
}

.server-details .detail-item:hover {
  background: #e3f2fd;
}

.server-details .detail-item i {
  font-size: 20px;
  color: #68A4C4;
  margin-right: 10px;
}

.server-details .detail-label {
  color: #666;
  font-size: 14px;
  margin-right: 5px;
}

.server-details .detail-value {
  color: #1e4356;
  font-weight: 600;
  font-size: 14px;
}

/* Tooltip styles */
.server-details .detail-item.has-tooltip {
  position: relative;
  cursor: help;
}

.server-details .detail-item.has-tooltip::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: normal;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  width: max-content;
  max-width: 200px;
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: normal;
}

.server-details .detail-item.has-tooltip::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -8px;
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 101;
}

.server-details .detail-item.has-tooltip:hover::before,
.server-details .detail-item.has-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .server-status-card {
    padding: 20px;
  }
  
  .server-icon {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .server-icon img {
    max-width: 64px;
  }
  
  .server-name {
    font-size: 20px;
  }
  
  .server-details {
    flex-direction: column;
    gap: 10px;
  }
  
  .server-details .detail-item {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .server-status {
    padding: 40px 0;
  }
  
  .server-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .server-name {
    margin-bottom: 10px;
  }
}

/* Join Server Button */
.join-server-item {
  background: transparent !important;
  padding: 0 !important;
}

.btn-join-server {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #68A4C4 0%, #7ab8d4 100%);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(104, 164, 196, 0.3);
}

.btn-join-server:hover {
  background: linear-gradient(135deg, #5a93b3 0%, #68A4C4 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(104, 164, 196, 0.4);
}

.btn-join-server i {
  margin-right: 8px;
  font-size: 16px;
}

/* Server Modal */
.server-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.server-modal.show {
  opacity: 1;
  visibility: visible;
}

.server-modal-content {
  background: #fff;
  border-radius: 1px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  overflow: hidden;
}

.server-modal.show .server-modal-content {
  transform: scale(1) translateY(0);
}

.server-modal-header {
  background: linear-gradient(135deg, #68A4C4 0%, #7ab8d4 100%);
  color: #fff;
  padding: 20px 25px;
  text-align: center;
}

.server-modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.server-modal-header h3 i {
  margin-right: 10px;
  font-size: 24px;
}

.server-modal-body {
  padding: 25px;
}

.server-modal-body .modal-desc {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.server-modal-body .modal-warning {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.server-modal-body .modal-warning i {
  color: #856404;
  font-size: 20px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.server-modal-body .modal-warning p {
  color: #856404;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.server-modal-body .modal-warning strong {
  color: #dc3545;
}

.server-modal-footer {
  padding: 20px 25px;
  background: #f8f9fa;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-modal {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-modal i {
  margin-right: 6px;
}

.btn-modal.btn-cancel {
  background: #e9ecef;
  color: #495057;
}

.btn-modal.btn-cancel:hover {
  background: #dee2e6;
}

.btn-modal.btn-download {
  background: #009970;
  color: #fff;
}

.btn-modal.btn-download:hover {
  background: #007a5a;
  color: #fff;
}

.btn-modal.btn-join {
  background: linear-gradient(135deg, #68A4C4 0%, #7ab8d4 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(104, 164, 196, 0.3);
}

.btn-modal.btn-join:hover {
  background: linear-gradient(135deg, #5a93b3 0%, #68A4C4 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(104, 164, 196, 0.4);
}

@media (max-width: 480px) {
  .server-modal-content {
    width: 95%;
    margin: 10px;
  }
  
  .server-modal-footer {
    flex-direction: column;
  }
  
  .btn-modal {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Home Recommend Section
--------------------------------------------------------------*/
.home-recommend {
  padding: 40px 0;
  background: #f8f9fa;
}

.home-recommend .container {
  max-width: 1200px;
}

.home-recommend-wrapper {
  display: flex;
  gap: 25px;
  align-items: stretch;
}

/* 左侧轮播区域 */
.home-recommend-carousel {
  flex: 1;
  min-width: 0;
  position: relative;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.home-recommend-carousel .carousel-item {
  position: relative;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.home-recommend-carousel .carousel-item .post-image {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 比例 */
  overflow: hidden;
}

.home-recommend-carousel .carousel-item .post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-recommend-carousel .carousel-item:hover .post-image img {
  transform: scale(1.05);
}

.home-recommend-carousel .carousel-item .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  padding: 30px 25px 25px;
  color: #fff;
}

.home-recommend-carousel .carousel-item .post-category {
  display: inline-block;
  background: #68A4C4;
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.home-recommend-carousel .carousel-item .post-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.home-recommend-carousel .carousel-item .post-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-recommend-carousel .carousel-item .post-title a:hover {
  color: #a2cce3;
}

.home-recommend-carousel .carousel-item .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.home-recommend-carousel .carousel-item .post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-recommend-carousel .carousel-item .post-meta i {
  font-size: 14px;
}

/* 轮播指示器 */
.home-recommend-carousel .carousel-indicators {
  position: absolute;
  bottom: 15px;
  right: 20px;
  left: auto;
  margin: 0;
  display: flex;
  gap: 8px;
}

.home-recommend-carousel .carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-recommend-carousel .carousel-indicators li.active {
  background: #68A4C4;
  width: 25px;
  border-radius: 5px;
}

/* 右侧最新文章区域 */
.home-recommend-latest {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-recommend-latest .latest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  flex-shrink: 0;
}

.home-recommend-latest .latest-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e4356;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-recommend-latest .latest-header h3 i {
  color: #68A4C4;
  font-size: 18px;
}

.home-recommend-latest .btn-refresh {
  background: none;
  border: none;
  color: #68A4C4;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.home-recommend-latest .btn-refresh:hover {
  background: #f0f7fa;
}

.home-recommend-latest .btn-refresh i {
  font-size: 14px;
}

.home-recommend-latest .latest-list {
  padding: 10px 15px;
  flex: 1;
  overflow-y: auto;
}

.home-recommend-latest .latest-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.3s ease;
}

.home-recommend-latest .latest-item:last-child {
  border-bottom: none;
}

.home-recommend-latest .latest-item:hover {
  background: #fafafa;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
}

.home-recommend-latest .latest-item .item-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 1px;
  overflow: hidden;
}

.home-recommend-latest .latest-item .item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-recommend-latest .latest-item:hover .item-thumb img {
  transform: scale(1.1);
}

.home-recommend-latest .latest-item .item-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-recommend-latest .latest-item .item-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-recommend-latest .latest-item .item-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-recommend-latest .latest-item .item-title a:hover {
  color: #68A4C4;
}

.home-recommend-latest .latest-item .item-date {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

.home-recommend-latest .latest-item .item-date i {
  font-size: 12px;
}

/* 响应式设计 */
@media (max-width: 991px) {
  .home-recommend-wrapper {
    flex-direction: column;
  }
  
  .home-recommend-latest {
    width: 100%;
  }
  
  .home-recommend-carousel .carousel-item .post-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .home-recommend {
    padding: 30px 0;
  }
  
  .home-recommend-carousel .carousel-item .post-overlay {
    padding: 20px 15px 15px;
  }
  
  .home-recommend-carousel .carousel-item .post-title {
    font-size: 16px;
  }
  
  .home-recommend-carousel .carousel-item .post-meta {
    font-size: 12px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .home-recommend-latest .latest-header {
    padding: 15px;
  }
  
  .home-recommend-latest .latest-list {
    padding: 10px 15px;
  }
  
  .home-recommend-latest .latest-item .item-thumb {
    width: 60px;
    height: 60px;
  }
}

/* 加载动画样式 */
.home-recommend-latest .latest-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  color: #999;
  font-size: 14px;
  gap: 10px;
}

.home-recommend-latest .loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f0f0f0;
  border-top-color: #68A4C4;
  border-radius: 50%;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* 按钮加载状态 */
.home-recommend-latest .btn-refresh.loading {
  opacity: 0.6;
  cursor: not-allowed;
}

.home-recommend-latest .btn-refresh.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* 列表淡入动画 */
.home-recommend-latest .latest-list {
  transition: opacity 0.3s ease;
}

/*--------------------------------------------------------------
# Responsive Header & Layout
--------------------------------------------------------------*/
@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
  
  #header {
    height: 70px;
  }
  
  #header.header-scrolled {
    height: 55px;
  }
  
  .mobile-nav-toggle {
    top: 17px;
  }
  
  #hero {
    margin-top: -70px;
  }
  
  section.breadcrumbs {
    padding: 80px 0 15px 0;
    margin-top: -70px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  
  #header {
    height: 60px;
  }
  
  #header.header-scrolled {
    height: 50px;
  }
  
  .mobile-nav-toggle {
    top: 12px;
  }
  
  #hero {
    margin-top: -60px;
    height: 90vh;
  }
  
  section.breadcrumbs {
    padding: 70px 0 15px 0;
    margin-top: -60px;
  }
  
  section.breadcrumbs h2 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  body {
    padding-top: 55px;
  }
  
  #header {
    height: 55px;
  }
  
  #header.header-scrolled {
    height: 45px;
  }
  
  .mobile-nav-toggle {
    top: 10px;
    font-size: 22px;
  }
  
  #hero {
    margin-top: -55px;
    height: 85vh;
  }
  
  #hero h2 {
    font-size: 24px;
  }
  
  section.breadcrumbs {
    padding: 65px 0 12px 0;
    margin-top: -55px;
  }
  
  section.breadcrumbs h2 {
    font-size: 18px;
  }
}

/* 非首页页面的主内容区域 */
body:not(.home) #main {
  padding-top: 10px;
}

/* Section间距优化 */
section + section {
  margin-top: 0;
}

/* 页面内容区域 */
.page-content {
  margin: 30px auto 60px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}