/*
wInd
Document since 30th April 2020
*/

html,body{
    overflow-x: hidden;
    width: 100%;
	font-family: Microsoft YaHei,微软雅黑,Arial;
	color: #666;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
*{
	margin: 0px;
	padding:0px;
}
a{
	color: #333;
	text-decoration: none;
}
a:hover{
    color: #333;
    text-decoration: none;
}
ul li{
    margin: 0;
    padding: 0;
	list-style: none;
	display: inline-block;
}
img{
    max-width: 100%;
    display: block;
}

p{
    color: #666;
	font-size: 14px;
	line-height: 1.7;
}
h1{
    font-size: 60px;
    font-weight: normal;
}
h2{
    font-size: 48px;
    font-weight: normal;
}
h3{
    font-size: 36px;
    font-weight: normal;
}
h4{
    font-size: 24px;
    font-weight: normal;
}
h5{
    font-size: 18px;
    font-weight: normal;
}
h6{
    font-size: 72px;
    font-weight: normal;
}
/*安全线*/
.safeLine{
    overflow: hidden;
	height: 100%;
	margin: 0 auto;
	width: 1200px;
}
/*flex布局*/
.flex{
    display: flex;
}
.flex1{
    flex: 1;
}
.wrap{
    flex-wrap: wrap;
}
.flexRight{
    display: flex;
    flex-direction: row-reverse;
}
.flexDown{
    display: flex;
    flex-direction: column;
}
.flexUp{
    display: flex;
    flex-direction: column-reverse;
}
.flexBetween{
    display: flex;
    justify-content: space-between;
}
.flexCenter{
    display: flex;
    justify-content: center;
}
.flexAligncenter{
    display: flex;
    align-items: center;
}
.flexEnd{
    display: flex;
    align-items: flex-end;
}
.flexBaseline{
    display: flex;
    align-items: baseline;
}
/*了解更多*/
.more{
    text-align: center;
    transition: all ease 0.5s;
    color: white;
}
/*浮雕*/
.relief{
    box-shadow:2px 2px 4px rgba(0,0,0,.6);
}
/*Slide控件*/
.hd{
	width: 100%;
	height: 25px;
}
.hd ul{
	height: 20px;
	display: flex;
	justify-content: center;
}
.hd li{
    margin: 0 5px;
	width: 10px;
	height: 10px;
	cursor: pointer;
	margin: 0 5px;
	border-radius: 50%;
	border: 1px solid black;
}
.on{
	box-shadow: 0 0 10px rgba(0,0,0,.3);
	transition: all .5s ease;
}
/*翻页模板*/
.pagination li span,.pagination li a{
    padding: 5px;
    display: block;
    border: 1px solid #ddd;
}
/*圆点*/
.circle{
    display: inline-block;
    border-radius: 50%;
}
/*滚动条*/
::-webkit-scrollbar {
     width: 4px;
     /*height: 4px;*/
}
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(51,51,51,0.5);
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}
/*交互链接*/
.switch{
    position: relative;
    display: block;
    padding: 15px 50px;
    color: #333;
    font-size: 18px;
    background: #eee;
    margin-top: 50px;
}
.switch .original{
    color: #333;
    z-index: 2;
    transition: all 0.5s ease;
}
.switch:hover .original{
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
}
.switch .flow{
    position: absolute;
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}
.switch:hover .flow{
    opacity: 1;
    color: #fff;
    visibility: visible;
    transform: translateY(-100%);
}
.switch:hover{
    background: #ad915c;
}

/*纹理背景*/
.bg{
    width: 100%;
    height: 100%;
    background: url(../images/bg.png);
}

/*对其*/
.right{
    text-align: right;
}