@charset "utf-8";
/* CSS Document */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { margin: 0; padding: 0; outline:0 none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
body{font:12px/1.5 "Arial","Hiragino Sans GB","Microsoft YaHei",'\5FAE\8F6F\96C5\9ED1',tahoma,sans-serif;background:#f7f7f7;color:#000;}
a{outline:0 none;cursor:pointer;text-decoration:none;color:#000;}
a:hover{text-decoration:none;}
ul,ol{list-style:none;}
img{border:0 none;}
em,i{font-style:normal;font-weight:normal;}
h1,h2,h3,h4{font-weight:normal;}
table{border-collapse:collapse;border-spacing:0;width:100%;}
.fl, .fr { display: inline; float: left; }
.fr { float: right; }
.pr { position: relative; }
.pa { position: absolute; }

 a{ -webkit-transition: transform .2s; transition: transform .2s;}
 a:hover{ -webkit-transform: scale(.95); transform: scale(.95);}

 /**-------------------顶部-------------------**/

.top {
  width: 100%;
  font-size: 19px;
  display: flex;
  background: #fff;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 40px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top .logo {
  transform: scale(0.55);
  margin-left: -50px;
  transition: transform 0.3s ease;
}

.top .logo:hover {
  transform: scale(0.6);
}

.top .nav {
  margin-right: -10px;
  display: flex;
  align-items: center;
}

.top .nav li {
  display: inline-block;
  margin: 0 65px;
  position: relative;
}

.top .nav li a {
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}

.top .nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e61a23;
  transition: width 0.3s ease;
}

.top .nav li.active a,
.top .nav li a:hover {
  color: #e61a23;
}

.top .nav li.active a::after,
.top .nav li a:hover::after {
  width: 100%;
}

.top .lang {
  flex: 1;
  text-align: right;
}
/**-------------------顶部-------------------**/
.title{ margin-top: 0px; font-size: 58px; color: #222;font-weight: bold; text-align: center;}
/*---------------- Contact us --------------*/
.content-contact {
  width: 100%;
  padding: 100px 0 150px 0;
  text-align: center;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.contact-mascot.left {
  width: 180px;   /* 左侧吉祥物宽度，可自定义 */
  height: auto;
  margin-right: 80px;
}
.contact-mascot.right {
  width: 280px;   /* 右侧吉祥物宽度，可自定义 */
  height: auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  min-width: 420px;
  max-width: 512px;
}
.contact-input-wrap {
  position: relative;
  width: 100%;
}
.contact-input {
  width: 100%;
  padding: 28px 210px 22px 50px;
  font-size: 27px;
  border: none;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-input:focus {
  box-shadow: 0 4px 5px rgba(220,30,20,0.12);
}
.contact-arrow {
  position: absolute;
  right: 35px;
  top: 42%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #d1d1d1;
  pointer-events: none;
}
/* 按钮样式 */
.contact-btn {
    display: block;
    width: 360px;
    height: 70px;
    background: #dc1e14;
    font-size: 24px;
    color: white;
    border: none;           /* 去掉边框 */
    outline: none;          /* 去掉轮廓 */
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 26, 35, 0.3);
    text-align: center;
    margin: 50px auto 0;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 26, 35, 0.4);
    background: linear-gradient(50px, #c41230, #e61a23);
}

.contact-btn:active {
    transform: translateY(0);
}
/*---------------- 底部 -----------*/
/* Footer Styles */
.content-footer {
    width: 100%;
    background: #1c1c1c;
    color: #fff;
    padding: 40px 0 30px;
    box-sizing: border-box;
}

.content-footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section - Logo and Social Media */
.content-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #3c3c3c;
    margin-bottom: 25px;
}

.content-footer .footer-top .logo {
    margin: 0;
}

.content-footer .footer-top .logo img {
    height: 60px;
    width: auto;
}

.content-footer .footer-top .ico-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.content-footer .footer-top .ico-list .follow-text {
    font-size: 14px;
    color: #fff;
    margin-right: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-footer .footer-top .ico-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* 图标容器样式 */
.content-footer .footer-top .ico-list .social-icons {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.content-footer .footer-top .ico-list a:hover {
    background: rgba(230, 26, 35, 0.1);
    transform: scale(1.1);
}

.content-footer .footer-top .ico-list a img {
    width: 40px;
    height: 40px;
    /* 移除滤镜，让图标显示原始颜色 */
}

/* Middle Section - Navigation and Legal Links */
.content-footer .footer-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #3c3c3c;
    margin-bottom: 25px;
}

.content-footer .footer-bot .text-list {
    display: flex;
    gap: 30px;
    margin: 0;
}

.content-footer .footer-bot .text-list a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.content-footer .footer-bot .text-list a:hover {
    color: #e61a23;
}

/* Legal Links */
.content-footer .footer-bot .legal-links {
    display: flex;
    gap: 30px;
}

.content-footer .footer-bot .legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.content-footer .footer-bot .legal-links a:hover {
    color: #e61a23;
}

/* Bottom Section - Copyright */
.content-footer .text-state {
    text-align: center;
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.6;
    margin: 0;
}


/*---------------适配---------------*/
@media (max-width: 1080px) {
  .top {
    height: 70px;
    padding: 0 8px;
  }
  .top .logo img {
    height: 80px; /* 或用scale: 80%; 但推荐直接调img高度 */
    width: auto;
  }
  .top .nav {
    margin-right: 0;
  }
  .top .nav li {
    margin: 0 24px;
    font-size: 16px;
  }
    .sub-title { font-size: 20px;}
    .title { font-size: 40px;}
    .contact-row {
    flex-direction: column;
    gap: 24px;
  }
    .contact-mascot {
    display: none;
  }
  .contact-form {
    min-width: 0;
    width: 90vw;
    max-width: 98vw;
  }
    .content-footer .container {
        padding: 0 15px;
    }
    
    .content-footer .footer-top .ico-list .follow-text {
        font-size: 14px;
    }
    
    .content-footer .footer-top .ico-list {
        gap: 12px;
    }
    
    .content-footer .footer-top .ico-list a {
        width: 32px;
        height: 32px;
    }
    
    .content-footer .footer-top .ico-list a img {
        width: 32px;
        height: 32px;
    }
    
    .content-footer .footer-bot .text-list,
    .content-footer .footer-bot .legal-links {
        gap: 20px;
    }
    
    .content-footer .footer-bot .text-list a,
    .content-footer .footer-bot .legal-links a {
        font-size: 14px;
    }
}
@media (max-width: 720px) {
  /*---------顶部-------*/
  .top {
    height: 70px;
    padding: 0 8px;
  }
  .top .logo img {
    height: 70px; /* 或用scale: 80%; 但推荐直接调img高度 */
    width: auto;
  }
  .top .nav {
    margin-right: 0;
  }
  .top .nav li {
    margin: 0 10px;
    font-size: 14px;
  }
  .sub-title { font-size: 13px;}
  .title { font-size: 25px;}
  /*-----------底部----------*/
 .container .text-state{ font-size:12px; }
/*-------------Contact Us-适配---------------*/
  .content-contact {
  width: 100%;
  padding: 50px 0 60px 0;
  text-align: center;
}
.contact-input-wrap .contact-input {
  padding: 28px 60px 22px 50px;
  font-size: 22px;
}
    .content-footer {
        padding: 30px 0 20px;
    }
    
    .content-footer .footer-top {
        gap: 20px;
    }
    
    .content-footer .footer-top .logo img {
        height: 50px;
    }
    
    .content-footer .footer-top .ico-list .follow-text {
        font-size: 13px;
    }
    
    .content-footer .footer-top .ico-list {
        gap: 10px;
    }
    
    .content-footer .footer-top .ico-list a {
        width: 32px;
        height: 32px;
    }
    
    .content-footer .footer-top .ico-list a img {
        width: 32px;
        height: 32px;
    }
    
    .content-footer .footer-bot {
        gap: 80px;
    }
    
    .content-footer .footer-bot .text-list,
    .content-footer .footer-bot .legal-links {
        gap: 24px;
    }
    
    .content-footer .footer-bot .text-list a,
    .content-footer .footer-bot .legal-links a {
        font-size: 13px;
    }
    
    .content-footer .text-state {
        font-size: 12px;
    }
}