* {
    margin: 0;
    padding: 0;
}

ul,
li,
ol {
    list-style: none;
}

img {
    outline: none;
    border: none;
}

@font-face {
    font-family: 'corpfont';
    src: url('../fonts/corpfont.eot?utuc4q');
    src: url('../fonts/corpfont.eot?utuc4q#iefix') format('embedded-opentype'), url('../fonts/corpfont.ttf?utuc4q') format('truetype'), url('../fonts/corpfont.woff?utuc4q') format('woff'), url('../fonts/corpfont.svg?utuc4q#corpfont') format('svg');
    font-weight: normal;
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
}

#header {
    height: 73px;
    background-color: #fefefe;
    position: relative;
    z-index: 100;
    display: block;
    margin: 0 auto;
}

#header .topinner {
    max-width: 1105px;
    height: 100%;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

#header .topinner .logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#header .topinner .menu {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

#header .topinner .menu .menulist {
    position: absolute;
    width: 120px;
    right: 0;
    top: 30px;
    background-color: #fff;
    padding-left: 5px;
    border-radius: 5px;
    display: none;
}

#header .topinner .menu .menulist li a {
    height: 30px;
    line-height: 30px;
    display: inline-block;
    color: #000;
}

#footer .container {
    max-width: 1200px;
}

#footer .footnav {
    height: 276px;
    margin: 0 auto;
    padding: 45px 0 85px 0;
    /* max-width: 1105px; */
}

#footer .footnav ul li a {
    color: #282828;
    font-size: 16px;
    line-height: 36px;
    display: block;
}

#footer .footnav .company {
    margin-top: 40px;
}

#footer .footnav .company ul li {
    float: left;
    padding: 18px;
}

#footer .footnav .company ul li:first-child {
    padding-left: 0;
}

#bottom {
    height: 36px;
    background: #282828;
}

#bottom .inner {
    max-width: 1105px;
    margin: 0 auto;
}

#bottom .inner .copy {
    color: #e2e7ea;
    line-height: 36px;
    font-size: 14px;
    display: inline-block;
}

#bottom .inner .about {
    float: right;
}

#bottom .inner .about li {
    float: left;
}

#bottom .inner .about li a {
    color: #fff;
    font-size: 14px;
    line-height: 36px;
}

#bottom .inner .about li.line {
    width: 2px;
    height: 15px;
    background-color: #fff;
    margin: 11px 8px 0 10px;
}


/* 手机样式调整 */

@media(max-width:767px) {
    #header {
        height: 50px;
    }
    #header .topinner .logo {
        left: 15px;
    }
    #header .topinner .menu {
        right: 15px;
    }
    #footer .footnav {
        height: auto;
        padding: 20px 0 20px 0;
    }
    #footer .footnav .col-xs-6 {
        margin-bottom: 10px;
        min-height: 140px;
    }
    #footer .footnav .company {
        margin-top: 0;
    }
    #footer .footnav ul li a {
        font-size: 14px;
        line-height: 26px;
    }
    #footer .footnav .company ul li {
        padding: 8px;
    }
    #bottom {
        padding: 0 10px;
        height: auto;
        text-align: center;
    }
    #bottom .inner .about {
        float: none;
    }
    #bottom .inner .about li {
        float: none;
        display: inline-block;
    }
    #bottom .inner .about li.line {
        height: 10px;
    }
    #bottom .inner .about li a {
        line-height: 20px;
    }
}


/* 手机样式调整 */

@media (min-width:1200px) {
    #header .topinner {
        left: 50%;
        margin-left: -552px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    body {
        padding: 0 15px;
    }
    #header .topinner {
        left: 50%;
        margin-left: auto;
        transform: translateX(-50%);
        width: 100%;
    }
}

@media (min-width:768px) and (max-width:991px) {
    body {
        padding: 0 15px;
    }
}


/* 动画 */


/**/

body {
    position: relative;
    font-family: Microsoft YaHei, Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 28px;
}

#header {
    box-shadow: 0 1px 10px rgba(0, 0, 0, .08)
}

#header .topinner .menu a img {
    transition: all 0.3s;
}

#header .topinner .menu a:hover img {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    /* Internet Explorer */
    -moz-transform: rotate(180deg);
    /* Firefox */
    -webkit-transform: rotate(180deg);
    /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
    /* Opera */
}

#header .topinner .menu .menulist {
    position: absolute;
    width: 200px;
    right: 0;
    top: 47px;
    background-color: #fff;
    display: none;
    padding: 10px 20px 20px 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .08);
    border-radius: 0;
}

#header .topinner .menu .menulist li {
    padding: 7px 0;
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

.animated {
    -webkit-animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-duration: 1.5s;
    animation-fill-mode: both
}

@media (max-width:767px) {
    #header .topinner .menu .menulist {
        top: 39px;
    }
}


/* 动画 */

.video-dialog.bootstrap-dialog.type-primary .modal-header {
    background: none;
    padding: 0;
    border-bottom: 0;
}

.video-dialog.bootstrap-dialogg .bootstrap-dialog-title,
.video-dialog.bootstrap-dialog .bootstrap-dialog-title {
    display: none !important;
}

.video-dialog.bootstrap-dialog .bootstrap-dialog-close-button {
    opacity: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 96;
}

.video-dialog.bootstrap-dialog .modal-dialog {
    width: 100%;
    max-width: 960px;
}

.video-dialog.bootstrap-dialog .modal-header .close {
    color: #fff;
    font-size: 25px;
    opacity: 1;
}

.video-box {
    width: 100%;
    position: relative;
    z-index: 97;
    overflow: hidden;
}

.video-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.video-box img {
    max-width: 100%;
}

.video-box a>span {
    width: 80px;
    height: 80px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    z-index: 8;
}

.video-box em {
    position: absolute;
    font-size: 0.45rem;
    color: #eb5b56;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -9px;
    z-index: 11;
}

.player-outer-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 98;
}

@media (max-width:767px) {
    .video-dialog.modal:before {
        display: none;
    }
    .video-dialog.bootstrap-dialog .modal-dialog {
        position: absolute;
        top: 40%;
        left: 0;
        transform: translateY(-55%);
        margin: 0;
    }
}


.comment{ margin-top:50px; margin-bottom: 50px;}
.comment .edit-input { text-align:right;}
.comment .edit-input textarea{ width:100%; height:160px; overflow-x:hidden; overflow-y: auto; border:1px solid #e9b0a9; padding:15px; text-align:left;}
.comment .edit-input .more{ background-color:#d46360; color:#fff;text-transform: uppercase; margin:15px 0;}
.comment .more {
  height: 47px;
  line-height: 47px;
  text-align: center;
  padding: 0 30px;
  display: inline-block;
}
.comment ul li{ border-top:1px solid #ebebeb; padding:30px 0;}
.comment ul li time{ margin-left:15px;}
.comment ul li span{ font-weight:bold;}
.comment ul li p{ margin:0; word-wrap: break-word; word-break: break-word;}

