*{
    scrollbar-width: thin;/*//è®¾ç½®ç«ç‹æ»šåŠ¨æ¡å®½åº¦*/
    scrollbar-color: #9b9b9b #ffffff;/*//è®¾ç½®ç«ç‹æ»šåŠ¨æ¡é¢œè‰²*/
}
/*å£°æ˜Ž WebFont*/
@font-face {
    font-family: 'DIN LIGHT';
    src: url('../fonts/DIN_LIGHT.TTF');
}

@font-face {
    font-family: 'DIN MEDIUM';
    src: url('../fonts/DIN_MEDIUM.TTF');
    font-weight: normal;
}

@font-face {
    font-family: 'din-bold';
    src: url('../fonts/din-bold.otf');
}

@font-face {
    font-family: 'DINCond-Black';
    src: url('../fonts/DINCond-Black.otf');
}

@font-face {
    font-family: 'DINCond-Bold';
    src: url('../fonts/DINCond-Bold.otf');
}

@font-face {
    font-family: 'DINCond-Medium';
    src: url('../fonts/DINCond-Medium.otf');
}

@font-face {
    font-family: 'DIN-LIGHT';
    src: url('../fonts/DIN-LIGHT.OTF');
}

@font-face {
    font-family: 'DINPro-Regular';
    src: url('../fonts/DINPro-Regular.otf');
}

@font-face {
    font-family: 'DIN-Regular';
    src: url('../fonts/DIN-Regular.otf');
}

