* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}

@font-face {
  font-family: Microsoft Yahei2;
  src: url(../fonts/msyhbd.ttf);
  font-weight: bold;
}

i,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}


td,
th,
caption {
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

a {
    color: #343434;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    border: none;
}

ol,
ul,
li {
    list-style: none;
}

input,
textarea,
select,
button {
    color: #343434;
}

table {
    border-collapse: collapse;
}

html {
    overflow-y: scroll;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;
    /* 取消图片底侧有空白缝隙的问题 */
    vertical-align: middle
}

button {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
    cursor: pointer
}

button,
input {
    /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
    /* 默认有灰色边框我们需要手动去掉 */
    border: 0;
    outline: none;
}

body {
    /* CSS3 抗锯齿形 让文字显示的更加清晰 */
    -webkit-font-smoothing: antialiased;
    font: 12px/1.5;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    position: relative;
    font-family: 'Jost', sans-serif;
}

.hide,
.none {
    display: none
}


.w {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.c {
  width: 90%;
  margin: 0 auto;
}

@media (max-width: 1440px) {

  .c {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
  }
}

@media (max-width: 767px) {

    .w {
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {

    .w {
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
    }
}



@font-face {
    font-family: "myfont";
    src: url("../fonts/GoldieSans-Bold.otf") format('opentype');
}


  /* header */

  header {
    width: 100%;
    position: absolute;
    top: 0%;
    z-index: 3;
}

.header_bd {
    padding: 0px 30px 0px 0px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header_bd::before {
    content: '';
    opacity: 0.6;
    background: linear-gradient(130deg, #0a0000 30%, #e18731 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.header_bd_item_list i {
    margin-left: 10px;
}

.header_bd_logo {
    padding: 20px 50px;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.header_bd_logo img {
    max-width: 90px;
}

.header_bd_item_a {
   justify-self: end;
}

.header_bd_item_a a {
   color: #ffffff;
   font-weight: 700;
   font-size: 16px;
   background-color: #16273f;
   padding: 10px 20px;
   border-radius: 5px;
}

.header_bd_item_a i {
    font-size: 10px;
 }


 /*  navarbar */

.navbar {
    height: 100%;
    display: flex;
    justify-content: start;
    align-self: center;
    align-items: center;
    font-weight: 700;
    column-gap: 25px;
  }

  .dropdown_list,
  .dropdown_list_2 {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
    position: relative;
}


.dropdown_list::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #e18731; /* 线的颜色 */
    position: absolute;
    bottom: 0;
    transition: width 0.3s; /* 添加宽度变化的过渡效果 */
    
}

.dropdown_list:hover::after {
    width: 100%; /* 在hover时将宽度设置为100% */
}
  
  .navbar a {
    float: left;
    font-size: 14px;
    color: white;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 16px;  
    border: none;
    outline: none;
    color: white;
    padding: 5px 10px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    font-weight: 700;
  }
  
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s; /* 降低过渡时间以提高用户体验 */
    top: 100%;
}
  
.dropdown_list:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    /* ... 其他样式 ... */
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
}

.dropdown-content a:hover {
    background-color: #e18731;
    color: #ffffff;
}
  
  .dropdown:hover .dropdown-content {
    display: block;
    transition: all 1s;
}

  #dropdownContent1 a {
    border-bottom: 1px solid #272727;
  }




  @media (max-width: 1440px) {

    .navbar {
        height: 100%;
        display: flex;
        justify-content: start;
        align-self: center;
        align-items: center;
        font-weight: 400;
        column-gap: 15px;
      }

   }


   @media (max-width: 1280px) {

    .dropdown_list a,
    .dropdown_list_2 a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    }


   }

   @media (max-width: 1024px) {

    .header_bd {
        background-color: #1a1a1a;
        align-items: center;
    }

    .header_bd_logo {
        margin-right: 70px;
    }

    .navbar {
        height: 100%;
        display: flex;
        justify-content: start;
        align-self: center;
        align-items: center;
        font-weight: 700;
        column-gap: 0px;
      }

   }

   @media (max-width: 1023px) {
    .header_bd {
       display: none;
    }
   }

/* side nav */

nav {
    position: fixed;
    top: 0%;
    z-index: 3;
    width: 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

nav::before {
    content: '';
    opacity: 0.9;
    background: linear-gradient(130deg, #0a0000 30%, #e18731 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
}

.nav_bar {
    display: block;
    font-size: 20px;
    cursor: pointer;
}

nav h1 img {
    width: 90px;
}

.overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    background: linear-gradient(130deg, #0a0000 30%, #e18731 100%);;
    overflow-y: hidden;
    transition: 0.5s;
    padding: 0px 20px;
  }
  
  .overlay-content {
    position: relative;
    width: 100%;
    text-align: left;
    margin-top:30px;
  }
  
  .overlay a {
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
    color: #ffffffe6;
    display: block;
    transition: 0.3s;
  }

  .overlay-content a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  
  
  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }
  
  .overlay .closebtn {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  .closebtn img {
    height: 50px;
    width: 90px;
    display: block;
  }

  .mb-dropdown{
    font-size: 14px !important;
  }

  .mb-dropdown:hover{
    color: #e18731 !important;
  }

  /* styles.css */
.scroll-active::before {
    opacity: 1;
}
  

  @media screen and (max-height: 450px) {
    .overlay {overflow-y: auto;}
    .overlay a {font-size: 20px}
    .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
    }
  }

    @media (max-width: 576px) {

        .hdsection .bg .navbar {
            display: none;
        }
}

@media (min-width: 1024px) {

    nav {
        display: none;
    }
}


        /* whatsapp */
        #fixed-image {
            position: fixed;
            bottom: 20px;
            right: 20px;
            object-fit: cover;
            z-index: 1;
            width: 70px;
            height: 70px;
        }

        @media (max-width: 575px) {
            #fixed-image {
                position: fixed;
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
            }
        }

        @media (min-width: 768px) {
            #fixed-image {
                width: 55px;
                height: 55px;
            }
        }

        @media (min-width: 992px) {
            #fixed-image {
                width: 70px;
                height: 70px;
            }
        }

