/*====== 基本样式 =====*/
* {
    padding: 0;
    margin: 0;
}

body {
    font-size: 14px;
    line-height: 30px;
    color: #333333;
    font-family: "microsoft yahei";
}

a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

img {
    border: none;
}

ul, li, dl, dt, dd {
    list-style: none;
}

.w {
    width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .w {
        width: 90%;
    }
}

.clear {
    width: 100%;
    line-height: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    clear: both;
}

@font-face {
    font-family: 'iconfont';
    src: url('//at.alicdn.com/t/font_1465826771_9149368.eot'); /* IE9*/
    src: url('//at.alicdn.com/t/font_1465826771_9149368.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('//at.alicdn.com/t/font_1465826771_9149368.woff') format('woff'), /* chrome、firefox */ url('//at.alicdn.com/t/font_1465826771_9149368.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('//at.alicdn.com/t/font_1465826771_9149368.svg#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
    font-family: "iconfont";
    font-size: 16px;
    font-style: normal;
}

/*====== 基本样式 结束=====*/


/*====== 头部样式 开始 =====*/
#header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
}

#header.shadow {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

#header #header_main {
    padding-top: 20px;
}

#header #header_main .logo {
    display: block;
    float: left;
    background: #4C9ED9;
    text-align: center;
    color: #fff;
    font-size: 18px;
    height: 50px;
}

#header #header_main #menu {
    float: right;
    height: 50px;
}

#header #header_main #menu li {
    float: left;
    padding: 0 20px;
}

#header #header_main #menu li a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
}

#header #header_main #menu li.ing a, #header #header_main #menu li a:hover {
    color: #00a9e0;
}

/*====== 头部样式 结束 =====*/


/*====== banner 开始 =====*/
#banner {
    height: 500px;
    width: 100%;
    overflow: hidden;
    margin-top: 90px;
    text-align: center;
    background-image: url(../img/banner.jpg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#banner h4 {
    line-height: 100px;
    color: #fff;
    font-size: 38px;
    font-weight: normal;
    text-shadow: 0 1px 1px #595959;
    transition: all 0.3s;
    cursor: pointer;
}


@media screen and (max-width: 690px) {
    #banner h4 {
        line-height: 60px;
    }
}

#banner h4:hover {
    color: #efefef;
    text-shadow: 0 1px 1px #000;
}

/*====== 头部样式 开始 =====*/


/*====== 个人信息 开始 =====*/
#show {
    min-height: 400px;
    padding: 150px 0;
}

#show .pic {
    width: 400px;
    max-height: 300px;
    float: left;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

#show .show_info {
    margin-left: 30px;
    width: 750px;
    float: right;
}

@media screen and (max-width: 1200px) {
    #show .pic {
        width: 100%;
        max-width: 400px;
        float: none;
    }
    #show .show_info {
        width: 100%;
        margin: 0 auto;
        float: none;
    }
}

@media screen and (max-width: 400px) {
    #show .pic {
        width: 100%;
        height: unset;
    }
}


.show_info h1 {
    font-size: 32px;
    line-height: 40px;
    text-indent: 10px;
    margin-top: 10px;
}

.show_info_list {
    margin-top: 20px;
    margin-left: -5px;
}

.show_info_list dl, .show_info_list dl dd, .show_info_list dl dt {
    display: inline-block;
    font-size: 16px;

}

.show_info_list dl {
    padding: 5px 15px;

}

.show_info_list dl dt {
    display: inline-block;
    font-weight: bold;
}

.show_info_list dl dd {
    display: inline-block;
}

.show_info_desc {
    margin-top: 10px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 35px;
    text-indent: -9px;
}

.show_main_hidden_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.show_main_hidden_box .show_main_hidden_bg {
    width: 100%;
    height: 100%;
    background: #333333;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.show_info_more_btn {
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #4C9ED9;
    color: #FFFFFF;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -25px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
}

.show_main_hidden_box:hover .show_main_hidden_bg {
    opacity: 0.5;
}

.show_main_hidden_box:hover .show_info_more_btn {
    opacity: 1;
}

.show_info_more_btn:hover {
    background: #3591D5;
}

/*====== 个人信息 结束 =====*/


/*====== 作品开始 开始 =====*/
#production {
    padding: 30px 0;
    background-color: #EFEFEF;
}


#production ul.production_list li.production_item {
    display: block;
    float: left;
    height: 280px;
    width: 280px;
    margin: 20px 15px;
    background: #FFFFFF;
    border-bottom: 3px solid #D0D0D0;
    cursor: pointer;
}

#production ul.production_list li.production_item:nth-child(1), #production ul.production_list li.production_item:nth-child(5) {
    margin-left: 0;
}

#production ul.production_list li.production_item:nth-child(4), #production ul.production_list li.production_item:nth-child(8) {
    margin-right: 0;
}

#production .production_item_face {
    height: 180px;
    width: 280px;
    overflow: hidden;
}

#production .production_item .production_item_face img {
    width: 280px;
    height: 180px;
    transition: all 0.5s ease-in-out;
}

#production .production_item:hover .production_item_face img {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
}

#production .production_item_title, .production_item_tag_lists {
    padding: 0 15px;
    border-top: 1px solid #eee;
}

#production .production_item_title h3 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
}

#production .production_item_time {
    font-size: 12px;
    line-height: 25px;
}

