/*
    基础样式
*/
body{-webkit-text-size-adjust: 100% !important;}
*{
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
}
body,html{
    width: 100%;
    height: 100%;
}
img{
	
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
    pointer-events: none; 
    display: block;
	width: 100%;
}
a{ text-decoration: none; }
ul,li{ list-style: none; }
select,
textarea,
input {
	display: block;
	vertical-align: top;
	border: 0;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	background: none;
}
input::-webkit-input-placeholder { /* WebKit browsers */
    color: #ababab;
}
select{
	color: #b1b1b1;
}
.PIC_CANCHOOSE{
    -webkit-touch-callout:inherit !important;
	-webkit-user-select:auto !important;
	-khtml-user-select:auto !important;
	-moz-user-select:auto !important;
	-ms-user-select:auto !important;
	user-select:auto !important;
	pointer-events: auto !important; 
}
.BG_COVER{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
.BG_CONTAIN{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
}
.AUTO_CENTER{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.H_CENTER{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.W_CENTER{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

/* 
    横屏提示
*/
.turnBox {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 999;
}
.openAlertContent{
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.turnBox p {
    color: #fff;
    font-size: 20px;
    font-size: 0.2rem;
    letter-spacing: 2px;
    width: 100%;
    display: block;
    margin-top: 0.2rem;
}

.turnBox img {
    width: 0.8rem;
    margin: 0 auto 0;
    animation: rotate 1.5s ease-in-out infinite;
    -webkit-animation: rotate 1.5s ease-in-out infinite;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
    }
}

@media screen and (min-aspect-ratio: 13/9) {
    .turnBox {
        display: block;
    }
}

@media screen and (max-aspect-ratio: 13/9) {
    .turnBox {
        display: none;
    }
}