@charset "UTF-8";
.banner {
  margin-top: 80px;
  position: relative;
  color: #fff;
  text-align: center;
  height: calc(100vh - 80px);
}
.banner .banner_phone {
  display: none;
}
.banner > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .txt {
  position: absolute;
  left: 50%;
  top: 20%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.banner .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner .flx > div {
  margin: 0 53px;
}
.banner .ic {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner .ic img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.banner .ic:hover img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.banner .ic_tit {
  line-height: 1;
  text-align: center;
}

.store {
  height: 360px !important;
}
.store ul {
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}

.brand {
  position: relative;
  height: 100vh;
}
.brand .img {
  height: 100%;
  position: relative;
}
.brand .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.brand .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     position: absolute;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     margin: auto;
     opacity: 0;
    transition: all 0.5s;
}
.brand .img .img_act{
    opacity: 1;
}
.brand .brand_top {
  top: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #fff;
}
.brand .box {
  position: relative;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand .box::before {
  content: "";
  display: block;
  width: 96%;
  height: 96%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}
.brand .box::after {
  content: "";
  display: block;
  width: 92%;
  height: 92%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.brand .brand_center {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.brand .brand_center .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brand .brand_center .swiper-slide {
  cursor: pointer;
  margin: 0 60px;
  width: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.brand .brand_center span {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
  white-space: nowrap;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.brand .fnt_180 .box {
  width: 440px;
  height: 440px;
}
.brand .fnt_180 .box span {
  color: #fff;
}
.brand .fnt_180 .box::before {
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}
.brand .brand_btm {
  bottom: 0;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brand .brand_btm div {
  width: 340px;
  margin: 0 60px;
  color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.brand .brand_btm .fnt_30 {
  width: 440px;
  color: #fff;
}
.brand .point {
  display: none;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
.pleasant {
  height: 100vh;
  position: relative;
}
.pleasant .img {
  height: 100%;
  position: relative;
}
.pleasant .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.pleasant .img .act {
  opacity: 1;
}
.pleasant .img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
}
.pleasant .pleasant_top {
  color: #fff;
  z-index: 2;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pleasant .pleasant_btm {
  color: #fff;
  z-index: 2;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
.pleasant .tit {
  line-height: 1;
}
.pleasant .des {
  display: none;
  max-height: 0;
  overflow: hidden;
}
.pleasant .act .des {
  display: block;
  max-height: 100px;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  -webkit-animation: pleasant_ani 1.5s linear;
          animation: pleasant_ani 1.5s linear;
}
.pleasant .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.pleasant .swiper-slide {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.pleasant .point {
  display: none;
}

@-webkit-keyframes pleasant_ani {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 100px;
  }
}

@keyframes pleasant_ani {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 100px;
  }
}
.scale {
  background: #f5f5f5;
}
.scale .title {
  line-height: 1;
  text-align: center;
}
.scale .summary {
  text-align: center;
}
.scale .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.scale .l {
  width: 66.6%;
  position: relative;
}
.scale .txt {
  color: #fff;
  position: absolute;
  right: 75px;
  bottom: 50px;
}
.scale .img {
  position: relative;
  height: 0;
  padding-bottom: 68.75%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.scale .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.scale .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.scale .r {
  width: 33.4%;
  padding: 80px 80px 0;
  background: #fff;
  position: absolute;
  right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.scale .r img{
    width: fit-content;
}
.scale .tit {
  line-height: 1;
}
.scale .des {
  height: 26.25em;
  line-height: 1.875;
  overflow: auto;
  padding-right: 10px;
}
.scale .des::-webkit-scrollbar {
  width: 2px;
  border-radius: 4px;
}
.scale .des::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  /* 背景色 */
  border-radius: 4px;
}
.scale .des::-webkit-scrollbar-thumb {
  background: #0460A9;
  /* 滚动色 */
  border-radius: 6px;
}

.history .point {
  display: none;
}
.history .title {
  line-height: 1;
  text-align: center;
}
.history .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.history .l {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.history .l::after {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fff));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #fff);
}
.history .l .swiper {
  height: 90px;
  overflow: initial;
  line-height: 1;
}
.history .r {
  position: relative;
  width: 1000px;
  margin-left: 135px;
}
.history .r .swiper {
  height: 850px;
}
.history .r .swiper-slide {
  padding-bottom: 40px;
  padding-left: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
}
.history .r .swiper-slide::before {
  content: "";
  display: block;
  left: 4px;
  right: 0;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #dddddd;
}
.history .r .swiper-slide::after {
  z-index: 2;
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #0460A9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.history .r::after {
  content: "";
  display: block;
  width: 100%;
  height: 24%;
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#fff));
  background-image: linear-gradient(rgba(0, 0, 0, 0), #fff);
}
.history .slide_l {
  width: 320px;
  margin-right: 40px;
}
.history .slide_r {
  width: calc(100% - 360px);
}
.history .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.history .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.history .img:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.history .time {
  line-height: 1;
  color: #999999;
}
.history .tit {
  line-height: 1;
}

.culture .title {
  line-height: 1;
  text-align: center;
}
.culture .flx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.culture .flx > div {
  width: calc((100% - 40px) / 3);
  margin-right: 20px;
  background: #f5f5f5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 400px;
  text-align: center;
  position: relative;
  top: 0;
}
.culture .flx > div:hover {
  background: #fff;
  -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.1);
  top: -10px;
}
.culture .flx > div:nth-child(3n) {
  margin-right: 0;
}
.culture .flx > div:nth-child(n+4) {
  margin-top: 20px;
}
.culture .ic {
  height: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.culture .tit {
  line-height: 1;
}
.culture .des {
  line-height: 1.25;
  padding-left: 30px;
  padding-right: 30px;
}

.partner .title {
  line-height: 1;
  text-align: center;
}
.partner .summary {
  text-align: center;
}
.partner .c_list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.partner .c_list01 .sw1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partner .c_list01.active .sw1 {
  -webkit-animation: ticker2 linear 15s infinite;
          animation: ticker2 linear 15s infinite;
}
.partner .sw_s {
  margin-right: 100px;
}
.partner .c_list01:hover .sw1 {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes ticker2 {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@media screen and (max-width: 1700px) {
  .banner .txt > img {
    width: 200px;
  }
  .banner .ic {
    width: 70px;
    height: 70px;
  }
  .banner .ic img {
    max-width: 60%;
    max-height: 60%;
  }
  .banner .flx > div {
    margin: 0 30px;
  }
  .brand .brand_center .swiper-slide img {
    max-width: 50%;
    max-height: 50%;
  }
  .brand .brand_center .swiper-slide {
    margin: 0 30px;
  }
  .brand .brand_center .swiper-slide .box {
    width: 220px;
    height: 220px;
  }
  .brand .brand_center .fnt_180 .box {
    width: 300px;
    height: 300px;
  }
  .brand .brand_btm div {
    width: 220px;
    margin: 0 30px;
  }
  .brand .brand_btm .fnt_30 {
    width: 300px;
  }
  .scale .r {
    padding: 3vw 3vw 0;
  }
  .scale .des {
    height: 22.5em;
  }
  .history .r {
    width: 60vw;
    margin-left: 6vw;
  }
  .history .r .swiper-slide {
    padding-left: 6vw;
    padding-bottom: 2vw;
  }
  .history .l {
    height: 156px;
  }
  .history .l .swiper {
    height: 70px;
  }
  .history .r .swiper {
    height: 600px;
  }
  .culture .flx > div {
    height: 24vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .partner .sw_s {
    margin-right: 4vw;
  }
  .scale .txt {
    right: 4vw;
    bottom: 3vw;
  }
}
@media screen and (max-width: 1200px) {
  .scale .des {
    height: 18.75em;
  }
  .banner {
    margin-top: 60px;
    height: calc(100vw - 60px);
  }
  .brand .brand_center .swiper-slide {
    margin: 0 20px;
  }
  .brand .brand_center .swiper-slide {
    width: 160px;
    height: 160px;
  }
  .brand .brand_center .fnt_180 .box {
    width: 200px;
    height: 200px;
  }
  .brand .brand_btm div {
    width: 160px;
    margin: 0 20px;
  }
  .brand .brand_btm .fnt_30 {
    width: 200px;
  }
  .pleasant .point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    bottom: 25px !important;
    z-index: 2;
  }
  .pleasant .point span {
    background: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 10px !important;
  }
  .history .slide_l {
    width: 250px;
    margin-right: 30px;
  }
  .history .slide_r {
    width: calc(100% - 280px);
  }
  .culture .flx > div {
    height: 34vw;
  }
}
@media screen and (max-width: 900px) {
  .scale .des {
    height: 15em;
  }
}
@media screen and (max-width: 768px) {
  .scale .des {
    height: auto;
  }
  .banner {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  .banner .ic {
    width: 40px;
    height: 40px;
    margin: auto;
  }
  .banner .flx > div {
    margin: 0 20px;
  }
  .banner .txt {
    top: 10%;
  }
  .banner .txt > img {
    width: 100px;
  }
  .brand .brand_btm div {
    display: none;
    width: 100%;
    margin: 0;
  }
  .brand .brand_btm .fnt_30 {
    display: block;
    width: 100%;
  }
  .brand .brand_center .swiper-wrapper {
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
  }
  .brand .brand_center .swiper-slide {
    height: auto;
    margin: 0;
    font-size: 36px;
  }
  .brand .brand_center .swiper-slide .box {
    margin: auto;
  }
  .brand .brand_center span {
    color: #fff !important;
  }
  .brand .swiper-slide-active .box::before {
    -webkit-animation: rotate 5s linear infinite;
            animation: rotate 5s linear infinite;
  }
  .brand .point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    bottom: 25px !important;
    z-index: 2;
  }
  .brand .point span {
    background: #fff;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 10px !important;
  }
  .scale .flx {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .scale .l {
    width: 100%;
  }
  .scale .r {
    width: 100%;
    position: relative;
    right: 0;
    padding: 5vw;
  }
  .scale .r > img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .history .r .swiper-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .history .slide_l {
    margin-right: 0;
    width: 100%;
  }
  .history .slide_r {
    width: 100%;
    margin-top: 3vw;
  }
  .history .flx {
    display: block;
  }
  .history .l {
    height: auto;
    text-align: center;
  }
  .history .l::after {
    display: none;
  }
  .history .l .swiper {
    height: auto;
  }
  .history .r {
    margin-left: 0;
    width: 80%;
    margin-top: 4vw;
  }
  .history .r .swiper-slide {
    padding-bottom: 0;
    padding-left: 0;
  }
  .culture .flx {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .culture .flx > div {
    margin-right: 0;
    width: calc((100% - 15px) / 2);
    height: auto;
    padding-bottom: 15vw;
  }
  .culture .flx > div:nth-child(n+3) {
    margin-top: 15px;
  }
  .culture .ic {
    height: 40px;
  }
  .culture .ic img {
    max-height: 100%;
  }
  .partner .sw_s {
    margin-right: 9vw;
  }
  .history .r {
    width: 100%;
  }
  .history .r .swiper {
    height: auto;
  }
  .history .r .swiper-slide::before {
    display: none;
  }
  .history .r .swiper-slide::after {
    display: none;
  }
  .history .r::after {
    display: none;
  }
  .history .point {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 2;
    margin-top: 5vw;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    height: 1px !important;
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
  }
  .history .point span {
    background: #0460A9;
  }
  .banner .banner_pc {
    display: none;
  }
  .banner .banner_phone {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .culture .flx > div {
    width: 100%;
  }
  .culture .flx > div:nth-child(n+2) {
    margin-top: 15px;
  }
}
