204 lines
2.8 KiB
CSS
204 lines
2.8 KiB
CSS
/*头部*/
|
|
|
|
.header {
|
|
width: 100%;
|
|
height: 120px;
|
|
/*background: #ecfdff;*/
|
|
background: #002147;
|
|
border: none;
|
|
/* border-bottom: 1px solid #ddd;
|
|
-webkit-box-shadow: 1px 1px 1px 1px #ddd;
|
|
box-shadow: 1px 1px 1px 1px #ddd;*/
|
|
}
|
|
|
|
.header_logo {
|
|
display: inline-block;
|
|
height: 70px;
|
|
margin: 25px 0;
|
|
}
|
|
|
|
.header>div {
|
|
width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
|
|
/*搜索框*/
|
|
|
|
.searchBox {
|
|
float: right;
|
|
width: auto;
|
|
height: 100%;
|
|
line-height: 120px;
|
|
}
|
|
|
|
.searchInput {
|
|
width: 180px;
|
|
height: 30px;
|
|
padding: 0 10px 0 30px;
|
|
outline: none;
|
|
border: 2px solid #3793a0;
|
|
border-radius: 4px 0 0 4px;
|
|
background: url(../images/index/search.png) no-repeat 5px center;
|
|
background-size: 20px 20px;
|
|
}
|
|
|
|
.searchBtn {
|
|
display: inline-block;
|
|
width: 80px;
|
|
height: 34px;
|
|
line-height: 30px;
|
|
text-align: center;
|
|
background: #3793a0;
|
|
color: #fff;
|
|
border: 2px solid #3793a0;
|
|
border-radius: 0 4px 4px 0;
|
|
}
|
|
|
|
|
|
/*页脚*/
|
|
|
|
.footer {
|
|
width: 1200px;
|
|
height: auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.footerTop {
|
|
width: 100%;
|
|
height: 160px;
|
|
background: #42a6b4;
|
|
}
|
|
|
|
|
|
/*页脚tab切换容器*/
|
|
|
|
.footerTopTab {
|
|
width: 1100px;
|
|
height: 140px;
|
|
margin: 10px 50px;
|
|
}
|
|
|
|
|
|
/*页脚tab切换选项*/
|
|
|
|
.footer-tab-nav {
|
|
width: 150px;
|
|
height: auto;
|
|
float: left;
|
|
}
|
|
|
|
.footer-tab-nav>div {
|
|
width: auto;
|
|
height: auto;
|
|
padding: 0 18px;
|
|
}
|
|
|
|
.footer-tab-nav>div img {
|
|
width: 22px !important;
|
|
height: 22px !important;
|
|
}
|
|
|
|
.footer-tab-sign {
|
|
display: inline-block;
|
|
height: 34px;
|
|
padding: 18px 10px 20px;
|
|
text-align: left;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.footer-tab-sign p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-tab-nav div.current {
|
|
background: #1a656f;
|
|
border-radius: 10px;
|
|
color: #fff;
|
|
}
|
|
|
|
|
|
/*页脚tab切换内容区域*/
|
|
|
|
.footer-tab-con {
|
|
width: 950px;
|
|
height: auto;
|
|
overflow: hidden;
|
|
background: none;
|
|
}
|
|
|
|
.footer-tab-con-item {
|
|
display: none;
|
|
height: 140px;
|
|
color: #fff;
|
|
border: 2px solid #1a656f;
|
|
margin: 0 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-item-module {
|
|
width: 90px;
|
|
margin: 30px 5px;
|
|
text-decoration: none;
|
|
color: #fff;
|
|
display: block;
|
|
float: left;
|
|
}
|
|
|
|
.footer-item-module:hover {
|
|
background: rgba(0, 0, 0, .2);
|
|
border-radius: 10px;
|
|
-webkit-transition: all .2s;
|
|
-o-transition: all .2s;
|
|
transition: all .2s;
|
|
}
|
|
|
|
.footer-item-module p {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.footer-item-module img {
|
|
height: 30px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.footer-userd .footer-item-module {
|
|
width: 102px;
|
|
}
|
|
|
|
|
|
/*技术支持页脚*/
|
|
|
|
.footerBottom {
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 5px 0;
|
|
background: #646464;
|
|
color: #eee;
|
|
text-align: center;
|
|
}
|
|
|
|
.footerBottom p {
|
|
height: 30px;
|
|
line-height: 30px;
|
|
}
|
|
|
|
.footerBottom p span {
|
|
display: inline-block;
|
|
margin: 0 20px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
|
|
/*返回顶部*/
|
|
|
|
.goTop {
|
|
position: fixed;
|
|
right: 2.5%;
|
|
bottom: 5%;
|
|
width: 36px;
|
|
cursor: pointer;
|
|
}
|