/* footer */

.contact {
    padding: 0px 0px;
}

.contact .w_bg {
    padding-top: 70px;
    background-color: #fff;
}

.contact_bd_list_1 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #ebebeb ;
}

.contact_bd_list_1_content p {
    font-size :116px;
    font-weight: 500;
    color: #e18731;
}

.contact_bd_list_1_a a {
    font-size: 18px;
    font-weight: 500;
    color: #e18731;
    padding-bottom: 5px;
    border-bottom: 1px solid #e18731 ;
    text-align: center;
}

.contact_bd_list_1_a i {
    color: #e18731;
}

.contact_bd_2 {
    padding: 30px 0px; 
}

.contact_bd_2 p {
    font-size: 32px;
    font-weight: 400;
    color: #4b686a;
    font-family: 'Jost', sans-serif;
}

@media (max-width: 1024px) {

    .contact_bd_list_1_content p {
        font-size :66px;
        font-weight: 500;
        color: #e18731;
    }

    .contact_bd_2 p {
        font-size: 20px;
        font-weight: 400;
        color: #4b686a;
        font-family: 'Jost', sans-serif;
    }
}


@media (max-width: 768px) {

    .contact_bd_list_1_content p {
        font-size :40px;
        font-weight: 500;
        color: #e18731;
    }

    .contact_bd_2 p {
        font-size: 18px;
        font-weight: 400;
        color: #4b686a;
        font-family: 'Jost', sans-serif;
    }
}


@media (max-width: 576px) {

    .contact_bd_list_1_content p {
        margin-bottom: 25px;
    }

    .contact_bd_list_1 {
        display: block;
        padding-bottom: 25px;
        border-bottom: 1px solid #ebebeb ;
    }

    .contact_bd_list_1_a a {
        font-size: 16px;
        font-weight: 500;
        color: #e18731;
        padding-bottom: 5px;
        border-bottom: 1px solid #e18731 ;
        text-align: center;
    }

    .contact .w_bg {
        padding-top: 40px;
        background-color: #fff;
    }
}


/* contact_2 */

.contact_2 {
    position: relative;
    height: 100%;
    padding: 65px 0px;
}

.contact_2 .w {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
}

.contact_2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0%;
    z-index: -1;
}

.contact_2_bd {
    text-align: center;
}

.contact_2 h2 {
    font-size: 72px;
    color: #ffffff;
    font-weight: 600;
}

.contact_2 p {
    margin-top: 5px;
    font-size: 26px;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
}

.contact_2 a {
    font-size: 16px;
    display: inline-block;
    padding: 12px 25px;
    margin-top: 20px;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 15px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
}

@media (max-width: 1024px)  {

    .contact_2 h2 {
        font-size: 52px;
        color: #ffffff;
        font-weight: 600;
    }
}

