* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}
.clearfix {
  zoom: 1;
}
li {
  list-style: none;
}
html,
body {
  height: 100%;
  min-width: 1000px;
  margin: 0;
}
.top-nav{
    height: 80px;
    overflow-x: auto;
    overflow-y: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 998;
}
#top {
	height: 80px;
	width: 100%;
	background: -webkit-linear-gradient(90deg, #00a47e 0%, #006cb7 20%, #006cb7 80%, #00a47e 100%);
	background: -o-linear-gradient(90deg, #00a47e 0%, #006cb7 20%, #006cb7 80%, #00a47e 100%);
	background: -moz-linear-gradient(90deg, #00a47e 0%, #006cb7 20%, #006cb7 80%, #00a47e 100%);
	background: -ms-linear-gradient(90deg, #00a47e 0%, #006cb7 20%, #006cb7 80%, #00a47e 100%);
	background: linear-gradient(90deg, #00a47e 0%, #006cb7 20%, #006cb7 80%, #00a47e 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startcolorstr=#00a47e, endcolorstr=#00a47e);
	opacity: 0.88;
}
#top ul .left {
	width: 80%;
    height: 80px;
  float: left;
}
#top ul .left .logo {
    height: 100%;
    float: left;
    padding-left: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#top ul .left .logo img {
    width: 335px;
    height: 46px;
    cursor: pointer;
}
#top ul .left .link {
    width: 62%;
    margin-left: 34%;
    height: 80px;
}
#top ul .left .link .active {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 66%, rgba(255, 255, 255, 0.33) 100%);
    /*opacity: 0.78;*/
    width: 15%;
    padding-left: 0px;
}
#top ul .left .link .router-link {
    float: left;
    line-height: 80px;
    height: 80px;
    width: 14%;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    /* text-shadow: 0px 2px 4px rgba(0, 0, 0, 1); */
    text-align: center;
    cursor: pointer;
    margin-right: 80px;
}
#top ul .right {
	width: 20%;
    height: 80px;
    float: right;
    position: relative;
}
#top ul .right .one,
#top ul .right .two,
#top ul .right .three {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#top ul .right .one {
  z-index: 100;
    height: 46px;
    width: 46px;
  background: linear-gradient(180deg, #00a5dc 0%, #0160a3 100%);
  border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-left: -23%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#top ul .right .one img {
    height: auto;
    width: 46%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#top ul .right .two {
  left: 60px;
  margin-right: 30px;
  padding: 0 0 0 8%;
  width: 220px;
  height: 30%;
  background: linear-gradient(90deg, #4a97cb 0%, #1e89af 100%);
  margin-left: -5px;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
}
#top ul .right .two .reg {
  margin-left: 15%;
}
#top ul .right .three {
  right: 0px;
    width: 100px;
}
#top ul .right .logout {
    margin-left: 25%;
    position: relative;
}
#top ul .right .logout button {
    font-size: 16px;
    display: inline-block;
    width: 58px;
    border: none;
    border-radius: 20px;
    height: 30px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#49a3b6), to(#2598a0));
    background: linear-gradient(90deg, #49a3b6 0%, #2598a0 100%);
    border: 1px solid #57adb7;
    position: absolute;
    top: 40px;
    left: 60px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    line-height: 30px;
    margin-left: 4%;
}
.fr_wraperOne {
    width: 96%;
    height: 80px;
    position: relative;
    margin-left: 3%;
}
.username {
    width: 98px;
    color: #fff;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: absolute;
    left: -65px;
    top: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 14px;
}
*::-webkit-scrollbar {
    /*滚动条整体部分，其中的属性有width,height,background,border等（就和一个块级元素一样）（位置1）*/
    width: 7px;
    height: 7px;
}

*::-webkit-scrollbar-button {
    /*滚动条两端的按钮，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置2）*/
    background: none;
}

*::-webkit-scrollbar-track {
    /*外层轨道，可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果（位置3）*/
    background: none;
}

*::-webkit-scrollbar-track-piece {
    /*内层轨道，滚动条中间部分（位置4）*/
    background: none;
}

*::-webkit-scrollbar-thumb {
    /*滚动条里面可以拖动的那部分（位置5）*/
    background: #ccdce6;
    border-radius: 4px;
}

*::-webkit-scrollbar-corner {
    /*边角（位置6）*/
    background: #ccdce6;
}

*::-webkit-scrollbar-resizer {
    /*定义右下角拖动块的样式（位置7）*/
    background: #ccdce6;
}

#top {
    min-width: 1200px;
}

#top ul .left {
    width: 73%;
    height: 80px;
    float: left;
}

#top ul .left .link .router-link {
    width: 102px;
}

#top ul .right .three {
    left: 70%;
    float: right;
    z-index: 999;
    width: unset;
}

@media all and (max-width:1024px) {
    .link .router-link {
        font-size: 18px!important;
    }
}

@media all and (min-width:1024px) and (max-width:1280px) {
    #top .link .router-link {
        width: 87px!important;
    }
    #top ul .left .link {
        width: 50%;
        margin-left: 50%;
    }
}

@media all and (min-width:1280px) and (max-width:1366px) {
    .link .router-link {
        font-size: 18px!important;
    }
}

@media all and (min-width:1366px) and (max-width:1440px) {}

@media all and (min-width:1440px) and (max-width:1680px) {
    .link .router-link {
        font-size: 18px!important;
        width: 130px!important;
    }
    #top ul .left .link {
        width: 59%;
        margin-left: 41%;
    }
    #top ul .left {
        width: 80%;
    }
    #top ul .right {
        width: 20%;
    }
}

@media all and (min-width:1680px) and (max-width:1920px) {
    .link .router-link {
        font-size: 18px!important;
        width: 155px!important;
    }
    #top ul .left {
        width: 80%;
    }
    #top ul .left .link {
        width: 63%;
        margin-left: 38%;
    }
    #top ul .right {
        width: 20%;
    }
}

@media all and (min-width:1920px) {
    .link .router-link {
        font-size: 18px!important;
        width: 186px!important;
    }
    #top ul .left {
        width: 82%;
    }
    #top ul .right {
        width: 18%;
    }
    #top ul .left .link {
        width: 77%;
        margin-left: 34%;
    }
}