html,body{
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #1D2129;
    min-width: 1326px;
}

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td { 
   margin:0; 
   padding:0
}

ul, ol{ 
    list-style:none; 
}

input, textarea, select {
    border: 1px solid #DEDEDE!important;
    outline:none;
}

input::placeholder, textarea::placeholder {
    font-weight: 500;
    font-size: 14px;
    color: #999999;
}

select{
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none; /*去掉下拉箭头*/
    background: url(../image/expand-down.png) no-repeat 160px center;
}
input[type=checkbox]{
    -webkit-appearance:none;
    appearance: none;
    cursor: pointer;
    position: relative;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    font-size: 14px;
    border: 1px solid #DEDEDE!important;
    box-sizing: border-box;
}
input[type=checkbox]:checked{
    position: relative;
    border: 1px solid #d02f30!important;
    box-sizing: border-box;
}

input[type=checkbox]:checked::after{
    position: absolute;
    left: -1px;
    top: -1px;
    display: inline-block;
    width: 15px;
    height: 15px;
    content: "✓";
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #d02f30;
    text-align: center;
}

input:-webkit-autofill{
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

input:-internal-autofill-selected {
    box-shadow: inset 0 0 0 1000px white !important; 
}

.page-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* 头部 */
.page-header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    z-index: 100;
}
.header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1326px;
    height: 60px;
}

.page-header >div{
    height: 60px;
}

.page-header .left-logo{
    width: 135px;
    height: 40px;
}

.page-header .right-menu .menu {
    display: flex;
}

.page-header .right-menu .menu .menu-item{
    display: inline-block;
    height: 60px;
    box-sizing: border-box;
    padding: 0 16px;
    line-height: 60px;
    margin-right: 22px;
}

.page-header .right-menu .menu .menu-item > a{
    display: flex;
    align-items: center;
}

.page-header .right-menu .menu .menu-item > a img{
    margin-left: 6px;
}

.page-header .right-menu .menu .menu-item{
    position: relative;
    display: inline-block;
    height: 60px;
    box-sizing: border-box;
    padding: 0 16px;
    line-height: 60px;
    margin-right: 22px;
}

.page-header .right-menu ul li > a{
    text-decoration: none;
    color: #1D2129;
    cursor: pointer;
}

.page-header .right-menu ul li > a.active{
    color: #C1272D;
}

.page-header .right-menu .menu .menu-item:last-child{
    margin: 0;
}

.page-header .right-menu .menu .menu-item:hover .submenu{
    display: block;
}

.page-header .right-menu .menu .submenu{
    display: none;
    position: absolute;
    left: -25%;
    width: 126px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(120,131,138,0.13);
    border-top: 2px solid #C1272D;
    box-sizing: border-box;
    padding: 6px 0;
}
.page-header .right-menu .menu .submenu.service{
    width: 170px;
}
.page-header .right-menu .menu .submenu::before {
    content: "";
    position: absolute;
    top: -17px; 
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 16px;
    background: url(../image/tip.png) no-repeat top;
}
.page-header .right-menu .submenu li{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 44px;
}
.page-header .right-menu .submenu li a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 44px;
}

.page-header .right-menu .submenu li:hover a{
    color: #E4002B;
}


/* 尾部 */
.page-footer{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 140px;
    background: #1D2129;
}
.page-footer .footer-content{
    width: 1200px;
    height: 100%;
    color: #FFFFFF;
}
.page-footer .footer-content a{
    text-decoration: none;
    color: #FFFFFF;
    cursor: pointer;
}
.page-footer .footer-content .top{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 73px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-footer .footer-content .top a:first-child{
    margin-right: 40px;
}

.page-footer .footer-content .bottom{
    flex: 1;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-footer .footer-content .bottom span:nth-child(2){
    display: inline-block;
    margin-left: 4px;
}

.page-footer .footer-content .bottom img{
    margin: 0 5px;
}

.page-footer .footer-content .bottom > a{
    display: flex;
    align-items: center;
}