@media (max-width: 576px)  {

    .contact_2 {
        position: relative;
        height: 100%;
        padding: 0px 0px;
    }

    .contact_2 h2 {
        font-size: 28px;
        color: #ffffff;
        font-weight: 600;
    }

    .contact_2 p {
        margin-top: 5px;
        font-size: 18px;
        color: #ffffff;
        font-family: 'Jost', sans-serif;
    }
}


 /* footer */

 footer {
    background: url(../images/high-angle-new-car-available-selling.jpg);
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
 }

 
 .footer_bd_2 {
    display: flex;
    justify-content: center;
    padding: 70px 0px;
 }

 .footer_content_1_img {
    margin-bottom: 30px;
 }

 .footer_content_1_img img {
    max-width: 100px;
 }

 .footer_content_1_p {
    color: #000000;
    margin-bottom: 20px;
    font-size: 17px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
 }

 .footer_content_1_icon {
    display: flex;
    column-gap: 20px;
 }

 .footer_content_1_icon {
    display: flex;
    column-gap: 20px;
 }

 .footer_content_1_icon i {
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 14px;
    border-radius: 100px;
    font-size: 13px;
    transition: all 0.3s;
 }

 .footer_content_1_icon i:hover {
    color: #e18731;
    border: 2px solid #e18731;
    padding: 12px 14px;
    border-radius: 100px;
    font-size: 13px;
 }

 .footer_content_2{
    justify-self: center;
 }

 .footer_content_2_tittle {
    color: #000000;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
 }

 .footer_content_2_a a{
    font-size: 16px;
    color: #313131;
    font-weight: 400;
    font-family: 'Jost', sans-serif;
 }

 .footer_content_2_a{
    margin-bottom: 10px;
 }

 .footer_content_3_p {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Jost', sans-serif;
}

.footer_content_3_p2 {
    color: #313131;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
}

.footer_content_3_p3 {
    display: flex;
    column-gap: 10px;
    color: #313131;
    margin-bottom: 15px;
}

.footer_content_3_p3 i {
    color: #e18731;
    font-size: 16px;
}

.footer_shortcut {
    padding: 40px 0px;
    border-top: solid 1px #ffffff;
    text-align: center;
    color: #8f8f8f;
}

.footer_content_2,
.footer_content_3{ 
        width: 33.33%;
        padding: 30px;
     }


@media (max-width: 576px) {

    .footer_content_1_img img {
        max-width: 70px;
    }

     .footer_bd_2 {
        display: block;
     }

     .footer_content_1,
     .footer_content_2,
     .footer_content_3{
        margin-bottom: 35px;
     }
     
     .footer_shortcut {
        font-size: 12px;
        line-height: 1.5;
     }

     .footer_content_2,
    .footer_content_3{ 
        width: 100%;
        padding: 0px;
     }

}

/* main button */

.btn_main a {
    font-size: 18px;
    font-weight: 500;
    color: #e18731;
    padding-bottom: 5px;
    border-bottom: 1px solid #e18731 ;
    text-align: center;
}

.btn_main i {
    color: #e18731;
}

.main_title {
    font-size :116px;
    font-weight: 500;
    color: #e18731;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 25px;
}

.main_p {
    font-size: 32px;
    font-weight: 400;
    color: #4b686a;
    font-family: 'Jost', sans-serif;

}

.main_bd {
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}

@media (max-width: 1024px) {

    .main_title  {
        font-size :66px;
        color: #e18731;
    }

    .main_p  {
        font-size: 20px;
        font-weight: 400;
        color: #4b686a;
        font-family: 'Jost', sans-serif;
    }
}


@media (max-width: 768px) {

    .main_title {
        font-size :40px;
        color: #e18731;
    }

    .main_p  {
        font-size: 18px;
        font-weight: 400;
        color: #4b686a;
        font-family: 'Jost', sans-serif;
    }
}


@media (max-width: 576px) {

    .main_bd {
        display: block;
        justify-content: space-between;
        padding: 30px 0px;
    }

    .btn_main {
        display: flex;
        justify-content: end;
    }

    .btn_main a {
        font-size: 16px;
        font-weight: 500;
        color: #e18731;
        padding-bottom: 5px;
        border-bottom: 1px solid #e18731 ;
        text-align: center;
    }

    .main_p  {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 25px;
        color: #4b686a;
        font-family: 'Jost', sans-serif;
    }
}

/* sbutitle */
.sub_title {
    height: 500px;
    background: url(../images/sub_cover.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
}

.sub_title .w {
    height: 100%;
    display: flex;
    align-items: center;
}

.sub_title_bd {
    margin-top: 100px;
}

.sub_title p {
    font-size: 18px;
    color: #ffffff;
}

.sub_title p i {
    font-size: 13px;
    color: #ffffff;
}

.sub_title h2 {
    font-size: 45px;
    color: #e18731;
}


/* hide */

.hide {
    display: none;
}