:root {
  --font-size-nav: 22px;
  --font-size-body: 16px;
  --font-size-title: 40px;
  --font-size-enTitle: 32px;

  --color-blue: #003a8e;
  --color-black: #3a3a3a;
  --color-orange: #d69400;
  --color-gray: #898989;
}

body {
  font-size: var(--font-size-body);
  color: #333;
}

/* 分页 */
.cgal-list-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 4rem auto;
}

.cgal-list-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-right: 0.2rem;
  background: #959595;
  color: white;
  font-size: 0.14rem;
  cursor: pointer;
}

.cgal-list-page:last-child {
  margin-right: 0;
}

.cgal-list-page:hover {
  background: var(--color-blue);
}

.cgal-list-page-focus {
  background: var(--color-blue);
}

/* 头部导航 */
.header {
  box-sizing: border-box;
  position: fixed;
  z-index: 99;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 6vw;
  min-height: 60px;
  padding: 0 2vw;
  background-color: rgba(255, 255, 255, 0.9);
}

.logo {
  width: 26vw;
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1vw;
}

.nav-item {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: var(--font-size-nav);
}

.nav-item a {
  display: block;
  padding: 0 1vw;
  line-height: 48px;
  text-align: center;
  white-space: nowrap;
}

.nav-item a:hover {
  color: #fff;
  background-color: var(--color-blue);
}

.nav-item>nav {
  position: absolute;
  z-index: 98;
  top: 100%;
  display: none;
  min-width: 120px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.9);
}

.nav-item:hover nav {
  display: block;
}

.menu-btn {
  width: 28px;
  cursor: pointer;
}

/* 标签栏副导航 */
.tab-bar {
  position: fixed;
  z-index: 97;
  top: 6vw;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow-x: auto;
}

.tab-bar::-webkit-scrollbar,
.page-tab::-webkit-scrollbar {
  display: none;
}

/* .tab-bar+* {
  margin-top: 40px;
} */

.tab-bar a {
  position: relative;
  display: inline-block;
  width: 120px;
  text-align: center;
  line-height: 40px;
  color: #666;
}

.tab-bar a:first-child:before {
  display: none;
}

.tab-bar a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 8px;
  margin-top: -4px;
  background-color: #c9c9c9;
}

.tab-bar a:hover,
.tab-bar a.active {
  background: var(--color-blue);
  color: #fff;
}

/* 页面内导航 */
.page-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  white-space: nowrap;
  overflow-x: auto;
}

.page-tab a {
  display: inline-block;
  width: 128px;
  margin: 10px;
  line-height: 44px;
  text-align: center;
  border-radius: 8px;
  background-color: #f1f1f1;
}

.page-tab a.active {
  background-color: var(--color-orange);
  color: #fff;
}

/* 子导航 */
.sub-nav {
  position: fixed;
  z-index: 98;
  top: 6vw;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: calc(100vh - 6vw);
  background-color: #fff;
}

.sub-nav.active {
  display: grid;
}

.sub-nav>div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 子导航-左侧 */
.sub-nav .left {
  display: block;
  padding-top: 9vw;
  overflow-y: auto;
}

.sub-nav .left::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}

.sub-nav .left::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #222f52;
}

.sub-nav .left::-webkit-scrollbar-track {
  border-radius: 3px;
  background: transparent
}

.nav-list {
  width: 30%;
  margin: 0 auto;
  padding: 10px 0;
}

.nav-list nav {
  display: none;
  flex-direction: column;
  padding: 10px 10px 20px;
}

.nav-list nav.active {
  display: flex;
}

.nav-list nav>a {
  line-height: 2;
}

.nav-list nav>a:hover {
  color: var(--color-blue);
}

.nav-list-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  line-height: 2;
  font-size: var(--font-size-nav);
}

.nav-list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: ease 0.5s;
}

.nav-list-btn::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background-color: #ccc;
}

.nav-list-btn::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #ccc;
  transition: ease 0.5s;
}

.nav-list-btn.show::after {
  height: 2px;
  transition: ease 0.5s;
}

.nav-list-btn.show {
  transform: rotate(360deg);
}

/* 子导航-右侧 */
.sub-nav .right {
  background-color: #f7f8fa;
}

