/********************* 基本样式  蓝色 ****************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: microsoft yahei "SimSun","Songti SC","SimHei";
}
ul{
	list-style: none;
}
a{
	text-decoration: none;
	color: #000;
}
input[type="search"]::-webkit-search-cancel-button{
    display: none;
}
body {
    min-width: 1400px;
    position: relative;
}
body.openMourn {
    -webkit-filter: grayscale(100%); /* webkit */
    -moz-filter: grayscale(100%); /*firefox*/
    -ms-filter: grayscale(100%); /*ie9*/
    -o-filter: grayscale(100%); /*opera*/
    filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); 
    filter: gray; /*ie9- */
}
/********************* 头部 ****************************/
.header {
    width: 100%;
    /* background: url(../../images/theme1/bg_header.png) no-repeat;
    background-size: cover; */
}
/********************* 底部 ****************************/
.footer {
    width: 100%;
}

/* 消息体 */
.toast {
	position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px 40px;
    border-radius: 20px;
    background: rgba(00, 00, 00, .6);
    color: #fff;
    font-size: 16px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.toast img {
	width: 60px;
    height: 60px;
    margin-bottom: 10px;
    -webkit-animation: rotate 6s infinite linear;
	-moz-animation: rotate 6s infinite linear;
	-ms-animation: rotate 6s infinite linear;
	-o-animation: rotate 6s infinite linear;
	animation: rotate 6s infinite linear;
}
@keyframes rotate {
    0% {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
    100% {
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }
}
@keyframes imgscale {
    0% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.4);
    }
    75% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes imgrotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes bordertowh {
    0% {
        width: 20%;
        height: 20%;
    }
    25% {
        width: 40%;
        height: 40%;
    }
    50% {
        width: 60%;
        height: 60%;
    }
    75% {
        width: 80%;
        height: 80%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}
@keyframes bordertow {
    0% {
        width: 20%;
        opacity: 0.2;
    }
    25% {
        width: 40%;
        opacity: 0.4;
    }
    50% {
        width: 60%;
        opacity: 0.6;
    }
    75% {
        width: 80%;
        opacity: 0.8;
    }
    100% {
        width: 100%;
        opacity: 1;
    }
}

.backtop {
    position: fixed;
    bottom: 150px;
    right: 150px;
    cursor: pointer;
    z-index: 999;
}
.backtop>img {
    width: 48px;
    height: 48px;
}


/* 自定义轮播样式 */
.my-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    display: inline-block;
    margin: 0 5px;
}
.my-bullet-active {
    opacity: 1;
    background-color: #fff;
}
.my-pic-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #32b16c;
    background-color: transparent;
    display: inline-block;
    margin: 0 5px;
}
.my-pic-bullet-active {
    opacity: 1;
    background-color: #32b16c;
}


