/* Global styles */
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* Custom scrollbar for the page */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #ce2927;
  border-radius: 2.5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ce2927;
}

/* Content area styles */
.content {
  max-width: 90%;
  margin: 0 auto;
}

/* Header styles */
header {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 60px 40px;
  background-color: #ffffff;
  box-sizing: border-box;
  min-height: 220px;
}

/* Left navigation links */
header > div:first-child {
  display: flex;
  gap: 60px;
  margin-right: auto;
}

header > div:first-child a {
  text-decoration: none;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

header > div:first-child a:hover {
  color: #ce2a28;
}

/* Center logo (centered on page) */
header > div:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  flex-shrink: 0;
}

header > div:nth-child(2) img {
  max-height: 150px;
  width: auto;
}

/* Right navigation dropdown */
.nav-dropdown-container {
  position: relative;
  cursor: pointer;
  margin-left: auto;
}

.nav-icon {
  transition: transform 0.3s ease;
}

.nav-icon:hover {
  transform: scale(1.05);
}

.nav-icon img {
  height: 24px;
  width: auto;
}

/* Dropdown menu with drawer effect */
.dropdown-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: white;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.3s ease;
  z-index: 1000;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dropdown-menu::-webkit-scrollbar {
  display: none;
}

.dropdown-close {
  position: fixed;
  top: 16px;
  right: 260px;
  width: 6%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #828282;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateX(50px) rotate(0deg);
}

.nav-dropdown-container.active .dropdown-close {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) rotate(360deg);
}

.dropdown-close:hover {
  color: #ce2927;
}

/* Show dropdown on click */
.nav-dropdown-container.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 30px 20px;
  text-decoration: none;
  color: #808080;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #ce2927;
}

/* Dropdown nav item */
.dropdown-nav-item {
  border-bottom: 1px solid #f3f3f3;
}

.dropdown-nav-item:last-child {
  border-bottom: none;
}