@font-face {
    font-family: 'SOURCEHANSANSCN-BOLD';
    src: url('../fonts/SourceHanSansCN-Bold.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'SOURCEHANSANSCN-HEAVY';
    src: url('../fonts/SourceHanSansCN-Regular.ttf');
    font-weight: 900;
}

/*@font-face {*/
/*    font-family: 'SourceHanSansCN-Medium';*/
/*    src: url('../fonts/syht.woff');*/
/*    font-weight: 500;*/
/*}*/
@font-face {
    font-family: 'SourceHanSansCN-Medium';
    src: url('../fonts/SourceHanSansCN-Bold.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'SOURCEHANSANSCN-NORMAL';
    src: url('../fonts/SourceHanSansCN-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'SourceHanSansCN-Regular';
    src: url('../fonts/SourceHanSansCN-Regular.ttf');
    font-weight: normal;
}

@font-face {
    font-family: 'è½¦ç‰Œå­—ä½“DIN1451';
    src: url('../fonts/è½¦ç‰Œå­—ä½“DIN1451.ttf');
}

@font-face {
    font-family: 'æ€æºå®‹ä½“';
    src: url('../fonts/syst.woff');
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'SourceHanSansCN-Regular';
    color: #666666;
    background: #ffffff;
}

/* .w1416{
	width: calc(100% - 504px);
	margin: 0px auto;
	max-width: 1416px;
	min-width: 1200px;
} */
/* å¤´éƒ¨ */
header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
    min-width: 1280px;
    background: #f3f3f3;
    margin: 0px auto;
    padding:0 134px;
    align-items: center;
}

/* LOGO */
header .logoBox {
    height: 100%;

}

header .logoBox img {
    display: block;
    height: 48px;
    margin: 26px auto;
}

.w1416 {
    width: 1416px;
    margin: 0px auto;
    overflow: hidden;
}

.w1280 {
    width: 1280px;
    margin: 0px auto;
    overflow: hidden;
}

/* å¯¼èˆª */
header nav {
    max-width: 1280px;
    margin: 0px auto;
    /* width: calc(100% - 504px);
    margin: 0px auto;
    max-width: 1416px;
    min-width: 1200px; */
}

header nav ul {
    width: 100%;
    justify-content: space-between;
    margin: 0px auto;
    font-size: 0px;
    position: relative;
    padding: 0px 0px;
}

header nav ul li {
    display: inline-block;
    text-align: center;
    line-height: 100px;
}

header nav ul li a {
    display: block;
    font-size: 16px;
}

header nav ul li a {
    padding-bottom: 3px;
     padding:0 20px;
     border-bottom: 2px solid rgba(0,0,0,0);
}

header nav ul li a span{
    
    display: inline-block;
    color: #333333;
}
header nav ul li:hover a, header nav ul li.hover a {
    border-bottom: 2px solid #fedc00;
    display: inline-block;
    font-weight: bold;
    color: #333333;
}

header nav ul li:hover ul li a, header nav ul li.hover ul li a{
    font-weight:normal;
}

header nav ul li a i.fa {
    margin-left: 6px;
}

/* å‰¯æ ç›® */
header nav ul li .subBox {
    display: none;
    position: absolute;
    left: 0px;
    background: rgba(255, 255, 255, .9);
    width: 100%;
    overflow: hidden;
    opacity: 0;

}

@keyframes showSubBox {
    from {
        opacity: 0;
        display: none;
    }
    to {
        opacity: 1;
        display: block;
    }
}
header nav ul li:hover .subBox ul li a, header nav ul li.hover .subBox ul li a{
    border-bottom:none;
}
header nav ul li:hover .subBox {
    animation: showSubBox .5s ease-in forwards;
    display: block;
}

header nav ul li .subBox ul {
    width: calc(100% - 80px);
    height: calc(75px - 35px);
    font-size: 0px;
    line-height: 0px;
    text-align: left;
    padding: 18px 40px;
    border-bottom: #c6c6c6 2px solid;
}

header nav ul li .subBox ul li {
    width: auto;
    height: 40px;
    margin: 0px 15px;
    font-size: 16px;
    line-height: 40px;
    border-bottom:none;
}

header nav ul li .subBox ul li a {
    display: inline-block;
}

header nav ul li .subBox ul li a.hover, header nav ul li .subBox ul li a:hover {
    border-bottom: 2px solid #333333;
    color: #333333;
    font-weight: bold;
}

/* cont å†…å®¹ */
header nav ul li .subBox .tabCont {
    display: block;
    width: calc(100% - 80px);
    padding: 28px 40px;
}

header nav ul li .subBox .tabCont div {
    display: flex;
    flex-wrap: nowrap;
}

header nav ul li .subBox .tabCont div.hide {
    display: none;
}

header nav ul li .subBox .tabCont div.show {
    display: flex;
}

header nav ul li .subBox .tabCont ol {
    text-align: left;
}

header nav ul li .subBox .tabCont ol li {
    line-height: 40px;
    width: auto;
    text-align: left;
    margin-right: 80px;
    font-size: 10px;
    color: #cdcdcd;
    display: block;
}

header nav ul li .subBox .tabCont ol li a {
    display: inline-block;
    margin-left: 3px;
}

header nav ul li .subBox .tabCont ol li a:hover {
    color: #999;
}


/* ç”µè¯ */
header .telBox {
    width: 250px;
    font-size: 13px;
}
header .telBox .tel_tit,header .telBox .tel_text{ width:100%; display:block; text-align:center; height:36px; line-height:36px; }
header .telBox .tel_tit img{ margin-right:5px;  }
header .telBox .tel_text{     
    font-size: 24px;
    letter-spacing: 1px;
    color: #222;
    font-weight: bold;
}

header .telBox ul {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

header .telBox ul li {
    text-align: center;
    line-height: 100px;
}

header .telBox ul li img {
    display: block;
    margin: 38px auto;
    width: 27px;
    height: 27px;
}

header .telBox ul li:first-child {
    width: 106px;
    border-right: 1px solid #cfcfcf;
}

header .telBox ul li:nth-child(2) {
    border-right: 1px solid #afafaf;
    width: 68px;
}

header .telBox ul li:nth-child(3) {
    border-right: 1px solid #afafaf;
    width: 72px;
}

/* layå¼¹å‡ºçª—å…³é—­æŒ‰é’®ç½®é¡¶ */
.layui-layer-setwin {
    z-index: 999;
}

/* å°¾éƒ¨ */

/* å°¾éƒ¨å¯¼èˆª */
#footerMenu {

}

#footerMenu ul {
    display: flex;
    justify-content: center;
}

#footerMenu ul li {
    width: 178px;
    height: 268px;
    background: #e5e5e5;
    margin-right: 16px;
    border-bottom: 10px solid #fff;
}

