*{
  box-sizing: border-box;
}

html,
body{
  margin: 0;
  padding: 0;
  width: 100%;
  min-width: 1200px;
  font-family: "Microsoft YaHei", sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

img{
  max-width: 100%;
}

/* ================= 导航 ================= */
.navbar{
  background-color: rgb(0, 132, 183);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9999;
}

.nav-container{
  width: 1200px;
  display: flex;
  align-items: center;
}

.logo{
  height: 58px;
  display: block;
}

.nav-menu{
  display: flex;
  margin-left: auto;
  gap: 40px;
  align-items: center;
}

.nav-item{
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  height: 100px;
}

.nav-item:hover{
  opacity: 0.8;
}

/* ================= 下拉菜单 ================= */
.nav-dropdown{
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 99999;
}

.dropdown-menu::before{
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  width: 100%;
  height: 8px;
}

.dropdown-item{
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  border-top: 1px solid #f2f2f2;
}

.dropdown-item:hover{
  background: #f6f8fa;
  color: rgb(0,132,183);
}

.nav-dropdown:hover .dropdown-menu{
  display: flex;
}

/* ================= 横幅 ================= */
.page-banner{
  width: 100%;
  min-width: 1200px;
  overflow: hidden;
}

.page-banner img{
  width: 100%;
  height: auto;
  display: block;
}

/* ================= 面包屑 ================= */
.breadcrumb{
  width: 1200px;
  margin: 18px auto 22px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a{
  text-decoration: none;
  color: rgb(0,132,183);
}

/* ================= SMT图片区块 ================= */
.smt-section{
  width: 100%;
  padding: 26px 0 90px;
  background: #fff;
}

.smt-container{
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.smt-title{
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.5px;
}

.smt-subtitle{
  margin: 8px 0 0;
  font-size: 13px;
  color: #333;
}

.smt-title-line{
  width: 36px;
  height: 3px;
  background: rgb(0,132,183);
  margin: 12px auto 34px;
}

.smt-grid{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.smt-card{
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 10px;
}

.smt-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #f7f7f7;
}

.smt-card:hover{
  border-color: #c8c8c8;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

/* ================= 底部模块 ================= */
.footer-section{
  width: 100%;
  min-width: 1200px;
  background: rgb(0,132,183);
  padding-top: 28px;
  padding-bottom: 20px;
}

.footer-container{
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1.4fr 1fr 1.2fr 120px;
  gap: 22px;
  align-items: start;
  color: #fff;
}

.footer-logo img{
  width: 84px;
  display: block;
}

.footer-qrcode img{
  width: 110px;
  display: block;
  background: #fff;
  padding: 5px;
}

.footer-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.footer-col p{
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li{
  margin-bottom: 10px;
  font-size: 13px;
  transition: opacity .2s ease;
}

.footer-list li:hover{
  opacity: 0.85;
}

.footer-btn{
  margin-top: 8px;
  width: 120px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all .25s ease;
}

.footer-btn:hover{
  background: #fff;
  color: rgb(0,132,183);
}

.footer-divider{
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-top: 18px;
}

.footer-bottom-wrap{
  width: 100%;
}

.footer-bottom{
  width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-left p{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
}

.footer-beian{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-beian a{
  color: #fff;
  text-decoration: none;
}

.footer-beian a:hover{
  text-decoration: underline;
}

.footer-gongan{
  display: inline-flex;
  align-items: center;
}

.footer-gongan img{
  width: 16px;
  height: 16px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

.footer-bottom-right a{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.footer-bottom-right a:hover{
  text-decoration: underline;
}
