/* ============================================
   全站共享样式表 - 昆明莘蓟越娴商贸有限公司
   基于参考站 https://demoall.5fa.cn/28529/ 还原
   ============================================ */

/* === Reset === */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, th, td, img {
  border: medium none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: #333; }
a:hover { text-decoration: none; }
img { border: 0; }
table { border-collapse: collapse; border-spacing: 0; }

/* === Base === */
html { font-size: 62.5%; }
body {
  font-family: "microsoft yahei", "sans-serif", "华文细黑", "黑体" !important;
}

/* === Global Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
}
.container:after {
  display: block;
  content: '';
  clear: both;
}
#header, footer, #main { overflow: hidden; width: 100%; }

/* === Top Info Bar (topbox > lotbox) === */
.topbox { position: relative; }
.lotbox {
  display: table;
  vertical-align: middle;
  padding: 10px 0;
  width: 100%;
}
.lotbox .logo-area {
  display: table-cell;
  vertical-align: middle;
}
.lotbox .logo-area a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lotbox .logo-area .logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.lotbox .logo-area .logo-text {
  display: flex;
  flex-direction: column;
}
.lotbox .logo-area .logo-text .brand-name {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.2;
}
.lotbox .logo-area .logo-text .brand-sub {
  font-size: 12px;
  color: #777;
  letter-spacing: 3px;
}
.lotbox .contact-info {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
.lotbox .contact-info span {
  font-size: 14px;
  color: #777777;
  margin-left: 20px;
  margin-top: 5px;
}
.lotbox .contact-info span i {
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #777777;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  line-height: 16px;
  margin-top: -2px;
}
.lotbox .contact-info span small {
  font-size: 14px;
}

/* === Navigation Bar (topbox > menubox) === */
.menubox {
  height: 65px;
  background: #1a1a1a;
  position: relative;
  padding: 0;
  border-radius: 5px;
  z-index: 10;
}
.menubox:after {
  display: block;
  content: '';
  clear: both;
}
.menubox ul > li {
  float: left;
  width: 12.5%;
  text-align: center;
  position: relative;
  transition: 300ms;
  -webkit-transition: 300ms;
  padding-top: 15px;
  height: 65px;
  box-sizing: border-box;
}
.menubox ul > li small {
  display: block;
}
.menubox ul > li:first-child {
  border-radius: 5px 0 0 5px;
}
.menubox ul > li:last-child {
  border-radius: 0 5px 5px 0;
}
.menubox ul > li a {
  color: #fff;
  font-size: 14px;
  display: block;
}
.menubox ul > li:hover {
  background: #015cb5;
}
.menubox ul > li.active {
  background: #015cb5;
}
/* dropdown submenu */
.menubox ul > li .submenu {
  display: none;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  z-index: 20;
  border-radius: 0 0 5px 5px;
}
.menubox ul > li:hover .submenu {
  display: block;
}
.menubox ul > li .submenu li {
  float: none;
  width: 100%;
  padding: 0;
  height: auto;
}
.menubox ul > li .submenu li a {
  padding: 10px 0;
  font-size: 13px;
}
.menubox ul > li .submenu li:hover {
  background: #015cb5;
}

/* === Mobile Navigation === */
.hidden-l { display: block; }
.hidden-g { display: none; position: relative; }
.hidden-g .h-nav-g {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background: #fff;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.hidden-g .h-nav-g img {
  max-height: 96%;
  margin-left: 15px;
}
.hidden-g .h-nav-g .btn_i {
  display: block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}
.hidden-g .h-nav-g .btn_i small, .hidden-g .h-nav-g .btn_i:before, .hidden-g .h-nav-g .btn_i:after {
  display: block;
  content: '';
  width: 24px;
  height: 2px;
  background: #000000;
  border-radius: 4px;
  margin: 6px 0;
}
.hidden-g .h-nav-g .btn_i_click small { opacity: 0; }
.hidden-g .h-nav-g .btn_i_click:before {
  transform: rotateZ(45deg);
  transform-origin: 0px 6px;
}
.hidden-g .h-nav-g .btn_i_click:after {
  transform: rotateZ(-45deg);
  transform-origin: 5px -1px;
}
.hidden-g .ul-small {
  background: #3a3a3a;
  width: 220px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  transform: translateX(220px);
  transition: 300ms;
  -webkit-transition: 300ms;
  -webkit-transform: translateX(220px);
}
.hidden-g .ul-small input {
  width: 160px;
  line-height: 40px;
  background: #fff;
  border: 0;
  border-radius: 20px;
  margin: 20px 30px 0 30px;
  text-indent: 10px;
}
.hidden-g .ul-small ul { margin-top: 20px; }
.hidden-g .ul-small ul li a {
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 50px;
  display: block;
}
.hidden-g .translate {
  transform: translateX(-220px);
  -webkit-transform: translateX(-220px);
}
.hidden-g .translate2 {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

/* === Banner === */
.banner {
  top: -35px;
  position: relative;
  border-top: 8px solid #1A1A1A;
}
.banner .container {
  position: relative;
  height: 100%;
}
.banner .container h3 {
  position: absolute;
  left: 0;
  top: -30px;
  background: #F43136;
  color: #fff;
  line-height: 30px;
  width: 78px;
  text-align: center;
  z-index: 1000;
}
.swiper-container1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.banner .swiper-slide {
  position: relative;
  background-size: 240px;
}
.banner .swiper-slide img {
  width: 100%;
  display: block;
}
.banner .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  display: inline-block;
  border-radius: 5px;
  background: #919190;
  opacity: .4;
}
.banner .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
/* Banner text overlay */
.banner .slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.banner .slide-caption h2 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}
.banner .slide-caption p {
  font-size: 18px;
}
.banner .slide-caption .banner-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 30px;
  background: #015cb5;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  transition: 300ms;
}
.banner .slide-caption .banner-btn:hover {
  background: #014a94;
}

