@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	-webkit-touch-callout:none;/*系统默认菜单被禁用*/
	-webkit-user-select:none;/*webkit浏览器*/
	-khtml-user-select:none;/*早起浏览器*/
	-moz-user-select:none;/*火狐浏览器*/
	-ms-user-select:none;/*IE浏览器*/
	user-select:none;/*用户是否能够选中文本*/
}
input {
	-webkit-user-select:auto; /*webkit浏览器*/

}
textarea {                                                                
	-webkit-user-select:auto; /*webkit浏览器*/
}
a {
    cursor: pointer;
    text-decoration: none; 
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;}


html {
    min-height: 100%;
    overflow-x: hidden;
    /* background-image: url("./../images/startBg.jpg"); */
    background-size: 100%; }

body {
    width: 100%;
    font-size: .32rem;
    overflow-x: hidden;
    /*body必须有一个默认大小*/
    /* background: #0D254B; */ }

img {
	-webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
    display: block; }

.major_float {
    /* display: none; */
}
/**禁止ios长按二维码，调用自身菜单，而不识别二维码*/
.major_image {
    -webkit-touch-callout: none;
}
/* 弹窗 */
.float {
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    position: absolute;
    z-index: 1000;
    text-align: center; 
	-webkit-user-select: none;
    -moz-user-focus: none;
    -moz-user-select: none;
	}
.float > img {
    width: calc(220/320 *100%);
    margin: 0 auto .3rem;
}
.float-container-text {
    width: calc(280/320 *100%);
    font-size: .32rem;
    margin: 0 auto;
    color: #fff;
    /* text-shadow: 2px 2px 3px #fff; */
    letter-spacing: 2px;
    /* text-shadow: #fff 1px 0 0, #fff 0 1px 0, #fff -1px 0 0, #fff 0 -1px 0; */
    /* -webkit-text-shadow: #fff 1px 0 0,#fff 0 1px 0,#fff -1px 0 0,#fff 0 -1px 0;  */
}
.float-container-btn {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: .6rem;
}
.float-container-btn > a {
    width: calc(306/750 *100%);
    height: 1.05rem;
    display: block;
    background-size: 100% 100%;
    /*  background-image: url(./../images/btnBG.png); */
    color: #fff;
    font-size: .34rem;
    margin-right: .4rem;
    line-height: .95rem;
    letter-spacing: 2px;
    padding: 0 .16rem;
    box-sizing: border-box;
}
.float-container-btn > a:last-child {
    margin-right: 0;
}

.floatContainer {
    width: 85%;
    background: #f4da00;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    display: inline-block;
    margin-top: -0.4rem; }

.floatContent {
    margin: 4px;
    background: #fffef1;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0.3rem 0.3rem 0.1rem; }

.floatDetail {
    margin: 0.6rem auto 0.8rem;
    font-size: 0.32rem;
    line-height: 0.4rem;
    color: #2b2b2b;
    text-align: center; }

.floatBtn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 0.2rem; }
.floatBtn .btn {
    display: inline-block;
    width: 33%;
    height: .7rem;
    line-height: .7rem;
    border-radius: 8px;
    background: #dcd249;
    color: #f7f4f4; }
.mod-orient-layer {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0; top: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 9997
}
.mod-orient-layer__content {
    position: absolute;
    width: 100%;
    top: 45%;
    margin-top: -75px;
    text-align: center
}
.mod-orient-layer__icon-orient {
    background-image: url('../images/rotate.png');
    display: inline-block;
    width: 67px;
    height: 109px;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -webkit-animation: rotation infinite 1.5s ease-in-out;
    animation: rotation infinite 1.5s ease-in-out;
    -webkit-background-size: 67px;
    background-size: 67px
}
.mod-orient-layer__desc {
    margin-top: 20px;
    font-size: 15px;
    color: #fff
}

/**弹窗结束*/
.major_page, .major_float {
    overflow: hidden;
}