﻿@charset "utf-8";

/* CSS Document */


/* index-刷量专区 */

.index-hexin .box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

	.index-hexin .box ul li {
		width: 24%;
		border: 1px solid #cccccc;
		border-radius: 2px;
		overflow: hidden;
		margin-bottom: .1rem;
	}

		.index-hexin .box ul li > a {
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}

		.index-hexin .box ul li .pic {
			position: relative;
			width: 100%;
			overflow: hidden;
		}

			.index-hexin .box ul li .pic .img {
				object-fit: cover;
				transition: all .8s;
				transform: scale(1);
			}

.index-hexin .box li .pic .shade {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
}

.index-hexin .box li .pic .icon {
	position: absolute;
	left: 0;
	top: 45%;
	right: 0;
	margin: 0 auto;
	width: 15%;
}

.index-hexin .box li .name {
	font-size: 20px;
	padding: .3rem 0 .19rem;
}

.index-hexin .box li .more {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-bottom: .26rem;
	color: #999;
}


/* index-刷量专区-pc */

@media screen and (min-width:768px) {
	.index-hexin .box.pc {
		display: block;
	}

	.index-hexin .box.iphone {
		height: 1px;
		overflow: hidden;
		opacity: 0;
	}

	.index-hexin .box ul li:hover {
		border: 1px solid #2f82ff;
	}

		.index-hexin .box ul li:hover .pic .img {
			transform: scale(1.05);
		}

	.index-hexin .box li:hover .pic .icon {
		-webkit-animation: tiaodong 1s linear;
		animation: tiaodong 1s linear;
	}

	.index-hexin .box li:hover .more {
		color: #2f82ff;
	}
}


/* index-刷量专区-手机 */

@media screen and (max-width:767px) {
	.index-hexin .box.pc {
		display: none;
	}

	.index-hexin .box.iphone {
		height: auto;
	}

	.index-hexin .box ul {
		justify-content: center;
	}

		.index-hexin .box ul li {
			width: 96%;
		}

	.index-hexin .box li .name {
		font-size: 16px;
	}
}


/* index-操作流程 */

.index-liucheng {
	background-color: #fafafa;
	padding-bottom: 3%;
}

	.index-liucheng .box .img {
		margin: 0 auto;
		width: auto;
		max-width: 100%;
	}


/* index-资讯热文 */

.index-youdao {
	margin-bottom: .5rem;
}

	.index-youdao .box ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

@media screen and (min-width:768px) {
	.index-youdao .box.pc {
		display: block;
	}

	.index-youdao .box.iphone {
		height: 1px;
		overflow: hidden;
		opacity: 0;
	}
}

.index-youdao .box ul li {
	width: 32%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: .1rem;
	box-shadow: 0 0 .27rem 0 rgba(197, 197, 197, .69);
}

	.index-youdao .box ul li .pic {
		position: relative;
		width: 100%;
		height:2.1rem;
		border-radius: 6px;
		overflow: hidden;
	}

		.index-youdao .box ul li .pic .img {
			object-fit: cover;
			transition: all .8s;
			transform: scale(1);
		}

@media screen and (min-width:768px) {
	.index-youdao .box ul li:hover .pic .img {
		transform: scale(1.05);
	}
}

.index-youdao .box li .name {
	font-size: 24px;
	padding: .2rem .2rem;
}

.index-youdao .box li .intro {
	font-size: 14px;
	height: .64rem;
	line-height: .32rem;
	color: #808080;
	padding: 0 .24rem;
}

.index-youdao .box li .bt-bar {
	padding: .2rem;
	display: flex;
	align-items: center;
	font-size: .24rem;
	color: #808080;
}

	.index-youdao .box li .bt-bar .day {
		font-size: .36rem;
		color: #333;
	}

	.index-youdao .box li .bt-bar .line {
		margin: 0 .1rem;
		width: .19rem;
		height: .02rem;
		background-color: #808080;
	}

	.index-youdao .box li .bt-bar .date {
		flex: 1;
	}

	.index-youdao .box li .bt-bar .look-more {
		position: relative;
		width: 68px;
		height: 25px;
		border-radius: 100px;
		text-align: center;
		line-height: 25px;
		overflow: hidden;
	}

		.index-youdao .box li .bt-bar .look-more .arrow {
			position: absolute;
			right: 0%;
			top: 50%;
			transform: translateY(-50%);
			color: #808080;
		}

