/* ------------------------------------全局定义---------------------------------------- */

/* 将具有默认margin和padding的标记置零，所有标记的margin、padding都在使用时具体定义 */

* {
    margin: 0;
    padding: 0;
}

/* 修正IE5.x和IE6的斜体溢出bug */

* html body {
    overflow: visible;
}

* html iframe,
* html frame {
    overflow: auto;
}

* html frameset {
    overflow: hidden;
}

/* 常用标签，基本标签默认样式取消，HTML标签，取消基本标签默认样式，防止不同浏览器显示效果不同，text-align:center; 解决不同浏览器居中问题 */

body {
    color: #000;
    background: #FFF;
    font: 12px/22px Verdana, Arial, sans-serif, "Times New Roman", 宋体;
    text-align: center;
}


input,
select {
    font-size: 12px;
    vertical-align: middle;
}

/* 设置内容左对齐，恢复因BODY设置剧中产生的继承 */

body div {
    text-align: left;
}

/* 标签属性，textarea,input 强制输入时内容超出时换行 */

textarea,
input {
    word-wrap: break-word;
    word-break: break-all;
    padding: 0px;
}

/* 清除ul列表标记的样式，ul列表更多的用在不需要列表前置符号的样式里 */

li {
    list-style-type: none;
}

/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */

img {
    border: 0 none;
}

/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */

a:link,
a:visited {
    color: #04C;
    text-decoration: none;
}

a:hover {
    color: #F60;
    text-decoration: underline;
}

/* 去掉链接的虚线框 */

a {
    outline: none;
}

[class*=van-hairline]::after {
    border: none !important;
}

.van-cell:not(:last-child)::after {
    border: none !important;
}

#firstShow {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    transition: opacity .5s;
    opacity: 1;
}

#firstShow > .firstShow__body {
    position: absolute;
    width: 100%;
    height: 20px;
    top: 45%;
    display: flex;
    justify-content: center;
}

#firstShow > .firstShow__body > span {
    color: #f8572b;
    margin-right: 10px;
    font-size: 12px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;

}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 1s;

}

.fadeInUp2 {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 1.4s;
}

body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto;
}

body .van-dialog {
    height: 260px;
    width: 300px;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 18px 28px;
}

body .van-button__text {
    color: #fff;
}

body .van-button--default {
    height: 34px;
    width: 90px;
    background: #599bff;
    border-radius: 34px;
}

body .van-hairline--top {
    text-align: center;
    margin-bottom: 21px;
}

body .van-dialog__header {
    margin: 18px auto 0;
    font-weight: 700;
    font-size: 18px;
    color: #3b426b;

}

body .van-dialog__message {
    line-height: 21px;
    font-size: 12px;
    padding-bottom: 14px;
    color: #7d88a2;
}

body .van-dialog__header::before {
    content: '';
    background: url(/static/image/developmentService/fail.png) no-repeat center top;
    background-size: 73px 73px;
    height: 78px;
    display: block;
    margin: 0 auto;
}

body .van-dialog__header #text {
    padding-left: 10px;
}

body .van-button__text {
    font-size: 12px;
}

body .success .van-dialog__header::before {
    content: '';
    background: url(/static/image/developmentService/success.png) no-repeat center top;
    background-size: 73px 73px;
    height: 78px;
    display: block;
    margin: 0 auto;
}

.renovation--show-swiper-box .show-swiper{width:100%}
.van-popup{ background-color:#fff !important; }
.pagination {
	padding: 20px 0 30px;
	width: 100%;
	text-align: center;
	clear: both;
}
.pagination a {
	color: #666;
	padding: 0 10px;
	margin: 0 3px;
	background: #fff;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
.pagination * {
	display: inline-block;
	_zoom: 1;
	_display: inline;
	vertical-align: middle;
	line-height: 30px;
	padding-bottom: 1px;
}
.pagination a:hover {
	display: inline-block;
	border-color: #8000FF;
}
.pagination .hover {
	display: inline-block;
	color: #fff;
	background: #8000FF;
	border-color: #8000FF;
}
.pagination .active a{background: #8000FF;color: #fff;}