@charset "utf-8";

/* CSS Document */
html {
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
}

body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
	border: 0px;
	background-color: #fff;
	height: auto;
}

img {
	border: 0px;
}

a {
	text-decoration: none;
	color: #000;
	outline: none;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
b {
	font-weight: normal;
	font: inherit;
	font-size: 100%;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}

p {
	margin: 0px;
	padding: 0px;
}

em,
i {
	font-style: normal;
}

input,
select {
	outline: none;
	margin: 0px;
	padding: 0px;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
	background-color: transparent;
	appearance: none;
	-moz-appearance: none;
	/* Firefox */
	-webkit-appearance: none;
	/* Safari 和 Chrome */
	background-color: transparent;
	border: 0;
}

dl,
dt {
	margin: 0px;
	padding: 0px;
}


::-moz-placeholder {
	color: #aaa;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
}

::-webkit-input-placeholder {
	color: #aaa;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
}

:-ms-input-placeholder {
	color: #aaa;
	font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 3.5vw;
}

/* 自适应正方形图片 */

.squarePicBox {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	z-index: 99;
}

.squarePicBox img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* 一行省略 */

.txtOne {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 两行省略 */

.txtTwo {
	width: 100%;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

/*flex布局*/

.lineFlex {
	display: flex;
	align-items: center;
}

.lineTFlex {
	display: flex;
	align-items: flex-start;
}

.lineAFlex {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.lineBFlex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.RlineBFlex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.lineCFlex {
	display: flex;
	align-items: center;
	justify-content: center;
}

.rowFlex {
	display: flex;
	flex-direction: column;
}

.rowCFlex {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.rowBFlex {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.flexWrap {
	display: flex;
	flex-wrap: wrap;
}

.txtFlex {
	display: flex;
	align-items: flex-end;
}


/*三角*/

.arrBottom {
	width: 0px;
	height: 0px;
	border-left: 1.2vw solid transparent;
	border-right: 1.2vw solid transparent;
	border-top: 1.4vw solid #aaa;
}

.arrTop {
	width: 0px;
	height: 0px;
	border-left: 1.2vw solid transparent;
	border-right: 1.2vw solid transparent;
	border-bottom: 1.4vw solid #ccc;
}

.arrLeft {
	width: 0px;
	height: 0px;
	border-bottom: 1.2vw solid transparent;
	border-top: 1.2vw solid transparent;
	border-right: 1.4vw solid #ccc;
}

.arrRight {
	width: 0px;
	height: 0px;
	border-bottom: 1.2vw solid transparent;
	border-top: 1.2vw solid transparent;
	border-left: 1.4vw solid #ccc;
}

.subTitle {
	font-size: 3.2vw;
	color: #999;
}

.submitBtn {
	width: 80vw;
	margin: 10vw auto 5vw;
	height: 10vw;
	line-height: 10vw;
	border-radius: 10vw;
	font-size: 4vw;
	font-weight: bold;
	text-align: center;
	/* background-image: linear-gradient(to right, #facb36, #fce788); */
	box-shadow: 0 0 2vw #facb36;
	background: #fedd1d;
	color: #333;
}

.nodata {
	width: 100%;
}

.nodata img {
	width: 100%;
}

/*底部*/
.clearFoot {
	height: 16vw;
}

.footer {
	width: 100%;
	background: #fff;
	position: fixed;
	z-index: 9000;
	left: 0;
	bottom: 0;
	height: 14vw;
	box-shadow: 0 0 3vw #ccc;
}

.footer a {
	display: block;
	width: 30%;
	text-align: center;
	font-size: 3.5vw;
	color: #ccc;
	font-weight: normal;
}

.footer a img {
	width: 6vw;
	margin-bottom: 1vw;
}

.footer .on {
	color: #f7db63;
}

.header {
	width: 92vw;
	height: 12vw;
	padding: 0 4vw;
	color: #fff;
	position: relative;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header.top {
	background: #fedd1d;
}

.header .headerBtn {
	width: 20vw;
}

.header a{
	display: block;
}

.header .headerBtn .back {
	width: 2.4vw;
	flex-shrink: 0;
}

.header .title {
	font-size: 4vw;
	font-weight: bold;
	height: 10vw;
	line-height: 10vw;
	color: #000;
}

.morePic{
	width: 1.6vw;
}

input[type="checkbox"].checkBox {
    border: 1px solid #cccccc;
    width: 4vw;
    height: 4vw;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
}

input[type="checkbox"].checkBox:checked {
    border: 1px solid #b58d46;
    background: url(../images/duihao.png) no-repeat center center #fedd1d;
    background-size: 4vw auto;
    width: 4vw;
    height: 4vw;
    display: inline-block;
}

.checkBox {
    display: none;
}