
/*@font-face {*/
    /*font-family: 'glowblack';*/
    /*src: url('../font/GlowSansSC-Normal-Regular.otf');*/
    /*src:url('../font/GlowSansSC-Normal-Regular.otf') format('OpenType'),*/
/*}*/

*{
    margin:0;
    padding:0;
    list-style: none;
    box-sizing: border-box;
    /*touch-action: none;*/
    font-family:initial!important;

}
.en,.vn{
    display: none;
}
html, body {
    width: 100%;
    min-height: 100%;
    background: white;
    /*background: linear-gradient(to bottom,#EBEBE4,#EBEBE4);*/
    /*background: black;*/
    /*background: url("../image/bg.jpg")no-repeat center center;*/
    /*background-size: 100% 100%;*/
    /*margin-bottom: 4.6rem;*/
    /*min-width: 1200px;*/

    /*#E3EDCD*/

}
body {
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;


}
/* 滚动条宽度 */
body::-webkit-scrollbar {
    width: 1px; /* 滚动条的宽度 */
}

/* 滚动条轨道 */
body::-webkit-scrollbar-track {
    background: rgba(0,0,0,1); /* 滚动条轨道颜色 */
}

/* 滚动条滑块 */
body::-webkit-scrollbar-thumb {
    background: #1E9FFF; /* 滚动条滑块颜色 */
    border-radius: 6px; /* 圆角 */
}

/* 滑块悬停时 */
body::-webkit-scrollbar-thumb:hover {
    background: #555; /* 悬停时滑块颜色 */
}


/* 滚动条宽度 */
.gunLun::-webkit-scrollbar {
    width: 2px; /* 滚动条的宽度 */
}

/* 滚动条轨道 */
.gunLun::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0); /* 滚动条轨道颜色 */
}

/* 滚动条滑块 */
.gunLun::-webkit-scrollbar-thumb {
    background:#1E9FFF; /* 滚动条滑块颜色 */
    border-radius: 6px; /* 圆角 */
}

/* 滑块悬停时 */
.gunLun::-webkit-scrollbar-thumb:hover {
    background: #555; /* 悬停时滑块颜色 */
}


.f-up {
    animation-name: f-up; /*动画名称*/
    animation-duration: 3s; /*动画持续时间*/
    animation-iteration-count: 1; /*动画次数*/
    animation-delay: 0s; /*延迟时间*/
}

@keyframes f-up {
    from {
        will-change: transform; /*优化动画卡顿1*/
        opacity: 0; /*初始状态 透明度为0*/
        transform: translateY(100px); /*初始状态 文档流下100px*/
    }
    to {
        opacity: 1; /*结尾状态 透明度为1*/
        transform: translateY(0px); /*初始状态 恢复正常位置*/
    }
}
.yc{
    -webkit-animation-delay: 2s;/**延迟**/
    animation-delay: 2s;
}

/*头部*/
#tou{
    width:100%;
    /*height:80px;*/
    /*position:fixed;*/
    /*top:0;*/
    /*left:0;*/
    /*z-index:99999;*/
    background: rgba(0,0,0,0);
}
/*身体部分*/
.content_body {
    width: 100%;
    min-height: 100%;
    background: #fff;
    position: relative;
    /*overflow-x: hidden;*/

    /*padding-top: 4rem;*/
    /*margin-bottom: 10.1vh;*/
    /*overflow: auto;*/
    /*-webkit-overflow-scrolling: touch;*/

    /*filter: grayscale(100%);*/
    /*filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);*/
    /*-webkit-filter: grayscale(100%);*/
    /*-moz-filter: grayscale(100%);*/
}


