<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
	/*    width:100%;
    height:100%;
    font-size: 14px;*/
	-webkit-font-smoothing: antialiased;
	/*chrome、safari*/
	-moz-osx-font-smoothing: grayscale;
	/*firefox*/
}

button {
	border: none;
	outline: none;
	cursor: pointer;
}

.left {
	float: left;
}

.right {
	float: right;
}

.red {
	color: #ed1b23;
}

.red a {
	color: #ed1b23;
}

.nav .nav-left .nav-left-fir {
	display: block !important;
}


/*-----------------------------center-----------------------------*/


/*动画*/


/*.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}


@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}


@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}


@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}*/


/*------------------------------固定搜索栏------------------------------*/

.fixed-nav {
	width: 100%;
	height: 60px;
	background-color: rgba(89,182,187,1);
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 2020;
}

.fixed-nav .fixed-nav-con {
	width: 1200px;
	margin: 0 auto;
	position: relative;
}

.fixed-nav .close-button,
.fixed-nav .open-button {
	width: 30px;
	height: 30px;
	font-size: 20px;
	line-height: 50px;
	color: #7f560f;
	text-align: center;
	display: block;
	cursor: pointer;
	position: absolute;
	right: 1px;
	top: 10px;
	/*top: 50%;
    margin-top: -25px;*/
}

.fixed-nav .fixed-nav-l {
	width: 200px;
	height: 90px;
	float: left;
	text-align: center;
}

.fixed-nav .fixed-nav-l span {
	font-size: 24px;
	padding-top: 22px;
	display: inline-block;
	color: #ffa200;
	font-family: 'lantingdahei', "微软雅黑", "黑体";
}

.fixed-nav .fixed-nav-l p {
	margin-top: 10px;
	color: white;
}

.fixed-nav .sousuo-con {
	float: left;
	height: 90px;
}

.fixed-nav .sousuo-con ul {
	margin-top: 9px;
	margin-bottom: 11px;
	text-align: center;
}

.fixed-nav .sousuo-con li {
	padding: 0 20px;
	color: white;
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
}

.fixed-nav .sousuo-con li.on {
	color: #ffa200;
}

.fixed-nav .sousuo-con li:not(:last-child) {
	border-right: 1px solid white;
}

.fixed-nav .sousuo-form {
	margin-top: 15px;
	height: 30px;
	float: left;
	margin-right: 10px;
}

.fixed-nav .sousuo-form&gt;div {
	width: 715px;
	height: 42px;
	border-radius: 5px;
	background-color: #ffa200;
}

.fixed-nav .sousuo-form form {
	width: 425px;
	height: 42px;
	border-radius: 30px;
	background-color: #ffa200;
}

.fixed-nav .sousuo-form .xg-form .input1 {
	width: 420px;
	background-color: white;
	text-indent: 10px;
	height: 38px;
	border-radius: 30px;
	float: left;
	margin-top: 2px;
	margin-left: 2px;
}

.fixed-nav .sousuo-form .la-form .input1,
.fixed-nav .sousuo-form .sb-form .input1 {
	width: 320px;
	background-color: white;
	text-indent: 10px;
	height: 38px;
	border-radius: 5px 0px 0px 5px;
	float: left;
	margin-top: 2px;
	margin-left: 2px;
}

.fixed-nav .sousuo-form .la-form .input2,
.fixed-nav .sousuo-form .sb-form .input2 {
	width: 250px;
	background-color: white;
	text-indent: 10px;
	height: 38px;
	border-radius: 0px 5px 5px 0px;
	float: left;
	margin-top: 2px;
	margin-left: 2px;
}

.fixed-nav .sousuo-form .cx-submit {
	color: white;
	/*line-height: 42px;*/
	font-size: 18px;
	font-family: "微软雅黑", "黑体";
	float: right;
	/*width: 108px;*/
	padding-left: 28px;
	text-align: left;
	background: url(../../images/img/sousuo3.png) no-repeat left center;
	cursor: pointer;
	position: absolute;
	top: 11px;
	right: 5px;
}

.fixed-nav-con .phonenumber {
	height: 60px;
	width: 185px;
	float: left;
	margin-left: 15px;
	/*margin-right: 10px;*/
	border-left: 1px solid #bb8220;
	padding-left: 60px;
	background: url(../../images/img/syzxdh.png) no-repeat;
	background-position: 10px;
	margin-right: 20px;
}

