/* 横屏代码优化整理 */

/* 字体引入 */
/* @font-face {
	font-family: 'fzlt';
	src: url('../fonts/fzlt.TTF');
} */

html{
	font-family: 'Microsoft Yahei','Helvetica Neue',Tahoma,Arial,PingFangSC-Regular,'Hiragino Sans GB',sans-serif;
	-webkit-font-smoothing: antialiased;  /*chrome、safari  抗锯齿渲染可以使字体看起来会更清晰舒服*/
	-moz-osx-font-smoothing: grayscale;/*firefox*/
	-webkit-text-size-adjust: 100%; /* 解决默认会放大文字的问题 */
	text-size-adjust: none;
	/* user-select兼容处理 */
	-moz-user-select:none;/*火狐*/
	-webkit-user-select:none;/*webkit浏览器*/
	-ms-user-select:none;/*IE10*/
	-khtml-user-select:none;/*早期浏览器*/
	user-select:none;
	color: #333;
	overflow: hidden;
}
  
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
  
body {
	background-color: #fff4d9; 
}

a{
	text-decoration: none;
	color: #333;
}

a:hover {
	color: #c81623;
}

img{
	vertical-align: middle;
}

li{
	list-style: none;
}

i,em{
	font-style: normal;
}

.clearfix:after{
	content: '';
	display: block;
	clear: both;
}

button {
	cursor: pointer;
}

/* 安卓点击高亮 */
.andriodClickHeighLight{
	-webkit-tap-highlight-color:rgba(255,255,255,0)
}

/* 总体公共布局 */
.layout{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: start;
        overflow: hidden;
}

.layout-left{
	width: 50%;
}

.layout-right{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* header布局 */
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 127px;
    background: #fff5e4;
    padding: 0 33px;
  }
.header .header-back{
    cursor: pointer;
  }
.header .header-title{
    margin-left: 120px;
  }
.header > div .header-tel-img{
    vertical-align: middle;
  }
.header > div > span{
    color: #ff7732;
    vertical-align: middle;
    font-size: 21px;
    padding-left: 5px;
  }

/* 底部布局 */
.bottomfixed{
	position: relative;
	z-index: 5;
	text-align: right;
	width:100%;
	height: 50px;
	line-height: 50px;
	background: #fecd4e;
}
.bottomfixed span{
	color: #ff7732;
	font-size: 18px;
	padding-right: 25px;
}




























/* 弹窗 */
.lkmask{
    display: none;
    position: fixed;
    width: 50%;
    top: 0;
    bottom: 0;
    right: 0;
	background: rgba(0,0,0,.5);
	z-index: 10000;
}
.lkmask .lkalert{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 50%;
	height: 500px;
	border-radius: 10px;
	padding: 20px;
	background: url(../img/getrice-bg.png) no-repeat left top/cover;
	color: rgb(248, 87, 7);
	font-size:20px;
}
.lkmask .lkalert p+p{
	margin-top:15px;
}

  /* 弹窗动画 */
.bounce-in-top {
	-webkit-animation: bounce-in-top 1.1s both;
	        animation: bounce-in-top 1.1s both;
}
@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/* 左侧轮播共用样式 */
video{
	width:100%; 
	height:100%;
	object-fit: fill;
}

#slider>div{
	position: relative;
	width: 100%;
	height: 100vh;
}