/* 公用 */
/* a标签 */
body {
    margin: 0 auto;
    overflow-x: hidden;
    max-width: 1920px;
    min-width: 1280px;
}

.banner .phoneimg {
    display: none;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}

.ff_12 {
    font-size: 12px;
    font-weight: bold;
}

.ff_16 {
    font-size: 16px;
    font-weight: bold;
}

.ff_18 {
    font-size: 18px;
    font-weight: bold;
}

.ff_20 {
    font-size: 20px;
    font-weight: bold;
}

.ff_22 {
    font-size: 22px;
    font-weight: bold;
}

.ff_24 {
    font-size: 24px;
    font-weight: bold;
}

.ff_26 {
    font-size: 26px;
    font-weight: bold;
}

.ff_28 {
    font-size: 28px;
    font-weight: bold;
}

.ff_30 {
    font-size: 30px;
    font-weight: bold;
}

.ff_32 {
    font-size: 32px;
    font-weight: bold;
}

.ff_34 {
    font-size: 34px;
    font-weight: bold;
}

.ff_36 {
    font-size: 36px;
    font-weight: bold;
}

.ff_38 {
    font-size: 38px;
    font-weight: bold;
}

.ff_40 {
    font-size: 40px;
    font-weight: bold;
}

a {
    color: #666;
    text-decoration: none;
    outline: none;
}

/* 弹窗 */

.z_tanchuang {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    z-index: 10;
}

.z_tanchuang .tbox {
    display: table-cell;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    vertical-align: middle;
}

/* 弹窗内容 */

.z_tanchuang .tbox .modal {
    background: white;
    padding: 50px;
    display: block;
    border-radius: 5px;
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90%;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff url("out.png")/*tpa=https://www.tophicon.com/images/out.png*/ center no-repeat;
    background-size: 20px;
    color: #000;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    top: 0;
    right: -50px;
    cursor: pointer;
}

.z_tanchuang .tbox .modal .img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .img video {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.z_tanchuang .tbox .modal .img img {
    margin: 0 auto;
}

.z_tanchuang .tbox .modal .out:hover {
    background: #fff url("out2.png")/*tpa=https://www.tophicon.com/images/out2.png*/ center no-repeat;
    background-size: 20px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.z_tanchuang .tbox .modal2 {
    padding: 20px;
}

.z_tanchuang .tbox .modal .img {
    max-width: 1200px;
}

/* 弹窗选中 */

.z_tanchuang.one {
    transform: scaleY(0.01) scaleX(0);
    animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scaleY(0.01) scaleX(0);
    -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one .tbox .modal {
    transform: scale(0);
    animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(0);
    -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out {
    transform: scale(1);
    animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-transform: scale(1);
    -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.z_tanchuang.one.out .tbox .modal {
    animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* 弹窗动画 */

@keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes zoomIn {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@-webkit-keyframes zoomOut {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@-webkit-keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(0.005) scaleX(0);
    }
}

@-webkit-keyframes unfoldIn {
    0% {
        transform: scaleY(0.005) scaleX(0);
    }

    50% {
        transform: scaleY(0.005) scaleX(1);
    }

    100% {
        transform: scaleY(1) scaleX(1);
    }
}

body.post-type-archive-case #anim,
body.single-case #anim {
    background: #fafafa
}

body.page-template-page-index #anim .dna {
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease
}

body.page-template-page-index #anim.loading {
    opacity: 1;
    pointer-events: auto
}

body.page-template-page-index #anim.loading .dna {
    opacity: 1
}

#anim {
    z-index: 9999999;
    background: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

#anim.loading {
    opacity: 1;
    pointer-events: auto
}

#particles-js {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
}

.dna {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-perspective: 270px;
    perspective: 270px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    letter-spacing: -5px
}