.fixed-nav-con .phonenumber span {
	width: 100%;
	display: block;
	/*padding-top: 15px;*/
	font-family: "微软雅黑", "黑体";
	color: #492e00;
	font-size: 26px;
	font-weight: bold;
}

.fixed-nav-con .phonenumber p {
	margin-top: 10px;
	font-size: 16px;
	color: white;
	/*line-height: 30px;*/
	/*padding-left: 35px;*/
	/*background: url(../../images/img/telephone.png) no-repeat left bottom;*/
	color: #7f560f;
}

.gwlogo {
	border-right: 1px solid #bb8220;
	height: 60px;
	width: 60px;
	float: left;
	padding-left: 120px;
	background: url(/home/images/logoheng.png) no-repeat;
	background-position: 10px;
	margin-right: 20px;
}

.kefuonline {
	height: 60px;
	width: 110px;
	float: left;
	/*margin-right: 10px;*/
	border-left: 1px solid #bb8220;
	padding-left: 60px;
	background: url(/home/images/sykf.png) no-repeat;
	background-position: 10px;
	margin-right: 20px;
}

.kefuonline span {
	width: 100%;
	display: block;
	font-family: "微软雅黑", "黑体";
	color: #492e00;
	font-size: 22px;
	margin-top: 10px;
	letter-spacing: 1.5px;
	font-weight: bold;
}

.kefuonline p {
	
	font-size: 16px;
	color: #7f560f;
}

.shuomin {
	height: 60px;
	width: 120px;
	float: left;
	/*margin-right: 10px;*/
	border-left: 1px solid #bb8220;
	padding-left: 60px;
	background: url(../../images/img/sysmh.png) no-repeat;
	background-position: 10px;
	margin-right: 20px;
}

.shuomin span {
	width: 100%;
	display: block;
	font-family: "微软雅黑", "黑体";
	color: #492e00;
	font-size: 25px;
	margin-top: 10px;
	letter-spacing: 1.5px;
	font-weight: bold;
}

.shuomin p {
	margin-top: 5px;
	font-size: 16px;
	color: #7f560f;
}


/*.fixed-nav-con&gt;a {
    float: left;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 36px;
    margin-left: 25px;
}*/


/*固定搜索栏——弹出框一样式*/

#hongkong-company-search {
	display: none
}

.itxtitle {
	display: none
}

.itxtable {
	border-collapse: collapse;
	border-spacing: 0;
	text-align: center;
	width: 96%;
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 10px;
}

.itxtable th {
	font-size: 16px;
	text-align: center;
	font-size: 20;
	background-color: #0081ff;
	color: white;
	border-right: 2px solid white;
	height: 2.2em;
	padding-left: 5px;
}

.itxtable th:first-child {
	border-top-left-radius: 7px;
}

.itxtable th:last-child {
	border-top-right-radius: 7px;
}

.itxtable td {
	font-size: 16px;
	text-align: center;
	font-size: 20;
	color: #000;
	border: 1px solid #ccc;
	height: 2.2em;
	padding-left: 5px;
}

.prompt {
	width: 90%;
	margin: 15px auto;
}

.load-time {
	width: 400px;
	height: 300px;
	margin: 50px auto;
}

.load-time img {
	width: 400px;
	height: 300px;
}

.null-enter {
	width: 23%;
	margin: 30px auto 50px auto;
	position: relative;
}

.null-enter p {
	position: absolute;
	top: 0;
	left: 30px;
	color: #ff6969;
}

#hongkong-company-list select {
	border: 1px solid #ccc;
	margin: 0 5px;
	padding: 0 2px;
}

.animated2 {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated2.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated2.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}


/*固定搜索栏——表单——样式*/

button.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	/*    filter: alpha(opacity=20);
    opacity: .2*/
}

button.close:hover,
button.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5
}

button.close {
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	width: 32px;
	height: 32px;
	background: url(../../images/img/chanxn1.png) no-repeat;
}


/*.modal-open {
    overflow: hidden
}*/

.modal {
	position: fixed;
	top: 100px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2020;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0
}

.modal .model-mask {
	filter: alpha(opacity=50);
	opacity: .5;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	z-index: 10;
	height: 2000px;
}

.modal.fade .modal-dialog {
	z-index: 20;
	-webkit-transition: -webkit-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
	/*    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)*/
}

.modal.in .modal-dialog {
	/*    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)*/
}

.modal {
	overflow-x: hidden;
	overflow-y: auto
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px
}

.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000
}

.modal-backdrop.fade {
	/*filter: alpha(opacity=0);*/
	/*opacity: 0*/
}