/* === Main Content === */
#main { margin-top: -35px; }

/* Section Title */
.main-title {
  text-align: center;
  position: relative;
  padding: 70px 0 40px 0;
}
.main-title h3 {
  font-size: 36px;
  color: #333333;
  font-family: "Georgia Regular", "microsoft yahei", "sans-serif";
  background: linear-gradient(180deg, transparent 60%, rgba(1,92,181,0.1) 60%);
  display: inline-block;
  padding: 0 20px;
}
.main-title small {
  font-size: 20px;
  color: #6a6a6a;
  display: block;
}

/* === Product Section === */
.product {
  background: #fff;
  padding-bottom: 40px;
}
.pro-type { margin-bottom: 30px; }
.pro-type ul {
  margin: 0 auto;
  max-width: 817px;
  text-align: center;
}
.pro-type ul li {
  display: inline-block;
  width: 140px;
  line-height: 32px;
  background: #eeeeee;
  margin: 0 10px 12px 10px;
  text-align: center;
}
.pro-type ul li a {
  color: #4e4e4e;
  font-size: 14px;
  display: block;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.pro-type ul li a:hover {
  background: #015cb5;
  color: #fff;
}
.pro-type ul li.active-cat a {
  background: #015cb5;
  color: #fff;
}
.pdc-list { overflow: hidden; }
.pdc-list:after { display: block; content: ''; clear: both; }
.pdc-list li { margin-bottom: 13px; }
.pdc-list li b {
  display: block;
  height: 218px;
  width: 100%;
  position: relative;
  border: 1px solid #ccc;
  background: #000;
}
.pdc-list li b img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 300ms;
  -webkit-transition: 300ms;
  display: block;
}
.pdc-list li b i {
  display: block;
  width: 38px;
  height: 38px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 38'%3E%3Ccircle cx='19' cy='19' r='19' fill='%23fff'/%3E%3Cpath d='M19 10v18M10 19h18' stroke='%23015cb5' stroke-width='2'/%3E%3C/svg%3E");
  position: absolute;
  left: 50%;
  margin-left: -19px;
  top: 50%;
  margin-top: -19px;
  opacity: 0;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.pdc-list li span {
  display: block;
  line-height: 38px;
  text-align: center;
  border-bottom: 3px solid #e5e5e5;
  font-size: 14px;
  transition: 300ms;
  -webkit-transition: 300ms;
  color: #333;
}
.pdc-list li:hover img { opacity: 0.5; }
.pdc-list li:hover i { opacity: 1; }
.pdc-list li:hover span {
  background: #015cb5;
  color: #fff;
  border-bottom: 3px solid #015cb5;
}

/* Bootstrap-style grid columns */
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
  box-sizing: border-box;
  padding: 0 15px;
}
.col-lg-1 { width: 8.33333333%; } .col-lg-2 { width: 16.66666667%; }
.col-lg-3 { width: 25%; } .col-lg-4 { width: 33.33333333%; }
.col-lg-5 { width: 41.66666667%; } .col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.33333333%; } .col-lg-8 { width: 66.66666667%; }
.col-lg-9 { width: 75%; } .col-lg-10 { width: 83.33333333%; }
.col-lg-11 { width: 91.66666667%; } .col-lg-12 { width: 100%; }
.clearfix:after, .row:after {
  display: block; content: ''; clear: both;
}

