@charset "UTF-8";

*{
    font-family: 微软雅黑;
}

*, ::after, ::before {
    box-sizing: border-box;
}
p {
    margin-bottom: 1px;
}

label {
    display: inline-block;
    margin-bottom: .3rem
}

img {
    vertical-align: middle;
    border-style: none
}
/*段落开始*/
.h_start_p{
    text-indent:30px;
}

/*@page{size:a3}*/
/*body{min-width:992px!important}*/

/* 去掉date中上下小三角，但是保留input类型为number的小三角。 */
input[type=date]::-webkit-inner-spin-button {
    visibility: hidden;
}


/*让文字在一个div中垂直居中，父div需要设置高度*/
.center-vertical {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.h_main_content {
    width: 100%;
    overflow: hidden;
    height: 100%;
    position: relative;
    top: 0;
    min-height: 880px;
    min-width: 1200px;

}

/*带阴影，带背景的背景*/
.bg-shaow-box {
    /*background: rgba(71, 108, 29, 0.32);*/
    background-color: rgba(26, 122, 149, 0.52);
    box-shadow: 1px 1px 1px 1px rgba(16, 18, 20, 0.1);
    /*box-shadow: inset 0 -1px 0 rgba( 255, 255, 250, 0.6),*/
    /*inset 0 -2px 0 rgba( 0, 0, 0, 0.1);*/
    padding: 10px;
}

/*一个背景色块，统一内容区域颜色设置*/
.bg-box{
    background-color: rgba(16, 16, 29, 0.52);
}

/*带阴影，带边框的背景*/
.bg-shaow-box-border {
    background: none;
    box-shadow: 1px 1px 1px 1px rgba(16, 18, 20, 0.8);
    border: rgba(71, 108, 29, 0.52) 10px solid;
}


/*相册格子卡片*/
/*下部相册*/


/*格子外包*/
div.photo-card {
    /*background: rgba(71, 108, 29, 0.32);*/
    background-color: rgba(16, 16, 29, 0.32);
    width: 29%;
    padding: 15px;
    margin: 20px 2%;
    float: left;
    box-shadow: 1px 1px 1px 1px rgba(16, 18, 20, 0.3);
    position: relative;
}

/*边框，使用此属性可以让图片缩放*/
div.photo-card div.img-board {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*图片*/
div.photo-card img {
    position: relative;
    width: 100%;
    padding: 0;
    height: auto;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s;
}

/*鼠标放上后图片放大*/
div.photo-card div.img-board img:hover {
    background: #ddd;
    transform: scale(1.2);
}


/*描述外标签*/
div.photo-card div.desc {
    padding-top: 5px;
    color: white;
}


/*!*日期*!*/
/*div.photo-card div.desc .date{*/
/*    color: orange;*/
/*    float: right;*/
/*    text-align: right;*/
/*    width: 30%;*/
/*    font-size: 20px;*/
/*    padding: 10px;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*}*/

div.photo-card div.desc span.date {
    color: yellow;
    font-weight: bold;
    font-size: 16px;
}


div.photo-card div.desc span.title {
    /*display: inline;*/
    color: white;
    font-size: 14px;
    /*强制两个显示*/
    word-break: break-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

div.photo-card div.desc span.title-1 {
    /*display: inline;*/
    color: white;
    font-size: 14px;
    /*强制两个显示*/
    word-break: break-all;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


div.photo-card div.desc span:hover, div.photo-card div.desc p:hover {
    text-decoration: none;
}

.img-board > span {
    background: rgba(16, 16, 16, 0.5);
    color: white;
    font-size: 14px;
    padding: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

/*!*标题*!*/
/*div.photo-card div.desc .p-title{*/
/*    color: white;*/
/*    text-align: left;*/
/*    font-size: 16px;*/
/*    padding: 5px;*/
/*}*/

/*!*明细*!*/
/*div.photo-card div.desc .p-detail{*/
/*    width: 100%;*/
/*    color: white;*/
/*    font-size: 14px;*/
/*    text-align: left;*/
/*    float: left;*/
/*}*/

/*鼠标移入时效果*/
div.photo-card div.desc:hover {
    color: darkred;
}


/*以下为相册扩展，实现了一个覆盖在图片上的编号，标题按钮,遮罩层*/
.photo-cover-info {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    text-align: center;
    background: none;
}

.photo-cover-info .info-number, .photo-cover-info .info-title {
    color: white;
    text-align: center;
    text-shadow: #b3b3b3;
    display: block;
}

.photo-cover-info .info-number {
    width: 40px;
    margin-top: 20%;
    margin-right: auto;
    margin-left: auto;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    font-weight: bolder;
    font-size: 30px;
}

.photo-cover-info .info-title {

    background: rgba(16, 16, 16, 0.3);
    border-color: white;
    border-width: 1px;
    border-style: solid;
    position: absolute;
    width: 150px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -25px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
}

.img-board:hover > img {
    cursor: pointer;
    transition: all 0.6s;
    background: #ddd;
    transform: scale(1.4);
}

.img-board:hover > .photo-cover-info {
    background: rgba(10, 10, 10, 0.2);
}

.photo-cover-info:hover > .info-title {
    background: #8cdb8b;
}

/*----------------------------*/


/*控制高度自适应相框*/
div.img-card-h {
    position: relative;
    float: left;
    padding: 5px;
    background: #1c7430;
}

/*限制图片框高度*/
div.img-board-h {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/*限制图片高度*/
div.img-board-h > img {
    position: relative;
    height: 100%;
    cursor: pointer;
    transition: all 0.6s;
}

/*鼠标放上后图片放大*/
div.img-card-h div.img-board-h > img:hover {
    transition: all 0.6s;
    transform: scale(1.2);
}

.img-board-h:hover > img {
    transition: all 0.6s;
    transform: scale(1.2);
}

/*图片底部文字*/
.img-board-h > span {
    background: rgba(16, 16, 16, 0.5);
    color: white;
    font-size: 14px;
    padding: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}


/*图片上的蒙版，用于控制显示左上角图标，其他绝对定位的图标也可以显示在该层*/
div.img-board-h div.img-mask-h {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/*右上角关闭图标*/
div.img-board-h div.img-mask-h .img-right-top-fog-h {
    position: absolute;
    right: 5px;
    top: 5px;
    color: red;
    display: block;
    padding: 5px;
    z-index: 1000;
}

/*-------------------------------------------------------------*/

/*上面图标，下面文字的图标*/
.ico-card {
    padding: 5px;
    margin: 20px 2%;
    float: left;
    position: relative;
}

.ico-card img {
    width: 100%;
}

.ico-card .desc {
    width: 100%;
    text-align: center;
    color: white;
}

/*-----------------------------------*/

/*一些按钮的样式---------------------------*/

.h_button {
    float: left;
    position: relative;
    background: gainsboro;
    border: #b3b3b3 1px solid;
    padding: 0px 20px;
    height: 35px;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    color: #0b2e13;
    margin: 2px 10px;
}

.h_button:hover {
    background: #4CAF50;
}

/*一个button*/
.h_min_button,.h_light_button {
    float: left;
    position: relative;
    background: orange;
    padding: 0px 15px;
    height: 45px;
    text-align: center;
    font-size: 14px;
    line-height: 45px;
    color: #fff;
    margin: 0 10px;
    border-radius: 5px;
    border: 0;
    width: auto;
    min-width: auto;
    cursor: pointer;
}




.h_min_button:hover,.h_light_button:hover {
    text-decoration: none;
    color: #fff;
}
.h_min_button:active,.h_light_button:active {
    background: #4CAF50;
    color: white;
    text-decoration: none;
}

.h_min_button_disabled{
    background: rgb(229, 229, 229);
}

/*输入框*/
.h_input {
    float: left;
    position: relative;
    background: white;
    color: #333;
    border: #b3b3b3 1px solid;
    height: 35px;
    line-height: 35px;
    text-align: center;
    padding: 0px 2px;
    margin: 2px 10px;
}

.h_checkbox{
    height: 35px;
    line-height: 35px;
    padding: 0px 5px;
    margin: 0;
    border: #b3b3b3 1px solid;
    float: left;
}


/*------------------------------------------*/

/*定义一个可以打开与搜索的组件---------------------*/
/*可打开搜索组件的内容区域，真实内容为下一层div，需要设置c+index的id，该层的作用为剪切动画*/

.fold_box {
    width: 100%;
    clear: both;
    /*padding: 10px 0px;*/
}


/*切割动画*/
.e_content_box {
    position: relative;
    width: 100%;
    clear: both;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
}

/*折叠内容区域*/
.e_content {

}

.e_cell_show {
    display: block;
}

.e_cell_hide {
    display: none;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: bounceOutUp;
}

.switch {

}

a.e_open, a.e_close {
    color: #8cdb8b;
    float: right;
    line-height: 30px;
    font-size: 16px;
}

a.e_open:after {
    content: "+";
}

a.e_close:after {
    content: "-";
}

/*-------------------------------------------------*/


/*简单弹出框*/
.alert_box {
    clear: both;
    width: 200px;
    height: 100px;
    background: green;
    position: fixed;
    left: calc(50% - 100px);
    top: calc(50% - 50px);
    padding: 2px;
    z-index: 99999;
}

.alert_box_content {
    width: 100%;
    height: 100%;
    background-color: rgba(71, 108, 29, 0.72);
    padding: 10px;
}

.alert_box_content p {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/*显示属性*/
.show {
    display: block;
}

/*隐藏属性*/
.hide {
    display: none;
}

/*-----------------------------------------------*/

/*横向可滑动相册缩略图集*/
.photos-list-h {
    margin: 10px 0;
    position: relative;
    width: 100%;
    height: 175px;
    background: rgba(71, 108, 29, 0.32);
    box-shadow: 1px 1px 1px 1px rgba(16, 18, 20, 0.3);
    box-shadow: 1px 1px 1px 1px rgba(16, 18, 20, 0.3);
}

/*定义列表左右滑动按钮*/
.photos-list-h > .photos-list-but-left, .photos-list-h > .photos-list-but-right {
    position: absolute;
    width: 30px;
    height: 100%;
    /*background: rgba(16,16,16,0.5);*/
    z-index: 9999;
}

.photos-list-h > .photos-list-but-left {
    left: 0;
    opacity: 0;
}

.photos-list-h > .photos-list-but-right {
    right: 0;
    opacity: 0;
}

.photos-list-but-left > a > img, .photos-list-but-right > a > img {
    position: absolute;
    width: 30px;
    top: calc(50% - 30px);
}

.photos-list-but-left > a > img {
    content: url(../image/move_left.png);
}

.photos-list-but-right > a > img {
    content: url(../image/move_right.png);
}

/*定制列表主区域*/
.photos-list-bar {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    float: left;
}

.photos-list-h:hover > .photos-list-but-right,.photos-list-h:hover > .photos-list-but-left{
    cursor: pointer;
    opacity: 1;
}

/*定义列表内容区域*/
.photos-list-bar > .photos-list-content {
    position: absolute;
    width: calc(100%);
    left: 0;
    top: 0;
}


/*相册格子卡片*/
.photos-list-bar > .photos-list-content > .photo-card {
    padding: 10px;
    margin: 0;
    box-shadow: none;
}

/*相册格子卡片*/
.photos-list-bar > .photos-list-content > .photo-card > a > .img-board > img {
    margin: 0;
    padding: 0;
    height: 155px;
}

/*----------------------------------------------------------------*/


.bigInput {
    border: orange 1px solid;
    background: none;
}

.bigBut {
    background: orange;
    text-align: center;
    color: white;
}

.bigInput, .bigBut {
    position: relative;
    /*width: 100%;*/
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    padding: 0px 10px;
}

a > .bigBut:hover {
    background: #8cdb8b;
}

input {
    font-size: 16px;
}


/*布局相关代码*/

/*定义一个横行*/
.h_row {
    position: relative;
    box-sizing: border-box;
    /*display: block;*/
    width: 100%;
    clear: both;
    padding: 10px 0px;
}


.h_c_05 {
    width: 4.9%;
}

.h_c_1 {
    width: 9.99%;
}

.h_c_2 {
    width: 19.99%;
}

.h_c_3 {
    width: 29.99%;
}

.h_c_33 {
    width: 33.33%;
}

.h_c_4 {
    width: 39.99%;
}

.h_c_5 {
    width: 49.99%;
}

.h_c_6 {
    width: 59.99%;
}

.h_c_7 {
    width: 69.99%;
}

.h_c_8 {
    width: 79.99%;
}

.h_c_9 {
    width: 89.99%;
}

.h_c_15{
    width: 14.99%;
}
.h_c_25{
    width: 24.99%;
}
.h_c_35{
    width: 34.99%;
}
.h_c_45{
    width: 44.99%;
}
.h_c_55{
    width: 54.99%;
}
.h_c_65{
    width: 64.99%;
}
.h_c_75{
    width: 74.99%;
}
.h_c_85{
    width: 84.99%;
}
.h_c_95{
    width: 94.99%;
}

h_r{
    position: relative;
    display: block;
}

.h_c,.h_c_05,.h_c_15, .h_c_25,.h_c_35,.h_c_45,.h_c_55,.h_c_65,.h_c_75,.h_c_85,.h_c_95,.h_c_1, .h_c_2, .h_c_3, .h_c_4, .h_c_5, .h_c_6, .h_c_7, .h_c_8, .h_c_9 ,.h_c_33{
    position: relative;
    float: left;
}

.h_t_left{
    text-align: left;
}
.h_t_right{
    text-align: right;
}
.h_t_title{
    text-align: right;
    padding-right: 10px;
    line-height: 35px;
}

.h_right{
    float: right;
}
.h_left{
    float: left;
}

/*自定义文件上传样式*/
.fileInputBox {
    position: relative;
    width: 50px;
    height: 50px;
}

.fileInputBox > a > img, .fileInputBox > a > input[type=file] {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.fileInputBox > a > input[type=file] {
    opacity: 0;
}

/*---------------------------------------------*/

/*输入框表单验证相关css*/
/* WebKit browsers */
input[type=text].change::-webkit-input-placeholder, input[type=password].change::-webkit-input-placeholder,input[type=checkbox].change::-webkit-input-placeholder
    /*!* Mozilla Firefox 4 to 18 *!, input[type=text].change:-moz-placeholder, input[type=password].change:-moz-placeholder*/
    /*!* Mozilla Firefox 19+ *!, input[type=text].change::-moz-placeholder, input[type=password].change::-moz-placeholder*/
    /*!* Internet Explorer 10+ *!, input[type=text].change:-ms-input-placeholder, input[type=password].change:-ms-input-placeholder */
{
    color: red;
}

input.wrong {
    border: red 1px solid;
}

input[type=submit]:disabled{
    background: gainsboro;
    color: #fff;
    cursor: auto;
}



/*-----------------------------------------*/


/*右侧导航栏，图片扩大，文字隐藏，鼠标移动上显示*/
.h_right_list {
    /*width: 280px;*/
    /*height: 400px;*/
    position: fixed;
    right: 0;
    bottom: 150px;
    /*z-index: 9999999999999;*/
}

.h_right_list > ul > li {
    position: relative;
    width: 100%;
    height: 40px;
    padding: 15px 0 15px 0;
    box-sizing: content-box;
}

.h_right_list > ul > li > span {
    float: right;
    height: 50px;
    line-height: 50px;
    color: white;
    font-size: 16px;
    padding: 0 10px 0 10px;
    opacity: 0;
}


.h_right_list > ul > li > a > div {
    float: right;
    background: rgba(150, 144, 132, 0.52);
    border-radius: 25px 0 0 25px;
    width: 50px;
    height: 50px;
    right: 0;
    text-align: center;
}

.h_right_list > ul > li > a > div >img {
    position: relative;
    width: 25px;
    height: 25px;
    padding: 12px 0 0 10px;
    box-sizing: content-box;
}

.h_right_list > ul > li > a > div:hover {
    width: 90px;
    background: #83B350;
    transition: all 0.6s;
}

.h_right_list > ul > li > a:hover+span{
    opacity: 1;
    transition: all 1s;
}

/*.h_right_list > ul > li > div:hover>a>img{*/
/*    transition: all 0.6s;*/
/*    transform: scale(1.2);*/
/*}*/

/*---------------------------------------------*/


/*顶部图片横幅*/
@keyframes banner {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

img.banner{
    width: 100%;
    animation-duration: 5s;
    -webkit-animation-name: banner;
    animation-name: banner
}
/*---------------*/





/*弹出框相关css*/

/*外层蒙版*/
.h-pop-pane{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(17,17,17,0.54);
    z-index: 9999;
    animation-duration: 1s;
    -webkit-animation-name: am_pane_show;
    animation-name: am_pane_show
}

/*显示动画*/
@keyframes am_pane_show {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*隐藏动画*/
@keyframes am_pane_hide {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.h-pop-pan-hide{
    animation-duration: 1s;
    -webkit-animation-name: am_pane_hide;
    animation-name: am_pane_hide
}




/*可视框*/
.h-pop-box{
    position: relative;
    border-radius: 5px;
    background: white;
    /*border: rgba(17,17,17,0.25) 1px solid;*/
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translatex(-50%);
}


/*标题*/
.h-pop-title{
    position: relative;
    width: 100%;
    height: 40px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    line-height: 40px;
    color: white;
    font-size: 18px;
    text-align: center;
    border-bottom: rgba(17,17,17,0.25) 1px solid;
    background: #38ce8f;
}
/*内容区域*/
.h-pop-content{
    position: relative;
    width: 100%;
    height: calc(100% - 40px - 50px);
    padding: 20px;
    text-align: center;
    overflow-y: auto;
    /*background: #00bcd4;*/
}

.h-pop-content pre{
    text-align: left;
    white-space:pre-wrap; white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; word-wrap:break-word;
}

/*底部工具栏*/
.h-pop-bottom
{
    position: relative;
    text-align: center;
    height: 50px;
    padding: 10px;
    border-top: rgba(17,17,17,0.05) 1px solid;
    background: rgba(220, 220, 220, 0.02);
}

/*底部按钮样式*/
a.h-pop-btn{
    display: inline-block;
    /*float: right;*/
    text-decoration: none;
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: white;
    border-radius: 5px;
    margin: 0 10px;
    min-width: 60px;
    background: #38ce8f;
}


a.h-pop-btn:hover{
    text-decoration: none;
    background: #627f97;
}

/*关闭按钮*/
.h-btn-close {
    display: inline-block;
    text-decoration: none;
    padding: 0px 11px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-size: 15pt;
    color: white;
    outline: none;
    background-repeat: repeat-x;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 3px;
    height: 25px;
    line-height: 25px;
    border: 0px;
    background: none;
}

.h-btn-close:hover{
    text-decoration: none;
    background: red;
    color: white;
}

/*一个等待画面*/
.h-wait-box{
    position: relative;
    border-radius: 5px;
    background: rgba(17,17,17,0.25);
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translatex(-50%);
    width: 200px;
    height: 100px;
}

.h-wait-box{
    position: relative;
    text-align: center;
    vertical-align: middle;
}
.h-wait-box>p{
    padding-top: 20px;
    line-height: 20px;
    font-size: 18px;
    color: white;

}

/*---------------------------------------*/

/*一个数字按钮的封装，对应comm.js>NumberInputGroup*/
.number-input-group{

}

.number-input-group>a{
    font-size: 26px;
    margin-top: 1px;
    margin-left: 1px;
    margin-right: 1px;
    position: relative;
    background: orange;
    padding: 0px 15px;
    height: 33px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    border-radius: 5px;
    float: left;
}
.number-input-group>a:hover{
    text-decoration: none;
    background: limegreen;
}
.number-input-group>a:active{
    text-decoration: none;
    background: limegreen;
}

.number-input-group>input[type=text]{
    margin: 0 0 0 0;
    position: relative;
    width: 50px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    border: 1px orange solid;
    float: left;
    border-radius: 5px;
}


.h_line{
    width: 100%;
    height: 1px;
    border-top: rgba(200,200,200,0.4) 1px dashed;
    clear: both;
}


label.err{
    padding: 0;
    margin: 0;
    color: red;
}


/*分页控件*/
.butGroup{
    padding: 0;
}

.butGroup ul {
    display: table;
}

.butGroup li {
    float: left;
    list-style: none;
}

.butGroup ul li a{
    text-decoration: none;
    padding: 5px 12px;
    margin-right: 1px;
    background-color: #ddd;
    color: #000;
}

.butGroup ul li a:active{
    background-color: #4CAF50;
    color: #fff;
}


.butGroup ul li a.active {
    background-color: #4CAF50;
    color: white;
}
/*-------------------------*/

img.h_score {
    padding: 0 0 0 0;
    margin-top: 10px;
}




/*图片毛玻璃*/
.blur {
    filter: url(blur.svg#blur); /* FireFox, Chrome, Opera */
    -webkit-filter: blur(10px); /* Chrome, Opera */
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false); /* IE6~IE9 */
}

/*毛玻璃背景*/
.bodybg {
    height: 100%;
    display: block;
    position: fixed;
    width: 100%;
    min-height: 880px;
    min-width: 1200px;
    z-index: -1;
}
/*-------------------------------*/

.m_empty{
    width: 100%;
    height: 100px;
    background: white;
}
.m_empty>p{
    text-align: center;
    line-height: 100px;
    color: rgba(0, 0, 0, 0.64);
}

.h_red_text{
    color: red;
}

.h_text_center{
    text-align: center;
}

a.h_tel{
    color: limegreen;
}

.h_text_fill_width{
    text-align-last: justify;
}


.h-center-but{
    margin: 20px 15% 0 15%;
    height: 40px;
    width: 70%;
    font-size: 18px;
}