/* 这个样式可能会引起冲突 */
.container {
  /* max-width: 1440px !important; */
  /* min-width: 1440px !important; */
}

body {
  --my-theme: #E50020; //默认丰田颜色
}

body.lexus {
  --my-theme: #858E92; //雷克萨斯颜色
}


/* 右上角按钮 */

.top-fixed-btn-go {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 218px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  font-family: HYQiHei-EES;
  font-size: 20px;
  color: #FFFFFF;
  background-image: linear-gradient(180deg, #EF6C45 0%, #E7021A 100%);
  box-shadow: 0 0 4px 0 #FF8669;
  border-radius: 16px;
}


.my-new-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: #fdfdfd;
}

.my-new-header .top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding-left: 32px; */
  /* padding-right: 20px; */
}

.top-header .logo {
  width: 150px;
  height: 90px;
  display: flex;
  align-items: center;
}

.top-header .logo .img {
  max-width: 120px;
  max-height: 100%;
}

.top-header .my-menu {
  display: flex;
  align-items: center;
  /* margin-left: 38px; */
  /* margin-right: 10px; */
}

.top-header .my-menu .menu_item {
  height: 100px;
  line-height: 130px;
  font-size: 17px;
  color: #060606;
  padding: 0 5px;
  transition: all .3s ease-in-out;
}

.top-header .my-menu .menu_item .sub_menu {
  background-color: var(--my-theme);
  display: none;
  padding: 9px 0 5px 0;
  position: absolute;
  z-index: 10;
  left: -10px;
  right: -10px;
  top: 90px;
}

.top-header .my-menu .menu_item .sub_menu .sub_menu_item>a {
  color: white;
  display: block;
  font-size: 15px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
}

.top-header .my-menu .menu_item .sub_menu .sub_menu_item:hover{
  background-color: rgba(0, 0, 0, 0.15);
}

.top-header .my-menu .active,
.top-header .my-menu .menu_item:hover {
  font-weight: 600;
  position: relative;
}

.top-header .my-menu .active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--my-theme);
  border-radius: 2px;
}

.top-header .sousuo {
  margin-top: 26px;
  width: 84px;
  height: 30px;
  background: rgba(192, 192, 192, 0.20);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #070707;
  font-family: HYQiHei-GZS;
  font-size: 14px;
  padding: 0 10px;
}

.sousuo .fa-search{
  color: #666;
}



.my-main-box {
  margin-top: 0 !important;
}

.my-main-box .swiper-wrapper img {
  width: 100%;
}

.my-main-box #home_banner {
  /* height: 480px !important; */
}


.my-main-box .my-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* margin-top: -10px; */
}

.my-main-box .my-list .my-list_item {
  height: 586px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid #eee;
}

.my-main-box .my-list .my-list_item .bg,
.my-main-box .my-list .my-list_item .mask {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
}

.my-main-box .my-list .my-list_item .bg {
  z-index: 1;
}

.my-main-box .my-list .my-list_item .mask {
  /* background: rgba(0,0,0,.3); */
  z-index: 2;
  transition: all .2s ease-in-out;
}

.my-main-box .my-list .my-list_item .icon {
  width: 100px;
  height: 100px;
  z-index: 3;
  position: relative;
}

.my-main-box .my-list .my-list_item .title {
  position: relative;
  font-size: 24px;
  color: #FFFFFF;
  z-index: 3;
  margin-top: 10px;
}

.my-list_item:hover .mask {
  background: var(--my-theme);
}

.my-list_item:hover .icon,
.my-list_item:hover .title {
  transform: scale(1.1);
  transition: all .3s ease-in;
}



/* 服务 */
.my-service {
  /* background: #F7F7F7; */
  color: #000;
  font-family: HYQiHei-GZS;
}

.my-service .service-box {
  background: #F7F7F7;
  padding: 60px 116px 70px;
}

.service-box .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.top .left .title {
  font-size: 40px;
  font-weight: 600;
}

.top .left .sub-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.top .right {
  display: flex;
}

.top .right .tab {
  background: #FFFFFF;
  border: 1px solid var(--my-theme);
  width: 180px;
  height: 60px;
  line-height: 60px;
  color: var(--my-theme);
  text-align: center;
  font-size: 22px;
  cursor: pointer;
}