#footerMenu ul li:hover {
    border-color: #f8d300;
}

#footerMenu ul li:last-child {
    margin-right: 0px;
}

#footerMenu ul li a {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#footerMenu ul li i {
    display: block;
    width: 80px;
    height: 80px;
    margin: 60px auto 0px auto;
}

#footerMenu ul li h2 {
    font-size: 20px;
    text-align: center;
    font-family: "SourceHanSansCN-Medium";
    color: #727171;
    line-height: 100%;
}

#footerMenu ul li p {
    margin-top: 10px;
    color: #727171;
    font-size: 12px;
    font-family: "DIN-LIGHT";
    text-align: center;
    line-height: 100%;
}

/* å°¾éƒ¨ */
#footer {
    background: #f3f3f3;
}



#copyright {
    color: #555555;
    font-size: 14px;
    text-align: center;
    line-height: 100%;
    padding: 30px 0px 28px 0px;
}

/* å³ä¾§æµ®åŠ¨ */
/* ç½®é¡¶ */
#rightTop {
    position: fixed;
    right: 0px;
    bottom: 10%;
    width: 60px;
    background: #808080;
    z-index: 999;
    border-radius: 10px 0px 0px 10px;
    overflow: hidden;
    display: none;
}

#rightTop ul li {
    height: 50px;
    width: (100%);
    overflow: hidden;
    cursor: pointer;
    font-size: 0px;
    line-height: 0px;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    position: relative;
}

#rightTop ul li.hover {
    background: #ffd200;
}

#rightTop ul li i {
    width: 40px;
    height: 50px;
    display: block;
    position: absolute;
    left: 10px;
    top: 0px;
}

#rightTop ul li i.icon01 {
    background: url(../icon/icon_right_01.png) no-repeat left center;
}

#rightTop ul li:hover i.icon01 {
    background: url(../icon/icon_right_01_h.png) no-repeat left center;
}

#rightTop ul li i.icon02 {
    background: url(../icon/icon_right_02.png) no-repeat left center;
}

#rightTop ul li:hover i.icon02 {
    background: url(../icon/icon_right_02_h.png) no-repeat left center;
}

#rightTop ul li i.icon03 {
    background: url(../icon/icon_right_03.png) no-repeat left center;
}

#rightTop ul li:hover i.icon03 {
    background: url(../icon/icon_right_03_h.png) no-repeat left center;
}

/* swiper ç‚¹è‡ªå®š */

.diySwiperPagination .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
}

.diySwiperPagination .swiper-pagination-bullet-active {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
}

.diySwiperPagination > .swiper-pagination-bullets {
    bottom: 15px;
}

.bj {
    text-align: center;
}

/* banner æ•ˆæžœå¼€å§‹ */
#banner {
    width: 100%;
    max-width: 1920px;
    margin: 0px auto;
}

#banner .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
}

#banner .swiper-pagination-bullet-active {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    display: inline-block;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
}

#banner .swiper-button-next,
#banner .swiper-button-prev {
    background: rgba(207, 207, 207, .8);
    padding: 20px 10px;
    color: #9b9b9b;
    top: calc(50% - 40px);
}

#banner .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0px;
}

#banner .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0px;
}

#banner .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 45px;
}

#banner .swiper-slide img {
    width: 100%;
    height: auto;
}

/* banner æ•ˆæžœç»“æŸ */

