:root {
  --primary-color: #2D3C65;
  --hover-color: #CAAD81;
  --text-color: #0F0F0F;
  --background-color: rgba(45, 60, 101, 0.05);
}
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: "SourceHanSansCN-Regular", "Microsoft YaHei", Arial;
  /* background-color: #F3F3F3; */
}

div, p, span, h1, h2, h3, h4, h5, h6, ul, ul li, dl, dl dd,
button, input, select, textarea {
  box-sizing: border-box;
}
.container {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
a { text-decoration: none; }
img { vertical-align: middle; }
div,
.h1, .h2, .h3, .h3, .h4, .h5, .h6,
.ul, .ul li, .p, .dl, .dl dd {
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.f { display: flex; }
.fv { align-items: center; }
.fc { justify-content: center; }
.fj { justify-content: space-between; }
.flex1 { flex: 1; }
.pc { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.pv { position: absolute; top: 50%; transform: translateY(-50%); }
.ph { position: absolute; left: 50%; transform: translateX(-50%); }
.ellipsis {
  overflow: hidden; text-overflow:ellipsis; white-space: nowrap;
}
.row-ellipsis {
  display: -webkit-box !important;    
  -webkit-box-orient: vertical;    
  -webkit-line-clamp: 3;    
  overflow: hidden;
}


.container {
  width: 1400px;
  position: relative;
  margin: 0 auto;
  z-index: 0;
}

@media screen and (max-width: 1480px) {
  .container {
    max-width: 100%;
    padding-left: 10px; padding-right: 10px;
  }
}


.web-header{
  position: relative;
  padding: 15px 0;
  z-index: 20;
}
.web-header .container {
  width: 1480px;
}
.web-header .phone-menu,
.web-header .phone-search,
.web-header .phone-logo-box {
  display: none;
}
.web-header .phone-menu {
  margin-right: 34px;
}
.web-header .phone-menu:before,
.web-header .phone-menu:after {
  content: "";
}
.web-header .phone-menu:before,
.web-header .phone-menu:after,
.web-header .phone-menu span {
  width: 38px; height: 8px;
  display: block;
  background-color: var(--primary-color);
}
.web-header .phone-menu span {
  margin: 7px 0;
}
.web-header .navs {
  flex: 1;
}
.web-header .navs a.close {
  display: none;
}
.web-header .navs ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.web-header .navs li {
  position: relative;
  height: 20px;
}
.web-header .navs li a.primary,
.web-header .navs li .fa{
  font-size: 14px;
  color: #0F0F0F;
  font-weight: 600;
  line-height: 20px;
}
.web-header .navs li .fa {
  margin-left: 4px;
}
.web-header .navs li dl {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  padding: 46px 0 6px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #fff;
}
.web-header .navs li dl dd a {
  display: block;
  padding: 12px 26px;
  white-space: nowrap;
  font-size: 14px;
  color: #0F0F0F;
  line-height: 20px;
}
.web-header .navs li dl dd a:hover {
  color: var(--hover-color);
}
.web-header .navs li:hover a.primary,
.web-header .navs li:hover .fa{
  color: var(--hover-color);
}
.web-header .navs li:hover dl {
  display: block;
}
.web-header .search-form .form-input {
  width: 182px;
  height: 30px;
  border: 1px solid #707070;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 0 10px;
  outline: none;
}
.web-header .search-form .submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  border-radius: 4px;
  width: 34px;
  height: 30px;
  border: none;
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #2D3C65;
}
.web-header .search-form .submit:hover {
  background-color: var(--hover-color);
}
.web-header .shares {
  margin-left: 30px;
}
.web-header .shares a {
  margin-left: 12px;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  line-height: 20px;
}
.web-header .shares a:first-child {
  margin-left: 0;
}
.web-header .shares a:hover {
  color: var(--hover-color);
}
.web-header .navs a.close {
  position: absolute;
  top: 12px; right: 20px;
  font-size: 22px; color: #fff; line-height: 22px;
  font-weight: 600;
}
@media screen and (max-width: 1120px) {
  .web-header .container {
    padding-left: 38px;
    padding-right: 32px;
  }
  .web-header .navs {
    position: fixed;
    top: 0; bottom: 0; left: 0;
    transform: translateX(-100%);
    width: 528px;
    padding: 56px 0 0;
    background-color: var(--primary-color);
    overflow-y: auto;
    transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .web-header .navs.open {
    transform: translateX(0);
  }
  .web-header .navs ul li {
    margin-bottom: 36px;
    height: auto;
  }
  .web-header .navs ul li dl {
    position: relative; top: initial; left: inherit;
    display: block;
    background-color: transparent;
    padding: 0 50px;
  }
  .web-header .navs ul li dl dd {
    margin-top: 34px;
  }
  .web-header .navs ul li dl dd a {
    display: flex; align-items: center;
    padding: 0 0;
    font-size: 24px; color: #fff; line-height: 32px;
  }
  .web-header .navs ul li dl dd a:before {
    margin-right: 8px;
    display: block; content: "";
    box-sizing: border-box;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
  }
  .web-header .navs ul li dl dd.on a {
    color: var(--hover-color);
  }
  .web-header .navs ul li dl dd:hover a:before,
  .web-header .navs ul li dl dd.on a:before {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
  }
  .web-header .navs ul li a.primary {
    padding-left: 50px;
    font-size: 30px; color: #fff; line-height: 40px;
  }
  .web-header .navs ul li a.primary .fa { display: none; }
  .web-header .flex1, 
  .web-header .phone-menu,
  .web-header .navs ul,
  .web-header .navs a.close { 
    display: block; 
  }
}
@media screen and (max-width: 768px) {
  .web-header .container {
    padding-left: 10px; padding-right: 10px;
  }
  .web-header a.logo img { height: 70px; }
  .web-header .shares { display: none; }
  .web-header .search-form {
    margin-left: 22px;
    width: 0; overflow: hidden;
  }
  .web-header .search-form .form-input {
    width: 100%;
  }
  .web-header .phone-search {
    display: flex; align-items: center; justify-content: center;
    margin-left: 22px;
    flex-shrink: 0;
    font-size: 40px; font-weight: 600;
    line-height: 40px; color: var(--primary-color);
  }
  .web-header .phone-search.open .fa-search,
  .web-header .phone-search .fa-close { display: none; }
  .web-header .phone-search.open .fa-close { display: block; }
  .web-header .search-form.open {
    width: 342px;
  }
  .web-header .phone-search.open,
  .web-header .search-form .submit{
    margin-left: 22px;
    width: 76px; height: 76px;
    border-radius: 8px;
    font-size: 40px;
    color: #fff;
    background-color: var(--hover-color);
  }
  .web-header .search-form .form-input {
    height: 76px;
    font-size: 20px;
  }
}
@media screen and (max-width: 605px) {
  .web-header .phone-menu {
    margin-right: 10px;
  }
  .web-header .phone-menu:before, 
  .web-header .phone-menu:after, 
  .web-header .phone-menu span {
    width: 20px;
    height: 4px;
  }
  .web-header .phone-menu span {
    margin: 3px 0;
  }
  .web-header a.logo img { height: 35px; }
  .web-header .search-form {
    margin-left: 11px;
    width: 0; overflow: hidden;
  }
  .web-header .phone-search {
    margin-left: 11px;
    font-size: 20px;
    line-height: 20px;
  }
  .web-header .search-form.open {
    width: 170px;
  }
  .web-header .phone-search.open,
  .web-header .search-form .submit{
    margin-left: 11px;
    width: 38px; height: 38px;
    border-radius: 4px;
    font-size: 20px;
  }
  .web-header .search-form .form-input {
    height: 38px;
    font-size: 12px;
  }
  
  .web-header .navs {
    width: 270px;
    padding: 28px 0 0;
  }
  .web-header .navs ul li {
    margin-bottom: 18px;
  }
  .web-header .navs ul li dl {
    padding: 0 24px;
  }
  .web-header .navs ul li dl dd {
    margin-top: 17px;
  }
  .web-header .navs ul li dl dd a {
    font-size: 12px; line-height: 16px;
  }
  .web-header .navs ul li dl dd a:before {
    margin-right: 4px;
    width: 5px; height: 5px;
    border: 1px solid #fff;
  }
  .web-header .navs ul li a.primary {
    padding-left: 24px;
    font-size: 15px; line-height: 20px;
  }
}


.swiper-index {
  position: relative;
  z-index: 0;
}
.swiper-index .swiper-slide {
  position: relative;
}
.swiper-index .swiper-slide .banner-pc,
.swiper-index .swiper-slide .banner-phone {
  position: relative;
  z-index: 0;
  width: 100%;
}
.swiper-index .swiper-slide {
  background-color: #000;
}
.swiper-index .swiper-slide video {
  position: absolute;
  z-index: -1;
  top: 0; left: 0; right: 0; bottom: 0;
  
}
.swiper-index .swiper-slide.play video {
  z-index: 10;
}
.swiper-index .swiper-slide.play .banner-pc,
.swiper-index .swiper-slide.play .banner-phone,
.swiper-index .swiper-slide.play .words {
  opacity: 0;
}
.swiper-index .swiper-slide .banner-phone {
  display: none;
}
.swiper-index .swiper-slide .words {
  z-index: 1;
  color: #fff;
  text-align: center;
}
.swiper-index .swiper-slide .words .h1 {
  margin-bottom: 30px;
  font-size: 54px;
  line-height: 72px;
  white-space: nowrap;
}
.swiper-index .swiper-slide .words .h2 {
  margin: 0 auto 38px;
  max-width: 678px;
  font-size: 30px;
  font-weight: 100;
}
.swiper-index .swiper-slide .words .play {
  margin: 0 auto;
  width: 160px;
  height: 60px;
  border-radius: 8px;
  border: 3px solid var(--hover-color);
  font-size: 40px;
  color: var(--hover-color);
}
@media screen and (max-width: 1120px) {
  .swiper-index .swiper-slide .words {
    zoom: 0.6;
  }
}
@media screen and (max-width: 768px) {
  .web-header.index {
    position: absolute;
    top: 0; left: 0; right: 0;
  }
  .web-header.index .container {
    padding-left: 50px; padding-right: 50px;
  }
  .web-header.index .phone-logo-box { 
    display: block;
    padding: 92px 0 100px;
    text-align: center;
  }
  .web-header.index .phone-menu span,
  .web-header.index .phone-menu:after,
  .web-header.index .phone-menu:before {
    background-color: #fff;
  }
  .web-header.index .phone-search {
    color: #fff;
  }
  .web-header.index .logo { display: none; }
  .swiper-index .swiper-slide .banner-pc { display: none; }
  .swiper-index .swiper-slide .banner-phone { display: inline; }
  .swiper-index .swiper-slide .words {
    transform: translate(-50%, 0);
    zoom: 1;
    width: 100%;
  }
  .swiper-index .swiper-slide .words .h1 {
    margin: 0 auto 38px;
    width: 90%;
    white-space: pre-wrap;
  }
  .swiper-index .swiper-slide .words .h2 {
    max-width: 70%;
  }
  .swiper-index .swiper-slide video{
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 605px) {
  .web-header.index .container {
    padding-left: 25px; padding-right: 25px;
  }
  .web-header.index .phone-logo-box { 
    display: block;
    padding: 45px 0 50px;
    text-align: center;
  }
  .web-header.index .phone-logo-box img {
    width: 210px;
  }
  .swiper-index .swiper-slide .words .h1 {
    margin: 0 auto 38px;
  }
  .swiper-index .swiper-slide .words {
    transform: translate(-50%, -25%);
  }
  .swiper-index .swiper-slide .words .h1 {
    margin-bottom: 15px;
    font-size: 27px;
    line-height: 36px;
  }
  .swiper-index .swiper-slide .words .h2 {
    margin: 0 auto 19px;
    font-size: 15px;
  }
  .swiper-index .swiper-slide .words .play {
    width: 80px;
    height: 30px;
    border-radius: 4px;
    border: 2px solid var(--hover-color);
    font-size: 20px;
  }
}

.index-counts-search {
  padding: 52px 0 44px;
  background-color: var(--primary-color);
}
.search-form {
  overflow: hidden;
}
.search-form .form-input {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  border: 1px solid #97979B;
  width: 100%;
  padding: 0 25px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  outline: none;
}
.search-form .submit {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 96px;
  height: 50px;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  background-color: var(--primary-color);
}
.index-counts-search .search-form .submit {
  background-color: var(--hover-color);
}
.index-counts-search .counts {
  margin-top: 28px;
}
.index-counts-search .counts ul {
  padding: 0 22px;
}
.index-counts-search .counts ul li {
  text-align: center;
  color: #fff;
}
.index-counts-search .counts ul li .value {
  font-size: 46px;
  font-weight: 600;
  line-height: 62px;
}
.index-counts-search .counts ul li .slit {
  margin: 6px auto 16px;
  width: 55px;
  height: 1px;
  
  background-color: var(--hover-color);
}
.index-counts-search .counts ul li .label {
  font-size: 15px;
  line-height: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1168px) {
  .index-counts-search .counts ul li {
    zoom: 0.7;
  }
}
@media screen and (min-width: 540px) and (max-width: 768px) {
  .index-counts-search .counts ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .index-counts-search .counts ul li {
    width: 33.333333%;
    zoom: 0.7;
  }
}
@media screen and (max-width: 540px) {
  .index-counts-search .counts ul {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .index-counts-search .counts ul li {
    margin-top: 75px;
    width: 50%;
    zoom: 0.7;
  }
  .index-counts-search .counts ul li:nth-child(1),
  .index-counts-search .counts ul li:nth-child(2) {
    margin-top: 20px;
  }
}

.web-footer {
  padding: 66px 0 96px;
}
.web-footer .container {
  display: flex;
}
.web-footer .navs {
  margin-bottom: 40px;
}
.web-footer .navs li {
  margin-left: 48px;
}
.web-footer .contacts li:nth-child(2) {
  margin-left: 80px;
}
.web-footer .navs li:first-child {
  margin-left: 0;
}
.web-footer .navs li a {
  font-size: 18px;
  line-height: 24px;
  color: #C2BBB5;
}
.web-footer .navs li a:hover {
  color: var(--primary-color);
}
.web-footer .contacts li img {
  margin-right: 8px;
}
.web-footer .contacts li p {
  font-size: 14px;
  line-height: 20px;
  color: #7B7B7B;
}
.web-footer .shares-logo .shares a {
  margin-right: 26px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}
.web-footer .shares-logo .shares a:hover {
  color: var(--hover-color);
}
.web-footer .shares-logo .split {
  margin-right: 26px;
  width: 1px;
  height: 34px;
  background-color: #C2BBB5;
}
.web-footer .copyright {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #C2BBB5;
}
.web-footer .copyright p {
  font-size: 18px;
  color: #C2BBB5;
  line-height: 24px;
}
@media screen and (max-width: 920px) {
  .web-footer {
    padding: 46px 0;
  }
  .web-footer .navs,
  .web-footer .shares-logo .split, 
  .web-footer .shares-logo a.logo,
  .web-footer .copyright {
    display: none;
  }
  .web-footer .container {
    display: block;
  }
  .web-footer .left {
    display: flex; justify-content: center;
  }
  .web-footer .contacts {
    display: block;
  }
  .web-footer .contacts li {
    width: 490px;
    margin-left: auto; margin-right: auto;
    margin-bottom: 42px;
  }
  .web-footer .contacts li p {
    font-size: 22px;
    line-height: 28px;
  }
  .web-footer .contacts li:nth-child(2) {
    margin-left: 0;
  }
  .web-footer .shares {
    width: 100%;
    justify-content: center;
  }
  .web-footer .shares-logo .shares a {
    font-size: 32px;
  }
}
@media screen and (max-width: 520px) {
  .web-footer {
    padding: 22px 0;
  }
  .web-footer .contacts li {
    width: 245px;
    margin-bottom: 21px;
  }
  .web-footer .contacts li p {
    font-size: 12px;
    line-height: 20px;
  }
  .web-footer .shares-logo .shares a {
    font-size: 16px;
  }
}


.contact-information {
}
.contact-information .container {
  margin: 0 auto;
  max-width: 872px;
  padding-top: 150px;
}
.contact-information .ci-header {
  text-align: center;
}
.contact-information .ci-header .h2 {
  font-size: 30px;
  color: var(--primary-color);
  line-height: 44px;
}
.contact-information .ci-header .p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 20px;
}
.contact-information .ci-form {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-information .ci-form .form-group {
  width: calc(calc(100% - 28px) / 2);
  margin-bottom: 26px;
}
.contact-information .ci-form .form-group.full {
  width: 100%;
}
.contact-information .ci-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: var(--primary-color);
}
.contact-information .ci-form .form-group label strong {
  margin-left: 4px;
  color: #FF002B;
}
.contact-information .ci-form .form-group input.form-control,
.contact-information .ci-form .form-group select.form-control{
  width: 100%;
  box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.16);
  border-radius: 4px;
  padding: 0 16px;
  height: 50px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--primary-color);
}
.contact-information .ci-form .form-group textarea.form-control {
  width: 100%;
  box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.16);
  border-radius: 4px;
  padding: 8px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  min-height: 154px;
  resize: vertical;
}
.contact-information .ci-form .form-submit .submit {
  border: none;
  width: 188px; height: 45px;
  font-size: 14px; color: #fff;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--primary-color);
}
.contact-information .ci-form .form-submit .submit:hover {
  background-color: var(--hover-color);
}
@media screen and (min-width: 540px) and (max-width: 872px) {
  .contact-information .container {
    padding-left: 10px; padding-right: 10px;
  }
}
@media screen and (max-width: 540px) {
  .contact-information .container {
    padding-left: 20px; padding-right: 20px;
  }
  .contact-information .ci-header .h2 {
    font-size: 20px;
    line-height: 32px;
  }
  .contact-information .ci-header .p {
    font-size: 12px;
    line-height: 20px;
  }
  .contact-information .ci-form {
    margin-top: 40px;
  }
  .contact-information .ci-form .form-group {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-information .ci-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: var(--primary-color);
  }
  .contact-information .ci-form .form-group label strong {
    margin-left: 4px;
    color: #FF002B;
  }
  .contact-information .ci-form .form-group input.form-control,
  .contact-information .ci-form .form-group select.form-control{
    height: 50px;
  }
  .contact-information .ci-form .form-group textarea.form-control {
    width: 100%;
    box-shadow: 0px 3px 10px 1px rgba(0,0,0,0.16);
    border-radius: 4px;
    padding: 8px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    min-height: 154px;
    resize: vertical;
  }
  .contact-information .ci-form .form-submit .submit {
    border: none;
    width: 188px; height: 45px;
    font-size: 14px; color: #fff;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--primary-color);
  }
  .contact-information .ci-form .form-submit .submit:hover {
    background-color: var(--hover-color);
  }
}


.web-footer2 {
  padding: 84px 0 116px;
  background-color: var(--primary-color);
}
.web-footer2 .container {
  justify-content: space-between;
}
.web-footer2 .logo-shares .logo img {
  height: 60px;
}
.web-footer2 .logo-shares .shares {
  margin-top: 24px;
}
.web-footer2 .logo-shares .shares a {
  margin-right: 12px;
  display: flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 7px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  background-color: #fff;
}
.web-footer2 .logo-shares .shares a:hover {
  background-color: var(--hover-color);
}
.web-footer2 .logo-shares .copyright {
  margin-top: 46px;
  font-size: 14px; line-height: 20px;
  color: #97979B;
}
.web-footer2 .contacts {
  max-width: 380px;
}
.web-footer2 .contacts .item {
  margin-bottom: 30px;
}
.web-footer2 .contacts .words {
  flex: 1;
  font-size: 14px;
  line-height: 20px;
  color: #97979B;
}
.web-footer2 .contacts .words .p:nth-child(2) {
  font-weight: 600;
  font-size: 24px; color: #fff; line-height: 32px;
}
.web-footer2 .contacts .icon {
  margin-right: 18px;
}
.web-footer2 .navs {
  width: 410px;
  flex-wrap: wrap;
}
.web-footer2 .navs .item {
  min-width: 130px;
}
.web-footer2 .navs .line {
  margin: 32px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(202, 173, 129, 0.54);
}
.web-footer2 .navs .i-header {
  margin-bottom: 12px;
  font-size: 18px; color: #fff; line-height: 24px;
  font-weight: 600;
}
.web-footer2 .navs li a {
  font-size: 14px; color: #97979B; line-height: 20px;
}
.web-footer2 .navs li a:hover {
  color: var(--hover-color);
}
.web-bottom {
  display: none;
  padding: 85px 0 70px;
}
.web-bottom .shares a {
  margin: 0 21px;
  font-size: 28px;
  color: #333;
  line-height: 28px;
}
.web-bottom .copyright {
  margin-top: 12px;
  font-size: 18px; 
  color: #97979B;
  line-height: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .web-bottom {
    display: block;
  }
  .web-footer2 {
    padding: 64px 0 86px;
  }
  .web-footer2 .container { 
    display: block; 
    padding: 0 70px;
  }
  .web-footer2 .logo-shares .copyright,
  .web-footer2 .navs .line,
  .web-footer2 .logo-shares .shares { display: none; }
  .web-footer2 .navs {
    margin-top: 52px;
    display: block;
    width: 100%;
  }
  .web-footer2 .navs .item {
    margin-bottom: 36px;
  }
  .web-footer2 .navs .i-header {
    margin-bottom: 0;
    font-size: 30px; line-height: 40px;
  }
  .web-footer2 .navs ul li {
    display: flex; align-items: center;
    margin-top: 32px;
  }
  .web-footer2 .navs ul li:before {
    margin-right: 8px;
    content: "";
    display: block;
    width: 10px; height: 10px;
    box-sizing: border-box;
    border: 2px solid #fff;
    border-radius: 50%;
  }
  .web-footer2 .navs ul li.on::before {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
  }
  .web-footer2 .navs li a {
    font-size: 24px; line-height: 32px;
    color: #fff;
  }
  .web-footer2 .navs ul li.on a {
    color: var(--hover-color);
  }
  .web-footer2 .contacts {
    margin-top: 82px;
  }
  .web-footer2 .contacts:before {
    content: "";
    display: block;
    width: 112px; height: 5px;
    background-color: #fff;
    margin-bottom: 46px;
  }
  .web-footer2 .contacts .words {
    color: #fff;
  }
  .web-footer2 .contacts .words .p:nth-child(2) {
    color: var(--hover-color);
  }
}
@media screen and (max-width: 480px) {
  .web-footer2 {
    padding: 32px 0 42px;
  }
  .web-footer2 .logo-shares .logo img {
    height: 30px;
  }
  .web-footer2 .container { 
    padding: 0 35px;
  }
  .web-footer2 .navs {
    margin-top: 26px;
  }
  .web-footer2 .navs .item {
    margin-bottom: 18px;
  }
  .web-footer2 .navs .i-header {
    font-size: 15px; line-height: 20px;
  }
  .web-footer2 .navs ul li {
    margin-top: 16px;
  }
  .web-footer2 .navs ul li:before {
    margin-right: 4px;
    width: 5px; height: 5px;
    border: 1px solid #fff;
  }
  .web-footer2 .navs li a {
    font-size: 12px; line-height: 16px;
  }
  .web-footer2 .contacts {
    margin-top: 40px;
  }
  .web-footer2 .contacts:before {
    width: 56px; height: 3px;
    margin-bottom: 23px;
  }
  .web-footer2 .contacts .icon {
    zoom: 0.6;
  }
  .web-footer2 .contacts .words {
    font-size: 12px;
  }
  .web-footer2 .contacts .item {
    margin-bottom: 16px;
  }
  .web-footer2 .contacts .words .p:nth-child(2) {
    font-size: 16px;
    line-height: 24px;
  }
  .web-bottom {
    padding: 42px 0 35px;
  }
  .web-bottom .shares a {
    margin: 0 10px;
    font-size: 14px;
    line-height: 14px;
  }
  .web-bottom .copyright {
    margin-top: 6px;
    font-size: 12px; 
    line-height: 20px;
  }
}


.sub-title {
  padding: 70px 0;
  text-align: center;
}
.sub-title.dark {
  background-color: var(--primary-color);
}
.sub-title .h1 {
  font-size: 60px; color: #595959;
  line-height: 82px; font-weight: 300;
}
.sub-title.dark .h1 {
  color: #fff;
  /* font-size: 30px; line-height: 42px; */
  font-weight: 500;
}
.sub-title .brumbs {
  margin-top: 6px;
}
.sub-title .brumbs li {
  font-size: 14px; line-height: 24px;
  color: var(--primary-color);
}
.sub-title.dark .brumbs li {
  color: #fff;
}
.sub-title .brumbs li:after {
  margin: 0 10px;
  content: "/";
}
.sub-title .brumbs li:last-child:after {
  display: none;
}
.sub-title .brumbs li a {
  color: var(--primary-color);
}
.sub-title.dark .brumbs li a {
  color: #fff;
}
.sub-title .brumbs li a:hover {
  color: var(--hover-color);
}
@media screen and (max-width: 540px) { 
  .sub-title {
    padding: 35px 0;
  }
  .sub-title .h1 {
    font-size: 30px; color: #595959;
    line-height: 41px; font-weight: 300;
  }
  .sub-title .brumbs {
    margin-top: 3px;
  }
  .sub-title .brumbs li {
    /* font-size: 12px; line-height: 20px; */
  }
  .sub-title .brumbs li:after {
    margin: 0 6px;
  }
}

.mt38 {
  margin-top: 38px;
}
.mt118 {
  margin-top: 118px;
}

.phone {
  display: none;
}
.phone-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .computer {
    display: none;
  }
  .phone {
    display: inline;
  }
  .phone-block {
    display: block;
  }
}