/* === Stats / Time Section === */
.indexcoo {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=1920&h=600&fit=crop&auto=format&q=80") no-repeat center center;
  background-size: cover;
  height: 289px;
}
.indexcoo .list { padding-top: 105px; padding-bottom: 70px; }
.indexcoo .list:after { display: block; content: ''; clear: both; }
.indexcoo .list li {
  float: left;
  width: 25%;
  text-align: center;
  color: #fff;
}
.indexcoo .list li .num p {
  width: auto;
  display: inline;
  position: relative;
}
.indexcoo .list li .num p strong {
  font-size: 18px;
  padding-left: 14px;
}
.indexcoo .list li .num p span {
  animation: r_x 4s ease-in-out infinite;
  -webkit-animation: r_x 4s ease-in-out infinite;
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.indexcoo .list li .num small {
  display: block;
  position: absolute;
  font-size: 30px;
  line-height: 1;
  right: 13px;
  top: -21px;
  color: #fff;
}
.indexcoo .list li .num > b {
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
.indexcoo .list li .line {
  margin-left: auto;
  margin-right: auto;
  width: 29px;
  height: 3px;
  margin-top: 15px;
  background: #fff;
}
.indexcoo .list li .text {
  line-height: 50px;
  font-size: 16px;
  color: #fefefe;
}
@keyframes r_x {
  75% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@-webkit-keyframes r_x {
  75% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.time2 { height: 125px; background: #015cb5; background-size: cover; }

/* === News Section === */
.news { background: #f9f9f9; }
.news ul { margin-bottom: 45px; }
.news ul:after { display: block; content: ''; clear: both; }
.news ul li { position: relative; }
.news ul li:after {
  display: block;
  content: '';
  height: 10px;
  background: #eaeaea;
  width: 100%;
  position: absolute;
  bottom: 90px;
  left: 0;
}
.news ul li a {
  font-size: 14px;
  color: #5f5f5f;
  position: relative;
  z-index: 10;
  display: block;
}
.news ul li a > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.news ul li a > span {
  display: block;
  font-size: 14px;
  padding: 10px 0;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.news ul li a div {
  position: relative;
  padding-bottom: 45px;
  width: 105px;
}
.news ul li a div:after {
  position: absolute;
  display: block;
  content: '';
  width: 2px;
  height: 100%;
  background: #999999;
  left: 50%;
  margin-left: -1px;
  top: 0;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.news ul li a div:before {
  position: absolute;
  display: block;
  content: '';
  width: 12px;
  height: 12px;
  background: #999999;
  left: 50%;
  bottom: -6px;
  border-radius: 50%;
  z-index: 2;
  margin-left: -6px;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.news ul li a div small {
  display: block;
  font-size: 14px;
  width: 100%;
  line-height: 30px;
  border-radius: 3px;
  background: #999999;
  color: #fff;
  text-align: center;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.news ul li a > small {
  display: block;
  font-size: 14px;
  line-height: 25px;
  margin-top: 20px;
}
.news ul li:hover a > span { color: #015cb5; }
.news ul li:hover div:after, .news ul li:hover div:before { background: #015cb5; }
.news ul li:hover div small { background: #015cb5; }

/* === About Us / Company Section === */
.company {
  height: 656px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("https://images.unsplash.com/photo-1489824904134-891ab64532f1?w=1920&h=700&fit=crop&auto=format&q=80") no-repeat center;
  background-size: cover;
  padding-top: 88px;
  margin-top: 20px;
}
.company .com-right {
  width: 50%;
  float: right;
}
.company .com-right .com-title { margin-bottom: 25px; }
.company .com-right .com-title b {
  font-size: 36px;
  color: #015cb5;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.company .com-right .com-title b:after {
  display: block;
  content: '';
  width: 60px;
  height: 2px;
  background: #8b8b8b;
}
.company .com-right .com-title small {
  font-size: 18px;
  color: #878787;
}
.company .com-right span {
  display: block;
  font-size: 30px;
  color: #575757;
  margin-bottom: 75px;
}
.company .com-right p {
  width: 285px;
  height: 50px;
  line-height: 50px;
  background: #015cb5;
  text-align: center;
  font-size: 24px;
  color: #fff;
  border-radius: 5px;
  margin-bottom: 25px;
}
.company .com-right > small {
  line-height: 30px;
  color: #444;
  font-size: 14px;
}
.company .container {
  position: relative;
  height: 100%;
}
.company .container > p {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 24px;
  color: #fff;
  padding-right: 85px;
  line-height: 88px;
}
.company .container > p b { font-size: 40px; }

/* === Advantage Section === */
.adv { padding-bottom: 60px; background: #fff; }
.adv ul li { margin-bottom: 40px; }
.adv ul li:after { display: block; content: ''; clear: both; }
.adv ul li p {
  float: left;
  margin-right: 20px;
  position: relative;
  width: 50px;
  line-height: 50px;
}
.adv ul li p:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: #015cb5;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotateZ(45deg);
}
.adv ul li p span {
  font-size: 30px;
  color: #fff;
  z-index: 10;
  display: block;
  text-align: center;
  position: relative;
}
.adv ul li div { float: left; width: 85%; }
.adv ul li div strong {
  display: block;
  font-size: 25px;
  color: #015cb5;
}
.adv ul li div b {
  display: block;
  font-size: 13px;
  color: #6a6a6a;
}

/* === Contact CTA Section === */
.contact {
  height: 200px;
  background: linear-gradient(rgba(1,92,181,0.85), rgba(1,92,181,0.9)), url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&h=400&fit=crop&auto=format&q=80") no-repeat center;
  background-size: cover;
  color: #fff;
}
.contact .container { position: relative; height: 100%; }
.contact h2 {
  font-size: 28px;
  padding-top: 55px;
  margin: 0;
}
.contact small {
  font-size: 20px;
  display: block;
  margin-top: 15px;
}
.contact a {
  display: inline-block;
  width: 198px;
  height: 53px;
  line-height: 53px;
  text-align: center;
  background: #f43136;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 300ms;
}
.contact a:hover { background: #d42025; }

/* === Footer === */
footer {
  background: #1a1a1a;
  font-size: 14px;
  color: #888888;
}
footer .container { position: relative; }
footer a { color: #888888; }
footer .row {
  padding: 45px 0 25px 0;
}
footer .row:after { display: block; content: ''; clear: both; }
footer .row ul li:first-child {
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #383838;
}
footer .f-nav {
  overflow: hidden;
  padding-top: 20px;
}
footer .f-nav:after { display: block; content: ''; clear: both; }
footer .f-nav li {
  float: left;
  width: 10%;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
}
footer .f-nav li a {
  display: block;
  color: #888888;
}
footer .f-nav li:hover { background: #424242; }
footer .f-links { margin-top: 25px; }
footer .f-links img { float: left; }
footer .f-links ul {
  float: left;
  border-left: 1px solid #888888;
  padding-left: 20px;
}
footer .f-links ul:after { display: block; content: ''; clear: both; }
footer .f-links ul li {
  float: left;
  width: 50%;
  margin-bottom: 5px;
  line-height: 24px;
}
footer .f-ewm p { float: right; padding: 0; }
footer .f-ewm img { max-width: 100%; display: block; }
footer .f-ewm span {
  display: block;
  text-align: center;
  font-size: 12px;
}
footer .f-bottom {
  padding: 20px 0;
  border-top: 1px solid #333;
}
footer .f-bottom span { float: right; }
footer .f-bottom a { color: #888; }
footer .f-bottom a:hover { color: #015cb5; }
footer .gtop {
  position: absolute;
  right: 30px;
  top: 0;
  background: #f43136;
  color: #fff;
  text-align: center;
  width: 48px;
  height: 48px;
  z-index: 200;
  line-height: 48px;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
}

/* === Inner Page Banner === */
.n-banner, .p-banner, .c-banner, .a-banner, .co-banner, .j-banner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 380px;
  position: relative;
}
.n-banner {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?w=1920&h=400&fit=crop&auto=format&q=80");
}
.p-banner {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1920&h=400&fit=crop&auto=format&q=80");
}
.a-banner {
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url("https://images.unsplash.com/photo-1466781783364-36c955e42a7f?w=1920&h=400&fit=crop&auto=format&q=80");
}

/* Breadcrumb */
.ntit {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  line-height: 35px;
  padding: 30px 0;
}
.ntit .ntt { float: left; }
.ntit .ntt h1 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
}
.ntit .ntt i {
  font-size: 14px;
  color: #999;
  font-style: normal;
}
.ntit .weiz {
  float: right;
  font-size: 14px;
  color: #484848;
}
.ntit .weiz a { color: #484848; }
.ntit .weiz a:hover { color: #015cb5; }

/* === Inner Page Content === */
#info { margin-top: -35px; background: #fff; padding-bottom: 70px; }
.info2 { padding-bottom: 70px; }
.info2 .location { margin-bottom: 30px; }
.p_content {
  font-size: 14px;
  line-height: 35px;
  width: 100%;
  overflow: hidden;
  text-align: justify;
}
.p_content p { word-break: break-all; margin-bottom: 15px; }
.p_content img { max-width: 100%; }

/* === Product List Page === */
.info-pro { padding-top: 45px; }
.info-pro .pro-type ul { margin: 1px; width: 100%; }

/* === About Us Detail Page === */
.info_com { padding-top: 25px; }
.info_com h3 { font-size: 22px; color: #015cb5; margin-bottom: 15px; }
.info_com p { font-size: 14px; line-height: 32px; margin-bottom: 15px; text-indent: 2em; }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #015cb5;
  transform: translateX(-50%);
}
.timeline .tl-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline .tl-item:after { display: block; content: ''; clear: both; }
.timeline .tl-item .tl-dot {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 16px;
  height: 16px;
  background: #015cb5;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline .tl-item .tl-content {
  width: 43%;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.timeline .tl-item:nth-child(odd) .tl-content { float: left; }
.timeline .tl-item:nth-child(even) .tl-content { float: right; }
.timeline .tl-item .tl-content h4 { font-size: 18px; color: #015cb5; margin-bottom: 5px; }
.timeline .tl-item .tl-content p { font-size: 14px; color: #666; line-height: 28px; }
.timeline .tl-item .tl-year {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(20px);
  font-size: 14px;
  color: #999;
  font-weight: bold;
}
.timeline .tl-item:nth-child(even) .tl-year { transform: translateX(-60px); }

/* Culture cards */
.culture-cards { margin: 30px 0; }
.culture-cards:after { display: block; content: ''; clear: both; }
.culture-card {
  float: left;
  width: 31.333%;
  margin: 0 1%;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  transition: 300ms;
}
.culture-card:hover { box-shadow: 0 5px 20px rgba(0,0,0,0.1); transform: translateY(-5px); }
.culture-card .cc-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 15px;
  background: #015cb5;
  border-radius: 50%;
  color: #fff;
  font-size: 30px;
}
.culture-card h4 { font-size: 20px; color: #333; margin-bottom: 10px; }
.culture-card p { font-size: 14px; color: #666; line-height: 28px; }

/* Team section */
.team-grid { margin: 30px 0; }
.team-grid:after { display: block; content: ''; clear: both; }
.team-card {
  float: left;
  width: 22%;
  margin: 0 1.5% 30px;
  text-align: center;
  transition: 300ms;
}
.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #015cb5;
  margin-bottom: 10px;
}
.team-card h5 { font-size: 16px; color: #333; margin-bottom: 5px; }
.team-card small { font-size: 12px; color: #999; }

/* === Contact Page === */
.info_contact { background: #f1f1f1; padding: 25px 0; margin-top: 40px; }
.info_contact ul { overflow: hidden; }
.info_contact ul:after { display: block; content: ''; clear: both; }
.info_contact ul li {
  width: 25%;
  float: left;
  border-left: 1px solid #ccc;
  padding: 18px 0 18px 80px;
  box-sizing: border-box;
}
.info_contact ul li:nth-of-type(1) { border-left: 0; }
.info_contact ul li b {
  display: block;
  font-size: 18px;
}
.info_contact ul li small {
  font-size: 16px;
  color: #5f5d5d;
  margin-top: 10px;
}
.contact_info_list ul li {
  font-size: 14px;
  list-style: none;
  line-height: 30px;
}
.contact_info_list b {
  font-size: 22px;
  color: #b00;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
}
.contact_info_list b span {
  display: block;
  font-size: 12px;
  color: grey;
  margin-top: 5px;
  letter-spacing: -1px;
}
.info_maps {
  border: 1px solid #ccc;
  height: 315px;
  padding: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
}

/* === Contact Form === */
.input-group { margin-bottom: 10px; clear: both; }
.input-group:after { display: block; content: ''; clear: both; }
.input-group label {
  width: 62px;
  font-size: 15px;
  display: inline-block;
  text-align-last: justify;
  color: #606060;
  font-weight: bold;
}
.input-group input[type=text], .input-group input[type=email], .input-group input[type=tel] {
  border: 1px solid #aaa;
  border-radius: 2px;
  line-height: 30px;
  height: 30px;
  width: 276px;
  text-indent: 1em;
  font-family: "microsoft yahei", "sans-serif";
  transition: 300ms;
  -webkit-transition: 300ms;
  outline: none;
}
.input-group input[type=text]:focus, .input-group input[type=email]:focus, .input-group input[type=tel]:focus {
  width: 300px;
  box-shadow: 0 0 5px #015cb5;
  border: 1px solid #015cb5;
}
.input-group textarea {
  transition: 300ms;
  -webkit-transition: 300ms;
  width: 420px;
  border: 1px solid #aaa;
  border-radius: 2px;
  text-indent: 1em;
  padding-top: 5px;
  font-family: "microsoft yahei", "sans-serif";
  outline: none;
  resize: vertical;
}
.input-group textarea:focus {
  width: 440px;
  box-shadow: 0 0 5px #015cb5;
  border: 1px solid #015cb5;
}
#submit {
  display: block;
  clear: both;
  width: 80px;
  line-height: 30px;
  background: #015cb5;
  border: 0;
  color: #ffffff;
  font-size: 14px;
  font-family: "microsoft yahei";
  margin-left: 64px;
  cursor: pointer;
  border-radius: 2px;
  transition: 300ms;
}
#submit:hover { background: #f43136; }

/* === Product Detail Page === */
.info_content_left h2 {
  font-size: 20px;
  margin-bottom: 15px;
}
.pdc_time { color: #999; font-size: 12px; }
.p_info_title { margin-bottom: 15px; }
.p_info_title h3 { font-size: 18px; color: #015cb5; margin: 20px 0 10px; }
.p_info_title .param-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}
.p_info_title .param-table td {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}
.p_info_title .param-table td:first-child {
  background: #f5f5f5;
  font-weight: bold;
  width: 160px;
}
.feature-list { margin: 15px 0; }
.feature-list li {
  padding: 8px 0 8px 30px;
  font-size: 14px;
  line-height: 28px;
  position: relative;
}
.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #015cb5;
  font-weight: bold;
}
.info_content_right h4 {
  font-size: 16px;
  margin: 15px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
  font-weight: bold;
}
.info_content_right ul li a, .info_content_right ol li {
  color: #9E9E9E;
  line-height: 35px;
}
.info_content_right ul li a:hover { text-decoration: underline; }

/* Related products */
.related-products { margin: 40px 0; }
.related-products h3 { font-size: 20px; color: #333; margin-bottom: 20px; }

/* === News List Page === */
.info_news_ul li {
  background: #f6f6f6;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  transition: 300ms;
  -webkit-transition: 300ms;
}
.info_news_ul li:after { display: block; content: ''; clear: both; }
.info_news_ul li img {
  display: block;
  width: 100%;
  max-width: 283px;
  height: 175px;
  object-fit: cover;
}
.info_news_ul li b { padding-left: 0; }
.info_news_ul .news-date-col {
  text-align: center;
  color: #4b4b4b;
  font-size: 14px;
}
.info_news_ul .news-date-col small {
  display: block;
  width: 92px;
  height: 25px;
  margin: 10px auto 0 auto;
  line-height: 25px;
  text-align: center;
  background: #9A9A9A;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.info_news_ul .news-text-col {
  font-size: 16px;
  color: #1f1f1f;
  padding: 5px 0;
  margin-top: 40px;
}
.info_news_ul .news-text-col a { color: #1f1f1f; font-weight: bold; }
.info_news_ul .news-text-col a:hover { color: #015cb5; }
.info_news_ul .news-text-col small {
  display: block;
  font-size: 12px;
  color: #444;
  line-height: 24px;
  padding-top: 10px;
  padding-right: 15px;
  text-align: justify;
}
.info_news_ul li:hover {
  background: #fff;
  -moz-box-shadow: 0 0 10px #000;
  -webkit-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000000;
}

/* === News Detail Page === */
.n_left {
  width: 71.5%;
  float: left;
  margin-top: 40px;
}
.n_left ._title {
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 400;
}
.news_time { margin-bottom: 20px; }
.news_time span {
  font-size: 12px;
  margin-right: 10px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  overflow: hidden;
  color: #999;
}
.n_left ._content { font-size: 14px; line-height: 32px; color: #444; text-align: justify; }
.n_left ._content p { margin-bottom: 15px; }
.n_left ._content img { max-width: 100%; margin: 10px 0; border-radius: 4px; }
.info_news_right {
  width: 24%;
  float: right;
  padding-top: 40px;
}
.info_news_right ul {
  margin-top: 45px;
  border: #f3f3f3 10px solid;
  padding: 10px 7%;
}
.info_news_right ul li {
  padding: 27px 0;
  border-bottom: 1px #ececec solid;
}
.info_news_right ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #5c5c5c;
}
.info_news_right ul li b {
  display: block;
  padding-bottom: 8px;
  font-size: 19px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}
.info_news_right ul li a span {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
}

/* Prev/Next navigation */
#prev_next { list-style: none; margin-top: 20px; margin-right: 10px; font-size: 14px; }
#prev_next a { color: #3e3e3e; }
#prev_next a:hover { color: #015cb5; }
.prev_page, .next_page {
  font-size: 14px;
  border-top: 1px solid #ccc;
  padding: 5px 25px;
}
.prev_page a:hover, .next_page a:hover { color: #1c4dbe; }
.prev_page { margin-top: 20px; }
.next_page { border-bottom: 1px solid #ccc; }

/* === Pagination === */
div.page {
  margin: 20px 0 20px 0;
  clear: both;
  text-align: center;
  font-size: 12px;
}
div.page a {
  padding: 2px 8px;
  margin: 2px;
  color: #0E0E0E;
  text-decoration: none;
  background: #fff;
  border: 1px solid #908A8A;
  display: inline-block;
}
div.page a:hover { border: 1px solid #015cb5; }
div.page span.current {
  padding: 3px 10px;
  font-weight: bold;
  margin: 2px;
  color: #fff;
  background-color: #015cb5;
}

/* === Image Fallback === */
.img-fallback {
  background: linear-gradient(135deg, #015cb5, #f43136);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  color: #fff;
  font-size: 14px;
  border-radius: 0;
}

/* === Fade-in Animation === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Utility === */
.text-center { text-align: center; }
.img-responsive { max-width: 100%; display: block; }
.center-block { display: block; margin-left: auto; margin-right: auto; }
.hidden-xs { display: block; }
.visible-xs { display: none; }

/* ================================================
   RESPONSIVE - Mobile (<768px)
   ================================================ */
@media (max-width: 768px) {
  .hidden-l { display: none; }
  .hidden-g { display: block; }
  .container { padding: 0 10px; }

  /* Banner */
  .banner { border-top: 0; top: 0; margin-top: 60px; }
  .banner .slide-caption h2 { font-size: 22px; }
  .banner .slide-caption p { font-size: 14px; }
  .banner .slide-caption .banner-btn { font-size: 14px; padding: 8px 20px; }

  /* Main */
  .main-title { padding: 25px 0; }
  .main-title h3 { font-size: 24px; }
  .main-title small { font-size: 17px; }

  /* Product */
  .product { padding-bottom: 25px; }
  .pro-type { text-align: center; }
  .pro-type ul { width: 100%; margin-left: 5px; }
  .pro-type ul li { margin: 0 5px 10px 5px; width: 30%; }
  .pro-type ul li a { font-size: 12px; }
  .pdc-list li b { height: 110px; }
  .pdc-list li span { line-height: 32px; }

  /* Columns mobile */
  .col-xs-1 { width: 8.33333333%; } .col-xs-2 { width: 16.66666667%; }
  .col-xs-3 { width: 25%; } .col-xs-4 { width: 33.33333333%; }
  .col-xs-5 { width: 41.66666667%; } .col-xs-6 { width: 50%; }
  .col-xs-7 { width: 58.33333333%; } .col-xs-8 { width: 66.66666667%; }
  .col-xs-9 { width: 75%; } .col-xs-10 { width: 83.33333333%; }
  .col-xs-11 { width: 91.66666667%; } .col-xs-12 { width: 100%; }
  .hidden-xs { display: none !important; }
  .visible-xs { display: block !important; }
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
  .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
  .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
  .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    width: 100%;
  }

  /* Company */
  .company { height: 540px; padding-top: 45px; }
  .company .com-right .com-title b { font-size: 30px; }
  .company .com-right { width: 100%; }
  .company .com-right span { font-size: 18px; margin-bottom: 18px; }
  .company .container > p { font-size: 14px; padding-right: 40px; line-height: normal; bottom: 7px; right: 10px; }
  .company .container > p b { font-size: 20px; }

  /* News */
  .news ul li:after { display: none; }
  .news ul li { margin-bottom: 25px; }
  .news ul li a div:after { display: none; }
  .news ul li a div:before { display: none; }
  .news ul li a div { padding-bottom: 0; }
  .news ul li a > small { margin-top: 10px; }

  /* Adv */
  .adv ul li { margin-bottom: 20px; }
  .adv ul li p { width: 30px; height: 30px; line-height: 30px; }
  .adv ul li p span { font-size: 15px; }
  .adv ul li div strong { font-size: 16px; }
  .adv ul li div b { font-size: 12px; }
  .adv ul li div { width: 80%; }

  /* Contact CTA */
  .contact { text-align: center; height: 182px; }
  .contact h2 { margin: 20px auto 0 auto; width: 100%; font-size: 20px; padding-top: 30px; }
  .contact small { font-size: 12px; }
  .contact a { left: 50%; margin-left: -23%; width: 46%; bottom: -58px; }

  /* Footer */
  footer .row { padding: 15px 0; }
  footer .f-bottom { padding: 10px 0; text-align: center; }
  footer .gtop { position: fixed; right: 15px; top: 92%; background: rgba(244, 49, 54, 0.5); }
  footer .f-links ul { border-left: 0; padding-left: 0; }
  footer .f-links ul li { width: 100%; }
  footer .f-nav li { width: 25%; }

  /* Inner pages */
  #info { margin-top: 0; padding-bottom: 35px; }
  .n-banner, .p-banner, .a-banner { height: 200px; }
  .ntit { padding: 10px 0; }
  .ntit .weiz { float: none; }
  .n_left { width: 100%; float: none; }
  .n_left ._title { font-size: 24px; }
  .info_news_right { width: 100%; float: none; }
  .info_news_ul .news-text-col { padding: 15px; margin-top: 10px; }
  .info_news_ul .news-date-col { margin-top: 20px; }
  .info_news_ul li img { max-width: 100%; height: auto; }
  .info_contact ul li { width: 100%; border-left: 0; padding: 10px 0 10px 80px; border-bottom: 1px solid #ddd; }
  .info_maps { margin-top: 20px; }
  .input-group { padding-right: 25px; width: 100%; }
  .input-group input[type=text], .input-group input[type=email], .input-group input[type=tel] { width: 100%; }
  .input-group textarea { width: 100%; }
  #submit { margin-left: 0; }
  .input-group textarea:focus { width: 100%; }
  .input-group input[type=text]:focus, .input-group input[type=email]:focus, .input-group input[type=tel]:focus { width: 100%; }
  .indexcoo { height: auto; }
  .indexcoo .list { padding: 30px 0; }
  .indexcoo .list li { width: 50%; margin-bottom: 20px; }
  .timeline:before { left: 20px; }
  .timeline .tl-item .tl-dot { left: 20px; }
  .timeline .tl-item .tl-content { width: 80%; float: right !important; margin-left: 40px; }
  .timeline .tl-item .tl-year { left: 20px; transform: translateX(-60px); }
  .culture-card { width: 100%; margin: 0 0 20px; }
  .team-card { width: 46%; margin: 0 2% 30px; }
  .company .com-right > small { font-size: 12px; line-height: 22px; }
}

/* ================================================
   RESPONSIVE - Tablet (768px - 992px)
   ================================================ */
@media (min-width: 768px) and (max-width: 992px) {
  .hidden-l { display: none; }
  .hidden-g { display: block; }
  .col-sm-1 { width: 8.33333333%; } .col-sm-2 { width: 16.66666667%; }
  .col-sm-3 { width: 25%; } .col-sm-4 { width: 33.33333333%; }
  .col-sm-5 { width: 41.66666667%; } .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.33333333%; } .col-sm-8 { width: 66.66666667%; }
  .col-sm-9 { width: 75%; } .col-sm-10 { width: 83.33333333%; }
  .col-sm-11 { width: 91.66666667%; } .col-sm-12 { width: 100%; }
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
  .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
  .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    width: 100%;
  }

  /* Banner */
  .banner { border-top: 0; top: 0; margin-top: 60px; }
  .pro-type ul { width: 100%; }
  .pro-type ul li { margin: 0 8px 12px 8px; width: 106px; }
  .pdc-list li b { height: 170px; }
  .news ul li:after { bottom: 114px; }
  .company .com-right span { font-size: 18px; }
  .company .container > p { padding-right: 59px; }
  .company .container > p b { font-size: 30px; }
  .adv ul li p { width: 40px; height: 40px; line-height: 40px; }
  .adv ul li div strong { font-size: 20px; }
  .adv ul li div b { font-size: 12px; }
  .adv ul li div { width: 81%; }
  .contact small { font-size: 12px; }
  footer .f-links ul li { width: 100%; }
  footer .f-links ul { border-left: 0; }
  footer .f-links ul li { font-size: 12px; margin-bottom: 2px; }
  footer .f-links { margin-top: 0; }
  #info { margin-top: 0; }
  .n-banner, .p-banner, .a-banner { height: 250px; }
  .info_contact ul li { background-size: 36px; }
  .info_contact ul li b { font-size: 16px; }
  .info_contact ul li small { font-size: 12px; }
  .n_left { width: 100%; float: none; }
  .info_news_right { width: 100%; float: none; }
}

/* ================================================
   RESPONSIVE - Small Desktop (992px - 1200px)
   ================================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .hidden-l { display: block; }
  .hidden-g { display: none; }
  .col-md-1 { width: 8.33333333%; } .col-md-2 { width: 16.66666667%; }
  .col-md-3 { width: 25%; } .col-md-4 { width: 33.33333333%; }
  .col-md-5 { width: 41.66666667%; } .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.33333333%; } .col-md-8 { width: 66.66666667%; }
  .col-md-9 { width: 75%; } .col-md-10 { width: 83.33333333%; }
  .col-md-11 { width: 91.66666667%; } .col-md-12 { width: 100%; }
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
  .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    width: 100%;
  }
  .pdc-list li b { height: 170px; }
  .company .com-right span { margin-bottom: 35px; }
  .adv ul li div { width: 80%; }
  .contact small { font-size: 16px; }
  footer .f-links ul li { width: 100%; }
  footer .f-links img { margin-top: 35px; }
  .info_contact ul li { background-size: 47px; padding: 18px 0 18px 66px; }
  .input-group textarea { width: 340px; }
  .input-group textarea:focus { width: 350px; }
}

/* ================================================
   RESPONSIVE - Desktop (>1200px)
   ================================================ */
@media (min-width: 1200px) {
  .hidden-l { display: block; }
  .hidden-g { display: none; }
  .col-lg-1 { width: 8.33333333%; } .col-lg-2 { width: 16.66666667%; }
  .col-lg-3 { width: 25%; } .col-lg-4 { width: 33.33333333%; }
  .col-lg-5 { width: 41.66666667%; } .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.33333333%; } .col-lg-8 { width: 66.66666667%; }
  .col-lg-9 { width: 75%; } .col-lg-10 { width: 83.33333333%; }
  .col-lg-11 { width: 91.66666667%; } .col-lg-12 { width: 100%; }
  .adv ul { margin-top: 45px; }
}
