/* 通用样式 */
[v-cloak] {
  display: none
}

* {
  margin: 0;
  padding: 0;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

img {
  border: none;
}

dl,
dt,
dd,
ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-fl {
  float: left;
}

.f-fr {
  float: right;
}

.clearfix {
  zoom: 1;
}

.m10 {
  margin: 10px;
}

body {
  background: #fff;
  font-family: "Microsoft YaHei";
}

input,
button,
select,
textarea,
section,
div {
  outline: none;
}

/* 大屏幕（大桌面显示器，大于等于 1200px） */
@media screen and (min-width:1200px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (min-width:768px) and (max-width:1200px) {
  .container {
    width: 1200px;
    margin: 0 auto;
  }
}

/* 超小屏幕（手机，小于 768px） */
@media screen and (max-width:768px) {
  .container {
    width: 100%;
  }
}

.header-bottom-line {
  height: 5px;
  width: 100%;
  background: url(../images/header-bottom-bg.png) repeat-x;
  border-top: 1px solid #0061c3;
}

/* 全局修改card样式 */
.el-card,
.el-message {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.el-card__header {
  background: #fafafa;
  color: #0061c3;
  padding: 12px 15px;
}

.el-dialog,
.el-card__header {
  background: #fafafa;
  color: #0061c3;
  padding: 8px 15px;
}

.el-dialog .el-table .cell {
  line-height: 16px;
}

.el-card__body {
  padding: 12px 15px;
}

.header-main {
  width: 1200px;
  margin: 0 auto;
}

.logo img {
  display: block;
}

h1.logo-text {
  height: 120px;
  line-height: 120px;
  font-weight: normal;
  color: #4b4b4b;
}

.header-nav {
  padding-top: 40px;
}

.header-nav i {
  font-size: 24px;
  color: #0061c3;
}

.header-nav span {
  font-size: 14px;
}

.header-nav a {
  display: inline-block;
  color: #333;
  text-align: center;
  text-decoration: none;
  margin-right: 40px;
}

.xs-header-nav {
  margin-right: 10px;
  color: #0061c3;
}

.xs-header-navbox {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, .9);
  z-index: 999999999;
}

.xs-header-nav ul {}

.xs-header-nav ul li a {
  display: block;
  padding: 10px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
  color: #0061c3;
}

.xs-header-nav ul li i {
  float: left;
  font-size: 24px;
}

.xs-header-nav ul li span {
  float: right;
  font-size: 14px;
}

.xs-header-nav .el-icon-menu {
  font-size: 28px;
}

/* xs < 768px */
@media screen and (max-width:768px) {
  .header-main {
    width: 100%;
  }

  .header {
    position: relative;
  }

  .logo.f-fl {
    float: none;
  }

  .logo img {
    width: 100%;
  }

  h1.logo-text {
    height: 26px;
    line-height: 26px;
    font-size: 18px;
    margin-left: 10px;
  }

  .header-nav {
    padding-top: 0px;
  }

  .header-nav a {
    margin-right: 40px;
  }
}

.footer {
  width: 100%;
  background: rgb(239, 239, 239);
  border-top: 2px solid #0061c3;
}

.footer-container {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.footer .about {
  text-align: center;
  font-size: 13px;
  color: #707070;
  line-height: 24px;
  margin-left: 220px;
}

.footer .about a {
  color: #707070;
  text-decoration: none;
  padding: 0 8px;
}

.footer span {
  padding: 0 8px;
}

.footer .about .beian {
  background: url(https://www.nmpa.gov.cn/wbppimages/2019beian.png) no-repeat left center;
  padding-left: 20px;
}

.footer .red-bg {
  margin-right: 270px;
}

/* xs < 768px */
@media screen and (max-width:768px) {
  .footer-info {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin: 0 auto;
    display: table;
    line-height: 20px;
    padding-top: 10px;
  }

  .footer-info a {
    text-decoration: none;
  }

  .footer-redimg {
    padding-top: 6px;
    /*padding-right: 10px;*/
    text-align: center;
    display: table-cell;
    vertical-align: middle;
  }
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
  right: 1px;
  opacity: 0.2;
  background-color: #F3F3F4;
}

/****通用的滚动条的样式****/
::-webkit-scrollbar-track {
  width: 6px;
  background: #F3F3F4;
}

::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(148, 153, 159, 1);
  display: block;
  right: 1px;
}

::-webkit-scrollbar-thumb:hover {
  border-radius: 3px;
  display: block;
}