/*轮播图*/
.biglogo{
    width: 100%;
    height: 100%;
    object-fit: contain;
    /*filter: brightness(70%); !* 降低亮度到 50% *!*/
    /*border-radius: 10px;*/
    /*transition-duration:0.8s;*/
    /*transform: scale(1.3);*/
}
.bannerMask{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    position: absolute;
    top:0;
    left:0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.bannerMask h2{
    width: 50%;
    /*background: pink;*/
    margin-left: 10%;
    color: white;
    font-size: 1.3rem;
    line-height: 1.5rem;
    /*text-align: center;*/
    cursor: pointer;
}
.btnBox{
    width: 100%;
    margin-top: 1%;
}
.banText1{
    width: 10%;
    border: 1px solid white;
    border-radius: 10px;
    /*background: pink;*/
    margin-left: 10%;
    color: white;
    font-size: 0.9rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
}
.banText1:hover{
    background: #1e9fff;
    border: 1px solid #1e9fff;
    transition: 1s;
}

.content_body1 {
    width: 70%;
    margin: 1rem auto 0 auto;
    overflow-x: hidden;
    /*padding-bottom: 20px;*/
    /*height: 75vh;*/
    /*background-color: gold;*/
}

img{
    border:none 0;
}
body a:hover{
    text-decoration:none;
}
ul,li{
    list-style:none;
}
p{
    margin: 0;
}
.none{
    display: none;
}
.opacity{
    opacity: 0;
}
.wave {
    position: relative;
    overflow: hidden;
}
.wave:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #666 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity .5s;
}
.wave:active:after {
    transform: scale(0, 0);
    opacity: .5;
    transition: 0s;
}
.wave:active {
    opacity: .9;
}

.slh{
    display: block;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.slh2{
    display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;
}
/*.yc{*/
    /*animate-duration: 6s;*/
    /*-webkit-animation-duration:6s*/
/*}*/

.boxShadow{
    box-shadow: 6px 6px 6px 6px #666;
}
.textShadow{
    color: #666 !important;
   /*text-shadow: 6px 8px 8px #666666;*/
}

/*呼吸灯*/
.huxi{
    animation-name: movehuxi;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}
@keyframes movehuxi{
    from {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0.6;
    }
}

.huxi1{
    animation-name: movehuxi1;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}
@keyframes movehuxi1{
    from {
        opacity: 1;
        color: #c2c2c2;
        /*color:rgba(255,255,255,0.5);*/
        transition: 1s

    }
    50% {
        opacity: 1;
        color:rgba(1,170,237,0.95);
        transition: 1s
        /*color:white*/
    }
    to {
        opacity: 1;
        /*color: #0C0C0C;*/
        color:rgba(12,12,12,0.8) ;
        transition: 1s
    }
}

.huxi2{
    animation-name: movehuxi2;
    animation-duration: 4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}
@keyframes movehuxi2{
    from {

        border: 3px solid white;
    }
    50% {
        border: 2px solid white;
    }
    to {
        border: 3px solid white ;
    }
}

.huxi3{
    animation-name: movehuxi3;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;

}
@keyframes movehuxi3{
    from {
        opacity: 0.3;
        color: yellow;
    }
    50% {
        opacity: 1;
        color:yellow ;
    }
    to {
        opacity: 0.3;
        color:yellow;
    }
}
.layui-flow-more {
    width: 100%!important;
    margin: 10px auto !important;
    font-size: 0.55rem !important;
    /* padding: 20px 0; */
}
.cz{
    display: flex;
    flex-wrap: wrap;
    /*实现垂直居中*/
    align-items: center;
    /*实现水平居中*/
    justify-content: center;
    /*text-align: justify;*/
    flex-direction: row;
}

/*媒体查询*/
@media (max-width: 900px) {
    .content_body1 {
        width: 96%;
        margin: 1rem auto 0 auto;
        /*overflow-x: hidden;*/

        /*padding-bottom: 20px;*/
        /*height: 75vh;*/
        /*background-color: gold;*/
    }
    /*轮播图*/
    .biglogo{
        /*width: 100%;*/
        /*height: 100%;*/
        object-fit: cover;
        /*filter: brightness(70%); !* 降低亮度到 50% *!*/
        /*border-radius: 10px;*/
        /*transition-duration:0.8s;*/
        /*transform: scale(1.3);*/
    }
    /*.bannerMask{*/
        /*width: 100%;*/
        /*height: 100%;*/
        /*background: rgba(0,0,0,0.5);*/
        /*position: absolute;*/
        /*top:0;*/
        /*left:0;*/
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*align-items: center;*/
        /*align-content: center;*/
    /*}*/
    .bannerMask h2{
        width: 98%;
        margin-left: 2%;
        /*font-size: 1.2rem;*/
    }
    .btnBox{
        width: 100%;
        margin-top: 5%;
    }
    .banText1{
        width: 30%;
        border: 1px solid #1e9fff;
        margin-left: 2%;
        color: white;
        background: #1e9fff;
        /*font-size: 1rem;*/
    }
    /*.banText1:hover{*/
        /*background: initial;*/
        /*border: initial;*/
        /*transition: initial;*/
    /*}*/
}








