@import url('./reset.css');
@import url('../../swiper/swiper-bundle.min.css');
@import url('./animation.css');
@import url('./pop-up.css');

.ellipsis_2{    
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  line-clamp: 2;
}

.ellipsis_3{    
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  line-clamp: 3;
}

.ellipsis_4{    
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  line-clamp: 4;
}

.ellipsis {
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}


@media screen and (max-width: 1380px) {
  .responsive-container {
    padding: 0 3%!important;
  }
}

@media screen and (max-width: 1893px) {
  .responsive-container {
    padding: 0 10%;
  }
}
@media screen and (min-width: 1893px) {
  .responsive-container {
    width: 1200px;
    margin: 0 auto;
  }
}


.swiper-swiper-button-container {
  padding-top: 60px;
  height: 690px!important;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-title {
  margin-top: 80px;
}
.module-title .title {
  text-align: center;
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #333333;
  margin-bottom: 5px;
}
.module-title .sub-title {
  text-align: center;
  font-size: 20px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}
.sub-title {
  padding-bottom: 50px;
}

.tab {
  height: 60px;
  position: relative;
  background-color: #EBEBEB;
}
.tab .responsive-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.tab .active, .tab .active p {
  background-color: var(--primary-color)!important;
  color: #333333!important;
}

.tab .tab-item {
  height: 100%;
  width: calc(100%/3);
  line-height: 58px;
  font-size: 22px;
  font-weight: 500;
  color: #999999;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background-color: #EBEBEB;
  height: 100%;
}

.tab .tab-item p {
  position: relative;
  z-index: 1;
  background-color: #EBEBEB;
  height: 100%;
}

.tab .tab-item .bg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.tab .tab-item.active:first-child .bg {
  background-color: var(--primary-color)!important;
  right: 50%;
}

.tab .tab-item.active:last-child .bg {
  background-color: var(--primary-color)!important;
  left: 50%;
}


.form-area {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 20px * 2)/3));
  grid-template-rows: repeat(2, 70px);
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  width: 922px;
  margin: 0 auto;
}

.form-area .card {
  width: 100%;
}

.form-area .card .content {
  display: flex;
  align-items: center;
  margin-top: 6px;
  position: relative;
  border-radius: 4px;
}
.form-area .card .content img {
  position: absolute;
  right: 15px;
}

.form-area .card .content button {
  width: 100px;
  border: 0;
  outline: 0;
  cursor: pointer;
  position: absolute;
  right: 0;
  background-color: transparent;
  line-height: 17px;
}

.form-area .card .content button::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 11px;
  position: absolute;
  top: 3px;
  left: 0;
  background-color: #c7c6c6;
}

.form-area .card label {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #333333;
}

.form-area .card .content input,
.form-area .card .content .select-text
{
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #F4F4F4;
  border: 0;
  padding: 0 15px;
  outline: 0;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  opacity: 1;
}

.form-area .card .content .select-text {
  cursor: pointer;
  color: #999999;
}

.form-area .card .content input::placeholder {
  color: #999999;
}

.form-area .card .content .select {
  position: absolute;
  top: 40px;
  background-color: #ccc;
  list-style: none;
  width: 100%;
  opacity: 0;
  transition: all .3s;
  z-index: -1;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden;
}

.form-area .card .content .select li {
  height: 40px;
  background-color: white;
  padding: 0 15px;
  line-height: 40px;
  font-size: 14px;
  cursor: pointer;
}

.form-area .card .content .select li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.form-area .card .content .select li:hover {
  background-color: rgba(231, 231, 231, 0.726);
}

.form-area .onselect {
  opacity: 1!important;
  z-index: 90!important;
}

.form-submit {
  width: 450px;
  opacity: 1;
  border-radius: 4px;
  margin: 0 auto;
}

.form-submit button {
  border-radius: 4px;
  width: 100%;
  height: 50px;
  outline: 0;
  border: 0;
  background: #D00000;
  margin-top: 50px;
  font-size: 20px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  opacity: 1;
  cursor: pointer;
}

/* 自定义轮播切换按钮 start */
.swiper-button-container {
  display: none !important;
  position: relative;
}

.swiper-button-container .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-container .swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size:var(--swiper-navigation-size);
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  font-weight: bold;
  font-size: 80px;
}

.swiper-button-container .swiper-button-next:after, .swiper-button-container .swiper-button-prev:after {
  position: absolute;
}

.swiper-button-container .swiper-button-prev:after {
  left: -20px!important;
}

.swiper-button-container .swiper-button-next:after {
  right: -20px!important;
}
/* 自定义轮播切换按钮 end */