﻿html,
body {
	padding: 0;
	margin: 0;
	font-family: fontR, "微软雅黑";
	font-size: 16px;
	color: #333;
	overflow-x: hidden;
	line-height: 1.75;
}

body {
	overflow: hidden;
	z-index: -9;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}

ol li {
	list-style: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	color: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background: none;
	text-decoration: none;
	transition-duration: .5s;
	-ms-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-webkit-transition-duration: .5s;
}

.imgDiv {
	overflow: hidden;
	text-align: center;
}

img {
	max-width: 100%;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: none;
}

button {
	cursor: pointer;
}

p,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}

.ovh {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ovh2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ease05 {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.on-hover .imgDiv img {
	transition: 0.5s;
}

.on-hover:hover .imgDiv img {
	transform: scale(1.05);
	transition: 0.5s;
}


/*******/


/*首页头部导航*/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	height: 80px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header .logo a {
	height: 80px;
	position: relative;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
}

header .logo a img {
	max-height: 47px;
}

header .rightDiv {
	width: calc(100% - 200px);
	padding-left: 110px;
}

header .rightDiv .menu {
	text-align: right;
	position: relative;
	height: 80px;
	width: 100%;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	float: left;
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	margin-right: 65px;
}

header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li:hover>a {
	color: #c8952e;
}

header .rightDiv .menu>ul>li>a {
	line-height: 80px;
	text-align: center;
	display: block;
	position: relative;
	text-transform: capitalize;
	font-size: 16px;
}

header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #c8952e;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	transition: .5s;
}

header .rightDiv .menu>ul>li.on>a::after,
header .rightDiv .menu>ul>li:hover>a::after {
	width: 100%;
	transition: .5s;
}

.menu ul ul {
	position: absolute;
	top: 90px;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	z-index: 9;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	border-radius: 4px;
}

.menu ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	top: 80px;
	transition: .5s;
}

.menu ul ul li {
	white-space: nowrap;
	text-align: center;
}

.menu ul ul li>a {
	display: block;
	padding: 0 30px;
	line-height: 45px;
}

.menu ul ul li:hover>a,
.menu ul ul li a:hover {
	color: #CD9F2D;
	background: #faf5ea;
}

header .mbtn {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url(../img/menu.svg) no-repeat center center;
	background-size: 18px auto;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
}

header .mbtn:active {
	opacity: .8;
}

body.on-menu header .mbtn {
	background: url(../img/close.svg) no-repeat center center;
	background-size: 18px auto;
}

header .loginBtn {
	margin-top: 22px;
	display: block;
	width: 88px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	border-radius: 5px;
	background: linear-gradient(to right, #e4cf2c, #b3692f)no-repeat;
}

header .userBtn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 80px;
}

header .userBtn p {
	font-size: 14px;
	margin: 0 10px;
}

header .userBtn span {
	display: block;
	width: 0;
	height: 0;
	border-top: 7px solid #666;
	border-left: 6px solid #fff;
	border-right: 6px solid #fff;
}

header .denglu {
	position: relative;
}

header .denglu .below {
	position: absolute;
	top: 100px;
	width: 100%;
	right: 0;
	background: #fff;
	z-index: 9;
	font-size: 14px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease 0s;
	border-radius: 4px;
	overflow: hidden;
	width: 200px;
}

header .denglu.on-click .below {
	opacity: 1;
	visibility: visible;
	top: 90px;
}

header .denglu .below a {
	display: block;
	line-height: 45px;
	padding: 0 20px;
	text-align: left;
}

header .denglu .below a:hover {
	color: #CD9F2D;
	background: #faf5ea;
}


/* banner */

.index-banner {
	width: 100%;
	position: relative;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 887px;
	background: none no-repeat center;
	background-size: cover;
	margin-top: 80px;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 20px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: #fff;
	opacity: 1;
	transition: 0.5s;
}

.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}

.ui-homebanner .swiper-pagination-bullet-active {
	/*opacity: 1;
	background: #00aded;*/
	width: 30px;
	transition: 0.5s;
}

.indexDiv {
	padding: 60px 0;
}

.indexDiv .upper {
	text-align: center;
	margin-bottom: 60px;
}

.indexDiv .upper p {
	font-size: 30px;
	text-transform: uppercase;
}

.indexDiv .upper span {
	color: #999;
}

.indexDiv .more {
	width: 119px;
	line-height: 34px;
	display: block;
	border-radius: 100px;
	border: 1px solid #e6e6e6;
	background: linear-gradient(#cd9f2d, #cd9f2d)no-repeat;
	background-size: 0 100%;
	color: #999;
	text-align: center;
	margin: 0 auto;
	margin-top: 40px;
	font-size: 14px;
}

.indexDiv .more:hover {
	background-size: 100% 100%;
	border: 1px solid #cd9f2d;
	color: #fff;
}

.indexDiv ul li:first-child {
	width: 38.3%;
}

.indexDiv ul li:last-child {
	width: 59.3%;
	margin: -14px 0;
}

.indexDiv ul li a {
	display: block;
}

.indexDiv ul li a:hover {
	color: #cd9f2d;
}

.indexDiv ul li a span {
	font-size: 14px;
	color: #999;
	display: block;
	margin: 7px 0;
}

.indexDiv ul li a small {
	font-size: 12px;
	color: #999;
}

.indexDiv ul li:first-child a {
	border: 1px solid #eee;
}

.indexDiv ul li:first-child a .text {
	padding: 10px 18px;
}

.indexDiv ul li:last-child a {
	padding: 14px 0;
	border-top: 1px dashed #eee;
	overflow: hidden;
}

.indexDiv ul li:last-child a:first-child {
	border: none;
}

.indexDiv ul li:last-child a .imgDiv {
	width: 170px;
	float: left;
}

.indexDiv ul li:last-child a .text {
	width: calc(100% - 170px);
	padding-left: 20px;
	float: left;
}


/*底部*/

footer {
	background: #333333;
	color: #fff;
}

footer .upper {
	padding: 50px 0;
}

footer .logo img {
	max-width: 200px;
}

footer ul {
	float: right;
	overflow: hidden;
}

footer ul li p {
	margin-bottom: 15px;
	font-size: 16px;
}

footer ul {
	margin-left: -85px;
}

footer ul li {
	float: left;
	padding-left: 85px;
	max-width: 280px;
}

footer ul li a,
footer ul li span {
	font-size: 14px;
	display: block;
	opacity: 0.7;
}

footer ul li a:hover {
	opacity: 1;
}

footer ul .code img {
	max-width: 128px;
}

footer .copyright {
	font-size: 12px;
	color: #ccc;
	border-top: 1px solid #454545;
	padding: 15px 0;
}


/*弹出层*/

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
}