.index-news .box li:hover .bt-bar .look-more .arrow {
	display: none;
}

.index-youdao .box li .bt-bar .look-more .bg {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
	height: 100px;
	margin: -50px 0 0 -50px;
	border-radius: 100%;
	background: linear-gradient(to right, #2f82ff, #00aaff);
	opacity: 0;
	transform: scale3d(0, 0, 0);
	transition: opacity .5s, transform .5s;
}

.index-youdao .box li:hover .bt-bar .look-more .bg {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}

.index-youdao .box li .bt-bar .look-more .more-txt {
	position: relative;
	display: block;
	color: #fff;
	opacity: 0;
}

.index-youdao .box li:hover .look-more .more-txt {
	opacity: 1;
}

@media screen and (min-width:768px) {
	.index-youdao .box li:hover .more {
		color: #f77a20;
	}
}


/* 谱谱有道，看看行家怎么说 > 手机 */

@media screen and (max-width:767px) {
	.index-youdao .box.pc {
		display: none;
	}

	.index-youdao .box.iphone {
		height: auto;
	}

	.index-youdao .box ul {
		justify-content: center;
	}

		.index-youdao .box ul li {
			width: 96%;
		}

	.index-youdao .box li .name {
		font-size: 16px;
		padding: .2rem .1rem;
	}
}


/* 新闻资讯 */

.news-box {
	padding: .45rem .1rem 1rem;
	display: flex;
}

	.news-box .left {
		flex: 1;
	}

		.news-box .left .list dl {
			display: flex;
			margin-bottom: .5rem;
		}

		.news-box .left .list dt.pic {
			display: flex;
			flex-shrink: 0;
			width: 33%;
			height: 1.5rem;
			overflow: hidden;
		}

			.news-box .left .list dt.pic a {
				width: 100%;
				height: 100%;
			}

			.news-box .left .list dt.pic img {
				transition: all .8s;
				height: 100%;
				object-fit: cover;
			}

			.news-box .left .list dt.pic:hover img {
				transform: scale(1.05);
			}

		.news-box .left .list dd {
			flex: 1;
			margin-left: 2%;
			display: flex;
			flex-direction: column;
			width: 0;
		}

			.news-box .left .list dd .title {
				padding-bottom: 3%;
				display: flex;
				justify-content: space-between;
			}

			.news-box .left .list dd a:hover {
				color: #2f82ff;
			}

			.news-box .left .list dd .title .span-L {
				font-size: 24px;
				width: 80%;
				white-space: nowrap;
				text-overflow: ellipsis;
				overflow: hidden;
			}

			.news-box .left .list dd .title .span-R {
				flex-shrink: 0;
				color: #2f82ff;
				font-size: 14px;
			}

			.news-box .left .list dd .intro {
				flex: 1;
				color: #888;
			}

				.news-box .left .list dd .intro .intro-txt {
					height: 36px;
					font-size: 14px;
				}

			.news-box .left .list dd .bottom {
				text-align: right;
				color: #c1c1c1;
			}

				.news-box .left .list dd .bottom span:not(.source) {
					margin-left: 3%;
				}

				.news-box .left .list dd .bottom span i.icon {
					margin-right: .1rem;
				}

@media screen and (max-width:767px) {
	.news-box .left .list dt.pic {
		height: auto;
	}

	.news-box .left .list dd .title {
		padding: 3% 0;
	}

		.news-box .left .list dd .title .span-L {
			font-size: 14px;
		}

		.news-box .left .list dd .title .span-R {
			font-size: 12px;
		}

	.news-box .left .list dd .intro .intro-txt {
		height: auto;
		font-size: 12px;
	}

	.news-box .left .list dd .bottom {
		margin-top: 2%;
	}

		.news-box .left .list dd .bottom span {
			font-size: 12px;
		}

			.news-box .left .list dd .bottom span:not(.source) {
				margin-left: 1%;
			}

			.news-box .left .list dd .bottom span i.icon {
				margin-right: 1%;
				font-size: 12px;
			}
}


/* 热门标签 */

.hot-right {
	width: 27%;
	flex-shrink: 0;
	margin-left: 3%;
}

@media screen and (max-width:767px) {
	.hot-right {
		display: none;
	}
}

.hot-box {
	margin-bottom: 60px;
}

	.hot-box .title {
		line-height: 20px;
	}

		.hot-box .title span {
			font-size: 20px;
		}

		.hot-box .title i.line {
			display: inline-block;
			margin-right: 10px;
			width: 4px;
			height: 20px;
			border-radius: 2px;
			background: #2f82ff;
			vertical-align: middle;
		}

		.hot-box .title span {
			display: inline-block;
			vertical-align: middle;
		}

	.hot-box .hot-tag {
		padding: 30px 0 10px;
	}

		.hot-box .hot-tag span {
			display: inline-block;
			padding: 9px 17px;
			color: #808080;
			margin: 0 8px 10px 0;
			background: #f7f8fc;
			border-radius: 2px;
			cursor: pointer;
		}

			.hot-box .hot-tag span.on {
				color: #fff;
				background: #2f82ff;
			}

	.hot-box .p-more {
		text-align: right;
		font-size: 12px;
	}

		.hot-box .p-more a {
			cursor: pointer;
			color: #c1c1c1;
		}

			.hot-box .p-more a:hover {
				color: #2f82ff;
			}

		.hot-box .p-more i.iconfont {
			margin-left: 10px;
		}

		.hot-box .p-more i.iconfont {
			margin-left: 10px;
		}

	.hot-box .hot-pic-txt {
		font-size: 16px;
		padding-top: 22px;
	}

		.hot-box .hot-pic-txt .item {
			display: block;
			margin-bottom: 60px;
		}

			.hot-box .hot-pic-txt .item .pic {
				position: relative;
				max-height: 180px;
				overflow: hidden;
			}

				.hot-box .hot-pic-txt .item .pic img {
					object-fit: cover;
					transition: all .8s;
				}

				.hot-box .hot-pic-txt .item .pic:hover img {
					transform: scale(1.05);
				}

			.hot-box .hot-pic-txt .item:last-child {
				margin-bottom: 0px;
			}

	.hot-box .meng {
		position: absolute;
		left: 0%;
		top: 0%;
		right: 0%;
		bottom: 0%;
		margin: 0 auto;
		background: rgba(0, 0, 0, 0.5);
	}

		.hot-box .meng .play {
			position: absolute;
			left: 50%;
			top: 50%;
			margin: -22px 0 0 -22px;
			overflow: hidden;
			color: #fff;
			font-size: 44px;
		}

	.hot-box .hot-pic-txt .txt {
		padding-top: 20px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

		.hot-box .hot-pic-txt .txt:hover {
			color: #2f82ff;
		}


/* 新闻资讯 详情 */

.pinglun-out {
	display: flex;
	justify-content: space-between;
}

	.pinglun-out .left {
		flex: 1;
		margin-right: 4%;
	}

.nwesDetails-box {
	padding-top: 40px;
}

.nwesDetails-top {
	border-bottom: 1px solid #e5e5e5;
}

	.nwesDetails-top .title-share {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}

		.nwesDetails-top .title-share .title {
			font-size: 30px;
			flex: 1;
			width: 0;
		}

		.nwesDetails-top .title-share .share {
			font-size: 14px;
			color: #407dbc;
			cursor: pointer;
			flex-shrink: 0;
		}

	.nwesDetails-top .bottom-bar {
		padding: .25rem 0 .20rem;
		text-align: right;
		color: #c1c1c1;
		display: flex;
		justify-content: space-between;
	}

		.nwesDetails-top .bottom-bar span {
			display: inline-block;
			vertical-align: middle;
			padding: .05rem 0;
			margin-left: .03rem;
		}

			.nwesDetails-top .bottom-bar span .icon {
				font-size: .16rem;
			}

			.nwesDetails-top .bottom-bar span em {
				padding: 0 .09rem;
			}

			.nwesDetails-top .bottom-bar span i {
				margin-right: .09rem;
			}

			.nwesDetails-top .bottom-bar span:first-child {
				margin-left: 0px;
			}

		.nwesDetails-top .bottom-bar .span-pm {
			color: #808080;
			background: #f6f7fc;
			margin-left: .19rem;
		}

.nwesDetails-box .article {
	line-height: 24px;
}

	.nwesDetails-box .article .article-title {
		padding: .4rem 0 .1rem;
		font-size: 20px;
	}

.nwesDetails-box .zan-num {
	margin: .5rem auto;
	width: 1.06rem;
	padding: .05rem 0;
	border-radius: 2px;
	background: #f7f8fc;
	display: flex;
	align-items: center;
	justify-content: center;
}

	.nwesDetails-box .zan-num .zan {
		position: relative;
		cursor: pointer;
		margin-right: .05rem;
		font-size: 40px;
		color: #2f82ff;
	}

	.nwesDetails-box .zan-num .num {
		font-size: .16rem;
		color: #808080;
	}

.pinglun-box .p-title {
	font-size: .26rem;
}

.pinglun-box .textarea-box {
	font-size: .14rem;
	padding: .2rem;
	background: #f7f8fc;
	margin: .3rem auto .2rem;
}

	.pinglun-box .textarea-box textarea {
		width: 100%;
		height: 1rem;
		resize: none;
		background: #f7f8fc;
	}

.pinglun-box .btn {
	width: 90px;
	height: 40px;
	line-height: 40px;
	border-radius: 2px;
	background: #2f82ff;
	text-align: center;
	font-size: 16px;
	color: #fff;
	margin: 0 auto;
	cursor: pointer;
}

	.pinglun-box .btn:hover {
		background: #f86b02;
	}

.pinglun-list {
	padding: .25rem 0 .6rem;
}

	.pinglun-list .p-title {
		font-size: .2rem;
	}

	.pinglun-list .item {
		position: relative;
		margin-top: .3rem;
		border-bottom: 1px solid #f7f8fc;
		padding-bottom: .3rem;
	}

		.pinglun-list .item .head {
			display: inline-block;
			width: .45rem;
			height: .45rem;
			border-radius: 100%;
			overflow: hidden;
			vertical-align: top;
		}

		.pinglun-list .item .div-M {
			display: inline-block;
			width: 80%;
			margin-left: 2%;
		}

			.pinglun-list .item .div-M .name {
				font-size: 18px;
				padding-bottom: .18rem;
				display: block;
			}

			.pinglun-list .item .div-M .txt {
				line-height: 20px;
			}

		.pinglun-list .item .time {
			position: absolute;
			right: 0%;
			bottom: .3rem;
		}

	.pinglun-list .look-all {
		width: 1.5rem;
		margin: .6rem auto 0;
		color: #808080;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
	}

		.pinglun-list .look-all:hover {
			color: #2f82ff;
		}

		.pinglun-list .look-all i.iconfont {
			margin-left: .05rem;
		}

@media screen and (max-width:991px) {
	.nwesDetails-top .title-share .title {
		font-size: 24px;
	}
}

@media screen and (max-width:767px) {
	.nwesDetails-box {
		padding-top: 30px;
	}

		.nwesDetails-box .zan-num .zan {
			font-size: 20px;
		}

	.pinglun-out .left {
		flex: 1;
		margin: 0 2%;
	}

	.nwesDetails-box .article {
		line-height: 26px;
	}

		.nwesDetails-box .article .article-title {
			font-size: 18px;
		}

	.pinglun-list .item .div-M .name {
		font-size: 16px;
	}

	.pinglun-box .btn {
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}


/* 关于我们 */

.about-content {
	margin-bottom: 3%;
}

	.about-content .box {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}

		.about-content .box .txt-box {
			flex: 1;
			margin-right: 15%;
		}

			.about-content .box .txt-box .title {
				font-size: 30px;
				font-weight: 700;
			}

			.about-content .box .txt-box .intro {
				font-size: 18px;
				line-height: 200%;
				margin: 5% 0;
			}

			.about-content .box .txt-box .list {
				display: flex;
				flex-wrap: wrap;
			}

				.about-content .box .txt-box .list .item {
					display: flex;
					flex-direction: column;
					align-items: center;
					margin: 0 15% 5% 0;
				}

					.about-content .box .txt-box .list .item:nth-child(4n) {
						margin-right: 0;
					}

					.about-content .box .txt-box .list .item .icon {
						width: 45px;
						margin-bottom: 10px;
						transform: rotate(0deg);
						transition: all .3s linear;
					}

		.about-content .box .pic {
			flex-shrink: 0;
			width: 30%;
			transition: all .8s;
			transform: scale(1);
		}

@media screen and (max-width:910px) {
	.about-content .box .txt-box .list .item {
		margin-right: 10%;
	}
}

@media screen and (min-width:768px) {
	.about-content .box .pic:hover {
		transition: all .8s;
		transform: scale(1.01);
	}

	.about-content .box .txt-box .list .item:hover .icon {
		transform: rotate(15deg);
		transition: all .2s linear;
	}
}


/* 关于我们-手机 */

@media screen and (max-width:767px) {
	.about-content .box {
		flex-direction: column;
	}

		.about-content .box .txt-box {
			margin-right: 0;
		}

			.about-content .box .txt-box .title {
				font-size: 18px;
			}

			.about-content .box .txt-box .intro {
				font-size: 14px;
				line-height: 180%;
			}

			.about-content .box .txt-box .list .item {
				width: 25%;
				margin: 0 0 5% 0;
			}

				.about-content .box .txt-box .list .item .icon {
					width: 30px;
					margin-bottom: 10px;
				}

				.about-content .box .txt-box .list .item .txt {
					font-size: 12px;
				}

		.about-content .box .pic {
			width: 90%;
			margin-bottom: 5%;
		}
}


/* 帮助中心 */

.help-content {
	display: flex;
	margin: 5% auto;
}

	.help-content .side-nav {
		display: flex;
		flex-direction: column;
		width: 200px;
		background-color: #fafafa;
		padding-top: 10px;
		margin-right: 3%;
	}

		.help-content .side-nav .item {
			position: relative;
			margin-bottom: 10px;
			padding-left: 30px;
		}

			.help-content .side-nav .item.on {
				color: #2f82ff;
			}

			.help-content .side-nav .item::before {
				content: '';
				position: absolute;
				left: 15px;
				top: 50%;
				transform: translate3d(-50%, -50%, 0);
				width: 4px;
				height: 4px;
				border-radius: 100%;
				background-color: #999999;
			}

			.help-content .side-nav .item.on::before {
				background-color: #2f82ff;
			}

	.help-content .detail {
		flex: 1;
	}


/* 帮助中心-手机-pc */

@media screen and (min-width:768px) {
	.help-content .side-nav .item:hover {
		color: #2f82ff;
	}

		.help-content .side-nav .item:hover::before {
			background-color: #2f82ff;
		}

	.site-mobile-shade {
		display: none;
	}
}


/* 帮助中心-手机 */

@media screen and (max-width:767px) {
	.help-content .side-nav {
		position: fixed;
		left: -200px;
		top: 0;
		bottom: 0;
		z-index: 1000;
		overflow-x: hidden;
	}

	.site-tree-mobile {
		display: block;
		position: fixed;
		bottom: 15px;
		left: 15px;
		width: 50px;
		height: 50px;
		line-height: 50px;
		border-radius: 2px;
		text-align: center;
		background-color: rgba(0, 0, 0, .7);
		color: #fff;
		z-index: 100;
	}

		.site-tree-mobile .icon {
			font-size: 26px;
		}

	.site-mobile-shade {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, .7);
		z-index: 900;
	}
}


.article, .spjs {
	word-break: break-all;
}
.article img, .spjs img {
	/*min-width: 100%;*/
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	margin: 0px auto;
}
/*发短信input*/
input.get-identifying-code {
	background: none;
}

.pagination-container {
	text-align: center;
}




/*账单列表anbby*/
.person_tab .tab_btn {
    position: relative;
    margin-bottom: 20px;
}

.person_tab .tab_btn:after {
    position: absolute;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border: 0 none;
    background-color: #ebebeb;
    z-index: 1;
}

.person_tab .tab_btn a {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 120px;
    font-size: 18px;
    color: #808080;
    text-align: center;
    padding-bottom: 5px;
    z-index: 2
}

.person_tab .tab_btn a.active {
    color: #1687ed;
    border-bottom: 2px solid #1687ed;
}

.tab_container > div {
    /*display: none;*/
}

.tab_container .zhangdan .table_box {
    width: 100%;
    min-height: 450px;
    border: 2px solid #f5f5f5;
    background-color: #fff;
}

.tab_container table {
    width: 100%;
    border-bottom: 0 none;
}

.tab_container thead {
    height: 45px;
    line-height: 45px;
    background-color: #f0f0f0;
    color: #666666;
    font-size: 14px;
}

.tab_container thead th {
    text-align: center;
}

.tab_container td {
    height: 50px;
    line-height: 50px;
    border-bottom: 2px solid #f5f5f5;
    font-size: 14px;
    text-align: center;
    min-width: 100px;
}


/*代理价格anbby*/
.tab_container .daili_price table {
	border-color: #d4d4d4;
	border-collapse: collapse;
}

.tab_container .daili_price .daili_table > table {
	border: 0 none;
	border-bottom: 1px solid #d4d4d4;
	border-color: #d4d4d4;
}

.tab_container .daili_price thead {
	background: none;
}

	.tab_container .daili_price thead th {
		font-size: 18px;
		width: 25%;
	}

.tab_container .daili_price .daili_1, .tab_container .daili_price .daili_2, .tab_container .daili_price .daili_3 {
	font-size: 14px;
	line-height: normal;
	padding: 20px 0;
}

.tab_container .daili_price .daili_1 {
	border-top: 4px solid #2f82ff;
}

	.tab_container .daili_price .daili_1 b {
		color: #2f82ff;
	}

.tab_container .daili_price .daili_2 {
	border-top: 4px solid #ffc72f;
}

	.tab_container .daili_price .daili_2 b {
		color: #ffc72f;
	}

.tab_container .daili_price .daili_3 {
	border-top: 4px solid #ff8c2f;
}

	.tab_container .daili_price .daili_3 b {
		color: #ff8c2f;
	}

.tab_container .daili_price thead th b {
	display: block;
	font-size: 18px;
	margin-bottom: 15px;
}

.tab_container .daili_price td {
	width: 25%;
	border-bottom: 0 none;
	font-size: 16px;
}

	.tab_container .daili_price td table {
		border-width: 0px;
		border-style: hidden;
	}

	.tab_container .daili_price td i {
		display: block;
		width: 28px;
		height: 28px;
		margin: 0 auto;
		background-position: -1px -216px;
	}

	.tab_container .daili_price td .last_icon {
		background-position: -61px -216px;
	}

.tab_container .daili_price .fenlei {
	width: 10%;
	margin: -2px;
}

.tab_container .daili_price .td_class {
	width: 15%;
}

.daili_price .contact_kf {
	display: block;
	width: 138px;
	height: 38px;
	line-height: 38px;
	font-size: 16px;
	text-align: center;
	border: 2px solid #666666;
	border-radius: 3px;
	background: none;
	margin: 70px auto 0;
}

@media (max-width: 768px) {
    .trade_details { width: 100%; }

    .trade_details p {
        display: table;
        width: 100%;
    }

    .trade_details span {
        display: table-cell;
        width: 78%;
        white-space: normal;
        word-break: break-all;
    }

    .trade_details .td_title {
        width: 30%;
        margin-right: 2%;
        white-space: nowrap;
    }

    .trade_details .nomarl_btn { margin-top: 50px; }

    .chongzhi_box, .pay_box {
        width: 90%;
        padding: 30px 5%;
    }

    .chongzhi_box, .pay_box { height: auto; }

    .chongzhi_box li { margin-bottom: 10px; }

    .pay_box > * { display: block; }

    .pay_box input {
        width: 95%;
        padding-left: 5%;
        margin: 0;
    }

    .pay_box .nomarl_btn {
        margin-top: 30px;
        margin-left: 1px;
    }

    .warning { height: auto; }

    .personal_main { width: 100%; }

    .person_info {
        width: 90%;
        padding: 5%;
    }

    .person_tab {
        width: 95%;
        padding: 15px 2.5%;
    }

    .person_info .nomarl_btn {
        position: static;
        display: block;
    }

    .person_info > ul li {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .tab_container { width: 100%; }

    .tab_container > div { width: 100%; }

    .zhangdan_info, .daili_table {
        width: 100%;
        overflow: auto;
    }

    .tab_container .zhangdan .zhangdan_info > *, .tab_container .daili_price table { width: 1140px; }

    .tab_container .zhangdan .table_box { min-height: auto; }
   
}

.pricelist {
    padding: 50px 0;
}