.dropdown-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-nav-link::after {
  content: '›';
  font-size: 20px;
  color: #808080;
  margin-left: 10px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown-nav-item.no-arrow .dropdown-nav-link::after {
  content: none;
}

.dropdown-nav-item.active .dropdown-nav-link::after {
  transform: rotate(90deg);
}

.dropdown-nav-link:hover {
  background-color: #f5f5f5;
  color: #ce2927;
}

.dropdown-nav-link:hover::after {
  color: #ce2927;
}

.dropdown-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dropdown-nav-item.active .dropdown-nav-sub {
  max-height: 500px;
}

.dropdown-nav-sub a {
  display: block;
  padding: 20px 20px 20px 35px;
  text-decoration: none;
  color: #666;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-nav-sub a:hover {
  background-color: #f5f5f5;
  color: #ce2927;
}

.dropdown-share {
  display: flex;
  gap: 10px;
  padding: 10px 20px;
}

.dropdown-share .share-icon {
  padding: 0;
  border: none;
}

.dropdown-share .share-icon img {
  width: 32px;
  height: 32px;
}

/* Banner styles */
section:first-of-type {
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
}

.swiper-slide {
  width: 100%;
}

/* Banner section spacing */
.banner-section {
  margin: 100px 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Banner container */
.banner-container {
  width: 100%;
  height: auto;
  position: relative;
}

/* Banner image */
.banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* Ensure banner image displays fully */
.swiper-slide .h-100 {
  width: 1920px;
  height: 1050px;
  position: relative;
  padding: 0;
  margin: 0;
}

/* Banner image styles */
.swiper-slide .h-100 img {
  width: 1920px;
  height: 1050px;
  display: block;
  object-fit: none;
  object-position: 0 0;
}

/* For large resolution displays */
@media (min-width: 1920px) {
  .banner-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  
  .banner-container {
    width: 100%;
    height: auto;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
  }
  
  .swiper-slide .h-100 {
    width: 1920px;
    height: 1050px;
  }
  
  .swiper-slide .h-100 img {
    width: 1920px;
    height: 1050px;
  }
}

/* Responsive banner spacing */
@media (max-width: 768px) {
  .banner-section {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow-x: auto;
    justify-content: flex-start;
  }
  
  .banner-container {
    width: 100%;
    height: auto;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
  }
  
  .swiper-slide .h-100 {
    width: 1920px;
    height: 1050px;
  }
  
  .swiper-slide .h-100 img {
    width: 1920px;
    height: 1050px;
  }
}

/* Text section styles */
.text-center.py-10 {
  width: 70%;
  margin: 0 auto;
  color: #808080;
  text-align: center;
  padding: 40px 0;
  font-size: 20px;
  line-height: 1.6;
}

/* Drum section styles */
.drum-section {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 250px 0 200px 0;
}

.drum-content {
  flex: 1;
  padding-right: 20px;
}

.drum-title {
  font-size: 32px;
  color: #ce2927;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.drum-title p {
  font-size: 16px;
  color: #ce2927 !important;
  font-weight: normal;
  margin-top: 10px;
  color: #666;
  margin: 50px 0;
}

.drum-description {
  font-size: 20px;
  line-height: 1.6;
  color: #808080;
  max-width: 600px;
}

.drum-description br {
  display: block;
  content: '';
  margin-top: 30px;
}

.drum-image {
  flex: 1;
}

.drum-image img {
  width: 100%;
  height: auto;
}

/* Pen section styles */
.pen-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}

.pen-image img {
  width: 100%;
  height: auto;
}

.pen-content-container {
  margin-top: 100px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pen-left {
  flex: 1;
  padding-right: 20px;
}

.pen-left > div {
  font-size: 32px;
  color: #ce2927;
  font-weight: bold;
  margin-bottom: 10px;
}

.pen-left p {
  font-size: 16px;
  color: #ce2927 !important;
  font-weight: normal;
  margin-top: 40px;
  color: #666;
}

.pen-right {
  flex: 1;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.6;
  color: #808080;
}

.pen-right br {
  display: block;
  content: '';
  margin-top: 20px;
}

/* Responsive pen section */
@media (max-width: 768px) {
  .pen-content-container {
    flex-direction: column;
    margin: 0;
    gap: 30px;
  }
  
  .pen-left {
    padding-right: 0;
  }
  
  .pen-right {
    padding-left: 0;
  }
  
  .pen-left > div {
    font-size: 24px;
  }
  
  .pen-left p {
    margin-top: 0;
  }
  
  .pen-right {
    font-size: 14px;
  }
  
  .pen-right br {
    margin-top: 15px;
  }
}

/* Windmill section styles */
.windmill-section {
  display: flex;
  gap: 60px;
  margin: 200px 0;
}

.windmill-image {
  flex: 1;
}

.windmill-image img {
  width: 100%;
  height: auto;
}

.windmill-content {
  flex: 1;
  padding-left: 20px;
}

.windmill-content > div {
  font-size: 20px;
  line-height: 1.6;
  color: #808080;
  margin-bottom: 40px;
  max-width: 500px;
}

.windmill-title {
  font-size: 32px !important;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ce2927 !important;
}

.windmill-title p {
  font-size: 16px;
  color: #ce2927;
  font-weight: normal;
  margin: 30px 0 110px 0;
}

.windmill-content > div br {
  display: block;
  content: '';
  margin-top: 10px;
}

/* Responsive windmill section */
@media (max-width: 768px) {
  .windmill-section {
    flex-direction: column;
    gap: 30px;
    margin: 0;
  }
  
  .windmill-content {
    padding-left: 0;
  }
  
  .windmill-content > div {
    font-size: 14px;
  }
  
  .windmill-title p {
    margin: 0;
  }
}

/* Footer styles */
footer {
  width: 100%;
  background-color: #f8f9fa;
  padding: 20px 30px;
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    width: 90%;
    padding: 30px 0px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  header > div:first-child {
    gap: 10px;
    order: 1;
    margin-right: 0;
  }
  
  header > div:first-child a {
    font-size: 14px;
  }
  
  header > div:nth-child(2) {
    position: static;
    transform: none;
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  header > div:nth-child(2) img {
    max-height: 80px;
  }
  
  .nav-dropdown-container {
    order: 2;
  }
  
  .nav-icon img {
    height: 18px;
    width: auto;
  }
  
  /* Responsive drum section */
  .drum-section {
    flex-direction: column;
    gap: 50px;
    padding: 40px 0;
  }
  
  .drum-content {
    padding-right: 0;
    order: 2;
  }
  
  .drum-image {
    order: 1;
  }
  
  .drum-title {
    font-size: 24px;
  }
  
  .drum-title p {
    margin: 20px 0;
  }
  
  .drum-description {
    font-size: 14px;
  }
  
  .drum-description br {
    margin-top: 20px;
  }
  
  /* Responsive text section */
  .text-center.py-10 {
    width: 90%;
    padding: 30px 0;
    font-size: 16.8px; /* 14px * 1.2 */
  }
  
  /* Enlarge #808080 text elements by 0.2x on mobile */
  .drum-description {
    font-size: 16.8px; /* 14px * 1.2 */
  }
  
  .pen-right {
    font-size: 16.8px; /* 14px * 1.2 */
  }
  
  .windmill-content > div {
    font-size: 16.8px; /* 14px * 1.2 */
  }
  
  /* Responsive banner height */
  .swiper-slide .h-100 {
    min-height: 300px;
    max-height: 80vh;
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  footer {
    padding: 15px 20px;
  }
}

/* Custom swiper pagination styles */
.swiper-pagination {
  position: relative;
  margin-top: 150px;
  display: flex;
  justify-content: center;
  width: 10% !important;
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination-bullet {
  flex: 1;
  height: 5px;
  border-radius: 0;
  background: #ddd;
  margin: 0 2px;
  opacity: 1;
  transition: all 0.3s ease;
  min-width: 50px;
}

.swiper-pagination-bullet-active {
  background: #000000;
}

/* News more link styles */
.news-more {
  text-align: right;
  margin-bottom: 40px;
}

.news-more a {
  text-decoration: underline;
  color: #b3b3b3;
  font-size: 16px;
  transition: color 0.3s ease;
}

.news-more a:hover {
  color: #ce2927;
}

/* News item styles for mySwiper */
.news-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}


.news-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
  transform: scale(1.05);
}

.news-date {
  margin: 30px 0;
  font-size: 22px;
  color: #b3b3b3;
}

.news-title {
  font-size: 24px;
  color: #000000;
  flex: 1;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.news-item:hover .news-title {
  color: #ce2927;
}

/* Responsive news item styles */
@media (max-width: 768px) {
  .news-image {
    width: 100%;
  }
  
  .news-date {
    font-size: 14px;
    margin: 20px 0;
  }
  
  .news-title {
    font-size: 18px;
  }
  
  .swiper-pagination {
    margin-top: 50px;
  }
}

/* Tab section styles */
.tab-section {
  margin: 200px 0;
  margin-left: auto;
  margin-right: auto;
}

.tab-container {
  width: 100%;
}

/* Tab content wrapper with overlay */
.tab-content-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Tab content slider for horizontal scroll effect */
.tab-content-slider {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.tab-content-slider .tab-pane {
  flex: 0 0 100%;
  width: 100%;
  display: block;
}

.tab-content-slider .tab-pane img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tabs overlay on image */
.tabs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.tabs-overlay .tab-button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 20px;
  padding: 55px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-overlay .tab-button:hover {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
}

.tabs-overlay .tab-button.active {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  font-weight: bold;
}

/* Tab text content */
.tab-text-content {
  width: 100%;
  margin: 100px auto 0;
}

.tab-text-columns {
  display: flex;
  gap: 40px;
}

.tab-text-column-left {
  flex: 1;
  text-align: justify;
}

.tab-text-column-right {
  flex: 1;
  text-align: justify;
}

.tab-text-pane {
  display: none;
  font-size: 18px;
  line-height: 1.6;
  color: #808080;
}

.tab-text-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive tab section */
@media (max-width: 768px) {
  .tab-section {
    margin: 50px 0;
  }
  
  .tab-text-content {
    padding: 40px 0 0;
    margin: 0;
  }
  
  .tabs-overlay {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .tabs-overlay .tab-button {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .tab-text-pane {
    font-size: 16.8px;
  }
  
  .tab-text-columns {
    flex-direction: column;
    gap: 20px;
  }
  
  .tab-text-column-left,
  .tab-text-column-right {
    text-align: left;
  }
}

/* Three buttons container */
.three-buttons-container {
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.three-button-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.three-button-item:hover .three-button-text {
  color: #913029;
}

.three-button-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 15px;
}

.three-button-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.three-button-text {
  font-size: 32px;
  color: #333;
  text-align: center;
}

.three-button-divider {
  width: 2px;
  height: 60px;
  background-color: #913029;
  margin: 0;
  align-self: center;
}

/* Responsive three buttons */
@media (max-width: 768px) {
  .three-button-icon {
    width: 40px;
    height: 40px;
  }
  
  .three-button-text {
    font-size: 14px;
  }
  
  .three-button-item {
    padding: 15px 10px;
  }
  
  .three-buttons-container {
    padding: 0 0 30px 0;
  }
  
  footer {
    margin-top: 0 !important;
  }
  .three-buttons-container{
    width: 100%;
  }
}

/* Footer styles */
footer {
  width: 100%;
  margin-top: 200px;
  background-color: #000000;
}

.footer-content {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.footer-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-image-column img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
}

.footer-bottom-left {
  flex: 1;
  max-width: 30%;
  display: flex;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  color: #fff;
  font-size: 16px;
}

.footer-bottom-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  flex: 1;
}

.footer-nav-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-link {
  color: #e09f2d;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-sub a {
  color: #999;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-nav-sub a:hover {
  color: #fff;
}

.footer-nav-sub.footer-share {
  flex-direction: row;
  gap: 10px;
}

.footer-nav-sub.footer-share .share-icon {
  padding: 0;
  font-size: 0;
  border: none;
}

.footer-nav-sub.footer-share .share-icon img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
}

.footer-share {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-share .share-icon {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  padding: 10px 15px;
  border: 1px solid #333;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-align: center;
}

.footer-share .share-icon:hover {
  color: #fff;
  border-color: #fff;
}

.footer-copyright {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 50px 0 30px 0;
}

/* Footer responsive styles */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 40px;
    padding-top: 0;
  }
  
  .footer-bottom-left {
    max-width: 100%;
  }
  
  .footer-bottom-right {
    width: 100%;
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  
  .footer-copyright {
    font-size: 12px;
    padding: 30px 0;
  }
}

/* Dropdown overlay for mobile */
.dropdown-overlay {
  display: none;
}

@media (max-width: 768px) {
  .dropdown-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-dropdown-container.active .dropdown-overlay {
    opacity: 1;
    visibility: visible;
  }
}

/* Dropdown close button mobile styles */
@media (max-width: 768px) {
  .dropdown-close {
    right: 300px;
    font-size: 26px;
    color: #fff;
  }
}

footer { background-color: #000; padding: 130px 0 0; }
footer .wrapper { width: 72.91667%; margin: 0 auto; display: flex; display: -webkit-flex; flex-wrap: wrap; justify-content: space-between; }
footer .lt { width: 23.85714%; }
footer .lt .logo { max-width: 209px; margin-bottom: 30px; }
footer .lt .logo img { max-width: 100%; }
footer .lt .info { margin-top: 80px; }
footer .lt .info p { color: #fff; font-size: 16px; padding: 10px 0; }
footer .ft-menu { width: 60px; height: 33px; background-color: transparent; cursor: pointer; position: relative; margin: 30px auto 0; }
footer .ft-menu span { display: block; width: 100%; height: 5px; background-color: #fff; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); transition: all .5s; }
footer .ft-menu span:before { content: ''; display: block; width: 100%; height: 5px; background-color: #fff; position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); transition: all .5s; }
footer .ft-menu span:after { content: ''; display: block; width: 100%; height: 5px; background-color: #fff; position: absolute; top: 18px; left: 50%; transform: translateX(-50%); transition: all .5s; }
footer .nav { width: 70.42857%; position: relative; right: -5%; }
footer .nav ul { display: flex; display: -webkit-flex; flex-wrap: wrap; justify-content: space-between; }
footer .nav ul li { width: 25%; margin-bottom: 60px; }
footer .nav ul li:nth-child(4n) { width: 20%; }
footer .nav ul li dt { display: block; margin-bottom: 10px; }
footer .nav ul li dt a { color: #E09F2D; }
footer .nav ul li dd a { display: block; color: #BDBDBD; margin: 10px 0; }
footer .nav ul li dd a:hover { color: #fff; }
footer .nav ul .img { margin-bottom: 20px; max-width: 117px; }
footer .nav ul .img img { width: 100%; }
footer .ft { text-align: center; padding: 35px 0; margin-top: -40px; }
footer .ft p { color: #fff; opacity: .6; }

@media screen and (max-width: 1680px) { .index-xxlj .school-link { font-size: 20px; }
.myVideo { display:show;} }
@media screen and (max-width: 1440px) { .header .wrap { width: 96%; }
  .index-hswx .hswx-swiper .img { height: 233px; }
  .index-xxlj .school-link .img { width: 130px; }
  .index-xxlj .school-link { font-size: 18px; }
  .btn-more a { width: 180px; height: 50px; line-height: 48px; }
  .index-class { padding-top: 180px; }
  .index-video .video-swiper .img { height: 323px; }
  .index-Activities { padding-top: 180px; }
  .index-hswx { height: 600px; }
  .index-hswx .text { padding-top: 100px; } }
@media screen and (max-width: 1024px) { .header { height: 70px; }
.myVideo1 { display:show;}
.myVideo { display:none;}
  .scrl {  background: rgba(0, 0, 0, 0.2); }
  .header .wrap { padding-top: 10px; }
  .header .wrap .logo3 { display: none; }
  .header .wrap .logo4 { display: none; }
  .header nav { display: none; }
  .header-right { top: 20px; right: 40px; }
  .header .menu { margin-top: 0px;display: block; }
  .scrl .header-right { top: 20px; }
  .header .wrap .logo { margin-top: 10px; }
  .btn-more a { width: 150px; height: 40px; line-height: 38px; }
  .swiper-banner .swiper-slide { height: 70vw; }
  .index-xxjj { padding: 80px 0 100px; }
  .index-xxjj .text h2 { margin-bottom: 20px; }
  .index-xxjj .text p { margin-bottom: 30px; line-height: 1.8; }
  .index-hswx { height: 500px; }
  .index-hswx .text { padding-top: 0px; }
  .index-hswx .text h2 { margin-bottom: 20px; }
  .index-hswx .text p { line-height: 1.8; margin-bottom: 30px; }
  .index-hswx .hswx-swiper .img { height: 169px; }
  .index-hswx .hswx-swiper .txt h2 { margin-bottom: 10px; }
  .index-hswx .hswx-swiper .txt p { line-height: 30px; height: 60px; margin-bottom: 10px; }
  .index-hswx .hswx-swiper .btn-more a { height: 40px; line-height: 38px; }
  .index-class .text { height: 300px; }
  .index-Activities .text { height: 300px; }
  .index-express .wrapper { width: 80%; }
  .index-express ul li i { display: inline-block; transform: scale(0.7); }
  .index-video .video-swiper .img { height: 252px; }
  .index-News .wrapper li .txt h2 { line-height: 30px; max-height: 60px; }
  footer .ft-menu { width: 30px; }
  footer .ft-menu span:before { bottom: 10px; }
  footer .ft-menu span:after { top: 10px; }
  footer .wrapper { width: 90%; }
  .index-xxlj .school-link .img { width: 110px; }
  .index-xxlj .school-link { font-size: 16px; } }
@media screen and (max-width: 768px) { .swiper-banner .img { height: 100%; }
.swiper-banner .sj { width: 100%; height: 100%; display: none;}
.myVideo1 { display:show;}
.myVideo { display:none;}
	.index-xxlj .school-link p {font-size: 12px;}
	.index-xxlj .school-link .img { width: 90%;}
	.index-class {background:url(../images/sjjshz.jpg) center center /cover no-repeat; padding-top: 279px; overflow: hidden; }
  footer { padding-top: 70px; }
  footer .lt { width: 100%; text-align: center; }
  footer .lt .logo { margin: 0 auto; max-width: 180px; }
  footer .lt .info { margin-top: 20px; }
  footer .lt .info p { padding: 5px 0; }
  footer .nav { width: calc(100% - 40px); right: auto; margin-top: 30px; margin-left: 20px; }
  footer .nav ul { justify-content: center; width: 100%; }
  footer .nav ul li { width: auto; margin: 0 10px; }
  footer .nav ul li:nth-child(4n) { width: auto; }
  footer .nav ul li:last-child { width: 100%; text-align: center; margin: 20px 0; }
  footer .nav ul .img { margin: 10px auto; }
  footer .nav ul li dd { display: none; }
  footer .ft { margin: 0 20px; }
  footer .rt {
  text-align: right;
}

footer .rt h3 {
  margin-bottom: 20px;
}

footer .share {
  display: flex;
}

footer .share a {
  display: block;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  position: relative;
}

footer .share a img {
  width: 100%;
}

footer .share a .tc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110%;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  width:100px;
}

footer .share a:hover .tc {
  opacity: 1;
  visibility: visible;
}

footer .ft {
  border-bottom: 1.5625vw solid #b32129;
  color: #fff;
}

footer .ft > div {
  padding: 0 5.20833%;
  justify-content: space-between;
  margin-bottom: 30px;
}

footer .ft > div a {
  color: #fff;
}

footer .ft > div a:hover {
  color: #D32027;
}
