
*{ margin: 0; padding:0;}
/* Unessential CSS - Just here to make this sample page prettier */
html, body {
    font-family: "Microsoft YaHei", sans-serif;
    position: relative;
}
body {
    width: 100%;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 1px;
    color: black;
}
/*自适应匹配不同大小手机*/

@media only screen and (min-width:320px){
    html,body{font-size:11.5px!important}.viewport{max-width:320px}
}
@media only screen and (min-width:360px){
    html,body{font-size:12.5px!important}.viewport{max-width:360px}
}
@media only screen and (min-width:480px){
    html,body{font-size:16px!important}.viewport{max-width:480px}
}

@media screen and (max-width: 320px) {
    body{font-size: 12px;}
}
@media screen and (min-width: 321px) and (max-width: 413px) {
    body{font-size: 14px;}
}
@media screen and (min-width: 414px) and (max-width: 639px) {
    body{font-size: 15px;}
}
@media screen and (min-width: 640px) {
    body{font-size: 16px;}
}

img{ max-width: 100% ;}

/*左下角固定小图标*/
.leftSide{
    position: fixed;
    bottom: 20%;
    left: 0;
    z-index: 2;
    width: 40px;
}
.leftSide img{
    display: block;
    padding-top: 1px;
}
/*遮罩层*/
#weixinCode, #weiboCode, #tianmaoCode{
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 7;
}
/*二维码*/
.QRCode img{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    left: 10%;
    margin: auto;
    z-index: 8;
    width: 80%;
}
/*导航条下面第一个标题（图片或文字）*/
.title{
    padding-top: 15%;
    text-align: center;
}
.title img{
    display: block;
    margin: auto;
}
/*多屏页面，换屏标识*/
.notShow{
    display: none;
}

/*更多详情*/
.moreDetails {
    color: white;
    text-align: center;
    line-height: 2;
    background-color: #989933;
    border: 1px solid transparent;
    border-radius: 15px;
    max-width: 7.5rem;
    margin: auto;
}
/*尾部样式*/
.copyright{
    width:100%;
}
.copyright>img{ width:100%;
    max-width: 100%;
    margin-bottom:-1px;}
/*轮播图*/
.swiper-container {
    width: 100%;
    height: 100%;
    text-align: center;
}
.swiper-slide>img{max-width: 55%;margin: auto}
.swiper-slide .imgText{max-width: 50%;padding-bottom: 1.5%;display: block;}
.swiper-slide>a{display: block;font-weight: 600;padding-top: 1.5%;}
.swiper-slide>a> img{
    max-width: 1.5rem;
    vertical-align: middle;
}
.fl{ float:left;}
.fr{ float:right;}