@charset "utf-8";

:root {
  /* 颜色变量 */
  --primary-red: #e1000a;
  --gold: #ffd700;
  --white: #fff;
  --light-bg: #E8EEFC;
  --border-color: #ccc;
  --text-dark: #2c3e50;
  --text-gray: #4a5568;
  --text-light: #718096;
  --shadow-color: rgba(0, 0, 0, 0.1);
  
  /* 尺寸变量 */
  --container-width: 1010px;
  --header-height: 100px;
  --box-height: 455px;
  --carousel-width: 755px;
  --sidebar-width: 243px;
}

* {
    margin: 0,auto;
    padding: 0;
    box-sizing: border-box;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
	margin: 0,auto;
    padding: 0;
	line-height: 1.6;
    box-sizing: border-box;
	min-width: 1010px; /* 防止在小屏幕上缩放 */
}

.chaxun {
  width: 100vw;
  min-height: 100vh;
  padding: 15px;
  background-color: white;
  box-shadow: 0 0 10px var(--shadow-color);
  margin: 0 auto;
}

/* 通用组件样式 */
.div1 {
  width: 100%;
  height: var(--header-height);
  background: var(--primary-red);
  position: relative;
  margin-bottom: 5px;
}

.div2 {
  width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.div3 {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.div3:hover {
  transform: scale(1.05);
}

.div3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-group {
  display: flex;
  align-items: center;
  gap: 25px;
}

.greeting-left {
  color: var(--white);
  font-size: 26px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
  font-weight: bold;
}

.right-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: bold;
  justify-content: center;
  gap: 4px;
  margin-top: 30px;
  margin-right: 5px;
}

.greeting-main {
  color: var(--white);
  font-size: 20px;
  white-space: nowrap;
  line-height: 1.3;
}

.greeting-sub {
  color: var(--gold);
  font-size: 18px;
  margin-top: -18px;
  position: relative;
  opacity: 0.9;
  line-height: 1.3;
}

.box {
  width: var(--container-width);
  height: var(--box-height);
  margin: 18px auto 0;
  position: relative;
}

.carousel {
  width: var(--carousel-width);
  height: 450px;
  float: left;
  position: relative;
  overflow: hidden;
}

.carousel-img {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  object-fit: cover;
}

.carousel-img.active {
  opacity: 1;
}

.controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 12px;
}

.control-bar {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.4s ease;
}

.control-bar.active {
  background: var(--white);
  width: 36px;
}

.box2 {
  background-color: var(--light-bg);
  width: var(--sidebar-width);
  height: 280px;
  border: 1px solid #000;
  float: right;
  overflow: auto;
}

.box2_h2 {
  text-align: center;
  margin: 10px 0 5px;
  color: #000;
  font-size: large;
}

.box2_p {
  font-size: 16px;
  padding: 10px;
  text-align: right;
  margin: 5px 0 10px;
}

.box3 {
  width: 245px;
  height: 158px;
  float: left;
  margin: 10px 0 0 10px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.box3 div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.box3 div:last-child {
  border-bottom: none;
}

.box3 div:first-child {
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: var(--white);
  font-weight: bold;
}

.box3 a {
  color: inherit;
  text-decoration: none;
}

.sybox {
  width: 1020px;
  height: 45px;
  margin: 5px auto 0;
  display: flex;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 3px var(--shadow-color);
}

.sybtn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  font-size: 22px;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 5px;
  border: 2px solid transparent;
}

.sybtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  font-size: 20px;
}

.sybtn:nth-child(1) { background-color: #ff6b6b; }
.sybtn:nth-child(2) { background-color: #4ecdc4; }
.sybtn:nth-child(3) { background-color: #45b7d1; }
.sybtn:nth-child(4) { background-color: #96ceb4; }
.sybtn:nth-child(5) { background-color: #ffd700; }
.sybtn:nth-child(6) { background-color: #ff9a9e; }
.sybtn:nth-child(7) { background-color: #eea2f7; }

.gywomen {
  text-align: justify;
  font-size: 24px;
}

.tongzhi {
  font-size: 16px;
  text-align: justify;
  padding: 0 6px;
  color: #000;
}

.dibu {
  width: 100%;
  height: 120px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.wechat-section {
  width: 80px;
  padding-right: 30px;
  margin-left: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wechat-img {
  width: 80px;
  height: 100px;
}

.links-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.links-section a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.links-section a:hover {
  color: #007bff;
}

footer {
    width: 100% !important;
    max-width: 100% !important;
    background-color: #e1000a;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    position: relative;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
    left: 0;
    box-sizing: border-box;
    margin-top: 15px;
}

#introduce {
  width: var(--container-width);
  min-height: 600px;
  margin: 0 auto 30px;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
}

#gsjk {
  width: 250px;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#gsjk:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#gsjk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

#gsjk:hover img {
  opacity: 0.9;
}

.image-description {
  position: absolute;
  bottom: 0;
  width: 90%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: 13px 27px 13px 14px;
  font-size: 13px;
  line-height: 1.6;
}

.text-section {
  width: 680px;
  padding: 0 0 0 25px;
}

.text-section h2 {
  color: var(--text-dark);
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid #3498db;
  display: inline-block;
}

.text-section p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2px;
  text-align: justify;
}

.additional-content {
  width: 100%;
  margin-top: 30px;
}

.sub-section {
  margin-bottom: 40px;
}

.sub-section h3 {
  color: #2d3748;
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #4a90e2;
}

.image-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.gsjknr {
  width: 310px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-color);
  transition: transform 0.3s ease;
}

.gsjknr:hover {
  transform: translateY(-5px);
}

.gsjknr img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

.img-caption {
  padding: 15px;
  background: var(--white);
}

.img-caption h4 {
  color: #2d3748;
  font-size: 15px;
  margin-bottom: 8px;
}

.img-caption p {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

/*电脑端样式 
.chaxun {
  width: 125vw;
 /* margin-left:-12.5vw;*/
  transform-origin: top left;
 /* transform: scale(0.8);*/
}*/
table {
  margin: 0 auto;
}