.ele {
    width: 4px;
    height: 4px;
    display: inline-block;
    -webkit-transform: rotateX(-360deg) translateZ(0);
    transform: rotateX(-360deg) translateZ(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    margin-left: 0;
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite
}

.ele:nth-of-type(2n) .dot:before {
    background: #4abfeb
}

/* 面包屑导航 */
.mbxdh{
    width: 100%;
    background-color: #f2f3f5;
}
.mbxdh .zbox{
    height: 60px;
    margin-top: 86px;
}
.mbxdh .zbox .left{
    height: 100%;
    display: flex;
    align-items: center;
}
.mbxdh .zbox .left .img{
    margin: 0 15px 0 18px;
}
.mbxdh .zbox .left a{
    color: #333;
}
.mbxdh .zbox .left a:hover{
    color: #349994;
}
.banner1 {
    position: relative;
}
.banner2 {
    display: none;
}
.banner1 .bg_img {
    width: 100%;
    padding-top: 36.46%;
}

.banner1 .ibox {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.banner1 .text {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner1 .text .d_text{
    color: #fff;
    font-weight: bold;
}
.banner1 .text .c_text{
    color: #fff;
}
.banner1 .text .line{
    width: 40px;
    height: 1px;
    background-color: #fff;
    margin: 26px 0;
}

/* 二级导航 */
.t_daohang{
    width: 100%;
    /*height: 80px;*/
    height: unset;
    border-bottom: 1px solid #f0f0f0;
    background-color: #fafafa;
}
.t_daohang.fixed{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    transform: translateY(0) !important;
    margin-top: 0 !important;
}
.t_daohang .ibox{
    height: 100%;
}
.t_daohang .ibox .six_text{
    flex-wrap: wrap;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t_daohang .ibox .six_text .six{
    /*width: 100%;*/
    padding: 10px 0px;
    display: block;
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
    border-right: 1px solid #f0f0f0;
    background-color: #fafafa;
    font-weight: bold;
}
.t_daohang .ibox .six_text .six:first-child{
    border-left: 1px solid #f0f0f0;
}
.t_daohang .ibox .six_text .six:hover{
    background-color: #349994;
    color: #fff;
}
.t_daohang .ibox .six_text .six.act{
    background-color: #349994;
    color: #fff;
}

/* 公用title */
.title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.title .title_text{
    color: #121212;
    margin: 0 25px;
    font-weight: bold;
}
.title .title_text1{
    color: #fff;
    margin: 0 25px;
    font-weight: bold;
    line-height: 1;
}
.title .title_text2{
    color: #349994;
    margin: 0 25px;
    font-weight: bold;
    line-height: 1;
}

/* 公共轮播按钮 */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #349994 !important;
    border: 0;
}

.more{
    display: block;
    width: 262px;
    height: 72px;
    position: relative;
    margin: 0 auto;
}
.more:hover{
    transform: translateY(-10px);
}
.more .img{
    width: 100%;
}
.more .text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(52, 153, 148, .6);
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
}
.more:hover .text{
    color: rgba(52, 153, 148, 1);
}
.more1{
    display: block;
    width: 262px;
    height: 72px;
    position: relative;
    margin: 0 auto;
}
.more1:hover{
    transform: translateY(-10px);
}
.more1 .img{
    width: 100%;
}
.more1 .text{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    position: absolute;
    top: 0;
    left: 0;
    font-weight: bold;
}
.more1:hover .text{
    color: rgba(255, 255, 255, 1);
}



@keyframes zhuan {0% {transform: rotate(0deg);}100% {transform: rotate(180deg);}}
@-webkit-keyframes zhuan {0% {transform: rotate(0deg);}100% {transform: rotate(180deg);}}
.btn{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 5;
}
.btn .pnall{
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.btn .pnall .img{
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0.6;
}
.btn .pnall:hover .img{
    opacity: 1;
}
.btn .pnall .img .s_img{
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}
.btn .pnall:hover .img .s_img{
    animation: zhuan 2s linear;
    -webkit-animation: zhuan 2s linear;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
}

/* 分页 */
.fy{
    width: 100%;
    display: flex;
    justify-content: center;
}
.fy .ul2{
    display: flex;
}
.fy .ul2 li a{
    padding: 9px 13px;
    background-color: #f7f7f7;
    margin-right: 8px;
    color: #333;
}
.fy .ul2 li a:hover{
    background-color: #349994;
    color: #fff;
}
.fy .ul2 li:last-child{
    margin-right: 0;
    color: #666;
    background-color: #fbfbfb;
}

.fp{
    width: 900px;
    height: 367px;
    background: url("../img/a_51.png")/*tpa=https://www.tophicon.com/images/a_51.png*/ center no-repeat;
    background-size: cover;
    position: absolute;
    top: 17.4%;
    left: 38.5%;
    margin: 0 auto;
    padding: 62px;
    z-index: 990;
    /* display: none; */
}
.fp .logo_img{
    position: absolute;
    top: -25px;
    left: -41px;
}
.fp .con{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.fp .left{
    width: 100%;
}
.fp .left .text{
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 48px;
}
.fp .left .text:last-child{
    margin-bottom: 0;
}
.fp .left .text .d_text{
    color: #121212;
    font-weight: bold;
    margin: 0 30px 0 20px;
}
.fp .left .text .c_text{
    color: #121212;
}
.fp .left .text a:hover{
    color: #349994;
}

.fp .right{
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.fp .right .img{
    border: 1px solid #e5e5e5;
}
.fp .right .s_img{
    margin: 17px 0;
}
#mydiv{
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
}
#mydiv.act{
    height: 55%;
}
#mydiv canvas{
  width: 100%;
  height: 100%;
  position: absolute !important;
  z-index: 9 !important;
}
/* 公共按钮样式结束 */
@media (max-width: 1680px) {}

@media (max-width: 1440px) {
    .fp {
    top: 17.4%;
    left: 28.5%;
}
}

@media (max-width: 1366px) {}

@media (max-width: 1280px) {}

@media (max-width: 1030px) {
    body {
        min-width: 100px;
    }

    .ibox {
        max-width: 1030px;
        min-width: 100px;
        width: 95%;
        margin: 0 auto;
    }

    .wow {
        opacity: 1;
    }
.fp {
    top: 17.4%;
    left: 8.5%;
}
.t_daohang.fixed {
    position: initial;
    top: 0;
    left: 0;
    z-index: 998;
}

}

@media (max-width: 960px) {
    .wow {
        opacity: 1;
    }
    
.more{
    width: 190px;
    height: 55px;
}
.mbxdh {
    display: none;
}
.more1{
    width: 190px;
    height: 55px;
}
.banner1 {
    display: none;
}
.banner2 {
    display: block;
    position: relative;
    margin-top: 60px;
}
.banner2 .bg_img {
    width: 100%;
    height: 100%;
}

.banner2 .ibox {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.banner2 .text {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner2 .text .d_text{
    color: #fff;
    font-weight: bold;
}
.banner2 .text .c_text{
    color: #fff;
}
.banner2 .text .line{
    width: 40px;
    height: 1px;
    background-color: #fff;
    margin: 26px 0;
}
.kong{
    display: none;
}
.t_daohang {
    margin-top: 20px !important;
    width: 100%;
    height: auto;
    border-bottom: 0;
    background-color: #fafafa;
}
.t_daohang .ibox .six_text {
    flex-wrap: wrap;
}
.t_daohang .ibox .six_text .six {
    width: 50%;
    line-height: 3;
    border-bottom: 1px solid #f0f0f0 !important;
    border-left: 1px solid #f0f0f0 !important ;
}
.t_daohang .ibox .six_text .six:nth-child(1) {
    border-top: 1px solid #f0f0f0 !important;
}
.t_daohang .ibox .six_text .six:nth-child(2) {
    border-top: 1px solid #f0f0f0 !important;
}
.t_daohang .ibox .six_text .six:nth-child(2n) {
    border-left: 0 !important;
}
.t_daohang .ibox .six_text .six:last-child {
    border-bottom: 0;
}
.t_daohang .ibox .six_text .six:nth-last-child(2) {
    /* border-bottom: 0; */
}
.title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.5;
}
.title .title_img{
    width: 25%;
}
.title .title_img img{
    width: 100%;
}
.title .title_text {
    color: #121212;
    margin: 0 15px;
    font-weight: bold;
}
.title .title_text1{
    color: #fff;
    margin: 0 15px;
    font-weight: bold;
    line-height: 1;
}
.title .title_text2{
    color: #349994;
    margin: 0 15px;
    font-weight: bold;
    line-height: 1;
}
.btn .pnall {
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.btn .pnall .img .s_img {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
}
.btn .pnall:hover .img .s_img {
    margin-top: -25px;
    margin-left: -25px;
}
.fy .ul2 li a {
    padding: 6px 10px;
    background-color: #f7f7f7;
    margin-right: 8px;
    color: #333;
}
.fp {
    display: none;
}
.mbxdh .zbox {
    height: 40px;
    margin-top:60px;
}
#mydiv.act {
    height: 85%;
}
}