/* å…¬å…±å°æ ‡é¢˜ */
.minTitleBox {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    border-bottom: 1px solid #9c9c9c;
}

.minTitleBox h3 {
    font-size: 20px;
    color: #9b9b9b;
    line-height: 50px;
    height: 50px;
}

.minTitleBox h3 strong {
    font-family: "SourceHanSansCN-Medium";
    color: #333333;
    display: inline-block;
    border-bottom: 3px solid #333333;
    height: 49px;
    font-weight: normal;
}

.minTitleBox a {
    font-size: 14px;
    font-family: "DIN MEDIUM";
    color: #939393;
    text-transform: uppercase;
    line-height: 60px;
    height: 50px;
    overflow: hidden;
}

.minTitleBox a:hover {
    color: #b8272d;
}

/*å…¬å…±å°æ ‡é¢˜2*/
.minTitle2Box h2 strong, .minTitle2Box h2 span {
    line-height: 100%;
    display: inline-block;
    font-weight: normal;
    font-size: 30px;
    color: #9b9b9b;
    font-family: "SourceHanSansCN-NORMAL";
}

.minTitle2Box h2 strong {
    font-family: "SourceHanSansCN-Medium";
    color: #333333;
}

.minTitle2Box h2 span {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 2px solid #737373;
}

/* å°æ ‡é¢˜æ•ˆæžœ2 */
.subTitle2 {
    position: relative;
    height: 32px;
}

.subTitle2 h2 strong, .subTitle2 h2 span {
    line-height: 100%;
}

.subTitle2 h2 strong {
    display: inline-block;
    font-weight: normal;
    font-size: 30px;
    color: #333;
    font-family: "SourceHanSansCN-Medium";
}

.subTitle2 h2 span {
    display: inline-block;
    height: 32px;
    font-size: 32px;
    font-family: "DINCond-Bold";
    text-transform: uppercase;
    color: #9b9b9b;
    padding-left: 10px;
    margin-left: 18px;
    border-left: 2px solid #737373;
}

.subTitle2 .moreBtn {
    position: absolute;
    right: 0px;
    top: 2px;
    background: #e5e5e5;
    line-height: 25px;
    height: 25px;
    display: block;
    padding: 0px 17px;
    color: #333333;
    font-size: 15px;
}

/* å¹¿å‘Š */
.ad {
    width: 100%;
    height: 214px;
    overflow: hidden;
    text-align: center;
    line-height: 0px;
    font-size: 0px;
    position: relative;
}

.ad a {
    width: 1776px;
    height: 188px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0px;
    z-index: 1;
    margin-left: -888px;
    text-align: center;
    overflow: hidden;
}

.ad img, .ad2 img {
    display: block;
    margin: 0px auto;
    transition: all 500ms;
    width: 100%;
}

.ad:hover img, .ad2:hover img {
    transform: scale(1.1);
}

.ad .bj {
    width: 1776px;
    background: #9b9b9b;
    height: 214px;
    position: absolute;
    right: 50%;
    top: 0px;
    margin-right: -960px;
}

/* å¹¿å‘Š2æ ·å¼ */
.ad2 {
    overflow: hidden;
    text-align: center;
    line-height: 0px;
    font-size: 0px;
}

.ad2 a {
    display: block;
    overflow: hidden;
}

/* æ»šåŠ¨æ¡æ ·å¼ */
.diyScrollbar::-webkit-scrollbar {
    /*æ»šåŠ¨æ¡æ•´ä½“æ ·å¼*/
    width: 4px;
    /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
    height: 1px;
}

.diyScrollbar::-webkit-scrollbar-thumb {
    /*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
    border-radius: 2px;
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
    background: #9b9b9b;
}

.diyScrollbar::-webkit-scrollbar-track {
    /*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
    box-shadow: inset 0 0 2px rgba(0, 0, 0, .1);
    border-radius: 2px;
    background: #fff;
}

/* ä¼˜ç§€ä½œå“ */
#excellentWorks .minTitleBox {
    height: 56px;
}

