.adjecting {
    display: inline-block;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin-x: 50%;
}
.adjecting .front-face, .adjecting .back-face {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
.adjecting .front-face {
    position: absolute;
}
.adjecting .back-face {
    position: relative;
}

/* 时间天气样式 */
.weather-box {
    width: 100%;
    height: 1.3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.weather-box>.data {
    
    height: 0.65rem;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	
}

.data>p {
    font-size: 0.16rem;
    margin: 0 5px;
    color: #cdddf7;
    text-align: center;
    margin: 0;
}

.data>p>span {
    margin: 0 5px;
}

.data>p.time {
    font-size: 0.42rem;
    height: 0.42rem;
    line-height: 0.42rem;
}

.weather {
	width: 100%;
    height: 1.3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.weather>.data{
	height: 0.65rem;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.weather>img {
    height: 100%;
}

#weather{
	display: flex;
	justify-content: space-around;
	margin-left: 0.2rem;
}
#weather>p {
    font-size: 0.12rem;
    color: #cdddf7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	margin-right: 0.2rem;
    height: 0.24rem;
    line-height: 0.24rem;
}

.weather>div>p.active {
    color: white;
    font-size: 0.16rem;
}
.notice{
	margin-top: -0.33rem;
	width: 94%;
	white-space: nowrap;
	overflow: hidden;
}

	.ewords,.words {
		position: relative;
		animation:move 30s linear infinite;
	   
	}
	.words::after{
		position: absolute; 
		right:-100%;
		content:attr(text);
	}
	@keyframes move {
				0% {
					transform: translateX(0);
				}
				100% {
					transform: translateX(-100%);
				}
			}