* {
	word-wrap: break-word
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
iframe,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
button,
input,
textarea,
th,
td,
fieldset {
	margin: 0;
	padding: 0
}

ul,
ol,
dl {
	list-style-type: none
}

html,
body {
	*position: static
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: 400
}

input,
button,
textarea,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit
}

input,
button {
	overflow: visible;
	vertical-align: middle;
	outline: none
}

body,
th,
td,
button,
input,
select,
textarea {
	font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53";
	font-size: 16px;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

body {
	line-height: 1.6;
	background-color: #f9f7f1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%
}

a,
area {
	outline: none;
	blr: expression(this.onFocus=this.blur())
}

a {
	text-decoration: none;
	cursor: pointer;
	color: #333
}

a:hover {
	outline: none;
	color: #db2232;
}

a.ie6:hover {
	zoom: 1
}

a:focus {
	outline: none
}

a:hover,
a:active {
	outline: none
}

:focus {
	outline: none
}

button,
input[type="button"],
input[type="submit"] {
	line-height: normal !important
}

/*img*/
img {
	border: 0;
	vertical-align: middle
}

a img,
img {
	-ms-interpolation-mode: bicubic
}

.img-responsive {
	max-width: 100%;
	height: auto
}

/*IE a:hover */
*html {
	overflow: -moz-scrollbars-vertical;

	zoom:expression(function(ele) {
			ele.style.zoom="1"; document.execCommand("BackgroundImageCache", false, true)
		}

		(this))
}

/*HTML5 reset*/
header,
footer,
section,
aside,
details,
menu,
article,
section,
nav,
address,
hgroup,
figure,
figcaption,
legend {
	display: block;
	margin: 0;
	padding: 0
}

time {
	display: inline
}

audio,
canvas,
video {
	display: inline-block;
	*display: inline;
	*zoom: 1
}

audio:not([controls]) {
	display: none
}

legend {
	width: 100%;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: 40px;
	border: 0;
	border-bottom: 1px solid #e5e5e5
}

legend small {
	font-size: 15px;
	color: #999
}

svg:not(:root) {
	overflow: hidden
}

fieldset {
	border-width: 0;
	padding: 0.35em 0.625em 0.75em;
	margin: 0 2px;
	border: 1px solid #c0c0c0
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto
}

input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	/* 2 */
	box-sizing: content-box
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none
}


.container {
	width: 1200px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
}

.cl:after,
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

.cl,
.clearfix {
	zoom: 1
}

.clear {
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

/* margin-left*/
.ml35 {
	margin-left: 35px;
}

.ml30 {
	margin-left: 30px;
}

.ml25 {
	margin-left: 25px;
}

.ml20 {
	margin-left: 20px;
}

.ml15 {
	margin-left: 15px;
}

.ml10 {
	margin-left: 10px;
}

/* margin-bottom*/
.mb30 {
	margin-bottom: 30px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb5 {
	margin-bottom: 5px;
}

/* margin-top*/
.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

/* padding-bottom*/
.pb10 {
	padding-bottom: 10px;
}

.hide {
	display: none;
}

.show {
	display: block;
}

.tag{ display: none; }
.banner{ position: relative; 
text-align: center;
	height: 635px;
	background: url(../img/banner.jpg) no-repeat top center;
}
.dbt{ 
	position: absolute;
	    width: 80%;
	    height: auto;
	    top: 25%;
	    left: 10%;
		-webkit-animation-name: myfirst; /*关键帧名?*/

        -webkit-animation-timing-function: ease-in-out; /*动画的?度曲线*/



        -webkit-animation-duration: 2s; /*动画?花费的时?*/				
}

@keyframes myfirst {  /*定义关键帧?scaleDrew是需要绑定到选择器的关键帧名?*/

            0%{

                transform: scale(0.1);  /*?始为原始大小*/
                opacity: 0.1;  
            }



            100%{

                transform: scale(1);
                opacity: 1;  
            }

        }



.headlines {
	text-align: center;
}

.headlines h2 {
	font-size: 38px;
	height: 55px;
	line-height: 55px;
	font-weight: bold;

	overflow: hidden;
	width: 100%;

}

.headlines h2 a {
	color: #FF0000;
}

.headlines p a {
	color: #FF0000;
}

.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;

}

.view1-right {
	width: 630px;

}

.view1-left {
	width: 540px;

}

.redTextNews {
	padding-bottom: 15px;
	border-bottom: 1px dashed #A8A8A8;
	margin-bottom: 15px;
}

.redNewsTitle {
	font-weight: bold;
	font-size: 22px;
	color: #333333;
	margin-bottom: 10px;
}

.redNewsTitle a {
	display: block;
	word-wrap: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.redNewsContent {
	font-size: 14px;
	color: #5e5d5d;
	text-indent: 2em;
}

.default a {
	display: block;
	word-wrap: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	font-size: 16px;
	line-height: 2.3;
	text-align: left;
}

.default a:before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: #e45656;
	border-radius: 50%;
	overflow: hidden;
	vertical-align: middle;
	margin-right: 15px;
}


.checkMore {
	color: #e5001c;
}


.topshipin {
	padding: 10px 10px;
	height: auto;
	overflow: hidden;
	background-color: #fbe8d6;
}

.topshipin li {
	width: 300px;
	position: relative;
}

.topshipin li p {
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
	word-wrap: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.video_box_l_playbtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 42px;
	cursor: pointer;
}



.slide {
	height: 380px;
	overflow: hidden;
	position: relative;
}

.slide .slide-list img,
.slide .slide-list ul li {
	width: 630px;
	height: 380px;
}

.slide .slide-list ul li {
	position: relative;
	z-index: 1;
	width: 630px;
	height: 380px;
}

.slide .slide-list .title {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
	margin: 0 15px;
	height: 54px;
	line-height: 54px;
}

.slide .slide-list .title a {
	color: #fff;
	font-size: 16px;
}

.slide .slide-list .title a:hover {
	text-decoration: none;
}

.slide .slide-list .title-bg {
	width: 100%;
	height: 54px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	z-index: 2;
}

.slide .slide-pagination {
	position: absolute;
	right: 10px;
	bottom: 16px;
	z-index: 9;
}

.slide .slide-pagination a {
	background-color: #FFF;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
}

.slide .slide-pagination a.current {
	background-color: #db2232;
}

.slide .prev,
.slide .next {
	display: block;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	width: 40px;
	height: 50px;
	background-color: #000000;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	top: 50%;
	margin-top: -50px;
}

.slide:hover .prev,
.slide:hover .next {
	display: block;
	z-index: 9;
	cursor: pointer;
}

.slide .prev {
	background-image: url(../img/slide-prev.png);
	left: 15px;
}

.slide .next {
	background-image: url(../img/slide-next.png);
	right: 15px;
}

.cont-title {
	text-align: center;
	height: 80px;
	line-height: 80px;
	font-size: 50px;
	font-weight: bold;
	margin: 40px 0;
}

.cont-title a {
	color: #c00516;
}

.cont-title img {
	padding-left: 10px;
}


.footer {
    padding-top: 30px;
	padding-bottom: 30px;
    text-align: center;
    margin-top: 20px;
    height: 130px;
}
.footer p {
    line-height: 30px;
    font-size: 16px;
    color: #c3b39c;
}











<!--ecms sync check [sync_thread_id="3bcee7cc5a424330844ab778a62d31c1" sync_date="2022-10-31 11:10:48" check_sum="3bcee7cc5a424330844ab778a62d31c1]-->