.modal-backdrop.in {
	/*filter: alpha(opacity=50);*/
	/*opacity: .5*/
}

.modal-header {
	min-height: 16.43px;
	padding: 15px;
	padding-bottom: 10px;
}

.modal-header .close {
	margin-top: -2px
}

.modal-title {
	margin: 0;
	height: 40px;
	text-align: center;
	font: bold 26px/46px "微软雅黑";
	color: #4c556e;
	border-radius: 3px 3px 0 0;
}

.modal-body {}

.modal-body .mod1-content {
	width: 868px;
	margin: 15px;
	margin-bottom: 30px;
	border: 1px solid #DEDEDE;
	border-radius: 10px;
}

.modal-body .mod2-content {
	width: 100%;
	border-top: 1px solid #DEDEDE;
	text-align: center;
}

.modal-body .mod2-content p {
	margin-top: 55px;
	width: 100%;
	text-align: center;
	color: #4C556E;
	font-size: 16px;
}

.modal-body .mod2-content button {
	margin-top: 30px;
	margin-bottom: 50px;
	width: 150px;
	height: 40px;
	font-size: 17px;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	line-height: 40px;
	text-align: center;
	color: #FFFFFF;
	background: #0080FF;
	cursor: pointer;
}

.modal-body .mod2-content .saoyisao-box {
	border-top: 1px solid #DEDEDE;
	width: 100%;
	height: 320px;
	text-align: center;
}

.modal-body .mod2-content .saoyisao-box img {
	width: 200px;
	height: 200px;
	margin-top: 50px;
}

.modal-body .mod2-content .saoyisao-box p {
	margin-top: 15px;
	font-size: 14px;
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
	margin-bottom: 0;
	margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
	margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
	margin-left: 0
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:768px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto
	}
	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
	}
	.modal-sm {
		width: 300px
	}
}

@media (min-width:992px) {
	.modal-lg {
		width: 900px
	}
}


/*------------------------------banner轮播图------------------------------*/

.banner {
	min-width: 100%;
	height: 575px;
	overflow: hidden;
	position: relative;
}

