/* ========================================================================
   公共样式
 ========================================================================== */


/*  Font  
-------------------------- */
@font-face {
  font-family: 'NotoSansSC-Regular';
  src: url('../fonts/NotoSansSC-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-DemiLight';
  src: url('../fonts/NotoSansSC-DemiLight.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-Light';
  src: url('../fonts/NotoSansSC-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-Medium';
  src: url('../fonts/NotoSansSC-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'NotoSansSC-Bold';
  src: url('../fonts/NotoSansSC-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter-Regular';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter-Medium';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'PathwayExtreme-Medium';
  src: url('../fonts/PathwayExtreme-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'PathwayExtreme-Bold';
  src: url('../fonts/PathwayExtreme-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Anton-Regular';
  src: url('../fonts/Anton-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins-Bold';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins-Medium';
  src: url('../fonts/Poppins-Medium.woff2') format('woff2');
}




/*  Agent style 
-------------------------- */
body {
  font-family: NotoSansSC-Regular;
  font-size: 14px;
  margin: 0;
  color: #000;
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: hidden;
  line-height: 1.85;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
ul,
img,
video {
  vertical-align: top;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
dl {
  margin-top: 0;
  margin-bottom: 0;
}
dd {
  margin-left: 0;
}
img {
  max-width: 100%;
}

input,
textarea,
button {
  border: none;
  appearance: none;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
button {
  padding: 0;
}
textarea {
  resize: none;
  padding: 0;
}

a {
  outline: none;
  color: #000;
  text-decoration: none;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

input:focus,
textarea:focus,
button:focus a:focus,
input:active,
textarea:active,
button:active a:active {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: none;
  
}
input:-internal-autofill-selected {
    background-color: transparent !important;
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
}

::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9c9c9c;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRotate {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ========================================================================
   页面公共部分
 ========================================================================== */



/*  header 
-------------------------- */
.header {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
  box-sizing: border-box;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  transition: all .3s ease-in-out;
}

body.body-scroll .header {
  background-color: rgba(0, 0, 0, .8);
}



.header .logo img {
  width: 132px;
  height: 39px;
}


.header .nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 69px;
  bottom: 0;
  overflow-y: auto;
  background-color: #fff;
}
.header .nav>ul>li {
  padding: 20px 52px 20px 40px;
  position: relative;
}
.header .nav>ul>li:has(ul)::after {
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(132deg) translateX(-2px);
  position: absolute;
  right: 40px;
  top: 23px;
  transition: all .3s ease-in-out;
}
.header .nav>ul ul {
  display: none;
}
.header .nav>ul ul li {
  padding-left: 30px;
  padding-right: 15px;
  padding-top: 30px;
}
.header .nav.nav-active {
  display: block;
}
.header .nav>ul>li.li-active>a {
  color: #BB271D;
}
.header .nav li:has(ul).li-active::after {
  border-color: #BB271D;
  transform: rotate(-44deg);
}
.header .nav>ul ul.ul-active {
  display: block;
}



.header .language {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 15px;
  position: relative;
}
.header .language .earth {
  width: 28px;
  display: flex;
  align-items: center;
}

.header .language ul {
  display: none;
  position: absolute;
  left: -24px;
  right: -24px;
  top: 27px;
  padding-top: 10px;
}
.header .language li {
  font-family: NotoSansSC-DemiLight;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  text-align: center;
  border-bottom: 1px solid #f2f2f2;
}
.header .language li:last-child {
  border-bottom: none;
}
.header .language li a:hover {
  color: #BB271D;
}
.header .language:hover ul {
  display: block;
}
.header .menu {
  position: relative;
  width: 28px;
  height: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.header .menu span {
  width: 28px;
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transform-origin: center;
}
.header .menu.menu-active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.header .menu.menu-active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.header .menu.menu-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 992px) {
  .header {
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-top: 0;
    padding-bottom: 0;
    height: 100px;
  }
  .header .logo img {
    width: 219px;
    height: 65px;
  }
  .header .nav {
    display: block;
    flex: 1;
    position: static;
    background-color: transparent;
    overflow-y: initial;
  }

  .header .nav>ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2%;
  }
  
  .header .nav>ul>li {
    display: flex;
    align-items: center;
    padding: 0 2.25% 0 2.25%;
    transition: all .3s ease-in-out;
  }
  .header .nav>ul>li:has(ul)::after {
    display: none;
  }
  .header .nav>ul>li>a {
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
  }
  .header .nav>ul>li:has(ul)>a::after {
    display: block;
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
    position: static;
    margin-left: 8px;
    transition: all .3s ease-in-out;
  }
 
  .header .nav>ul ul {
    position: absolute;
    top: 23px;
    left: 10px;
    right: -30px;
    transition: all .3s ease-in-out;
    padding-top: 10px;
  }
  .header .nav>ul ul li {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    padding-top: 0;
    background-color: #fff;
  }
  .header .nav>ul ul a{
    color: #000;
    font-size: 14px;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f2f2f2;
    transition: all .3s ease-in-out;
  }
  .header .nav>ul ul li:first-child {
    padding-top: 10px;
  }
  .header .nav>ul ul li:last-child {
    padding-bottom: 24px;
  }
  .header .nav>ul ul li:last-child a{
    padding-bottom: 10px;
  }


  .header .nav>ul>li.li-active>a {
    color: #fff;
  }
  .header .nav>ul ul.ul-active {
    display: none;
  }

  

 
  .header .nav>ul>li:has(ul):hover a::after {
   
    transform: rotate(320deg);
    position: relative;
    top: 3px;
  }
  .header .nav>ul>li:hover ul {
    display: block;
  }
  .header .nav>ul ul li:hover a {
    color: #BB271D;
  }
  .header .nav>ul ul li:hover a {
    border-bottom-color: #BB271D;
  } 

  .header .language {
    margin-right: 0;
  }
  .header .language svg path {
    transition: all .3s ease-in-out;
  }
  .header .language:hover svg path {
    stroke: #BB271D;
  }


  .header .menu {
    display: none;
  }

}





/*  ny-banner
-------------------------- */
.ny-banner {
  position: relative;
}
.ny-banner .pic {
  max-width: none;
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.ny-banner .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.ny-banner .h1 {
  font-size: 25px;
  letter-spacing: 4px;
}
.ny-banner .h2 {
  margin-top: 46px;
}
.ny-banner .h3 {
  margin-top: 25px;
  max-width: 770px;
}
.ny-banner .h4 {
  max-width: 827px;
  margin-top: 34px;
}
@media (min-width: 768px) {
  .ny-banner .h1 {
    font-size: 64px;
    letter-spacing: 14px;
  }
  .ny-banner .h2 {
    font-size: 20px;
  }
  .ny-banner .h3 {
    font-size: 20px;
    margin-top: 36px;
  }
  .ny-banner .h4 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .ny-banner .pic {
    height: 100vh;
  }
}





/*  pages
-------------------------- */
.pages {
  padding-top: 65px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pages .prev,
.pages .next {
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(0, 0, 0, .2);
  border-right: 2px solid rgba(0, 0, 0, .2);
}

.pages .prev {
  transform: rotate(-135deg) translateY(-3px);
  margin-right: 34px;
}
.pages .next {
  transform: rotate(45deg) translateY(3px);
  margin-left: 34px;
}
.pages .prev.disabled,
.pages .next.disabled {
  cursor: default;
}

.pages .num {
  display: none;
}


@media (min-width: 768px) {
  .pages {
    padding-top: 130px;
    padding-bottom: 128px;
  }
  .pages .num {
    display: block;
    font-size: 24px;
    color: rgba(0, 0, 0, .2);
    margin-left: 28px;
    margin-right: 28px;
  }
   .pages .num.cur {
      color: #BB271D;
   }
}

@media (min-width: 992px) { 
  .pages .num:hover {
    color: #BB271D;
  }
  .pages .prev:hover,
  .pages .next:hover {
    border-color: #BB271D;
  }
}


/*  info-pages
-------------------------- */
.info-pages {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 48px;
  padding-bottom: 62px;
}
.info-pages a {
  font-family: Inter-Medium;
  color: rgba(132, 132, 132, 1);
  display: flex;
  align-items: center;
  min-width: 0;
 
}
.info-pages span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}
.info-pages .prev::before,
.info-pages .next::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 1px solid rgba(132, 132, 132, 1);
  border-right: 1px solid rgba(132, 132, 132, 1);
}
.info-pages .prev::before {
  transform: rotate(-135deg) translate(-3px);
  margin-right: 10px;
}
.info-pages .next::after {
  transform: rotate(45deg) translate(-3px, 3px);
  margin-left: 10px;
}
.info-pages .next {
  margin-top: 20px;
}
.info-pages .next span{
  text-align: right;
}
@media (min-width: 768px) {
  .info-pages {
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-top: 96px;
    padding-bottom: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
  }
  .info-pages .prev {
    margin-right: 60px;
  }
  .info-pages .next {
    margin-left: 60px;
    margin-top: 0;
  }
}
@media (min-width: 992px) {

  
  .info-pages a:hover {
    color: #BB271D;
  }
  .info-pages .prev::before,
  .info-pages .next::after {
    transition: all .3s ease-in-out;
  }
  .info-pages .prev:hover::before,
  .info-pages .next:hover::after {
    border-color: #BB271D;
  }
  
}
@media (min-width: 1480px) {
  .info-pages {
    padding-left: 25.36%;
    padding-right: 25.36%;
  }
}






/*  footer
-------------------------- */
.footer {
  background-color: #f9f8f3;
  background-image: url('../images/footer_bg.svg');
  background-repeat: no-repeat;
  background-position: center 25px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 70px;
  padding-bottom: 40px;
}
@media (min-width: 768px) { 
  .footer {
    background-position: 40px 50px;
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-top: 142px;
    padding-bottom: 82px;
  }
}




.floor1 .left {
  font-size: 24px;
  line-height: 1.5;
}
.floor1 .right {
  margin-top: 30px;
}
.floor1 .form-row .form-item {
  margin-top: 18px;
}

.floor1 .form-input input {
  width: 100%;
  font-family: NotoSansSC-Light;
  font-size: 16px;
  color: #000;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid #BB271D;
  box-sizing: border-box;
}
.floor1 .form-input input::placeholder {
  font-size: 16px;
  color: #000;
}
.floor1 .form-error {
  font-family: NotoSansSC-Light;
  color: #BB271D;
  margin-top: 18px;
  display: none;
}
.floor1 .form-item-error .form-error {
  display: block;
}
.floor1 .form-choice {
  margin-top: 18px;
}
.floor1 .form-row2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.floor1 .form-row2 .form-item {
  width: 46%;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 21px;
}
.floor1 .form-row2 .form-item:nth-child(2n) {
  width: 54%;
}
.floor1 .form-row2 input {
  width: 25px;
  height: 25px;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.floor1 .form-row2 .mark {
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  border: 1px solid #BB271D;
  margin-right: 14px;
  position: relative;
  z-index: 2;
}
.floor1 .form-row2 .mark::before {
  content: '';
  display: block;
  width: 20px;
  height: 13px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -6.5px;
  opacity: 0;
  transition: all .3s ease-in-out;
  background: url('../images/checkbox.svg') no-repeat center;
  z-index: 2;
  background-size: cover;
}
.floor1 .form-row2 input:checked ~ .mark::before {
  opacity: 1;
}
.floor1 .form-row2 label {
  font-family: NotoSansSC-Light;
}
.floor1 .form-tip {
  font-family: NotoSansSC-Light;
  margin-top: 40px;
}
.floor1 .form-submit {
  margin-top: 44px;
}
.floor1 .form-submit button {
  font-size: 18px;
  color: #fff;
  background: #BB271D;
  width: 144px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { 
  .floor1 .left {
    font-size: 44px;
  }
  .floor1 .form-row {
    display: flex;
    justify-content: space-between;
  }
  .floor1 .form-row .form-item {
    width: 48.7%;
  }
  .floor1 .form-input input {
    font-size: 18px;
  }
  .floor1 .form-input input::placeholder {
    font-size: 18px;
  }
  .floor1 .form-choice {
    font-size: 18px;
  }
  .floor1 .form-row2 {
    justify-content: space-between;
  }
  .floor1 .form-row2 .form-item,
  .floor1 .form-row2 .form-item:nth-child(2n) {
    width: auto;
  }
  .floor1 .form-row2 label {
    font-size: 18px;
  }
  .floor1 .form-tip {
    font-size: 18px;
  }
}
@media (min-width: 992px) { 
  .floor1 .form-row2 .mark::before {
    width: 33px;
    height: 23px;
    left: -3px;
    top: 0;
    margin-left: 0;
    margin-top: 0;
  }
  .floor1 .form-submit button {
    transition: all .3s ease-in-out;
  }
  .floor1 .form-submit button:hover {
    background: #fff;
    color: #BB271D;
  }
}
@media (min-width: 1200px) { 
  .floor1 {
    display: flex;
    justify-content: space-between;
  }
  .floor1 .left {
    width: 28%;
  }
  .floor1 .right {
    width: 54.25%;
    margin-top: -18px;
  }
}
@media (min-width: 1600px) { 
  .floor1 .left {
    font-size: 44px;
  }
  .floor1 .left span {
    display: block;
  }
}





.floor2 {
  margin-top: 48px;
}
.floor2 .left {
  display: none;
}
.floor2 .right {
  display: flex;
  align-items: center;
  justify-content: right;
}
.floor2 .right a {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.floor2 .right svg {
  width: 20px;
  height: 20px;
}
.floor2 .right a:last-child {
  margin-right: 0;
}

@media (min-width: 992px) { 
  .floor2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 33px;
    border-top: 1px solid #bfbeba;
  }
  .floor2 .left {
    display: flex;
    align-items: center;
  }
  .floor2 .left>div {
    
    margin-right: 15px;
    position: relative;
  }
  .floor2 .left>div:last-child {
    margin-right: 0;
  }
  .floor2 .left>div a.more {
    display: flex;
    align-items: center;
    
  }
  .floor2 .left>div a.more::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    margin-left: 8px;
    transition: all .3s ease-in-out;
    display: none;
  }

  .floor2 .left .box {
    display: none;
    position: absolute;
    left: 0;
    width: 174px;
    top: 0px;
    transform: translateY(-100%);
    padding-bottom: 12px;
    z-index: 2;
  }
  .floor2 .left dl {
    font-family: NotoSansSC-Light;
    font-size: 16px;
    background-color: #fff;
    padding-top: 19px;
    padding-bottom: 19px;
    border-bottom: 3px solid #a63026;
  }
  .floor2 .left dd {
    padding-left: 12px;
    margin-top: 16px;
  }
  .floor2 .left dd:first-child {
    margin-top: 0;
  }
  .floor2 .left dd a {
    position: relative;
  }
  .floor2 .left dd a::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #BB271D;
    opacity: 0;
    transition: opacity .3s ease-in-out;
  }
  .floor2 .left>div:hover>a {
    color: #BB271D;
  }
  .floor2 .left>div:hover a.more::after {
    transform: rotate(320deg);
    position: relative;
    top: 3px;
    border-color: #bb271d;
  }
  .floor2 .left>div:hover .box {
    display: none;
  }
  .floor2 .left dd a:hover::before {
    opacity: 1;
  }

  .floor2 .right svg {
    width: 38px;
    height: 38px;
  }
  .floor2 .right svg path {
    transition: all .3s ease-in-out;
  }
  .floor2 .right a:hover svg path {
    fill: #000;
  }

}
@media (min-width: 1200px) { 
  .floor2 .left>div {
    margin-right: 44px;
  }
  .floor2 .right a {
    margin-right: 70px;
  }
}





.floor3 {
  font-family: NotoSansSC-Light;
  text-align: center;
  margin-top: 34px;
}
.floor3 .right a {
  margin-right: 15px;
}
.floor3 .right a:last-child {
  margin-right: 0;
  display: none;
}

@media (min-width: 768px) { 
  .floor3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-top: 60px;
  }
  .floor3 .right a {
    margin-right: 44px;
  }
  .floor3 .right a:last-child {
    display: block;
  }
}
@media (min-width: 992px) { 
  .floor3 .right a:last-child {
    display: none;
  }
  .floor3 a:hover {
    color: #BB271D;
  }
}




.floor4 {
  font-size: 14px;
  font-family: NotoSansSC-Light;
  margin-top: 29px;
}
@media (min-width: 768px) { 
  .floor4 {
    margin-top: 58px;
  }
}


.floor5 {
  font-size: 14px;
  font-family: NotoSansSC-Light;
  margin-top: 15px;
  text-align: center;
}

@media (min-width: 768px) { 
  .floor5 {
    display: none;
  }
}
/* ========================================================================
   首页
 ========================================================================== */


 /*  bannner
-------------------------- */
.home-banner-swiper {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.home-banner-swiper .swiper-slide {
  position: relative;
}
.home-banner-swiper .pic {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}
.home-banner-swiper .mask {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-banner-swiper .title {
  font-family: Inter-Regular;
  font-size: 36px;
  color: #fff;
}
.home-banner-swiper .txt {
  font-size: 18px;
  color: #fff;
  text-align: center;
  max-width: 710px;
  margin-top: 46px;
}


.home-banner-swiper .title,
.home-banner-swiper .txt,
.home-banner-swiper .btn {
  opacity: 0;
}
.home-banner-swiper .swiper-slide-active .title,
.home-banner-swiper .swiper-slide-active .txt,
.home-banner-swiper .swiper-slide-active .btn {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.home-banner-swiper .swiper-slide-active .title {
  animation-delay: .3s;
}
.home-banner-swiper .swiper-slide-active .txt {
  animation-delay: 0.6s;
}
.home-banner-swiper .swiper-slide-active .btn {
  animation-delay: 0.9s;
}


@media (min-width: 768px) { 
  .home-banner-swiper .title {
    font-size: 96px;
  }
  .home-banner-swiper .txt {
    font-size: 20px;
  }
}




 /*  home-brand
-------------------------- */
.home-brand {
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
}
.home-brand .js-marquee {
  display: flex;
  align-items: center;
}
.home-brand img {
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (min-width: 768px) { 
  .home-brand {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .home-brand img {
    margin-left: 55px;
    margin-right: 55px;
    max-width: none;
    height: auto;

  }
}

 /*  home-about
-------------------------- */
.home-about {
  padding-left: 40px;
  padding-right: 40px;
}
.home-about .pic {
  text-align: center;
  margin-left: -40px;
  margin-right: -40px;
}
.home-about .h1 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.home-about .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
.home-about  .title {
  font-size: 16px;
  margin-top: 15px;
}
.home-about .txt {
  color: rgba(0, 0, 0, .4);
  margin-top: 17px;
}
.home-about ul {
  padding-top: 12px;
}
.home-about li {
  padding-left: 16px;
  position: relative;
  color: rgba(0, 0, 0, .4);
  margin-top: 10px;
}
.home-about li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #BB271D;
  position: absolute;
  left: 0;
  top: 10px;
}
.home-about .link {
  font-size: 20px;
  color: #BB271D;
  align-items: center;
  /* display: none; */
  display: inline-flex;
}
@media (max-width:768px) {
  .home-about .link {
    font-size: 14px;
    float: right;
  } 
}
.home-about .link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform:rotate(45deg);
  margin-left: 17px;
}
.home-about .special {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.home-about .special .item{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #BB271D;
  padding-bottom: 18px;
}
.home-about .row1 {
  display: flex;
  align-items: baseline;
  color: rgba(0, 0, 0, .3);
}
.home-about .num {
  font-family: PathwayExtreme-Medium;
  font-size: 35px;
}
.home-about .unit {
  font-family: Poppins-Medium;
  font-size: 20px;
}
.home-about .row2 {
  color: rgba(0, 0, 0, .4);
}
.home-about .item.active .row1,
.home-about .item.active .row2,
.home-about-ul.active li,
.home-about-txt.active {
  color: #000;
}



@media (min-width: 768px) {
  .home-about {
    padding-left: 12.60%;
    padding-right: 12.60%;
  }
  .home-about .pic {
    margin-left: 0;
    margin-right: 0;
  }
 
  .home-about .h1 div {
    font-size: 20px;
  }
  .home-about  .title {
    font-size: 20px;
  }
  
  
  .home-about .num {
    font-size: 69px;
  }
  .home-about .unit {
    font-size: 24px;
  }
  .home-about .row2 {
    margin-top: -16px;
  }
}
@media (min-width: 992px) {
  .home-about .special {
    flex-direction: row;
    justify-content: space-between;
  }
  .home-about .special .item,
  .home-about .special .item .row1,
  .home-about .special .item .row2 {
    transition: all .3s linear;
  }
  .home-about .special .item:hover {
    transform: scale(1) translate(0) !important;
  }
  .home-about .special .item:hover .row1,
  .home-about .special .item:hover .row2 {
    color: #000;
  }
  .home-about .link::after {
    transition: all .3s ease-in-out;
  }
  .home-about .link:hover {
    color: #000;
  }
  .home-about .link:hover::after {
    border-color: #000;
  }


  .home-about .home-about-txt,
  .home-about .home-about-ul li{
    transition: all .3s ease-in-out;
  }
  .home-about .home-about-txt:hover,
  .home-about .home-about-ul li:hover{
    color: #000;
  }
}

@media (min-width: 1200px) {

  .home-about {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
  .home-about .pic {
    width: 40%;
  }
  .home-about .h1 {
    margin-top: 0;
  }
  .home-about .words {
    flex: 1;
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 4%;
  }

  
  .home-about .special {
    margin-top: 0;
    margin-bottom: 0;
    flex-direction: column;
    align-items: normal;
    justify-content: flex-start;
    padding-right: 60px;
  }
  .home-about .special .item {
    align-items: flex-end;
  }
}


@media (min-width: 1520px) {
  .home-about .pic {
    width: 50%;
  }
  .home-about  .title {
    font-size: 34px;
    margin-top: 29px;
  }
  .home-about .txt {
    margin-top: 34px;
  }
  .home-about ul {
    padding-top: 23px;
  }
  .home-about .link {
    margin-top: 55px;
    display: inline-flex;
  }
  .home-about .special .item {
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .home-history-wrapper {
    background: url('../images/lion.png') no-repeat right top;
    
  }
}
@media (min-width: 992px) {
  .home-history-wrapper {
    height: calc(100vh - 100px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-size: auto 70%;
  }
}


 /*  home-history
-------------------------- */
.home-history {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 70px;
  padding-bottom: 59px;
}
.home-history .h1 {
  display: flex;
  align-items: center;
}
.home-history .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
.home-history .h2 {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.5;
}
.history-timeline-wrapper {
  overflow: hidden;
}
.history-timeline {
  display: flex;
  width: max-content;
}
.history-timeline .item {
  flex-shrink: 0;
  width: 33.33%;
}
@media (min-width: 768px) {
  .home-history {
    padding-top: 140px;
    padding-left: 12.60%;
    padding-right: 12.60%;
    padding-bottom: 118px;
  }
  .home-history .h1 div {
    font-size: 20px;
  }
  .home-history  .h2 {
    font-size: 36px;
    margin-top: 30px;
  } 
}
@media (min-width: 992px) {
  .home-history {
    padding-top: 0;
    padding-bottom: 0;
  }
}




.history-timeline {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 103px;
}
.history-timeline .tl-timeline-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}
.history-timeline .tl-timeline-scroll {
    position: relative;
    overflow-x: auto;
    cursor: grab;
}
.history-timeline .tl-timeline-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.history-timeline .tl-year-group-box {
  display: flex;
  white-space: nowrap;
}
.history-timeline .tl-year-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  margin-right: -1px;
  flex-shrink: 0;
}

.history-timeline .tl-year-ticks {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 50px;
}

.history-timeline .tl-tick {
  width: 1px;
  height: 10px;
  background: #000000;
  transition: height 0.3s ease, background-color 0.3s ease;
}
.history-timeline .tl-middle-tick {
  height: 20px;
  background-color: #bb271d;
}
.history-timeline .tl-middle-tick.tl-highlighted {
  height: 50px;
  position: relative;
}

.history-timeline .tl-middle-tick.tl-highlighted::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #bb271d;
}
.history-timeline .tl-middle-tick.tl-highlighted::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #bb271d;
}
.history-timeline .tl-year-label {
  color: #bb271d;
  padding-top: 30px;
  padding-bottom: 30px;
  cursor: pointer;
}
.history-timeline .tl-year-label.tl-selected {
  font-weight: bold;
}
.history-timeline .tl-year-label {
  position: relative;
  transition: all .3s ease-in-out;
}
.history-timeline .tl-year-label::after {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  bottom: 30px;
  height: 3px;
  background-color: #bb271d;
  transition: all .3s ease-in-out;
}
.history-timeline .tl-year-label.tl-selected::after {
  width: 100%;
}

.history-timeline .tl-moving-year-indicator {
  display: inline-block;
  transition: all .3s ease-in-out;
  max-width: 80vw;
  box-sizing: border-box;
  padding-left: 32px;
  position: relative;
  padding-bottom: 20px;
  
}
.history-timeline .tl-moving-year-indicator .text {
  height: 7em;
  overflow: hidden;
  word-break: break-word;
}
.history-timeline .tl-moving-year-indicator::before {
  content: '';
  width: 18px;
  height: 18px;
  background: url('../images/key.svg') no-repeat center;
  background-size: contain;
  position: absolute;
  left: -6px;
  top: 4px;
  transform: rotate(-90deg);
  transform-origin: left;
}
.history-timeline .tl-moving-year-indicator-left {
  padding-right: 32px;
}
.history-timeline .tl-moving-year-indicator.tl-show {
  opacity: 1;
}
.history-timeline .tl-moving-year-indicator.animate::before {
  animation: slideInRotate 0.8s ease-out .3s forwards;
}
@media (min-width: 768px) { 
  .history-timeline {
    padding-bottom: 207px;
  }
  .history-timeline .tl-tick {
    height: 49px;
  }
  .history-timeline .tl-year-ticks {
    height: 150px;
  }
  .history-timeline .tl-middle-tick {
    height: 80px;
  }
  .history-timeline .tl-middle-tick.tl-highlighted {
    height: 150px;
  }
  .history-timeline .tl-year-group {
    width: 201px;
  }
  .history-timeline .tl-year-label {
    font-size: 24px;
  }
  .history-timeline .tl-moving-year-indicator {
    width: auto;
    max-width: 566px;
    padding-bottom: 44px;
  }
  .history-timeline .tl-moving-year-indicator::before {
    top: 8px;
    width: 24px;
    height: 24px;
  }
  .history-timeline .tl-moving-year-indicator .text{
    font-size: 24px;
    height: 6em;
  }
}
@media (min-width: 992px) { 
  .history-timeline {
    padding-bottom: 0;
  }
  
}


 /*  home-service
-------------------------- */
.home-service .h1 {
  display: none;
}
.home-service .h2{
  font-size: 18px;
  padding-left: 40px;
  padding-right: 40px;
  line-height: 1.5;
}
.home-service .link {
  display: none;
}
@media (min-width: 768px) { 
  .home-service .h1 {
    display: flex;
    align-items: center;
    padding-left: 12.60%;
    padding-right: 12.60%;
  }
  .home-service .h1 div {
    font-size: 20px;
    color: #BB271D;
    margin-left: 16px;
  }
  .home-service .h2 {
    font-size: 36px;
    padding-left: 12.60%;
    padding-right: 12.60%;
    margin-top: 31px;
  }  
  
}
@media (min-width: 992px) { 
  .home-service {
    height: calc(100vh - 100px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .home-service .sec {
    display: block;
    position: relative;
    padding-right: 110px;
  }

  .home-service .link {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #BB271D;
    transition: all .3s ease-in-out;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .home-service .link::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #BB271D;
    border-right: 2px solid #BB271D;
    transform:rotate(45deg);
    margin-left: 17px;
    transition: all .3s ease-in-out;
  }
  .home-service .link:hover {
    color: #000;
  }
  .home-service .link:hover::after {
    border-color: #000;
  }
}
@media (min-width: 1024px) { 
  .home-service .h2 span {
    display: block;
  }

}




.home-accordion {
  margin-top: 35px;
}
.home-accordion .item {
  display: block;
  position: relative;
  height: 54vw;
  overflow: hidden;
  transition: height .3s ease-in-out;
}
.home-accordion img{
  max-width: none;
  height: 111vw;
  object-fit: cover;
}
.home-accordion .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 111vw;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 60px;
  overflow: hidden;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.home-accordion .num {
  font-family: PathwayExtreme-Bold;
  font-size: 36px;
  color: rgba(255, 255, 255, .5);
}
.home-accordion .title {
  font-family: NotoSansSC-Bold;
  font-size: 20px;
  height: 3em;
  /* flex: 1; */
}
.home-accordion .ul {
  flex: 1;
  font-size: 18px;
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s ease-in-out;
}
.home-accordion .li {
  padding-left: 17px;
  position: relative;
  margin-top: 4px;
}
.home-accordion .li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 12px;
}
.home-accordion .item:hover {
  height: 111vw;
}
.home-accordion .item:hover .ul {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 768px) { 
  .home-accordion {
    display: flex;
    margin-top: 82px;
  }
  .home-accordion .item {
    flex: 1;
    height: 60vw;
    transition: flex .3s ease-in-out;
  }
  .home-accordion img {
    height: 60vw;
  }
  .home-accordion .mask {
    height: 60vw;
    padding-left: 15px;
    padding-right: 15px;
  }
  .home-accordion .title {
    margin-top: 14px;
  }
  .home-accordion .item:hover {
    height: 60vw;
    flex: 2.8;
  } 
}
@media (min-width: 992px) { 
  .home-accordion {
    margin-top: 0;
  }
  .home-accordion .item,
  .home-accordion img,
  .home-accordion .mask,
  .home-accordion .item:hover {
    height: 45vw;
  }
  .home-accordion .item:hover {
    flex: 1.8;
  }
}

@media (min-width: 1250px) { 
  .home-accordion .item,
  .home-accordion img,
  .home-accordion .mask,
  .home-accordion .item:hover {
    height: 38vw;
  }
}
@media (min-width: 1470px) { 
  .home-accordion .item,
  .home-accordion img,
  .home-accordion .mask,
  .home-accordion .item:hover {
    height: 27vw;
  }
  .home-accordion .mask {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 3vw;
    padding-top: 34px;
  }
}





 /*  home-news
-------------------------- */
.home-news {
  padding-top: 50px;
  padding-bottom: 64px;
}
.home-news .h1 {
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
}
.home-news .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
.home-news .h2{
  font-size: 18px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 18px;
  line-height: 1.5;
}
.home-news .link {
  display: none;
}
@media (min-width: 768px) { 
  .home-news {
    padding-top: 125px;
    padding-bottom: 129px;
  }
  .home-news .h1 {
    padding-left: 12.60%;
    padding-right: 12.60%;
  }
  .home-news .h1 div {
    font-size: 20px;
  }
  .home-news .h2 {
    font-size: 36px;
    padding-left: 12.60%;
    padding-right: 12.60%;
    margin-top: 36px;
  }  
  
}
@media (min-width: 992px) { 
  .home-news .sec {
    position: relative;
    padding-right: 110px;
    display: block;
  }
  .home-news .link {
    font-size: 20px;
    display: flex;
    align-items: center;
    color: #BB271D;
    transition: all .3s ease-in-out;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .home-news .link::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 2px solid #BB271D;
    border-right: 2px solid #BB271D;
    transform:rotate(45deg);
    margin-left: 17px;
    transition: all .3s ease-in-out;
  }
  .home-news .link:hover {
    color: #000;
  }
  .home-news .link:hover::after {
    border-color: #000;
  }
}
@media (min-width: 1024px) { 
  .home-news .h2 span {
    display: block;
  }
}



.home-news-wrapper {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 28px;
  
}
.home-news-wrapper .home-news-swiper {
  overflow: hidden;
}
.home-news-wrapper a {
  display: block;
}
.home-news-wrapper .pic {
  overflow: hidden;
}
.home-news-wrapper img {
  width: 100%;
  max-width: none;
}
.home-news-wrapper .name {
  font-size: 20px;
  margin-top: 15px;
  line-height: 1.5;
}
.home-news-wrapper .description {
  display: none;
}
.home-news-wrapper .label {
  display: flex;
  align-items: center;
  margin-top: 17px;
}
.home-news-wrapper .tag {
  background-color: rgba(224, 224, 224, 0.56);
  color: rgba(0, 0, 0, .6);
  padding: 3px 5px;
  margin-right: 12px;
}
.home-news-wrapper .time {
  color: rgba(0, 0, 0, .6);
}
@media (min-width: 768px) {
  .home-news-wrapper {
    padding-left: 12.60%;
    padding-right: 0;
    padding-top: 56px;
  }
  .home-news-wrapper .name {
    font-size: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 4em;
    overflow: hidden;
  }
  .home-news-wrapper .tag {
    display: none;
  }
}
@media (min-width: 992px) {
  .home-news-wrapper .description {
    display: block;
    color: rgba(0, 0, 0, .6);
    margin-top: 16px;
  }


  .home-news-wrapper img,
  .home-news-wrapper .name {
    transition: all .3s ease-in-out;
  }
  .home-news-wrapper a:hover img {
    transform: scale(1.05);
  }
  .home-news-wrapper a:hover .name{
    color: #BB271D;
  }
}







/* ========================================================================
   联系我们
 ========================================================================== */

.contact_page {
  background: url('../images/contact_bg.svg') no-repeat center top;
  background-size: cover;
}


.contact-banner {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner .h1 {
  font-size: 32px;
  letter-spacing: 12px;
  color: #fff;
}
@media (min-width: 768px) {
  .contact-banner .h1 {
    font-size: 64px;
  }
}
@media (min-width: 992px) {
  .contact-banner {
    height: 95.5vh;
  }
}




.addresses {
  padding-left: 40px;
  padding-right: 40px;
}
.addresses .box {
  margin-top: 30px;
}
.addresses dl {
  background-color: rgba(255, 255, 255, 0.226);
  padding-left: 4%;
  padding-right: 4%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.addresses dt {
  font-family: NotoSansSC-Medium;
  color: #fff;
  font-size: 18px;
}
.addresses dd {
  font-size: 16px;
  color: rgba(183, 183, 183, 1);
  display: flex;
  align-items: flex-start;
  margin-top: 21px;
}
.addresses span {
  height: 24px;
  display: flex;
  align-items: center;
}
.addresses img {
  transform: translateY(2px);
}
.addresses .box div {
  flex: 1;
  padding-left: 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .addresses {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
  .addresses dl {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .addresses dt {
    /* font-size: 24px; */
  }
  .addresses dd {
    font-size: 18px;
  }
  .addresses span {
    height: 29px;
  }
}
@media (min-width: 1200px) {
  .addresses {
    display: flex;
  }
  .addresses .box {
    width: 33.33%;
    padding-left: 9px;
    padding-right: 9px;
    box-sizing: border-box;
    margin-top: 0;
    display: flex;
  }
  .addresses dl {
    width: 100%;
    box-sizing: border-box;
  }
}




.contact {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 75px;
  padding-bottom: 144px;
}
.contact .h1 {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 768px) {
  .contact {
    padding-left: 12.5%;
    padding-right: 12.5%;
    padding-top: 150px;
    padding-bottom: 288px;
  }
  .contact .h1 {
    font-size: 36px;
  }
  .contact .h1 span {
    display: block;
  }
}



.contact-form {
  padding-top: 16px;
}
.contact-form .form-item {
  margin-top: 18px;
}
.contact-form .form-input input,
.contact-form .form-input textarea {
  width: 100%;
  font-family: NotoSansSC-Light;
  font-size: 16px;
  color: #fff;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid #B8B8B8;
  box-sizing: border-box;
}
.contact-form .form-input textarea {
  height: 8em;
}
.contact-form .form-input input::placeholder,
.contact-form .form-input textarea::placeholder {
  font-size: 16px;
  color: #fff;
}
.contact-form .form-error {
  font-family: NotoSansSC-Light;
  color: #BB271D;
  margin-top: 18px;
  display: none;
}
.contact-form .form-item-error .form-error {
  display: block;
}
.contact-form .form-choice {
  font-family: NotoSansSC-Bold;
  color: #fff;
  margin-top: 18px;
}
.contact-form .form-row2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-form .form-row2 .form-item {
  width: 46%;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 21px;
}
.contact-form .form-row2 .form-item:nth-child(2n) {
  width: 54%;
}
.contact-form .form-row2 input {
  width: 25px;
  height: 25px;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
}
.contact-form .form-row2 .mark {
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  border: 1px solid #fff;
  margin-right: 12px;
  position: relative;
  z-index: 2;
}
.contact-form .form-row2 .mark::before {
  content: '';
  display: block;
  width: 20px;
  height: 13px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  top: 50%;
  margin-top: -6.5px;
  opacity: 0;
  transition: all .3s ease-in-out;
  background: url('../images/checkbox2.svg') no-repeat center;
  z-index: 2;
  background-size: cover;
}
.contact-form .form-row2 input:checked ~ .mark::before {
  opacity: 1;
}
.contact-form .form-row2 label {
  font-family: NotoSansSC-Light;
  color: #fff;
}
.contact-form .right {
  padding-top: 7px;
}
.contact-form .form-submit {
  margin-top: 33px;
  display: flex;
  justify-content: flex-end;
}
.contact-form .form-submit button {
  font-size: 16px;
  color: #fff;
  background: #BB271D;
  width: 154px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { 
  .contact-form .form-row {
    display: flex;
    justify-content: space-between;
  }
  .contact-form .form-row .form-item {
    width: 49%;
  }
  .contact-form .form-row2 {
    justify-content: space-between;
  }
  .contact-form .form-row2 .form-item,
  .contact-form .form-row2 .form-item:nth-child(2n) {
    width: auto;
  }
  
}
@media (min-width: 992px) { 
  .contact-form .form-row2 .mark::before {
    width: 33px;
    height: 23px;
    left: -3px;
    top: 0;
    margin-left: 0;
    margin-top: 0;
  }
  .contact-form .form-submit button {
    transition: all .3s ease-in-out;
  }
  .contact-form .form-submit button:hover {
    background: #fff;
    color: #BB271D;
  }
}
@media (min-width: 1480px) { 
  .contact-form {
    display: flex;
    justify-content: space-between;
  }
  .contact-form .left {
    width: 48.8%;
  }
  .contact-form .right {
    padding-top: 0;
    width: 48.8%;
  }
  .contact-form .form-input textarea {
    height: 9.5em;
  }
}





/* ========================================================================
   新闻资讯列表
 ========================================================================== */
.columns-wrap {
  background-color: #fff;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 34px;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.columns {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.columns li {
  margin-right: 29px;
  cursor: pointer;
}
.columns li:last-child {
  margin-right: 0;
}
.columns a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
}
.columns a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #BB271D;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.columns li.active a::before {
  opacity: 1;
}
@media (min-width: 768px) {
  .columns-wrap {
    padding-left: 4.16%;
    padding-right: 4.16%;
    margin-top: 68px;
  } 
  .columns li {
    margin-right: 58px;
  }
  .columns a {
    font-size: 20px;
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media (min-width: 992px) {
  .columns a:hover {
    color: #BB271D;
  }
}





.new-head {
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 26px;
}
.new-head .pic {
  text-align: center;
}
.new-head .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  margin-top: 20px;
}
.new-head .tag {
  font-size: 14px;
  padding: 6px 8px;
  background-color: rgba(224, 224, 224, 0.56);
}
.new-head .name {
  font-size: 20px;
  margin-top: 15px;
}
.new-head .description {
  color: #666;
  margin-top: 32px;
}
.new-head .link {
  font-size: 20px;
  color: #BB271D;
  display: inline-flex;
  align-items: center;
  margin-top: 21px;
}
.new-head .link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform:rotate(45deg);
  margin-left: 17px;
}
@media (min-width: 768px) {
  .new-head {
    padding-left: 4.16%;
    padding-right: 4.16%;
    margin-top: 53px;
  }
}
@media (min-width: 992px) { 
  .new-head .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-head .pic {
    text-align: left;
    width: 49.4%;
    overflow: hidden;
  }
  .new-head img {
    transition: all .3s ease-in-out;
  }
  .new-head .words {
    width: 48.7%;
  }

  .new-head .label {
    margin-top: 0;
  }
  .new-head .name {
    font-size: 30px;
    transition: all .3s ease-in-out;
  }
  .new-head .link::after {
    transition: all .3s ease-in-out;
  }


  .new-head .item:hover img {
    transform: scale(1.01);
  }
  .new-head .item:hover .name {
    color: #BB271D;
  }
  .new-head .link:hover {
    color: #000;
  }
  .new-head .link:hover::after {
    border-color: #000;
  }
}

@media (min-width: 1400px) { 
  .new-head .description {
    margin-top: 64px;
  }
  .new-head .link {
    margin-top: 43px;
  }
}
@media (min-width: 1800px) { 
  .new-head .words {
    box-sizing: border-box;
    padding-right: 12%;
  }
}





.news {
  padding-left: 40px;
  padding-right: 40px;
}
.news .item {
  margin-top: 30px;
}
.news a {
  display: block;
  color: #666;
}
.news .pic {
  text-align: center;
  overflow: hidden;
}
.news a .name {
  color: #000;
  font-size: 20px;
  margin-top: 17px;
  line-height: 1.5;
}
.news .description {
  margin-top: 17px;
}
.news .label {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.news .tag {
  font-size: 14px;
  padding: 6px 7px;
  background-color: rgba(224, 224, 224, 0.56);
  margin-right: 20px;
}

@media (min-width: 768px) {
  .news {
    padding-left: 2.8%;
    padding-right: 2.8%;
    display: flex;
    flex-wrap: wrap;
  }
  .news .item {
    margin-top: 61px;
    width: 50%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
  .news a .name {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .news .item {
    width: 33.33%;
  }
  .news img,
  .news .name  {
    transition: all .3s ease-in-out;
  }
  .news img {
    height: 18.8333vw;
  }
  .news a:hover img {
    transform: scale(1.02);
  }
  .news a:hover .name {
    color: #BB271D;
  }
}
@media (min-width: 1630px) {
   .news .item {
    padding-left: 27px;
    padding-right: 27px;
  }
}





/* ========================================================================
   新闻资讯详情页
 ========================================================================== */


.newinfo-banner {
  position: relative;
}
.newinfo-banner .pic {
  max-width: none;
  width: 100%;
  height: 60vh;
  object-fit: cover;
}
.newinfo-banner .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 37px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.newinfo-banner .h1 {
  font-size: 20px;
}
.newinfo-banner .h2 {
  font-size: 20px;
}
.newinfo-banner .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}
.newinfo-banner .icons {
  display: flex;
  align-items: center;
}
.newinfo-banner .icons a {
  margin-right: 18px;
}
.newinfo-banner .icons a:last-child {
  margin-right: 0;
}
.newinfo-banner svg {
  width: 18px;
  height: 18px;
}
@media (min-width: 768px) {
  .newinfo-banner .mask {
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-bottom: 75px;
  }
  .newinfo-banner .h1 {
    font-size: 42px;
  }
  .newinfo-banner .h2 {
    font-size: 42px;
  }
  .newinfo-banner .label {
    margin-top: 59px;
  }
}
@media (min-width: 992px) {
  .newinfo-banner .pic {
    height: 96vh;
  }
  .newinfo-banner svg path {
    transition: all .3s ease-in-out;
  }
  .newinfo-banner a:hover svg path {
    fill: #BB271D;
  }
}
@media (min-width: 1480px) {
  .newinfo-banner .mask {
    padding-left: 25.36%;
    padding-right: 25.36%;
  }
}








.new-info {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .new-info {
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-top: 64px;
  }
}
@media (min-width: 1480px) {
  .new-info {
    padding-left: 25.36%;
    padding-right: 25.36%;
  }
}




.new-abstract {
  color: rgba(0, 0, 0, .7);
  border-left: 4px solid rgba(242, 242, 242, 0.77);
  padding: 15px;
  word-break: break-word;
}
.new-edit {
  color: rgba(0, 0, 0, .8);
  margin-top: 20px;
  word-break: break-word;
}
.new-edit .pic {
  text-align: center;
}
@media (min-width: 768px) {
  .new-abstract {
    padding-left: 34px;
    padding-right: 34px;
    padding-top: 26px;
    padding-bottom: 26px;
  }
  .new-edit {
    margin-top: 38px;
  }
}






.news-recommend {
  padding-left: 40px;
}
@media (min-width: 768px) {
  .news-recommend {
    padding-left: 12.6%;
  }
}





.news-recommend .h1 {
  display: flex;
  align-items: center;
}
.news-recommend .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
@media (min-width: 768px) { 
  .news-recommend .h1 div {
    font-size: 20px;
  }
}





.news-recommend-wrapper {
  overflow: hidden;
  padding-top: 28px;
  padding-bottom: 48px;
}
.news-recommend-wrapper a {
  display: block;
}
.news-recommend-wrapper .pic {
  overflow: hidden;
}
.news-recommend-wrapper img {
  width: 100%;
  max-width: none;
}
.news-recommend-wrapper .name {
  font-size: 20px;
  margin-top: 15px;
}
.news-recommend-wrapper .description {
  color: rgba(0, 0, 0, .6);
  margin-top: 18px;
}
.news-recommend-wrapper .label {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.news-recommend-wrapper .tag {
  background-color: rgba(224, 224, 224, 0.56);
  color: rgba(0, 0, 0, .6);
  padding: 6px 7px;
  margin-right: 20px;
  font-size: 14px;
}
.news-recommend-wrapper .time {
  color: rgba(0, 0, 0, .6);
}
@media (min-width: 768px) {
  .news-recommend-wrapper {
    padding-top: 56px;
    padding-bottom: 96px;
  }
  .news-recommend-wrapper .name {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .news-recommend-wrapper img,
  .news-recommend-wrapper .name {
    transition: all .3s ease-in-out;
  }
  .news-recommend-wrapper a:hover img {
    transform: scale(1.05);
  }
  .news-recommend-wrapper a:hover .name{
    color: #BB271D;
  }
}




/* ========================================================================
   主要服务列表
 ========================================================================== */

.services {
  padding-top: 54px;
}
.services .pic {
  text-align: center;
}
.services .words {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.services .name {
  font-size: 20px;
}
.services li {
  padding-left: 15px;
  position: relative;
  margin-top: 4px;
}
.services li:first-child {
  margin-top: 26px;
}
.services li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 11px;
}
.services .link {
  font-size: 16px;
  color: #BB271D;
  display: inline-flex;
  align-items: center;
  margin-top: 21px;
}
.services .link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform:rotate(45deg);
  margin-left: 17px;
}
@media (min-width: 768px) {
  .services {
    padding-top: 108px;
    padding-bottom: 103px;
  }
  .services .item {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .services .item:nth-child(2n) {
    flex-direction: row;
  }
  .services .pic {
    width: 47.39%;
    overflow: hidden;
  }
  .services .words {
    width: 52.61%;
    box-sizing: border-box;
    padding-left: 7.1%;
    padding-right: 0;
  }
  .services .name {
    font-size: 36px;
  }
  .services .link {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .services .item .name,
  .services .item img,
  .services .link::after {
    transition: all .3s ease-in-out;
  }

  .services .item:hover .name {
    color: #BB271D;
  }
  .services .item:hover img {
    transform: scale(1.02);
  }
  .services .link:hover {
    color: #000;
  }
  .services .link:hover::after {
    border-color: #000;
  }
}
@media (min-width: 1480px) {
  .services .item:nth-child(2n + 1) .words {
    padding-left: 14.3%;
  }
}





/* ========================================================================
   主要服务详情页
 ========================================================================== */

.service-info-page {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}


.service-info-banner {
  height: 70vh;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-info-banner .h1 {
  font-size: 30px;
  text-align: center;
  letter-spacing: 12px;
  color: #fff;
}
.service-info-banner .h2 {
  color: #fff;
  text-align: center;
  margin-top: 11px;
}
.service-info-banner span {
    display: block;
  }
@media (min-width: 768px) {
  .service-info-banner .h1 {
    font-size: 64px;
  }
  .service-info-banner .h2 {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .service-info-banner {
    height: 100vh;
  }
}






.service-columns-wrap {
  padding-left: 40px;
  padding-right: 40px;
  overflow: hidden;
  position: sticky;
  left: 0;
  top: 69px;
  width: 100%;
  box-sizing: border-box;
  z-index: 3;
  transition: all .3s ease-in-out;
}
.body-banner-scroll .service-columns-wrap {
  background-color: rgba(0, 0, 0, .8);
}
.service-columns {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}
.service-columns li {
  margin-right: 29px;
  cursor: pointer;
}
.service-columns li:last-child {
  margin-right: 0;
}
.service-columns a {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: rgba(0, 0, 0, .6);
  position: relative;
}
.service-columns a::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #BB271D;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.service-columns li.active a {
  color: rgba(0, 0, 0, 1);
}
.service-columns li.active a::before {
  opacity: 1;
}
.body-banner-scroll .service-columns a {
  color: rgba(255, 255, 255, .6);
}
.body-banner-scroll .service-columns li.active a {
  color: rgba(255, 255, 255, 1);
}



.service-content {
  padding-bottom: 174px;
  padding-top: 35px;
  padding-left: 40px;
  padding-right: 40px;
}



@media (min-width: 768px) {
  .service-pannel {
    display: flex;
    justify-content: space-between;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 34px;
    padding-bottom: 174px;
  }
  .service-columns-wrap {
    width: 23%;
    padding-left: 0;
    padding-right: 0;
    position: static;
  }
  .body-banner-scroll .service-columns-wrap {
    background-color: rgba(0, 0, 0, 0);
  }
  .service-columns {
    display: block;
    white-space: initial;
  }
  .service-columns li {
    margin-right: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .6);
  }
  .service-columns li:first-child {
    border-top: 1px solid rgba(0, 0, 0, .6);
  }
  .service-columns a {
    padding-left: 15px;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    border: 1px solid transparent;
  }
  .service-columns a::before {
    height: auto;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(0, 0, 0, .6);
    border-right: 1px solid rgba(0, 0, 0, .6);
    transform: rotate(45deg);
    left: auto;
    right: 15px;
    bottom: auto;
    top: 50%;
    margin-top: -4px;
    background-color: rgba(0, 0, 0, 0);
    opacity: 1;
    transition: all .3s ease-in-out;
  }

  .service-columns li.active a::before {
    border-color: #BB271D;
  }
  .service-content {
    width: 70%;
    padding: 0;
  }
  .body-banner-scroll .service-columns a,
  .service-columns a {
    color: rgba(0, 0, 0, .6);
  }
 .body-banner-scroll .service-columns li.active a,
 .service-columns li.active a {
    border-color: #BB271D;
    color: #BB271D;
  }

}
@media (min-width: 992px) {
  .service-pannel {
    padding-left: 5.72%;
    padding-right: 5.72%;
    padding-bottom: 120px;
    padding-top: 69px;
  }
  .service-columns a:hover {
    color: #BB271D;
  }
}
@media (min-width: 1200px) {
  .service-columns li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .service-columns a {
    font-size: 18px;
    padding-left: 20px;
  }
  .service-columns a::before {
    right: 20px;
  }
}
@media (min-width: 1480px) {
  .service-pannel {
    padding-left: 12.31%;
    padding-right: 12.31%;
  }
}






.service-content .pic {
  text-align: center;
}

.service-content .title1 {
  font-family: NotoSansSC-Medium;
  font-size: 18px;
  color: #000;
  margin-top: 22px;
}
.service-content .title2 {
  font-size: 18px;
  color: #fff;
}
.service-content .ul {
  margin-top: 60px;
}
.service-content .li {
  padding-left: 24px;
  position: relative;
  color: rgba(255, 255, 255, .6);
}
.service-content .li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, .6);
  position: absolute;
  left: 9px;
  top: 14px;
}
.service-content .edit {
  color: rgba(255, 255, 255, .6);
}
.service-content .edit img:nth-child(2) {
  display: none;
}
.fanyu .service-content .edit img:nth-child(1) {
  display: none;
}
.fanyu .service-content .edit img:nth-child(2) {
  display: block;
}




.service-info-link .item {
  display: block;
  position: relative;
  height: 54vw;
  overflow: hidden;
}
.service-info-link img {
  max-width: none;
  height: 111vw;
  object-fit: cover;
}
.service-info-link .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 111vw;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 60px;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.service-info-link .mask::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .2);
}
.service-info-link .num {
  font-family: PathwayExtreme-Bold;
  font-size: 36px;
  color: rgba(255, 255, 255, .4);
}
.service-info-link .title {
  font-family: NotoSansSC-Bold;
  font-size: 24px;
  color: rgba(255, 255, 255, .7);
}
@media (min-width: 768px) { 
  .service-info-link {
    display: flex;
  }
  .service-info-link .item {
    flex: 1;
    height: 50vw;
    transition: flex .3s ease-in-out;
  }
  .service-info-link img {
    height: 50vw;
  }
  .service-info-link .mask {
    height: 50vw;
    padding-left: 15px;
    padding-right: 15px;
  }
  .service-info-link .title {
    margin-top: 14px;
  }
}
@media (min-width: 992px) { 
  .service-info-link .item {
    height: 33.35vw;
  }
  .service-info-link img {
    height: 33.35vw;
    transition: all .3s ease-in-out;
  }
  .service-info-link .mask {
    height: 33.35vw;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .service-info-link .item:hover img {
    transform: scale(1.02);
  }
}
@media (min-width: 1480px) { 
  .service-info-link .mask {
    padding-bottom: 118px;
    padding-top: 34px;
  }
}




/* ========================================================================
   团队列表
 ========================================================================== */
.team-columns-wrap {
  margin-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
.team-columns-wrap a {
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 768px) { 
  .team-columns-wrap {
    margin-top: 38px;
  }
}
@media (min-width: 992px) { 
  .team-columns-wrap {
    display: flex;
    padding-left: calc(3% + 20px);
    padding-right: calc(3% + 20px);
  }
  .team-columns-wrap ul {
    min-width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .team-columns-wrap li {
    margin-right: 0;
  }
}
@media (min-width: 1200px) { 
  .team-columns-wrap {
    padding-left: calc(10% + 20px);
    padding-right: calc(10% + 20px);
  }
}





.teams {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 18px;
  padding-bottom: 118px;
}
.teams .item {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.teams .pic {
  text-align: center;
  overflow: hidden;
}
.teams .name {
  font-size: 20px;
  margin-top: 14px;
}
@media (min-width: 768px) { 
  .teams {
    display: flex;
    flex-wrap: wrap;
    padding-left: 3%;
    padding-right: 3%;
  }
  .teams .item {
    width: 25%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 30px;
    display: block;
  }
  .teams img {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 992px) {  
  .teams .item  {
    padding-left: 20px;
    padding-right: 20px;
  }
  .teams .name {
    font-size: 24px;
    transition: all .3s ease-in-out;
  }
  .teams img {
    transition: all .3s ease-in-out;
  }
  .teams .item:hover .name {
    color: #BB271D;
  }
  .teams .item:hover img {
    transform: scale(1.02);
  }
}
@media (min-width: 1200px) { 
  .teams {
    padding-left: 10%;
    padding-right: 10%;
  }
}



/* team modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 1185px;
  max-height: 95vh;
  overflow: hidden;
  background-color: #F9F8F3;
}
.modal-header {
  padding: 15px;
  display: flex;
  justify-content: flex-end;
}
.modal-header .close-btn svg {
  width: 20px;
  height: 20px;
}
.modal-body {
  max-height: calc(95vh - 70px);
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  box-sizing: border-box;
}
.modal-image {
  text-align: center;
}
.modal-name {
  font-family: NotoSansSC-Bold;
  margin-top: 20px;
  font-size: 18px;
}
.modal-memo {
  margin-top: 20px;
}
.modal-edit {
  margin-top: 20px;
}
.modal-words {
  padding-left: 25px;
  padding-right: 25px;
}

@media (min-width: 768px) {
  .modal-content {
    position: relative;
  }
  .modal-header {
    position: absolute;
    right: 5.5%;
    top: 7%;
    padding: 0;
    z-index: 3;
  }
  .modal-header .close-btn svg {
    width: 32px;
    height: 32px;
  }
  .modal-body {
    position: relative;
    max-height: 95vh;
    padding: 0;
  }
  .modal-image {
    width: 41%;
    aspect-ratio: 81 / 110;
    text-align: left;
  }
  .modal-image img {
    object-fit: cover;
    width: 100%;
  }
  .modal-words {
    font-size: 20px;
    position: absolute;
    left: 45.1%;
    right: 10%;
    top: 7%;
    bottom: 7%;
    padding-left: 0;
    padding-right: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .modal-name {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .modal-name {
    font-size: 26px;
  }
}



/* ========================================================================
   工作机会
 ========================================================================== */
.job-quick {
  padding-top: 30px;
  padding-bottom: 72px;
}
.job-quick .pic {
  text-align: center;
  overflow: hidden;
}
.job-quick .words {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.job-quick .channel {
  display: flex;
  align-items: center;
}
.job-quick .channel div {
  color: #BB271D;
  margin-left: 16px;
}
.job-quick .title {
  font-size: 20px;
  margin-top: 20px;
}
.job-quick .description {
   margin-top: 24px;
}
.job-quick .link {
  color: #BB271D;
  display: inline-flex;
  align-items: center;
  margin-top: 29px;
}
.job-quick .link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform:rotate(45deg);
  margin-left: 17px;
}
@media (min-width: 768px) {
  .job-quick {
    padding-top: 60px;
    padding-bottom: 144px;
  }
  .job-quick .item {
    display: flex;
    align-items: center;
  }
  .job-quick .item:nth-child(2n) {
    flex-direction: row-reverse;
  }
  .job-quick .pic {
    width: 47.29%;
  }
  .job-quick .item .words {
    width: 52.71%;
    padding-left: 4%;
    padding-right: 4%;
    box-sizing: border-box;
  }
  .job-quick .item:nth-child(2n+1) .box{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }
  .job-quick .channel div {
    font-size: 20px;
  }
  .job-quick .title {
    font-size: 26px;
  }
  .job-quick .link {
    font-size: 20px;
  }
} 
  
@media (min-width: 992px) {
  .job-quick img,
  .job-quick .title,
  .job-quick .link::after {
    transition: all .3s ease-in-out;
  }
  .job-quick .item:hover img {
    transform: scale(1.02);
  }
  .job-quick .item:hover .title {
    color: #BB271D;
  }
  .job-quick .link:hover {
    color: #000;
  }
  .job-quick .link:hover::after {
    border-color: #000;
  }
}

@media (min-width: 1200px) {
  .job-quick .title {
    font-size: 36px;
  }
  .job-quick .description {
    font-size: 20px;
  }
  .job-quick .link {
    margin-top: 58px;
  }
}

@media (min-width: 1400px) {
  .job-quick .item .words {
    padding-left: 10%;
    padding-right: 10%;
  }
}







.job-head {
  padding-left: 40px;
  padding-right: 40px;
}
.job-head .h1 {
  display: flex;
  align-items: center;
}
.job-head .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
.job-head .h2 {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.job-head .label {
  font-size: 20px;
}
.job-head .Indicator {
  font-size: 20px;
}
@media (min-width: 768px) {
  .job-head {
    padding-left: 4%;
    padding-right: 4%;
  }
  .job-head .h1 div {
    font-size: 20px;
  }
  .job-head .label {
    font-size: 36px;
  }
}
@media (min-width: 1400px) { 
  .job-head {
    padding-left: 10%;
    padding-right: 10%;
  }
  .job-head .Indicator {
    margin-right: 25%;
  }
}




.job-swiper-wrapper {
  overflow: hidden;
  padding-top: 41px;
  padding-bottom: 70px;
}

.job-swiper-wrapper .box {
  padding: 20px;
}
.job-swiper-wrapper .pic {
  display: none;
}
.job-swiper-wrapper .words {
  background-color: #fff;
  box-shadow: 0 0 4px 0px rgba(0, 0, 0, .3);
  border-radius: 10px;
  padding: 40px 20px;
}
.job-swiper-wrapper .title {
  font-size: 20px;
}
.job-swiper-wrapper .txt {
  color: rgba(0, 0, 0, .6);
  margin-top: 24px;
  height: 12em;
  padding-right: 10px;
  overflow-y: auto;
}

.job-swiper-wrapper .swiper-button-prev,
.job-swiper-wrapper .swiper-button-next {
  display: none;
}
@media (min-width: 1200px) { 
  .job-swiper-wrapper {
    padding-top: 82px;
    padding-bottom: 140px;
  }
  .job-swiper-wrapper .job-swiper {
    position: relative;
    overflow: hidden;
  }
  .job-swiper-wrapper .box {
    position: relative;
    padding: 3.35% 7.4%;
  }
  .job-swiper-wrapper .pic {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .job-swiper-wrapper .words {
    width: 40%;
    margin-left: auto;
    padding-top: 67px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 53px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: all .3s ease-in-out;
  }
  .job-swiper-wrapper .swiper-slide-active .words {
    opacity: 1;
  }
  .job-swiper-wrapper .title {
    font-size: 24px;
  }
  .job-swiper-wrapper .txt {
    height: 16em;
  }


  .job-swiper-wrapper .swiper-button-prev,
  .job-swiper-wrapper .swiper-button-next {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    transition: all .3s ease-in-out;
  }
  .job-swiper-wrapper .swiper-button-prev {
    left: 17%;
  }
  .job-swiper-wrapper .swiper-button-next {
    right: 17%;
  }
  .job-swiper-wrapper .swiper-button-prev::after,
  .job-swiper-wrapper .swiper-button-next::after {
    width: 11px;
    height: 11px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transition: all .3s ease-in-out;
  }
  .job-swiper-wrapper .swiper-button-prev::after {
    transform: rotate(-135deg);
  }
  .job-swiper-wrapper .swiper-button-next::after {
    transform: rotate(45deg);
  }


  .job-swiper-wrapper .swiper-button-prev:hover,
  .job-swiper-wrapper .swiper-button-next:hover {
    background-color: rgba(187, 39, 29, 0.2);
  }
  .job-swiper-wrapper .swiper-button-prev:hover::after,
  .job-swiper-wrapper .swiper-button-next:hover::after {
    border-color: #BB271D;
  }
}





.job-pannel {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 768px) { 
  .job-pannel {
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media (min-width: 1400px) { 
  .job-pannel {
    padding-left: 10%;
    padding-right: 10%;
  }
}




.filtrate {
  font-size: 18px;
}
.filtrate:first-child {
    margin-top: 26px;
}
.filtrate:nth-child(2) {
  margin-top: 21px;
}
.filtrate dt {
  padding-bottom: 9px;
  padding-top: 9px;
}
.filtrate dd {
  display: flex;
  flex-wrap: wrap;
}
.filtrate span {
  margin-right: 15px;
  
}
.filtrate span em {
  position: relative;
  display: inline-block;
  font-style: normal;
  padding-bottom: 9px;
  padding-top: 9px;
}
.filtrate span em::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #BB271D;
  transition: all .3s ease-in-out;
  opacity: 0;
}
.filtrate span.active em:after {
  opacity: 1;
}
@media (min-width: 768px) { 
  .filtrate {
    display: flex;
  }
  .filtrate:first-child {
    margin-top: 53px;
  }
   .filtrate dt {
    margin-right: 16px;
  }
  .filtrate dd {
    flex: 1;
  }
  .filtrate span {
    width: 100px;
  }
}





.job-list {
  padding-top: 23px;
  padding-bottom: 77px;
}
.job-list .item {
  padding: 40px 20px;
  border-bottom: 9px solid #BB271D;
  background-color: #F9F8F3;
  margin-top: 20px;
  position: relative;
  box-sizing: border-box;
  max-height: 180px;
  transition: max-height .3s ease-in-out;
  overflow: hidden;
}
.job-list .title {
  font-size: 20px;
}
.job-list .label {
  font-size: 18px;
  margin-top: 34px;
  display: none;
}
.job-list ul {
  padding-top: 28px;
  padding-bottom: 42px;
  display: none;
}
.job-list li {
  color: #696969;
  padding-left: 25px;
  position: relative;
}
.job-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #696969;
  position: absolute;
  left: 10px;
  top: 10px;
}
.job-list .link {
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #BB271D;
  width: 193px;
  height: 47px;
  cursor: pointer;
  display: none;
}


.job-list .switch {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 22px;
  bottom: 20px;
}
.job-list .plus,
.job-list .unplus {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s ease-in-out;
  cursor: pointer;
}
.job-list .plus {
  opacity: 1;
}
.job-list .unplus {
  opacity: 0;
}



.job-list .item.active {
  max-height: 1000px;
}
.job-list .item.active .unplus {
  opacity: 1;
}
.job-list .item.active .plus {
  opacity: 0;
}
.job-list .item.active .label,
.job-list .item.active ul {
  display: block;
}
.job-list .item.active .link {
  display: inline-flex;
}
@media (min-width: 768px) {
  .job-list {
    padding-top: 45px;
    padding-bottom: 155px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .job-list .item {
    padding-top: 40px;
    padding-right: 36px;
    padding-bottom: 165px;
    padding-left: 36px;
    width: 49.4%;
    max-height: 250px;
    box-sizing: border-box;
  } 
  .job-list .title {
    font-size: 24px;
  }
  .job-list .label {
    margin-top: 68px;
  }
  .job-list ul {
    padding-top: 57px;
    padding-bottom: 85px;
  }
  .job-list .switch {
    right: 40px;
    bottom: 27px;
  }
}
@media (min-width: 992px) {
  .job-list .link {
    transition: all .3s ease-in-out;
  }
  .job-list .link:hover {
    background-color: #fff;
    color: #BB271D;
  }
}




/* job modal */
.job-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.job-modal-content {
  width: 90%;
  max-width: 647px;
  max-height: 314px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 15px;
}
.job-modal-content>div {
  font-size: 18px;
  text-align: center;
  padding-top: 22px;
  padding-bottom: 23px;
  padding-left: 15px;
  padding-right: 15px;
  border-bottom: 1px solid #ededed;
  cursor: pointer;
}
.job-modal-content>div .copied {
  color: #BB271D;
}
.job-modal-cancel {
  border-top: 2px solid #ededed;
  border-bottom: none;
  color: #BB271D;
}







/* ========================================================================
   关于我们
 ========================================================================== */





.about-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-column .h1 {
  display: flex;
  align-items: center;
}
.about-column .h1 div {
  color: #BB271D;
  margin-left: 16px;
}
.about-column .link {
  color: #BB271D;
  display: flex;
  align-items: center;
}
.about-column .link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform:rotate(45deg);
  margin-left: 17px;
}
@media (min-width: 768px) { 
  .about-column .h1 div {
    font-size: 20px;
  }
  .about-column .link {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .about-column .link::after {
    transition: all .3s ease-in-out;
  }
  .about-column .link:hover {
    color: #000;
  }
  .about-column .link:hover::after {
    border-color: #000;
  }
}




.about-pannel1 {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-pannel1 .title {
  font-size: 22px;
  line-height: 1.5;
}
.about-pannel1 .words {
  color: #696969;
  margin-top: 24px;
}
.about-pannel1 li {
  position: relative;
  padding-left: 27px;
}
.about-pannel1 li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #696969;;
}


@media (min-width: 768px) {
  .about-pannel1 {
    padding-top: 122px;
    padding-bottom: 122px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .about-pannel1 .title {
    font-size: 36px;
  }
  .about-pannel1 .words {
    font-size: 18px;
    margin-top: 48px;
  }
}




.about-pannel1 .item {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.about-pannel1 .box,
.about-pannel1 img {
  aspect-ratio: 40 / 69;
}
.about-pannel1 .box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.about-pannel1 .mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 25px;
  padding-bottom: 25px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.about-pannel1 .name {
  font-size: 32px;
  font-family: Poppins-Bold;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  flex: 1;
}
.about-pannel1 .description {
  color: #fff;
  font-size: 18px;
}
@media (min-width: 768px) {
  .about-pannel1 .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .about-pannel1 .item {
    width: 32%;
  }
}

@media (min-width: 992px) { 
  .about-pannel1 .mask { 
    padding-bottom: 136px;
  }
  .about-pannel1 .name {
    font-size: 64px
  }
  .about-pannel1 .description {
    font-size: 24px;
  }
}
@media (min-width: 1480px) { 
  .about-pannel1 {
    display: flex;
    padding-left: 5.72%;
    padding-right: 0;
    justify-content: space-between;
    align-items: center;
  }
  .about-pannel1 .left {
    width: 27.27%;
  }
  .about-pannel1 .title span {
    display: block;
  }
  .about-pannel1 .right {
    width: 66%;
    overflow: hidden;
    gap: 17px;
  }
  .about-pannel1 .item {
    margin-top: 0;
    flex: 1;
  }
  .about-pannel1 .box, .about-pannel1 img {
    aspect-ratio: inherit;
    height: 36vw;
  }
  .about-pannel1 .item-active3,
  .about-pannel1 .item-unactive3 {
    flex-shrink: 1;
  }
  .about-pannel1 .item-unactive3 {
    width: 32.5%;
    flex-shrink: 1;
  }
  .about-pannel1 .item-active1,
  .about-pannel1 .item-active2 {
    width: 37%;
  }
}

@media (min-width: 1720px) { 
  .about-pannel1 {
    padding-left: 12.39%;
    align-items: flex-start;
  }
}



.about-pannel2 {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 50px;
  padding-bottom: 100px;
  background: #e2e2e2;
}
.about-pannel2 .map {
  display: none;
}
.about-pannel2 .h1 {
  font-family: NotoSansSC-Bold;
  font-size: 20px;
}
.adress-tabs {
  display: flex;
  padding-top: 28px;
  padding-bottom: 41px;
}
.adress-tabs span {
  margin-right: 15px;
  padding-bottom: 9px;
  position: relative;
  cursor: pointer;
}
.adress-tabs span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #BB271D;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.adress-tabs span:last-child {
  margin-right: 0;
}
.adress-tabs span.active::after {
  opacity: 1;
}

.adress-content {
  display: none;
}
.adress-content.adress-content-active {
  display: block;
}
.adress-card {
  border-radius: 10px;
  overflow: hidden;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 20px;
  padding-bottom: 25px;
  max-height: 82px;
  box-sizing: border-box;
  margin-top: -10px;
  transition: max-height .7s ease-in-out;
  position: relative;
}

.adress-card:nth-child(1) {
  background-color: #eee;
}
.adress-card:nth-child(2) {
  background-color: #ddd;
}
.adress-card:nth-child(3) {
  background-color: #a9a5a5;
}
.adress-card:nth-child(4) {
  background-color: #a63026;
}
.adress-card.adress-card-only {
  background-color: #a63026;
}
.adress-card .title {
  font-size: 20px;
}
.adress-card .txt {
  margin-top: 12px;
  display: none;
}

.adress-card  ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
  display: none;
}
.adress-card li {
  padding-left: 26px;
  position: relative;
  margin-right: 15px;
}
.adress-card li:last-child {
  margin-right: 0;
}
.adress-card li::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #000;
}


.adress-card.adress-card-active {
  max-height: 1000px;
}
.adress-card.adress-card-active .txt,
.adress-card.adress-card-active ul {
  display: block;
}
@media (min-width: 768px) {
  .about-pannel2 {
    padding-top: 160px;
    padding-bottom: 210px;
    padding-left: 4%;
    padding-right: 4%;
  }
  .about-pannel2 .h1 {
    font-size: 24px;
  }
  .adress-tabs span {
    font-size: 20px;
    margin-right: 11.5%;
  }
  .adress-card {
    padding-left: 37px;
    padding-right: 37px;
    padding-top: 43px;
    padding-bottom: 38px;
    max-height: 140px;
  }
  .adress-card .title {
    font-size: 32px;
  }
  .adress-card .txt {
    margin-top: 24px;
  }
  .adress-card ul {
    margin-top: 12px;
  }
  .adress-card li {
    margin-right: 59px;
  }
  
}


@media (min-width: 992px) {
  .about-pannel2 {
    padding-left: 0;
    padding-right: 0;
    position: relative;
    background: url('../images/map.svg') no-repeat  top;
    background-size: 100% auto;
    display: flex;
  }
  .about-pannel2 .map {
    display: block;
    width: 100%;
    aspect-ratio: 32/15;
    position: absolute;
    left: 0;
    top: 0;
  }
  .about-pannel2 .location {
    position: absolute;
    transition: all .3s ease-in-out;
  }
  .about-pannel2 .location1 {
    top: 48.4%;
    left: 22.5%;
  }
  .about-pannel2 .location2 {
    top: 72.4%;
    left: 15.5%;
  }
  .about-pannel2 .location3 {
    top: 27.4%;
    left: 37.5%;
  }
  .about-pannel2 .location4 {
    top: 47.4%;
    left: 21.5%;
  }
  .about-pannel2 .box {
    width: 47.6%;
    margin-left: 48.75%;
  }
  
}




.about-pannel3 {
  padding-left: 40px;
  padding-right: 40px;
  background-color: #fbfbfb;
  padding-top: 56px;
  padding-bottom: 78px;
}
.partner-tabs {
  display: flex;
  margin-top: 29px;
}
.partner-tabs span {
  text-align: center;
  margin-right: 15px;
  color: rgba(0, 0, 0, .23);
  cursor: pointer;
}
.partner-tabs span:last-child {
  margin-right: 0;
}
.partner-tabs span.active {
  color: rgba(0, 0, 0, 1);
}
.partner-content {
  margin-top: 13px;
}
.partner-list {
  flex-wrap: wrap;
  align-items: center;
  display: none;
  margin-left: -8px;
  margin-right: -8px;
}
.partner-list.active {
  display: flex;
}
.partner-list li {
  width: 50%;
  box-sizing: border-box;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 15px;
  text-align: center;
}
.partner-list li img {
  max-width: 50%;
}
@media (min-width: 768px) { 
  .about-pannel3 {
    padding-left: 4.16%;
    padding-right: 4.16%;
    padding-top: 113px;
    padding-bottom: 156px;
  }
  .partner-tabs {
    margin-top: 58px;
  }
  .partner-tabs span {
    font-size: 20px;
    margin-right: 86px;
  }
  .partner-content {
    margin-top: 27px;
  }
  .partner-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .partner-list li {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 33px;
  }
  .partner-list li img {
    max-width: 100%;
  }
}
@media (min-width: 1200px) { 
  .about-pannel3 {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
}









.about-pannel4 {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  padding-top: 40px;
}
@media (min-width: 768px) { 
  .about-pannel4 {
    padding-left: 4.16%;
    padding-right: 4.16%;
    padding-bottom: 90px;
    padding-top: 88px;
  }
}
@media (min-width: 1200px) { 
  .about-pannel4 {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
}



.about-pannel4 .intro {
  padding-top: 25px;
  padding-bottom: 21px;
}
@media (min-width: 768px) { 
  .about-pannel4 .intro {
    font-size: 24px;
    padding-bottom: 42px;
  }
}


.about-cards .item {
  overflow: hidden;
  max-height: 174px;
  transition: max-height .3s ease-in-out;
  margin-bottom: 29px;
}
.about-cards .box1 .num {
  transition: color .3s ease-in-out;
}
.about-cards .item:hover {
  max-height: 1000px;
}
.about-cards .item:hover .box1 .num {
  color: #000;
}
@media (min-width: 768px) { 
  .about-cards .item {
    overflow: hidden;
    max-height: 285px;
  }
}

.about-cards .box1 {
  background-color: #F9F8F3;
  text-align: center;
  margin-bottom: 29px;
  padding-bottom: 12px;
  padding-top: 12px;
}
.about-cards .box1 .num {
  font-family: Anton-Regular;
  color: #EFEEE9;
  font-size: 50px;
}
.about-cards .box1 .title {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-cards .box1 .title::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #BB271D;
  border-right: 2px solid #BB271D;
  transform: rotate(-45deg);
  margin-top: 14px;
}
@media (min-width: 768px) { 
  .about-cards .box1 .num {
    font-size: 110px;
  }
}



.about-cards .box2 {
  background: url('../images/card.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
  padding-bottom: 25px;
  padding-left: 35px;
  padding-top: 30px;
  padding-right: 35px;
  box-sizing: border-box;
  transition: all .3s ease-in-out;
  display: none;
}
.about-cards .item:hover .box2{
  display: block;
}
.about-cards .box2 .title {
  font-size: 20px;
}
.about-cards .box2 .description {
  margin-top: 18px;
}
.about-cards .box2 ul {
  margin-top: 18px;
}
.about-cards .box2 li {
  padding-left: 15px;
  position: relative;
}
.about-cards .box2 li::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 10px;
}
.about-cards .box2 .link-box {
  margin-top: 25px;
}
.about-cards .box2 .link {
  width: 144px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #BB271D;
  background-color: #fff;
}
@media (min-width: 768px) { 
  .about-cards .box2 {
    padding-bottom: 50px;
    padding-left: 70px;
    padding-top: 62px;
    padding-right: 70px;
  }
  .about-cards .box2 .title {
    font-size: 32px;
  }
}
@media (min-width: 992px) { 
  .about-cards .box2 .link:hover {
    background-color: #BB271D;
    color: #fff;
  }
}
@media (min-width: 1200px) { 
  .about-cards .box2 {
    justify-content: space-between;
  }
  .about-cards .item:hover .box2{
    display: flex;
  }
  .about-cards .box2 .left {
    width: 50%;
  }
  .about-cards .box2 .right {
    width: 30%;
  }
  .about-cards .box2 ul {
    margin-top: 24px;
  }
}










.about-team {
  padding-left: 40px;
  padding-right: 40px;
}
@media (min-width: 768px) { 
  .about-team {
    padding-left: 4.16%;
    padding-right: 4.16%;
  }
}
@media (min-width: 1200px) { 
  .about-team {
    padding-left: 12.5%;
    padding-right: 12.5%;
  }
}


.teams2 {
  padding-left: 0;
  padding-right: 0;

}
@media (min-width: 992px) {
  .teams2 {
    margin-left: -20px;
    margin-right: -20px;
  }
}