/* 联系我们 */
.contact-title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: var(--font-size-title);
  font-weight: bold;
}

.contact-title>img {
  margin-left: 26px;
}

.contact-subtitle {
  margin-left: -4px;
  margin-bottom: 66px;
  font-size: var(--font-size-title);
  font-style: italic;
  opacity: 0.4;
}

.contact-text {
  font-size: 18px;
  margin-top: 20px;
}

/* banner */
.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* box */
.box {
  padding: 120px;
}

/* 历史时间轴 */
.history {
  padding: 110px 0 120px;
  background-color: #f8fafe;
}

.history-title {
  position: relative;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}

.history-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 20px;
  height: 4px;
  margin-left: -10px;
  background-color: var(--color-blue);
}

.history-des {
  margin-top: 30px;
  text-align: center;
  color: var(--color-gray);
}

/* 时间轴 */
.timeline-box {
  margin-top: 50px;
  padding: 0 20px;
}

.timeline__item:hover .timeline__content {
  background-color: var(--color-blue);
  color: #fff;
}

.timeline-box .timeline__item--bottom:hover .timeline__content::after {
  border-bottom: 12px solid var(--color-blue);
}

.timeline-box .timeline__item--top:hover .timeline__content::after {
  border-top: 12px solid var(--color-blue);
}

.timeline-box .timeline__item:hover::after {
  border-color: var(--color-blue);
}

.timeline-year {
  position: absolute;
  display: flex;
  align-items: flex-start;
}

.timeline-year span {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-blue);
}

.timeline-year img {
  display: block;
  width: 44%;
  margin-left: 5px;
  border-radius: 10px
}

.timeline__item--top .timeline-year {
  top: calc(100% + 80px);
}

.timeline__item--bottom .timeline-year {
  bottom: calc(100% + 80px);
  align-items: flex-end;
}

/* 宣传视频 */
#videoBox {
  margin: 74px -40px 0;
  padding: 0 39px;
}

#videoBox video {
  width: 100%;
}

/* 最新动态-轮播 */
#recentNews {
  margin: 74px -40px 0;
  padding: 0 40px;
}

.swiper-button-prev,
.swiper-button-next {
  filter: grayscale(100);
}

#recentNews .swiper-slide {
  padding: 14px;
}

#recentNews .swiper-slide:hover {
  background-color: var(--color-orange);
  color: #fff;
}

#recentNews .swiper-slide:hover p {
  color: #fff;
}

#recentNews .swiper-slide>img {
  margin-bottom: 10px;
}

.recent-news {
  display: flex;
  flex-direction: column;
  min-height: 182px;
  padding: 14px;
}

.recent-news p {
  text-align: justify;
  color: var(--color-gray);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent-news-title {
  margin-bottom: 15px;
  font-size: 20px;
}

.recent-news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: var(--color-gray);
}

.recent-news-footer>.more-btn {
  display: flex;
  align-items: center;
  padding: 2px 8px 4px;
  background-color: var(--color-orange);
  color: #fff;
}

.recent-news-footer>.more-btn img {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-left: 5px;
}

/* 关于我们 */
.about-us {
  position: relative;
  height: 30.26vw;
  padding-top: 168px;
}

.about-us-title {
  position: absolute;
  z-index: 9;
  top: 34px;
  right: 7vw;
}

.about-us .title-wide {
  text-align: right;
}

.about-us .title-wide::before {
  right: 64px;
}

.about-us .title-wide>span {
  margin-right: -6px;
}

.about-us .title-wide>a {
  left: -40px;
  color: #fff;
}

.about-us>img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.about-us-text {
  display: flex;
  flex-direction: row-reverse;
  min-height: 100%;
  padding: 65px 30px 10px;
  background-color: #82b2de;
}

.about-us-text p {
  width: 32vw;
  text-align: justify;
  color: #fff;
}

