﻿html,body{
  margin: 0;
}

/* 右侧导航栏 */
.right-menu{
  z-index: 200;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0px 2px 20px 0px rgba(95, 95, 130, 0.2);
  background: #fff;
}

.right-menu .menu-item{
  width: 80px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.right-menu .menu-item:hover{
  background: rgba(95, 95, 130, 0.05);
}

.right-menu .menu-item img{
  width: 28px;
  height: 28px;
}

.right-menu .menu-item .text{
  margin-top: 4px;
  white-space: nowrap;
  font-size: 12px;
  color: #333333;
}

/* 头部 */
.header{
  font-size: 14px;
}

.header .nav{
  width: 100%;
  display: flex;
  justify-content: center;
  height: 45px;
  background: url("./image/navbg.jpg") repeat-x 0 0;
}

.header .nav .nav-container{
  width: 1140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .nav .nav-container .nav-left{
  display: flex;
  color: #def1fd;
  line-height: 45px;
}

.header .nav .nav-container .nav-left a{
  white-space: nowrap;
  color: #def1fd;
  margin: 0 30px 0 0;
  text-decoration: none;
}

.header .nav .nav-container .nav-left a:hover{
  text-decoration: underline;
}

.header .nav .nav-container .nav-right{
  display: flex;
  align-items: center;
}

.header .nav .nav-container .nav-right .search{
  display: flex;
  align-items: center;
}

.header .nav .nav-container .nav-right .search .search-input{
  font-size: 14px;
  width: 250px;
  height: 28px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 1px 14px 1px 16px;
  box-sizing: border-box;
  border: none;
}

.header .nav .nav-container .nav-right .search .search-btn{
  height: 28px;
  width: 35px;
  background: #FA6300;
  border-radius: 0 40px 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}

.header .nav .nav-container .nav-right .search .search-btn img{
  height: 15px;
  object-fit: contain;
}

.header .logo{
  margin: 0 auto;
  width: 100%;
  display: block;
  height: 123px;
  background: url("./image/headbg.png") no-repeat center 0 #3259a9;
}

.header .logo .logo-container{
  margin: 0 auto;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 12px 0 13px;
}

.header .logo .logo-container img{
  height: 100%;
  object-fit: contain;
}

.header .menu{
  height: 81px;
  background: #fa6300;
  width: 100%;
  display: flex;
  justify-content: center;
  user-select: none;
}

.header .menu .menu-container{
  height: 100%;
  display: flex;
}

.header .menu .menu-container .menu-item{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

.header .menu .menu-container .menu-item:hover{
  background: #fd7a25;
}

.header .menu .menu-container .menu-item .menu-title{
  padding: 0 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

.header .menu .menu-container .menu-item .menu-title .title{
  line-height: 24px;
  white-space: nowrap;
}

.header .menu .menu-container .menu-item .menu-title .title.zh{
  font-size: 18px;
  color: #fff;
}

.header .menu .menu-container .menu-item .menu-title .title.en{
  line-height: 20px;
  font-size: 12px;
  color: #ffc6a1;
}

.header .menu .menu-container .menu-item .menu-children{
  display: none;
  z-index: 888;
  position: absolute;
  left: 0;
  top: 80px;
  background: #fd7a25;
  width: 200px;
}

.header .menu .menu-container .menu-item .menu-children .children-item{
  cursor: pointer;
  height: 60px;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 17px;
  border-bottom: 1px dotted #c7601e;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.header .menu .menu-container .menu-item .menu-children:hover{
  display: block;
}

.header .menu .menu-container .menu-item:hover .menu-children{
  display: block;
}

/* 尾步 */
.footer{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .nav{
  width: 100%;
  display: flex;
  justify-content: center;
  height: 50px;
  background: #0d5475;
  margin: 20px auto 0;
  color: #def1fd;
  line-height: 50px;
  font-size: 14px;
}

.footer .nav .nav-container{
  width: 1140px;
  display: flex;
  align-items: center;
}

.footer .nav .nav-container .label{
  white-space: nowrap;
}

.footer .nav .nav-container a{
  color: #def1fd;
  white-space: nowrap;
  margin-left: 24px;
  text-decoration: none;
}

.footer .nav .nav-container a:hover{
  text-decoration: underline;
}

.footer .nav .nav-container a:first-of-type{
  margin-left: 6px;
}

.footer .copyright {
  font-size: 14px;
  color: #909599;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  width: 100%;
  box-sizing: border-box;
  color: #d1d1d1;
  background: #363636;
}

/* 左侧导航 */
.slider-wraper{
  width: 250px;
}

.slider-wraper .slider-title{
  height: 60px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

.slider-wraper .slider-container{}

.slider-wraper .slider-container .slider-item{
  display: flex;
  align-items: center;
  height: 50px;
  background: #3259a9;
  box-sizing: border-box;
  border-top: 1px solid #476dba;
  border-bottom: 1px solid #3259a9;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  padding-left: 14px;
  position: relative;
}

.slider-wraper .slider-container .slider-item img{
  margin-right: 8px;
  height: 36%;
  object-fit: contain;
}

.slider-wraper .slider-container .slider-item:hover{
  background: #fa6300;
}

.slider-wraper .slider-container .slider-item.active{
  background: #fa6300;
}

/* 层级导航 */
.breadcrumb-wraper{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 60px;
  color: #999;
  font-size: 12px;
}

.breadcrumb-wraper .breadcrumb-label{
  margin-right: 4px;
}

.breadcrumb-wraper .breadcrumb-container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.breadcrumb-wraper .breadcrumb-container .gap{
  margin: 0 4px;
  font-size: 14px;
}

.breadcrumb-wraper .breadcrumb-container .breadcrumb-item{
  display: block;
  text-decoration: none;
  color: #3259a9;
  cursor: pointer;
}

.breadcrumb-wraper .breadcrumb-container .breadcrumb-item:hover{
  color: #fa6300;
}

.breadcrumb-wraper .breadcrumb-container .breadcrumb-item:last-of-type{
  color: #999;
  cursor: default;
}

.breadcrumb-wraper .breadcrumb-container .breadcrumb-item:last-of-type:hover{
  color: #999;
}

.list-header{
  height: 100px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}