*{margin:0px;padding:0px;}
body{font-family: "Microsoft YaHei","微软雅黑","simsun","sans-serif","Hiragino Sans GB","STHeiti",Arial;background-color:#fff;font-size:85%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;position: relative;}
h1,h2,h3,h4,h5,h6,em{font-weight:normal;font-style:normal;}
table,td,tr{border:none;border-collapse:collapse;}
ul,li,ol{list-style:none;}
img,fieldset{border:medium none;display:block;}
img{vertical-align:left;}
a{outline:none;-webkit-transition: all 0.3s ease;-moz-transition: all 0.3s ease;transition: all 0.3s ease;cursor: pointer;}
a:link,a:visited{color:#333;text-decoration:none;}
a:hover,a:active{color:#b30000;text-decoration:underline;}
a.ani{-webkit-transition: all 0.3s ease;-moz-transition: all 0.3s ease;transition: all 0.3s ease;}
.clear{clear:both;width:1px;overflow:hidden;height:0;}
.clearfix{*zoom: 1;}
.clearfix:after{clear: both;display: block;overflow: hidden;height: 0;visibility: hidden;content: ".";}
.hidden{display:none;}
.pull-left,.fl{float: left;}
.pull-right,.fr{float: right;}
.fdn{font-size: 0;text-indent: -999em;line-height: 0;}
.text-overflow{overflow: hidden;white-space: nowrap;-ms-text-overflow: ellipsis;text-overflow: ellipsis;}
h1{display: block;font-size: 0;line-height: 0px;text-indent: -999em;}
/*
    省略号css：
    panA:
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

    panB:
    height:px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
*************************************************    
    半透黑色背景（且兼容ie）
    background: rgba(0,0,0,0.5);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#7f000000,endColorstr=#7f000000);
*/
/*margin*/
.mt10{margin-top: 10px;} .mt20{margin-top: 20px;}

.wrap{padding-bottom: 0;
    max-width: 1920px;
    overflow: hidden;
    margin: 0 auto;}
.banner,.banner img,.col{width: 1200px;margin:0 auto;overflow: hidden;}
.flex_SpaceBetween{
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    justify-content: space-between;
}


/* 公用 */

.col .img{
    display: block;
    overflow: hidden;
}
.col img{
    width: 100%;
    height: 100%;
}

.slide-in-right {
-webkit-animation: slide-in-right .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: slide-in-right .8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 0;
}

100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
}

@keyframes slide-in-right {
0% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    opacity: 0;
}

100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}
}

.slide-out-right {
-webkit-animation: slide-out-right .8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
animation: slide-out-right .8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-right {
0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

100% {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    opacity: 0;
}
}

@keyframes slide-out-right {
0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

100% {
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
    opacity: 0;
}
}

.pc{
    display: block;
}
.phone{
    display: none;
}

/* 面包屑 */
.crumbs{
    background: url(../images/icon4.png) no-repeat right bottom;
    /* background-size: cover; */
    border-bottom:  2px solid #ae8861;
    padding-top: 40px;
    margin-top: 39px;
    padding-left: 3px;
}
.crumbs a{
    font-size: 16px;
	line-height: 34px;
	color: #808080;
}
.crumbs span::before{
    content: ">";
    margin-right: 5px;
    font-size: 16px;
	line-height: 34px;
	color: #808080;
}
.crumbs span:first-child::before{
    content: "";
}
.crumbs span:first-child{
    margin-left: 0;
}
.crumbs span{
    margin-left: 5px;
}
/* 面包屑 end */

/* 内容 */
.container{
    margin-top: 62px;
    padding-bottom: 202px;
}
.article{
    box-sizing: border-box;
    padding: 0 51px;
}
.article-title h2{
    font-size: 34px;
	font-weight: bold;
	color: #333333;
    text-align: center;
}
.article-content {
    margin-top: 100px;
}
.article-content p{
    font-size: 18px;
	line-height: 36px;
	color: #333333;
    margin: 29px 0;
}
.article-content img{
    width: 770px;
    height: auto;
    margin: 10px auto;
}
.article-content video{
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    display: block;
    background-color:#000;
}
/* 内容 */


@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
    .phone{
        display: block;
    }
    .wrap{
        width: 100%;
        height: auto;
    }
    .col{
        width: 96%;
    }

    /* 面包屑 */
    .crumbs{
        margin-top: .5rem;
        background-size: 48%;
        padding-top: .2rem;
        background-position-x: right;
    }
    .crumbs a{
        font-size: 14px;
    }
    .crumbs span{
        margin-left: 0;
    }
    .crumbs span::before{
        margin-right: 0;
    }
    /* 面包屑 end */

    /* 内容 */
    .container{
        margin-top: .5rem;
        padding-bottom: .72rem;
    }
   
    .article{
        padding: 0 .3rem;
    }
    /* fontsize */
    .article-title h2{
        font-size: 22px;
    }
    .article-content p{
        font-size: 16px;
    }
    /* fontsize end */
    .article-content{
        margin-top: 1rem;
    }
    .article-content p{
        line-height: 1.6;
    }
    .article-content img{
        width: 100%;
    }
    .article-content video{
        width: 100%;
        height: 100%;
    }
    /* 内容 */
}