﻿/**
 * @author lihuqi
 * @date 2017/07/04
 * @modify 2017/07/10
 * @ custom for jubi
 */


/* overwrite bootstrap */
a{ color: initial; }
a:active,a:link{
    color: initial;
    text-decoration: none;
}
#bottom a{
    color: initial;
    text-decoration: none;
    color: #0197e7;
}
a,button{ outline: none !important; }
p{ margin-bottom: 0; }
body{
    min-width: 1200px;
    width: 100%;
}
/* 重写样式 */
.text-color{ color: #e55600; }
.text-notice{ color: #009AFF !important; }
.text-sub{ color: #999; }
.pd0{padding: 0 !important;}
.pd10{padding: 10px;}
.pl10{padding-left: 10px !important;}
.pb5{padding-bottom: 5px !important;}
.mt10{margin-top: 10px;}
.mt30{margin-top:76px;}
.mb0{margin-bottom: 0 !important;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px !important;}
.mb30{margin-bottom: 30px;}
.flexbox{ display: flex; }
.bg-transparent{ background: transparent !important; }
.bg-ff{background: #fff !important;}
.alert{ border-radius: 0; }
.alert.alert-warning{ border-color: #FCF8E3; }
.alert.alert-warning .link-item{ color: #e55600; }
.alert.alert-warning .link-item:hover{
    color: #c54a00;
    text-decoration: underline;
}
.datetimepicker table tr td span{ font-size: 12px; }
.list-none{
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
    overflow: hidden;
}
/*
 *  滑动
 */
.scrollbar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,0.3);
    border-radius: 4px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.3);
    background-color: #009AFF;
}
/* 单选 */
.input-radio{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    font-weight: normal;
}
.input-radio .shape-input{ display: none; }
.input-radio .shape-radio{
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
}
.input-radio .shape-input:checked + .shape-radio{
    background-color: #e55600;
    border-color: #e55600;
}
.input-radio .shape-input:checked + .shape-radio::before{
    content: "";
    position: absolute;
    top: 1px;
    left: 5px;
    width: 9px;
    height: 14px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(40deg);
}
.input-radio .shape-text{ margin-left: 10px; }
/* 下拉列表 */
.group-select{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 240px;
    outline: none;
}
.group-select .form-control.form-select-half{ width: 115px !important; }
/* 侧边导航 */
.main-aside{
    position: fixed;
    bottom: 70px;
    right: 0;
    z-index: 99999999;
    font-size: 14px;
}
.main-aside ul{
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
    overflow: visible;
}
.main-aside ul li{
    position: relative;
    margin-bottom: 2px;
    margin-left: auto;
    width: 70px;
    height: 70px;
    transition: 0.4s;
}
.main-aside ul li a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    font-size: 12px;
    color: #fff;
    text-decoration: none !important;
}


.main-aside ul li.aside-detail a{ flex-direction: row;  }
.main-aside ul li.aside-detail a > span{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}
.main-aside ul li.aside-detail a .aside-hide{  display: none;  }
.main-aside ul li.aside-detail:hover,
.main-aside ul li.aside-detail:hover a{
    justify-content: flex-start;
    width: 200px;
}
.main-aside ul li.aside-detail:hover a .aside-hide{
    display: flex;
    align-items: flex-start;
}
.main-aside ul li a .fa{
    margin-bottom: 4px;
    font-size: 24px;
}
.main-aside .aside-wechat .wechat-code{
    position: absolute;
    top: -40px;
    left: -170px;
    width: 150px;
    height: 150px;
    border: 1px solid #efefef;
    box-shadow: 0 0 3px 2px rgba(43,170,251,0.333);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}
.main-aside .aside-wechat:hover .wechat-code{
    opacity: 1;
    visibility: visible;
}
.main-aside .aside-wechat .wechat-code img{
    width: 150px;
    height: 150px;
}

/* 顶部导航 */
.header-bar{
    width: 100%;
    height: 70px;
    background-color: #5176AA;
}
.header-bar .content{
    display: flex;
    justify-content: space-between;
    margin: auto;
    width: 1200px;
}
.header-bar ul{
    margin: 0;
    padding: 0;
    list-style: none;
    clear: both;
    overflow: hidden;
}

.header-bar ul li{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    color: #fff;
    float: left;
}
.header-bar ul li a{
    color: #fff;
    transition: 0.35s;
}
.header-bar .image-item{
    margin-right: 15px;
    max-height: 60px;
}
.header-bar a:hover{ color: #b4cef2; }
.header-left ul li:not(:last-child){ padding-right: 5px; }
.header-right li a{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    min-width: 100px;
}
.header-right li a::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    transform: translateY(-4px);
    transition: 0.333s;
}
.header-right li a:hover::before,
.header-right li.current a::before{
    transform: translateY(0px);
    background-color: #b4cef2;
}
.header-right li.current a{ color: #b4cef2; }

/* 联系我们 */
.contact{
    padding: 20px 0 0;
    background-color: #1A293A;
}
.contact .content{
    margin: auto;
    padding-bottom: 20px;
    width: 1200px;
    color: #666;
    overflow: visible;
    align-items: center;
}
.contact .image-item{ max-height: 80px; }
.contact .email{
    display: flex;
    flex-direction: column;
    padding: 20px 150px;
}
.contact .email .title{
    margin: 0;
    line-height: 36px;
    color: #fff;
}
.contact .email .link-item{
    color: #9d9d9d;
    line-height: 24px;
}
.contact .email .link-item:hover{ color: #d9d9d9; }
.contact .footer{
    line-height: 50px;
    color: #9d9d9d;
    font-size: 15px;
    background-color: #051222;
}