#excellentWorks .minTitleBox h3 {
    font-size: 0px;
    line-height: 0px;
    height: 55px;
}

#excellentWorks .minTitleBox h3 strong {
    font-size: 30px;
    line-height: 55px;
    height: 55px;
    margin-right: 15px;
    overflow: hidden;
    font-weight: normal;
}

#excellentWorks .minTitleBox h3 a, #excellentWorks .minTitleBox h3 span {
    font-size: 20px;
    color: #9b9b9b;
    line-height: 55px;
    display: inline-block;
    overflow: hidden;
    height: 55px;
}

#excellentWorks .minTitleBox h3 span {
    margin: 0px 10px;
}

#excellentWorks .minTitleBox h3 a.hover {
    color: #333333;
    font-family: "SourceHanSansCN-Medium";
}

#excellentWorks .subTitle {
    color: #9b9b9b;
    line-height: 100%;
    margin-bottom: 15px;
}

#excellentWorks ul {
    display: flex;
    justify-content: flex-start;
}

#excellentWorks ul li {
    position: relative;
    width: 235px;
    height: 373px;
    margin-right: 26px;
    overflow: hidden;
    cursor: pointer;
}

#excellentWorks ul li a {
    display: block;
}

#excellentWorks ul li:last-child {
    margin-right: 0px;
}

#excellentWorks ul li .imgBox {
    position: relative;
    z-index: 0;
}

#excellentWorks ul li .imgBox img {
    width: 100%;
    height: 335px;
    display: block;
}

#excellentWorks ul li .imgBox p {
    height: 39px;
    background: #e5e5e5;
    line-height: 39px;
    text-align: center;
    font-size: 18px;
    color: #333333;
}

#excellentWorks ul li .txtBox {
    overflow: hidden;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, .8);
    transition: all 500ms;
}

#excellentWorks ul li .txtBox i.icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: calc(100% - 105px) auto 26px auto;
}

#excellentWorks ul li .txtBox i.icon img {
    width: 100%;
    height: 100%;
    display: block;
}

#excellentWorks ul li .txtBox h6, #excellentWorks ul li .txtBox p {
    color: #fff;
    font-size: 17px;
    font-family: "SourceHanSansCN-Medium";
    text-align: center;
}

#excellentWorks ul li .txtBox p {
    font-size: 14px;
}

#excellentWorks ul li:hover .txtBox {
    height: 100%;
    padding-top: 100px;
    box-sizing: border-box;
}

#excellentWorks .bj {
    text-align: center;
}

/* é€šç”¨åˆ†é¡µ */
.pageBox {
    /* padding-top: 30px; */
    position: relative;
}

.pageBox ul {
    display: flex;
    justify-content: center;
}

.pageBox ul li {
    line-height: 20px;
    /* height: 20px; */
    margin: 0px 5px;
}

.pageBox ul li a, .pageBox ul li span {
    display: block;
    padding: 0px 10px;
    border: 1px solid #808080;
    color: #333333;
    font-size: 14px;
}

.pageBox ul li.int {

}

.pageBox ul li.active span {
    display: inline-block;
    background: #333333;
    color: #ffd200;
    padding: 0px 10px;
    border: 1px solid #808080;
    font-size: 14px;
    line-height: 20px;
}

.pageBox ul li.int input {
    width: 50px;
    height: 20px;
    border: 1px solid #808080;
    margin-right: 3px;
    margin-left: 3px;
}

.pageBox ul li:hover a, .pageBox ul li.hover a, .pageBox ul li.active span {
    background: #333333;
    color: #ffd200;
}

/*.pageBox ol li.page_disabled span{*/
/*	cursor: not-allowed;*/
/*	background:#dddddd;*/
/*	!*pointer-events:none;*!*/
/*}*/