.popup.active {
	display: block;
}

.tips .popup-content {
	width: 460px;
}

.popup-content {
	width: 800px;
	background: #fff;
	margin: 0 auto;
	margin-top: 50vh;
	transform: translateY(-50%);
	position: relative;
}

.popup-content .closeDiv {
	text-align: center;
}

.tips .popup-content .close {
	width: 13px;
	position: absolute;
	top: 13px;
	right: 20px;
}

.popup-content .close img {
	width: 13px;
	height: 13px;
}

.popup-content .upper {
	background: #fbfcff;
	border-bottom: 1px solid #ebebeb;
	color: #3b414c;
	text-align: center;
	position: relative;
	padding: 13px 20px;
	font-size: 20px;
}

.tips .popup-content .upper {
	font-size: 16px;
}

.popup-content .below {
	padding: 30px;
	color: #69717f;
	font-size: 14px;
}

.popup-content .below a {
	display: inline-block;
	width: 240px;
	text-align: center;
	line-height: 40px;
	color: #fff;
	border-radius: 4px;
	margin-top: 40px;
	background: #CD9F2D;
	font-size: 16px;
}

.popup-content .below .content {
	background: #f7f7f7;
	height: 400px;
	overflow-y: auto;
	padding: 20px;
}

.tips .popup-content .below .content {
	height: auto;
	background: #fff;
	/*text-align: center;*/
}

.popup-content .close {
	float: none;
	font-size: 1.5rem;
	font-weight: normal;
	text-shadow: none;
	opacity: 1;
	margin: 0 10px;
}

.popup-content .below .content::-webkit-scrollbar {
	/*滚动条整体样式*/
	width: 8px;
	padding: 0 5px;
	/*高宽分别对应横竖滚动条的尺寸*/
	height: 1px;
}

.popup-content .below .content::-webkit-scrollbar-thumb {
	/*滚动条里面小方块*/
	border-radius: 10px;
	background: #9ca3ae;
}

.popup-content .below .content::-webkit-scrollbar-track {
	/*滚动条里面轨道*/
	background: #ededed;
}


/***登录注册***/

.login {
	background: #fbfcff;
	padding: 80px 0;
	margin-top: 80px;
}

.login .main {
	width: 460px;
	box-shadow: 0 0 24px rgba(39, 45, 77, 0.08);
	margin: 0 auto;
	background: #fff;
}

.login .main .upper {
	background: #fbfcff;
	border-bottom: 1px solid #ebebeb;
	padding: 0 40px;
	overflow: hidden;
}

.login .main .upper a {
	display: block;
	width: 50%;
	float: left;
	text-align: center;
	color: #69717f;
	position: relative;
	padding: 20px 0;
}

.login .main .upper a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #CD9F2D;
	position: absolute;
	bottom: 0;
	left: 0;
}

.login .main .upper a.on,
.login .main .upper a:hover {
	color: #CD9F2D;
}

.login .main .upper a.on::after {
	width: 100%;
}

.login .main .below {
	padding: 25px 40px;
	font-size: 14px;
}

.login .main .below ul {
	margin: -8px 0;
}

.login .main .below li {
	overflow: hidden;
	padding: 8px 0;
	position: relative;
}

.login .loginDiv li:nth-child(1) p,
.login .loginDiv li:nth-child(2) p {
	position: absolute;
	left: 15px;
	width: 20px;
	height: 48px;
}

.login .loginDiv li:nth-child(1) input,
.login .loginDiv li:nth-child(2) input {
	padding-left: 45px;
}

.login .loginDiv li:nth-child(1) p {
	background: url(../img/tel.svg)center center no-repeat;
}

.login .loginDiv li:nth-child(2) p {
	background: url(../img/password.svg)left center no-repeat;
}

.login .main .below li a {
	color: #CD9F2D;
}

.login .main .below li p.fl {
	color: #9ca3ae;
}

.login .main .below input,
.login .main .below select {
	border: 1px solid #dadada;
	width: 100%;
	border-radius: 4px;
	height: 48px;
	line-height: 48px;
	padding: 0 15px;
}

.login .main .signupDiv input,
.login .main .signupDiv select {
	height: 40px;
}

.login .main .signupDiv .verify{
	width: calc(100% - 100px);
	border-right: none;
	border-radius: 4px 0 0 4px;
}

