body, html, div, h1, h2, h3, h4, h5, h6, table, tbody, th, tr, ul, li dl, dt, dd, p, a, form, input,span{
  border: 0 none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  outline: 0;
  font-family: 'Source Han Sans CN', '思源黑体', '思源黑体 CN Regular', '思源黑体 CN',  "PingFang SC", "sans-serif", "PingFang-SC-Regular", "arial", "Microsoft YaHei", "Heiti SC";
  font-size: 14px;
  font-style: normal;
  vertical-align:baseline;
  background:transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
}
body {
  /* min-width: 1200px; */
  overflow-x: hidden;
  -webkit-text-size-adjust: 100% !important;
}
body * {
  box-sizing: border-box;
}
:focus {
outline: 1;
}
.wrap{
  width:1120px;
  margin: 0 auto;
  text-align: left;
  height: auto;
  overflow: hidden;
}
article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary {display:block;}

nav ul {list-style:none;}

.clear{ clear:both}
.clearFix::after{
  display: block;
  content: '';
  clear: both;
}
ul,li{
  list-style:none;
}
a{
  text-decoration: none;
}
a:hover{
  color: var(--main);
  text-decoration: none;
  cursor: pointer;
}
button {
  outline: 0;
}
.hidden {
  display: none;
}
.center{
  text-align: center;
}
.right{
  text-align: right;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.flex {
  display: flex;
}
.flexCs {
  display: flex;
  justify-content: space-between;
}
.flexBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapContent {
  width: 1300px;
  margin: 0 auto;
}
.noFalse::before,
.noFalse::after {
  display: none;
}
.capital {
  text-transform: uppercase;
}
.singleText {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: inherit;
}
.multilineText {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.gray {
  background: #F6F6F6;
}
.thumb {
  overflow: hidden;
}
.avatar img,
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.thumb:hover img {
  transform: scale(1);
}

.rotate {
  transform: rotate(-180deg);
}

.container {
  width: 1200px;
  margin: auto;
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

:root {
  --main: #00599C;
  --white: #FFFFFF;
  --minor: #0C2156;
  --black: #000000;
  --assist: #F1FAF5;
  --gray: #EFEFEF;
  --text-hover: #136936;
  --text-gray:#BDBDBD;
  --color-minor: #649C7B;
  --color-primary: #00599C;
  --color-success: #1AB800;
  --color-warning: #FF832A;
  --color-error: #dd524d;
  --color-info: #797979;
  --color-ccc: #cccccc;
  --page-bg: #F8FAFC;
  --text-color:#3E4855;
  --text-color-inverse:#fff;
  --text-color-gray:#F2F5F9;
  --text-color-grey:#999;
  --text-color-placeholder: #808080;
  --text-color-disable: #c0c0c0;
}

/************ Common ************/

.header {
  background: #FFFFFF;
  height: 90px;
}
.header .container {
  height: 90px;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  display: block;
  width: 249px;
  height: 50px;
  object-fit: contain;
}
.header .logo .webname {
  color: var(--main);
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
  padding-left: 10px;
  line-height: 24px;
  border-left: 1px var(--main) solid;
}
.header .loginBtn {
  display: block;
  width: 95px;
  height: 40px;
  border: 1px var(--main) solid;
  line-height: 40px;
  text-align: center;
  color: var(--main);
  font-size: 18px;
  font-weight: 400;
  border-radius: 6px;
}
.header .loginBtn:hover {
  background: var(--main);
  color: var(--white);
}
.header .userWrap {
  display: flex;
  align-items: center;
  position: relative;
}
.header .userWrap .user-name {
  color: var(--main);
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
}
.header .userWrap .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 10px;
}
.header .userSelector {
  display: none;
  background: var(--white);
  position: absolute;
  left: 0;
  top: 42px;
  width: 100%;
  border-radius: 5px;
  padding: 5px 0;
  border: 1px #DFDFDF solid;
}
.header .userWrap:hover .userSelector {
  display: block;
} 
.header .userSelector li a {
  display: block;
  width: 100%;
  padding: 5px 10px;
}
.header .userSelector li + li a {
  border-top: 1px #DFDFDF solid;
}
.header .searchBar {
  width: 387px;
  height: 40px;
  border-radius: 6px;
  opacity: 0.3;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .searchBar input {
  padding: 8px 15px;
}
.header .searchBar button {
  padding: 0 10px;
  background: none;
  border: none;
}
.navBar {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
}
.navBar ul {
  display: flex;
}
.navBar ul li a {
  display: block;
  width: 110px;
  height: 34px;
  line-height: 34px;
  margin: 0 25px;
  text-align: center;
  color: var(--white);
  font-family: "Source Han Sans";
  font-size: 18px;
  font-weight: 400;
}
.navBar ul li a.current,
.navBar ul li a:hover {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
}
.footer {
  height: 320px;
  background: url(../images/bg001.jpg) no-repeat center;
  background-size: cover;
  padding: 35px 0 40px;
}
.footer .container {
  height: 100%;
}
.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 13px 0 17px;
  color: #999;
  font-family: "PingFang SC";
  font-size: 14px;
  font-weight: 400;
}
.copyright a {
  color: #999;
  font-family: "PingFang SC";
  font-size: 14px;
  font-weight: 400;
  margin-left: 30px;
}
.botLogo img {
  width: 249px;
  height: 51px;
  object-fit: contain;
}
.footer .webInfo {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .contacts .tit {
  color: var(--white);
  font-family: "Source Han Sans";
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
}
.footer .contacts .txt {
  color: var(--white);
  font-family: "Source Han Sans";
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  opacity: 0.8;
}
.footer .navList {
  display: flex;
}
.footer .navList dl {
  padding-left: 18px;
  position: relative;
  padding-top:   9px;
}
.footer .navList dl + dl {
  margin-left: 60px;
}
.footer .navList dl::before {
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  background: #E0C67E;
  position: absolute;
  top:  0;
  left: 0;
}
.footer .navList dt {
  color: var(--white);
  font-family: "Source Han Sans";
  font-size: 18px;
  font-weight: 700;
  border-top: 1px #E0C67E solid;
  padding-left: 8px;
  padding-top: 10px;
  margin-bottom: 10px;
}
.footer .navList dd a {
  display: block;
  padding-left: 8px;
  color: var(--white);
  font-family: "Source Han Sans";
  font-size: 15px;
  font-weight: 400;
  line-height: 34px;
  opacity: 0.8;
}
.footer .squares {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 170px;
  justify-content: space-between;
}
.footer .squares .item {
  width: 74px;
  color: var(--white);
  text-align: center;
  font-family: "Source Han Sans";
  font-size: 14px;
  font-weight: 400;
}
.footer .squares .item img {
  width: 74px;
  height: 74px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3px;
}

.paginations {
  text-align: center;
  margin: 15px auto;
}
.paginations .layui-laypage span, 
.paginations .layui-laypage a {
  margin: 0 2px;
  width: 54px;
  height: 36px;
  line-height: 36px;
  padding: 0;
  font-size: 18px;
  border-radius: 4px !important;
  overflow: hidden;
  color: #8F8F8F;
  font-family: "Source Han Sans";
  font-weight: 350;
}
.paginations .layui-laypage-next *, 
.paginations .layui-laypage-prev * {
  font-size: 20px;
}
.paginations .layui-laypage a:hover {
  background: var(--main);
  color: #FFFFFF;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: var(--main) !important;
}
.layui-laydate .layui-this,
.layui-btn {
  background-color: var(--main) !important;
}

.panel {
  background: var(--white);
  border-radius: 4px;
  padding: 1px 15px;
}

.thumbnail {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 9;
}
.thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.layui-layer-title {
  color: var(--black) !important;
  font-size: 20px !important;
  font-weight: 500;
  margin-top: 10px;
  height: 55px !important;
}
.layui-layer-btn-c {
  display: flex;
  align-items: center;
  justify-content: center;
}
.layui-layer-btn0 {
  flex: 50%;
  height: 55px !important;
  line-height: 55px !important;
  background-color: var(--main) !important;
  border-color: var(--main) !important;
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  border-radius: 4px !important;
}
.layui-layer-btn1 {
  flex: 50%;
  height: 55px !important;
  line-height: 55px !important;
  font-size: 18px;
  font-weight: 400;
  border-radius: 4px !important;
  background: #EEEEEE !important;
  border: none !important;
}

.breadcrumb {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 350;
  margin-top: 30px;
}
.breadcrumb a {
  color: #5B5B5B;
  font-size: 16px;
  font-weight: 350;
  margin: 0 5px;
}
.empty {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #787878;
  padding: 30px 0;
}
.empty img {
  width: 250px;
}