airport/CN/css/style.css

2268 lines
67 KiB
CSS

@charset "utf-8";
/* CSS Document */
/*公用代码*/
html, body {
background: #F5F5F7 repeat scroll 0 0;
}
body {
color: black;
font: 12px arial,verdana;
overflow-x: hidden;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, button {
margin: 0;
padding: 0;
text-shadow: none;
}
label input {
text-shadow: none;
vertical-align: middle;
}
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
a{
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
a:link, a:visited {
text-decoration: none;
text-shadow: none;
}
a:hover, a:active,a:focus,*:hover{
text-decoration: none;
text-shadow: none;
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
img {
border: 0 none;
max-width:100%;
}
table {
border-collapse: collapse;
}
ul li {
list-style: none outside none;
}
input, textarea, select {
outline: medium none;
}
.color-red{
color: #E50012;
}
.color-green{
color: #0EAB69;
}
.f-l{
float: left;
display: inline-block;
}
.f-r{
float: right;
display: inline-block;
}
.t-l{
text-align: left;
}
.t-c{
text-align: center;
}
.t-r{
text-align: right;
}
.top10{
margin-top: 10px;
}
.top20{
margin-top: 20px;
}
.top30 {
margin-top: 30px;
}
.top40 {
margin-top: 40px;
}
.top50{
margin-top: 50px;
}
.top60{
margin-top: 60px;
}
.top70{
margin-top: 70px;
}
.top80 {
margin-top: 80px;
}
.bg-w{
background: #fff;
}
.w-100{
width: 100%;
display: inline-block;
vertical-align: top;
}
.w-1200{
width: 1200px;
margin: auto;
max-width: 100%;
}
/* 布局样式 */
.between-top{ display: flex; display: -webkit-flex; justify-content: space-between; -webkit-justify-content: space-between; }
.between-center{ display: flex; display: -webkit-flex; justify-content: space-between; align-items: center; -webkit-justify-content: space-between; -webkit-align-items: center; }
.between-bottom{ display: flex; display: -webkit-flex; justify-content: space-between; align-items: flex-end; -webkit-justify-content: space-between; -webkit-align-items: flex-end; }
.center-center{ display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
.around-center{ display: flex; display: -webkit-flex; justify-content: space-around; align-items: center; -webkit-justify-content: space-around; -webkit-align-items: center; }
.column-between{ display: flex; display: -webkit-flex; flex-direction: column; -webkit-flex-direction: column; justify-content: space-between; -webkit-justify-content: space-between; }
.column-around{ display: flex; display: -webkit-flex; flex-direction: column; -webkit-flex-direction: column; justify-content: space-around; -webkit-justify-content: space-around; }
/* 文字超出隐藏省略号 */
.text-one-hide{ overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;}
.text-two-hide{ overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;}
.text-three-hide{ overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;}
/*nav*/
.head_box{ background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.2); padding: 15px 0; position: fixed; left: 0; top: 0; z-index: 99;}
/**/
.nav ul li{ float: left; position: relative; margin-left: 20px; transition: all .6s; -webkit-transition: all .6s; -moz-transition: all .6s;}
.nav ul li span a{ float: left; font-size: 17px; line-height: 65px; padding: 0 16px; position: relative; text-decoration: none;}
.nav ul li span a::before{ content: ''; width: 100%; height: 0; position: absolute; left: 0; bottom: 0; z-index: -1; background: #f75c9a; transition: all .6s; -webkit-transition: all .6s; -moz-transition: all .6s; opacity: 0;}
.nav ul li:hover span a{ color: #fff !important;}
.nav ul li:hover span a::before{ opacity: 1; height: 100%;}
/*二级控制*/
.nav ul li .nav-second{ width: auto; position: absolute; left: 0; top: 65px; background: #f75c9a; opacity: 0; transition: all .6s; -webkit-transition: all .6s; -moz-transition: all .6s;}
.nav ul li .nav-second a{ min-width: 135px; float: left; margin: 0 10px; color: #fff; padding: 0 10px; height: 0;}
.nav ul li .nav-second a:hover{ background: #fff; color: #0c253b;}
/*hover*/
.nav ul li:hover .nav-second{ padding: 10px 0; opacity: 1;}
.nav ul li:hover .nav-second a{ height: 40px; padding: 10px 10px;}
.nav ul li.active span a{ color: #f75c9a;}
/*icon*/
.nav_btn{ width: 24px; float: right; position: relative; cursor: pointer; display: none; margin-top: 1px;}
.nav_btn i{ display: block; width: 100%; height: 2px; float: left; background-color: #0c253b; border-radius: 50px;
transition: all .5s ease 0s;
-webkit-transition: all .5s ease 0s;
-moz-transition: all .5s ease 0s;
}
.nav_btn i.bar-top{ margin-top: 0;}
.nav_btn i.bar-cen{ margin-top: 6px;}
.nav_btn i.bar-bom{ margin-top: 6px;}
.nav_btn.cur i.bar-cen{ opacity: 0;}
.nav_btn.cur i.bar-top{ -webkit-transform:rotate(45deg) translate(6px, 6px);transform:rotate(45deg) translate(6px, 6px);}
.nav_btn.cur i.bar-bom{ -webkit-transform: rotate(-45deg) translate(5.5px, -5px);transform: rotate(-45deg) translate(5.5px, -5px);}
/*隐藏*/
.overHide{ overflow: hidden;}
/* --------zjj------------ */
.flight-table .tab-list .tab-body .tab-body-children{
width: 100%;
height: 100%;
text-align: center;
padding: 10px 0;
background-color: #EEEEEE;
display: flex;
flex-direction: row;
}
.children_body {
flex: 1;
height: 100%;
}
.children_body div:nth-child(1){
height: 40px;
line-height: 40px;
color: #666;
font-size: 18px;
padding-bottom: 5px;
}
.children_body div p{
line-height: 25px;
}
/* ----------------------- */
/* --------cyp------------ */
.airportLogo{
margin-right: 10px
}
.searcBox_l{
width: 60px;
float: left;
position: relative;
height: 49px;
margin-right: 20px;
transition: all .6s;
-webkit-transition: all .6s;
-moz-transition: all .6s;
background: #f5f5f5;
}
.searcBox_l2 {
width: 100vw;
position: fixed;
left: 0;
top:60px;
background: rgba(255,255,255,.7);
}
.searchBoxTEXT{
width: 350px;
height: 48px;
line-height: 48px;
border: none;
background: #f5f5f5;
margin-left: 40px;
display: none;
}
.searchBoxTEXT2 {
text-indent: 50px;
width: 85vw;
height: 48px;
line-height: 48px;
border: none;
background: rgba(255,255,255,0);
}
.btn_Sae{
width: 60px;
height: 100%;
position: absolute;
right: 0;
top: 0;
background: url(/image/icon_05.png) no-repeat center;
border: none;
}
.btn_Sae2 {
width: 60px;
position: absolute;
top: 8px;
padding: 10px 0;
background: url(/image/icon_05.png) no-repeat center;
border: none;
}
.searcBox_l_ICON{
display: none;
width: 15px;
height: 16px;
position: absolute;
left: 0;
top: 17px;
background: url(/image/ix_hd_icon4.png) no-repeat center;
background-size: auto 13px;
padding: 0 20px;
cursor: pointer;
transform: all .6s;
}
.searcBox_l_ICON2 {
width: 15px;
height: 16px;
position: absolute;
left: 0;
top: 17px;
background: url(/image/ix_hd_icon4.png) no-repeat center;
background-size: auto 13px;
padding: 0 20px;
cursor: pointer;
}
.isshowBox{
display: block !important;
}
.isshowBox2{
display: none !important;
}
.searchObjShow{
display: block;
}
.searchObjWidth{
width: 450px;
transform: all .6s;
}
#xiala{
background:#fff ;
}
#xiala li{
line-height: 30px;
padding-left: 10px;
}
#xiala li:hover{
background: #39a7f4;
}
#xiala2{
background:#fff ;
}
#xiala2 li{
line-height: 30px;
padding-left: 10px;
}
#xiala2 li:hover{
background: #39a7f4;
}
.styleWidth{
padding-left: calc((100vw - 1250px) /2 - (1420px - 1100px ) + 70px)
}
.info_mc {
background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(255,255,255,0.1));
padding-left: 40px;
padding-top: 10px;
width: 500px;
}
/* ----------------------- */
/*航班*/
.center-banner{
height: 500px;
position: relative;
overflow: hidden;
}
.center-banner .text{
position: relative;
padding-left: 30px;
}
.center-banner .text::after{
height: 100%;
content: '';
position: absolute;
left: 0;
top: 0;
background: linear-gradient(54deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
width: 5px;
}
.center-banner .text h3{
font-size: 50px;
color: #fff;
font-weight: bold;
}
.center-banner .text h2{
font-size: 70px;
background: linear-gradient(53deg, rgba(255, 255, 255, 0.3) 0%, #FFFFFF 30%, #FFFFFF 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-transform:uppercase;
font-weight: bold;
}
.flight-banner{
background: url(../image/banner_01.jpg) no-repeat center;
}
.guide-banner{
background: url(../image/banner_02.jpg) no-repeat center;
}
.traffic-banner{
background: url(../image/banner_03.jpg) no-repeat center;
}
.service-banner{
background: url(../image/banner_04.jpg) no-repeat center;
}
.fun-banner{
background: url(../image/banner_05.jpg) no-repeat center;
}
.about-banner{
background: url(../image/banner_06.jpg) no-repeat center;
}
.opinion-banner{
background: url(../image/banner_07.jpg) no-repeat center;
}
.link-banner{
background: url(../image/banner_08.jpg) no-repeat center;
}
.news-banner{
background: url(../image/banner_09.jpg) no-repeat center;
}
.pinwei-banner{
background: url(../image/banner_10.jpg) no-repeat center;
}
/*二级菜单*/
.mune{
//background: linear-gradient(49deg, #181D39 0%, #314673 100%);
background: url(/image/ix_ge_bg2.png)top;
position: relative;
}
.separate-mune{
height: 80px;
}
.mune::after{
position: absolute;
bottom: 0;
left: 0;
background: url(../image/bg_03.png) no-repeat left bottom;
content: '';
height: 100%;
width: 145px;
}
.mune::before{
position: absolute;
bottom: 0;
right: 0;
background: url(../image/bg_04.png) no-repeat right top;
content: '';
height: 100%;
width: 145px;
}
.mune .list{
height: 80px;
line-height: 78px;
width: 25%;
display: inline-block;
float: left;
position: relative;
z-index: 1;
}
.fun-mune.mune .list{
width: 20%;
}
.mune .list a{
display: block;
position: relative;
color: #999999;
}
.mune .list.active a{
background: linear-gradient(156deg, #E2AB63 0%, #9B6C3A 100%);
color: #fff;
}
.mune .list a:hover{
color: #fff;
}
.mune .list a span{
display: inline-block;
position: relative;
padding-left: 70px;
height: 80px;
font-size: 18px;
}
.mune .list i{
width: 50px;
height: 50px;
display: inline-block;
background-size: 50px;
background-repeat: no-repeat;
background-position: center;
position: absolute;
left: 0;
top: 50%;
margin-top: -25px;
}
/*航班*/
.mune .list i.icon-mune-01{
background-image: url(../image/icon_01.png);
}
.mune .list i.icon-mune-02{
background-image: url(../image/icon_02.png);
}
.mune .list i.icon-mune-03{
background-image: url(../image/icon_03.png);
}
.mune .list i.icon-mune-04{
background-image: url(../image/icon_04.png);
}
.mune .list i{
opacity: 0.5;
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
.mune .list.active i,.mune .list a:hover i{
opacity: 1;
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
/*指南*/
.mune .list i.icon-mune-05{
background-image: url(../image/icon_09.png);
}
.mune .list i.icon-mune-06{
background-image: url(../image/icon_10.png);
}
.mune .list i.icon-mune-07{
background-image: url(../image/icon_11.png);
}
.mune .list i.icon-mune-08{
background-image: url(../image/icon_12.png);
}
/*玩转机场*/
.mune .list i.icon-mune-09{
background-image: url(../image/icon_31.png);
}
.mune .list i.icon-mune-10{
background-image: url(../image/icon_32.png);
}
.mune .list i.icon-mune-11{
background-image: url(../image/icon_33.png);
}
.mune .list i.icon-mune-12{
background-image: url(../image/icon_34.png);
}
.mune .list i.icon-mune-13{
background-image: url(../image/icon_35.png);
}
/**/
.footer_bg {
background: linear-gradient(49deg , #314673 0%, #181d39 84%);
padding: 40px 0;
}
.footer_middle{
display:inline-block;
}
.footer_middle a{
display: inline-block;
float: left;
height: 45px;
color: #fff;
line-height: 45px;
padding: 0 30px;
position: relative;
}
.footer_middle a:last-child::after{
height: 22px;
width: 1px;
content: '';
position: absolute;
left: 0;
top: 50%;
margin-top: -11px;
background: #fff;
}
.footer_middle a i{
display: none;
width: 120px;
position: absolute;
left: 50%;
bottom: 45px;
margin-left: -60px;
background: #fff;
}
.footer_middle a:hover i{
display: block;
}
.footer_bg .icp{
color: #fff;
}
/**/
.content{
width: 100%;
background:url(../image/bg_01.png) no-repeat top center;
background-size: 100% auto;
display: inline-block;
}
/*面包屑*/
.crumbs{
display: inline-block;
width: 100%;
padding: 20px 0;
font-size: 18px;
}
.crumbs a{
display: inline-block;
color: #999999;
float: left;
position: relative;
padding-right: 20px;
}
.crumbs a::after{
padding: 0 5px;
color: #ccc;
content: "/\00a0";
position: absolute;
right: 0px;
top: 2px;
}
.crumbs a:hover,.crumbs span{
color: #0E3483;
}
/*搜索列表*/
.flight-search{
padding: 30px 40px;
background: #fff;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
display: inline-block;
width: 100%;
position: relative;
z-index: 1;
}
.flight-search .list{
width: calc((100% - 60px) / 4);
display: inline-block;
float: left;
margin-right: 20px;
position: relative;
}
.flight-search .list:nth-child(4n){
margin-right: 0;
}
.flight-search .list:nth-child(5){
margin-top: 20px;
width: 100%;
position: relative;
}
.company-search .list{
margin: 0;
width: 100%;
}
.flight-search .list .search_img{
width: 34px;
height: 31px;
border: none;
background: url(../image/icon_05.png) no-repeat center #fff;
background-size: 18px;
position: absolute;
right: 6px;
top: 2px;
}
.flight-search .list .reset_btn{
width: 20px;
height: 20px;
border: none;
background: url(../image/ix_hd_icon4.png) no-repeat center #fff;
background-size: 8px;
border-radius: 100%;
border: 2px solid #555;
position: absolute;
right: 45px;
top: 7px;
z-index: 3;
opacity: 0.8;
display: none;
}
.flight-search .list .reset_btn:hover{ opacity: 1;}
.flight-search .list.resetShow .reset_btn{ display: block;}
.flight-search .layui-form .layui-input{
display: block;
width: 100%;
height: 34px;
padding: 6px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.layui-form .layui-form-select dl dd.layui-this{
background: #0E3483;
z-index: 9999;
}
.flight-update{
width: 100%;
font-size: 12px;
}
.flight-update span{
height: 30px;
line-height: 30px;
background: url(../image/icon_06.png) no-repeat left center;
padding-left: 20px;
color: #0E3483;
display: inline-block;
}
.flight-search .layui-form .fun-button{
height: 34px;
background: url(../image/icon_18.png) no-repeat #314673;
background-position: 30px center;
background-size: 20px;
width: 100%;
max-width: 140px;
border: none;
padding-left: 70px;
color: #fff;
text-align: left;
}
/*切换*/
.nav-tab{
display: inline-block;
width: 100%;
vertical-align: top;
}
.nav-tab li{
display: block;
text-align: center;
width: 50%;
float: left;
list-style: none;
cursor: pointer;
height: 60px;
line-height: 60px;
color: #999999;
position: relative;
font-size: 18px;
}
.nav-tab li.active{
background: #fff;
color: #0E3483;
}
.nav-tab li:hover{
background-color: #fff;
}
.nav-tab li.active::after{
width: 240px;
max-width: 100%;
position: absolute;
bottom: 0px;
height: 4px;
background: #314673;
content: '';
left: 50%;
right:50%;
transform:translate(-50%,-50%);
}
.tab-item{
display: none;
}
.tab-item.active{
display: block;
}
/**/
.flight-table{
width: 100%;
position: relative;
}
.flight-table .tab-head{
background: linear-gradient(49deg, #181D39 0%, #314673 100%);
display: inline-block;
width: 100%;
color: #fff;
padding: 0 40px;
font-size: 16px;
}
.flight-table ul li{
float: left;
display: inline-block;
padding: 20px 5px 20px 0;
}
.flight-table ul li:last-child{
float: none;
}
.flight-table .tab-airline{
width:5%;
}
.flight-table .tab-iata{
width:5%;
}
.flight-table .tab-terminal{
width:5%;
}
.flight-table .tab-checkin{
width:5%;
}
.flight-table .tab-call{
width:5%;
}
.flight-table .tab-oweb{
width:5%;
}
.flight-table .tab-w-5{
width:5%;
}
.flight-table .tab-w-8{
width:8%;
}
.flight-table .tab-w-9{
width:9%;
}
.flight-table .tab-w-10{
width: 10%;
}
.flight-table .tab-w-12{
width: 12%;
}
.flight-table .tab-w-14{
width: 14%;
}
.flight-table .tab-w-15{
width: 15%;
}
.flight-table .tab-w-19{
width: 19%;
}
.flight-table .tab-w-20{
width: 20%;
}
.flight-table .tab-w-25{
width: 25%;
}
.flight-table .tab-w-16{
width: 16%;
}
.flight-table .tab-w-166{
width: 16.6%;
}
.flight-table .tab-list{
padding: 0 40px;
margin-bottom: 30px;
background: #FFFFFF;
width: 100%;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
font-size: 14px;
}
.flight-table .tab-list li .phone-name{ display: none;}
.flight-table .tab-list li p{
height: 36px;
line-height: 18px;
display: block;
margin-top: 10px;
}
.company-table .tab-list li p{
height: inherit;
line-height: inherit;
}
.company-table .tab-list li p img{
width: 20%;
margin-right: 10px;
}
.flight-table .tab-list li p:first-child{
margin-top: 12px;
}
.flight-table .tab-list li a{
color: #1890FF;
}
.flight-table .tab-list .tab-body{
padding: 20px 0;
border-top: 1px solid #e8e8e8;
display: none;
}
/*航线*/
.box{
position: relative;
display:inline-block;
width: 100%;
}
.box::after{
background-color: #fff;
width: 240px;
left: 0;
top: 0;
position: absolute;
content: '';
height: 100%;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
}
.box.nobg::after{ display: none;}
/**/
.sidebar{
width: 240px;
position: relative;
z-index: 1;
}
.sidebar .title{
color: #fff;
font-size: 18px;
padding: 20px 0 20px 40px;
background: linear-gradient(49deg, #181D39 0%, #314673 100%);
}
.sidebar .sidebar-tit{
background: #fff;
height: 50px;
line-height: 50px;
padding-left: 40px;
color: #666666;
position: relative;
cursor: pointer;
border-bottom: #d8dade 1px solid;
font-size: 15px;
}
.sidebar .sidebar-click .sidebar-tit::after{
background: url(../image/icon_13.png) no-repeat center;
width: 14px;
height: 8px;
position: absolute;
top: 50%;
margin-top:-4px;
right: 20px;
content: '';
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
.sidebar .sidebar-click.sidebar-active .sidebar-tit::after{
transform:rotate(-180deg);
-moz-transition:rotate(-180deg);
-webkit-transform:rotate(-180deg);
transition: all .5s;
-moz-transition: all .5s;
-webkit-transition: all .5s;
}
.sidebar-click .sidebar-list{
display: none;
}
.sidebar .sidebar-list li a{
display: block;
height: 50px;
line-height: 50px;
background: #eaebed;
border-bottom: #d8dade 1px solid;
padding-left: 60px;
color: #666666;
transition: none;
font-size: 18px;
}
.sidebar .sidebar-list li.active a{
background: #D8DADE url(../image/icon_07.png) no-repeat left center;
}
.sidebar .sidebar-list li.active a,
.sidebar .sidebar-list li:hover a{
color: #AF7E45;
}
/**/
.box-content{
width: calc(100% - 260px);
min-height: 100vh;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
background: #fff;
padding: 0 40px 80px;
}
.box-content .name.inline-name h3{
padding: 20px 0;
border-bottom: 2px solid #000;
font-size: 22px;
display: block;
font-weight: bold;
}
.box-content .name.bg-name{
margin-top: 40px;
position: relative;
height:54px;
}
.box-content .name.bg-name h3{
height: 41px;
line-height: 41px;
font-size: 18px;
color: #fff;
padding: 0px 70px 0 30px;
position: relative;
display: inline-block;
background-color: #cb9655;
}
.box-content .name.bg-name::after{
background: url(../image/bg_05.png) no-repeat left center #fff;
width: 30px;
height:58px;
position: absolute;
left: 0;
top: 0;
content: '';
}
.box-content .name.bg-name h3::before{
background: url(../image/bg_06.png) no-repeat left center #fff;
width: 58px;
height: 58px;
position: absolute;
right: 0;
top: 0;
content: '';
}
.box-content .box-txt{
word-break: break-word
}
.video video{
max-width: 100%;
}
.box-content .box-txt img{
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
display: block;
}
.box-content .box-txt p{
//padding: 10px 0;
//color: #666;
}
.box-content .box-txt h4{
padding: 10px 0;
color: #000;
font-size: 16px;
font-weight: bold;
line-height: 30px;
}
.box-content .call-me{
max-width: 600px;
background: #e6e7ea;
padding-left: 80px;
position: relative;
min-height: 80px;
width: 100%;
}
.box-content .call-me .call-img{
width: 80px;
height: 80px;
position: absolute;
background: linear-gradient(156deg, #E2AB63 0%, #9B6C3A 100%);
text-align: center;
color: #27365C;
font-size: 12px;
left: 0;
top: 0;
cursor: pointer;
}
.box-content .call-me .call-img i{
background: url(../image/icon_08.png) no-repeat center;
width: 100%;
height: 40px;
display: block;
margin-top: 5px;
}
.box-content .call-me .call-phone{
line-height: 24px;
font-size: 16px;
padding-left: 20px;
color: #000;
word-break: break-all;
display: none;
}
/**/
.box-search .flight-search{
background: none;
box-shadow: none;
padding: 0;
}
.box-search .table thead{
background: linear-gradient(48deg, #181D39 0%, #314673 100%);
}
.box-search .table > thead > tr > th{
padding: 10px;
color: #fff;
border: none;
}
/*交通*/
.traffic-list{
width: 100%;
padding: 40px 0 40px 288px;
background: #FFFFFF;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
position: relative;
}
.traffic-list .name{
width: 228px;
position: absolute;
left: 60px;
top: 50%;
margin-top: -25px;
height: 50px;
line-height: 50px;
}
.traffic-list .name span{
height: 50px;
line-height: 50px;
padding-left: 80px;
display: block;
font-weight: bold;
font-size: 18px;
}
.traffic-list .name span.name-out{
background: url(../image/icon_14.png) no-repeat left center;
}
.traffic-list .name span.name-com{
background: url(../image/icon_15.png) no-repeat left center;
}
.traffic-list .name span.name-parking{
background: url(../image/icon_16.png) no-repeat left center;
}
.traffic-list .list{
display: inline-block;
width: 100%;
border-left: 2px solid #21305D;
}
.traffic-list .list li{
display: inline-block;
float: left;
width:calc((100% - 150px) / 4);
background: #FFFFFF;
box-shadow: 0px 4px 14px 0px rgba(11, 35, 79, 0.12);
margin-left: 30px;
margin-top: 30px;
}
.traffic-list .list li:nth-child(-n+4){
margin-top: 0;
}
.traffic-list .list li a{
padding: 36px 0;
display: block;
color: #27365C;
}
.traffic-list .list li a:hover{
color: #AF7E45;
}
.traffic-list .list li:nth-child(4n){
margin-right: 30px;
}
.traffic-list .list li span{
display: block;
margin-top: 25px;
font-size: 18px;
}
/*地图查询*/
.maps_conter{
padding: 0 40px;
display: inline-block;
width: 100%;
}
.maps_conter .maps_list{
width: calc((100% - 240px) / 2);
display: inline-block;
float: left;
margin-right: 20px;
}
.maps_conter .maps_list input{
border-radius: 0;
height: 40px;
}
.maps_conter .maps_img{
width: 40px;
height: 40px;
}
.maps_conter .maps_img img{
margin-top: 10px;
cursor: pointer;
}
.maps_conter .maps_button{
width: 140px;
margin-right: 0;
}
.maps_conter .maps_button .btn{
width: 100%;
background: url(../image/icon_18.png) #181D39 no-repeat;
background-position: 39px center;
padding-left: 72px;
color: #fff;
border: none;
height: 40px;
border-radius: 0;
text-align: left;
}
.charge{
display: inline-block;
width: 100%;
}
.charge-left,.charge-right{
width: calc((100% - 200px) / 2);
}
.charge-left .list{
padding-left: 40px;
position: relative;
margin-bottom: 20px;
display: inline-block;
width: 100%;
}
.charge-left .list:last-child{
margin-bottom: 0;
}
.charge-left .list span{
position: absolute;
left: 0px;
top: 0;
height: 38px;
line-height: 38px;
}
.charge-left .list .time-list{
width: 50%;
display: inline-block;
float: left;
padding-right: 40px;
position: relative;
}
.charge-left .list .time-list input{
width: 100%;
height: 38px;
border:1px solid #D2D2D2;
border-radius: 2px;
box-shadow: none;
padding-left: 10px;
}
.charge-left .list .time-list label{
position: absolute;
right: 5px;
top: 0;
height: 38px;
line-height: 38px;
color: #333333;
font-weight: inherit;
}
.charge-center{
width: 200px;
padding: 0 30px;
}
.charge-center button{
background: url(../image/icon_19.png) no-repeat #181D39;
background-position: 30px center;
width: 100%;
height: 38px;
padding-left: 40px;
color: #fff;
border: none;
margin-top: 58px;
}
.charge-right{
min-height: 157px;
border: 1px solid #D9D9D9;
}
.charge-right h4,.charge-right h3{
width: 100%;
display: block;
}
.charge-right h3{
font-size: 36px;
color: #AF7E45;
}
.charge-right h3 span{
font-size: 14px;
color: #000;
margin-left: 6px;
}
/*服务*/
.service{
display: inline-block;
vertical-align: top;
width: 100%;
}
.service .list{
display: inline-block;
float: left;
width: calc((100% - 120px) / 4);
text-align: center;
margin-right: 40px;
margin-bottom: 40px;
}
.service .list:nth-child(4n){
margin-right: 0;
}
.service .list a{
display: block;
padding: 40px 0;
background: #fff;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
color: #27365C;
font-size: 18px;
}
.service .list h3{
margin-top: 40px;
}
/*满屏内页*/
.box-100::after{
display: none;
}
.box.box-100 .box-content{
width: 100%;
}
/**/
.fun-list{
display: inline-block;
width: 100%;
}
.fun-list .list{
float: left;
display: inline-block;
width: calc((100% - 120px) / 4);
margin-right: 40px;
margin-top: 40px;
padding: 20px;
background: #FFFFFF;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
}
.fun-list .list:nth-child(4n){
margin-right: 0;
}
.fun-list .list .img{
padding: 20px;
text-align: center;
}
.fun-list .list .name{
font-size: 18px;
padding-bottom: 10px;
border-bottom: 1px solid #000;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.fun-list .list p{
padding-left: 30px;
display: block;
margin-top: 10px;
font-size: 14px;
color: #666666;
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
.fun-list .list p:first-child{
background: url(../image/icon_36.png) no-repeat left center;
}
.fun-list .list p:last-child{
background: url(../image/icon_37.png) no-repeat left center;
}
/**/
.page{
display:block;
width: 100%;
margin-top: 60px;
text-align: center;
}
.page a,.page span{
width: 30px;
height: 30px;
line-height: 30px;
background: #FFFFFF;
border: 1px solid #A0A0A0;
margin: 0 7px;
display: inline-block;
color: #A0A0A0;
}
.page span,.page a:hover{
background: #314673;
border-color: #314673;
color: #ffffff;
}
/**/
.fun_swiper{
margin-top: 80px;
max-width: 1000px;
margin: 80px auto 0;
}
.gallery-top .swiper-slide{
height: 600px;
}
.gallery-top .swiper-slide img{ width: 100%; height: 100%; object-fit: cover;}
.gallery-thumbs{ margin-top: 40px;}
.gallery-thumbs .swiper-slide{ height: 140px; opacity: 0.5;}
.gallery-thumbs .swiper-slide img{ width: 100%; height: 100%; object-fit: cover;}
.gallery-thumbs .swiper-slide.swiper-slide-thumb-active{ opacity: 1;border: 4px solid #ECB267;}
/*客户意见*/
.opinion{
padding: 60px;
display: inline-block;
width: 100%;
background: #fff;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
}
.opinion .op-w-66{
width: 66%;
display: inline-block;
}
.opinion .op-w-100{
width: 100%;
display: inline-block;
}
.opinion .op-w-100 .list{
width: 100%;
}
.opinion .list{
width:calc((100% - 60px) / 2);
margin-right: 60px;
margin-bottom: 20px;
float: left;
padding-left: 84px;
position: relative;
}
.opinion .list:nth-child(2n){
margin-right: 0px;
}
.opinion .list span{
font-size: 16px;
position: absolute;
left: 0;
top: 0;
height: 34px;
line-height: 34px;
width: 64px;
text-align: right;
}
.layui-form-switch em{
margin-right: 5px;
}
.opinion .layui-form-onswitch{
background: #181D39;
border-color: #181D39;
}
.opinion .layui-form-select dl dd.layui-this{
background: #181D39;
}
.opinion input,.opinion textarea{
border-radius: 0;
}
.opinion textarea{
min-height: 280px;
}
.opinion .list .Submit{
width: 140px;
height: 40px;
background: linear-gradient(49deg, #181D39 0%, #314673 100%);
color: #fff;
border: none;
}
/*友情链接*/
.link,.news{
display:inline-block;
width: 100%;
background: #FFFFFF;
box-shadow: 0px 4px 8px 0px rgba(11, 35, 79, 0.1);
padding: 40px;
}
.link .list{
width: calc((100% - 120px) / 5);
float: left;
display: inline-block;
text-align: center;
background: white;
box-shadow: 0 4px 14px 0 rgba(11, 35, 79, 0.12);
padding: 26px 30px;
margin-bottom: 30px;
margin-right: 30px;
}
.link .list:nth-child(5n){
margin-right: 0;
}
.link .list p{
height: 27px;
line-height: 27px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
color: #27365C;
font-size: 18px;
margin-top: 10px;
}
/*新闻*/
.news .list{
display: block;
padding-left: 310px;
min-height: 190px;
padding-bottom: 30px;
border-bottom: 1px solid #000;
position: relative;
margin-bottom: 30px;
}
.news .list .img{
width: 270px;
height: 160px;
position: absolute;
left: 0;
top: 0;
}
.news .list .img img{
display:block;
width:100%;
height:160px;
object-fit:cover
}
.news .list .name{
font-size: 16px;
color: #27365C;
display: block;
padding-right: 135px;
position: relative;
}
.news .list .name span{
font-size: 14px;
color: #666666;
width: 135px;
position: absolute;
right: 0;
top: 0;
}
.news .list .text{
font-size: 14px;
color: #333333;
margin-top: 20px;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
.news .list h4{
font-size: 14px;
color: #27365C;
margin-top: 20px;
text-align: right;
}
.news .list h4 span{
display: inline-block;
background: url(../image/icon_38.png) no-repeat right center;
padding-right: 20px;
}
.w-1400{ width: 1420px; margin: auto; max-width: 100%;}
.footer-img img{ width: 100%;}
.head_box{ background: url(../image/ix_hd_bg.png) no-repeat top; box-shadow: none; height: 120px; padding: 0; transform: translate(0,-100%); -webkit-transform: translate(0,-100%); -moz-transform: translate(0,-100%); transition: all .6s ease-in 0.6s; -webkit-transition: all .6s ease-in 0.6s; -moz-transition: all .6s ease-in 0.6s;}
.head_box.showBox{ transform: translate(0,0);}
.head_box .pull-left{ padding-top: 15px;}
.head_box .pull-left img{ height: 78px;}
.head_box .pull-right{ width: 70%;}
.head_box .pull-right .top-box{ float: right; position: relative; z-index: 2;}
.head_box .pull-right .top-box .link-box{ height: 50px;}
.head_box .pull-right .top-box .link-box em{ width: 1px; height: 20px; background: #444444; display: inline-block; margin: 0 16px;}
.head_box .pull-right .top-box .link-box .between-center{ position: relative;}
.head_box .pull-right .top-box .link-box .between-center img{ margin-right: 10px;}
.head_box .pull-right .top-box .link-box .between-center i{ width: 28px; font-style: initial;}
.head_box .pull-right .top-box .link-box .between-center div{ width: 110px; position: absolute; left: 50%; top: 100%; margin-left: -55px; padding: 14px 0 0; display: none;}
.head_box .pull-right .top-box .link-box .between-center div a{ width: 100%; float: left; line-height: 35px; text-align: center; background: #fff;}
.head_box .pull-right .top-box .link-box .between-center div a:hover{ background: #eee;}
.head_box .pull-right .top-box .link-box .between-center:hover div{ display: block;}
.head_box .pull-right .top-box .search-box{ width: 60px; float: left; position: relative; height: 49px; margin-right: 20px; transition: all .6s; -webkit-transition: all .6s; -moz-transition: all .6s; background: #f5f5f5;}
.head_box .pull-right .top-box .search-box .text{ width: 100%; height: 100%; float: left; background: #f5f5f5; border:none; padding-left: 40px; opacity: 0;}
.head_box .pull-right .top-box .search-box .btn{ width: 60px; height: 100%; position: absolute; right: 0; top: 0; background: url(../image/icon_05.png) no-repeat center;}
.head_box .pull-right .top-box .search-box i{ width: 15px; height: 16px; position: absolute; left: 0; top: 17px; background: url(../image/ix_hd_icon4.png) no-repeat center; background-size: auto 13px; padding: 0 20px; cursor: pointer; transform: all .6s; opacity: 0;}
.head_box .pull-right .top-box .search-box ul{ width: 100%; background: #fff; position: absolute; left: 0; top: 55px; padding: 10px 0; display: none;}
.head_box .pull-right .top-box .search-box ul::after{ content: ''; width: 100%; height: 15px; position: absolute; left: 0; top: -10px;}
.head_box .pull-right .top-box .search-box ul li{ width: 100%; float: left; padding: 8px 28px;}
.head_box .pull-right .top-box .search-box ul li span{ color: #979797;}
.head_box .pull-right .top-box .search-box ul li a{ width: 100%; font-size: 16px;}
.head_box .pull-right .top-box .search-box.active{ width: 450px;}
.head_box .pull-right .top-box .search-box.active i{ opacity: 1;}
.head_box .pull-right .top-box .search-box.active .text{ opacity: 1;}
.head_box .pull-right .lower-box ul{ float: right;}
.head_box .pull-right .lower-box ul li{ float: left;}
.head_box .pull-right .lower-box ul li a{ width: 140px; float: left; line-height: 70px; font-size: 22px; text-align: center; color: #fff;}
.head_box .pull-right .lower-box ul li.active a,.head_box .pull-right .lower-box ul li a:hover{ background: linear-gradient(90deg, #ebb166 0%, #9b6c3a 100%);}
.head-menu{ width: 100%; position: fixed; left: 0; top: 120px; z-index: 98; background: rgba(0,0,0,0.6); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); -moz-backdrop-filter:blur(6px); color: #fff;}
.head-menu .center-block{ width: 100%; float: left; padding: 40px 0; display: none;}
.head-menu .center-block .w-1200{ width: 1100px;}
.head-menu .pull-right strong{ width: 100px; font-size: 22px; margin-top: 17px; text-align: right;}
.head-menu .pull-right ul{ padding:10px 0; margin-left: 20px;}
.head-menu .pull-right ul:nth-child(2){ border-left: 1px solid #fff; padding:10px 0 10px 40px; margin-left: 40px;}
.head-menu .pull-right ul li{ display: block;}
.head-menu .pull-right ul li a{ display: block; line-height: 45px; color: #fff;font-size: 16px;}
.head-menu .pull-right ul li a:hover{}
.head-menu .center-block{ width: 100%; float: left; padding: 40px 0; display: none;}
.head-menu .center-block .w-1200{ width: 1100px;}
.head-menu .pull-left strong{ width: 100px; font-size: 22px; margin-top: 17px; text-align: right;}
.head-menu .pull-left ul{ padding:10px 0; margin-left: 20px;}
.head-menu .pull-left ul:nth-child(2){ border-left: 1px solid #fff; padding:10px 0 10px 40px; margin-left: 40px;}
.head-menu .pull-left ul li{ display: block;}
.head-menu .pull-left ul li a{ display: block; line-height: 45px; color: #fff;font-size: 16px;}
.head-menu .pull-left ul li a:hover{}
.index-banner{ height: 100vh; background-position: center;background-repeat: no-repeat !important; background-size: cover !important; position: relative; overflow: hidden;}
.index-banner .font-box{ width: 100%; position: absolute; left: 0; bottom: 200px; text-align: center; transition: all 1.6s; -webkit-transition: all 1.6s; -moz-transition: all 1.6s; opacity: 0; /* transform: translate(0,200%); -webkit-transform: translate(0,200%); -moz-transform: translate(0,200%); */}
.index-banner .w-1200{ width: 1440px;}
.index-banner .search-box{ width: 100%; position: absolute; left: 0; bottom: 0; background: rgba(0,0,0,0.2); border-top: 2px solid rgba(255,255,255,0.5); backdrop-filter:blur(5px); -webkit-backdrop-filter:blur(5px); padding: 30px 0; color: #fff; opacity: 0; transform: translate(0,100%); -webkit-transform: translate(0,100%); -moz-transform: translate(0,100%); transition: all .6s ease-in-out 0.4s; -webkit-transition: all .6s ease-in-out 0.4s; -moz-transition: all .6s ease-in-out 0.4s; }
.index-banner .search-box .pull-left{ font-size: 28px;}
.index-banner .search-box em{ width: 2px; height: 100px; background: #fff;}
.index-banner .search-box .pull-right{ width: 546px;}
.index-banner .search-box .pull-right .top-box div{ width: 50%; float: left; line-height: 47px; border-bottom: 1px solid #fff; background: rgba(255,255,255,0.2); text-align: center; position: relative; overflow: hidden; font-size: 18px;}
.index-banner .search-box .pull-right .top-box div input{ width: 100%; height: 100%; position: absolute; left: 0; top: 0; cursor: pointer; margin: auto; opacity: 0;}
.index-banner .search-box .pull-right .top-box div img{ height: 22px; margin-right: 10px;}
.index-banner .search-box .pull-right .top-box div.active{ background: rgba(255,255,255,0.5);}
.index-banner .search-box .pull-right .lower-box{ position: relative;}
.index-banner .search-box .pull-right .lower-box select,.index-banner .search-box .pull-right .lower-box input{ width: 48%; height: 52px; border:none; border-bottom: 1px solid #fff; background-color: transparent;}
.index-banner .search-box .pull-right .lower-box select{ background: url(../image/icon_39.png) no-repeat right; cursor: pointer; appearance:none; -moz-appearance:none; -webkit-appearance:none;}
.index-banner .search-box .pull-right .lower-box select option{ color: #000;}
.index-banner .search-box .pull-right .lower-box input.text{ background: url(../image/icon_18.png) no-repeat right;}
.index-banner .search-box .pull-right .lower-box input.text::-webkit-input-placeholder{ color: #fff;}
.index-banner .search-box .pull-right .lower-box input.btn{ width: 35px; height: 100%; position: absolute; right: 0; top: 0; opacity: 0;}
.index-banner.showBox .font-box{ /* transform: translate(0,0); -webkit-transform: translate(0,0); -moz-transform: translate(0,0); */ opacity: 1;}
.index-banner.showBox .search-box{ transform: translate(0,0); -webkit-transform: translate(0,0); -moz-transform: translate(0,0); opacity: 1;}
.index-guide{ background: url(../image/ix_ge_bg.png) top; background-size: 100% 100%; height: 361px; padding-top: 100px; position: relative; z-index: 3;}
.index-guide ul li{ width: 25%; padding: 0 3%; border-left: 2px solid #fff;}
.index-guide ul li:first-child{ border:none;}
.index-guide ul li a{ width: 100%; display: inline-block; color: #fff; font-size: 18px; background: url(../image/ix_ge_jt.png) no-repeat right;}
.index-guide ul li a img{ margin-right: 20px;}
.index-title{ font-weight: bold; font-size: 30px; position: relative; padding-left: 20px;}
.index-title em{ width: 4px; height: 66px; background: linear-gradient(to bottom, #9b6c3a , #F1F1F3); position: absolute; left: 0; top: 8px;}
.index-title p{ font-size: 36px; background-image: linear-gradient(to left top, #9b6c3a , #ecb267); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; text-transform: uppercase;}
.index-playing{ background: url(../image/ix_pg_bg.png) no-repeat top; background-size: 100%; margin-top: -90px; padding: 120px 0 50px;}
.index-playing .center-block{ float: left; padding: 0 20px; margin-top: 20px;}
.index-playing .center-block ul{ margin: 0 -23px;}
.index-playing .center-block ul li{ width: 50%; padding: 23px; float: left; position: relative;}
.index-playing .center-block ul li .imgs{ width: 100%; height: 340px; object-fit: cover; overflow: hidden;}
.index-playing .center-block ul li .imgs img{ width: 100%; height: 100%; object-fit: cover; transition: all .6s; -webkit-transition: all .6s; -moz-transition: all .6s;}
.index-playing .center-block ul li:hover .imgs img{ transform: scale(1.1); -webkit-transform: scale(1.1); -moz-transform: scale(1.1);}
.index-playing .center-block ul li:nth-child(1) .imgs,.index-playing .center-block ul li:nth-child(2) .imgs{ height: 340px;}
.index-playing .center-block ul li:nth-child(3),.index-playing .center-block ul li:nth-child(4){
//width: 25%;
}
.index-playing .center-block ul li .info{ min-width: 230px; position: absolute; left: 3px; bottom: 53px; background: rgba(0,0,0,0.7); color: #fff; font-size: 24px; line-height: 70px; padding-left: 40px;}
.index-playing .center-block ul li .info::before{ content:''; width: 0; height: 0; border-top: 20px solid #272727; border-left: 20px solid transparent; position: absolute; left: 0; bottom: -20px;}
.index-playing .center-block ul li .info img{ float: left; height: 40px; margin: 14px 14px 0 0;}
.clear{ clear: both;}
.div-pc{ display: block;}
.div-phone{ display: none;}
.index-quick{ padding: 35px 0; background: url(../image/ix_qk_bg.jpg) center; background-size: cover; overflow: hidden;}
.index-quick .center-block{ margin-top: 20px;}
.index-quick .center-block .box-info{ width: 68%; float: left; background-image: linear-gradient(90deg, rgba(255,255,255,0), #fff); margin-top: 30px; position: relative; padding: 10px 250px 10px 8%;}
.index-quick .center-block .box-info .bg{ width: 100%; height: 100%; position: absolute; left: 0; top: 0;}
.index-quick .center-block .box-info:nth-child(1) .bg{ background: url(../image/ix_qk_bg1.png) no-repeat right bottom;}
.index-quick .center-block .box-info:nth-child(2) .bg{ background: url(../image/ix_qk_bg2.png) no-repeat left bottom;}
.index-quick .center-block .box-info:nth-child(3) .bg{ background: url(../image/ix_qk_bg3.png) no-repeat right bottom;}
.index-quick .center-block .box-info .info{ width: 180px; height: 100%; float: right; position: absolute; right: 0; top: 0; z-index: 2;}
.index-quick .center-block .box-info .info::after{ content: ''; width: 1px; height: 90%; background: #ecb267; position: absolute; left: 0; top: 5%;}
.index-quick .center-block .box-info .info img{ height: 80px;}
.index-quick .center-block .box-info .info p{ font-size: 24px; line-height: 1.1; margin-top: 18px;}
.index-quick .center-block .box-info .imgs{ width: 100%; min-height: 120px; float: left; position: relative; z-index: 2; cursor: move;}
.index-quick .center-block .box-info .imgs img{ width: 100%; height: auto; object-fit: cover;}
.index-quick .center-block .box-info .imgs p{ font-size: 18px; position: relative; margin-top: 10px; transition: all .6s;}
.index-quick .center-block .box-info .imgs p::after{ content: ''; width: 0; height: 1px; background: #000; position: absolute; left: 0; top: 50%; margin-top: -1px; transition: all .6s;}
.index-quick .center-block .box-info .imgs .swiper-slide:hover p{ padding-left: 35px;}
.index-quick .center-block .box-info .imgs .swiper-slide:hover p::after{ width: 22px;}
.index-quick .swiper-container{ padding-bottom: 15px;}
.swiper-container-horizontal>.swiper-scrollbar{ width: 50%; left: 25%; bottom: 0; background: none;}
.swiper-container-horizontal>.swiper-scrollbar::after{ content: ''; width: 100%; height: 1px; background: #858585; position: absolute; left: 0; top: 50%; margin-top: -1px;}
.swiper-scrollbar-drag{ background: #353C3F; border-radius: 0; position: relative; z-index: 2;}
.index-quick .center-block .box-info:nth-child(2n){ float: right; background-image: linear-gradient(-90deg, rgba(255,255,255,0), #fff); padding: 10px 8% 10px 250px;}
.index-quick .center-block .box-info:nth-child(2n) .info{ right: auto; left: 0;}
.index-quick .center-block .box-info:nth-child(2n) .info::after{ left: auto; right: 0;}
//.index-tianfu{ background: url(../image/ix_tf_bg.jpg) no-repeat ; background-position: center 110px ; background-size: 100%; position: relative; padding: 100px 0; overflow: hidden;}
.index-tianfu{ background-position: center 110px ; background-size: 100%; position: relative; padding: 100px 0; overflow: hidden;}
.index-tianfu .videoBg{ width: 100%; height: 100%; position: absolute; left: 0; top: 0; object-fit: cover; object-position: center;}
.index-tianfu .center-block{ width: 100%; float: left; position: relative; z-index: 2; margin-top: 100px;}
.index-tianfu .center-block ul{ width: 100%; float: left; position: relative;}
.index-tianfu .center-block ul em{ width: 100%; height: 172px; position: absolute; left: 35%; top: 67%; background: url(../image/ix_tf_xm3.png) no-repeat center; background-size: auto 100%;}
.index-tianfu .center-block ul li{ width: 50%; float: left; margin-top: 30px; padding: 0 1.5%; position: relative; z-index: 2;}
.index-tianfu .center-block ul li a{ width: 100%; height: 300px; float: left; position: relative; overflow: hidden;}
.index-tianfu .center-block ul li a span{ font-size: 24px; position: absolute; left: 15px; bottom: 10px; color: #fff; z-index: 3;}
.index-tianfu .center-block ul li a span img{ height: 100%; object-fit: cover;}
.index-tianfu .center-block ul li a::before{ content: ''; width: 100%; height: 100%; background: rgba(0,0,0,0.2); position: absolute; left: 0; top: 0; transition: all .3s; -webkit-transition: all .3s; -moz-transition: all .3s;}
.index-tianfu .center-block ul li a::after{ content: ''; width: 100%; height: 100%; background: url(../image/icon_40.png) no-repeat right bottom; position: absolute; left: 0; top: 0; transition: all .3s; -webkit-transition: all .3s; -moz-transition: all .3s;}
.index-tianfu .center-block ul li.big{ width: 100%; text-align: center;}
.index-tianfu .center-block ul li.big a{ width: 49%; height: auto; display: inline-block; float: none;}
/* .index-tianfu .center-block ul:first-child::after{ content: ''; width: 210px; height: 100%; position: absolute; left: 3%; bottom: 0; background: url(../image/ix_tf_xm1.png) no-repeat bottom; background-size: auto;}
.index-tianfu .center-block ul:first-child::before{ content: ''; width: 210px; height: 100%; position: absolute; right: 3%; bottom: 0; background: url(../image/ix_tf_xm2.png) no-repeat bottom; background-size: auto;} */
.index-tianfu .center-block ul:last-child{ padding: 0 1%;}
.index-tianfu .center-block ul li a:hover::before{ background: rgba(0,0,0,0.1);}
.index-tianfu .center-block ul li a:hover::after{ background-image: url(../image/icon_41.png);}
.footer_bg{ position: relative;}
.footer_middle{ z-index: 2;}
.footer_bg::after{ content: ''; width: 30%; height: 100%; background: url(../image/logo_03.png) no-repeat right; background-size: auto 60%; position: absolute; right: 3%; top: 0; pointer-events: none;}
.sidebar-box{}
.sidebar-box{position: fixed;top: 50%;right: 20px;z-index: 99;width: 50px; margin-top: -90px;}
.sidebar-box a{ width: 50px; height: 50px; position: relative; float: left; margin-top: 10px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 5px; border: 1px solid #dadada;}
.sidebar-box a span{ position: absolute; right: 100%; top: 50%; margin-top: -20px; margin-right: 10px; white-space: nowrap;background: rgba(0,0,0,0.5); border: 1px solid #ffff; line-height: 38px; color: #fff; border-radius: 5px; padding: 0 20px; display: none;}
.sidebar-box a:hover span{ display: block;}
.sidebar-box .fix_customer_service { width: 210px; position: absolute;top: 0;right: 100%;z-index: 1;padding: 20px;text-align: center;display: none; margin: -50px 0 0 0;}
.sidebar-box .fix_customer_service div{ background: rgba(0,0,0,0.5); border: 1px solid #ffff; border-radius: 10px; padding: 10px 20px; line-height: 1.8; color: #fff; font-size: 16px;}
.sidebar-box .fix_customer_service img{ width: 100%; background: #fff;}
.sidebar-box a:hover .fix_customer_service{ display: block;}
.sidebar-box .gotop{ opacity: 0;}
.sidebar-box .gotop.active{ display: flex; opacity: 1;}
.loading-box{ width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: 999;}
.loading-box .bg{ width: 100%; height: 100%; position: absolute; left: 0; top: 0;}
.loading-box .bg i{ width: 100%; height: 50%; background: #282B33; position: absolute; left: 0; top: 0; transition: all .8s ease 1s; -webkit-transition: all .8s ease 1s; -moz-transition: all .8s ease 1s;}
.loading-box .bg i:nth-child(2){ top:auto; bottom: 0;}
.loading-box .bar{ width: 100%; height: 34px; position: absolute; left: 0; top: 50%; margin-top: -17px; z-index: 2;}
.loading-box .bar i{ width: 36px; height: 34px; background: url(../image/loading_1.png) no-repeat center; position: absolute; left: -36px; top: 0;}
.loading-box .bar em{ width: 0; height: 1px; background: #3C95A9; position: absolute; left: 0; top: 50%; margin-top: -1px; transition: all 2s ease .2s; -webkit-transition: all 2s ease .2s; -moz-transition: all 2s ease .2s;}
.loading-box.showBox .bar i{ animation: loading1 1s; -webkit-animation: loading1 1s; -moz-animation: loading1 1s;}
.loading-box.showBox .bar em{ animation: loading2 1s ease .05s; -webkit-animation: loading2 1s ease .05s; -moz-animation: loading2 1s ease .05s;}
.loading-box.showBox .bg i{ height: 0;}
@-webkit-keyframes loading1{
0%{ left: 0; }
50%{ left: 50%; }
100%{ left: 100%; }
}
@keyframes loading1{
0%{ left: 0; }
50%{ left: 50%; }
100%{ left: 100%; }
}
@-webkit-keyframes loading2{
0%{ width: 0; }
50%{ width: 50%; }
100%{ width: 100%; }
}
@keyframes loading2{
0%{ width: 0; }
50%{ width: 50%; }
100%{ width: 100%; }
}
.search_list .s_l_l{ width: 15%; float: left;}
.search_list .s_l_l p{ font-size: 18px; padding: 25px 0 5px;}
.search_list .s_l_l a{ display: block; font-size: 16px; margin-top: 15px;}
.search_list .s_l_l a.active,.search_list .s_l_l a:hover{ color: #ca9353;}
.search_list .s_l_r{ width: 85%; float: right; background: #fff; min-height: 50vh; box-shadow: 0 0 10px rgba(0,0,0,0.1); margin-bottom: 50px; padding: 15px;}
.search_list .s_l_r .zw{ text-align: center; margin: 50px 0;}
.table-striped th{ background: #eaeaea; height: 40px;}
.table-striped td{ vertical-align: middle !important;}
.table-striped img{ cursor: pointer;}
.lost-found .flight-search{ box-shadow: none; padding: 30px 0;}
/*弹出层*/
.popup-bg{
width: 100%;
height: 100vh;
background: rgba(0,0,0,.3);
position: fixed;
top: 0px;
left: 0px;
padding: 0 10px;
z-index: 99;
}
.popup-bg1{
width: 100%;
height: 100vh;
background: rgba(0,0,0,.3);
position: fixed;
top: 0px;
left: 0px;
padding: 0 10px;
z-index: 99;
}
.ppopup-center{
max-width: 600px;
width: 100%;
margin: 0 auto;
background: #fff;
position: relative;
top: 30%;
border-radius: 5px;
padding: 10px;
}
.ppopup-center .ppopup-head{
font-size: 20px;
background: url(../image/icon_on.png) no-repeat left center;
background-size: 30px;
height: 30px;
line-height: 30px;
font-weight: bold;
text-align: center;
}
.ppopup-center .ppopup-text{
margin-top: 20px;
margin-bottom: 20px;
min-height: 150px;
padding:0 20px;
max-height: 300px;
overflow-x:hidden;
font-size:18px;
line-height: 28px;
overflow-y: auto;
text-indent: 2em;
}
.ppopup-center .ppopup-footer{
display: inline-block;
width: 100%;
text-align: right;
padding: 10px;
}
.ppopup-center .ppopup-footer .ppopup-on{
background: #ecb267;
color: #fff;
padding: 5px 20px;
border-radius: 5px;
}
.ppopup-center .ppopup-footer .ppopup-on1{
background: #ecb267;
color: #fff;
padding: 5px 20px;
border-radius: 5px;
}
.ppopup-center .ppopup-footer .ppopup-on:hover{
background: #9b6c3a;
}
/*兼容*/
.index-fly{
width: 100%;
position: absolute;
z-index: 3;
left: 0%;
top:0;
width: 100%;
height: 100%;
}
.index-fly::after{
background: url(../image/fly.png) no-repeat top right ;
height: 100%;
width: 100%;
content: "";
left: 0;
top: 0;
transform: translate(-100%,-100%);
position:absolute;
animation: topMove 9s linear 1s infinite normal;
}
@keyframes topMove {
0% {
transform: translate(-100%,100%);
-ms-transform: translate(-100%,100%);
-moz-transform: translate(-100%,100%);
-webkit-transform: translate(-100%,100%);
}
100% {
transform: translate(100%,-110%);
-ms-transform: translate(100%,-110%);
-webkit-transform: translate(100%,-110%);
-moz-transform: translate(100%,-110%);
}
}
.box-content .box-txt img{
max-width: 100%;
height: auto !important;
}
.fun-list .list .img img{
height: auto !important;
}
.contentDiv{
width: 100%;
height: auto;
padding: 0 25px;
background: rgba(255,255,255,.6);
box-sizing: border-box;
margin-top: 20px;
border-radius: 5px;
display: inline-block;
}
.contentDiv .list{
width: 100%;
height: auto;
overflow: hidden;
border-bottom: 1px solid #ddd;
}
.contentDiv .list > div{
display: inline-block;
height: auto;
padding: 20px 0;
box-sizing: border-box;
}
.contentDiv .list .img{
float: right;
width: 425px;
}
.contentDiv .list .text{
float: left ;
}
.contentDiv .list:nth-child(2n) .img{
float: left;
width: 425px;
}
.contentDiv .list:nth-child(2n) .text{
float: right ;
}
.contentDiv .list .text{
width: calc(100% - 500px);
}
.mune-other.mune .list{
width: 20%;
}
.mune-other.mune .list a span{
padding-left: 0px;
}
.table-responsive table{
width: 100%;
max-width: 100%;
}
.table-responsive > table {
margin-bottom: 0;
}
/*兼容*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10-specific styles go here */
.center-banner .text h2{ background: none; color: rgba(255,255,255,0.3);}
.index-title p{ background: none; color: #ecb267;}
}
/* 小于等于多少高度的样式 */
@media screen and (max-height:880px){
}
@media screen and (max-height:600px){
}
/* 小于等于多少宽度的样式 */
@media screen and (max-width:1660px){
}
@media screen and (max-width:1440px){
.w-1400{ width: 1280px;}
.index-quick .center-block .box-info{ padding: 10px 220px 10px 6%;}
.index-quick .center-block .box-info:nth-child(2n){ padding: 10px 6% 10px 220px;}
.head_box .pull-left{ padding-top: 20px;}
.head_box .pull-left img{ height: 70px;}
}
@media screen and (max-width:1366px){
}
@media screen and (max-width:1200px){
.w-1200{ width: 94%;}
/*兼容*/
.index-tianfu .center-block ul li a img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.flight-table .tab-list .tab-body .tab-body-children{
display: inline-block;
width: 100%;
padding: 20px;
}
.flight-table .tab-list .tab-body .children_body{
position: relative;
width: 100%;
display: inline-block;
}
.flight-table .tab-list .tab-body .children_body div:first-child{
width: 120px;
text-align: left;
float: left;
font-size: 16px;
}
.flight-table .tab-list .tab-body .children_body div:last-child{
width: calc(100% - 120px);
display: inline-block;
float: left;
text-align: left;
line-height: 40px;
}
.flight-table .tab-list .tab-body .children_body div:last-child p{
display: inline-block;
margin-right: 10px;
}
.table-responsive > table > tbody > tr > td, .table-responsive > table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > table > tfoot > tr > th, .table-responsive > table > thead > tr > td, .table-responsive > table > thead > tr > th{
white-space: nowrap;
}
}
@media screen and (max-width:1100px){
}
@media screen and (max-width:1024px){
.div-pc{ display: none;}
.div-phone{ display: block;}
.nav_btn{ display: block; margin-left: 10px;}
.w-1400,.w-1200{ width: 94% !important;}
.head_box{ background: #fff; height: auto; padding: 10px 0; box-shadow: 0 0 10px rgba(0,0,0,0.2);}
.head_box .pull-left{ padding-top: 0;}
.head_box .pull-left img{ height: 40px;}
.head_box .pull-right{ width: 50%;}
.head_box .pull-right .top-box .search-box{ display: none;}
.head_box .pull-right .top-box .link-box{ height: 40px;}
.head_box .pull-right .top-box .link-box em{ margin: 0 8px; display: none;}
//.head_box .pull-right .top-box .link-box .between-center:first-child{ display: none;}
.head_box .pull-right .top-box .link-box .between-center div{ padding: 22px 0 0;}
.head_box .pull-right .top-box .link-box .between-center{ font-size: 12px;}
.head_box .pull-right .top-box .link-box .between-center img{ margin-right: 5px; height: 18px;}
.head_box .pull-right .lower-box{ position: absolute; left: 0; top: 61px; background: #fff; padding: 15px 0; display: none;}
.head_box .pull-right .lower-box ul,.head_box .pull-right .lower-box ul li{ width: 100%;}
.head_box .pull-right .lower-box ul li a{ width: 100%; color: #000; font-size: 14px; line-height: 40px;}
.head_box .pull-right .lower-box ul li.active a{ color: #CB9655;}
.head_box .pull-right .lower-box ul li.active a, .head_box .pull-right .lower-box ul li a:hover{ background: none; color: #CB9655;}
.index-banner.showBox .search-box{ padding: 20px 0;}
.index-banner.showBox .search-box em{ display: none;}
.index-banner.showBox .search-box .w-1200{ display: block;}
.index-banner.showBox .search-box .pull-left{ width: 100%; font-size: 16px; text-align: center;}
.index-banner.showBox .search-box .pull-right{ width: 100%; margin-top: 20px;}
.index-guide{ height: auto; padding: 15px 0 35px;}
.index-guide ul li a{ background: none; font-size: 13px; text-align: center;}
.index-guide ul li a img{ margin: auto; height: 25px;}
.index-guide ul li a span{ display: block; margin-top: 5px;}
.index-title{ font-size: 16px; padding-left: 12px;}
.index-title p{ font-size: 18px;}
.index-title em{ width: 3px; height: 45px; top:5px;}
.index-playing{ padding: 100px 0 20px; overflow: hidden;}
.index-playing .center-block ul li{ width: 100%; padding: 15px;}
.index-playing .center-block ul li .imgs,.index-playing .center-block ul li:nth-child(1) .imgs, .index-playing .center-block ul li:nth-child(2) .imgs{ height: 200px;}
.index-playing .center-block ul li .info{ min-width: 50%; line-height: 50px; font-size: 18px; left: 0; padding: 0 30px;}
.index-playing .center-block ul li .info::before{ border-top-width: 15px; border-left-width: 15px; bottom: -15px;}
.index-playing .center-block ul li .info img{ height: 25px; margin: 12px 10px 0 0;}
.index-playing .center-block ul li:nth-child(3), .index-playing .center-block ul li:nth-child(4){ width: 100%;}
.index-quick{ padding: 20px 0;}
.index-quick .center-block .box-info{ margin-top: 15px;}
.index-quick .center-block .box-info .imgs{}
.sidebar-box{ width: 40px; right: 10px; margin-top: 0; top: auto; bottom: 65px;}
.sidebar-box a{ width: 40px; height: 40px; margin-top: 5px;}
.sidebar-box a:hover span{ display: none;}
.index-quick .center-block .box-info{ width: 100%; padding: 20px !important;}
.index-quick .center-block .box-info .info{ display: none;}
.index-tianfu{ padding: 20px 0;}
.index-tianfu .videoBg{ display: none;}
.index-tianfu .center-block{ margin-top: 80px;}
.index-tianfu .center-block ul em{ height: 120px; top: -80px; left: 8%;}
.index-tianfu .center-block ul li{ margin-top: 10px;}
.index-tianfu .center-block ul li a{ height: auto;}
.index-tianfu .center-block ul li a span{ font-size: 14px; left: 10px; bottom: 10px;}
.index-tianfu .center-block ul li a::after{ background-size: auto 50%;}
.index-tianfu .center-block ul:first-child::after{ width: 16.5%; background-size: 90%;}
.index-tianfu .center-block ul:first-child::before{ width: 16.5%; background-size: 90%;}
.index-tianfu .center-block ul li a span img{ height: 30px;}
.footer{ position: relative; z-index: 10;}
.footer_bg{ padding: 20px 0;}
.footer_bg::after{ width: 100%; right: 0; background-position: center; background-size: 80%; display: none;}
.footer_middle a{ padding: 0 10px;}
.footer_middle a img{ height: 30px;}
.footer_middle a i{ width: 100px;}
.footer_middle a i img{ height: 100px;}
.footer_bg .icp{ margin-top: 10px !important;}
.mune::before,.mune::after{ background-size: auto 100%; display: none;}
.center-banner{ height: 200px; padding-top: 60px; background-size: cover;}
.center-banner .text{ padding-left: 15px;}
.center-banner .text h3{ font-size: 20px;}
.center-banner .text h2{ font-size: 24px;}
.box-content{ padding: 0 20px 20px;}
.box-content .name.bg-name{ margin-top: 20px;}
.box-content .call-me .call-phone{ font-size: 12px; line-height: 20px;}
.top30{ margin-top: 15px;}
.top40{ margin-top: 20px;}
.top60{ margin-top: 60px;}
.mune .list{ line-height: normal;}
.mune .list i{ width: 100%; height: 35px; top: 10px; margin-top: 0; background-size: auto 100%;}
.mune .list a span{ width: 100%; padding: 50px 0 0;}
.flight-search{ padding: 10px 15px 20px;}
.flight-search .list{ width: 100% !important; margin: 10px 0 0 !important;}
.flight-search .layui-form .fun-button{ max-width: 100%; padding-left: 51%; background-position: 45% center;}
.flight-table .tab-head{ padding: 10px 20px; display: none;}
.flight-table .tab-head li{ width: 50% !important; padding: 5px 0;}
.flight-table .tab-list{ padding: 10px 20px; margin-bottom: 12px;}
.flight-table .tab-list ul{ display: block;}
.flight-table .tab-list li{ width: 100% !important; padding: 3px 0;}
.flight-table .tab-list li .phone-name{ display: block; width: auto; float: left; line-height: 25px; font-weight: bold;}
.flight-table .tab-list li p{ width: auto; float: left; height: auto; line-height: 25px; margin: 0 10px 0 0;}
.flight-table .tab-list li p img{ height: 25px;}
.company-table .tab-list li p img{ width: auto; height: 70px;}
.sidebar{ width: 100%; overflow: hidden;}
.sidebar .title{ position: relative;}
.sidebar .title::after{ content: ''; width: 70px; height: 100%; position: absolute; right: 0; top: 0; background: url(../image/icon_39.png) no-repeat center; transition: all .6s;}
.sidebar .title.active::after{ transform: rotate(-180deg);}
.sidebar .center-block{ display: none;}
.sidebar .sidebar-list li a{ height: 40px; line-height: 40px;}
.box-content{ width: 100%; min-height: auto;}
.box::after{ display: none;}
.fun-list .list{ width: 48%; margin: 15px 0 0; padding: 15px;float: left;}
.fun-list .list:nth-child(2n){ float: right;}
.fun-list .list .name{ font-size: 16px;}
.fun-list .list .img{ padding: 10px;}
.page{ margin-top: 30px;}
.page a,.page span{ margin: 0;}
.fun_swiper{ margin: 20px 0 0;}
.gallery-top .swiper-slide{ height: 230px;}
.gallery-thumbs{ margin-top: 20px;}
.gallery-thumbs .swiper-slide{ height: 80px;}
.link, .news{ padding: 20px;}
.link .list{ width: 48%; margin: 14px 0 0; padding: 15px;}
.link .list:nth-child(2n){ float: right;}
.link .list p{ font-size: 14px;}
.news .list{ padding: 0 0 15px; margin-bottom: 15px;}
.news .list:last-child{ margin-bottom: 0;}
.news .list .img{ width: 100%; position: relative;}
.news .list .name{ padding-right: 0; margin-top: 15px;}
.news .list .name span{ position: relative; display: block; margin-top: 10px;}
.news .list .text{ margin-top: 12px;}
.news .list h4{ margin-top: 15px;}
.opinion{ padding: 5px 20px 20px;}
.opinion .op-w-66{ width: 100%;}
.opinion .list{ width: 100%; margin: 10px 0 0;}
.opinion .list span{ font-size: 14px;}
.opinion textarea{ min-height: 120px;}
.service .list{ width: 48%; margin: 0 0 15px;}
.service .list:nth-child(2n){ float: right;}
.service .list a{ padding: 20px 0;}
.service .list a img{ height: 50px;}
.service .list h3{ margin-top: 15px; font-size: 16px;}
.traffic-list{ padding: 15px;}
.traffic-list .name{ width: 100%; position: relative; left: 0; top: 0; margin: auto;}
.traffic-list .name span{ padding-left: 60px;}
.traffic-list .list{ border:none;}
.traffic-list .list li{ width: 48%; float: left; margin: 15px 0 0 !important;}
.traffic-list .list li:nth-child(2n){ float: right;}
.traffic-list .list li a{ padding: 20px 0;}
.traffic-list .list li a img{ height: 50px;}
.traffic-list .list li a span{ margin-top: 15px; font-size: 14px;}
.charge-left, .charge-right{ width: 100%;}
.charge-center{ width: 100%; padding: 20px 0; text-align: center;}
.charge-center button{ width: 160px; margin-top: 0; padding-left: 30px; background-position: 40px center;}
.maps_conter{ padding: 0;}
.maps_conter .maps_list{ width: 100%; margin: auto;}
.maps_conter .maps_img{ text-align: center;}
.maps_conter .maps_button .btn{ margin-top: 15px; padding-left: 51%; background-position: 43% center;}
.separate-mune{
display: none;
}
.lost-found .flight-search{ padding: 10px 0 15px;}
.lost-found .lost-list{ overflow: auto;}
.lost-found .lost-list .table{ white-space: nowrap;}
/* --------zjj------------ */
.phone-none {display: none;}
/*兼容*/
.index-tianfu .center-block ul li a{
height: 250px;
}
.head_box .pull-right .top-box .link-box .between-center{
margin-right: 10px;
}
.index-fly::after{
background-size: 100% auto;
}
.mune .list i{
background-size: auto 100% !important;
background-position: center !important;
}
#queryForm{
padding: 20px !important;
}
.searcBox_l2{
padding-left: 40px;
background:#ffffff;
border-top: 1px solid #C8C8C8;
}
.searcBox_l2 .searchBoxTEXT2{
width: calc(85vw - 40px);
text-indent: 20px;
}
.page{
display: block !important;
}
.foot_div{
display: inline-block;
width: 100%;
}
.foot_div .beian{
float: none;
}
}
@media screen and (min-width: 1024px) {
.head_box .pull-right .lower-box ul li:nth-child(6) {
display: none;
}
.head_box .pull-right .lower-box ul li:nth-child(7) {
display: none;
}
.head_box .pull-right .lower-box ul li:nth-child(8) {
display: none;
}
.head_box .pull-right .lower-box ul li:nth-child(9) {
display: none;
}
.searchimg{
display: none;
}
}
@media screen and (max-width:768px){
/*兼容*/
.index-tianfu .center-block ul li a,.index-tianfu .center-block ul li.big a{
height: 100px;
}
.index-fly::after{
background-size: 100% auto;
}
/*航线*/
.box-content .call-me{
padding-left: 0px !important;
display: inline-block;
width: 100%;
}
.box-content .call-me .call-img{
padding-top: 15px;
}
.box-content .call-me .call-img i{
background-position: center 15px;
height: 50px;
margin-top: 0 !important;
}
.box-content .call-me .call-img{
position: relative !important;
width: 100% !important;
}
.box-content .call-me .call-phone2{
width: 100% !important;
padding: 20px !important;
}
.box-content .box-txt p{
text-indent: 0 !important;
}
.mune-other.mune .list a span{
padding-top: 20px;
font-size: 16px;
}
.mune-other.mune .list{
font-size: 18px;
}
.contentDiv .list .img,.contentDiv .list .text,.contentDiv .list:nth-child(2n) .img,.contentDiv .list:nth-child(2n) .text{
float: none;
width: 100%;
}
.contentDiv .list .img img{
height: auto !important;
}
}
@media screen and (max-width:480px){
.index-tianfu .center-block{ margin-top: 35px;}
.index-tianfu .center-block ul em{ height: 50px; top: -28px;}
}
@media screen and (max-width:360px){
.head_box .pull-right .top-box .link-box .between-center{ font-size: 0;}
.head_box .pull-right .top-box .link-box .between-center div a{ font-size: 14px;}
.head_box .pull-right .top-box .link-box .between-center img{ margin-right: 0;}
.mune-other.mune .list a span{
padding-top: 20px;
font-size: 14px;
}
.mune .list a span{
font-size: 14px;
}
}