@charset "UTF-8";
a:link {text-decoration: none; outline:none;}
a:visited{text-decoration: none; outline:none;}
a:hover{text-decoration:none!important; outline:none;}


footer .foot-main .main-box .box-cont .cont-share .share-item.on .item-icon .img2 {
    opacity: 1;
}

footer .foot-main .main-box .box-cont .cont-share .share-item.on .item-icon .img1 {
    opacity: 0;
}

footer .foot-main .main-box .box-cont .cont-share .share-item.on:nth-child(1) .item-icon {
    background: #0ac15c;
    box-shadow: 4px 9px 18px 0px rgba(10, 193, 92, 0.2);
}

footer .foot-main .main-box .box-cont .cont-share .share-item.on:nth-child(2) .item-icon {
    background: #000;
    box-shadow: 4px 9px 18px 0px rgba(0, 0, 0, 0.2);
}

footer .foot-main .main-box .box-cont .cont-share .share-item.on:nth-child(3) .item-icon {
    background: #ff7200;
    box-shadow: 4px 9px 18px 0px rgba(255, 114, 0, 0.2);
}

footer .foot-main .main-box .box-cont .cont-ewm img{display:none;}



.linear {
    transition-timing-function: linear;
    -o-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -webkit-transition-timing-function: linear;
}

@keyframes iconScale2 {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -moz-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0;
  }
}


.pic img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
    -webkit-transition: transform 0.8s ease;
    -moz-transition: transform 0.8s ease;
    -ms-transition: transform 0.8s ease;
    -o-transition: transform 0.8s ease;
}

.w1200 {
    width: 12rem;
    margin: 0 auto;
}


.page-box{
    padding: 1.4rem 0 1.65rem;
}

.video-wrapper .list ul {
  list-style: none;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  flex-flow: wrap;
  margin-bottom: 1rem;
}
.video-wrapper .list li {
  width: 32.55%;
  margin-right: 1.175%;
  margin-top: 0.62rem;
}
.video-wrapper .title {
  font-size: var(--fs20);
  text-align: center;
  height: 0.36rem;
  line-height: 0.36rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 0.28rem;
}
.video-wrapper iframe {
  width: 100%;
}
.video-box {
  position: relative;
  overflow: hidden;
}
.video-box:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.video-box.on .pic {
  opacity: 0;
  visibility: hidden;
}
.video-box.on .video {
  opacity: 1;
  visibility: visible;
}
.video-box .play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.3rem;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
  z-index: 10;
}
.video-box .play:before,
.video-box .play:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-sizing: border-box;
}
.video-box .play:before {
  animation: iconScale2 2.4s linear infinite;
}
.video-box .play:after {
  animation: iconScale2 2.4s 1.2s linear infinite;
}
.video-box .play i {
  display: block;
  position: relative;
  z-index: 10;
  background-image: url(../images/play2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
}
.video-box .pic {
  position: relative;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.video-box .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.video-box video {
  width: 100%;
  display: block;
  object-fit: contain;
}
.video-box .video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  -moz-transition: opacity 0.5s ease;
  -ms-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
}
.video-box .video video {
  max-width: 100%;
  margin: 0 auto;
  width: auto;
  max-height: 100%;
}


.mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-modal-box {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 44;
}
.video-modal-box .box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  align-items: center;
}
.video-modal-box .w1200 {
  background: #fff;
  padding: 0.4rem 0.6rem 0.6rem;
  margin-top:1rem;
}
.video-modal-box .top {
  position: relative;
  margin-bottom: 0.2rem;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #f7f8f9;
}
.video-modal-box .name {
  font-size: 0.24rem;
  color: #0079d4;
  line-height: 0.36rem;
  letter-spacing: 1px;
}
.video-modal-box .close {
  display: inline-block;
  position: absolute;
  width: 0.3rem;
  height: 0.3rem;
  right: 0;
  top: 0;
  background-image: url(../images/close2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  opacity: 1;
}
.video-modal-box .close:hover {
  transform: rotate(90deg);
  opacity: 1;
}
.video-modal-box .video-box {
  font-size: 0;
  overflow: hidden;
}
.video-modal-box .video-box video {
  display: block;
  max-width: 100%;
  max-height: 75vh;
  margin: 0 auto;
}

{
    margin-bottom: 0.75rem;
}


@media screen and (max-width: 1440px) {
    /*.w1200 {
        width: 1000px;
    }*/
}



@media screen and (max-width: 1004px) {
    .box-container, .w1200 {
        width: 100%;
        padding: 0 0.3rem;
    }

    .video-modal-box .box {
        padding: 1.2rem 0.3rem 0;
    }

    .video-modal-box .w1200 {
        padding: 0.4rem 0.3rem 0.6rem;
    }

    .video-modal-box .top {
        margin-bottom: 0.2rem;
        padding-bottom: 0.1rem;
    }

    .video-modal-box .name {
        font-size: 0.32rem;
        line-height: 0.5rem;
        padding-right: 0.5rem;
    }

    .video-modal-box .close {
        top: -0.1rem;
    }

    .video-modal-box .video-box video {
        max-height: 50vh;
    }

    .video-wrapper .list ul {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .video-wrapper .list li {
        width: calc((100% - 0.3rem) / 2);
        margin-right: 0;
        margin-top: 0.6rem;
    }

        .video-wrapper .list li:nth-child(-n+2) {
            margin-top: 0;
        }

    .video-wrapper .title {
        font-size: var(--fs28);
        height: 0.36rem;
        line-height: 0.36rem;
        margin-top: 0.32rem;
    }

    .video-box .play {
        margin-left: -0.24rem;
        margin-top: -0.24rem;
        width: 0.48rem;
        height: 0.48rem;
    }
}


@media screen and (min-width: 1024px) {
    .video-wrapper .list li:nth-child(-n+3) {
        margin-top: 0;
    }

    .video-wrapper .list li:nth-child(3n) {
        margin-right: 0;
    }
}