﻿﻿/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 给body添加通用的样式 */
body {
  font: 16px/1.5 'PingFang SC';
  color: #404040;
  background-color: #fff;
  font-weight: 400;
}

/*去除边框*/
fieldset,
img,
input,
button,
textarea {
  border: none;
  /*去除的蓝色小边框*/
  outline-style: none;
}

/*禁止表单域缩放*/
textarea {
  resize: none;
}

a {
  text-decoration: none;
  color: #404040;
  /* 移动端a标签点击会高亮，设置颜色为透明的 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 图片自适应 */
img {
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

/* 把所有的标题的样式全部重置了 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

/* 字体图标  i:icon   bootstrap*/
em,
i {
  font-style: normal;
}

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


/* header */
header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo a {
  display: flex;
  align-items: center;
}

header .logo .logo_name {
  height: 50px;
  margin-right: 30px;
}

header .logo .logo_name img {
  height: 100%;
}

header .logo .temp_logo {
  display: inline-block;
  position: relative;
}

header .logo .temp_logo img {
  height: 70px;
}

header .logo .temp_logo:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  height: 50px;
  width: 1px;
  background: #999;
}

header .search .search-form {
  display: flex;
  height: 34px;
  position: relative;
  width: 400px;
  border: solid 1px #387FFC;
}

header .search .search-form .index-select-type {
  width: 80px;
  height: 100%;
  border: 0;
  padding-left: 14px;
  font-size: 16px;
  color: #404040;
  padding-bottom: 3px;
  cursor: pointer;
  background: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

header .search .search-form input.search-text {
  height: 100%;
  padding: 0 9px;
  font-size: 16px;
  color: #333;
  line-height: 34px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}

header .search .search-form input.search-submit {
  background: #387FFC;
  width: 40px;
  height: 100%;
  background: url(../images/search-icon.png) center no-repeat #387FFC;
  cursor: pointer;
}

header .search .search-form:after {
  position: absolute;
  width: 0;
  height: 0;
  content: '';
  left: 63px;
  top: 14px;
  border-width: 4px;
  border-style: solid;
  border-color: #404040 transparent transparent transparent;
}

header .search .hot-search {
  font-size: 12px;
  color: #999999;
  line-height: 20px;
  padding-top: 4px;
}

header .search .hot-search ul {
  display: flex;
}

header .search .hot-search ul li {
  margin-right: 5px;
  line-height: 10px;
}

header .search .hot-search ul li a {
  color: #999999;
}

header .search .search-suggest {
  width: 100%;
  position: absolute;
  top: 35px;
  border: 1px solid #387FFC;
  background: #fff;
  z-index: 100;
  display: none;
}

header .search .search-suggest ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

header .search .search-suggest ul li {
  padding: 3px;
  font-size: 17px;
  line-height: 25px;
  cursor: pointer;
}

header .search .search-suggest ul li:hover {
  background-color: #e5e5e5
}

header .search .search-suggest ul li a {
  display: block;
}

header .info {
  font-size: 12px;
}

header .info dl {
  display: flex;
}

header .info dl dd {
  position: relative;
  padding-right: 10px;
  margin-right: 16px;
  line-height: 40px;
  z-index: 9999999;
}

header .info dl dd .service-box {
  position: absolute;
  background: #FFF;
  width: 80px;
  height: 126px;
  padding: 4px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 7px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 36px;
  left: 50%;
  display: none;
  text-align: center;
}

header .info dl dd .service-box a {
  line-height: 30px;
}

header .info dl dd .service-box-show {
  display: block;
}

header .info dl dd .service-box-show:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

header .info dl .service:after,
header .info dl .follow:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  border-left: solid 3px transparent;
  border-top: solid 3px #BBBBBB;
  border-right: solid 3px transparent;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

header .info dl .follow img {
  position: absolute;
  bottom: -126px;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 126px;
}

header .info dl .follow .follow-box {
  display: none;
}

header .info dl .login {
  margin-right: 0;
  padding-right: 0;
}

header .info dl .login .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

header .info dl .login .logout-box {
  width: 240px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0px;
  display: none;
}

header .info dl .login .logout-box .top {
  height: 70px;
  background: url(../images/login-bg.png) no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  padding: 30px 10px 0;
  font-size: 12px;
  line-height: 30px;
}

header .info dl .login .logout-box .top .logout {
  color: #fff;
  background: #7d99cc;
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
}

header .info dl .login .logout-box .icon {
  background-color: #fff;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .info dl .login .logout-box .icon ul {
  display: flex;
  justify-content: space-around;
}

header .info dl .login .logout-box .icon ul li {
  text-align: center;
}

header .info dl .login .logout-box .icon ul li a {
  color: #888;
}

header .info dl .login .logout-box .icon ul li .icon-item {
  width: 30px;
  height: 30px;
  margin: 0 auto;
}

header .info dl .login .logout-box .icon li:nth-child(1) .icon-item {
  background: url(../images/icon1.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(2) .icon-item {
  background: url(../images/icon5.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(3) .icon-item {
  background: url(../images/icon7.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(1):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(1):hover .icon-item {
  background: url(../images/icon2.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(2):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(2):hover .icon-item {
  background: url(../images/icon6.png) no-repeat;
}

header .info dl .login .logout-box .icon li:nth-child(3):hover a {
  color: #404040;
}

header .info dl .login .logout-box .icon li:nth-child(3):hover .icon-item {
  background: url(../images/icon8.png) no-repeat;
}

header .info dl .login .logged-box {
  width: 240px;
  height: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0px;
  overflow: hidden;
}

header .info dl .login .logged-box .top {
  height: 70px;
  background: url(../images/login-bg.png) no-repeat;
  background-size: cover;
  padding: 30px 10px 0;
  font-size: 16px;
  line-height: 30px;
}

header .info dl .login .logged-box .icon {
  background-color: #fff;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header .info dl .login .logged-box .icon .notice {
  text-align: center;
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 20px;
}

header .info dl .login .logged-box .icon ul {
  display: flex;
  justify-content: space-around;
  padding: 0 10px;
}

header .info dl .login .logged-box .icon ul li {
  text-align: center;
}

header .info dl .login .logged-box .icon .icon-item {
  width: 35px;
  height: 35px;
  margin: 0 auto;
}

header .info dl .login .logged-box .icon li:nth-child(1) .icon-item {
  background: url(../images/wx1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(2) .icon-item {
  background: url(../images/dn1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(3) .icon-item {
  background: url(../images/qq1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(4) .icon-item {
  background: url(../images/sj1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(5) .icon-item {
  background: url(../images/wb1.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(1):hover .icon-item {
  background: url(../images/wx2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(2):hover .icon-item {
  background: url(../images/dn2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(3):hover .icon-item {
  background: url(../images/qq2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(4):hover .icon-item {
  background: url(../images/sj2.png) no-repeat;
}

header .info dl .login .logged-box .icon li:nth-child(5):hover .icon-item {
  background: url(../images/wb2.png) no-repeat;
}

/* nav */
.nav {
  background: #387FFC;
  height: 46px;
}

.nav .nav-list {
  position: relative;
  display: flex;
}

.nav .nav-item {
  padding: 0 25px;
  height: 46px;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  position: relative;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.nav .nav-item a {
  display: block;
  color: #FFFFFF;
  line-height: 46px;
  text-decoration: none;
}

.nav .nav-item .nav-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #FFF;
  width: 137px;
  padding: 0;
  box-shadow: rgba(2, 2, 2, 0.1) 0 0 9px;
  z-index: 99;
  display: none;
}

.nav .nav-item ul {
  display: inline-block;
}

.nav .nav-item ul li {
  text-align: left;
  font-size: 15px;
  color: #333333;
  padding: 5px 0;
}

.nav .nav-item ul li a {
  line-height: 26px;
  color: #333;
}

.nav .nav-item.nav-menu>a:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: solid 4px transparent;
  border-top: solid 4px #FFF;
  border-right: solid 4px transparent;
  margin: 0 0 2px 5px;
}

.nav .nav-item.nav-menu2 {
  position: static;
}

.nav .nav-item.nav-menu2 .nav-box {
  width: auto;
  padding: 9px 20px 11px 32px;
  left: 0;
  transform: translateX(0);
}

.nav .nav-item.nav-menu2 .nav-box dl {
  line-height: 22px;
  text-align: left;
  padding-top: 10px;
  overflow: hidden;
}

.nav .nav-item.nav-menu2 .nav-box dt {
  float: left;
  width: 50px;
  padding-right: 7px;
  font-size: 16px;
  color: #333333;
  font-weight: 600;
}

.nav .nav-item.nav-menu2 .nav-box dd {
  float: left;
  max-width: 576px;
}

.nav .nav-item.nav-menu2 .nav-box dd i:last-child {
  display: none;
}

.nav .nav-item.nav-menu2 .nav-box a {
  float: left;
  font-size: 14px;
  color: #777777;
  height: 14px;
  line-height: 22px;
  margin-bottom: 10px;
}

.nav .nav-item.nav-menu2 .nav-box a:hover {
  text-decoration: underline;
}

.nav .nav-item.nav-menu2 .nav-box i {
  float: left;
  width: 19px;
  height: 14px;
  position: relative;
  margin-bottom: 10px;
}

.nav .nav-item.nav-menu2 .nav-box i:before {
  content: "";
  position: absolute;
  background: #777777;
  width: 1px;
  height: 14px;
  top: 5px;
  left: 9px;
}

.nav .nav-item.nav-menu2 .nav-box.another-box dt {
  width: 80px;
}

.nav .active {
  background: rgba(0, 0, 0, 0.2);
}

.nav .show {
  display: block;
}

/* footer */
.footer {
  background: #f4f4f4;
  padding: 20px 0 32px;
  color: rgba(34, 34, 34, 0.6);
}

.footer a {
  font-size: 12px;
  color: rgba(34, 34, 34, 0.6);
}

.footer a:hover {
  color: rgba(34, 34, 34, 0.6);
  text-decoration: none;
}

.footer .friendship {
  border-bottom: 1px solid #EEEEEE;
}

.footer .friendship .friend {
  position: relative;
  padding: 14px 60px 25px 12px;
}

.footer .friendship .friend ul {
  display: inline-block;
  overflow: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  max-height: 27px;
}

.footer .friendship .friend ul li {
  float: left;
  font-size: 12px;
  color: #666666;
  line-height: 24px;
  padding-right: 17px;
}

.footer .friendship .friend ul li a {
  color: #666666;
  text-decoration: none;
}

.footer .friendship .friend .friendship-toggle {
  position: absolute;
  font-size: 12px;
  cursor: pointer;
  color: #999;
  top: 17px;
  right: 0;
}

.footer .friendship .friend .friendship-toggle i {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-image: url(//www.lgstatic.com/lg-www-fed/index/modules/friendlink/img/arrow_down2_eea7e54.png);
  background-repeat: no-repeat;
  background-position: 0 3px;
  background-size: 12px 6px;
}

.footer .friendship .active ul {
  overflow: hidden;
  max-height: 120px;
}

.footer .friendship .active .friendship-toggle i {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.footer .footer-copy {
  text-align: center;
  margin: 20px 0 12px;
  font-size: 12px;
}

.footer .footer-bei {
  text-align: center;
}

.footer .footer-bei ul {
  display: flex;
  justify-content: center;
}

.footer .footer-bei ul li {
  margin: 0 6px;
  height: 37px;
  width: 97px;
}

.footer .footer-bei ul img {
  display: block;
  width: 100%;
  height: 100%;
}

/* 更多 */
.more a {
  font-size: 16px;
  color: #999;
  padding-right: 25px;
  position: relative;
  font-weight: normal;
}

.more a:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 19px;
  height: 16px;
  background: url(../images/index-more-grey.png) 0 0 no-repeat;
}

.more:hover a {
  color: #00C250;
  text-decoration: none;
}

.more:hover a:after {
  background: url(../images/index-more-green.png) 0 0 no-repeat;
}