/* 企业文化&招商加盟 */
.c-and-j {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-and-j-bg {
  display: block;
  flex: 1;
  height: 320px;
  padding-top: 160px;
  padding-left: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  line-height: 1;
  font-size: var(--font-size-title);
  font-weight: bold;
}

.c-and-j span {
  font-size: var(--font-size-nav);
  color: var(--color-orange);
}

.c-and-j-bg:first-child {
  background-image: url(../img/index/bg_culture.png);
  color: var(--color-blue);
}

.c-and-j-bg:last-child {
  background-image: url(../img/index/bg_join.png);
  color: #fff;
}

/* 车型展示 */
.car-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.car-switch>div {
  margin: 40px 15px 20px;
  padding: 8px 20px;
  line-height: 1;
  cursor: pointer;
}

.car-switch>div:hover,
.car-switch>div.active {
  background-color: var(--color-orange);
  color: #fff;
}

#carSwitchBox>div {
  display: none;
}

#carSwitchBox>div.active {
  display: block;
}

#carSwitchBox .swiper-button-next {
  width: 44px;
  background-image: url("../img/index/next.png");
  background-size: 44px;
}

#carSwitchBox .swiper-button-prev {
  width: 44px;
  background-image: url("../img/index/prev.png");
  background-size: 44px;
}

/* 购车支持 */
.buy-car {
  position: relative;
  margin-bottom: 120px;
  padding-top: 128px;
}

.buy-car-title {
  position: absolute;
  top: 0;
  left: 7vw;
}

.buy-car .title-wide::before {
  left: 64px;
}

.buy-car .title-wide>a {
  right: -40px;
  color: #fff;
}

.buy-car-content {
  display: flex;
  align-items: center;
  text-align: right;
}

.buy-car-content>nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 180px);
  grid-template-rows: repeat(3, 70px);
  justify-content: end;
}

.buy-car-content>nav a {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  padding-right: 50px;
  font-weight: bold;
}

.buy-car-content>nav a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 30px;
  height: 5px;
  background-color: #f1f1f1;

}

.buy-car-content>img {
  width: 70vw;
}

/* 标题-宽版 */
.title-wide {
  position: relative;
  width: 25.26vw;
  height: 188px;
  padding-top: 40px;
}

.title-wide::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border: 8px solid #f1f1f1;
}

.title-wide>div {
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: var(--font-size-title);
  font-weight: bold;
  color: var(--color-blue);
}

.title-wide>span {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 6px;
  font-size: var(--font-size-enTitle);
  color: #c0c0c0;
}

.title-wide>a {
  position: absolute;
  z-index: 1;
  bottom: 20px;
}

/* 标题样式 */
.title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 164px;
  height: 214px;
  margin: 0 auto;
  padding: 18px;
  border: 8px solid #f1f1f1;
  font-size: var(--font-size-title);
  color: var(--color-blue);
}

.white.title {
  color: #fff;
  border-color: #4589c4;
}

.title::after {
  content: "";
  position: absolute;
  z-index: 5;
  bottom: -8px;
  width: 70px;
  height: 8px;
  background-color: var(--color-blue);
}

.white.title::after {
  background-color: var(--color-orange);
}

.white.title>a {
  background-color: var(--color-orange);
}

.title>div {
  line-height: 1.2;
  font-weight: bold;
}

.title>span {
  margin-top: 8px;
  white-space: nowrap;
  letter-spacing: 10px;
  font-size: var(--font-size-enTitle);
  color: #c0c0c0;
}

.title>a {
  position: absolute;
  z-index: 10;
  bottom: -16px;
  display: block;
  padding: 2px 8px;
  background-color: var(--color-blue);
  font-size: 14px;
  color: #fff;
}

/* 企业概况 */
.company {
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 140px;
}

.company img {
  width: 54vw;
}

