:root {
	--max: 1200px;
}

.top {
	width: 100%;
	height: 46px;
	background: #e5f3fe;
}

.top_max {
	width: var(--max);
	height: 100%;
	margin: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.top_max .contnu {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	line-height: 14px;
	border-left: 1px solid #333333;
	padding-left: 10px;
	margin-left: 10px;
	cursor: pointer;
	position: relative;
}

.top_left a img {
	width: 100px;
	height: auto;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 99;
	display: none;
}

.top_max .contnu:hover img {
	display: block;
}

.top_max .contnu:nth-child(1) {
	border-left: none;
	padding-left: 0px;
	margin-left: 0px;
}

.top_left {
	width: max-content;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.name {
	width: 100%;
	overflow: hidden;
	height: 180px;
	background-image: url(../images/beijing.png);
	background-size: 100% 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.name_max {
	width: var(--max);
	height: 100%;
	margin: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
}

.name_max h1 {
	width: 100%;
	overflow: hidden;
	text-align: center;
	font-size: 48px;
	font-weight: 800;
	color: #000000;
	font-family: "楷体";
}

.name_max p {
	width: 100%;
	overflow: hidden;
	text-align: center;
	font-size: 30px;
	color: #000000;
	line-height: 36px;
	font-weight: 800;
	letter-spacing: 1px;
	margin-top: 10px;
	font-family: "楷体";
}

.logo {
	width: 110px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.logo img {
	width: 100%;
	height: auto;
}

.hertre {
	width: 100%;
	height: 66px;
	background: #2d8ecf;
	z-index: 999;
}

.hertre_cen {
	width: var(--max);
	height: 100%;
	margin: auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.nav {
	width: 100%;
	height: auto;
}

.nav ul {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.nav ul li {
	font-size: 16px;
	color: #ffffff;
	line-height: 66px;
	text-align: center;
	transition: all 0.2s;
}

.nav ul li > a {
	position: relative;
}

.nav ul li > a::after {
	content: "";
	width: 0%;
	height: 1px;
	background: #fff;
	position: absolute;
	bottom: 0px;
	left: 0;
	transition: all 0.3s;
}

.nav ul li.nav_cen > a::after {
	width: 100%;
}

.nav ul li > a:hover::after {
	width: 100%;
}

.nav ul li svg {
	width: 15px;
	height: 15px;
	position: absolute;
	top: 20px;
	right: 20px;
	display: none;
}

.nav_ul {
	position: absolute;
	background: #fff;
	top: 66px;
	width: 100%;
	overflow: hidden;
	left: 0;
	display: none;
	box-shadow: 0px 3px 5px 2px rgb(0, 0, 0, 0.2);
	text-align: left;
	z-index: 9999;
}

.nav_ul a {
	font-size: 16px;
	margin-left: 40px;
	font-weight: 400;
	color: #333333;
	position: relative;
	padding-left: 15px;
}

.nav_ul a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #333333;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

.nav_ul a:hover {
	color: #2d8ecf;
}

.nav_ul a:hover::after {
	background: #2d8ecf;
}

.nav_ul a.nav_ul_pu {
	color: #2d8ecf;
}

.nav_ul a.nav_ul_pu::after {
	background: #2d8ecf;
}

.an {
	width: 60px;
	height: 60px;
	display: none;
	position: absolute;
	right: 0%;
	top: 5px;
	transition: all 0.5s;
	z-index: 99;
}

.container {
	cursor: pointer;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	transition: all 0.5s;
}

svg {
	transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active svg {
	transform: rotate(90deg);
}

path {
	transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
		stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

path:nth-child(1) {
	transform-origin: 36% 40%;
}

path:nth-child(2) {
	stroke-dasharray: 29 299;
}

path:nth-child(3) {
	transform-origin: 35% 63%;
}

path:nth-child(4) {
	stroke-dasharray: 29 299;
}

path:nth-child(5) {
	transform-origin: 61% 52%;
}

path:nth-child(6) {
	transform-origin: 62% 52%;
}

.active path:nth-child(1) {
	transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
	stroke-dasharray: 225 299;
	stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
	transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
	stroke-dasharray: 225 299;
	stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
	transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
	transform: translateX(9px) translateY(1px) rotate(45deg);
}

.moren {
	width: var(--max);
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.moren_left {
	width: 270px;
	overflow: hidden;
	box-shadow: 0px 3px 5px 2px rgb(0, 0, 0, 0.1);
}

.moren_left h1 {
	font-size: 22px;
	font-weight: 500;
	color: #333333;
	line-height: 30px;
	letter-spacing: 1px;
	line-height: 70px;
	padding-left: 30px;
}

.moren_left ul {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
}

.moren_left ul li {
	font-size: 18px;
	font-weight: 400;
	color: #333333;
	line-height: 50px;
	padding-left: 30px;
}

.moren_left ul li.moren_nav {
	background: #2d8ecf;
	color: #fff;
}

.moren_left ul li:hover {
	background: #2d8ecf;
	color: #fff;
}

.moren_right {
	width: calc(100% - 300px);
	overflow: hidden;
	box-shadow: 0px 3px 5px 2px rgb(0, 0, 0, 0.1);
	padding: 30px;
	padding-top: 0px;
}

.moren_right > h1 {
	font-size: 22px;
	font-weight: 500;
	color: #333333;
	border-bottom: 1px solid #dddddd;
	line-height: 70px;
}

.moren_text {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	line-height: 36px;
}

.moren_right > p {
	font-size: 22px;
	text-align: center;
	margin-top: 30px;
	font-weight: 500;
	color: #333333;
}

.moren_right > span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #999999;
	margin-top: 20px;
	text-align: center;
	border-bottom: 1px dashed #979797;
	padding-bottom: 20px;
}

.moren_right ul {
	width: 100%;
	overflow: hidden;
	margin-top: 10px;
}

.moren_right ul li {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.moren_right ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.moren_right ul li h1 {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	width: calc(100% - 100px);
	padding-left: 15px;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.moren_right ul li p {
	width: 100px;
	font-size: 12px;
	text-align: right;
	font-weight: 400;
	color: #999999;
}

.moren_right ul li h1::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #333333;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

.moren_right ul li:hover h1 {
	color: #2d8ecf;
}

.moren_right ul li:hover h1::after {
	background: #2d8ecf;
}

.page {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	margin-top: 30px;
}

.page .active,
.page .total {
	width: 28px;
	height: 28px;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #cccccc;
	font-size: 14px;
	margin: 0 6px;
	font-weight: 400;
	color: #666666;
	line-height: 28px;
	text-align: center;
	position: relative;
}

.page .active {
	color: #fff;
	border: 1px solid #2d8ecf;

	background: #2d8ecf;
}

.page .active:nth-child(1),
.page .active:nth-child(2),
.page .total:nth-child(1),
.page .total:nth-child(2),
.page .active:last-child,
.page .total:last-child {
	border: 1px solid #cccccc;
	color: #666666;
	background: #ffffff;
}

.page .total:nth-child(1) {
	width: max-content;
	border: none;
}

.page .active:nth-child(2)::after,
.page .total:nth-child(2)::after {
	content: "";
	width: 0;
	height: 0;
	border-right: 5px solid #999;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.page .active:last-child::after,
.page .total:last-child::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #999;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.mianb {
	width: var(--max);
	overflow: hidden;
	margin: 30px auto;
	font-size: 14px;
	font-weight: 400;
	color: #666666;
}

.login {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
}

.login_max {
	width: 600px;
	max-width: 96%;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.05);
	border-radius: 6px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 50px;
}

.login_max h1 {
	text-align: center;
	font-size: 30px;

	font-weight: 400;
	color: #333333;
}

.login_max i {
	width: 14px;
	overflow: hidden;
	position: absolute;
	top: 30px;
	right: 30px;
	cursor: pointer;
}

.login_max i img {
	width: 100%;
	height: auto;
}

.login_max form {
	width: 100%;
	overflow: hidden;
	display: block;
}

.login_max form label {
	width: 100%;
	overflow: hidden;
	display: block;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.login_max form label p {
	width: 60px;
	font-size: 14px;
	text-align: right;
	font-weight: 400;
	color: #333333;
}

.login_max form label input {
	width: calc(100% - 70px);
	height: 34px;
	background: #ffffff;
	border-radius: 2px;
	border: 1px solid #dddddd;
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	padding: 0 15px;
}

.login_max form .submitIn {
	width: 120px;
	height: 34px;
	background: #2d8ecf;
	border-radius: 4px;
	display: block;
	margin: auto;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	margin-top: 40px;
	border: none;
	cursor: pointer;
}

.login_max form label input.input-val {
	width: calc(100% - 160px);
}

#canvas {
	width: 90px;
	height: 34px;
}

.index {
	width: var(--max);
	margin: auto;
}

.banner {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner .swiper-pagination {
	bottom: 20px !important;
}

.banner .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	background: rgb(0, 0, 0, 0.3);
	margin: 0 10px !important;
}

.banner .swiper-pagination-bullet-active {
	background: #386abf;
}

.mySwiper {
	width: 50%;
}

.mySwiper p {
	width: 100%;
	line-height: 54px;
	background: rgb(0, 0, 0, 0.4);
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;

	padding: 0 20px;
	position: absolute;
	top: 0;
	left: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.in_xinwen {
	width: 50%;
	overflow: hidden;
	box-shadow: 0px 0px 5px 2px rgb(0, 0, 0, 0.1);
}

.xinwen {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.xinwen a {
	width: 33.3333333%;
	overflow: hidden;
	border: 1px solid #dddddd;
	text-align: center;
	line-height: 54px;
	font-size: 18px;
	font-weight: 400;
	color: #386abf;
	box-sizing: border-box;
}

.xinwen a.xinwen_a {
	border: 1px solid #386abf;
	background: #386abf;
	color: #fff;
}

.xinwen a:hover {
	border: 1px solid #386abf;
	background: #386abf;
	color: #fff;
}

.xinwen_bottom ul {
	width: 100%;
	overflow: hidden;
	padding: 10px 30px 30px;
}

.xinwen_bottom ul li {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.xinwen_bottom ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.xinwen_bottom ul li h1 {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	width: calc(100% - 80px);
	padding-left: 15px;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.xinwen_bottom ul li p {
	width: 80px;
	font-size: 12px;
	text-align: right;
	font-weight: 400;
	color: #999999;
}

.xinwen_bottom ul li h1::after {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #333333;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

.xinwen_bottom ul li:hover h1 {
	color: #2d8ecf;
}

.xinwen_bottom ul li:hover h1::after {
	background: #2d8ecf;
}

.kuaiji {
	width: 100%;
	overflow: hidden;
}

.kuaiji ul {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 10px;
}

.kuaiji ul li {
	width: calc(50% - 20px);
	margin-top: 30px;
	line-height: 80px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	text-align: center;
	background: #008fd5;
}

.kuaiji ul li:nth-child(2) {
	background: #00a1a6;
}

.kuaiji ul li:nth-child(3) {
	background: #00c399;
}

.kuaiji ul li a {
	display: block;
}

.gongcen {
	width: 100%;
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gongcen_max {
	width: calc(50% - 10px);
	overflow: hidden;
	box-shadow: 0px 0px 5px 2px rgb(0, 0, 0, 0.1);
}

.gongcen_p {
	background: #2d8ecf;
	font-size: 18px;
	font-weight: 400;
	color: #ffffff;
	line-height: 54px;
	padding: 0 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.gongcen_max ul {
	width: 100%;
	overflow: hidden;
	padding: 0 30px;
	padding-bottom: 20px;
}

.gongcen_max ul li {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
}

.gongcen_max ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.gongcen_max ul li h1 {
	font-size: 14px;
	font-weight: 400;
	color: #333333;
	width: calc(100% - 80px);
	padding-left: 15px;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.gongcen_max ul li p {
	width: 80px;
	font-size: 12px;
	text-align: right;
	font-weight: 400;
	color: #999999;
}

.gongcen_max ul li h1::after {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #333333;
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
}

.gongcen_max ul li:hover h1 {
	color: #2d8ecf;
}

.gongcen_max ul li:hover h1::after {
	background: #2d8ecf;
}

.max {
	width: 100%;
}

.pingtai {
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
	box-shadow: 0px 0px 5px 2px rgb(0, 0, 0, 0.1);
}

.pingtai_max {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.pingtai ul {
	width: 100%;
	overflow: hidden;
	padding: 20px;
	border: 1px solid #dddddd;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.pingtai ul li {
	width: 100%;
	overflow: hidden;
	padding-bottom: 20px;
	border-bottom: 1px solid #dddddd;
}
.pingtai ul li a {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.pingtai ul li img {
	width: 250px;
	height: auto;
}
.pingtai ul li h2 {
	width: calc(100% - 270px);
	overflow: hidden;
	font-size: 20px;
}
/* .pingtai_left {
    width: calc(100% - 520px);
    overflow: hidden;
}

.pingtai_right {
    width: 520px;
    overflow: hidden;
    padding: 0 30px;
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 32px;
} */

.lianjie {
	width: 100%;
	overflow: hidden;
	margin-top: 40px;
}

.lianjie p {
	font-size: 18px;
	font-weight: 400;
	color: #2d8ecf;
}

.lianjie_swiper {
	width: 100%;
	overflow: hidden;
	margin-top: 20px;
	padding: 20px 10px;
	border: 1px solid #dddddd;
}

.mySwiper1 img {
	width: 39%;
	height: auto;
}

.weiyuanhui {
	width: var(--max);
	overflow: hidden;
	margin: auto;
	margin-top: 30px;
	box-shadow: 0px 2px 5px 2px rgb(0, 0, 0, 0.1);
}

.weiyuanhui_top {
	width: 100%;
	overflow: hidden;
	padding: 25px 30px;
	border-bottom: 1px solid #dddddd;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.weiyuanhui_top > h1 {
	font-size: 22px;
	font-weight: 500;
	color: #333333;
}

.suosou {
	width: max-content;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.suosou p {
	font-size: 16px;

	font-weight: 400;
	color: #333333;
}

.suosou form {
	width: max-content;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-left: 10px;
}

.suosou form .seach_t {
	width: 228px;
	height: 32px;
	background: #ffffff;
	border-radius: 4px;
	border: 1px solid #cccccc;
	font-size: 14px;
	font-weight: 400;
	padding: 0 10px;
	color: #999999;
}

.suosou form .seach_s {
	width: 65px;
	height: 32px;
	background: #2d8ecf;
	font-size: 14px;
	display: block;
	font-weight: 400;
	color: #ffffff;
	text-align: center;
	border-radius: 4px;
	border: none;
	margin: 0 10px;
}

.suosou form .qing {
	width: 65px;
	height: 32px;
	background: #ffffff;
	border: 1px solid #cccccc;
	font-size: 14px;
	display: block;
	text-align: center;
	font-weight: 400;
	border-radius: 4px;
	color: #666666;
}

.weimo {
	width: 100%;
	overflow: hidden;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.weimo table {
	width: 100%;
	overflow: hidden;
	width: 35%;
}

.weimo table:nth-child(2) {
	width: 65%;
	border-left: none;
}

.weimo table:nth-child(2) th,
.weimo table:nth-child(2) td {
	border-left: none;
}

table,
th,
td {
	border: 1px solid #bbbbbb;
}

.weimo table th {
	height: 56px;
	background: #ececec;
	font-size: 16px;
	text-align: center;
	font-weight: 500;
	color: #2c3645;
}

.weimo table td {
	height: 56px;

	font-size: 14px;
	text-align: center;
	font-weight: 400;
	color: #333333;
}

.weimo table tr:nth-child(2n + 1) td {
	background: #f6f6f6;
}

.footer {
	width: 100%;
	overflow: hidden;
	background: #232625;
	padding: 40px 0;
	font-size: 14px;
	text-align: center;
	font-weight: 400;
	color: #ffffff;
	line-height: 20px;
	margin-top: 80px;
}

.geren {
	width: 200px;
	position: absolute;
	top: 14px;
	right: 0;
	z-index: 999;
	display: none;
	padding-top: 20px;
}

.geren_max {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
}

.geren_max a {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	line-height: 48px;
	padding: 0 30px;
}

.geren_max a:hover {
	background: #2d8ecf;
	color: #fff;
}

.xini {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
}

.xini form {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.xini form > label {
	width: calc(50% - 40px);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.xini form label p {
	width: 80px;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	text-align: right;
}

.xini form label > input:not([type="checkbox"]) {
	width: calc(100% - 90px);
	height: 34px;
	background: #ffffff;
	border-radius: 2px;
	border: 1px solid #dddddd;
	font-size: 14px;
	font-weight: 400;
	color: #999999;
	padding: 0 10px;
}

.nv {
	width: calc(100% - 90px);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
}

.nv > div {
	display: block;
	margin-right: 20px;
}

.nv input {
	width: 12px;
	height: 12px;
	margin-right: 8px;
}

.touxiang {
	width: 100%;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.touxiang p {
	width: 80px;
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	text-align: right;
}

#bcd {
	width: 80px;
	height: 80px;
}

#bcd img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#file {
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
	cursor: pointer;
	z-index: 1;
}

.rolo {
	width: calc(100% - 90px);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
}

.modified_r {
	width: 100px;
	height: 32px;
	background: #ffffff;
	border: 1px solid #cccccc;
	position: relative;
	font-size: 14px;
	text-align: center;
	line-height: 30px;
	font-weight: 400;
	color: #666666;
	margin-left: 20px;
	margin-top: 10px;
	cursor: pointer;
}

.bancun {
	width: 100%;
	overflow: hidden;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.bancun a {
	width: 100px;
	height: 32px;
	background: #ffffff;
	border: 1px solid #cccccc;
	margin-left: 20px;
	font-size: 14px;
	text-align: center;
	line-height: 32px;
	font-weight: 400;
	color: #666666;
}
.bancun input {
	width: 100px;
	height: 32px;
	background: #ffffff;
	border: 1px solid #cccccc;
	margin-left: 20px;
	font-size: 14px;
	text-align: center;
	line-height: 32px;
	font-weight: 400;
	color: #666666;
}

.bancun input.ban {
	background: #2d8ecf;
	color: #fff;
	border: none;
}

.bancun a {
	width: 100px;
	height: 32px;
	background: #2d8ecf;
	color: #fff;
	border: none;
	margin-left: 20px;
	font-size: 14px;
	text-align: center;
	line-height: 32px;
	font-weight: 400;
}
.bancun a.cnjks {
	border: 1px solid #cccccc;
	color: #666666;
	background: inherit;
}
.bianji {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.bianji_img {
	width: 100px;
	overflow: hidden;
}

.bianji_img img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
}

.bianji_r {
	width: calc(100% - 140px);
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.bianji_r form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ming {
	width: 50%;
	overflow: hidden;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
}

.ming span {
	font-weight: 600;
	color: #000;
	display: block;
	float: left;
}

.ming input {
	border: none;
	width: inherit;
	display: block;
	font-weight: 500;
	color: #333333;
	background: initial;
	float: left;
}