.login .main .below button,
.login .main .below .button {
	display: block;
	text-align: center;
	width: 100%;
	border-radius: 4px;
	background: linear-gradient(to right, #e4cf2c, #b3692f)no-repeat;
	border: none;
	line-height: 48px;
	font-size: 18px;
	color: #fff;
}

.login .main .below input[type=checkbox] {
	width: auto;
	height: auto;
	cursor: pointer;
}

.login .loginDiv li:last-child {
	text-align: center;
	color: #999;
}

.login .foot {
	padding: 0 40px;
	font-size: 14px;
	color: #69717f;
}

.login .foot p {
	border-top: 1px solid #e6e6e6;
	padding: 20px 0;
}

.login .foot a {
	color: #3395fa;
}

.login .signupDiv p {
	font-size: 12px;
	color: #69717f;
	margin-bottom: 5px;
}

.login .signupDiv p span {
	color: #e01e5a;
	margin-right: 5px;
}

.login .main .below .btnSendCode {
	position: absolute;
	right: 0;
	width: 100px;
	cursor: pointer;
	border-radius: 0 4px 4px 0;
	line-height: 40px;
}

.login .signupDiv .tab {
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
}

.login .signupDiv .tab a {
	display: inline-block;
	width: 48%;
	line-height: 36px;
	border-radius: 4px;
	background: url(../img/yuan1.png)15px center no-repeat #f4f4f4;
	border: 1px solid #DADADA;
	text-align: center;
	color: #69717f;
}

.login .signupDiv .tab a.on {
	background: url(../img/yuan2.png)15px center no-repeat #f4f4f4;
}


/***找回密码***/

.find .upper {
	line-height: 72px;
	font-size: 20px;
}

.find .btnSendCode {
	background: #fff;
	color: #CD9F2D;
}


/***调查问卷***/

.question,
.result {
	background: #fbfcff;
	padding: 40px 0 50px;
	margin-top: 80px;
	color: #3b414c;
	font-size: 14px;
}

.question .main,
.result .main {
	width: 100%;
	box-shadow: 0 0 24px rgba(39, 45, 77, 0.08);
	background: #fff;
}

.question .main .upper {
	padding: 15px 40px;
	border-bottom: 1px solid #eee;
	color: #69717f;
	background: url(../img/left.svg)#fbfcff 20px center no-repeat;
}

.question .main .below {
	padding: 30px 25px 70px;
}

.question .main .title {
	font-size: 28px;
	text-align: center;
}

.question .content {
	margin-top: 30px;
	background: #fffefd;
	border: 1px solid #f5ecd5;
	padding: 30px;
}

.question .content1 p {
	font-size: 18px;
	color: #CD9F2D;
	margin-bottom: 10px;
}

.question .content span {
	color: #69717f;
}

.question .content2 p {
	margin: 50px 0 10px;
}

.question .content2 li {
	padding: 5px 8px;
	position: relative;
}

.check_box input {
	visibility: hidden;
}

.check_box {
	position: relative;
	padding-left: 7px;
}

.check_box label {
	width: 16px;
	height: 16px;
	position: absolute;
	top: 10px;
	left: 0;
	border: 1px solid #cccccc;
	border-radius: 2px;
	background: #fff;
	cursor: pointer;
}

.check_box input:checked+label {
	border: 1px solid #CD9F2D;
	background: #CD9F2D;
}

.check_box input:checked+label::after {
	content: '';
	width: 8px;
	height: 6px;
	position: absolute;
	top: 3px;
	left: 3px;
	border: 2px solid #fff;
	border-top: none;
	border-right: none;
	transform: rotate(-45deg);
	border-top: none;
	border-right: none;
}

.radioDiv {
	border: 1px solid #dcdcdc;
	margin-top: 20px;
}

.radioDiv p {
	font-size: 16px;
	padding: 13px 20px;
	border-bottom: 1px solid #dcdcdc;
}

.radioDiv ul {
	padding: 10px 20px;
}

.radio_box {
	position: relative;
	padding: 5px 0;
	padding-left: 15px;
}

.radio_box input {
	visibility: hidden;
}

.radio_box label {
	width: 18px;
	height: 18px;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	left: 0;
	border: 1px solid #cccccc;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.radio_box input+label:after {
	content: '';
	width: 10px;
	height: 10px;
	position: absolute;
	top: 3px;
	left: 3px;
	background: #e7e7e7;
	border-radius: 50%;
}

.radio_box input:checked+label {
	border: 1px solid #CD9F2D;
}

.radio_box input:checked+label:after {
	background: #CD9F2D;
}

.question .foot,
.result .foot {
	text-align: center;
}

.question .foot a {
	display: inline-block;
	width: 382px;
	line-height: 48px;
	text-align: center;
	color: #fff;
	background: linear-gradient(to right, #e4cf2c, #b3692f)no-repeat;
	border-radius: 4px;
	font-size: 18px;
	margin: 0 auto;
	margin-top: 40px;
}

.result .title {
	background: #fbfcff;
	font-size: 24px;
	text-align: center;
	padding: 23px 0;
	border-bottom: 1px solid #ebebeb;
}

.result .content {
	padding: 40px 100px 90px;
}

.result .content p span {
	font-weight: bold;
	padding: 0 20px;
	border-bottom: 1px solid #333;
}

.result table {
	width: 100%;
	text-align: center;
	margin: 35px 0;
	border-color: #ccc;
}

.result table th,
.result table td {
	padding: 8px;
	font-weight: normal;
}

.result table tr:nth-child(odd) td {
	background: #faf5ea;
}

.result table th {
	background: #ebd9ab;
}

.result .below p {
	color: #69717f;
	margin-top: 10px;
}

.result .foot a {
	display: inline-block;
	width: 160px;
	background: #CD9F2D;
	line-height: 40px;
	margin: 0 20px;
	margin-top: 80px;
	border-radius: 4px;
	font-size: 18px;
	color: #fff;
}


/*列表页*/

.ny-main {
	padding: 80px 0 100px;
	font-size: 14px;
}

.ny-banner .img {
	height: 420px;
}

.ny-main .breadcrumbs {
	font-size: 12px;
	color: #666;
	padding: 20px 0 40px;
}

.ny-main .breadcrumbs a {
	color: #999;
}

.ny-main .breadcrumbs a:hover {
	color: #333;
}


/***菜单***/

.ny-menu {
	width: 200px;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
}

.ny-menu p {
	color: #fff;
	font-size: 18px;
	line-height: 50px;
	background: #CD9F2D;
	padding: 0 20px;
}

.ny-menu a {
	display: block;
	line-height: 48px;
	border-top: 1px solid #e6e6e6;
	padding: 0 20px;
}

.ny-menu a:hover,
.ny-menu a.on {
	color: #CD9F2D;
	background: #fcf9f3;
}

.ny-content {
	width: calc(100% - 260px);
}


/*走进卓银*/

.aboutus .ny-content {
	border: 1px solid #e6e6e6;
}

.aboutus .text {
	padding: 20px;
	min-height: 300px;
}

.aboutus .titieImg {
	position: relative;
	text-align: center;
}

.aboutus .titieImg h3 {
	font-size: 48px;
	position: absolute;
	text-align: center;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
}

.contactus .ny-content {
	padding: 40px 30px;
}

.contactus .info {
	width: 45%;
	padding-right: 30px;
}

.contactus .info h5 {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 30px;
}

.contactus .info p {
	color: #666;
}

.contactus .info img {
	max-width: 128px;
	margin-top: 20px;
}

.contactus .map {
	width: 55%;
	height: 260px;
}

.question .main,
.result .main {
	width: 90%;
	margin: 0 auto;
}


/***基金产品***/

.product .search {
	border-radius: 4px;
	overflow: hidden;
	line-height: 36px;
	margin-bottom: 20px;
	text-align: right;
	/*display: flex;*/
}

.product .search input {
	width: 240px;
	border: none;
	padding: 0 15px;
	border: 1px solid #eee;
	margin-right: -5px;
}

.product .search button {
	border: none;
	background: #CD9F2D;
	color: #fff;
	width: 80px;
	cursor: pointer;
}

.product ul {
	margin: -10px 0;
}

.product ul li {
	padding: 10px 0;
}

.product ul li a {
	display: block;
	border: 1px solid #eee;
	box-shadow: 0 0 8px rgba(39, 45, 77, 0.08);
	border-radius: 4px;
}

.product .upper {
	background: #f9f9f9;
	padding: 23px 24px;
}

.product .upper .leftDiv {
	width: calc(100% - 100px);
}

.product ul li .upper span {
	display: inline-block;
	background: #CD9F2D;
	color: #fff;
	font-size: 12px;
	padding: 0 6px;
	border-radius: 2px;
	margin-right: 10px;
}

.product ul li .upper p {
	display: inline-block;
	font-size: 16px;
	color: #3b414c;
}

.product ul li .upper .rightDiv {
	border: 1px solid #CD9F2D;
	border-radius: 2px;
	color: #CD9F2D;
	line-height: 32px;
	padding: 0 20px;
}

.product ul li .row {
	padding: 0 20px;
	margin: 0;
	color: #69717f;
}

.product ul li .row>div {
	padding: 15px 0;
}

.product ul li .row span {
	color: #e01e5a;
}

.product ul li .colDiv3 {
	font-size: 12px;
	color: #9ca3ae;
	border: 1px solid #f6f6f6;
	background: #fcfcfc;
	border-radius: 4px;
	padding: 4px 10px !important;
}

.product ul li .col-6 {
	font-size: 12px;
}

.prodeDiv2 {
	border: 1px solid #eee;
	border-radius: 4px;
	margin: 20px 0;
}

.prodeDiv2 .upper {
	background: #f9f9f9;
	padding: 11px 24px;
}

.prodeDiv2 .upper p {
	font-size: 16px;
	position: relative;
	float: left;
	padding-left: 10px;
}

.prodeDiv2 .upper p::before {
	content: "";
	width: 2px;
	height: 14px;
	background: #CD9F2D;
	position: absolute;
	left: 0;
	top: 6px;
}

.prodeDiv2 .rightDiv {
	font-size: 12px;
	color: #69717f;
}

.prodeDiv2 .tab {
	display: inline-block;
}

.prodeDiv2 .tab a {
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 2px;
	border-radius: 2px;
	padding: 2px 11px;
}

.prodeDiv2 .tab a.on,
.prodeDiv2 .tab a:hover {
	color: #fff;
	border: 1px solid #CD9F2D;
	background: #CD9F2D;
}

.prodeDiv2 .chartsDiv {
	padding: 40px 10px;
}

.prodeDiv3 .tab {
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	width: 100%;
	display: table;
}

.prodeDiv3 .tab a {
	display: table-cell;
	width: 33.3%;
	height: 100%;
	padding: 12px;
	text-align: center;
	vertical-align: middle;
	background: #f9f9f9;
	border-left: 1px solid #eee;
}

.prodeDiv3 .tab a:first-child {
	border: none;
}

.prodeDiv3 .tab a.on,
.prodeDiv3 .tab a:hover {
	color: #fff;
	background: #CD9F2D;
	border-left: 1px solid #CD9F2D;
}

.prodeDiv3 .row {
	border: 1px solid #eee;
	overflow: hidden;
	border-radius: 4px;
	margin: 10px 0;
}

.prodeDiv3 .row>div {
	overflow: hidden;
	padding: 0;
}

.prodeDiv3 .row small {
	display: block;
	float: left;
	width: 200px;
	background: #f9f9f9;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	font-size: 14px;
	padding: 10px 30px;
	height: 100%;
}

.prodeDiv3 .row span {
	display: block;
	float: right;
	width: calc(100% - 200px);
	border-bottom: 1px solid #eee;
	padding: 10px 30px;
	height: 100%;
}

.prodeDiv3 dt:last-child,
.prodeDiv3 dd:last-child {
	border-bottom: none;
}

.prodeDiv3 table {
	width: 100%;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	text-align: center;
	color: #69717f;
	margin: 10px 0;
}

.prodeDiv3 table th {
	background: #f9f9f9;
	padding: 12px 10px;
	font-weight: normal;
}

.prodeDiv3 table td{
	padding: 12px 10px;
}
.prodeDiv3 table .tableTitle{
	text-align: left;
	padding: 12px 30px;
}
/***产品公告***/

.notice ul {
	margin: -20px 0;
}

.notice ul li {
	padding: 20px 0;
	/*border-bottom: 1px solid #eee;*/
}

.notice ul li:last-child {
	border: none;
}

.notice ul li a {
	display: block;
	overflow: hidden;
}

.notice ul li .imgDiv {
	width: 220px;
	border: 1px solid #eee;
	border-radius: 4px;
}

.notice ul li .text {
	width: calc(100% - 220px);
	padding-left: 24px;
}

.notice ul li .text p {
	font-size: 18px;
	color: #3b414c;
}

.notice ul li .text>span {
	display: block;
	font-size: 14px;
	color: #69717f;
	margin: 10px 0 18px;
}

.notice ul li .below {
	color: #9ca3ae;
	font-size: 12px;
}

.notice-detail .ny-content {
	color: #3b414c;
}

.notice-detail .ny-content .upper {
	text-align: center;
}

.notice-detail .ny-content .upper p {
	font-size: 24px;
}

.notice-detail .ny-content .upper span {
	font-size: 12px;
	color: #69717f;
}

.notice-detail .ny-content>p {
	margin: 60px 0 40px;
}

.notice-detail .ny-content .below {
	font-size: 16px;
	text-align: right;
}


/***操作指南***/

.guide .upper {
	text-align: center;
	font-size: 24px;
	margin-bottom: 40px;
}


/***新闻动态***/

.news ul {
	margin: -10px 0;
}

.news ul li {
	padding: 10px 0;
}

.news ul li a {
	display: flex;
	align-items: center;
	padding: 20px;
	background: #f9f9f9;
	overflow: hidden;
}

.news ul li a .imgDiv {
	width: 220px;
}

.news ul li a .text {
	width: calc(100% - 220px);
	padding: 0 20px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.news ul li a .text p {
	font-size: 18px;
	margin-bottom: 10px;
}

.news ul li a .text span {
	color: #999;
	font-size: 14px;
}

.news ul li a .leftDiv {
	width: calc(100% - 132px);
	padding-right: 80px;
}

.news ul li a .date {
	width: 132px;
	text-align: center;
	line-height: 45px;
	border: 1px solid #e6e6e6;
	color: #999;
	border-radius: 4px;
	background: linear-gradient(#0371d2, #0371d2)no-repeat;
	background-size: 0 100%;
	font-size: 14px;
}

.news ul li a .date:hover {
	background-size: 100% 100%;
	color: #fff;
	border: 1px solid #0371d2;
}


/***新闻详情***/

.detail .content {
	width: 900px;
	margin: 0 auto;
}

.detail .main h2 {
	font-size: 30px;
	padding: 30px 0;
	text-align: center;
	border-bottom: 1px solid #e6e6e6;
}

.detail .main .label {
	margin: 15px 0 40px;
	color: #666;
	font-size: 12px;
}

.detail .main .label span {
	padding-left: 16px;
}

.detail .main .label .name {
	background: url(../img/de-icon1.png) left center no-repeat;
}

.detail .main .label .time {
	background: url(../img/de-icon2.png) left center no-repeat;
	margin-left: 2rem;
}

.detail .main .label .new {
	background: url(../img/de-icon3.png) left center no-repeat;
}

.detail .main .next {
	border-top: 0.0625rem solid #e6e6e6;
	margin-top: 2rem;
	font-size: 14px;
}

.detail .main .next a {
	display: block;
	margin-top: 16px;
}

.detail .main .next a:hover {
	color: #CD9F2D;
}

.detail .main .next a span {
	color: #999;
	margin-right: 10px;
}

.detail .main .imgDiv {
	margin: 15px 0;
}


/***产品预约***/

.yuyue .upper {
	text-align: center;
	width: 84%;
	margin: 0 auto;
	background: #fffefd;
	border: 1px solid #f5ecd5;
	padding: 40px 20px;
}

.yuyue .upper p {
	font-size: 24px;
	color: #CD9F2D;
	margin-bottom: 10px;
}

.yuyue .upper span {
	color: #69717f;
}

.yuyue .below {
	width: 560px;
	margin: 0 auto;
	font-size: 14px;
	color: #69717f;
	padding-top: 40px;
}

.yuyue .below ul {
	margin: -10px 0;
}

.yuyue .below ul li {
	overflow: hidden;
	padding: 10px 0;
}

.yuyue .below .leftDiv {
	text-align: right;
	width: 80px;
}

.yuyue .below .rightDiv {
	width: calc(100% - 80px);
	padding-left: 10px;
}

.yuyue .below input,
.yuyue .below select,
.yuyue .below label {
	width: 100%;
	padding: 0 10px;
	background: #f8f8f8;
	border: 1px solid #cccccc;
	border-radius: 2px;
	height: 36px;
	line-height: 36px;
}

.yuyue .below .lableDiv {
	display: flex;
	justify-content: space-between;
}

.yuyue .below label {
	width: 31%;
	padding: 0 20px;
	cursor: pointer;
	position: relative;
	text-align: center;
}


/*.yuyue .below label::after {
	content: "";
	width: 18px;
	height: 36px;
	background: url(../img/yuan1.png) center center no-repeat;
	position: absolute;
	left: 10px;
}

.yuyue .below .check::after {
	background: url(../img/yuan2.png)center center no-repeat;
}*/

.yuyue .below label input {
	width: 16px;
	/*display: none;*/
	position: absolute;
	left: 20px;
}

.yuyue .below select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
}

.yuyue .below span {
	position: relative;
	display: block;
}

.yuyue .below span::after {
	content: "";
	width: 16px;
	height: 36px;
	background: url(../img/down.svg)right center no-repeat;
	background-size: 16px;
	position: absolute;
	right: 10px;
	pointer-events: none;
	z-index: 1;
}

.yuyue .below button {
	background: #cd9f2d;
	border: none;
	color: #fff;
	font-size: 18px;
	line-height: 48px;
	border-radius: 2px;
	width: 100%;
	cursor: pointer;
}


/*页码*/

.pageNum {
	margin-top: 40px;
	text-align: center;
}

.pageNum span,
.pageNum a {
	display: inline-block;
	padding: 3px 11px;
	color: #000;
	margin: 0 5px;
	border: 1px solid #ddd;
	border-radius: 2px;
	font-size: 14px;
}

.pageNum span,
.pageNum a:hover {
	background: #cd9f2d;
	color: #fff;
	border: 1px solid #cd9f2d;
}

.pageNum li.disabled span
{
	background-color: #eee;
	border-color: #eee;
	cursor: no-drop;

}


/***个人中心***/

.user {
	background: #f4f5f7;
}

.user .ny-banner .img {
	height: 200px;
}

.user .ny-banner {
	position: relative;
}

.user .ny-banner .text {
	position: absolute;
	width: 100%;
	color: #fff;
	bottom: 40px;
}

.user .ny-banner .text strong {
	font-size: 36px;
	margin-right: 20px;
}

.user .ny-banner .text span {
	font-size: 18px;
}

.user .user-menu {
	width: 240px;
	font-size: 14px;
}

.user .user-menu a {
	display: block;
	padding: 12px;
	padding-left: 34px;
	position: relative;
	margin-bottom: 2px;
	background: #fff;
}

.user .user-menu>li>a::after {
	content: "";
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 3px solid #e6e6e6;
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.user .user-menu>li.on>a,
.user .user-menu>li:hover>a {
	color: #fff;
}

.user .user-menu>li.on>a,
.user .user-menu>li:hover>a {
	background: #CD9F2D;
}

.user .user-menu>li.on>a::after,
.user .user-menu>li:hover>a::after {
	border: 3px solid #fff;
}

.user .user-menu>li p {
	position: absolute;
	right: 16px;
	width: 10px;
	height: 10px;
	top: 50%;
}

.user .user-menu>li p span {
	position: relative;
}

.user .user-menu>li p span::before,
.user .user-menu>li p span::after {
	content: "";
	width: 10px;
	height: 2px;
	background: #999;
	border-radius: 100px;
	position: absolute;
}

.user .user-menu>li p span::after {
	transform: rotate(90deg);
}

.user .user-menu>li.on p span::before,
.user .user-menu>li:hover p span::before,
.user .user-menu>li.on p span::after,
.user .user-menu>li:hover p span::after {
	background: #fff;
}

.user .user-menu>li.open p span::after {
	height: 0;
}

.user .user-menu .below a {
	background: #fafafb;
}

.user .user-menu .below a.on,
.user .user-menu .below a:hover {
	color: #CD9F2D;
}

.user .user-menu>li .below {
	visibility: hidden;
	opacity: 0;
}

.user .user-menu>li.open .below {
	visibility: visible;
	opacity: 1;
}

.user .user-content {
	border: 1px solid #eee;
	width: calc(100% - 260px);
	background: #fff;
}

.user .user-content .title {
	font-size: 18px;
	padding: 14px 25px;
	border-bottom: 1px solid #eee;
}

.user .user-content .content {
	padding: 40px 50px 100px;
}

.perData .touxiangDiv {
	text-align: center;
	position: relative;
	width: 107px;
	margin: 0 auto;
}

.perData .touxiangDiv img {
	width: 107px;
	height: 107px;
	border-radius: 50%;
}

.perData .touxiangDiv input {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
}

.perData .touxiangDiv a {
	display: block;
	color: #666;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	padding: 3px 0;
	margin-top: 15px;
}

.perData .user-content ul {
	margin: 10px -25px;
}

.perData .user-content ul li {
	width: 50%;
	float: left;
	padding: 10px 25px;
	position: relative;
}

.perData .user-content .state a {
	position: absolute;
	width: 113px;
	background: #f9f3e5;
	color: #CD9F2D;
	border: 1px solid #eee;
	border-left: none;
	line-height: 40px;
	height: 40px;
	right: 25px;
	text-align: center;
	border-radius: 0 4px 4px 0;
}

.perData .user-content .state input {
	width: calc(100% - 113px);
	border-radius: 4px 0 0 4px;
}

.user .user-content ul li input,
.user .user-content ul li select {
	width: 100%;
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
	border: 1px solid #eee;
	border-radius: 4px;
}

.perData .user-content ul li p {
	color: #999;
	margin-bottom: 5px;
}

.user .user-content button,
.user .user-content .button {
	display: block;
	width: 200px;
	line-height: 40px;
	background: #CD9F2D;
	color: #fff;
	border-radius: 4px;
	font-size: 16px;
	text-align: center;
	margin: 0 auto;
	border: none;
	margin-top: 60px;
}


/***风险评测***/

.fengxian .user-content .content,
.mima .user-content .content {
	padding-top: 80px;
	text-align: center;
}

.fengxian .content h4 {
	font-size: 18px;
}

.fengxian .content h2 {
	display: inline-block;
	font-size: 36px;
	height: 120px;
	width: 120px;
	border-radius: 50%;
	background: #CD9F2D;
	color: #fff;
	text-align: center;
	line-height: 120px;
	margin: 30px 0 20px;
}

.fengxian .content p {
	color: #999;
}


/******/

.mima .content form {
	width: 70%;
	margin: 0 auto;
}

.mima .content ul li {
	padding: 12px 0;
}

.mima .content ul li span {
	display: inline-block;
	text-align: right;
	width: 150px;
	margin-right: 10px;
	color: #999;
}

.mima .content ul li input {
	width: calc(100% - 180px);
}


/***我的资产***/

.zichan .user-content .content {
	padding: 20px 24px 40px;
}

.zichan table {
	border: 1px solid #cccccc;
	width: 100%;
	text-align: center;
	font-size: 12px;
	overflow-x: auto;
}

.zichan table tr:nth-child(odd) td {
	background: #f8f8f8;
}

{
	width: 100%;
}

.zichan table th,
.zichan table td {
	padding: 9px 5px;
	border-left: 1px solid #ccc;
}

.zichan table th {
	background: #f0f0f0;
}


/*笔记本*/

@media all and (max-width:1220px) {
	.wrap {
		padding: 0 20px
	}
}

@media (min-width:993px) and (max-width:1024px) {
	header .rightDiv .menu>ul>li {
		margin-right: 50px;
	}
	header .rightDiv {
		padding-left: 90px;
	}
	.ui-homebanner .swiper-slide .img {
		height: 680px;
	}
	.aboutus .titieImg h3 {
		font-size: 36px;
	}
	.ny-banner .img {
		height: 340px;
	}
}

@media all and (max-width:992px) {
	html,
	body {
		font-size: 14px;
	}
	.menu {
		width: 100%
	}
	.menu ul {
		width: 100%;
		display: block;
	}
	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0;
		top: 0;
		border: 0;
		background: transparent;
		border-bottom: none;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}
	.menu>ul>li>a {
		padding: 0 20px;
	}
	.menu.align-center>ul,
	.menu.align-right ul ul {
		text-align: left
	}
	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(0, 0, 0, .1)
	}
	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}
	.menu>ul>li,
	.menu.align-center>ul>li,
	.menu.align-right>ul>li {
		float: none;
		display: block
	}
	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		color: #333;
		background: 0 0
	}
	.menu ul ul li:hover>a,
	.menu ul ul li a:hover {
		color: #333
	}
	.menu ul ul ul li a {
		padding-left: 40px
	}
	.menu>ul>li.has-sub>a::after,
	.menu ul ul li.has-sub>a::after {
		display: none
	}
	#menu-line {
		display: none
	}
	.menu #menu-button {
		display: block;
		padding: 20px;
		color: #000;
		cursor: pointer;
		font-size: 12px;
		text-transform: uppercase
	}
	.menu #menu-button::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		display: block;
		width: 15px;
		height: 2px;
		background: #fff
	}
	.menu #menu-button::before {
		content: '';
		position: absolute;
		top: 25px;
		right: 20px;
		display: block;
		width: 15px;
		height: 3px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}
	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		display: block;
		border-left: 1px solid rgba(0, 0, 0, .1);
		height: 60px;
		width: 60px;
		cursor: pointer
	}
	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 2px;
		height: 12px;
		background: #333;
		z-index: 99
	}
	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 12px;
		height: 2px;
		background: #333;
		z-index: 99
	}
	.menu .has-sub:hover>ul {
		left: 0;
		margin-left: 0;
		/*background: rgba(0, 0, 0, 0.15);*/
		top: 0;
		transform: translateX(0);
	}
	.menu ul ul p {
		display: none;
	}
	.menu .submenu-button.submenu-opened:after {
		display: none
	}
	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}
	header {
		position: fixed !important;
		z-index: 99;
		top: 0;
		left: auto;
		right: 0;
		width: 100%;
		height: 60px;
		transition: right 300ms !important;
	}
	header .logo a {
		height: 60px;
		line-height: 60px;
		width: initial;
	}
	header .logo img {
		height: 35px;
	}
	header .mbtn {
		display: block;
	}
	body.on-menu header .mbtn {
		z-index: 1;
	}
	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 60px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: #fff;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		overflow-y: auto;
	}
	header .rightDiv .menu ul li {
		padding: 0;
		margin: 0;
		float: none;
		width: 100%;
	}
	header .rightDiv .menu ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		text-align: left;
		font-size: 16px;
	}
	header .rightDiv .menu ul li a span {
		display: none;
	}
	header .rightDiv .menu>ul>li>a img {
		display: none;
	}
	header .rightDiv .menu>ul>li.on>a img.red,
	header .rightDiv .menu>ul>li:hover>a img.red {
		display: none;
	}
	header .rightDiv .menu ul li a.on {
		background: none;
	}
	body.on-menu header .rightDiv .menu {
		right: 0;
	}
	body.on-menu .main {
		right: 0;
	}
	header .rightDiv .menu ul li>a {
		margin: 0;
		width: calc(100% - 50px);
	}
	header .rightDiv .menu>ul>li.has-sub {
		padding: 0;
	}
	header .rightDiv .menu>ul>li.on>a::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		bottom: 0;
	}
	header .denglu {
		float: left;
		margin-left: 20px;
	}
	header .loginBtn {
		width: 120px;
	}
	.ui-homebanner .swiper-slide .img {
		height: 500px;
		margin-top: 60px;
	}
	.indexDiv .upper p {
		font-size: 24px;
	}
	.indexDiv ul li:first-child {
		width: 100%;
		margin-bottom: 20px;
	}
	.indexDiv ul li:last-child {
		width: 100%;
	}
	footer .logo {
		margin-bottom: 30px;
	}
	.ny-main {
		padding: 60px 0;
	}
	.aboutus .titieImg h3 {
		font-size: 26px;
	}
	.ny-menu {
		width: 175px;
	}
	.ny-menu p {
		font-size: 16px;
	}
	.ny-banner .img {
		height: 300px;
	}
	.ny-content {
		width: calc(100% - 210px);
	}
	.contactus .info {
		width: 100%;
		padding-right: 0;
		margin-bottom: 30px;
	}
	.contactus .map {
		width: 100%;
	}
	.news ul li a .date {
		width: 100px;
		line-height: 40px;
		font-size: 12px;
	}
	.news ul li a .text {
		padding: 0 0 0 20px;
	}
	.news ul li a .leftDiv {
		width: calc(100% - 100px);
		padding-right: 40px;
	}
	.detail .content {
		width: 90%;
	}
	.prodeDiv3 small {
		width: 170px;
	}
	.prodeDiv3 span {
		width: calc(100% - 170px);
	}
	header .denglu .below {
		right: auto;
	}
	.user .user-menu {
		width: 190px;
	}
	.user .user-content {
		width: calc(100% - 215px);
	}
	.perData .user-content ul li {
		width: 100%;
	}
	.mima .content form {
		width: 100%;
	}
	.zichan table {
		display: inline-block;
		white-space: nowrap;
	}
}


