@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.8;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

a:hover {
  color:#FC0;
}

img {
  max-width: 100%;
}

ul, li {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #e00 0%, #ff3333 100%);
  border-radius: 2px;
}

.section-title p {
  font-size: 16px;
  color: #999;
  margin-top: 20px;
  letter-spacing: 2px;
}

.quick-links-section {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  padding: 40px 0;
  margin-top: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.quick-link-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.quick-link-item a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.quick-link-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.quick-link-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.notice-bar {
  background: linear-gradient(90deg, #fff5f5 0%, #ffe8e8 100%);
  padding: 15px 0;
  border-top: 2px solid #e00;
  border-bottom: 2px solid #e00;
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.notice-label {
  background: #e00;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notice-marquee {
  flex: 1;
  overflow: hidden;
}

.notice-marquee marquee {
  color: #666;
  font-size: 14px;
}

.notice-phone {
  color: #e00;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-section {
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(224, 0, 0, 0.15);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-info {
  padding: 20px;
  text-align:center;
}

.service-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-card:hover .service-name a {
  color: #e00;
}

.view-more {
  text-align: center;
  margin-top: 40px;
}

.view-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 35px;
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
}

.view-more a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 0, 0, 0.4);
}

.why-choose-section {
  background: #fff;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h4 {
  font-size: 14px;
  color: #e00;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-header h5 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.why-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: #e00;
  box-shadow: 0 4px 20px rgba(224, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.newsi-section {
  background: #f9f9f9;
}

.newsi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.newsi-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.newsi-card:hover {
  box-shadow: 0 4px 20px rgba(224, 0, 0, 0.1);
  border-color: #ffe0e0;
}

.newsi-date-box {
  min-width: 70px;
  text-align: center;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ffe0e0;
}

.newsi-day {
  font-size: 28px;
  font-weight: 700;
  color: #e00;
  line-height: 1;
}

.newsi-month {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

.newsi-content {
  flex: 1;
}

.newsi-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsi-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsi-card:hover .newsi-title a {
  color: #e00;
}

.newsi-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.fleet-section {
  background: #fff;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(224, 0, 0, 0.12);
  border-color: #e00;
}

.fleet-image {
  aspect-ratio: 4 / 3;
    overflow: hidden;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-info {
  padding: 15px;
  text-align: center;
}

.fleet-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.fleet-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fleet-card:hover .fleet-name a {
  color: #e00;
}

@media (max-width: 992px) {
  .quick-links {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .quick-link-item {
    padding: 20px 10px;
  }
  
  .quick-link-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .notice-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  
  .newsi-list {
    grid-template-columns: 1fr;
  }
  
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*top*/
.site-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  background: linear-gradient(90deg, #e00 0%, #ff3333 100%);
  color: #fff;
  padding: 5px 0;
  font-size: 13px;
}

.top-info {
 display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.header-main {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.header-main .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo-section {
  flex-shrink: 0;
}

.logo-link {
  display: block;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-img {
  max-height: 60px;
  width: auto;
  display: block;
}

.search-section {
  flex: 1;
  max-width: 500px;
}

.search-form {
  width: 100%;
}

.search-box {
  display: flex;
  border: 2px solid #e00;
  border-radius: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.search-box:focus-within {
  box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(135deg, #cc0000 0%, #e60000 100%);
}

.search-icon {
  font-size: 16px;
}

.main-nav {
  background: #fff;
}

.navt-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.navt-item {
  position: relative;
  flex: 1;
  text-align: center;
}

.navt-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
}

.navt-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #e00 0%, #ff3333 100%);
  transition: width 0.3s ease;
  border-radius: 2px 2px 0 0;
}

.navt-item:hover .navt-link,
.navt-item.cur .navt-link,
.navt-item.active .navt-link {
  color: #e00;
}

.navt-item:hover .navt-link::after,
.navt-item.cur .navt-link::after,
.navt-item.active .navt-link::after {
  width: 70%;
}

.navt-icon {
  font-size: 16px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  border-top: 3px solid #e00;
}

.navt-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  padding: 10px 0;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, #fff5f5 0%, #fff 100%);
  color: #e00;
  border-left-color: #e00;
  padding-left: 25px;
}

@media (max-width: 992px) {
  .header-main .header-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-section {
    max-width: 100%;
    width: 100%;
  }
  
  .navt-menu {
    flex-wrap: wrap;
  }
  
  .navt-item {
    flex: 0 0 calc(50% - 2px);
  }
  
  .navt-link {
    padding: 14px 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-top {
    padding: 8px 0;
    font-size: 12px;
  }
  
  .top-info {
    gap: 15px;
  }
  
  .header-main {
    padding: 15px 0;
  }
  
  .logo-img {
    max-height: 50px;
  }
  
  .search-input {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .search-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .navt-item {
    flex: 0 0 calc(50% - 2px);
  }
  
  .navt-link {
    padding: 12px 8px;
    font-size: 13px;
  }
  
  .dropdown-menu {
    min-width: 150px;
  }
  
  .dropdown-item {
    padding: 8px 15px;
    font-size: 13px;
  }
}
/*foot*/
.site-footer {
  background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
  color: #fff;
  margin-top: 60px;
}

.footer-main {
  padding: 50px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e00;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ff3333;
}

.company-info .company-desc {
  color: #aaa;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contactd-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #e00;
}

.contactd-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contactd-line:last-child {
  margin-bottom: 0;
}

.contactd-line .icon {
  font-size: 18px;
  margin-right: 8px;
}

.contactd-line .label {
  color: #fff;
  margin-right: 5px;
}

.contactd-line .value {
  color: #fff;
  font-weight: 500;
}

.linkb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.linkb-list li {
  margin-bottom: 5px;
  float: left;
  width: 50%;
}

.linkb-list li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
}

.linkb-list li a:hover {
  color: #e00;
  padding-left: 8px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.links-grid a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.links-grid a:hover {
  color: #fff;
  background: rgba(224, 0, 0, 0.2);
  border-color: #e00;
}

.qr-wrapper {
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.qr-wrapper img {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 auto;
}

.qr-tip {
  color: #666;
  font-size: 12px;
  margin: 8px 0 0 0;
}

.social-contact {
  margin-top: 15px;
}

.qq-link {
  display: inline-flex;
  align-items: center;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.qq-link:hover {
  background: rgba(224, 0, 0, 0.2);
  color: #fff;
}

.qq-icon {
  font-size: 18px;
  margin-right: 8px;
}

.footer-bottom {
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.3);
}

.bottom-content {
  text-align: center;
}

.copyright {
  color: #999;
  font-size: 13px;
  margin: 0 0 8px 0;
}

.icp {
  margin: 0;
}

.icp a {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.icp a:hover {
  color: #e00;
}

.icp-icon {
  font-size: 14px;
}



@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .floating-tools {
    right: 10px;
    bottom: 80px;
  }
}
/*l*/
.sp_left {
  width: 100%;
}

.con1-left {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
}

.left-header {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  padding: 25px 20px;
  position: relative;
}

.left-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 80px;
  opacity: 0.3;
}

.left-header h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.header-line {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.about_ul {
  list-style: none;
  padding: 15px 0;
}

.about_ul li {
  margin: 0;
}

.about_ul li a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
}

.about_ul li a:hover {
  background: linear-gradient(90deg, #fff5f5 0%, #fff 100%);
  color: #e00;
  border-left-color: #e00;
  padding-left: 25px;
}

.about_ul li a.cur,
.about_ul li a.active {
  background: linear-gradient(90deg, #ffe8e8 0%, #fff 100%);
  color: #e00;
  border-left-color: #e00;
  font-weight: 600;
}

.nav-icon {
  width: 6px;
  height: 6px;
  background: #ddd;
  border-radius: 50%;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.about_ul li a:hover .nav-icon,
.about_ul li a.cur .nav-icon,
.about_ul li a.active .nav-icon {
  background: #e00;
  transform: scale(1.3);
}

.nav-text {
  flex: 1;
  font-size: 15px;
}

.nav-arrow {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ddd;
  opacity: 0;
  transition: all 0.3s ease;
}

.about_ul li a:hover .nav-arrow,
.about_ul li a.cur .nav-arrow,
.about_ul li a.active .nav-arrow {
  opacity: 1;
  border-left-color: #e00;
}

.contactl-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.contactl-header {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  padding: 25px 20px;
  position: relative;
}

.contactl-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 80px;
  opacity: 0.3;
}

.contactl-header h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px 0;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.contactl-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  margin: 0;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.contactl-line {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.contactl-info {
  padding: 20px;
}

.contactl-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contactl-item:last-child {
  border-bottom: none;
}

.contactl-item:hover {
  background: #fafafa;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.iteml-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ffe8e8 0%, #fff5f5 100%);
  border-radius: 8px;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.contactl-item:hover .iteml-icon {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  transform: scale(1.05);
}

.phone-icon::before {
  content: '📞';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.user-icon::before {
  content: '👤';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.location-icon::before {
  content: '📍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.email-icon::before {
  content: '✉️';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
}

.iteml-content {
  flex: 1;
  min-width: 0;
}

.iteml-content label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  font-weight: 500;
}

.iteml-content p {
  margin: 0;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  word-break: break-word;
}

.contactl-item:hover .iteml-content label {
  color: #e00;
}

@media (max-width: 768px) {
  .con1-left,
  .contactl-card {
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .left-header,
  .contactl-header {
    padding: 20px 18px;
  }
  
  .left-header h3,
  .contactl-header h4 {
    font-size: 18px;
  }
  
  .about_ul li a {
    padding: 12px 18px;
    font-size: 14px;
  }
  
  .contactl-info {
    padding: 15px;
  }
  
  .contactl-item {
    padding: 12px 0;
  }
}
/*ab*/
.main-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  gap: 25px;
  padding: 0 20px;
}

.left-sidebar {
  width: 260px;
  flex-shrink: 0;
}

.right-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.about-header {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  padding: 20px 40px;
  position: relative;
}

.about-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 100px;
  opacity: 0.3;
}

.about-header h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.breadcrumb {
  font-size: 14px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.about-content {
  padding: 45px 40px;
}

.content-wrapper {
  max-width: 100%;
}

.txx {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.txx img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.txx p {
  margin-bottom: 20px;
  text-align: justify;
}

.txx h2, .txx h3 {
  color: #e00;
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.txx h2 {
  font-size: 28px;
  border-left: 4px solid #e00;
  padding-left: 15px;
}

.txx h3 {
  font-size: 22px;
}

.txx ul, .txx ol {
  margin: 15px 0 15px 30px;
}

.txx li {
  margin-bottom: 10px;
}

.txx strong {
  color: #e00;
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-left: 4px solid #e00;
  padding: 20px 25px;
  margin: 25px 0;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }
  
  .left-sidebar {
    width: 100%;
  }
  
  .about-header {
    padding: 40px 30px;
  }
  
  .about-header h2 {
    font-size: 30px;
  }
  
  .about-content {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .main-container {
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .right-content {
    border-radius: 8px;
  }
  
  .about-header {
    padding: 35px 25px;
  }
  
  .about-header h2 {
    font-size: 26px;
  }
  
  .about-content {
    padding: 30px 20px;
  }
  
  .txx {
    font-size: 15px;
  }
}
/*pt*/
.productl-section {
  padding: 45px 40px;
}

.productl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.productl-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.productl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(224, 0, 0, 0.15);
  border-color: #e00;
}

.productl-image {
  position: relative;
  overflow: hidden;
 aspect-ratio: 4 / 3;
  background: #f9f9f9;
}

.productl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.productl-card:hover .productl-image img {
  transform: scale(1.1);
}

.productl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(224, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.productl-card:hover .productl-overlay {
  opacity: 1;
}

.view-btn {
  color: #fff;
  padding: 10px 25px;
  border: 2px solid #fff;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.view-btn:hover {
  background: #fff;
  color: #e00;
}

.productl-info {
  padding: 18px;
}

.productl-title {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
  text-align:center;
}

.productl-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.productl-card:hover .productl-title a {
  color: #e00;
}

.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fff;
  margin-right: 5px;
}

.pagination a:hover {
  border-color: #e00;
  color: #e00;
  background: #fff5f5;
}

.pagination .fcur,
.pagination .current {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  border-color: #e00;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.no-products .icon {
  font-size: 60px;
  margin-bottom: 15px;
  opacity: 0.3;
}

.no-products p {
  font-size: 16px;
}

@media (max-width: 992px) {
  .productl-section {
    padding: 35px 30px;
  }
  
  .productl-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .productl-section {
    padding: 30px 20px;
  }
  
  .productl-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .productl-image {
    height: 160px;
  }
  
  .productl-info {
    padding: 15px;
  }
  
  .productl-title {
    font-size: 14px;
    height: 44px;
  }
  
  .pagination {
    gap: 6px;
  }
  
  .pagination a,
  .pagination span {
    padding: 8px 12px;
    font-size: 13px;
  }
}
/*del*/
.news-section {
  padding: 45px 40px;
}

.news-list {
  list-style: none;
}

.news-item {
  padding: 25px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.news-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #e00 0%, #ff3333 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 4px 20px rgba(224, 0, 0, 0.12);
  border-color: #ffe0e0;
  transform: translateX(5px);
}

.news-item:hover::before {
  transform: scaleY(1);
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-link {
  display: flex;
  flex: 1;
  text-decoration: none;
  color: inherit;
  gap: 25px;
}

.news-left {
  flex: 1;
  min-width: 0;
}

.news-header {
  margin-bottom: 12px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.6;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.news-item:hover .news-title {
  color: #e00;
}

.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 13px;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-icon {
  font-size: 14px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #e00;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.news-item:hover .read-more::after {
  transform: translateX(5px);
}

.news-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 80px;
  border: 1px solid #ffe0e0;
  height: 90px;
  margin-top: 20px;
}

.date-day {
  font-size: 32px;
  font-weight: 700;
  color: #e00;
  line-height: 1;
}

.date-month {
  font-size: 13px;
  color: #999;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  font-size: 13px;
  color: #999;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-icon {
  font-size: 14px;
}

.read-more {
  display: inline-flex;

  align-items: center;
  gap: 5px;
  color: #e00;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.news-item:hover .read-more::after {
  transform: translateX(5px);
}


@media (max-width: 992px) {
  
  .news-section {
    padding: 35px 30px;
  }
  
  .news-link {
    flex-direction: column;
  }
  
  .news-right {
    flex-direction: row;
    gap: 15px;
    padding: 10px 15px;
    align-self: flex-start;
  }
}

@media (max-width: 768px) {

  .news-section {
    padding: 30px 20px;
  }
  
  .news-item {
    padding: 20px;
    flex-direction: column;
  }
  
  .news-link {
    flex-direction: column;
    gap: 15px;
  }
  
  .news-title {
    font-size: 16px;
  }
  
  .news-right {
    flex-direction: row;
    align-self: flex-start;
  }
  
  .date-day {
    font-size: 24px;
  }
  
}
/*del*/
.article-section {
  padding: 45px 40px;
}

.article-header {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.article-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  gap: 25px;
  font-size: 14px;
  color: #999;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-icon {
  font-size: 16px;
}

.article-content {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.article-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.article-content h2, 
.article-content h3 {
  color: #e00;
  margin: 30px 0 15px 0;
  font-weight: 600;
}

.article-content h2 {
  font-size: 26px;
  border-left: 4px solid #e00;
  padding-left: 15px;
}

.article-content h3 {
  font-size: 22px;
}

.article-content ul, 
.article-content ol {
  margin: 15px 0 15px 30px;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content strong {
  color: #e00;
  font-weight: 600;
}

.article-nav {
  margin-top: 40px;
  padding: 25px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 10px;
  border-left: 4px solid #e00;
}

.navd-item {
  margin-bottom: 12px;
  font-size: 15px;
  color: #666;
}

.navd-item:last-child {
  margin-bottom: 0;
}

.navd-label {
  color: #e00;
  font-weight: 600;
  margin-right: 8px;
}

.navd-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navd-link:hover {
  color: #e00;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 25px;
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(224, 0, 0, 0.3);
}

.back-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(224, 0, 0, 0.4);
}

.recommend-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.recommend-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 4px solid #e00;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recommend-icon {
  font-size: 24px;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.recommend-item {
  padding: 15px 18px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recommend-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e00 0%, #ff3333 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.recommend-item:hover {
  border-color: #ffe0e0;
  box-shadow: 0 2px 12px rgba(224, 0, 0, 0.1);
  transform: translateX(5px);
}

.recommend-item:hover::before {
  transform: scaleY(1);
}

.recommend-link {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.recommend-item:hover .recommend-link {
  color: #e00;
}

.recommend-date {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 992px) {
  .article-section {
    padding: 35px 30px;
  }
  
  .article-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  
  .article-section {
    padding: 30px 20px;
  }
  
  .article-title {
    font-size: 24px;
  }
  
  .article-meta {
    gap: 15px;
    font-size: 13px;
  }
  
  .article-content {
    font-size: 15px;
  }
  
  .recommend-grid {
    grid-template-columns: 1fr;
  }
}
/*bd*/
.message-section {
  padding: 45px 40px;
}

.message-intro {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.message-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.message-intro h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.message-intro p {
  font-size: 15px;
  color: #666;
}

.message-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.required {
  color: #e00;
  margin-left: 3px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #e00;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 0, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.char-count {
  position: absolute;
  right: 5px;
  bottom: 8px;
  font-size: 12px;
  color: #999;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 35px;
  justify-content: center;
}

.btn-submit,
.btn-reset {
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-submit {
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 0, 0, 0.4);
}

.btn-reset {
  background: #f5f5f5;
  color: #666;
  border: 2px solid #e0e0e0;
}

.btn-reset:hover {
  background: #fff;
  border-color: #e00;
  color: #e00;
}

.contactg-info-cards {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #f0f0f0;
}

.contactg-cards-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.contactg-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contactg-card {
  text-align: center;
  padding: 25px 15px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 10px;
  border: 1px solid #ffe0e0;
  transition: all 0.3s ease;
}

.contactg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(224, 0, 0, 0.1);
}

.contactg-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contactg-card-label {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.contactg-card-value {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
  }
  
  .left-sidebar {
    width: 100%;
  }
  
  .page-header {
    padding: 40px 30px;
  }
  
  .page-header h2 {
    font-size: 30px;
  }
  
  .message-section {
    padding: 35px 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contactg-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-container {
    margin: 20px auto;
    padding: 0 15px;
  }
  
  .right-content {
    border-radius: 8px;
  }
  
  .page-header {
    padding: 35px 25px;
  }
  
  .page-header h2 {
    font-size: 26px;
  }
  
  .message-section {
    padding: 30px 20px;
  }
  
  .message-intro h3 {
    font-size: 20px;
  }
  
  .form-input,
  .form-textarea {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .btn-submit,
  .btn-reset {
    padding: 12px 30px;
    font-size: 15px;
    flex: 1;
  }
  
  .contactg-cards-grid {
    grid-template-columns: 1fr;
  }
}
/*iab*/
.abouti-company-section {
  background: #fff;
}

.abouti-company-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.abouti-company-left {
  position: relative;
}

.abouti-company-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.abouti-company-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.abouti-company-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.abouti-company-features {
  list-style: none;
  margin-bottom: 10px;
}

.abouti-company-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}
.featurei-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.featurei-text {
  flex: 1;
}

.abouti-company-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 10px;
  border-left: 4px solid #e00;
}

.stati-item {
  text-align: center;
  flex: 1;
}

.stati-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #e00;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stati-label {
  font-size: 13px;
  color: #666;
}

.abouti-company-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #e00 0%, #ff3333 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 0, 0, 0.3);
}

.abouti-company-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 0, 0, 0.4);
}

.abouti-company-right {
  position: relative;
}

.abouti-imagei-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

.abouti-imagei-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.abouti-imagei-item.large {
  grid-row: span 2;
}

.abouti-imagei-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.abouti-imagei-item:hover img {
  transform: scale(1.1);
}

.imagei-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(224, 0, 0, 0.85), transparent);
  padding: 20px 15px 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.abouti-imagei-item:hover .imagei-overlay {
  transform: translateY(0);
}
@media (max-width: 992px) {
  .abouti-company-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .abouti-company-right {
    order: -1;
  }
  
  .abouti-imagei-grid {
    grid-template-rows: repeat(2, 180px);
  }
}

@media (max-width: 768px) {
  
  .abouti-company-title {
    font-size: 26px;
  }
  
  .abouti-company-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stati-number {
    font-size: 24px;
  }
  
  .abouti-imagei-grid {
    grid-template-rows: repeat(2, 150px);
  }
}
.bs-float-service {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
  }
  
  /* 折叠状态（竖条） */
  .bs-float-service-collapsed {
    width: 50px;
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 8px 0 0 8px;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.2);
  }
  
  .bs-float-service-collapsed:hover {
    width: 55px;
  }
  
  .bs-float-service-collapsed-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
  }
  
  .bs-float-service-collapsed-icon svg {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }
  
  .bs-float-service-collapsed-text {
    writing-mode: vertical-rl;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
  }
  
  /* 展开状态（完整面板） */
  .bs-float-service-expanded {
    width: 200px;
    background: #fff;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: bs-slideIn 0.3s ease-out;
  }
  
  @keyframes bs-slideIn {
    from {
      opacity: 0;
      transform: translateX(100%);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* 顶部标题栏 */
  .bs-float-service-header {
    background:linear-gradient(135deg, #e00 0%, #ff3333 100%);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .bs-float-service-header::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
  }
  
  .bs-float-service-title-cn {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0;
  }
  
  .bs-float-service-title-en {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
    margin-top: 3px;
  }
  
  .bs-float-service-close {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }
  
  .bs-float-service-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
  }
  
  /* 内容区域 */
  .bs-float-service-content {
    padding: 25px 10px;
  }
  
  /* 联系人信息 */
  .bs-float-service-contact {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 10px;
  }
  
  .bs-float-service-contact-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
  }
  
  .bs-float-service-contact-name svg {
    width: 18px;
    height: 18px;
    fill: #999;
  }
  
  .bs-float-service-phone-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
  }
  
  .bs-float-service-phone-label svg {
    width: 16px;
    height: 16px;
    fill: #666;
  }
  
  .bs-float-service-phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
    letter-spacing: 1px;
  }
  
  /* 二维码区域 */
  .bs-float-service-qrcode {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    margin-bottom: 0;
  }
  
  .bs-float-service-qrcode-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
  }
  
  .bs-float-service-qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .bs-float-service-qrcode-text {
    font-size: 13px;
    color: #666;
  }
  
  .bs-float-service-qrcode-text span {
    color: #e74c3c;
    font-weight: 600;
  }
  
  /* 返回顶部按钮 */
  .bs-float-service-backtop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
  }
  
  .bs-float-service-backtop:hover {
    background: #f0f0f0;
    color: #e74c3c;
  }
  
  .bs-float-service-backtop svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  
  /* 隐藏类 */
  .bs-float-service-hidden {
    display: none;
  }
  /*ser*/
  .search-results-section {
  padding: 40px 0 60px;
  background: var(--bg-light);
}

.search-results-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-stats {
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-stats-icon {
  font-size: 24px;
}

.search-stats-text {
  color: var(--text-secondary);
  font-size: 15px;
}

.search-stats-text strong {
  color: var(--primary-color);
  font-weight: 600;
}

.search-stats-keyword {
  color: var(--primary-color);
  font-weight: 600;
  background: var(--primary-light);
  padding: 2px 10px;
  border-radius: 4px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-result-item {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 2px solid transparent;
}

.search-result-item:hover {
  box-shadow: 0 8px 25px rgba(55, 159, 241, 0.15);
  border-color: var(--primary-color);
  transform: translateX(5px);
}

.search-result-item a {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.search-result-date {
  min-width: 70px;
  text-align: center;
  padding: 12px;
  background: var(--primary-light);
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-date .day {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.search-result-date .month-year {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 3px;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s;
}

.search-result-item:hover .search-result-title {
  color: var(--primary-color);
}

.search-result-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 13px;
}

.search-result-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}