.banner-list {
	width: 1920px;
	height: 384px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.banner-list img {
	width: 100%;
	height: 100%;
	float: left;
	display: none;
	position: absolute;
	left: 0;
	top: 0;
}

.banner .button-list {
	/*width: 225px;*/
	height: 10px;
	position: absolute;
	bottom: 15px;
	left: 49%;
	margin-left: -112px;
	overflow: hidden;
}

.banner .button-list li {
	width: 40px;
	height: 10px;
	margin-right: 5px;
	float: left;
	background-color: rgba(0, 0, 0, 0.5);
}

.banner .button-list li.on {
	background-color: rgba(255, 27, 0, 0.5);
}


/*------------------------------主要内容------------------------------*/

.main-content {
	width: 100%;
}

.jieshao {
	width: 1200px;
	margin: 0 auto;
}

.jieshao li {
	width: 239px;
	height: 42px;
	padding: 7px 0;
	margin-top: 40px;
	margin-bottom: 10px;
	float: left;
	font-size: 18px;
	border-right: 1px solid #c6c6c6;
	cursor: default;
}

.jieshao li:last-child {
	border-right: none;
}

.jieshao .img {
	width: 35px;
	height: 42px;
	overflow: hidden;
	float: left;
	margin-left: 37px;
}

.jieshao .img-box {
	width: 35px;
	height: 84px;
	transition: all ease 0.3s;
}

.jieshao li:hover {
	color: #239aff;
}

.jieshao li:hover .img-box {
	margin-top: -42px;
}

.jieshao .img-box img {
	float: left;
}

.jieshao li span {
	width: 167px;
	height: 42px;
	float: left;
	line-height: 42px;
	text-indent: 10px;
}


/*公共标题*/

.main-content .title {
	width: 100%;
	margin-top: 50px;
	margin-bottom: 40px;
	border-bottom: 1px solid black;
	float: left;
	position: relative;
}

.main-content .title-con {
	width: 600px;
	height: 30px;
	display: block;
	position: absolute;
	top: -15px;
	left: 50%;
	margin-left: -300px;
	text-align: center;
}

.main-content .title h2 {
	font-size: 30px;
	display: inline-block;
	background-color: white;
	padding: 0 30px;
	color: #4c556e;
}


/*热门注册*/

.main-content .zhuce {
	width: 1200px;
	margin: 0 auto 20px;
}

.zhuce .liucheng {
	text-align: center;
}

.zhuce .liucheng li {
	/*float: left;*/
	display: inline-block;
}

.zhuce .liucheng li:first-child {
	width: 71px;
	height: 71px;
	padding: 10px;
	border: 1px solid #c9c9c9;
	background-color: #4c556e;
	color: white;
	font-size: 28px;
	line-height: 35px;
	overflow: hidden;
}

.zhuce .liucheng li&gt;img {
	/*padding: 35px 10px;*/
	padding: 35px 20px;
}

.zhuce .liucheng .item {
	width: 91px;
	height: 91px;
	border: 1px solid #c9c9c9;
	font-size: 14px;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.zhuce .liucheng .lc-front {
	width: 100%;
	height: 100%;
}

.zhuce .liucheng .lc-front img {
	padding: 15px 26px 10px;
}

.zhuce .liucheng .lc-back {
	width: 100%;
	height: 100%;
	color: white;
	background-color: #ffa200;
	line-height: 20px;
	position: absolute;
	top: 100%;
	left: 0;
	transition: all ease .3s;
}

.zhuce .liucheng .item:hover .lc-back {
	top: 0;
}

.zhuce .zhuce-list {
	width: 1200px;
	height: 420px;
	margin-top: 33px;
}

.zhuce-list .item-left {
	width: 290px;
	height: 400px;
	margin: 7px 8px 7px 0;
	border: 1px solid #eeeeee;
	float: left;
	position: relative;
	overflow: hidden;
}


/*热门注册-相关服务-共用*/

.zhuce-list .name,
.fuwu-list .name {
	font-size: 24px;
	color: #202020;
	position: absolute;
	z-index: 10;
}

.zhuce-list .intro,
.fuwu-list .intro {
	font-size: 14px;
	line-height: 25px;
	color: #7f7f7f;
	position: absolute;
	z-index: 10;
}

.zhuce-list .price,
.fuwu-list .price {
	font-size: 14px;
	color: #de0900;
	position: absolute;
	z-index: 10;
}

.zhuce-list img,
.fuwu-list img {
	position: absolute;
	bottom: 0;
	right: 0;
	transition: all ease 0.4s;
}

.item-left:hover .name,
.item:hover .name {
	color: #55acee;
}

.item-left:hover .price em,
.item:hover .price em {
	font-size: 26px;
	transition: all ease 0.4s;
}

.item-left .name {
	top: 26px;
	left: 26px;
}

.item-left .intro {
	top: 70px;
	left: 26px;
}

.item-left .price {
	top: 134px;
	left: 26px;
}

.item-right .name {
	font-size: 18px;
	top: 21px;
	left: 17px;
}

.item-right .intro {
	top: 55px;
	left: 21px;
}

.item-right .price {
	top: 116px;
	left: 21px;
}

.zhuce-list .price em,
.fuwu-list .price em {
	font-size: 24px;
	font-style: normal;
}

.zhuce-list .price span,
.fuwu-list .price span {
	padding-left: 4px;
	padding-right: 4px;
}

.item-left img {
	width: 290px;
	height: 400px;
}

.item-left:hover img {
	width: 300px;
	height: 410px;
}

.item-right .item img {
	width: 285px;
	height: 190px;
}

.item-right .item:hover img {
	width: 295px;
	height: 200px;
}

.zhuce-list .item-right {
	width: 900px;
	height: 420px;
	float: left;
	overflow: hidden;
}

.item-right .item {
	width: 285px;
	height: 190px;
	border: 1px solid #eeeeee;
	margin: 6px;
	float: left;
	position: relative;
	overflow: hidden;
}

.item-right .item,
.zhuce-list .item-left {
	transition: all ease 0.4s;
}

.item-right .item:hover,
.zhuce-list .item-left:hover {
	box-shadow: 0 0 12px rgba(169, 209, 255, 0.8);
}


/*相关服务*/

.main-content .fuwu {
	width: 1200px;
	margin: 0 auto 20px;
}

.fuwu-list {}

.fuwu-list .item {
	border: 1px solid #eeeeee;
	float: left;
	position: relative;
	overflow: hidden;
}

.fuwu-list .item:hover {
	box-shadow: 0 0 12px rgba(169, 209, 255, 0.8);
	transition: all ease 0.4s;
}

.item-top .item {
	width: 378px;
	height: 223px;
	margin-right: 20px;
	margin-bottom: 10px;
}

.item-bottom .item {
	width: 284px;
	height: 190px;
	margin-right: 12px;
	margin-bottom: 10px;
}

.item-top .name {
	font-size: 20px;
	top: 14px;
	left: 18px;
}

.item-top .intro {
	top: 40px;
	left: 18px;
	white-space: nowrap;
}

.item-top .price {
	top: 70px;
	left: 18px;
}

.item-bottom .name {
	font-size: 18px;
	top: 15px;
	left: 10px;
}

.item-bottom .intro {
	top: 40px;
	left: 10px;
	white-space: nowrap;
}

.item-bottom .price {
	top: 70px;
	left: 10px;
}

.item-top img {
	width: 378px;
	height: 223px;
}

.item-top .item:hover img {
	width: 398px;
	height: 243px;
}

.item-bottom .item img {
	width: 284px;
	height: 190px;
}

.item-bottom .item:hover img {
	width: 304px;
	height: 210px;
}


/*专业顾问*/

.main-content .guwen {
	width: 1200px;
	margin: 0 auto 20px;
}

.guwen .guwen-con {
	width: 100%;
	height: ;
}

.guwen-con .city-list {
	width: 1080px;
	margin: 0 auto 18px;
	overflow: hidden;
}

.guwen-con .city-list li {
	width: 60px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	margin: 0 15px;
	float: left;
	border-radius: 4px;
	cursor: pointer;
}

.guwen-con .city-list li.on {
	background-color: #ffa200;
	color: white;
}


/*.guwen-con .city-list li:hover {
    background-color: #ffa200;
    color: white;
}*/

.guwen-con .guwen-list {
	width: 1190px;
	height: 190px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.guwen-con .guwen-item {
	width: 500%;
	overflow: hidden;
	position: absolute;
	top: 0;
}

.guwen-con .guwen-list li {
	width: 132px;
	height: 188px;
	margin: 0 18px;
	border: 1px solid #f3f3f3;
	float: left;
	position: relative;
}

.guwen-con .guwen-list li img {
	width: 95px;
	height: 120px;
	margin: 0 auto;
	display: block;
}

.guwen-con .guwen-list .guwen-text {
	width: 100%;
	height: 68px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #f3f3f3;
}

.guwen-con .guwen-text p {
	margin-top: 10px;
	white-space: nowrap;
}

.guwen-con .guwen-text a {
	width: 61px;
	height: 22px;
	line-height: 22px;
	display: block;
	margin: 12px auto 0;
	padding-left: 22px;
	padding-right: 5px;
	color: white;
	border-radius: 5px;
	background: #4c556e url(../../images/img/icon-19.png) no-repeat 5px center;
}


/*banner-center图*/

.main-content .banner-center {
	width: 100%;
	margin-top: 50px;
	position: relative;
}

.main-content .banner-center img {
	width: 100%;
	display: block;
}

.banner-center ul {
	width: 1200px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	margin-left: -600px;
	color: white;
}

.banner-center ul li {
	width: 300px;
	float: left;
	text-align: center;
}

.banner-center li em {
	font-size: 48px;
	font-style: normal;
}

.banner-center li p {
	font-size: 24px;
	padding-top: 30px;
}

.banner-center .zhuce-num {
	color: #ffa200;
}


/*品牌优势*/

.main-content .youshi {
	width: 100%;
	position: relative;
	background: url(../../images/img/youshibg1.jpg) no-repeat;
	background-size: 100% 100%;
	height: 2200px;
}

.main-content .youshi .ys-title {
	position: absolute;
	text-align: center;
	width: 100%;
}

.main-content .youshi .ys-title h2 {
	font-family: 'lantingdahei', "微软雅黑", "黑体";
	margin-top: 50px;
	font-size: 48px;
	color: #4c556e;
	font-weight: 300;
}

.main-content .youshi .ys-title-2 {
	font-size: 36px;
	margin-top: 32px;
	margin-bottom: 32px;
	font-family: 'lantingzhonghei', "微软雅黑", "黑体";
	color: #ffa200;
	position: relative;
}

.main-content .youshi .ys-title-2 i:nth-child(1) {
	width: 500px;
	height: 3px;
	margin: 11px auto 0;
	background-color: #ffa200;
	display: block;
}

.main-content .youshi .ys-title-2 i:nth-child(2) {
	width: 850px;
	height: 3px;
	margin: 9px auto 0;
	background-color: #ffa200;
	display: block;
}

.youshi .ys-title-con {
	width: 500px;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -250px;
	text-align: center;
}

.youshi .ys-title-con span {
	display: inline-block;
	background-color: #f0f0f0;
	padding: 0 15px;
}

.youshi .ys-item {
	position: absolute;
	width: 1200px;
	left: 50%;
	margin-left: -600px;
}

.youshi .ys-item .ys-item-text {
	width: 560px;
	margin: 0 20px;
	float: left;
}

.youshi .ys-item-text .title1 {
	font-size: 36px;
	color: #444444;
	/*margin-top: 107px;*/
	margin-top: 80px;
}

.youshi .ys-item-text .title2 {
	font-size: 24px;
	margin-top: 23px;
}

.youshi .ys-item-text .title2 em {
	font-size: 36px;
	color: #ed1b23;
	font-style: normal;
}

.youshi .ys-item-text .intro {
	font-size: 14px;
	margin-top: 23px;
	line-height: 24px;
	text-align: left;
}

.youshi .ys-item-text .intro li {
	overflow: hidden;
	/*margin: 11px 0;*/
	margin: 5px 0;
}

.youshi .ys-item-text .intro li span:nth-child(1) {
	float: left;
	width: 80px;
	color: #ed1b23;
	font-weight: bold;
	white-space: pre;
}

.youshi .ys-item-text .intro li span:nth-child(2) {
	float: left;
	width: 470px;
}

.youshi .ys-item .ys-item-img {
	width: 560px;
	margin: 0 20px;
	float: left;
	position: relative;
	height: 400px;
}

.youshi .ys-item .ys-item-img img {
	display: block;
	/*display: list-item;*/
}

.youshi .ys-item .ys-xiangkuang-1 div,
.youshi .ys-item .ys-xiangkuang-2 div,
.youshi .ys-item .ys-xiangkuang-4 div {
	overflow: hidden;
	position: absolute;
	transition: all ease-out .5s;
}

.youshi .ys-item .ys-xiangkuang-1 div img {
	width: 150%;
	height: 150%;
	position: absolute;
	top: -28%;
	left: -28%;
}

.youshi .ys-item .ys-xiangkuang-2 div img,
.youshi .ys-item .ys-xiangkuang-4 div img {
	width: 100%;
	height: 100%;
}

.youshi .ys-item .ys-xiangkuang-1 div {
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
}

.youshi .ys-item .ys-xiangkuang-1 div img {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}

.youshi .ys-item .ys-xiangkuang-1 div:hover {
	transform: scale(1.3, 1.3) rotate(45deg);
	-ms-transform: scale(1.3, 1.3) rotate(45deg);
	/* IE 9 */
	-moz-transform: scale(1.3, 1.3) rotate(45deg);
	/* Firefox */
	-webkit-transform: scale(1.3, 1.3) rotate(45deg);
	/* Safari and Chrome */
	-o-transform: scale(1.3, 1.3) rotate(45deg);
	/* Opera */
	z-index: 20;
}

.youshi .ys-item .ys-xiangkuang-2 div:hover,
.youshi .ys-item .ys-xiangkuang-4 div:hover {
	transform: scale(1.3, 1.3);
	-ms-transform: scale(1.3, 1.3);
	-moz-transform: scale(1.3, 1.3);
	-webkit-transform: scale(1.3, 1.3);
	-o-transform: scale(1.3, 1.3);
}

.youshi .ys-item .ys-xiangkuang-1 {}

.youshi .ys-item .ys-xiangkuang-1 .ys-xk-1 {
	width: 230px;
	height: 230px;
	box-sizing: border-box;
	border: 8px solid #38b0fe;
	top: 70px;
	left: 50px;
}

.youshi .ys-item .ys-xiangkuang-1 .ys-xk-2 {
	width: 136px;
	height: 136px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	top: 15px;
	left: 265px;
}

.youshi .ys-item .ys-xiangkuang-1 .ys-xk-3 {
	width: 136px;
	height: 136px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	top: 120px;
	left: 370px;
}

.youshi .ys-item .ys-xiangkuang-1 .ys-xk-4 {
	width: 136px;
	height: 136px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	top: 220px;
	left: 265px;
}

.youshi .ys-item .ys-xiangkuang-2 {}

.youshi .ys-item .ys-xiangkuang-2 .ys-xk-1 {
	width: 326px;
	height: 326px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	border-radius: 163px;
	left: 50%;
	top: 50%;
	margin-top: -163px;
	margin-left: -163px;
}

.youshi .ys-item .ys-xiangkuang-4 {}

.youshi .ys-item .ys-xiangkuang-4 .ys-xk-1 {
	width: 244px;
	height: 244px;
	box-sizing: border-box;
	border: 8px solid #38b0fe;
	border-radius: 122px;
	top: 0px;
	left: 260px;
}

.youshi .ys-item .ys-xiangkuang-4 .ys-xk-2 {
	width: 170px;
	height: 170px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	border-radius: 85px;
	top: 30px;
	left: 50px;
}

.youshi .ys-item .ys-xiangkuang-4 .ys-xk-3 {
	width: 134px;
	height: 134px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	border-radius: 67px;
	top: 200px;
	left: 150px;
}

.youshi .ys-item .ys-xiangkuang-4 .ys-xk-4 {
	width: 112px;
	height: 112px;
	box-sizing: border-box;
	border: 8px solid #b9e8fd;
	border-radius: 56px;
	top: 280px;
	left: 290px;
}


/*.youshi .ys-item .ys-item-img-xuanze {
    position: relative;
}
.youshi .ys-item .ys-item-img-xuanze {
    
}*/


/*.youshi .ys-item:nth-child(1) {
    text-align: right;
}
.youshi .ys-item:nth-child(2) {
    text-align: left;
}
.youshi .ys-item:nth-child(3) {
    text-align: right;
}
.youshi .ys-item:nth-child(4) {
    text-align: left;
}
.youshi .ys-item:nth-child(5) {
    text-align: right;
}*/


/*.ys-item .hezuo-icon {
    position: relative;
}
.ys-item .hezuo-icon img {
    position: absolute;
}
.ys-item .hezuo-icon img:nth-child(1) {
    top: 63px;
    left: 248px;
}
.ys-item .hezuo-icon img:nth-child(2) {
    top: 117px;
    left: 151px;
}
.ys-item .hezuo-icon img:nth-child(3) {
    top: 117px;
    left: 347px;
}
.ys-item .hezuo-icon img:nth-child(4) {
    top: 170px;
    left: 44px;
}
.ys-item .hezuo-icon img:nth-child(5) {
    top: 170px;
    left: 248px;
}
.ys-item .hezuo-icon img:nth-child(6) {
    top: 170px;
    left: 446px;
}
.ys-item .hezuo-icon img:nth-child(7) {
    top: 229px;
    left: 151px;
}
.ys-item .hezuo-icon img:nth-child(8) {
    top: 229px;
    left: 347px;
}*/


/*文章栏目*/


/*新闻*/

.main-content .wenzhang {
	width: 1200px;
	height: 260px;
	margin: 50px auto 80px;
	overflow: hidden;
}

.wenzhang .xinwen {
	width: 445px;
	padding: 0 22px;
	float: left;
	height: 260px;
	position: relative;
}

.xinwen .prev,
.xinwen .next {
	position: absolute;
	width: 22px;
	height: 22px;
	display: block;
	top: 100px;
	border-radius: 11px;
	background-color: rgba(127, 127, 127, .8);
	font-size: 22px;
	line-height: 18px;
	text-align: center;
	color: white;
	cursor: pointer;
	display: none;
	z-index: 10;
}

.xinwen .prev {
	left: 0px;
}

.xinwen .next {
	right: 0px;
}

.xinwen .xinwen-top {
	height: 30px;
}

.xinwen .xinwen-top .button {
	width: 50px;
	padding-left: 10px;
	padding-right: 10px;
	height: 10px;
	position: relative;
	padding-top: 10px;
}

.xinwen .xinwen-top .button li {
	width: 10px;
	height: 10px;
	border-radius: 5px;
	margin: 0 3px;
	float: left;
	background-color: #cccccc;
	cursor: pointer;
}

.xinwen .xinwen-top .button .on {
	background-color: #0080ff;
}

.xinwen .xinwen-top .button-prev,
.xinwen .xinwen-top .button-next {
	width: 0;
	height: 0;
	position: absolute;
	bottom: 0;
	cursor: pointer;
}

.xinwen .xinwen-top .button-prev {
	left: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid transparent;
	border-right: 6px solid #0080ff;
}

.xinwen .xinwen-top .button-next {
	right: -6px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #0080ff;
	border-right: 6px solid transparent;
}

.xinwen .xinwen-top .more {
	padding-top: 10px;
}

.xinwen .xw-con {
	width: 450px;
	height: 150px;
	padding-bottom: 12px;
	border-bottom: 1px dashed #c9c9c9;
	overflow: hidden;
	position: relative;
}

.xinwen .xw-con .xw-list {
	width: 500%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	transition: all ease .3s;
}

.xinwen .xw-con .item {
	width: 450px;
	overflow: hidden;
	float: left;
}

.xinwen .xw-con img {
	width: 200px;
	float: left;
}

.xinwen .xw-con .xw-text {
	width: 230px;
	height: 150px;
	margin-left: 16px;
	float: left;
	font-size: 14px;
	line-height: 20px;
	color: #7b7b7b;
}

.xinwen .xw-con .xw-text .xw-title {
	font-size: 18px;
	height: 56px;
	line-height: 28px;
	font-weight: bold;
	color: black;
	margin-bottom: 10px;
	text-overflow: ellipsis;
	overflow: hidden;
}

.xinwen&gt;ul&gt;li {
	line-height: 26px;
	height: 26px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.xinwen&gt;ul&gt;li:hover {
	color: #ffa200;
}

.xinwen&gt;ul&gt;li i {
	width: 10px;
	height: 10px;
	line-height: 26px;
	display: inline-block;
	margin-left: 5px;
	margin-right: 10px;
	border-radius: 5px;
	background-color: #cccccc;
}


/*离岸知识*/

.main-content .zhishi {
	width: 315px;
	padding: 0 12px;
	float: left;
	height: 260px;
}

.zhishi h4 {
	height: 30px;
	font-size: 18px;
	color: #0080ff;
	font-weight: normal;
	line-height: 30px;
	padding-left: 40px;
	margin-bottom: 8px;
	background: url(../../images/img/icon-4.jpg) no-repeat left center;
	font-family: 'lantingzhonghei', "微软雅黑", "黑体";
}

.zhishi ul {}

.zhishi ul li {
	line-height: 27px;
	height: 27px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	background:url(../../images/img/icon-221.jpg) no-repeat 7px center;
	padding-left:30px;
	overflow:hidden;
}

.zhishi ul li:hover,
.remen ul li:hover {
	color: #ffa200;
}

.zhishi ul li span {
	color: #ff0000;
	margin-right: 12px;
}


/*热门精选*/

.main-content .remen {
	width: 355px;
	padding-left: 15px;
	float: left;
	height: 260px;
}

.remen h4 {
	height: 30px;
	font-size: 18px;
	color: #0080ff;
	font-weight: normal;
	line-height: 30px;
	padding-left: 40px;
	margin-bottom: 8px;
	background: url(../../images/img/icon-20.jpg) no-repeat left center;
	font-family: 'lantingzhonghei', "微软雅黑", "黑体";
}

.remen ul {}

.remen ul li {
	line-height: 27px;
	height: 27px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 30px;
	background: url(../../images/img/icon-21.jpg) no-repeat 7px center;
}

.wenzhang&gt;div:not(:last-child) {
	border-right: 1px solid #c9c9c9;
}

#LR_text1 {
	width: 420px;
	background-color: white;
	text-indent: 10px;
	height: 30px;
	line-height:  30px;
	border-radius: 30px;
	float: left;
	margin-top: 2px;
	margin-left: 2px;
	font-size: 15px;
}

#LR_button1 {
	width: 100px;
	background-color: #492e00;
	line-height:  31px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
	border-top-color: #898989;
	font-size: 15px;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 18px;
	left: 538px;
	cursor: pointer;
}


/* 首页弹窗 */
.pop-up {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 320px;
	height: 260px;
	border: 1px solid #c9c9c9;
	background-color: white;
	z-index: 2019;
}
.pop-up .pop-up-container {
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding-bottom: 60px;
}
.pop-up .pop-up-title {
	width: 100%;
	height: 40px;
	font-size: 24px;
	color: white;
	text-align: center;
	line-height: 40px;
	background-color: #ff0000;
}
.pop-up .pop-up-content {
	text-indent: 2em;
	font-size: 14px;
	padding: 10px;
	line-height: 18px;
    height: -moz-calc(100% - 40px);
    height: -webkit-calc(100% - 40px);
    height: calc(100% - 40px);
    box-sizing: border-box;
}
.pop-up .pop-up-content h3 {
	text-indent: 0;
	font-size: 18px;
	line-height: 35px;
	text-align: center;
}
.pop-up .pop-up-content a:hover {
	color: #505050;
}
.pop-up .pop-up-closeBtn {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 24px;
	line-height: 40px;
	width: 40px;
	color: white;
	text-align: center;
	cursor: pointer;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
}
.pop-up .pop-up-closeBtn:hover {
	background-color: rgba(255,255,255,.3);
}</pre></body></html>