/* å½“å‰ä½ç½® */
#position {
    padding-top: 2px;
    line-height: 52px;
    height: 52px;
    border-bottom: 2px solid #b7b7b7;
    overflow: initial;
}

#position a {
    font-size: 20px;
    color: #9b9b9b;
}

#position strong {
    font-size: 20px;
    font-weight: normal;
    font-family: "SourceHanSansCN-Medium";
    display: inline-block;
    border-bottom: 3px solid #333333;
    color: #333333;
    height: calc(100% - 2px);
}


/*å¤´éƒ¨*/
.head_top {
    width: 100%;
    height: 38px;
    line-height: 38px;
    background: #e5e5e5;
    font-size: 12px;
    position: relative;
    z-index: 10005;
}
.head_top .w1280, .head_top .clearfix{
    overflow: inherit;
}
.head_top .topz span{
    background: url(../icon/position01_icon.png) no-repeat 10px center #e5e5e5;
    display: inline-block;
    padding: 0px 10px;
    text-indent: 15px;
    height: 38px;
}

.topy ul li {
    float: left;
    margin-left: 10px;
    font-size: 12px;
}

.topy ul li a {
    font-size: 12px;
}

.topy ul li span {
    /*color: #0071ab;*/
    font-weight: bold;
    font-size: 12px;
}

.topy .layui-nav {
    padding: 0;
    background: none;
    color: #808080;
    display: flex;
}

.topy > .layui-nav > .layui-nav-item {
    position: relative;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
    line-height: 38px;
}


.topy > .layui-nav > .layui-nav-item .layui-nav-child {
    top: 38px;
}

.topy > .layui-nav > .layui-nav-item .layui-nav-more {
    display: none;
}


.topy .layui-nav .layui-nav-item a {
    color: #0071bc;
    padding: 0 10px;
}


.topy .layui-nav .layui-this::after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed::after {
    background: none;
}

.topy .layui-nav .layui-nav-item:hover {
    background: #ffffff;
}
.select_city_box{
    position: absolute;
    left: 50%;
    top: 38px;
    margin-left: -600px;
    background: #fff;
    border: 1px solid #f3f3f3;
    background-color: #fff;
    z-index: 2;
    border-top: 0px;
    padding-top:15px;
    padding-bottom: 35px;
    display: none;
    z-index: 10000;
}
.select_city_box .city_box{
    width: 1078px;
    margin: 15px auto 0px auto;
}
.select_city_box .all_city{
    margin-top:0px;
}
.select_city_box .city_box h2{
    color: #4d4d4d;
    font-size: 16px;
    font-weight: bold;
    line-height: 300%;
    border-bottom: 1px solid #ccc;
    text-indent: 35px;
}
.select_city_box .position_city h2{
    color:#333;
    background: url(../icon/position02_icon.png) no-repeat 5px center;
}
.select_city_box .position_city h2 a{
    color: #4d4d4d;
    font-size: 16px;
    font-weight: bold;
}
.select_city_box .position_city h2 a:hover{
    color:red;
}
.select_city_box .hot_city h2{
    background: url(../icon/hot_icon.png) no-repeat 5px center;
}
.select_city_box .all_city h2{
    background: url(../icon/city_icon.png) no-repeat 5px center;
}
.select_city_box .city_box ul{
    overflow: hidden;
    padding: 20px 0px 0px 0px;

}
.select_city_box .city_box ul li{
    float:left;
    width:70px;
    margin-right: 42px;
    margin-bottom: 15px;
    text-align: center;
}
.select_city_box .city_box ul li a{
    color:#494949;
}
.select_city_box .city_box ul li a:hover{
    color:red;
}
.select_city_box .city_box ul li:nth-child(10n){
    margin-right:0px;
}

.fabulousActBtn{
    background: url(../icon/icon_fabulous_02.png) no-repeat left center;
    text-indent: 25px;
}
.fabulousActBtnHover{
    background: url(../icon/icon_fabulous_02_h.png) no-repeat left center;
}