.company-text {
  position: absolute;
  z-index: 5;
  right: 140px;
  width: 44vw;
  padding: 50px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.company-text p {
  text-align: justify;
  /* text-indent: 2em; */
  line-height: 2;
}

/* 企业愿景&企业使命 */
.vision {
  display: flex;
  color: #fff;
}

.vision>div {
  padding: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.vision-left {
  flex-shrink: 0;
  width: 386px;
  background-image: url(../img/other/bg_company_1.png);
}

.vision p {
  line-height: 2;
}

.vision-left p {
  font-size: 24px;
}

.vision-right p {
  /* text-indent: 2em; */
}

.vision-right {
  flex: 1;
  background-image: url(../img/other/bg_company_2.png);
}

.vision-title {
  position: relative;
  margin-bottom: 20px;
  font-size: 30px;
}

.vision-title::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 4px;
  width: 20px;
  height: 4px;
  background-color: var(--color-blue);
}

.vision-img {
  padding: 100px 30px;
}

.vision-img img {
  width: 100%;
}

/* 外观内饰 */
.exterior {
  padding: 100px 0 60px;
  background-image: url(../img/carShow/bg_detail.png);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

.exterior #swiper1 {
  margin: 0 -48px;
  padding: 0 48px;
}

.exterior-content {
  padding: 60px 15vw;
}

/* 车型亮点 */
.car-model {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
}

.car-model-item {
  position: relative;
  width: 41vw;
  margin-bottom: 50px;
}

.car-model-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 3vw;
  left: 3vw;
  right: 0;
  height: 21.5vw;
  border: 5px solid rgba(182, 182, 182, 0.3);
}

.car-model-item img {
  width: 38vw;
  height: 20vw;
}

.car-model-text {
  margin-left: 4vw;
}

.car-model-text>div {
  margin-top: 1vw;
  font-size: 30px;
}

.car-model-text p {
  margin-top: 2vw;
  color: var(--color-gray);
}

