﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: #333;
  text-decoration: none;
}
li {
  list-style-type: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
}
.w1200 {
  width: 1200px;
  margin: 0 auto;
}
.clear {
  clear: both;
}
/* 轮播图 */
.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 1.125rem;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
/* 顶部 */
header {
  position: relative;
}
header nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header nav .nav {
  width: 90%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .nav .logo {
  width: 200px;
}
header nav .nav ul {
  width: 750px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header nav .nav ul .active a {
  color: #ffc339;
}
header nav .nav ul li {
  flex: auto;
  height: 50px;
  margin: 0 5px;
}
header nav .nav ul li a {
  display: block;
  width: 100%;
  line-height: 50px;
  text-align: center;
  color: #fff;
}
/* 服务项目 */
.index_service {
  background: #3e3e3e;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px 0;
  position: relative;
}
.index_service .index_service_list {
  width: 24%;
  height: 880px;
}
.index_service .index_service_list .index_service_item {
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: grayscale(100%);
  transition: 0.5s;
  cursor: pointer;
}
.index_service .index_service_list .index_service_item .index_service_tit {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  transition: 1s;
}
.index_service .index_service_list .index_service_item .index_service_tit .iconfont {
  font-size: 4.75rem;
  color: #fff;
  position: absolute;
  top: -140%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_service .index_service_list .index_service_item .index_service_tit h2 {
  color: #fff;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 400;
}
.index_service .index_service_list .index_service_item .index_service_tit h2::after {
  content: '';
  display: block;
  width: 30px;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: -70%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_service .index_service_list .index_service_item:hover {
  filter: grayscale(0);
}
.index_service .index_service_list .index_service_item:hover .index_service_tit {
  opacity: 0;
}
.index_service .index_service_list .service_s {
  height: 39%;
}
.index_service .index_service_list .service_m {
  height: 59%;
}
.index_service .index_service_list .service_l {
  height: 49%;
}
.index_service .index_service_list .service_xl {
  height: 100%;
}
.index_service .index_service_01 .index_service_item:nth-child(1) {
  background: url(../images/20200608094701459.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_01 .index_service_item:nth-child(2) {
  background: url(../images/20200608094746269.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_02 .index_service_item {
  background: url(../images/20180906113853870.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_03 .index_service_item:nth-child(1) {
  background: url(../images/20180906113902632.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_03 .index_service_item:nth-child(2) {
  background: url(../images/20180906113914506.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_04 .index_service_item:nth-child(1) {
  background: url(../images/20180917053500983.jpg) no-repeat;
  background-size: cover;
}
.index_service .index_service_04 .index_service_item:nth-child(2) {
  background: url(../images/20190625093531561.jpg) no-repeat;
  background-size: cover;
}
/* 数据展示 */
.index_data {
  background: url(../images/indexmidbanner.jpg) no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_data .index_data_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index_data .index_data_list li {
  width: 300px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  color: #89867c;
  border-right: solid 1px #89867c;
  transition: 0.8s;
}
.index_data .index_data_list li:last-child {
  border-right: none;
}
.index_data .index_data_list li:hover {
  color: #ffd344;
}
.index_data .index_data_list li span {
  font-size: 3rem;
}
.index_data .index_data_list li h4 {
  line-height: 2em;
}
/* 信条 */
.index_creed {
  background: #3e3e3e;
  padding: 50px 0;
}
.index_creed .index_creed_tit {
  text-align: center;
}
.index_creed .index_creed_tit h1 {
  color: #fff;
  line-height: 2em;
  font-size: 2.25rem;
}
.index_creed .index_creed_tit small {
  font-size: 0.875rem;
  color: #b0b0b0;
}
.index_creed .index_creed_tab .index_creed_hd {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.index_creed .index_creed_tab .index_creed_hd li {
  width: 200px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  color: #777;
  border: solid 2px #666;
  font-weight: 600;
  font-size: 1.125rem;
}
.index_creed .index_creed_tab .index_creed_hd li .iconfont {
  font-size: 1.625rem;
  margin-right: 10px;
}
.index_creed .index_creed_tab .index_creed_hd li:hover {
  color: #ffc640;
  border: solid 2px #ffc640;
}
.index_creed .index_creed_tab .index_creed_bd {
  height: 530px;
  position: relative;
  margin-top: 50px;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper {
  width: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper:first-child {
  display: block;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic {
  width: 550px;
  height: 440px;
  position: relative;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic .index_creed_bg {
  width: 550px;
  height: 440px;
  background: #434343;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic img {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 550px;
  height: 440px;
  border: none;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic .index_creed_info {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: #3e3e3e;
  width: 120px;
  height: 50px;
  color: #ffc640;
  font-size: 1.125rem;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic .index_creed_info span {
  display: block;
  text-align: center;
  line-height: 50px;
  position: relative;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic .index_creed_info span::before {
  content: '';
  width: 100px;
  height: 2px;
  background: #816d3f;
  position: absolute;
  top: 50%;
  left: -25%;
  transform: translate(-50%, -50%);
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic_big {
  width: 100% !important;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic_big iframe {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 440px;
  border: none;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_pic_big .open {
  position: absolute;
  top: 140px;
  right: -15px;
  display: block;
  color: #fff;
  font-size: 0.875rem;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.3);
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_con {
  width: 570px;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_con h3 {
  font-size: 1.75rem;
  color: #d9d9d9;
  line-height: 2.5em;
}
.index_creed .index_creed_tab .index_creed_bd .index_creed_wrapper .index_creed_item .index_creed_con p {
  font-size: 1rem;
  color: #999;
  line-height: 1.5em;
}
/* 案例 */
.index_case {
  background: #1a1a1a;
  padding: 50px 0;
}
.index_case .index_case_tit {
  background: url(../images/case_t_bg.png) no-repeat center;
  background-size: contain;
  text-align: center;
}
.index_case .index_case_tit h1 {
  color: #fff;
  font-size: 2.25rem;
  line-height: 2em;
}
.index_case .index_case_tit small {
  color: #b0b0b0;
  font-size: 0.875rem;
}
.index_case .index_case_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 45px 0;
}
.index_case .index_case_con ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index_case .index_case_con ul li {
  font-size: 0.875rem;
}
.index_case .index_case_con ul li a {
  color: #cecece;
}
.index_case .index_case_con ul li:first-child {
  color: #ffc640;
  position: relative;
  font-size: 1rem;
}
.index_case .index_case_con ul li:first-child::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: #ffc640;
  position: absolute;
  top: 50%;
  left: -20%;
  transform: translate(-50%, -50%);
}
/* 新闻 */
.index_news {
  background: url(../images/news_bg.jpg) no-repeat;
  padding: 50px 0;
}
.index_news .index_news_tit {
  background: url(../images/news_t_bg.png) no-repeat center / contain;
  text-align: center;
}
.index_news .index_news_tit h1 {
  color: #fff;
  font-size: 2.25rem;
  line-height: 2em;
}
.index_news .index_news_tit small {
  font-size: 0.875rem;
  color: #b0b0b0;
}
.index_news .index_news_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index_news .index_news_con li {
  width: 30%;
  height: 300px;
  position: relative;
  border-bottom: solid 3px #999999;
}
.index_news .index_news_con li::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #ffc640;
  position: absolute;
  bottom: -3px;
  left: 0;
  animation: borderLeft 1s;
  transition: 0.5s;
}
.index_news .index_news_con li:hover:after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #ffc640;
  position: absolute;
  bottom: -3px;
  left: 0;
  animation: borderLeft 1s;
}
.index_news .index_news_con li a {
  color: #fff;
}
.index_news .index_news_con li .index_news_info {
  color: #fff;
  font-size: 2.25rem;
}
.index_news .index_news_con li .index_news_info span {
  font-size: 0.75rem;
}
.index_news .index_news_con li .index_news_item_tit h3 {
  margin: 28px 0 14px 0;
  font-size: 1.125rem;
  font-weight: 400;
}
.index_news .index_news_con li .index_news_item_tit p {
  margin-bottom: 15px;
  font-size: 0.875rem;
  line-height: 2em;
}
.index_news .index_news_con li .index_news_btn a {
  color: #ffc640;
  font-size: 0.875rem;
}
/* 合作 */
.index_partner {
  background: #242424;
  padding: 50px 0;
}
.index_partner .index_partner_tit {
  text-align: center;
  background: url(../images/pinpai_t_bg.png) no-repeat center center / cover;
}
.index_partner .index_partner_tit h1 {
  color: #fff;
  line-height: 2em;
  font-size: 2.25rem;
}
.index_partner .index_partner_tit small {
  font-size: 0.875rem;
  color: #b0b0b0;
}
.index_partner .index_partner_con {
  width: 1162px;
  height: 330px;
  margin: 50px auto;
  background: url(../images/ppbg.png) no-repeat center / cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.index_partner .index_partner_con ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
}
.index_partner .index_partner_con ul li img {
  transition: 0.5s;
}
.index_partner .index_partner_con ul li img:hover {
  transform: scale(1.1);
}
/* 留言 */
.index_message {
  background: #303030;
  z-index: 999;
}
.index_message form {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px 0;
}
.index_message form .form_group label {
  color: #fefefe;
  font-size: 0.875rem;
  margin-right: 8px;
}
.index_message form .form_group input,
.index_message form .form_group select {
  width: 150px;
  height: 35px;
  padding: 5px;
  outline: none;
  background: #3e3e3e;
  border: none;
  color: #fefefe;
}
.index_message form .form_btn input {
  width: 150px;
  height: 35px;
  background: #efa800;
  color: #fefefe;
  outline: none;
  border: none;
  cursor: pointer;
}
.index_fixed_on {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.index_fixed_off {
  position: static;
}
/* 底部 */
footer {
  background: #141414;
  padding: 50px 0 20px;
}
footer .foot_left {
  float: left;
  width: 50%;
}
footer .foot_left nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .foot_left nav ul li {
  border-right: dashed 1px #fff;
  width: 20%;
}
footer .foot_left nav ul li:last-child {
  border-right: none;
}
footer .foot_left nav ul li a {
  text-align: center;
  display: block;
  color: #fff;
  width: 100%;
}
footer .foot_left .foot_contact {
  color: #ddd;
  margin: 50px 0;
  line-height: 2em;
  font-size: 0.875rem;
}
footer .foot_right {
  float: right;
  width: 33%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .foot_right .foot_tel {
  color: #ddd;
  text-align: right;
}
footer .foot_right .foot_tel p:nth-child(2) {
  color: #fff;
  font-size: 1.75rem;
  line-height: 2em;
}
footer .foot_right .foot_tel p:nth-child(3) {
  font-size: 0.75rem;
}
footer .foot_right .foot_erweima {
  width: 140px;
}
footer .foot_right .foot_erweima p {
  color: #fff;
  font-size: 0.875rem;
  margin-top: 15px;
  text-align: center;
}
footer .flink {
  color: #ddd;
  font-size: 0.875rem;
}
footer .flink a {
  color: #ddd;
  font-size: 0.875rem;
  margin: 0 15px;
}
footer .copyright {
  color: #ddd;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 20px;
}
footer .copyright a {
  color: #ddd;
  font-size: 0.875rem;
  margin-left: 15px;
}
/* 咨询弹窗 */
.model {
  display: none;
  z-index: 999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.model .model_con {
  width: 550px;
  height: 360px;
  background: #9f7925;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.model .model_con .close {
  height: 25px;
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.model .model_con .close ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 25px;
  height: 25px;
}
.model .model_con .close ul li {
  width: 25px;
  height: 2px;
  background: #999;
  transform-origin: 21px;
}
.model .model_con .close ul li:first-child {
  transform: rotate(-45deg);
}
.model .model_con .close ul li:last-child {
  transform: rotate(45deg);
}
.model .model_con .model_top {
  background: #fff;
  border-bottom-left-radius: 20%;
  border-bottom-right-radius: 20%;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.model .model_con .model_top h3 {
  width: 100%;
  color: #9f7925;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}
.model .model_con .model_top h3::before {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background: #9f7925;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.model .model_con .model_top h3::after {
  content: "";
  display: block;
  width: 160px;
  height: 2px;
  background: #9f7925;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.model .model_con .model_top p {
  font-size: 1.125rem;
  color: #555;
  line-height: 2em;
}
.model .model_con .model_top .model_btn {
  width: 180px;
  height: 40px;
  margin-top: 30px;
  border: solid 1px #9f7925;
  border-radius: 20px;
}
.model .model_con .model_top .model_btn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: #333;
}
.model .model_con .model_bottom {
  display: block;
  width: 100%;
  height: 60px;
  color: #fff;
  background: #9f7925;
  line-height: 60px;
  display: flex;
  justify-content: center;
  align-self: center;
}
.model .model_con .model_bottom .iconfont {
  font-size: 1.75rem;
  margin-right: 10px;
}
/* 通用标题 */
.n_tit {
  text-align: center;
}
.n_tit h1 {
  color: #fff;
  font-size: 1.75rem;
  line-height: 2em;
  font-weight: 400;
}
.n_tit small {
  color: #bbb;
  font-size: 0.875rem;
}
/* 服务流程 */
.service_process {
  padding: 50px 0;
  background: #121212;
}
.service_process .service_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.service_process .service_list li {
  width: 380px;
  height: 250px;
  position: relative;
  overflow: hidden;
}
.service_process .service_list li img {
  transition: 0.5s;
}
.service_process .service_list li:hover img {
  transform: scale(1.1);
}
.service_process .service_list li .service_con {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
.service_process .service_list li .service_con h2 {
  font-size: 1.125rem;
  line-height: 2.5em;
  position: relative;
}
.service_process .service_list li .service_con h2::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.service_process .service_list li .service_con p {
  font-size: 0.875rem;
  margin-top: 15px;
}
.service_process .service_list li .service_con p span {
  margin: 0 5px;
}
/* 服务优势 */
.service_advantage {
  background: #3e3e3e;
  padding: 50px 0;
}
.service_advantage .service_advantage_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #2a2a2a;
  margin-top: 50px;
}
.service_advantage .service_advantage_list .service_advantage_item {
  width: 33.33%;
  text-align: center;
}
.service_advantage .service_advantage_list .service_advantage_item h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.service_advantage .service_advantage_list .service_advantage_item h2 .iconfont {
  color: #ffc339;
  font-size: 2.375rem;
  margin-right: 15px;
}
.service_advantage .service_advantage_list .service_advantage_item p {
  font-size: 0.875rem;
  color: #999;
  line-height: 2em;
}
.service_advantage .service_advantage_list .service_advantage_item:nth-child(2n) {
  padding: 0 40px;
}
/* 关于 */
/* 面包屑 */
.bread {
  background: #303030;
  height: 65px;
}
.bread .w1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bread .bread_left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 65px;
}
.bread .bread_left li {
  margin-right: 50px;
}
.bread .bread_left li a {
  color: #c3c3c3;
  font-size: 0.875rem;
}
.bread .bread_left .active a {
  color: #ffc640;
}
.bread .bread_right {
  color: #c3c3c3;
  font-size: 0.875rem;
}
.bread .bread_right a {
  color: #c3c3c3;
  font-size: 0.875rem;
}
.bread .keyword {
  color: #c3c3c3;
  font-size: 0.875rem;
}
/* 关于正文 */
.content {
  padding: 50px 0;
  background: #3e3e3e;
  /* 汉威文化 */
  /* 团队实力 */
  /* 汉威探索 */
  /* 新闻列表 */
  /* 新闻详情 */
  /* 联系详情 */
  /* 案例列表 */
  /* 薇小薇主题 */
}
.content .culture_tab .culture_hd {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: solid 1px #555555;
}
.content .culture_tab .culture_hd li {
  position: relative;
}
.content .culture_tab .culture_hd li a {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  width: 200px;
  height: 45px;
  text-align: center;
}
.content .culture_tab .culture_hd .active a {
  color: #ffc640;
}
.content .culture_tab .culture_hd .active::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: solid 5px #ffc640;
  border-top: solid 5px transparent;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.content .culture_tab .culture_bd {
  margin-top: 30px;
}
.content .culture_tab .culture_bd .culture_item {
  overflow: hidden;
}
.content .culture_tab .culture_bd .culture_item:first-child h3 {
  margin-top: 50px;
}
.content .culture_tab .culture_bd .culture_item .culture_video {
  width: 60%;
  margin: 0 auto;
}
.content .culture_tab .culture_bd .culture_item .culture_video video {
  width: 100%;
  height: 100%;
}
.content .culture_tab .culture_bd .culture_item h3 {
  color: #ffc640;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 10px;
  line-height: 1.5em;
}
.content .culture_tab .culture_bd .culture_item h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ffc640;
  position: absolute;
  bottom: 0;
  left: 0;
}
.content .culture_tab .culture_bd .culture_item p {
  line-height: 2.5em;
  font-size: 0.875rem;
  color: #ccc;
}
.content .culture_tab .culture_bd .culture_item .culture_left {
  float: left;
  width: 30%;
}
.content .culture_tab .culture_bd .culture_item .culture_right {
  float: right;
  width: 68%;
}
.content .culture_tab .culture_bd .culture_item:nth-child(2) {
  display: none;
}
.content .team_tit {
  text-align: center;
}
.content .team_tit h1 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #fff;
  line-height: 2em;
}
.content .team_tit small {
  font-size: 0.875rem;
  color: #bbb;
}
.content .team_list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.content .team_list li a {
  color: #ddd;
  display: block;
  width: 120px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
.content .team_list li:nth-child(2n) {
  background: #ffc640;
  width: 5px;
  height: 5px;
}
.content .team_wrapper .team_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.content .team_wrapper .team_item .team_pic {
  order: 1;
  width: 630px;
  height: 500px;
  position: relative;
}
.content .team_wrapper .team_item .team_pic img {
  position: absolute;
  top: 40px;
  width: 630px;
  height: 420px;
}
.content .team_wrapper .team_item .team_pic .team_pic_bg {
  background: #4d4d4d;
  width: 100%;
  height: 100%;
  margin-left: 40px;
}
.content .team_wrapper .team_item .team_con {
  order: 2;
  width: 400px;
  height: 430px;
  border: solid 3px #8b8b8b;
  position: relative;
  margin-left: 40px;
}
.content .team_wrapper .team_item .team_con .team_txt {
  width: 360px;
  background: #3e3e3e;
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  padding: 53px 0;
}
.content .team_wrapper .team_item .team_con .team_txt h2 {
  color: #d8d8d8;
  font-size: 1.875rem;
  line-height: 2em;
}
.content .team_wrapper .team_item .team_con .team_txt small {
  color: #fff;
  font-size: 1.375rem;
}
.content .team_wrapper .team_item .team_con .team_txt .line {
  background: #d7ab40;
  width: 50px;
  height: 2px;
  margin: 20px 0;
}
.content .team_wrapper .team_item .team_con .team_txt p {
  font-size: 0.875rem;
  color: #bbb;
  line-height: 2em;
}
.content .team_wrapper .team_item:nth-child(2n) .team_pic {
  order: 2;
}
.content .team_wrapper .team_item:nth-child(2n) .team_pic .team_pic_bg {
  margin-left: -40px;
}
.content .team_wrapper .team_item:nth-child(2n) .team_con {
  order: 1;
}
.content .team_wrapper .team_item:last-child {
  margin-bottom: 0;
}
.content .explore {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 2.5em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.content .explore .explore_left {
  width: 45%;
}
.content .explore .explore_right {
  width: 50%;
}
.content .news_type {
  margin-top: 20px;
}
.content .news_list {
  margin: 30px 0;
}
.content .news_list .news_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.content .news_list .news_item .news_info {
  width: 150px;
  height: 150px;
  border-right: solid 2px #666;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.content .news_list .news_item .news_info::before {
  content: "";
  display: block;
  width: 2px;
  height: 0;
  background: #ffc640;
  position: absolute;
  top: 0;
  right: -2px;
  transition: 0.5s;
}
.content .news_list .news_item .news_info strong {
  color: #bbb;
  font-size: 2.25rem;
  display: block;
  margin-bottom: 15px;
}
.content .news_list .news_item .news_info span {
  color: #999;
  font-size: 1.125rem;
  display: block;
}
.content .news_list .news_item .news_con {
  width: 740px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 120px;
}
.content .news_list .news_item .news_con h3 {
  margin-bottom: 20px;
}
.content .news_list .news_item .news_con h3 a {
  font-size: 1.25rem;
  color: #fff;
}
.content .news_list .news_item .news_con p {
  line-height: 2em;
  width: 100%;
}
.content .news_list .news_item .news_con p a {
  font-size: 0.875rem;
  color: #bbb;
}
.content .news_list .news_item .news_pic {
  width: 190px;
  height: 150px;
}
.content .news_list .news_item:hover .news_info::before {
  height: 150px;
}
.content .detail .detail_tit {
  padding-left: 30px;
  position: relative;
}
.content .detail .detail_tit h3 {
  color: #ffc640;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 15px;
}
.content .detail .detail_tit span {
  color: #999;
  font-size: 0.875rem;
}
.content .detail .detail_tit::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #ffc640;
  position: absolute;
  top: 0;
  left: 0;
}
.content .detail .detail_tit::after {
  content: "";
  display: block;
  width: 3px;
  height: 50px;
  background: #ffc640;
  position: absolute;
  top: 10px;
  left: 1px;
}
.content .detail .detail_con {
  color: #bbb;
  line-height: 2em;
  margin: 20px 0;
  font-size: 0.875rem;
  border-bottom: solid 1px #656565;
  padding-bottom: 50px;
}
.content .detail .detail_con img {
  max-width: 600px;
  margin: 0 auto;
}
.content .page {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5em;
  overflow: hidden;
}
.content .page a {
  color: #fff;
  font-size: 0.875rem;
}
.content .page .pre {
  float: left;
}
.content .page .next {
  float: right;
}
.content .contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 30px 0;
}
.content .contact .contact_left {
  width: 45%;
}
.content .contact .contact_left .contact_tit {
  position: relative;
  padding-left: 30px;
}
.content .contact .contact_left .contact_tit::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #ffc640;
  position: absolute;
  top: 0;
  left: 0;
}
.content .contact .contact_left .contact_tit::after {
  content: "";
  display: block;
  width: 3px;
  height: 60px;
  background: #ffc640;
  position: absolute;
  top: 10px;
  left: 1px;
}
.content .contact .contact_left .contact_tit h1 {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.content .contact .contact_left .contact_tit small {
  color: #bbb;
  font-size: 1.125rem;
}
.content .contact .contact_left .contact_list h3 {
  color: #ffc640;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 40px 0;
}
.content .contact .contact_left .contact_list ul li {
  color: #fff;
  font-size: 1.125rem;
  position: relative;
  margin-left: 100px;
  margin-bottom: 50px;
}
.content .contact .contact_left .contact_list ul li span {
  display: block;
  font-size: 0.875rem;
  color: #bbb;
  margin-top: 8px;
}
.content .contact .contact_left .contact_list ul li .iconfont {
  font-size: 2.25rem;
  font-weight: 300;
  position: absolute;
  top: 50%;
  left: -81px;
  transform: translateY(-50%);
  color: #bbb;
}
.content .contact .contact_left .contact_list ul li::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border: solid 1px #bbb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
.content .contact .contact_right {
  width: 50%;
}
.content .contact .contact_right form {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.content .contact .contact_right form input,
.content .contact .contact_right form textarea {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  outline: none;
  border: solid 1px #666;
  background: #3e3e3e;
  border-radius: 3px;
  color: #fff;
  font-size: 0.875rem;
  caret-color: #bbb;
  margin-bottom: 20px;
}
.content .contact .contact_right form input::-webkit-input-placeholder,
.content .contact .contact_right form textarea::-webkit-input-placeholder {
  color: #bbb;
}
.content .contact .contact_right form textarea {
  height: 100px;
  padding: 15px;
}
.content .contact .contact_right form .btn_input {
  width: 35%;
  background: #ffb300;
  font-size: 1rem;
  letter-spacing: 20px;
  text-indent: 20px;
  cursor: pointer;
}
.content .contact .contact_map {
  width: 100%;
  height: 400px;
}
.content .contact .contact_map #dituContent {
  width: 100%;
  height: 100%;
}
.content .case .case_tit {
  text-align: center;
  border-bottom: solid 1px #505050;
  padding-bottom: 30px;
}
.content .case .case_tit h1 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.content .case .case_tit small {
  color: #bbb;
  font-size: 0.875rem;
}
.content .case .case_filter {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #505050;
  position: relative;
}
.content .case .case_filter li {
  width: 150px;
  height: 50px;
}
.content .case .case_filter li h3 {
  font-weight: 400;
  text-align: center;
  line-height: 50px;
  position: relative;
}
.content .case .case_filter li h3 a {
  color: #bbb;
  font-size: 1rem;
}
.content .case .case_filter li .case_filter_wrapper {
  width: 1200px;
  display: none;
  position: absolute;
  top: 51px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(62, 62, 62, 0.9);
  padding: 0 200px;
}
.content .case .case_filter li .case_filter_wrapper .case_filter_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.content .case .case_filter li .case_filter_wrapper .case_filter_con b {
  display: none;
}
.content .case .case_filter li .case_filter_wrapper .case_filter_con a {
  padding: 10px 20px;
  display: block;
  color: #bbb;
}
.content .case .case_filter li .case_filter_wrapper .case_filter_con a:hover {
  color: #ffc339;
}
.content .case .case_filter .active h3 a {
  color: #ffc339;
}
.content .case .case_filter .active h3::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: solid 5px #ffc339;
  border-left: solid 5px transparent;
  border-top: solid 5px transparent;
  border-right: solid 5px transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.content .case .case_list {
  overflow: hidden;
  margin-top: 30px;
}
.content .case .case_list .case_item {
  float: left;
  width: 380px;
  margin-right: 30px;
  background: #2a2a2a;
  margin-bottom: 30px;
}
.content .case .case_list .case_item:nth-child(3n) {
  margin-right: 0;
}
.content .case .case_list .case_item figcaption {
  transition: 0.3s;
}
.content .case .case_list .case_item figcaption img {
  width: 380px;
  height: 300px;
  transition: 0.3s;
}
.content .case .case_list .case_item figcaption figure {
  text-align: center;
  color: #bbb;
  padding: 20px;
}
.content .case .case_list .case_item figcaption figure span {
  display: block;
  color: #999;
  font-size: 0.75rem;
  margin-top: 10px;
}
.content .case .case_list .case_item figcaption:hover {
  background: #9d7827;
}
.content .case .case_list .case_item figcaption:hover img {
  border-left: solid 5px #9d7827;
  border-top: solid 5px #9d7827;
  border-right: solid 5px #9d7827;
}
.content .case .case_list .case_item figcaption:hover figure {
  color: #fff;
}
.content .case .case_list .case_item figcaption:hover figure span {
  color: #fff;
}
.content .theme .theme_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #505050;
}
.content .theme .theme_item .theme_pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.content .theme .theme_item .theme_tit {
  margin-left: 30px;
}
.content .theme .theme_item .theme_tit h3 {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}
.content .theme .theme_item .theme_tit span {
  color: #bbb;
  font-size: 0.875rem;
}
.content .theme .theme_item .theme_tit p {
  color: #ddd;
  font-size: 0.875rem;
}
.content .theme .theme_item .theme_tit:hover h3,
.content .theme .theme_item .theme_tit:hover p {
  color: #ffc640;
}
.content .msg_con {
  text-align: center;
  margin: 40px 0;
}
.content .msg_con .fc-msg-info .fc-msg-title {
  color: #fff;
}
.content .msg_con .fc-msg-info .fc-msg-url {
  margin: 10px 0;
}
.content .msg_con .fc-msg-info .fc-msg-url a {
  color: #fff;
}