/*手机端*/

@media (max-width:767px) {
	html,
	body {
		font-size: 14px;
	}
	.ui-homebanner .swiper-slide .img {
		height: 250px;
	}
	.indexDiv .upper p {
		font-size: 18px;
	}
	.indexDiv .upper {
		margin-bottom: 45px;
	}
	.indexDiv .more {
		margin-top: 20px;
		font-size: 12px;
	}
	footer ul {
		margin-left: 0;
		margin: -15px 0;
	}
	footer ul li {
		padding-left: 0;
		width: 50%;
		padding: 15px 0;
	}
	footer ul li:nth-child(3) {
		width: 100%;
	}
	/*内页*/
	.ny-banner .img {
		height: 160px;
	}
	.ny-main .breadcrumbs {
		font-size: 12px;
		padding: 18px 0 33px;
	}
	.ny-banner .img {
		height: 200px;
	}
	.ny-menu {
		width: 100%;
		overflow: hidden;
		text-align: center;
	}
	.ny-menu a {
		width: 33.3%;
		float: left;
	}
	.ny-content {
		width: 100%;
		margin-top: 20px;
	}
	.aboutus .ny-content {
		width: 100%;
		;
	}
	.aboutus .titieImg h3 {
		font-size: 22px;
	}
	.contactus .ny-content {
		padding: 0;
	}
	.contactus .info {
		padding: 20px;
	}
	.contactus .info h5 {
		font-size: 16px;
		margin-bottom: 20px;
	}
	.product .search {
		margin-top: 18px;
	}
	.product .search input {
		width: calc(100% - 80px);
	}
	.product .upper .leftDiv {
		width: calc(100% - 80px);
	}
	.product ul li .upper .rightDiv {
		padding: 0 0;
		text-align: center;
		width: 76px;
		font-size: 12px;
	}
	.product ul li .upper p {
		font-size: 15px;
	}
	.prodeDiv3 small {
		width: 100px;
		font-size: 12px;
		padding: 10px 15px;
	}
	.prodeDiv3 span {
		width: calc(100% - 100px);
		padding: 10px 15px;
		font-size: 12px;
	}
	.product .upper {
		padding: 15px 15px;
	}
	.product ul li .row {
		margin: 0;
	}
	.product ul li .row>div {
		padding: 6px 0;
	}
	.notice ul li .imgDiv {
		width: 40%;
	}
	.notice ul li .text {
		width: 60%;
		padding-left: 20px;
	}
	.notice ul li .text p {
		font-size: 16px;
	}
	.notice ul li .text>span {
		display: none;
	}
	.notice ul li .below small {
		float: left;
	}
	.notice-detail .ny-content .upper p {
		font-size: 16px;
	}
	.notice-detail .ny-content .below {
		font-size: 14px;
	}
	.guide .upper {
		font-size: 16px;
		margin-bottom: 25px;
	}
	.pageNum {
		margin-top: 38px;
	}
	.indexDiv ul li:first-child,
	.indexDiv ul li:last-child {
		width: 100%;
		margin: 0;
	}
	.indexDiv ul li a span {
		font-size: 12px;
	}
	.indexDiv ul li:last-child a .imgDiv {
		width: 40%;
	}
	.indexDiv ul li:last-child a .text {
		width: 60%;
	}
	.news ul li a {
		display: block;
		padding: 20px 0;
	}
	.news ul li a .imgDiv {
		width: 40%;
	}
	.news ul li a .text {
		width: 60%;
		padding: 0 0 0 20px;
	}
	.news ul li a .date {
		display: none;
	}
	.news ul li a .leftDiv {
		width: 100%;
		padding-right: 0;
	}
	.news ul li a .text p {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.news ul li a .text span {
		font-size: 12px;
	}
	.detail .main h2 {
		font-size: 18px;
		padding: 0 0 30px;
	}
	.detail .main {
		width: 100%;
	}
	.detail .main p {
		font-size: 14px;
	}
	.yuyue .upper {
		width: 100%;
		padding: 25px 20px;
	}
	.yuyue .upper p {
		font-size: 18px;
	}
	.yuyue .below {
		width: 100%;
	}
	.yuyue .below .leftDiv {
		width: 60px;
	}
	.yuyue .below .rightDiv {
		width: calc(100% - 60px);
	}
	.yuyue .below label input {
		width: 14px;
		left: 8px;
	}
	.yuyue .below button {
		font-size: 15px;
		line-height: 40px;
	}
	.tips .popup-content {
		width: 85%;
	}
	.popup-content {
		width: 90%;
	}
	.popup-content .upper {
		font-size: 16px;
	}
	.popup-content .below {
		padding: 20px;
	}
	.popup-content .below .content {
		height: 260px;
	}
	.login {
		padding: 60px 0;
		margin-top: 60px;
	}
	.login .main {
		width: 100%;
	}
	.login .main .below {
		padding: 25px 30px;
	}
	.login .main .below button,
	.login .main .below .button {
		line-height: 40px;
		font-size: 15px;
	}
	.check_box label {
		top: 7px;
	}
	.login .main .upper a {
		font-size: 16px;
	}
	.question .main,
	.result .main {
		width: 100%;
	}
	.question .main .title {
		font-size: 18px;
	}
	.question .content {
		padding: 22px;
	}
	.question .content1 p {
		font-size: 16px;
	}
	.question .foot a {
		width: 100%;
		line-height: 46px;
		font-size: 16px;
	}
	.question .main .below {
		padding: 30px 20px 49px;
	}
	.result .content {
		padding: 35px 20px 50px;
	}
	.result table {
		font-size: 12px;
	}
	.result .foot a {
		width: 60%;
		margin-top: 40px;
		font-size: 15px;
		margin-bottom: -10px;
	}
	.user .ny-banner .text strong {
		font-size: 20px;
	}
	.user .ny-banner .text span {
		font-size: 14px;
	}
	.user .ny-banner .img {
		height: 130px;
	}
	.user .ny-banner .text {
		bottom: 22px;
	}
	.user .user-menu {
		width: 100%;
		/*overflow: hidden;*/
	}
	.user .user-menu li {
		width: 50%;
		float: left;
		position: relative;
	}
	.user .user-menu>li .below {
		position: absolute;
		z-index: 9;
		width: 100%;
	}
	.user .user-content {
		width: 100%;
		margin-top: 30px;
	}
	.user .user-content .title {
		font-size: 16px;
	}
	.user .user-content .content {
		padding: 35px 25px 60px;
	}
	.fengxian .user-content .content,
	.mima .user-content .content {
		padding-top: 45px;
	}
	.mima .content ul li input {
		width: 100%;
	}
	.mima .content ul li span {
		display: block;
		text-align: left;
		margin-bottom: 5px;
	}
	.user .user-content button,
	.user .user-content .button {
		margin-top: 40px;
	}
	.notice-detail .ny-content>p {
		margin: 20px 0 25px;
	}
	.perData .user-content .state a {
		width: 80px;
		font-size: 12px;
	}
	.perData .user-content .state input {
		width: calc(100% - 80px);
	}
}