html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}
*{box-sizing: border-box;}
html, body {
    min-height: 100%;
}

body {
    font-family: "Microsoft Sans Serif", "Microsoft YaHei";
    font-size:14px;
    color:#333;
}
h1, h2, h3, h4, h5, h6{font-weight:normal;}
ul,ol {
    list-style: none;
}

img {
    border: none;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #232323;
}
a:hover{
	text-decoration: none!important;
}
table {
    border-collapse: collapse;
    table-layout: fixed;
}

input, textarea {
    outline: none;
    border: none;
}

textarea {
    resize: none;
    overflow: auto;
}

.clearfix {
    zoom: 1;
}

.clearfix:after {
    content: ".";
    width: 0;
    height: 0;
    visibility: hidden;
    display: block;
    clear: both;
    overflow:hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.tl {
    text-align: left;
}

.tc {
    text-align: center
}

.tr {
    text-align: right;
}

.ellipse {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.inline{
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
input::-webkit-input-placeholder{
	font-size: 16px;
	color: #CCCCCC;
}
input[type=number] {  
    -moz-appearance:textfield;  
}  
input[type=number]::-webkit-inner-spin-button,  
input[type=number]::-webkit-outer-spin-button {  
    -webkit-appearance: none;  
    margin: 0;  
}
input[type=radio],input[type=checkbox]  {  
    display: inline-block;  
    vertical-align: middle;  
    width: 20px;  
    height: 20px;  
    margin-left: 5px;  
    -webkit-appearance: none;  
    background-color: transparent;  
    border: 0;  
    outline: 0 !important;  
    line-height: 20px;  
    color: #d8d8d8;  
}  
input[type=radio]:after  {  
    content: "";  
    display:block;  
    width: 20px;  
    height: 20px;  
    border-radius: 50%;  
    text-align: center;  
    line-height: 14px;  
    font-size: 16px;  
    color: #fff;  
    border: 2px solid #ddd;  
    background-color: #fff;  
    box-sizing:border-box;  
}  
  
input[type=checkbox]:after  {  
    content: "";  
    display:block;  
    width: 20px;  
    height: 20px;  
    text-align: center;  
    line-height: 14px;  
    font-size: 16px;  
    color: #fff;  
    border: 2px solid #ddd;  
    background-color: #fff;  
    box-sizing:border-box;  
}  
input[type=checkbox]:checked:after  {  
    border: 4px solid #ddd;  
    background-color: #37AF6E;  
}  
  
input[type=radio]:checked:after  {  
    content: "L";  
    transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);  
    -webkit-transform:matrix(-0.766044,-0.642788,-0.642788,0.766044,0,0);  
    border-color: #37AF6E;  
    background-color: #37AF6E;  
}  


.container_box{
    max-width: 1920px;
    margin: 0 auto;
    padding-top: 95px;
}

.module_show_box{
    position: relative;
    width: 100%;
    min-width: 1200px;
    overflow: hidden;
}

.module_show_content{
    position: relative;
    width: 1200px;
    height: 700px;
    margin: 0 auto;
}

.module_show_content img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    top: 0px;
    width: 1920px;
    height: 700px;
}

.module_left_box{
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 50%;
    height: 0px;
    box-shadow: 0px 0px 5px 10px #FFFFFF;
    background: #FFFFFF;
}


.module_center_box{
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 124px;
    height: 100px;
    z-index: 1;
}

.module_center_box img{
    display: block;
    width: 100%;
    height: 100%;
}

.module_right_box{
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: calc(50% - 124px);
    height: 100px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 10px #FFFFFF;
    padding-left: 42px;
    box-sizing: border-box;
}

.module_right_box h3{
    line-height: 100px;
    font-size: 40px;
    color: #333333;
}

.module_right_box h3 span{
    color: #999999;
}

@media screen and (max-width: 1200px){
    .container_box{
        max-width: 100%!important;
        margin: 0 auto;
        padding-top: 190px!important;
    }

    .module_show_box{
        position: relative;
        width: 100%;
        min-width: 0px;
        max-width: 100%;
        overflow: hidden;
    }

    .module_show_content{
        position: relative;
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }
	.module_show_content img{
		width: auto;
		height: 400px!important;
	}
	.module_right_box h3{
		font-size: 30px;
	}
}