.top .right .active {
  background-color: var(--my-theme);
  color: #fff;
}

.my-service .my-swiper {
  margin-top: 40px;
  height: 460px;
  overflow-x: hidden;
  position: relative;
}
.my-service .swiper-slide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 34px;
}

.my-service .swiper-slide .my-card {
  background-color: #fff;
  height: 400px;
  padding: 40px 20px;
  position: relative;
  cursor: pointer;
}

.my-service .swiper-slide .my-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transition: all .3s linear;
}

.my-service .swiper-slide .my-card:hover::after {
  height: 10px;
  background-color: var(--my-theme);
}

.my-service .swiper-slide .my-card .img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
  height: 100%;
}

.my-service .swiper-slide .my-card .title {
  font-size: 28px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.my-service .swiper-slide .my-card .sub-title {
  margin-top: 4px;
  font-size: 22px;
  line-height: 34px;
  position: relative;
  z-index: 2;
}

/* 长条形指示器样式 */
.my-swiper-pagination {
  width: auto !important;
  position: absolute;
  bottom: -50px;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  gap: 4px;
}

.my-swiper-pagination-bullet {
  width: 18px;
  height: 4px;
  background: #EAEAEA;
  border-radius: 6px;
  opacity: 1;
  transition: all 0.3s ease;
}

.my-swiper-pagination-bullet-active {
  width: 46px;
  background-color: var(--my-theme);
}



/* 贷款计算 */

.my-price .my-price-box {
  font-family: HYQiHei-GZS;
  padding: 60px 30px 100px 116px;
  color: #000;
}

.my-price-box .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.top .left .title {
  font-family: HYQiHei-EES;
font-size: 40px;
color: #000000;
font-weight: 400;
}

.top .left .sub-title {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.my-price-box .mid {
  display: flex;
  margin-top: 74px;
}

.my-price-box .label {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.form-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.form-box .l {
  font-size: 18px;
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.form-box .select-btn {
  display: flex;
}

.form-box .select-btn .my-btn {
  background: #FFFFFF;
  border: 1px solid #999999;
  /* width: 136px; */
  padding: 0 16px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  margin-right: 20px;
}

.form-box .select-btn .active {
  border-color: var(--my-theme);
  background-color: var(--my-theme);
  color: #fff;
}

.my-price-box .mid .left {
  flex: 1;
}

.my-price-box .mid .right,
.my-price-box .mid .right img {
  width: 704px;
  height: 294px;
}

.form-box .select-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #969696;
  border-radius: 2px;
  width: 400px;
  height: 55px;
  line-height: 55px;
  font-size: 20px;
  color: #2E2E2E;
  padding: 0 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.form-box .select-input .t {
  flex: 1;
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2E2E2E;
  font-size: 20px;
}

.form-box .select-input .my-drop-down {
  width: 20px;
  height: 20px;
  transition: all .2s linear;
}

.form-box .select-input .click {
  transform: rotate(180deg);
}

/* 下拉选项框样式 */
.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  max-height: 0;
  overflow-y: scroll;
  opacity: 0;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-options.show {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
}

/* 选项样式 */
.option-item {
  padding: 14px 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.option-item:hover {
  background: #e8f4fc;
  color: #2980b9;
  padding-left: 20px;
}

.option-item:last-child {
  border-bottom: none;
}

.option-item.active {
  background: #3498db;
  color: white;
}

.option-item .car-icon {
  margin-right: 10px;
  font-size: 18px;
}


.my-price-box .left {
  flex: 1;
}

.my-price-box .bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.my-price-box .bottom .right {
  width: 400px;
  padding-right: 50px;
  margin-left: 150px;
}

.my-price-box .bottom .right .price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 34px;
}

.price-grid_item span {
  font-size: 18px;
  color: #2E2E2E;
}

.price-grid_item .num {
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
}

.my-price-box .bottom .right .btn-group {
  display: flex;
  gap: 20px;
  margin-top: 100px;
}

.my-price-box .btn-apply,
.my-price-box .btn-phone {
  flex: 1;
  height: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 22px;
  cursor: pointer;
  transition: all .3s linear;
}

.my-price-box .btn-apply {
  background: var(--my-theme);
  color: #fff;
}

.my-price-box .btn-phone {
  border: 1px solid var(--my-theme);
  color: var(--my-theme);
}

.my-price-box .btn-phone:hover,
.my-price-box .btn-apply:hover {
  transform: scale(1.1);
  font-weight: 600;
}


.progress-container {
  width: 100%;
  height: 6px;
  position: relative;
  margin-top: 40px;
  padding-left: 10px;
  user-select: none;
}

.progress-bar {
  width: 100%;
  height: 100%;
  background: rgba(232, 232, 232, 0.30);
  border-radius: 5px;
  position: relative;
}

.draggable-ball {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(250, 192, 192, 0.50);
  border-radius: 18px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all .1s linear;
  background-image: url('../img/滑块.png');
  background-size: cover;
}

#current-progress {
  margin-top: 20px;
  font-size: 18px;
  padding-left: 10px;
  margin-bottom: 20px;
}




.news-container {
  background-color: #f7f7f7;
  font-family: HYQiHei-GZS;
  padding: 60px 116px;
  color: #000;
}

.news-container .articles_featured_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.news-container .articles_featured_list .article {
  margin-left: 0;
}

.news-container .articles_featured_list .article a {
  width: auto !important;
}

.news-links {
  font-family: HYQiHei-GZS;
  padding: 60px 40px 0 116px;
  color: #000;
}

.news-links .links {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: repeat(7, 1fr);
}

.news-links .links a,
.news-links .links a img {
  width: 100%;
}

.articles_featured_list .article a .meta {
  background-color: #fff;
}

.articles_featured_list .article a:hover .meta {
  background-color: var(--my-theme);
}

.articles_featured_list .article a {
  border-bottom: 4px solid var(--my-theme);
}

footer {
  height: 190px;
  display: flex;
  align-items: center;
}

.new-footer {
  padding: 0 40px 0 116px;
}



.my-main-box .top-banner {
  width: 100%;
  line-height: 1;
  height: 478px;
}

.my-main-box .my-nav {
  font-family: HYQiHei-GZS;
  padding: 0 116px 60px;
  color: #000;
}

.my-main-box .my-nav .breadcrumb,
.my-main-box .my-nav .breadcrumb a {
  font-size: 16px;
  color: #737373;
  border-bottom: none !important;
}

.my-online-label {
  display: flex;
  margin-top: 60px;
  align-items: flex-end;
}

.my-online-label .left-tag {
  padding: 8px 40px 10px 20px;
  text-align: center;
  line-height: 1;
  background-color: var(--my-theme);
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.my-online-label .right-text {
  font-size: 16px;
  color: #737373;
}




.my-form-wrap {
  height: 820px;
  background-image: url("https://www.toyota-finance.com.cn/images/desktop/saveInfo/GAC_bg.png");
  background-size: cover;
  padding: 40px 116px;
  font-family: HYQiHei-GZS;
}

.my-form-wrap .router{
  font-size: 14px;
  color: #fff;
}

.form-wrap_content{
  width: 460px;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.form-wrap_content .top-title{
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.form-wrap_content select, .form-wrap_content input{
  border: 1px solid #777;
  height: 50px;
  line-height: 50px;
  margin-top: 14px;
  padding: 0 12px;
  border-radius: 2px;
  font-size: 16px;
  color: #666;
}

.form-wrap_content button{
  border-radius: 2px;
  background-color: var(--my-theme);
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  border: none;
  font-weight: 600;
  margin-top: 60px;
}

.my-flex{
  display: flex;
  gap: 10px;
}

.my-input::placeholder {
  color: #666;
  font-size: 16px;
}

.my-select:invalid {
  color: #666;
}

.my-select option {
  color: #333;
}

.my-select {
  /* 去掉浏览器默认小箭头 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* 自定义小箭头：这里用 SVG，可以改大小和颜色 */
  background-repeat: no-repeat;
  background-position: right 14px center; /* 箭头位置 */
  background-size: 20px 20px;             /* 箭头大小 */
  background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\<path d='M6 9l6 6 6-6'/>\</svg>");
  /* ↑ fill='%23999' = #999，自己改颜色 */
}

/* 兼容 IE 的默认箭头，隐藏掉 */
.my-select::-ms-expand {
  display: none;
}

.form-wrap_content .my-check{
  gap: 0;
  margin-top: 20px;
  padding-right: 10px;
  align-items: flex-start;
  cursor: pointer;
}

.form-wrap_content .check{
  padding: 0 10px;
}
.form-wrap_content .check .check-img{
  width: 16px;
  height: 16px;
}
.form-wrap_content .succcess-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 600px;
  font-size: 24px;
}

.check-t{
  font-size: 12px;
  color: #000;
  font-weight: 600;
  flex: 1;
  word-break: break-word;
  text-align: justify;
}

.theme-color{
  color: var(--my-theme);
}

.about-us_content, .map_content{
  padding: 40px 116px;
  font-family: HYQiHei-GZS;
  color: #000;
}

.about-us-qr {
  display: flex;
  align-items: center;
  padding: 20px 60px;
  gap: 80px;
}

.about-us-qr .qr-left {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  position: relative;
}

.about-us-qr .qr-left .right-icon{
  position: absolute;
  width: 60px;
  height: 60px;
  right: -94px;
  top: 50px;
  z-index: 9;
}

.about-us-qr .qr-left .title{
  font-size: 20px;
  margin-bottom: 4px;
}

.qr-right{
  border-radius: 20px;
  flex: 1;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 60px;
}

.qr-right .img-box img{
  width: 140px;
  height: 140px;
}

.line{
  width: 1px;
  background-color: #fff;
  height: 130px;
}

.qr-right .img-box .img-desc{
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}

.about-us-info{
  display: flex;
  gap: 30px;
  margin: 40px;
  padding: 0 40px;
}

.about-us-info .info_item{
  flex: 1;
}

.about-us-info .info_item .info-item_label{
  font-size: 20px;
  font-weight: 600;
  border-bottom: 4px solid #eee;
}

.about-us-info .info_item .info-item_label .t{
  display: inline-block;
  border-bottom: 4px solid var(--my-theme);
  margin-bottom: -4px;
  padding-bottom: 4px;
}

.about-us-info .info_item .info-item_content{
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: linear-gradient(to bottom, #fdfdfd 0%, #f1f1f1 100%);
  padding: 0 20px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.info-item-sub-item{
  display: flex;
  align-items: center;
  padding: 4px 0;
}

.info-item-sub-item .icon{
  max-width: 20px;
  max-height: 20px;
  margin-right: 10px;
}

.info-item_content .theme-title{
  font-size: 18px;
  font-weight: 600;
  color: var(--my-theme);
  margin: 20px 0;
}



.map_content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map_content .top .right{
  width: 180px;
  height: 60px;
  justify-content: center;
  line-height: 60px;
  background-color: var(--my-theme);
  font-size: 22px;
  color: #fff;
}

.map_content .select-box{
  margin-top: 40px;
  display: flex;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.map_content .form-box{
  gap: 10px;
}

.map_content .form-box .l{
  width: auto;
}

.map_content .form-box .select-input{
  width: 100%;
  height: 50px;
}

.map-panel{
  position: relative;
  margin-top: 40px;
}

.map-panel .map{
  width: 100%;
  height: 704px;
}

.map-panel .left-fixed-bar{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 9;
  border-radius: 10px;
  width: 460px;
  background-color: #fff;
}

.map-panel .left-fixed-bar .title{
  font-size: 22px;
  font-weight: 600;
  padding: 14px 20px;
  border-bottom: 1px solid #969696;
}

.bar-list-item{
  padding: 14px;
  display: flex;
  gap: 4px;
  align-items: flex-start;
}
.bar-list-item .info{
  width: 0;
  flex: 1;
}

.list-wrap{
  height: 460px;
  overflow-y: auto;
}

.bar-list-item{
  position: relative;
  cursor: pointer;
}
.km{
  position: absolute;
  right: 14px;
  top: 50px;
  color: var(--my-theme);
  font-size: 18px;
}
.bar-list-item::after{
  content:'';
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  bottom: 0;
  background-color: #E4E4E4;
}
.bar-list-item .info .name{
  font-family: HYQiHei-EES;
  font-size: 18px;
  color: #000000;
  margin-bottom: 6px;
}
.bar-list-item .info .address,.bar-list-item .info .phone{
  width: 280px;
  font-family: HYQiHei-CES;
  font-size: 16px;
  color: #333333;
}