/* 参数配置 */
.parameter {
  padding: 100px 320px;
  background-image: url(../img/carShow/bg_detail_table.png);
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

.parameter-table {
  margin-top: 20px;
}

/* 标题栏 */
.title-bar {
  padding: 30px 10vw;
  border-bottom: 5px solid #ededee;
}

.title-bar>div {
  font-size: 32px;
  font-weight: bold;
}

.title-bar>span {
  color: var(--color-gray);
}

/* 提交按钮 */
.submit-btn {
  display: block;
  width: 370px;
  height: 60px;
  margin: 55px auto;
  border: none;
  background-image: url(../img/other/right.png);
  background-position: 328px center;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-color: var(--color-blue);
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* 表单样式 */
.form-item {
  display: grid;
  grid-template-columns: repeat(2, 480px);
  grid-gap: 20px 40px;
  justify-content: center;
  padding: 50px;
}

.form-item.dark {
  border-top: 2px solid #dcdddd;
  border-bottom: 2px solid #dcdddd;
  background-color: #f3f4f4;
}

.form-item-title {
  grid-column: 1/-1;
  justify-self: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.form-item label {
  font-size: 20px;
  text-align: right;
}

.form-item .form-radio {
  display: flex;
  align-items: center;
  text-align: left;
}

.form-radio>div {
  text-align: right;
  width: 90px;
}

.form-item .form-radio input {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  margin-right: 5px;
  cursor: pointer;
}

.label-text {
  position: relative;
}

.label-text::after {
  content: "公里";
  position: absolute;
  top: 50%;
  right: -44px;
  transform: translate(0, -50%);
}

.form-item select,
.form-item input[type="datetime-local"],
.form-item input[type="text"] {
  width: 370px;
  height: 56px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 4px;
  border: 2px solid #ccc;
}

/* 联系我们 */
.contact-main {
  display: flex;
  justify-content: space-around;
  padding: 50px 120px 20px;
}

.contact-main>* {
  display: block;
  width: 48%;
  cursor: pointer;
}

.contact-info {
  padding-bottom: 30px;
  background-color: #f8fafe;
}

.contact-info img:first-child {
  width: 100%;
}

.contact-info>p {
  margin-top: 24px;
  padding: 0 40px;
  text-align: justify;
  color: var(--color-gray);
  /* text-indent: 2em; */
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.media-list-item a,
.news-item>a,
.contact-info>a {
  display: block;
  margin-top: 15px;
  padding-left: 50px;
  position: relative;
  color: var(--color-orange);
}

.media-list-item a::after,
.news-item>a::after,
.contact-info>a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  margin-left: 6px;
  background-image: url(../img/other/right_info.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.contact-map {
  height: 560px;
  padding: 50px 10vw 80px;
}

/* 新闻动态 */
.news {
  display: grid;
  grid-template-columns: 585px repeat(auto-fill, 280px);
  grid-gap: 60px;
  justify-content: center;
  margin-top: 70px;
}

.news-img {
  position: relative;
  min-width: 0;
  height: 405px;
  padding: 15px;
  background-repeat: no-repeat;
  background-position: 15px 15px;
  background-size: 555px 375px;
  background-color: #f8fafe;
  color: #fff;
}

.news-img-text {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.news-img-text,
.news-item-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-item {
  display: flex;
  flex-direction: column;
  min-height: 385px;
  min-width: 100px;
}

.news-item-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 112px;
  height: 116px;
  margin-top: 5px;
  padding-left: 15px;
  border: 2px solid #333;
}


.news-item-date>div:first-child {
  font-size: 20px;
}

.news-item-date>div:last-child {
  font-size: 28px;
}

.news-item-title {
  margin: 33px 0 22px;
  font-size: 20px;
}

.news-item>p {
  margin-bottom: 42px;
  text-align: justify;
  color: var(--color-gray);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.news-item>a {
  margin-top: auto;
  padding-left: 0;
}

/* 媒体测评 */
.media {
  padding: 100px 130px 120px;
  background-image: url(../img/other/bg_media.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.media-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
}

.media-img {
  flex-shrink: 0;
  width: 585px;
  padding: 15px;
  margin-right: 40px;
  background-color: #fff;
}

.media-img img {
  width: 100%;
}

.media-list {
  flex: 1;
  min-width: 0;
  color: #fff;
}

.media-list-item {
  display: flex;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.media-list-data {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 112px;
  height: 84px;
  margin-right: 40px;
  padding-left: 18px;
  border: 1px solid #fff;
}

.media-list-data>div:first-child {
  font-size: 20px;
}

.media-list-data>div:last-child {
  font-size: 28px;
}

.media-list-title {
  margin-bottom: 18px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-list-item p {
  margin-bottom: 24px;
  text-align: justify;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.media-list-item a {
  padding-left: 0;
  color: #fff;
}

.media-list-item a::after {
  margin-top: -6px;
  filter: brightness(100);
}

/* 活动促销 */
.activity {
  display: grid;
  grid-template-columns: repeat(auto-fill, 520px);
  justify-content: center;
  grid-gap: 40px;
  margin-top: 70px;
}

.activity-item {
  min-width: 0;
  background-color: #f8fafe;
}

.activity-item img {
  width: 100%;
  max-height: 312px;
}

.activity-text {
  padding: 30px;
}

.activity-text>div {
  margin-bottom: 18px;
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-text>span {
  color: var(--color-gray);
}

/* 人才招聘 */
.job {
  display: flex;
  padding: 0 15vw;
}

.job-avatar {
  position: relative;
  z-index: 1;
  width: 400px;
  border-radius: 0 0 200px 200px;
  cursor: pointer;
}

.job-form {
  flex-shrink: 0;
  width: 400px;
  padding: 150px 30px;
  border-radius: 200px;
  background-color: #f8fafe;
  transform: translate(0, -150px);
}

.job-form label {
  display: block;
  margin-top: 30px;
  text-align: right;
}

.required::before {
  content: "*";
  color: red;
}

.job-form .form-radio {
  display: flex;
  align-items: center;
  text-align: left;
}

.job-form .form-radio>div {
  width: 84px;
}

.job-form .form-radio input {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  margin-right: 5px;
  cursor: pointer;
}

.form-row select,
.job-form select,
.job input[type="text"] {
  height: 44px;
  margin-left: 15px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.job-form select,
.job-form input[type="text"] {
  width: 222px;
}

.job-right {
  position: relative;
  flex: 1;
  min-height: 800px;
  padding: 50px;
}

.job-right form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.job-btn.pos-btn {
  /* position: absolute; */
  /* right: 0; */
  /* bottom: 0; */
  margin-bottom: 60px;
}

.form-row {
  position: relative;
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}

.form-row.row-50 {
  width: 49%;
}

.form-row.update button,
.job-btn {
  border: none;
  border-radius: 4px;
  background-color: var(--color-blue);
  color: #fff;
  cursor: pointer;
}

.form-row.update button {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 44px;
}

.job-btn {
  display: block;
  width: 215px;
  height: 60px;
  margin: 60px 0 100px auto;
  font-size: 25px;
}

.form-row>div {
  flex-shrink: 0;
  width: 105px;
  padding-top: 8px;
  text-align: right;
}

.form-row>select,
.form-row>input {
  flex: 1;
}

.form-row>textarea {
  flex: 1;
  height: 270px;
  margin-left: 15px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* hr信息 */
.hr-info {
  position: relative;
  margin-bottom: 40px;
  padding: 10px 20px 10px 30px;
  border-radius: 6px;
  background-color: #ecf5ff;
  overflow: hidden;
}

.hr-info::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background-color: var(--color-blue);
}

.hr-info li {
  margin: 10px 0;
}

/* 职位发布 */
.job-list {
  width: 26vw;
  max-width: 500px;
  min-height: 800px;
  padding: 20px 0;
  background-color: #f8fafe;
}

.job-list-item {
  position: relative;
  padding: 20px;
  color: var(--color-gray);
}

.job-list-item.active {
  background-color: #e0e9f9;
}

.job-list-item.active::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 20px;
  margin-top: -10px;
  background-color: #e0e9f9;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.job-title {
  font-size: 20px;
  color: var(--color-black);
}

.job-info,
.job-tag {
  display: flex;
  align-items: center;
}

.job-info>li {
  position: relative;
  padding: 5px 10px 10px;
  flex: 1;
}

.job-info>li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 14px;
  border-right: 1px solid #ccc;
}

.job-info>li:last-child::before {
  display: none;
}

.job-info>li:first-child {
  padding-left: 0;
  color: #d80000;
  flex: none;
}

.job-tag>li {
  margin-right: 5px;
  padding: 2px 6px;
  border: 1px solid #ccc;
  font-size: 12px;
}

/* 底部内容 */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 7vw;
  border-bottom: 1px solid #4d4d4d;
  background-color: var(--color-black);
}

.footer .contact {
  color: #fff;
}

.footer-map {
  width: 50vw;
  height: 280px;
}

/* 备案信息 */
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
  background-color: var(--color-black);
  font-size: var(--font-size-body);
  color: #fff;
}

.copyright>li {
  margin: 2px 10px;
}

/* 分页器样式 */
.swiper-pagination-bullet {
  width: 60px;
  border-radius: 10px;
  background-color: #fff;
  opacity: .8;
}

.swiper-pagination-bullet-active {
  background-color: #00aeff;
  opacity: 1;
}

/* 预约试驾-表单 */
.test-drive {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
  background-color: #6c6c6c;
}

.test-drive img {
  margin-right: 40px;
}

.test-drive form select,
.test-drive form input {
  width: 114px;
  height: 30px;
  padding: 0 4px;
  border-radius: 3px;
  border: 1px solid #a6a6a6;
  background-color: #898989;
  font-size: 12px;
  color: #cacaca;
}

.test-drive button {
  flex-shrink: 0;
  width: 130px;
  height: 40px;
  margin-left: 30px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(#b3b3b3, #8a8989);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  appearance: none !important;
  margin: 0;
}

.test-drive form input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  -o-appearance: textfield;
  -ms-appearance: textfield;
  appearance: textfield;
}

.test-drive form input::-webkit-input-placeholder {
  color: #cacaca;
}

/* 文章分页 */
.listText {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.listText .media-list-item img {
  flex-shrink: 0;
  width: 260px;
  margin-right: 20px;
}

.listText .media-list-item a {
  color: #333;
}

.listText .media-list-item a::after {
  filter: brightness(0);
}

.listText .media-list-item,
.listText .media-list-data {
  border-color: #333;
}

/* 详情页 */
.detail {
  max-width: 1000px;
  min-height: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.detail img {
  max-width: 100%;
}

.detail-back {
  display: block;
  margin-top: 15px;
  margin-left: auto;
  padding: 6px 12px 6px 22px;
  border: none;
  border-radius: 2px;
  background-image: url(../img/carShow/prev.png);
  background-repeat: no-repeat;
  background-size: auto 44%;
  background-position: 10px center;
  background-color: var(--color-blue);
  color: #fff;
  cursor: pointer;
}

@media(max-width:1024px) {
  .fenyeBanner {
    margin-top: 100px;
  }

  .gdtb {
    padding-top: 100px;
  }
}