#production .production_item_time .time_ico {
    display: inline-block;
    margin-right: 5px;
    line-height: 25px;
    font-size: 14px;
}

#production .production_item_tag_lists {
    height: 30px;
    overflow: hidden;
    padding-top: 5px;
}

#production .production_item_tag_lists span {
    padding: 0px 5px;
    line-height: 30px;
}

#production .production_item_tag_lists span:first-of-type {
    padding-left: 0;
}

#production .production_item_tag_lists span:last-of-type {
    padding-right: 0;
}

/*====== 作品开始 结束 =====*/


/*====== 文章开始 开始 =====*/
#news {
    width: 1200px;
    min-height: 500px;
    margin: 20px auto;
}

@media screen and (max-width: 1200px) {
    #news {
        width: 90%;
    }
}





#news ul {
    margin: 0;
    padding: 0;
}

#news ul li {
    /*height: 260px;*/
    width: 100%;
    display: inline-block;
    -webkit-box-shadow: 0 2px 8px 0 transparent;
    box-shadow: 0 2px 8px 0 transparent;
    -webkit-transition: box-shadow .4s ease-in-out;
    -o-transition: box-shadow .4s ease-in-out;
    transition: box-shadow .4s ease-in-out;
    border-bottom: 1px solid #DCDCDC;
}

#news ul li:hover {
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .3)
}

#news ul li img {
    float: left;
    margin: 40px 0 40px 40px;
    display: block;
    width: 245px;
    height: 180px;
}
#news ul li img[src=''] {
	display: none;
}

#news ul li div.news_info {
    margin-top: 40px;
	margin-left: 40px;
	margin-bottom: 40px;
    float: left;
}

#news ul li div.news_info h4 {
    color: #000;
    margin-bottom: 15px;
    font-size: 18px;
}

#news ul li div.news_info p.description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 22px;
}

#news ul li div.news_info p.tag_list {
    color: #666;
}


#news ul li div.news_info p.tag_list span, span.tag_item{
    margin-top: 14px;
    display: inline-block;
    padding: 5px 10px;
    line-height: 20px;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
    -webkit-box-shadow: 0 2px 8px 0 transparent;
    box-shadow: 0 2px 8px 0 transparent;
    -webkit-transition: box-shadow .4s ease-in-out;
    -o-transition: box-shadow .4s ease-in-out;
    transition: box-shadow .4s ease-in-out;
    cursor: default;
}

#news ul li div.news_info p.tag_list span:hover,  span.tag_item:hover{
    background: #3591D5;
    color: #fff;
    border-color: #3591D5;
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .3);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, .3)
}

#news .hr_box {
    display: block;
    border-bottom: 5px solid #3591D5;
    width: 50px;
    height: 0;
    line-height: 0;
}

#news ul li div.news_info h6 {
    font-size: 12px;
    color: #979797;
    font-weight: normal;
    line-height: 12px;
    padding-top: 14px;

}

#news ul li div.news_info h4 {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

#news ul li div.news_info h4:hover {
    color: #3591D5;
}

#news ul li:last-of-type {
    border-bottom: none;
}

#news ul li:last-of-type {
    border-bottom: none;
}

/*====== 文章开始 结束 =====*/


/*====== 留言板 开始 =====*/
#contact {
    background-image: url(../img/contact.jpg);
    background-position: center bottom;
}

#contact .contact_header {
    text-align: center;
}

#contact .contact_header_title {
    padding: 8px 0 10px 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    font-family: 'Open Sans', sans-serif;
    color: #4C9ED9;;
}

#contact .contact_header_title span {
    color: #444;
}

#contact .contact_header p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 23px;
}

#contact .control_form_box {
    color: #333333;
    margin-top: 60px;
}

#contact .control_form_box .group_style_a {
    width: 400px;
    float: left;
    position: relative;
    min-height: 1px;
    font-size: 14px;
    line-height: 23px;
}

#contact .control_form_box .group_style_b {
    width: 1200px;
}


#contact .control_form_box .form-group {
    margin-bottom: 15px;
}

#contact .control_form_box .form-group label {
    text-transform: capitalize;
    margin-bottom: 10px;
    display: inline-block;
    max-width: 100%;
    font-weight: 700;
    color: #3591D5;
}

#contact .control_form_box .form-control {
    box-shadow: none;
    border-radius: 2px;
    height: 45px;
    background: transparent;
    display: block;
    width: 365px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    border: 1px solid #3591D5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

#contact .control_form_box textarea.form-control {
    width: 1165px;
    height: 300px;
}

#contact .control_form_box .group_btn {
    padding: 13px 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 5px;
    color: #3591D5;
    background: #fff;
    position: relative;
    margin-top: 20px;
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid #00AEFF;
    border-radius: 4px;
    font-family: inherit;
    -webkit-transition: all .3s linear 0s;
    -o-transition: all .3s linear 0s;
    transition: all .3s linear 0s;
}

#contact .control_form_box .group_btn:hover {
    background: #00AEFF;
    border-color: #00AEFF;
    color: #fff;
}

/*====== 留言板 结束 =====*/


/*====== 页脚 开始 =====*/
#footer {
    height: 80px;
    background: #eee;
    text-align: center;
    line-height: 80px;
    color: #333;
}

/*====== 页脚 结束 =====*/

